ETH Price: $2,530.37 (+3.82%)

Token

TRIFORCE (TRIFORCE)
 

Overview

Max Total Supply

1,000,000 TRIFORCE

Holders

121

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
0.162970501551053078 TRIFORCE

Value
$0.00
0xa730feb3628c441e78a3b1dda12b4b9535bd48c0
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:
triforce

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 2023-07-29
*/

/**
    TRIFORCE
    
    Website: https://triforceeth.io
    Twitter: https://twitter.com/triforceeth
    Telegram: https://t.me/TRIFORCEeth
**/

// SPDX-License-Identifier: MIT
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 triforce is ERC20, Ownable {
    using SafeMath for uint256;

    IUniswapV2Router02 public immutable uniswapV2Router;
    address public immutable uniswapV2Pair;
    address public constant deadAddress = address(0xdead);

    bool private swapping;

    address public revShareWallet;
    address public teamWallet;

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

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

    bool public blacklistRenounced = false;

    // Anti-bot and anti-whale mappings and variables
    mapping(address => bool) blacklisted;

    uint256 public buyTotalFees;
    uint256 public buyRevShareFee;
    uint256 public buyLiquidityFee;
    uint256 public buyTeamFee;

    uint256 public sellTotalFees;
    uint256 public sellRevShareFee;
    uint256 public sellLiquidityFee;
    uint256 public sellTeamFee;

    uint256 public tokensForRevShare;
    uint256 public tokensForLiquidity;
    uint256 public tokensForTeam;

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

    // exclude from fees and max transaction amount
    mapping(address => bool) private _isExcludedFromFees;
    mapping(address => bool) public _isExcludedMaxTransactionAmount;

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

    bool public preMigrationPhase = true;
    mapping(address => bool) public preMigrationTransferrable;

    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 teamWalletUpdated(
        address indexed newWallet,
        address indexed oldWallet
    );

    event SwapAndLiquify(
        uint256 tokensSwapped,
        uint256 ethReceived,
        uint256 tokensIntoLiquidity
    );

    constructor() ERC20("TRIFORCE", "TRIFORCE") {
        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 _buyRevShareFee = 2;
        uint256 _buyLiquidityFee = 1;
        uint256 _buyTeamFee = 2;

        uint256 _sellRevShareFee = 2;
        uint256 _sellLiquidityFee = 1;
        uint256 _sellTeamFee = 2;

        uint256 totalSupply = 1_000_000 * 1e18;

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

        buyRevShareFee = _buyRevShareFee;
        buyLiquidityFee = _buyLiquidityFee;
        buyTeamFee = _buyTeamFee;
        buyTotalFees = buyRevShareFee + buyLiquidityFee + buyTeamFee;

        sellRevShareFee = _sellRevShareFee;
        sellLiquidityFee = _sellLiquidityFee;
        sellTeamFee = _sellTeamFee;
        sellTotalFees = sellRevShareFee + sellLiquidityFee + sellTeamFee;

        revShareWallet = address(0xcB6fad1fF07Ce24Bb99F91A7F466DFc5E629870F); // set as revShare wallet
        teamWallet = owner(); // set as team wallet

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

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

        preMigrationTransferrable[owner()] = 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 {}

    // once enabled, can never be turned off
    function enableTrading() external onlyOwner {
        tradingActive = true;
        swapEnabled = true;
        preMigrationPhase = false;
    }

    // remove limits after token is stable
    function removeLimits() external onlyOwner returns (bool) {
        limitsInEffect = false;
        return true;
    }

    // change the minimum amount of tokens to sell from fees
    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() * 10) / 1000) / 1e18,
            "Cannot set maxWallet lower than 1.0%"
        );
        maxWallet = newNum * (10**18);
    }

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

    // only use to disable contract sales if absolutely necessary (emergency use only)
    function updateSwapEnabled(bool enabled) external onlyOwner {
        swapEnabled = enabled;
    }

    function updateBuyFees(
        uint256 _revShareFee,
        uint256 _liquidityFee,
        uint256 _teamFee
    ) external onlyOwner {
        buyRevShareFee = _revShareFee;
        buyLiquidityFee = _liquidityFee;
        buyTeamFee = _teamFee;
        buyTotalFees = buyRevShareFee + buyLiquidityFee + buyTeamFee;
        require(buyTotalFees <= 5, "Buy fees must be <= 5.");
    }

    function updateSellFees(
        uint256 _revShareFee,
        uint256 _liquidityFee,
        uint256 _teamFee
    ) external onlyOwner {
        sellRevShareFee = _revShareFee;
        sellLiquidityFee = _liquidityFee;
        sellTeamFee = _teamFee;
        sellTotalFees = sellRevShareFee + sellLiquidityFee + sellTeamFee;
        require(sellTotalFees <= 5, "Sell fees must be <= 5.");
    }

    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 updateTeamWallet(address newWallet) external onlyOwner {
        emit teamWalletUpdated(newWallet, teamWallet);
        teamWallet = newWallet;
    }

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

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

    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 (preMigrationPhase) {
            require(preMigrationTransferrable[from], "Not authorized to transfer pre-migration.");
        }

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

                //when buy
                if (
                    automatedMarketMakerPairs[from] &&
                    !_isExcludedMaxTransactionAmount[to]
                ) {
                    require(
                        amount <= maxTransactionAmount,
                        "Buy transfer amount exceeds the maxTransactionAmount."
                    );
                    require(
                        amount + balanceOf(to) <= maxWallet,
                        "Max wallet exceeded"
                    );
                }
                //when sell
                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 any account belongs to _isExcludedFromFee account then remove the fee
        if (_isExcludedFromFees[from] || _isExcludedFromFees[to]) {
            takeFee = false;
        }

        uint256 fees = 0;
        // only take fees on buys/sells, do not take on wallet transfers
        if (takeFee) {
            // on sell
            if (automatedMarketMakerPairs[to] && sellTotalFees > 0) {
                fees = amount.mul(sellTotalFees).div(100);
                tokensForLiquidity += (fees * sellLiquidityFee) / sellTotalFees;
                tokensForTeam += (fees * sellTeamFee) / sellTotalFees;
                tokensForRevShare += (fees * sellRevShareFee) / sellTotalFees;
            }
            // on buy
            else if (automatedMarketMakerPairs[from] && buyTotalFees > 0) {
                fees = amount.mul(buyTotalFees).div(100);
                tokensForLiquidity += (fees * buyLiquidityFee) / buyTotalFees;
                tokensForTeam += (fees * buyTeamFee) / buyTotalFees;
                tokensForRevShare += (fees * buyRevShareFee) / buyTotalFees;
            }

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

            amount -= fees;
        }

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

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

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

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

    function addLiquidity(uint256 tokenAmount, uint256 ethAmount) private {
        // approve token transfer to cover all possible scenarios
        _approve(address(this), address(uniswapV2Router), tokenAmount);

        // add the liquidity
        uniswapV2Router.addLiquidityETH{value: ethAmount}(
            address(this),
            tokenAmount,
            0, // slippage is unavoidable
            0, // slippage is unavoidable
            owner(),
            block.timestamp
        );
    }

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

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

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

        // Halve the amount of liquidity tokens
        uint256 liquidityTokens = (contractBalance * tokensForLiquidity) /
            totalTokensToSwap /
            2;
        uint256 amountToSwapForETH = contractBalance.sub(liquidityTokens);

        uint256 initialETHBalance = address(this).balance;

        swapTokensForEth(amountToSwapForETH);

        uint256 ethBalance = address(this).balance.sub(initialETHBalance);

        uint256 ethForRevShare = ethBalance.mul(tokensForRevShare).div(totalTokensToSwap - (tokensForLiquidity / 2));
        
        uint256 ethForTeam = ethBalance.mul(tokensForTeam).div(totalTokensToSwap - (tokensForLiquidity / 2));

        uint256 ethForLiquidity = ethBalance - ethForRevShare - ethForTeam;

        tokensForLiquidity = 0;
        tokensForRevShare = 0;
        tokensForTeam = 0;

        (success, ) = address(teamWallet).call{value: ethForTeam}("");

        if (liquidityTokens > 0 && ethForLiquidity > 0) {
            addLiquidity(liquidityTokens, ethForLiquidity);
            emit SwapAndLiquify(
                amountToSwapForETH,
                ethForLiquidity,
                tokensForLiquidity
            );
        }

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

    function withdrawStuckTriforce() external onlyOwner {
        uint256 balance = IERC20(address(this)).balanceOf(address(this));
        IERC20(address(this)).transfer(msg.sender, balance);
        payable(msg.sender).transfer(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);
    }

    // @dev team renounce blacklist commands
    function renounceBlacklist() public onlyOwner {
        blacklistRenounced = true;
    }

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

    // @dev blacklist v3 pools; can unblacklist() down the road to suit project and community
    function blacklistLiquidityPool(address lpAddress) public onlyOwner {
        require(!blacklistRenounced, "Team has revoked blacklist rights");
        require(
            lpAddress != address(uniswapV2Pair) && lpAddress != address(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D), 
            "Cannot blacklist token's v2 router or v2 pool."
        );
        blacklisted[lpAddress] = true;
    }

    // @dev unblacklist address; not affected by blacklistRenounced incase team wants to unblacklist v3 pools down the road
    function unblacklist(address _addr) public onlyOwner {
        blacklisted[_addr] = false;
    }

    function setPreMigrationTransferable(address _addr, bool isAuthorized) public onlyOwner {
        preMigrationTransferrable[_addr] = isAuthorized;
        excludeFromFees(_addr, isAuthorized);
        excludeFromMaxTransaction(_addr, isAuthorized);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiquidity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newAddress","type":"address"},{"indexed":true,"internalType":"address","name":"oldAddress","type":"address"}],"name":"UpdateUniswapV2Router","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":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"teamWalletUpdated","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":[{"internalType":"address","name":"lpAddress","type":"address"}],"name":"blacklistLiquidityPool","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"blacklistRenounced","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyRevShareFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTeamFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deadAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"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":"preMigrationPhase","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"preMigrationTransferrable","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceBlacklist","outputs":[],"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":"sellLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellRevShareFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTeamFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[{"internalType":"address","name":"_addr","type":"address"},{"internalType":"bool","name":"isAuthorized","type":"bool"}],"name":"setPreMigrationTransferable","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":"teamWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForRevShare","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForTeam","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":"_revShareFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_teamFee","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":"_revShareFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_teamFee","type":"uint256"}],"name":"updateSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"updateSwapEnabled","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":"newWallet","type":"address"}],"name":"updateTeamWallet","outputs":[],"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"},{"inputs":[],"name":"withdrawStuckTriforce","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c06040526001600b5f6101000a81548160ff0219169083151502179055505f600b60016101000a81548160ff0219169083151502179055505f600b60026101000a81548160ff0219169083151502179055505f600b60036101000a81548160ff0219169083151502179055506001601b5f6101000a81548160ff02191690831515021790555034801562000092575f80fd5b506040518060400160405280600881526020017f545249464f5243450000000000000000000000000000000000000000000000008152506040518060400160405280600881526020017f545249464f524345000000000000000000000000000000000000000000000000815250816003908162000110919062000d90565b50806004908162000122919062000d90565b50505062000145620001396200060460201b60201c565b6200060b60201b60201c565b5f737a250d5630b4cf539739df2c5dacb4c659f2488d905062000170816001620006ce60201b60201c565b8073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015620001ee573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019062000214919062000ed9565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200027a573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190620002a0919062000ed9565b6040518363ffffffff1660e01b8152600401620002bf92919062000f1a565b6020604051808303815f875af1158015620002dc573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019062000302919062000ed9565b73ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff16815250506200034a60a0516001620006ce60201b60201c565b6200035f60a0516001620007b560201b60201c565b5f600290505f600190505f600290505f600290505f600190505f600290505f69d3c21bcecceda1000000905069021e19e0c9bab240000060088190555069021e19e0c9bab2400000600a81905550612710600582620003bf919062000f72565b620003cb919062000fe9565b60098190555086600e8190555085600f8190555084601081905550601054600f54600e54620003fb919062001020565b62000407919062001020565b600d8190555083601281905550826013819055508160148190555060145460135460125462000437919062001020565b62000443919062001020565b60118190555073cb6fad1ff07ce24bb99f91a7f466dfc5e629870f60065f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620004ad6200085360201b60201c565b60075f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506200050e620005006200085360201b60201c565b60016200087b60201b60201c565b620005213060016200087b60201b60201c565b6200053661dead60016200087b60201b60201c565b620005586200054a6200085360201b60201c565b6001620006ce60201b60201c565b6200056b306001620006ce60201b60201c565b6200058061dead6001620006ce60201b60201c565b6001601c5f620005956200085360201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550620005f63382620009b260201b60201c565b5050505050505050620011a9565b5f33905090565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620006de6200060460201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620007046200085360201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16146200075d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200075490620010b8565b60405180910390fd5b8060195f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b80601a5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6200088b6200060460201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620008b16200085360201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16146200090a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200090190620010b8565b60405180910390fd5b8060185f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051620009a69190620010f4565b60405180910390a25050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000a23576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000a1a906200115d565b60405180910390fd5b62000a365f838362000b2260201b60201c565b8060025f82825462000a49919062001020565b92505081905550805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825462000a9d919062001020565b925050819055508173ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000b0391906200118e565b60405180910390a362000b1e5f838362000b2760201b60201c565b5050565b505050565b505050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168062000ba857607f821691505b60208210810362000bbe5762000bbd62000b63565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f6008830262000c227fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000be5565b62000c2e868362000be5565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f62000c7862000c7262000c6c8462000c46565b62000c4f565b62000c46565b9050919050565b5f819050919050565b62000c938362000c58565b62000cab62000ca28262000c7f565b84845462000bf1565b825550505050565b5f90565b62000cc162000cb3565b62000cce81848462000c88565b505050565b5b8181101562000cf55762000ce95f8262000cb7565b60018101905062000cd4565b5050565b601f82111562000d445762000d0e8162000bc4565b62000d198462000bd6565b8101602085101562000d29578190505b62000d4162000d388562000bd6565b83018262000cd3565b50505b505050565b5f82821c905092915050565b5f62000d665f198460080262000d49565b1980831691505092915050565b5f62000d80838362000d55565b9150826002028217905092915050565b62000d9b8262000b2c565b67ffffffffffffffff81111562000db75762000db662000b36565b5b62000dc3825462000b90565b62000dd082828562000cf9565b5f60209050601f83116001811462000e06575f841562000df1578287015190505b62000dfd858262000d73565b86555062000e6c565b601f19841662000e168662000bc4565b5f5b8281101562000e3f5784890151825560018201915060208501945060208101905062000e18565b8683101562000e5f578489015162000e5b601f89168262000d55565b8355505b6001600288020188555050505b505050505050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f62000ea38262000e78565b9050919050565b62000eb58162000e97565b811462000ec0575f80fd5b50565b5f8151905062000ed38162000eaa565b92915050565b5f6020828403121562000ef15762000ef062000e74565b5b5f62000f008482850162000ec3565b91505092915050565b62000f148162000e97565b82525050565b5f60408201905062000f2f5f83018562000f09565b62000f3e602083018462000f09565b9392505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f62000f7e8262000c46565b915062000f8b8362000c46565b925082820262000f9b8162000c46565b9150828204841483151762000fb55762000fb462000f45565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f62000ff58262000c46565b9150620010028362000c46565b92508262001015576200101462000fbc565b5b828204905092915050565b5f6200102c8262000c46565b9150620010398362000c46565b925082820190508082111562001054576200105362000f45565b5b92915050565b5f82825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f620010a06020836200105a565b9150620010ad826200106a565b602082019050919050565b5f6020820190508181035f830152620010d18162001092565b9050919050565b5f8115159050919050565b620010ee81620010d8565b82525050565b5f602082019050620011095f830184620010e3565b92915050565b7f45524332303a206d696e7420746f20746865207a65726f2061646472657373005f82015250565b5f62001145601f836200105a565b915062001152826200110f565b602082019050919050565b5f6020820190508181035f830152620011768162001137565b9050919050565b620011888162000c46565b82525050565b5f602082019050620011a35f8301846200117d565b92915050565b60805160a051615e8e620012035f395f81816112b501528181611d2a01528181612aa50152612db201525f8181610fad01528181614504015281816145e30152818161460a015281816146a001526146c70152615e8e5ff3fe6080604052600436106103c6575f3560e01c80638095d564116101f1578063c18bc1951161010c578063e2f456051161009f578063f8b45b051161006e578063f8b45b0514610e11578063f9f92be414610e3b578063fde83a3414610e63578063fe575a8714610e8d576103cd565b8063e2f4560514610d6b578063f11a24d314610d95578063f2fde38b14610dbf578063f637434214610de7576103cd565b8063d729715f116100db578063d729715f14610cb3578063d85ba06314610cdd578063dd62ed3e14610d07578063e19b282314610d43576103cd565b8063c18bc19514610c0f578063c300ea8314610c37578063c8c8ebe414610c4d578063d257b34f14610c77576103cd565b8063a9059cbb11610184578063bbc0c74211610153578063bbc0c74214610b6d578063bc205ad314610b97578063c024666814610bbf578063c17b5b8c14610be7576103cd565b8063a9059cbb14610aa5578063aa0e438814610ae1578063adee28ff14610b09578063b62496f514610b31576103cd565b806395d89b41116101c057806395d89b41146109ed5780639a7a23d614610a175780639c2e4ac614610a3f578063a457c2d714610a69576103cd565b80638095d5641461095d5780638a8c523c146109855780638da5cb5b1461099b578063924de9b7146109c5576103cd565b806349bd5a5e116102e157806370a082311161027457806375e3661e1161024357806375e3661e146108bb578063782c4e99146108e35780637ca8448a1461090d5780637cb332bb14610935576103cd565b806370a0823114610817578063715018a614610853578063751039fc146108695780637571336a14610893576103cd565b806359927044116102b057806359927044146107835780635f189361146107ad5780636a486a8e146107c35780636ddd1713146107ed576103cd565b806349bd5a5e146106b75780634a62bb65146106e15780634e29e5231461070b5780634fbee19314610747576103cd565b80631a8145bb1161035957806327c8f8351161032857806327c8f835146105fd578063313ce5671461062757806339509351146106515780633dc599ff1461068d576103cd565b80631a8145bb14610545578063203e727e1461056f57806323b872dd1461059757806324b9f3c1146105d3576103cd565b8063156c2f3511610395578063156c2f351461049d5780631694505e146104c757806318160ddd146104f157806319eab0421461051b576103cd565b806306fdde03146103d1578063095ea7b3146103fb5780630e922ca71461043757806310d5de5314610461576103cd565b366103cd57005b5f80fd5b3480156103dc575f80fd5b506103e5610ec9565b6040516103f29190614802565b60405180910390f35b348015610406575f80fd5b50610421600480360381019061041c91906148b3565b610f59565b60405161042e919061490b565b60405180910390f35b348015610442575f80fd5b5061044b610f76565b604051610458919061490b565b60405180910390f35b34801561046c575f80fd5b5061048760048036038101906104829190614924565b610f88565b604051610494919061490b565b60405180910390f35b3480156104a8575f80fd5b506104b1610fa5565b6040516104be919061495e565b60405180910390f35b3480156104d2575f80fd5b506104db610fab565b6040516104e891906149d2565b60405180910390f35b3480156104fc575f80fd5b50610505610fcf565b604051610512919061495e565b60405180910390f35b348015610526575f80fd5b5061052f610fd8565b60405161053c919061495e565b60405180910390f35b348015610550575f80fd5b50610559610fde565b604051610566919061495e565b60405180910390f35b34801561057a575f80fd5b50610595600480360381019061059091906149eb565b610fe4565b005b3480156105a2575f80fd5b506105bd60048036038101906105b89190614a16565b6110f3565b6040516105ca919061490b565b60405180910390f35b3480156105de575f80fd5b506105e76111e5565b6040516105f4919061495e565b60405180910390f35b348015610608575f80fd5b506106116111eb565b60405161061e9190614a75565b60405180910390f35b348015610632575f80fd5b5061063b6111f1565b6040516106489190614aa9565b60405180910390f35b34801561065c575f80fd5b50610677600480360381019061067291906148b3565b6111f9565b604051610684919061490b565b60405180910390f35b348015610698575f80fd5b506106a16112a0565b6040516106ae919061490b565b60405180910390f35b3480156106c2575f80fd5b506106cb6112b3565b6040516106d89190614a75565b60405180910390f35b3480156106ec575f80fd5b506106f56112d7565b604051610702919061490b565b60405180910390f35b348015610716575f80fd5b50610731600480360381019061072c9190614924565b6112e9565b60405161073e919061490b565b60405180910390f35b348015610752575f80fd5b5061076d60048036038101906107689190614924565b611306565b60405161077a919061490b565b60405180910390f35b34801561078e575f80fd5b50610797611358565b6040516107a49190614a75565b60405180910390f35b3480156107b8575f80fd5b506107c161137d565b005b3480156107ce575f80fd5b506107d7611416565b6040516107e4919061495e565b60405180910390f35b3480156107f8575f80fd5b5061080161141c565b60405161080e919061490b565b60405180910390f35b348015610822575f80fd5b5061083d60048036038101906108389190614924565b61142f565b60405161084a919061495e565b60405180910390f35b34801561085e575f80fd5b50610867611474565b005b348015610874575f80fd5b5061087d6114fb565b60405161088a919061490b565b60405180910390f35b34801561089e575f80fd5b506108b960048036038101906108b49190614aec565b611598565b005b3480156108c6575f80fd5b506108e160048036038101906108dc9190614924565b61166c565b005b3480156108ee575f80fd5b506108f761173f565b6040516109049190614a75565b60405180910390f35b348015610918575f80fd5b50610933600480360381019061092e9190614924565b611764565b005b348015610940575f80fd5b5061095b60048036038101906109569190614924565b611855565b005b348015610968575f80fd5b50610983600480360381019061097e9190614b2a565b61198f565b005b348015610990575f80fd5b50610999611a8e565b005b3480156109a6575f80fd5b506109af611b5b565b6040516109bc9190614a75565b60405180910390f35b3480156109d0575f80fd5b506109eb60048036038101906109e69190614b7a565b611b83565b005b3480156109f8575f80fd5b50610a01611c1c565b604051610a0e9190614802565b60405180910390f35b348015610a22575f80fd5b50610a3d6004803603810190610a389190614aec565b611cac565b005b348015610a4a575f80fd5b50610a53611dc4565b604051610a60919061495e565b60405180910390f35b348015610a74575f80fd5b50610a8f6004803603810190610a8a91906148b3565b611dca565b604051610a9c919061490b565b60405180910390f35b348015610ab0575f80fd5b50610acb6004803603810190610ac691906148b3565b611eb0565b604051610ad8919061490b565b60405180910390f35b348015610aec575f80fd5b50610b076004803603810190610b029190614aec565b611ecd565b005b348015610b14575f80fd5b50610b2f6004803603810190610b2a9190614924565b611fb5565b005b348015610b3c575f80fd5b50610b576004803603810190610b529190614924565b6120ef565b604051610b64919061490b565b60405180910390f35b348015610b78575f80fd5b50610b8161210c565b604051610b8e919061490b565b60405180910390f35b348015610ba2575f80fd5b50610bbd6004803603810190610bb89190614ba5565b61211f565b005b348015610bca575f80fd5b50610be56004803603810190610be09190614aec565b612305565b005b348015610bf2575f80fd5b50610c0d6004803603810190610c089190614b2a565b612427565b005b348015610c1a575f80fd5b50610c356004803603810190610c3091906149eb565b612526565b005b348015610c42575f80fd5b50610c4b612635565b005b348015610c58575f80fd5b50610c616127ef565b604051610c6e919061495e565b60405180910390f35b348015610c82575f80fd5b50610c9d6004803603810190610c9891906149eb565b6127f5565b604051610caa919061490b565b60405180910390f35b348015610cbe575f80fd5b50610cc7612949565b604051610cd4919061495e565b60405180910390f35b348015610ce8575f80fd5b50610cf161294f565b604051610cfe919061495e565b60405180910390f35b348015610d12575f80fd5b50610d2d6004803603810190610d289190614ba5565b612955565b604051610d3a919061495e565b60405180910390f35b348015610d4e575f80fd5b50610d696004803603810190610d649190614924565b6129d7565b005b348015610d76575f80fd5b50610d7f612bd6565b604051610d8c919061495e565b60405180910390f35b348015610da0575f80fd5b50610da9612bdc565b604051610db6919061495e565b60405180910390f35b348015610dca575f80fd5b50610de56004803603810190610de09190614924565b612be2565b005b348015610df2575f80fd5b50610dfb612cd8565b604051610e08919061495e565b60405180910390f35b348015610e1c575f80fd5b50610e25612cde565b604051610e32919061495e565b60405180910390f35b348015610e46575f80fd5b50610e616004803603810190610e5c9190614924565b612ce4565b005b348015610e6e575f80fd5b50610e77612ee3565b604051610e84919061495e565b60405180910390f35b348015610e98575f80fd5b50610eb36004803603810190610eae9190614924565b612ee9565b604051610ec0919061490b565b60405180910390f35b606060038054610ed890614c10565b80601f0160208091040260200160405190810160405280929190818152602001828054610f0490614c10565b8015610f4f5780601f10610f2657610100808354040283529160200191610f4f565b820191905f5260205f20905b815481529060010190602001808311610f3257829003601f168201915b5050505050905090565b5f610f6c610f65612f3b565b8484612f42565b6001905092915050565b601b5f9054906101000a900460ff1681565b6019602052805f5260405f205f915054906101000a900460ff1681565b600e5481565b7f000000000000000000000000000000000000000000000000000000000000000081565b5f600254905090565b60125481565b60165481565b610fec612f3b565b73ffffffffffffffffffffffffffffffffffffffff1661100a611b5b565b73ffffffffffffffffffffffffffffffffffffffff1614611060576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105790614c8a565b60405180910390fd5b670de0b6b3a76400006103e86005611076610fcf565b6110809190614cd5565b61108a9190614d43565b6110949190614d43565b8110156110d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110cd90614de3565b60405180910390fd5b670de0b6b3a7640000816110ea9190614cd5565b60088190555050565b5f6110ff848484613105565b5f60015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f611146612f3b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050828110156111c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111bc90614e71565b60405180910390fd5b6111d9856111d1612f3b565b858403612f42565b60019150509392505050565b60155481565b61dead81565b5f6012905090565b5f611296611205612f3b565b848460015f611212612f3b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546112919190614e8f565b612f42565b6001905092915050565b600b60039054906101000a900460ff1681565b7f000000000000000000000000000000000000000000000000000000000000000081565b600b5f9054906101000a900460ff1681565b601c602052805f5260405f205f915054906101000a900460ff1681565b5f60185f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff169050919050565b60075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b611385612f3b565b73ffffffffffffffffffffffffffffffffffffffff166113a3611b5b565b73ffffffffffffffffffffffffffffffffffffffff16146113f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113f090614c8a565b60405180910390fd5b6001600b60036101000a81548160ff021916908315150217905550565b60115481565b600b60029054906101000a900460ff1681565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b61147c612f3b565b73ffffffffffffffffffffffffffffffffffffffff1661149a611b5b565b73ffffffffffffffffffffffffffffffffffffffff16146114f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114e790614c8a565b60405180910390fd5b6114f95f613d47565b565b5f611504612f3b565b73ffffffffffffffffffffffffffffffffffffffff16611522611b5b565b73ffffffffffffffffffffffffffffffffffffffff1614611578576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156f90614c8a565b60405180910390fd5b5f600b5f6101000a81548160ff0219169083151502179055506001905090565b6115a0612f3b565b73ffffffffffffffffffffffffffffffffffffffff166115be611b5b565b73ffffffffffffffffffffffffffffffffffffffff1614611614576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160b90614c8a565b60405180910390fd5b8060195f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b611674612f3b565b73ffffffffffffffffffffffffffffffffffffffff16611692611b5b565b73ffffffffffffffffffffffffffffffffffffffff16146116e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116df90614c8a565b60405180910390fd5b5f600c5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff02191690831515021790555050565b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b61176c612f3b565b73ffffffffffffffffffffffffffffffffffffffff1661178a611b5b565b73ffffffffffffffffffffffffffffffffffffffff16146117e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117d790614c8a565b60405180910390fd5b5f8173ffffffffffffffffffffffffffffffffffffffff164760405161180590614eef565b5f6040518083038185875af1925050503d805f811461183f576040519150601f19603f3d011682016040523d82523d5f602084013e611844565b606091505b5050905080611851575f80fd5b5050565b61185d612f3b565b73ffffffffffffffffffffffffffffffffffffffff1661187b611b5b565b73ffffffffffffffffffffffffffffffffffffffff16146118d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118c890614c8a565b60405180910390fd5b60075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8aa0f85050aca99be43beb823e0457e77966b3baf697a289b03681978f96166860405160405180910390a38060075f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b611997612f3b565b73ffffffffffffffffffffffffffffffffffffffff166119b5611b5b565b73ffffffffffffffffffffffffffffffffffffffff1614611a0b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a0290614c8a565b60405180910390fd5b82600e8190555081600f8190555080601081905550601054600f54600e54611a339190614e8f565b611a3d9190614e8f565b600d819055506005600d541115611a89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a8090614f4d565b60405180910390fd5b505050565b611a96612f3b565b73ffffffffffffffffffffffffffffffffffffffff16611ab4611b5b565b73ffffffffffffffffffffffffffffffffffffffff1614611b0a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b0190614c8a565b60405180910390fd5b6001600b60016101000a81548160ff0219169083151502179055506001600b60026101000a81548160ff0219169083151502179055505f601b5f6101000a81548160ff021916908315150217905550565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611b8b612f3b565b73ffffffffffffffffffffffffffffffffffffffff16611ba9611b5b565b73ffffffffffffffffffffffffffffffffffffffff1614611bff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bf690614c8a565b60405180910390fd5b80600b60026101000a81548160ff02191690831515021790555050565b606060048054611c2b90614c10565b80601f0160208091040260200160405190810160405280929190818152602001828054611c5790614c10565b8015611ca25780601f10611c7957610100808354040283529160200191611ca2565b820191905f5260205f20905b815481529060010190602001808311611c8557829003601f168201915b5050505050905090565b611cb4612f3b565b73ffffffffffffffffffffffffffffffffffffffff16611cd2611b5b565b73ffffffffffffffffffffffffffffffffffffffff1614611d28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d1f90614c8a565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611db6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dad90614fdb565b60405180910390fd5b611dc08282613e0a565b5050565b60105481565b5f8060015f611dd7612f3b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905082811015611e91576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e8890615069565b60405180910390fd5b611ea5611e9c612f3b565b85858403612f42565b600191505092915050565b5f611ec3611ebc612f3b565b8484613105565b6001905092915050565b611ed5612f3b565b73ffffffffffffffffffffffffffffffffffffffff16611ef3611b5b565b73ffffffffffffffffffffffffffffffffffffffff1614611f49576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f4090614c8a565b60405180910390fd5b80601c5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550611fa78282612305565b611fb18282611598565b5050565b611fbd612f3b565b73ffffffffffffffffffffffffffffffffffffffff16611fdb611b5b565b73ffffffffffffffffffffffffffffffffffffffff1614612031576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161202890614c8a565b60405180910390fd5b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fc9f2d63eee8632b33d7a7db5252eb29036e81ee4fbe29260febe0c49ffb8a7bb60405160405180910390a38060065f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b601a602052805f5260405f205f915054906101000a900460ff1681565b600b60019054906101000a900460ff1681565b612127612f3b565b73ffffffffffffffffffffffffffffffffffffffff16612145611b5b565b73ffffffffffffffffffffffffffffffffffffffff161461219b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161219290614c8a565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612209576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612200906150d1565b60405180910390fd5b5f8273ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016122439190614a75565b602060405180830381865afa15801561225e573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906122829190615103565b90508273ffffffffffffffffffffffffffffffffffffffff1663a9059cbb83836040518363ffffffff1660e01b81526004016122bf92919061512e565b6020604051808303815f875af11580156122db573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906122ff9190615169565b50505050565b61230d612f3b565b73ffffffffffffffffffffffffffffffffffffffff1661232b611b5b565b73ffffffffffffffffffffffffffffffffffffffff1614612381576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161237890614c8a565b60405180910390fd5b8060185f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df78260405161241b919061490b565b60405180910390a25050565b61242f612f3b565b73ffffffffffffffffffffffffffffffffffffffff1661244d611b5b565b73ffffffffffffffffffffffffffffffffffffffff16146124a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161249a90614c8a565b60405180910390fd5b8260128190555081601381905550806014819055506014546013546012546124cb9190614e8f565b6124d59190614e8f565b60118190555060056011541115612521576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612518906151de565b60405180910390fd5b505050565b61252e612f3b565b73ffffffffffffffffffffffffffffffffffffffff1661254c611b5b565b73ffffffffffffffffffffffffffffffffffffffff16146125a2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161259990614c8a565b60405180910390fd5b670de0b6b3a76400006103e8600a6125b8610fcf565b6125c29190614cd5565b6125cc9190614d43565b6125d69190614d43565b811015612618576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161260f9061526c565b60405180910390fd5b670de0b6b3a76400008161262c9190614cd5565b600a8190555050565b61263d612f3b565b73ffffffffffffffffffffffffffffffffffffffff1661265b611b5b565b73ffffffffffffffffffffffffffffffffffffffff16146126b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126a890614c8a565b60405180910390fd5b5f3073ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016126eb9190614a75565b602060405180830381865afa158015612706573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061272a9190615103565b90503073ffffffffffffffffffffffffffffffffffffffff1663a9059cbb33836040518363ffffffff1660e01b815260040161276792919061512e565b6020604051808303815f875af1158015612783573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906127a79190615169565b503373ffffffffffffffffffffffffffffffffffffffff166108fc4790811502906040515f60405180830381858888f193505050501580156127eb573d5f803e3d5ffd5b5050565b60085481565b5f6127fe612f3b565b73ffffffffffffffffffffffffffffffffffffffff1661281c611b5b565b73ffffffffffffffffffffffffffffffffffffffff1614612872576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161286990614c8a565b60405180910390fd5b620186a06001612880610fcf565b61288a9190614cd5565b6128949190614d43565b8210156128d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128cd906152fa565b60405180910390fd5b6103e860056128e3610fcf565b6128ed9190614cd5565b6128f79190614d43565b821115612939576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161293090615388565b60405180910390fd5b8160098190555060019050919050565b60145481565b600d5481565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b6129df612f3b565b73ffffffffffffffffffffffffffffffffffffffff166129fd611b5b565b73ffffffffffffffffffffffffffffffffffffffff1614612a53576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a4a90614c8a565b60405180910390fd5b600b60039054906101000a900460ff1615612aa3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a9a90615416565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614158015612b3f5750737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614155b612b7e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b75906154a4565b60405180910390fd5b6001600c5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff02191690831515021790555050565b60095481565b600f5481565b612bea612f3b565b73ffffffffffffffffffffffffffffffffffffffff16612c08611b5b565b73ffffffffffffffffffffffffffffffffffffffff1614612c5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c5590614c8a565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603612ccc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cc390615532565b60405180910390fd5b612cd581613d47565b50565b60135481565b600a5481565b612cec612f3b565b73ffffffffffffffffffffffffffffffffffffffff16612d0a611b5b565b73ffffffffffffffffffffffffffffffffffffffff1614612d60576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d5790614c8a565b60405180910390fd5b600b60039054906101000a900460ff1615612db0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612da790615416565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614158015612e4c5750737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614155b612e8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e82906154a4565b60405180910390fd5b6001600c5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff02191690831515021790555050565b60175481565b5f600c5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff169050919050565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612fb0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fa7906155c0565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361301e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130159061564e565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516130f8919061495e565b60405180910390a3505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603613173576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161316a906156dc565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036131e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131d89061576a565b60405180910390fd5b600c5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff161561326b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613262906157d2565b60405180910390fd5b600c5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16156132f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132ec9061583a565b60405180910390fd5b601b5f9054906101000a900460ff161561339357601c5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16613392576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613389906158c8565b60405180910390fd5b5b5f81036133aa576133a583835f613ea8565b613d42565b600b5f9054906101000a900460ff161561388e576133c6611b5b565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156134345750613404611b5b565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561346c57505f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156134a6575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156134bf5750600560149054906101000a900460ff16155b1561388d57600b60019054906101000a900460ff166135b35760185f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1680613573575060185f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b6135b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016135a990615930565b60405180910390fd5b5b601a5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff168015613650575060195f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b156136f75760085481111561369a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613691906159be565b60405180910390fd5b600a546136a68361142f565b826136b19190614e8f565b11156136f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016136e990615a26565b60405180910390fd5b61388c565b601a5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff168015613794575060195f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b156137e3576008548111156137de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016137d590615ab4565b60405180910390fd5b61388b565b60195f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1661388a57600a5461383d8361142f565b826138489190614e8f565b1115613889576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161388090615a26565b60405180910390fd5b5b5b5b5b5b5f6138983061142f565b90505f60095482101590508080156138bc5750600b60029054906101000a900460ff165b80156138d55750600560149054906101000a900460ff16155b80156139285750601a5f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b801561397b575060185f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b80156139ce575060185f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b15613a11576001600560146101000a81548160ff0219169083151502179055506139f661411d565b5f600560146101000a81548160ff0219169083151502179055505b5f600560149054906101000a900460ff1615905060185f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1680613ac0575060185f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b15613ac9575f90505b5f8115613d3257601a5f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff168015613b2757505f601154115b15613bf157613b546064613b466011548861441e90919063ffffffff16565b61443390919063ffffffff16565b905060115460135482613b679190614cd5565b613b719190614d43565b60165f828254613b819190614e8f565b9250508190555060115460145482613b999190614cd5565b613ba39190614d43565b60175f828254613bb39190614e8f565b9250508190555060115460125482613bcb9190614cd5565b613bd59190614d43565b60155f828254613be59190614e8f565b92505081905550613d0f565b601a5f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff168015613c4857505f600d54115b15613d0e57613c756064613c67600d548861441e90919063ffffffff16565b61443390919063ffffffff16565b9050600d54600f5482613c889190614cd5565b613c929190614d43565b60165f828254613ca29190614e8f565b92505081905550600d5460105482613cba9190614cd5565b613cc49190614d43565b60175f828254613cd49190614e8f565b92505081905550600d54600e5482613cec9190614cd5565b613cf69190614d43565b60155f828254613d069190614e8f565b925050819055505b5b5f811115613d2357613d22873083613ea8565b5b8085613d2f9190615ad2565b94505b613d3d878787613ea8565b505050505b505050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80601a5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603613f16576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613f0d906156dc565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603613f84576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613f7b9061576a565b60405180910390fd5b613f8f838383614448565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015614012576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161400990615b75565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550815f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8282546140a09190614e8f565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051614104919061495e565b60405180910390a361411784848461444d565b50505050565b5f6141273061142f565b90505f60175460155460165461413d9190614e8f565b6141479190614e8f565b90505f8083148061415757505f82145b156141645750505061441c565b60146009546141739190614cd5565b83111561418c5760146009546141899190614cd5565b92505b5f6002836016548661419e9190614cd5565b6141a89190614d43565b6141b29190614d43565b90505f6141c8828661445290919063ffffffff16565b90505f4790506141d782614467565b5f6141eb824761445290919063ffffffff16565b90505f61422e60026016546142009190614d43565b8861420b9190615ad2565b6142206015548561441e90919063ffffffff16565b61443390919063ffffffff16565b90505f61427160026016546142439190614d43565b8961424e9190615ad2565b6142636017548661441e90919063ffffffff16565b61443390919063ffffffff16565b90505f8183856142819190615ad2565b61428b9190615ad2565b90505f6016819055505f6015819055505f60178190555060075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16826040516142e790614eef565b5f6040518083038185875af1925050503d805f8114614321576040519150601f19603f3d011682016040523d82523d5f602084013e614326565b606091505b5050809850505f8711801561433a57505f81115b1561438757614349878261469a565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb561868260165460405161437e93929190615b93565b60405180910390a15b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16476040516143cc90614eef565b5f6040518083038185875af1925050503d805f8114614406576040519150601f19603f3d011682016040523d82523d5f602084013e61440b565b606091505b505080985050505050505050505050505b565b5f818361442b9190614cd5565b905092915050565b5f81836144409190614d43565b905092915050565b505050565b505050565b5f818361445f9190615ad2565b905092915050565b5f600267ffffffffffffffff81111561448357614482615bc8565b5b6040519080825280602002602001820160405280156144b15781602001602082028036833780820191505090505b50905030815f815181106144c8576144c7615bf5565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561456b573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061458f9190615c36565b816001815181106145a3576145a2615bf5565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050614608307f000000000000000000000000000000000000000000000000000000000000000084612f42565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac947835f8430426040518663ffffffff1660e01b8152600401614669959493929190615d51565b5f604051808303815f87803b158015614680575f80fd5b505af1158015614692573d5f803e3d5ffd5b505050505050565b6146c5307f000000000000000000000000000000000000000000000000000000000000000084612f42565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f305d7198230855f8061470e611b5b565b426040518863ffffffff1660e01b815260040161473096959493929190615da9565b60606040518083038185885af115801561474c573d5f803e3d5ffd5b50505050506040513d601f19601f820116820180604052508101906147719190615e08565b5050505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b838110156147af578082015181840152602081019050614794565b5f8484015250505050565b5f601f19601f8301169050919050565b5f6147d482614778565b6147de8185614782565b93506147ee818560208601614792565b6147f7816147ba565b840191505092915050565b5f6020820190508181035f83015261481a81846147ca565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f61484f82614826565b9050919050565b61485f81614845565b8114614869575f80fd5b50565b5f8135905061487a81614856565b92915050565b5f819050919050565b61489281614880565b811461489c575f80fd5b50565b5f813590506148ad81614889565b92915050565b5f80604083850312156148c9576148c8614822565b5b5f6148d68582860161486c565b92505060206148e78582860161489f565b9150509250929050565b5f8115159050919050565b614905816148f1565b82525050565b5f60208201905061491e5f8301846148fc565b92915050565b5f6020828403121561493957614938614822565b5b5f6149468482850161486c565b91505092915050565b61495881614880565b82525050565b5f6020820190506149715f83018461494f565b92915050565b5f819050919050565b5f61499a61499561499084614826565b614977565b614826565b9050919050565b5f6149ab82614980565b9050919050565b5f6149bc826149a1565b9050919050565b6149cc816149b2565b82525050565b5f6020820190506149e55f8301846149c3565b92915050565b5f60208284031215614a00576149ff614822565b5b5f614a0d8482850161489f565b91505092915050565b5f805f60608486031215614a2d57614a2c614822565b5b5f614a3a8682870161486c565b9350506020614a4b8682870161486c565b9250506040614a5c8682870161489f565b9150509250925092565b614a6f81614845565b82525050565b5f602082019050614a885f830184614a66565b92915050565b5f60ff82169050919050565b614aa381614a8e565b82525050565b5f602082019050614abc5f830184614a9a565b92915050565b614acb816148f1565b8114614ad5575f80fd5b50565b5f81359050614ae681614ac2565b92915050565b5f8060408385031215614b0257614b01614822565b5b5f614b0f8582860161486c565b9250506020614b2085828601614ad8565b9150509250929050565b5f805f60608486031215614b4157614b40614822565b5b5f614b4e8682870161489f565b9350506020614b5f8682870161489f565b9250506040614b708682870161489f565b9150509250925092565b5f60208284031215614b8f57614b8e614822565b5b5f614b9c84828501614ad8565b91505092915050565b5f8060408385031215614bbb57614bba614822565b5b5f614bc88582860161486c565b9250506020614bd98582860161486c565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680614c2757607f821691505b602082108103614c3a57614c39614be3565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f614c74602083614782565b9150614c7f82614c40565b602082019050919050565b5f6020820190508181035f830152614ca181614c68565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f614cdf82614880565b9150614cea83614880565b9250828202614cf881614880565b91508282048414831517614d0f57614d0e614ca8565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f614d4d82614880565b9150614d5883614880565b925082614d6857614d67614d16565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e74205f8201527f6c6f776572207468616e20302e35250000000000000000000000000000000000602082015250565b5f614dcd602f83614782565b9150614dd882614d73565b604082019050919050565b5f6020820190508181035f830152614dfa81614dc1565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320615f8201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b5f614e5b602883614782565b9150614e6682614e01565b604082019050919050565b5f6020820190508181035f830152614e8881614e4f565b9050919050565b5f614e9982614880565b9150614ea483614880565b9250828201905080821115614ebc57614ebb614ca8565b5b92915050565b5f81905092915050565b50565b5f614eda5f83614ec2565b9150614ee582614ecc565b5f82019050919050565b5f614ef982614ecf565b9150819050919050565b7f4275792066656573206d757374206265203c3d20352e000000000000000000005f82015250565b5f614f37601683614782565b9150614f4282614f03565b602082019050919050565b5f6020820190508181035f830152614f6481614f2b565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d205f8201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b5f614fc5603983614782565b9150614fd082614f6b565b604082019050919050565b5f6020820190508181035f830152614ff281614fb9565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f615053602583614782565b915061505e82614ff9565b604082019050919050565b5f6020820190508181035f83015261508081615047565b9050919050565b7f5f746f6b656e20616464726573732063616e6e6f7420626520300000000000005f82015250565b5f6150bb601a83614782565b91506150c682615087565b602082019050919050565b5f6020820190508181035f8301526150e8816150af565b9050919050565b5f815190506150fd81614889565b92915050565b5f6020828403121561511857615117614822565b5b5f615125848285016150ef565b91505092915050565b5f6040820190506151415f830185614a66565b61514e602083018461494f565b9392505050565b5f8151905061516381614ac2565b92915050565b5f6020828403121561517e5761517d614822565b5b5f61518b84828501615155565b91505092915050565b7f53656c6c2066656573206d757374206265203c3d20352e0000000000000000005f82015250565b5f6151c8601783614782565b91506151d382615194565b602082019050919050565b5f6020820190508181035f8301526151f5816151bc565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e205f8201527f312e302500000000000000000000000000000000000000000000000000000000602082015250565b5f615256602483614782565b9150615261826151fc565b604082019050919050565b5f6020820190508181035f8301526152838161524a565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e5f8201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b5f6152e4603583614782565b91506152ef8261528a565b604082019050919050565b5f6020820190508181035f830152615311816152d8565b9050919050565b7f5377617020616d6f756e742063616e6e6f7420626520686967686572207468615f8201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b5f615372603483614782565b915061537d82615318565b604082019050919050565b5f6020820190508181035f83015261539f81615366565b9050919050565b7f5465616d20686173207265766f6b656420626c61636b6c6973742072696768745f8201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b5f615400602183614782565b915061540b826153a6565b604082019050919050565b5f6020820190508181035f83015261542d816153f4565b9050919050565b7f43616e6e6f7420626c61636b6c69737420746f6b656e277320763220726f75745f8201527f6572206f7220763220706f6f6c2e000000000000000000000000000000000000602082015250565b5f61548e602e83614782565b915061549982615434565b604082019050919050565b5f6020820190508181035f8301526154bb81615482565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f61551c602683614782565b9150615527826154c2565b604082019050919050565b5f6020820190508181035f83015261554981615510565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f6155aa602483614782565b91506155b582615550565b604082019050919050565b5f6020820190508181035f8301526155d78161559e565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f615638602283614782565b9150615643826155de565b604082019050919050565b5f6020820190508181035f8301526156658161562c565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f6156c6602583614782565b91506156d18261566c565b604082019050919050565b5f6020820190508181035f8301526156f3816156ba565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f615754602383614782565b915061575f826156fa565b604082019050919050565b5f6020820190508181035f83015261578181615748565b9050919050565b7f53656e64657220626c61636b6c697374656400000000000000000000000000005f82015250565b5f6157bc601283614782565b91506157c782615788565b602082019050919050565b5f6020820190508181035f8301526157e9816157b0565b9050919050565b7f526563656976657220626c61636b6c69737465640000000000000000000000005f82015250565b5f615824601483614782565b915061582f826157f0565b602082019050919050565b5f6020820190508181035f83015261585181615818565b9050919050565b7f4e6f7420617574686f72697a656420746f207472616e73666572207072652d6d5f8201527f6967726174696f6e2e0000000000000000000000000000000000000000000000602082015250565b5f6158b2602983614782565b91506158bd82615858565b604082019050919050565b5f6020820190508181035f8301526158df816158a6565b9050919050565b7f54726164696e67206973206e6f74206163746976652e000000000000000000005f82015250565b5f61591a601683614782565b9150615925826158e6565b602082019050919050565b5f6020820190508181035f8301526159478161590e565b9050919050565b7f427579207472616e7366657220616d6f756e74206578636565647320746865205f8201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b5f6159a8603583614782565b91506159b38261594e565b604082019050919050565b5f6020820190508181035f8301526159d58161599c565b9050919050565b7f4d61782077616c6c6574206578636565646564000000000000000000000000005f82015250565b5f615a10601383614782565b9150615a1b826159dc565b602082019050919050565b5f6020820190508181035f830152615a3d81615a04565b9050919050565b7f53656c6c207472616e7366657220616d6f756e742065786365656473207468655f8201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b5f615a9e603683614782565b9150615aa982615a44565b604082019050919050565b5f6020820190508181035f830152615acb81615a92565b9050919050565b5f615adc82614880565b9150615ae783614880565b9250828203905081811115615aff57615afe614ca8565b5b92915050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f615b5f602683614782565b9150615b6a82615b05565b604082019050919050565b5f6020820190508181035f830152615b8c81615b53565b9050919050565b5f606082019050615ba65f83018661494f565b615bb3602083018561494f565b615bc0604083018461494f565b949350505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f81519050615c3081614856565b92915050565b5f60208284031215615c4b57615c4a614822565b5b5f615c5884828501615c22565b91505092915050565b5f819050919050565b5f615c84615c7f615c7a84615c61565b614977565b614880565b9050919050565b615c9481615c6a565b82525050565b5f81519050919050565b5f82825260208201905092915050565b5f819050602082019050919050565b615ccc81614845565b82525050565b5f615cdd8383615cc3565b60208301905092915050565b5f602082019050919050565b5f615cff82615c9a565b615d098185615ca4565b9350615d1483615cb4565b805f5b83811015615d44578151615d2b8882615cd2565b9750615d3683615ce9565b925050600181019050615d17565b5085935050505092915050565b5f60a082019050615d645f83018861494f565b615d716020830187615c8b565b8181036040830152615d838186615cf5565b9050615d926060830185614a66565b615d9f608083018461494f565b9695505050505050565b5f60c082019050615dbc5f830189614a66565b615dc9602083018861494f565b615dd66040830187615c8b565b615de36060830186615c8b565b615df06080830185614a66565b615dfd60a083018461494f565b979650505050505050565b5f805f60608486031215615e1f57615e1e614822565b5b5f615e2c868287016150ef565b9350506020615e3d868287016150ef565b9250506040615e4e868287016150ef565b915050925092509256fea2646970667358221220cf9b2037a5d65bc142ec9a8178f365785d48f925d3f345c0e00dbbdc5e21555c64736f6c63430008140033

Deployed Bytecode

0x6080604052600436106103c6575f3560e01c80638095d564116101f1578063c18bc1951161010c578063e2f456051161009f578063f8b45b051161006e578063f8b45b0514610e11578063f9f92be414610e3b578063fde83a3414610e63578063fe575a8714610e8d576103cd565b8063e2f4560514610d6b578063f11a24d314610d95578063f2fde38b14610dbf578063f637434214610de7576103cd565b8063d729715f116100db578063d729715f14610cb3578063d85ba06314610cdd578063dd62ed3e14610d07578063e19b282314610d43576103cd565b8063c18bc19514610c0f578063c300ea8314610c37578063c8c8ebe414610c4d578063d257b34f14610c77576103cd565b8063a9059cbb11610184578063bbc0c74211610153578063bbc0c74214610b6d578063bc205ad314610b97578063c024666814610bbf578063c17b5b8c14610be7576103cd565b8063a9059cbb14610aa5578063aa0e438814610ae1578063adee28ff14610b09578063b62496f514610b31576103cd565b806395d89b41116101c057806395d89b41146109ed5780639a7a23d614610a175780639c2e4ac614610a3f578063a457c2d714610a69576103cd565b80638095d5641461095d5780638a8c523c146109855780638da5cb5b1461099b578063924de9b7146109c5576103cd565b806349bd5a5e116102e157806370a082311161027457806375e3661e1161024357806375e3661e146108bb578063782c4e99146108e35780637ca8448a1461090d5780637cb332bb14610935576103cd565b806370a0823114610817578063715018a614610853578063751039fc146108695780637571336a14610893576103cd565b806359927044116102b057806359927044146107835780635f189361146107ad5780636a486a8e146107c35780636ddd1713146107ed576103cd565b806349bd5a5e146106b75780634a62bb65146106e15780634e29e5231461070b5780634fbee19314610747576103cd565b80631a8145bb1161035957806327c8f8351161032857806327c8f835146105fd578063313ce5671461062757806339509351146106515780633dc599ff1461068d576103cd565b80631a8145bb14610545578063203e727e1461056f57806323b872dd1461059757806324b9f3c1146105d3576103cd565b8063156c2f3511610395578063156c2f351461049d5780631694505e146104c757806318160ddd146104f157806319eab0421461051b576103cd565b806306fdde03146103d1578063095ea7b3146103fb5780630e922ca71461043757806310d5de5314610461576103cd565b366103cd57005b5f80fd5b3480156103dc575f80fd5b506103e5610ec9565b6040516103f29190614802565b60405180910390f35b348015610406575f80fd5b50610421600480360381019061041c91906148b3565b610f59565b60405161042e919061490b565b60405180910390f35b348015610442575f80fd5b5061044b610f76565b604051610458919061490b565b60405180910390f35b34801561046c575f80fd5b5061048760048036038101906104829190614924565b610f88565b604051610494919061490b565b60405180910390f35b3480156104a8575f80fd5b506104b1610fa5565b6040516104be919061495e565b60405180910390f35b3480156104d2575f80fd5b506104db610fab565b6040516104e891906149d2565b60405180910390f35b3480156104fc575f80fd5b50610505610fcf565b604051610512919061495e565b60405180910390f35b348015610526575f80fd5b5061052f610fd8565b60405161053c919061495e565b60405180910390f35b348015610550575f80fd5b50610559610fde565b604051610566919061495e565b60405180910390f35b34801561057a575f80fd5b50610595600480360381019061059091906149eb565b610fe4565b005b3480156105a2575f80fd5b506105bd60048036038101906105b89190614a16565b6110f3565b6040516105ca919061490b565b60405180910390f35b3480156105de575f80fd5b506105e76111e5565b6040516105f4919061495e565b60405180910390f35b348015610608575f80fd5b506106116111eb565b60405161061e9190614a75565b60405180910390f35b348015610632575f80fd5b5061063b6111f1565b6040516106489190614aa9565b60405180910390f35b34801561065c575f80fd5b50610677600480360381019061067291906148b3565b6111f9565b604051610684919061490b565b60405180910390f35b348015610698575f80fd5b506106a16112a0565b6040516106ae919061490b565b60405180910390f35b3480156106c2575f80fd5b506106cb6112b3565b6040516106d89190614a75565b60405180910390f35b3480156106ec575f80fd5b506106f56112d7565b604051610702919061490b565b60405180910390f35b348015610716575f80fd5b50610731600480360381019061072c9190614924565b6112e9565b60405161073e919061490b565b60405180910390f35b348015610752575f80fd5b5061076d60048036038101906107689190614924565b611306565b60405161077a919061490b565b60405180910390f35b34801561078e575f80fd5b50610797611358565b6040516107a49190614a75565b60405180910390f35b3480156107b8575f80fd5b506107c161137d565b005b3480156107ce575f80fd5b506107d7611416565b6040516107e4919061495e565b60405180910390f35b3480156107f8575f80fd5b5061080161141c565b60405161080e919061490b565b60405180910390f35b348015610822575f80fd5b5061083d60048036038101906108389190614924565b61142f565b60405161084a919061495e565b60405180910390f35b34801561085e575f80fd5b50610867611474565b005b348015610874575f80fd5b5061087d6114fb565b60405161088a919061490b565b60405180910390f35b34801561089e575f80fd5b506108b960048036038101906108b49190614aec565b611598565b005b3480156108c6575f80fd5b506108e160048036038101906108dc9190614924565b61166c565b005b3480156108ee575f80fd5b506108f761173f565b6040516109049190614a75565b60405180910390f35b348015610918575f80fd5b50610933600480360381019061092e9190614924565b611764565b005b348015610940575f80fd5b5061095b60048036038101906109569190614924565b611855565b005b348015610968575f80fd5b50610983600480360381019061097e9190614b2a565b61198f565b005b348015610990575f80fd5b50610999611a8e565b005b3480156109a6575f80fd5b506109af611b5b565b6040516109bc9190614a75565b60405180910390f35b3480156109d0575f80fd5b506109eb60048036038101906109e69190614b7a565b611b83565b005b3480156109f8575f80fd5b50610a01611c1c565b604051610a0e9190614802565b60405180910390f35b348015610a22575f80fd5b50610a3d6004803603810190610a389190614aec565b611cac565b005b348015610a4a575f80fd5b50610a53611dc4565b604051610a60919061495e565b60405180910390f35b348015610a74575f80fd5b50610a8f6004803603810190610a8a91906148b3565b611dca565b604051610a9c919061490b565b60405180910390f35b348015610ab0575f80fd5b50610acb6004803603810190610ac691906148b3565b611eb0565b604051610ad8919061490b565b60405180910390f35b348015610aec575f80fd5b50610b076004803603810190610b029190614aec565b611ecd565b005b348015610b14575f80fd5b50610b2f6004803603810190610b2a9190614924565b611fb5565b005b348015610b3c575f80fd5b50610b576004803603810190610b529190614924565b6120ef565b604051610b64919061490b565b60405180910390f35b348015610b78575f80fd5b50610b8161210c565b604051610b8e919061490b565b60405180910390f35b348015610ba2575f80fd5b50610bbd6004803603810190610bb89190614ba5565b61211f565b005b348015610bca575f80fd5b50610be56004803603810190610be09190614aec565b612305565b005b348015610bf2575f80fd5b50610c0d6004803603810190610c089190614b2a565b612427565b005b348015610c1a575f80fd5b50610c356004803603810190610c3091906149eb565b612526565b005b348015610c42575f80fd5b50610c4b612635565b005b348015610c58575f80fd5b50610c616127ef565b604051610c6e919061495e565b60405180910390f35b348015610c82575f80fd5b50610c9d6004803603810190610c9891906149eb565b6127f5565b604051610caa919061490b565b60405180910390f35b348015610cbe575f80fd5b50610cc7612949565b604051610cd4919061495e565b60405180910390f35b348015610ce8575f80fd5b50610cf161294f565b604051610cfe919061495e565b60405180910390f35b348015610d12575f80fd5b50610d2d6004803603810190610d289190614ba5565b612955565b604051610d3a919061495e565b60405180910390f35b348015610d4e575f80fd5b50610d696004803603810190610d649190614924565b6129d7565b005b348015610d76575f80fd5b50610d7f612bd6565b604051610d8c919061495e565b60405180910390f35b348015610da0575f80fd5b50610da9612bdc565b604051610db6919061495e565b60405180910390f35b348015610dca575f80fd5b50610de56004803603810190610de09190614924565b612be2565b005b348015610df2575f80fd5b50610dfb612cd8565b604051610e08919061495e565b60405180910390f35b348015610e1c575f80fd5b50610e25612cde565b604051610e32919061495e565b60405180910390f35b348015610e46575f80fd5b50610e616004803603810190610e5c9190614924565b612ce4565b005b348015610e6e575f80fd5b50610e77612ee3565b604051610e84919061495e565b60405180910390f35b348015610e98575f80fd5b50610eb36004803603810190610eae9190614924565b612ee9565b604051610ec0919061490b565b60405180910390f35b606060038054610ed890614c10565b80601f0160208091040260200160405190810160405280929190818152602001828054610f0490614c10565b8015610f4f5780601f10610f2657610100808354040283529160200191610f4f565b820191905f5260205f20905b815481529060010190602001808311610f3257829003601f168201915b5050505050905090565b5f610f6c610f65612f3b565b8484612f42565b6001905092915050565b601b5f9054906101000a900460ff1681565b6019602052805f5260405f205f915054906101000a900460ff1681565b600e5481565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b5f600254905090565b60125481565b60165481565b610fec612f3b565b73ffffffffffffffffffffffffffffffffffffffff1661100a611b5b565b73ffffffffffffffffffffffffffffffffffffffff1614611060576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105790614c8a565b60405180910390fd5b670de0b6b3a76400006103e86005611076610fcf565b6110809190614cd5565b61108a9190614d43565b6110949190614d43565b8110156110d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110cd90614de3565b60405180910390fd5b670de0b6b3a7640000816110ea9190614cd5565b60088190555050565b5f6110ff848484613105565b5f60015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f611146612f3b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050828110156111c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111bc90614e71565b60405180910390fd5b6111d9856111d1612f3b565b858403612f42565b60019150509392505050565b60155481565b61dead81565b5f6012905090565b5f611296611205612f3b565b848460015f611212612f3b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546112919190614e8f565b612f42565b6001905092915050565b600b60039054906101000a900460ff1681565b7f000000000000000000000000a7375ebb26d55f3473230b510e5ee8b243611f8281565b600b5f9054906101000a900460ff1681565b601c602052805f5260405f205f915054906101000a900460ff1681565b5f60185f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff169050919050565b60075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b611385612f3b565b73ffffffffffffffffffffffffffffffffffffffff166113a3611b5b565b73ffffffffffffffffffffffffffffffffffffffff16146113f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113f090614c8a565b60405180910390fd5b6001600b60036101000a81548160ff021916908315150217905550565b60115481565b600b60029054906101000a900460ff1681565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b61147c612f3b565b73ffffffffffffffffffffffffffffffffffffffff1661149a611b5b565b73ffffffffffffffffffffffffffffffffffffffff16146114f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114e790614c8a565b60405180910390fd5b6114f95f613d47565b565b5f611504612f3b565b73ffffffffffffffffffffffffffffffffffffffff16611522611b5b565b73ffffffffffffffffffffffffffffffffffffffff1614611578576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156f90614c8a565b60405180910390fd5b5f600b5f6101000a81548160ff0219169083151502179055506001905090565b6115a0612f3b565b73ffffffffffffffffffffffffffffffffffffffff166115be611b5b565b73ffffffffffffffffffffffffffffffffffffffff1614611614576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160b90614c8a565b60405180910390fd5b8060195f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b611674612f3b565b73ffffffffffffffffffffffffffffffffffffffff16611692611b5b565b73ffffffffffffffffffffffffffffffffffffffff16146116e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116df90614c8a565b60405180910390fd5b5f600c5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff02191690831515021790555050565b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b61176c612f3b565b73ffffffffffffffffffffffffffffffffffffffff1661178a611b5b565b73ffffffffffffffffffffffffffffffffffffffff16146117e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117d790614c8a565b60405180910390fd5b5f8173ffffffffffffffffffffffffffffffffffffffff164760405161180590614eef565b5f6040518083038185875af1925050503d805f811461183f576040519150601f19603f3d011682016040523d82523d5f602084013e611844565b606091505b5050905080611851575f80fd5b5050565b61185d612f3b565b73ffffffffffffffffffffffffffffffffffffffff1661187b611b5b565b73ffffffffffffffffffffffffffffffffffffffff16146118d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118c890614c8a565b60405180910390fd5b60075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8aa0f85050aca99be43beb823e0457e77966b3baf697a289b03681978f96166860405160405180910390a38060075f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b611997612f3b565b73ffffffffffffffffffffffffffffffffffffffff166119b5611b5b565b73ffffffffffffffffffffffffffffffffffffffff1614611a0b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a0290614c8a565b60405180910390fd5b82600e8190555081600f8190555080601081905550601054600f54600e54611a339190614e8f565b611a3d9190614e8f565b600d819055506005600d541115611a89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a8090614f4d565b60405180910390fd5b505050565b611a96612f3b565b73ffffffffffffffffffffffffffffffffffffffff16611ab4611b5b565b73ffffffffffffffffffffffffffffffffffffffff1614611b0a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b0190614c8a565b60405180910390fd5b6001600b60016101000a81548160ff0219169083151502179055506001600b60026101000a81548160ff0219169083151502179055505f601b5f6101000a81548160ff021916908315150217905550565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611b8b612f3b565b73ffffffffffffffffffffffffffffffffffffffff16611ba9611b5b565b73ffffffffffffffffffffffffffffffffffffffff1614611bff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bf690614c8a565b60405180910390fd5b80600b60026101000a81548160ff02191690831515021790555050565b606060048054611c2b90614c10565b80601f0160208091040260200160405190810160405280929190818152602001828054611c5790614c10565b8015611ca25780601f10611c7957610100808354040283529160200191611ca2565b820191905f5260205f20905b815481529060010190602001808311611c8557829003601f168201915b5050505050905090565b611cb4612f3b565b73ffffffffffffffffffffffffffffffffffffffff16611cd2611b5b565b73ffffffffffffffffffffffffffffffffffffffff1614611d28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d1f90614c8a565b60405180910390fd5b7f000000000000000000000000a7375ebb26d55f3473230b510e5ee8b243611f8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611db6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dad90614fdb565b60405180910390fd5b611dc08282613e0a565b5050565b60105481565b5f8060015f611dd7612f3b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905082811015611e91576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e8890615069565b60405180910390fd5b611ea5611e9c612f3b565b85858403612f42565b600191505092915050565b5f611ec3611ebc612f3b565b8484613105565b6001905092915050565b611ed5612f3b565b73ffffffffffffffffffffffffffffffffffffffff16611ef3611b5b565b73ffffffffffffffffffffffffffffffffffffffff1614611f49576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f4090614c8a565b60405180910390fd5b80601c5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550611fa78282612305565b611fb18282611598565b5050565b611fbd612f3b565b73ffffffffffffffffffffffffffffffffffffffff16611fdb611b5b565b73ffffffffffffffffffffffffffffffffffffffff1614612031576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161202890614c8a565b60405180910390fd5b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fc9f2d63eee8632b33d7a7db5252eb29036e81ee4fbe29260febe0c49ffb8a7bb60405160405180910390a38060065f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b601a602052805f5260405f205f915054906101000a900460ff1681565b600b60019054906101000a900460ff1681565b612127612f3b565b73ffffffffffffffffffffffffffffffffffffffff16612145611b5b565b73ffffffffffffffffffffffffffffffffffffffff161461219b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161219290614c8a565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612209576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612200906150d1565b60405180910390fd5b5f8273ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016122439190614a75565b602060405180830381865afa15801561225e573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906122829190615103565b90508273ffffffffffffffffffffffffffffffffffffffff1663a9059cbb83836040518363ffffffff1660e01b81526004016122bf92919061512e565b6020604051808303815f875af11580156122db573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906122ff9190615169565b50505050565b61230d612f3b565b73ffffffffffffffffffffffffffffffffffffffff1661232b611b5b565b73ffffffffffffffffffffffffffffffffffffffff1614612381576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161237890614c8a565b60405180910390fd5b8060185f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df78260405161241b919061490b565b60405180910390a25050565b61242f612f3b565b73ffffffffffffffffffffffffffffffffffffffff1661244d611b5b565b73ffffffffffffffffffffffffffffffffffffffff16146124a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161249a90614c8a565b60405180910390fd5b8260128190555081601381905550806014819055506014546013546012546124cb9190614e8f565b6124d59190614e8f565b60118190555060056011541115612521576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612518906151de565b60405180910390fd5b505050565b61252e612f3b565b73ffffffffffffffffffffffffffffffffffffffff1661254c611b5b565b73ffffffffffffffffffffffffffffffffffffffff16146125a2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161259990614c8a565b60405180910390fd5b670de0b6b3a76400006103e8600a6125b8610fcf565b6125c29190614cd5565b6125cc9190614d43565b6125d69190614d43565b811015612618576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161260f9061526c565b60405180910390fd5b670de0b6b3a76400008161262c9190614cd5565b600a8190555050565b61263d612f3b565b73ffffffffffffffffffffffffffffffffffffffff1661265b611b5b565b73ffffffffffffffffffffffffffffffffffffffff16146126b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126a890614c8a565b60405180910390fd5b5f3073ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016126eb9190614a75565b602060405180830381865afa158015612706573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061272a9190615103565b90503073ffffffffffffffffffffffffffffffffffffffff1663a9059cbb33836040518363ffffffff1660e01b815260040161276792919061512e565b6020604051808303815f875af1158015612783573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906127a79190615169565b503373ffffffffffffffffffffffffffffffffffffffff166108fc4790811502906040515f60405180830381858888f193505050501580156127eb573d5f803e3d5ffd5b5050565b60085481565b5f6127fe612f3b565b73ffffffffffffffffffffffffffffffffffffffff1661281c611b5b565b73ffffffffffffffffffffffffffffffffffffffff1614612872576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161286990614c8a565b60405180910390fd5b620186a06001612880610fcf565b61288a9190614cd5565b6128949190614d43565b8210156128d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128cd906152fa565b60405180910390fd5b6103e860056128e3610fcf565b6128ed9190614cd5565b6128f79190614d43565b821115612939576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161293090615388565b60405180910390fd5b8160098190555060019050919050565b60145481565b600d5481565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b6129df612f3b565b73ffffffffffffffffffffffffffffffffffffffff166129fd611b5b565b73ffffffffffffffffffffffffffffffffffffffff1614612a53576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a4a90614c8a565b60405180910390fd5b600b60039054906101000a900460ff1615612aa3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a9a90615416565b60405180910390fd5b7f000000000000000000000000a7375ebb26d55f3473230b510e5ee8b243611f8273ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614158015612b3f5750737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614155b612b7e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b75906154a4565b60405180910390fd5b6001600c5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff02191690831515021790555050565b60095481565b600f5481565b612bea612f3b565b73ffffffffffffffffffffffffffffffffffffffff16612c08611b5b565b73ffffffffffffffffffffffffffffffffffffffff1614612c5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c5590614c8a565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603612ccc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cc390615532565b60405180910390fd5b612cd581613d47565b50565b60135481565b600a5481565b612cec612f3b565b73ffffffffffffffffffffffffffffffffffffffff16612d0a611b5b565b73ffffffffffffffffffffffffffffffffffffffff1614612d60576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d5790614c8a565b60405180910390fd5b600b60039054906101000a900460ff1615612db0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612da790615416565b60405180910390fd5b7f000000000000000000000000a7375ebb26d55f3473230b510e5ee8b243611f8273ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614158015612e4c5750737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614155b612e8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e82906154a4565b60405180910390fd5b6001600c5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff02191690831515021790555050565b60175481565b5f600c5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff169050919050565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612fb0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fa7906155c0565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361301e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130159061564e565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516130f8919061495e565b60405180910390a3505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603613173576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161316a906156dc565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036131e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131d89061576a565b60405180910390fd5b600c5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff161561326b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613262906157d2565b60405180910390fd5b600c5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16156132f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132ec9061583a565b60405180910390fd5b601b5f9054906101000a900460ff161561339357601c5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16613392576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613389906158c8565b60405180910390fd5b5b5f81036133aa576133a583835f613ea8565b613d42565b600b5f9054906101000a900460ff161561388e576133c6611b5b565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156134345750613404611b5b565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561346c57505f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156134a6575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156134bf5750600560149054906101000a900460ff16155b1561388d57600b60019054906101000a900460ff166135b35760185f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1680613573575060185f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b6135b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016135a990615930565b60405180910390fd5b5b601a5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff168015613650575060195f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b156136f75760085481111561369a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613691906159be565b60405180910390fd5b600a546136a68361142f565b826136b19190614e8f565b11156136f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016136e990615a26565b60405180910390fd5b61388c565b601a5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff168015613794575060195f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b156137e3576008548111156137de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016137d590615ab4565b60405180910390fd5b61388b565b60195f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1661388a57600a5461383d8361142f565b826138489190614e8f565b1115613889576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161388090615a26565b60405180910390fd5b5b5b5b5b5b5f6138983061142f565b90505f60095482101590508080156138bc5750600b60029054906101000a900460ff165b80156138d55750600560149054906101000a900460ff16155b80156139285750601a5f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b801561397b575060185f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b80156139ce575060185f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b15613a11576001600560146101000a81548160ff0219169083151502179055506139f661411d565b5f600560146101000a81548160ff0219169083151502179055505b5f600560149054906101000a900460ff1615905060185f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1680613ac0575060185f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b15613ac9575f90505b5f8115613d3257601a5f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff168015613b2757505f601154115b15613bf157613b546064613b466011548861441e90919063ffffffff16565b61443390919063ffffffff16565b905060115460135482613b679190614cd5565b613b719190614d43565b60165f828254613b819190614e8f565b9250508190555060115460145482613b999190614cd5565b613ba39190614d43565b60175f828254613bb39190614e8f565b9250508190555060115460125482613bcb9190614cd5565b613bd59190614d43565b60155f828254613be59190614e8f565b92505081905550613d0f565b601a5f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff168015613c4857505f600d54115b15613d0e57613c756064613c67600d548861441e90919063ffffffff16565b61443390919063ffffffff16565b9050600d54600f5482613c889190614cd5565b613c929190614d43565b60165f828254613ca29190614e8f565b92505081905550600d5460105482613cba9190614cd5565b613cc49190614d43565b60175f828254613cd49190614e8f565b92505081905550600d54600e5482613cec9190614cd5565b613cf69190614d43565b60155f828254613d069190614e8f565b925050819055505b5b5f811115613d2357613d22873083613ea8565b5b8085613d2f9190615ad2565b94505b613d3d878787613ea8565b505050505b505050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80601a5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603613f16576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613f0d906156dc565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603613f84576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613f7b9061576a565b60405180910390fd5b613f8f838383614448565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015614012576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161400990615b75565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550815f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8282546140a09190614e8f565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051614104919061495e565b60405180910390a361411784848461444d565b50505050565b5f6141273061142f565b90505f60175460155460165461413d9190614e8f565b6141479190614e8f565b90505f8083148061415757505f82145b156141645750505061441c565b60146009546141739190614cd5565b83111561418c5760146009546141899190614cd5565b92505b5f6002836016548661419e9190614cd5565b6141a89190614d43565b6141b29190614d43565b90505f6141c8828661445290919063ffffffff16565b90505f4790506141d782614467565b5f6141eb824761445290919063ffffffff16565b90505f61422e60026016546142009190614d43565b8861420b9190615ad2565b6142206015548561441e90919063ffffffff16565b61443390919063ffffffff16565b90505f61427160026016546142439190614d43565b8961424e9190615ad2565b6142636017548661441e90919063ffffffff16565b61443390919063ffffffff16565b90505f8183856142819190615ad2565b61428b9190615ad2565b90505f6016819055505f6015819055505f60178190555060075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16826040516142e790614eef565b5f6040518083038185875af1925050503d805f8114614321576040519150601f19603f3d011682016040523d82523d5f602084013e614326565b606091505b5050809850505f8711801561433a57505f81115b1561438757614349878261469a565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb561868260165460405161437e93929190615b93565b60405180910390a15b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16476040516143cc90614eef565b5f6040518083038185875af1925050503d805f8114614406576040519150601f19603f3d011682016040523d82523d5f602084013e61440b565b606091505b505080985050505050505050505050505b565b5f818361442b9190614cd5565b905092915050565b5f81836144409190614d43565b905092915050565b505050565b505050565b5f818361445f9190615ad2565b905092915050565b5f600267ffffffffffffffff81111561448357614482615bc8565b5b6040519080825280602002602001820160405280156144b15781602001602082028036833780820191505090505b50905030815f815181106144c8576144c7615bf5565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561456b573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061458f9190615c36565b816001815181106145a3576145a2615bf5565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050614608307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84612f42565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac947835f8430426040518663ffffffff1660e01b8152600401614669959493929190615d51565b5f604051808303815f87803b158015614680575f80fd5b505af1158015614692573d5f803e3d5ffd5b505050505050565b6146c5307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84612f42565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d7198230855f8061470e611b5b565b426040518863ffffffff1660e01b815260040161473096959493929190615da9565b60606040518083038185885af115801561474c573d5f803e3d5ffd5b50505050506040513d601f19601f820116820180604052508101906147719190615e08565b5050505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b838110156147af578082015181840152602081019050614794565b5f8484015250505050565b5f601f19601f8301169050919050565b5f6147d482614778565b6147de8185614782565b93506147ee818560208601614792565b6147f7816147ba565b840191505092915050565b5f6020820190508181035f83015261481a81846147ca565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f61484f82614826565b9050919050565b61485f81614845565b8114614869575f80fd5b50565b5f8135905061487a81614856565b92915050565b5f819050919050565b61489281614880565b811461489c575f80fd5b50565b5f813590506148ad81614889565b92915050565b5f80604083850312156148c9576148c8614822565b5b5f6148d68582860161486c565b92505060206148e78582860161489f565b9150509250929050565b5f8115159050919050565b614905816148f1565b82525050565b5f60208201905061491e5f8301846148fc565b92915050565b5f6020828403121561493957614938614822565b5b5f6149468482850161486c565b91505092915050565b61495881614880565b82525050565b5f6020820190506149715f83018461494f565b92915050565b5f819050919050565b5f61499a61499561499084614826565b614977565b614826565b9050919050565b5f6149ab82614980565b9050919050565b5f6149bc826149a1565b9050919050565b6149cc816149b2565b82525050565b5f6020820190506149e55f8301846149c3565b92915050565b5f60208284031215614a00576149ff614822565b5b5f614a0d8482850161489f565b91505092915050565b5f805f60608486031215614a2d57614a2c614822565b5b5f614a3a8682870161486c565b9350506020614a4b8682870161486c565b9250506040614a5c8682870161489f565b9150509250925092565b614a6f81614845565b82525050565b5f602082019050614a885f830184614a66565b92915050565b5f60ff82169050919050565b614aa381614a8e565b82525050565b5f602082019050614abc5f830184614a9a565b92915050565b614acb816148f1565b8114614ad5575f80fd5b50565b5f81359050614ae681614ac2565b92915050565b5f8060408385031215614b0257614b01614822565b5b5f614b0f8582860161486c565b9250506020614b2085828601614ad8565b9150509250929050565b5f805f60608486031215614b4157614b40614822565b5b5f614b4e8682870161489f565b9350506020614b5f8682870161489f565b9250506040614b708682870161489f565b9150509250925092565b5f60208284031215614b8f57614b8e614822565b5b5f614b9c84828501614ad8565b91505092915050565b5f8060408385031215614bbb57614bba614822565b5b5f614bc88582860161486c565b9250506020614bd98582860161486c565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680614c2757607f821691505b602082108103614c3a57614c39614be3565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f614c74602083614782565b9150614c7f82614c40565b602082019050919050565b5f6020820190508181035f830152614ca181614c68565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f614cdf82614880565b9150614cea83614880565b9250828202614cf881614880565b91508282048414831517614d0f57614d0e614ca8565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f614d4d82614880565b9150614d5883614880565b925082614d6857614d67614d16565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e74205f8201527f6c6f776572207468616e20302e35250000000000000000000000000000000000602082015250565b5f614dcd602f83614782565b9150614dd882614d73565b604082019050919050565b5f6020820190508181035f830152614dfa81614dc1565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320615f8201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b5f614e5b602883614782565b9150614e6682614e01565b604082019050919050565b5f6020820190508181035f830152614e8881614e4f565b9050919050565b5f614e9982614880565b9150614ea483614880565b9250828201905080821115614ebc57614ebb614ca8565b5b92915050565b5f81905092915050565b50565b5f614eda5f83614ec2565b9150614ee582614ecc565b5f82019050919050565b5f614ef982614ecf565b9150819050919050565b7f4275792066656573206d757374206265203c3d20352e000000000000000000005f82015250565b5f614f37601683614782565b9150614f4282614f03565b602082019050919050565b5f6020820190508181035f830152614f6481614f2b565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d205f8201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b5f614fc5603983614782565b9150614fd082614f6b565b604082019050919050565b5f6020820190508181035f830152614ff281614fb9565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f615053602583614782565b915061505e82614ff9565b604082019050919050565b5f6020820190508181035f83015261508081615047565b9050919050565b7f5f746f6b656e20616464726573732063616e6e6f7420626520300000000000005f82015250565b5f6150bb601a83614782565b91506150c682615087565b602082019050919050565b5f6020820190508181035f8301526150e8816150af565b9050919050565b5f815190506150fd81614889565b92915050565b5f6020828403121561511857615117614822565b5b5f615125848285016150ef565b91505092915050565b5f6040820190506151415f830185614a66565b61514e602083018461494f565b9392505050565b5f8151905061516381614ac2565b92915050565b5f6020828403121561517e5761517d614822565b5b5f61518b84828501615155565b91505092915050565b7f53656c6c2066656573206d757374206265203c3d20352e0000000000000000005f82015250565b5f6151c8601783614782565b91506151d382615194565b602082019050919050565b5f6020820190508181035f8301526151f5816151bc565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e205f8201527f312e302500000000000000000000000000000000000000000000000000000000602082015250565b5f615256602483614782565b9150615261826151fc565b604082019050919050565b5f6020820190508181035f8301526152838161524a565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e5f8201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b5f6152e4603583614782565b91506152ef8261528a565b604082019050919050565b5f6020820190508181035f830152615311816152d8565b9050919050565b7f5377617020616d6f756e742063616e6e6f7420626520686967686572207468615f8201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b5f615372603483614782565b915061537d82615318565b604082019050919050565b5f6020820190508181035f83015261539f81615366565b9050919050565b7f5465616d20686173207265766f6b656420626c61636b6c6973742072696768745f8201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b5f615400602183614782565b915061540b826153a6565b604082019050919050565b5f6020820190508181035f83015261542d816153f4565b9050919050565b7f43616e6e6f7420626c61636b6c69737420746f6b656e277320763220726f75745f8201527f6572206f7220763220706f6f6c2e000000000000000000000000000000000000602082015250565b5f61548e602e83614782565b915061549982615434565b604082019050919050565b5f6020820190508181035f8301526154bb81615482565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f61551c602683614782565b9150615527826154c2565b604082019050919050565b5f6020820190508181035f83015261554981615510565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f6155aa602483614782565b91506155b582615550565b604082019050919050565b5f6020820190508181035f8301526155d78161559e565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f615638602283614782565b9150615643826155de565b604082019050919050565b5f6020820190508181035f8301526156658161562c565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f6156c6602583614782565b91506156d18261566c565b604082019050919050565b5f6020820190508181035f8301526156f3816156ba565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f615754602383614782565b915061575f826156fa565b604082019050919050565b5f6020820190508181035f83015261578181615748565b9050919050565b7f53656e64657220626c61636b6c697374656400000000000000000000000000005f82015250565b5f6157bc601283614782565b91506157c782615788565b602082019050919050565b5f6020820190508181035f8301526157e9816157b0565b9050919050565b7f526563656976657220626c61636b6c69737465640000000000000000000000005f82015250565b5f615824601483614782565b915061582f826157f0565b602082019050919050565b5f6020820190508181035f83015261585181615818565b9050919050565b7f4e6f7420617574686f72697a656420746f207472616e73666572207072652d6d5f8201527f6967726174696f6e2e0000000000000000000000000000000000000000000000602082015250565b5f6158b2602983614782565b91506158bd82615858565b604082019050919050565b5f6020820190508181035f8301526158df816158a6565b9050919050565b7f54726164696e67206973206e6f74206163746976652e000000000000000000005f82015250565b5f61591a601683614782565b9150615925826158e6565b602082019050919050565b5f6020820190508181035f8301526159478161590e565b9050919050565b7f427579207472616e7366657220616d6f756e74206578636565647320746865205f8201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b5f6159a8603583614782565b91506159b38261594e565b604082019050919050565b5f6020820190508181035f8301526159d58161599c565b9050919050565b7f4d61782077616c6c6574206578636565646564000000000000000000000000005f82015250565b5f615a10601383614782565b9150615a1b826159dc565b602082019050919050565b5f6020820190508181035f830152615a3d81615a04565b9050919050565b7f53656c6c207472616e7366657220616d6f756e742065786365656473207468655f8201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b5f615a9e603683614782565b9150615aa982615a44565b604082019050919050565b5f6020820190508181035f830152615acb81615a92565b9050919050565b5f615adc82614880565b9150615ae783614880565b9250828203905081811115615aff57615afe614ca8565b5b92915050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f615b5f602683614782565b9150615b6a82615b05565b604082019050919050565b5f6020820190508181035f830152615b8c81615b53565b9050919050565b5f606082019050615ba65f83018661494f565b615bb3602083018561494f565b615bc0604083018461494f565b949350505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f81519050615c3081614856565b92915050565b5f60208284031215615c4b57615c4a614822565b5b5f615c5884828501615c22565b91505092915050565b5f819050919050565b5f615c84615c7f615c7a84615c61565b614977565b614880565b9050919050565b615c9481615c6a565b82525050565b5f81519050919050565b5f82825260208201905092915050565b5f819050602082019050919050565b615ccc81614845565b82525050565b5f615cdd8383615cc3565b60208301905092915050565b5f602082019050919050565b5f615cff82615c9a565b615d098185615ca4565b9350615d1483615cb4565b805f5b83811015615d44578151615d2b8882615cd2565b9750615d3683615ce9565b925050600181019050615d17565b5085935050505092915050565b5f60a082019050615d645f83018861494f565b615d716020830187615c8b565b8181036040830152615d838186615cf5565b9050615d926060830185614a66565b615d9f608083018461494f565b9695505050505050565b5f60c082019050615dbc5f830189614a66565b615dc9602083018861494f565b615dd66040830187615c8b565b615de36060830186615c8b565b615df06080830185614a66565b615dfd60a083018461494f565b979650505050505050565b5f805f60608486031215615e1f57615e1e614822565b5b5f615e2c868287016150ef565b9350506020615e3d868287016150ef565b9250506040615e4e868287016150ef565b915050925092509256fea2646970667358221220cf9b2037a5d65bc142ec9a8178f365785d48f925d3f345c0e00dbbdc5e21555c64736f6c63430008140033

Deployed Bytecode Sourcemap

31098:17948:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9057:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11224:169;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32652:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32365:63;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31857:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31176:51;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10177:108;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31999:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32148:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36593:275;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;11875:492;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32109:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31279:53;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10019:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12776:215;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31676:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31234;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31556:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32695:57;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39404:126;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31407:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47568:90;;;;;;;;;;;;;:::i;:::-;;31964:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31636:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10348:127;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2574:103;;;;;;;;;;;;;:::i;:::-;;35897:121;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37141:167;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48679:98;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31371:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47318:196;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39235:161;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37512:395;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35697:148;;;;;;;;;;;;;:::i;:::-;;1923:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37404:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9276:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38518:304;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31930:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13494:413;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10688:175;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48785:258;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39026:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32586:57;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31596:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47022:288;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38328:182;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37915:405;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36876:257;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46755:259;;;;;;;;;;;;;:::i;:::-;;31441:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36088:497;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32074:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31823:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10926:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48143:403;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31483:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31893:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2832:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32036:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31523:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47666:374;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32188:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39538:113;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9057:100;9111:13;9144:5;9137:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9057:100;:::o;11224:169::-;11307:4;11324:39;11333:12;:10;:12::i;:::-;11347:7;11356:6;11324:8;:39::i;:::-;11381:4;11374:11;;11224:169;;;;:::o;32652:36::-;;;;;;;;;;;;;:::o;32365:63::-;;;;;;;;;;;;;;;;;;;;;;:::o;31857:29::-;;;;:::o;31176:51::-;;;:::o;10177:108::-;10238:7;10265:12;;10258:19;;10177:108;:::o;31999:30::-;;;;:::o;32148:33::-;;;;:::o;36593:275::-;2154:12;:10;:12::i;:::-;2143:23;;:7;:5;:7::i;:::-;:23;;;2135:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;36730:4:::1;36722;36717:1;36701:13;:11;:13::i;:::-;:17;;;;:::i;:::-;36700:26;;;;:::i;:::-;36699:35;;;;:::i;:::-;36689:6;:45;;36667:142;;;;;;;;;;;;:::i;:::-;;;;;;;;;36853:6;36843;:17;;;;:::i;:::-;36820:20;:40;;;;36593:275:::0;:::o;11875:492::-;12015:4;12032:36;12042:6;12050:9;12061:6;12032:9;:36::i;:::-;12081:24;12108:11;:19;12120:6;12108:19;;;;;;;;;;;;;;;:33;12128:12;:10;:12::i;:::-;12108:33;;;;;;;;;;;;;;;;12081:60;;12180:6;12160:16;:26;;12152:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;12267:57;12276:6;12284:12;:10;:12::i;:::-;12317:6;12298:16;:25;12267:8;:57::i;:::-;12355:4;12348:11;;;11875:492;;;;;:::o;32109:32::-;;;;:::o;31279:53::-;31325:6;31279:53;:::o;10019:93::-;10077:5;10102:2;10095:9;;10019:93;:::o;12776:215::-;12864:4;12881:80;12890:12;:10;:12::i;:::-;12904:7;12950:10;12913:11;:25;12925:12;:10;:12::i;:::-;12913:25;;;;;;;;;;;;;;;:34;12939:7;12913:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;12881:8;:80::i;:::-;12979:4;12972:11;;12776:215;;;;:::o;31676:38::-;;;;;;;;;;;;;:::o;31234:::-;;;:::o;31556:33::-;;;;;;;;;;;;;:::o;32695:57::-;;;;;;;;;;;;;;;;;;;;;;:::o;39404:126::-;39470:4;39494:19;:28;39514:7;39494:28;;;;;;;;;;;;;;;;;;;;;;;;;39487:35;;39404:126;;;:::o;31407:25::-;;;;;;;;;;;;;:::o;47568:90::-;2154:12;:10;:12::i;:::-;2143:23;;:7;:5;:7::i;:::-;:23;;;2135:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47646:4:::1;47625:18;;:25;;;;;;;;;;;;;;;;;;47568:90::o:0;31964:28::-;;;;:::o;31636:31::-;;;;;;;;;;;;;:::o;10348:127::-;10422:7;10449:9;:18;10459:7;10449:18;;;;;;;;;;;;;;;;10442:25;;10348:127;;;:::o;2574:103::-;2154:12;:10;:12::i;:::-;2143:23;;:7;:5;:7::i;:::-;:23;;;2135:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2639:30:::1;2666:1;2639:18;:30::i;:::-;2574:103::o:0;35897:121::-;35949:4;2154:12;:10;:12::i;:::-;2143:23;;:7;:5;:7::i;:::-;:23;;;2135:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;35983:5:::1;35966:14;;:22;;;;;;;;;;;;;;;;;;36006:4;35999:11;;35897:121:::0;:::o;37141:167::-;2154:12;:10;:12::i;:::-;2143:23;;:7;:5;:7::i;:::-;:23;;;2135:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37296:4:::1;37254:31;:39;37286:6;37254:39;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;37141:167:::0;;:::o;48679:98::-;2154:12;:10;:12::i;:::-;2143:23;;:7;:5;:7::i;:::-;:23;;;2135:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48764:5:::1;48743:11;:18;48755:5;48743:18;;;;;;;;;;;;;;;;:26;;;;;;;;;;;;;;;;;;48679:98:::0;:::o;31371:29::-;;;;;;;;;;;;;:::o;47318:196::-;2154:12;:10;:12::i;:::-;2143:23;;:7;:5;:7::i;:::-;:23;;;2135:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47391:12:::1;47409:6;:11;;47442:21;47409:70;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47390:89;;;47498:7;47490:16;;;::::0;::::1;;47379:135;47318:196:::0;:::o;39235:161::-;2154:12;:10;:12::i;:::-;2143:23;;:7;:5;:7::i;:::-;:23;;;2135:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39344:10:::1;;;;;;;;;;;39315:40;;39333:9;39315:40;;;;;;;;;;;;39379:9;39366:10;;:22;;;;;;;;;;;;;;;;;;39235:161:::0;:::o;37512:395::-;2154:12;:10;:12::i;:::-;2143:23;;:7;:5;:7::i;:::-;:23;;;2135:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37679:12:::1;37662:14;:29;;;;37720:13;37702:15;:31;;;;37757:8;37744:10;:21;;;;37826:10;;37808:15;;37791:14;;:32;;;;:::i;:::-;:45;;;;:::i;:::-;37776:12;:60;;;;37871:1;37855:12;;:17;;37847:52;;;;;;;;;;;;:::i;:::-;;;;;;;;;37512:395:::0;;;:::o;35697:148::-;2154:12;:10;:12::i;:::-;2143:23;;:7;:5;:7::i;:::-;:23;;;2135:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;35768:4:::1;35752:13;;:20;;;;;;;;;;;;;;;;;;35797:4;35783:11;;:18;;;;;;;;;;;;;;;;;;35832:5;35812:17;;:25;;;;;;;;;;;;;;;;;;35697:148::o:0;1923:87::-;1969:7;1996:6;;;;;;;;;;;1989:13;;1923:87;:::o;37404:100::-;2154:12;:10;:12::i;:::-;2143:23;;:7;:5;:7::i;:::-;:23;;;2135:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37489:7:::1;37475:11;;:21;;;;;;;;;;;;;;;;;;37404:100:::0;:::o;9276:104::-;9332:13;9365:7;9358:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9276:104;:::o;38518:304::-;2154:12;:10;:12::i;:::-;2143:23;;:7;:5;:7::i;:::-;:23;;;2135:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38662:13:::1;38654:21;;:4;:21;;::::0;38632:128:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;38773:41;38802:4;38808:5;38773:28;:41::i;:::-;38518:304:::0;;:::o;31930:25::-;;;;:::o;13494:413::-;13587:4;13604:24;13631:11;:25;13643:12;:10;:12::i;:::-;13631:25;;;;;;;;;;;;;;;:34;13657:7;13631:34;;;;;;;;;;;;;;;;13604:61;;13704:15;13684:16;:35;;13676:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;13797:67;13806:12;:10;:12::i;:::-;13820:7;13848:15;13829:16;:34;13797:8;:67::i;:::-;13895:4;13888:11;;;13494:413;;;;:::o;10688:175::-;10774:4;10791:42;10801:12;:10;:12::i;:::-;10815:9;10826:6;10791:9;:42::i;:::-;10851:4;10844:11;;10688:175;;;;:::o;48785:258::-;2154:12;:10;:12::i;:::-;2143:23;;:7;:5;:7::i;:::-;:23;;;2135:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48919:12:::1;48884:25;:32;48910:5;48884:32;;;;;;;;;;;;;;;;:47;;;;;;;;;;;;;;;;;;48942:36;48958:5;48965:12;48942:15;:36::i;:::-;48989:46;49015:5;49022:12;48989:25;:46::i;:::-;48785:258:::0;;:::o;39026:201::-;2154:12;:10;:12::i;:::-;2143:23;;:7;:5;:7::i;:::-;:23;;;2135:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39159:14:::1;;;;;;;;;;;39118:56;;39140:17;39118:56;;;;;;;;;;;;39202:17;39185:14;;:34;;;;;;;;;;;;;;;;;;39026:201:::0;:::o;32586:57::-;;;;;;;;;;;;;;;;;;;;;;:::o;31596:33::-;;;;;;;;;;;;;:::o;47022:288::-;2154:12;:10;:12::i;:::-;2143:23;;:7;:5;:7::i;:::-;:23;;;2135:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47135:1:::1;47117:20;;:6;:20;;::::0;47109:59:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;47179:24;47213:6;47206:24;;;47239:4;47206:39;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;47179:66;;47263:6;47256:23;;;47280:3;47285:16;47256:46;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;47098:212;47022:288:::0;;:::o;38328:182::-;2154:12;:10;:12::i;:::-;2143:23;;:7;:5;:7::i;:::-;:23;;;2135:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38444:8:::1;38413:19;:28;38433:7;38413:28;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;38484:7;38468:34;;;38493:8;38468:34;;;;;;:::i;:::-;;;;;;;;38328:182:::0;;:::o;37915:405::-;2154:12;:10;:12::i;:::-;2143:23;;:7;:5;:7::i;:::-;:23;;;2135:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38084:12:::1;38066:15;:30;;;;38126:13;38107:16;:32;;;;38164:8;38150:11;:22;;;;38236:11;;38217:16;;38199:15;;:34;;;;:::i;:::-;:48;;;;:::i;:::-;38183:13;:64;;;;38283:1;38266:13;;:18;;38258:54;;;;;;;;;;;;:::i;:::-;;;;;;;;;37915:405:::0;;;:::o;36876:257::-;2154:12;:10;:12::i;:::-;2143:23;;:7;:5;:7::i;:::-;:23;;;2135:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37017:4:::1;37009;37003:2;36987:13;:11;:13::i;:::-;:18;;;;:::i;:::-;36986:27;;;;:::i;:::-;36985:36;;;;:::i;:::-;36975:6;:46;;36953:132;;;;;;;;;;;;:::i;:::-;;;;;;;;;37118:6;37108;:17;;;;:::i;:::-;37096:9;:29;;;;36876:257:::0;:::o;46755:259::-;2154:12;:10;:12::i;:::-;2143:23;;:7;:5;:7::i;:::-;:23;;;2135:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;46818:15:::1;46851:4;46836:31;;;46876:4;46836:46;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;46818:64;;46908:4;46893:30;;;46924:10;46936:7;46893:51;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;46963:10;46955:28;;:51;46984:21;46955:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;46807:207;46755:259::o:0;31441:35::-;;;;:::o;36088:497::-;36196:4;2154:12;:10;:12::i;:::-;2143:23;;:7;:5;:7::i;:::-;:23;;;2135:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;36275:6:::1;36270:1;36254:13;:11;:13::i;:::-;:17;;;;:::i;:::-;36253:28;;;;:::i;:::-;36240:9;:41;;36218:144;;;;;;;;;;;;:::i;:::-;;;;;;;;;36430:4;36425:1;36409:13;:11;:13::i;:::-;:17;;;;:::i;:::-;36408:26;;;;:::i;:::-;36395:9;:39;;36373:141;;;;;;;;;;;;:::i;:::-;;;;;;;;;36546:9;36525:18;:30;;;;36573:4;36566:11;;36088:497:::0;;;:::o;32074:26::-;;;;:::o;31823:27::-;;;;:::o;10926:151::-;11015:7;11042:11;:18;11054:5;11042:18;;;;;;;;;;;;;;;:27;11061:7;11042:27;;;;;;;;;;;;;;;;11035:34;;10926:151;;;;:::o;48143:403::-;2154:12;:10;:12::i;:::-;2143:23;;:7;:5;:7::i;:::-;:23;;;2135:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48231:18:::1;;;;;;;;;;;48230:19;48222:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;48341:13;48320:35;;:9;:35;;;;:103;;;;;48380:42;48359:64;;:9;:64;;;;48320:103;48298:200;;;;;;;;;;;;:::i;:::-;;;;;;;;;48534:4;48509:11;:22;48521:9;48509:22;;;;;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;48143:403:::0;:::o;31483:33::-;;;;:::o;31893:30::-;;;;:::o;2832:201::-;2154:12;:10;:12::i;:::-;2143:23;;:7;:5;:7::i;:::-;:23;;;2135:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2941:1:::1;2921:22;;:8;:22;;::::0;2913:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;2997:28;3016:8;2997:18;:28::i;:::-;2832:201:::0;:::o;32036:31::-;;;;:::o;31523:24::-;;;;:::o;47666:374::-;2154:12;:10;:12::i;:::-;2143:23;;:7;:5;:7::i;:::-;:23;;;2135:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47737:18:::1;;;;;;;;;;;47736:19;47728:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;47843:13;47826:31;;:5;:31;;;;:95;;;;;47878:42;47861:60;;:5;:60;;;;47826:95;47804:192;;;;;;;;;;;;:::i;:::-;;;;;;;;;48028:4;48007:11;:18;48019:5;48007:18;;;;;;;;;;;;;;;;:25;;;;;;;;;;;;;;;;;;47666:374:::0;:::o;32188:28::-;;;;:::o;39538:113::-;39599:4;39623:11;:20;39635:7;39623:20;;;;;;;;;;;;;;;;;;;;;;;;;39616:27;;39538:113;;;:::o;790:98::-;843:7;870:10;863:17;;790:98;:::o;17178:380::-;17331:1;17314:19;;:5;:19;;;17306:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;17412:1;17393:21;;:7;:21;;;17385:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;17496:6;17466:11;:18;17478:5;17466:18;;;;;;;;;;;;;;;:27;17485:7;17466:27;;;;;;;;;;;;;;;:36;;;;17534:7;17518:32;;17527:5;17518:32;;;17543:6;17518:32;;;;;;:::i;:::-;;;;;;;;17178:380;;;:::o;39659:4189::-;39807:1;39791:18;;:4;:18;;;39783:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39884:1;39870:16;;:2;:16;;;39862:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;39946:11;:17;39958:4;39946:17;;;;;;;;;;;;;;;;;;;;;;;;;39945:18;39937:48;;;;;;;;;;;;:::i;:::-;;;;;;;;;40005:11;:15;40017:2;40005:15;;;;;;;;;;;;;;;;;;;;;;;;;40004:16;39996:48;;;;;;;;;;;;:::i;:::-;;;;;;;;;40061:17;;;;;;;;;;;40057:135;;;40103:25;:31;40129:4;40103:31;;;;;;;;;;;;;;;;;;;;;;;;;40095:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;40057:135;40218:1;40208:6;:11;40204:93;;40236:28;40252:4;40258:2;40262:1;40236:15;:28::i;:::-;40279:7;;40204:93;40313:14;;;;;;;;;;;40309:1694;;;40374:7;:5;:7::i;:::-;40366:15;;:4;:15;;;;:49;;;;;40408:7;:5;:7::i;:::-;40402:13;;:2;:13;;;;40366:49;:86;;;;;40450:1;40436:16;;:2;:16;;;;40366:86;:128;;;;;40487:6;40473:21;;:2;:21;;;;40366:128;:158;;;;;40516:8;;;;;;;;;;;40515:9;40366:158;40344:1648;;;40564:13;;;;;;;;;;;40559:223;;40636:19;:25;40656:4;40636:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;40665:19;:23;40685:2;40665:23;;;;;;;;;;;;;;;;;;;;;;;;;40636:52;40602:160;;;;;;;;;;;;:::i;:::-;;;;;;;;;40559:223;40856:25;:31;40882:4;40856:31;;;;;;;;;;;;;;;;;;;;;;;;;:92;;;;;40913:31;:35;40945:2;40913:35;;;;;;;;;;;;;;;;;;;;;;;;;40912:36;40856:92;40830:1147;;;41035:20;;41025:6;:30;;40991:169;;;;;;;;;;;;:::i;:::-;;;;;;;;;41243:9;;41226:13;41236:2;41226:9;:13::i;:::-;41217:6;:22;;;;:::i;:::-;:35;;41183:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;40830:1147;;;41421:25;:29;41447:2;41421:29;;;;;;;;;;;;;;;;;;;;;;;;;:92;;;;;41476:31;:37;41508:4;41476:37;;;;;;;;;;;;;;;;;;;;;;;;;41475:38;41421:92;41395:582;;;41600:20;;41590:6;:30;;41556:170;;;;;;;;;;;;:::i;:::-;;;;;;;;;41395:582;;;41757:31;:35;41789:2;41757:35;;;;;;;;;;;;;;;;;;;;;;;;;41752:225;;41877:9;;41860:13;41870:2;41860:9;:13::i;:::-;41851:6;:22;;;;:::i;:::-;:35;;41817:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;41752:225;41395:582;40830:1147;40344:1648;40309:1694;42015:28;42046:24;42064:4;42046:9;:24::i;:::-;42015:55;;42083:12;42122:18;;42098:20;:42;;42083:57;;42171:7;:35;;;;;42195:11;;;;;;;;;;;42171:35;:61;;;;;42224:8;;;;;;;;;;;42223:9;42171:61;:110;;;;;42250:25;:31;42276:4;42250:31;;;;;;;;;;;;;;;;;;;;;;;;;42249:32;42171:110;:153;;;;;42299:19;:25;42319:4;42299:25;;;;;;;;;;;;;;;;;;;;;;;;;42298:26;42171:153;:194;;;;;42342:19;:23;42362:2;42342:23;;;;;;;;;;;;;;;;;;;;;;;;;42341:24;42171:194;42153:326;;;42403:4;42392:8;;:15;;;;;;;;;;;;;;;;;;42424:10;:8;:10::i;:::-;42462:5;42451:8;;:16;;;;;;;;;;;;;;;;;;42153:326;42491:12;42507:8;;;;;;;;;;;42506:9;42491:24;;42617:19;:25;42637:4;42617:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;42646:19;:23;42666:2;42646:23;;;;;;;;;;;;;;;;;;;;;;;;;42617:52;42613:100;;;42696:5;42686:15;;42613:100;42725:12;42830:7;42826:969;;;42882:25;:29;42908:2;42882:29;;;;;;;;;;;;;;;;;;;;;;;;;:50;;;;;42931:1;42915:13;;:17;42882:50;42878:768;;;42960:34;42990:3;42960:25;42971:13;;42960:6;:10;;:25;;;;:::i;:::-;:29;;:34;;;;:::i;:::-;42953:41;;43063:13;;43043:16;;43036:4;:23;;;;:::i;:::-;43035:41;;;;:::i;:::-;43013:18;;:63;;;;;;;:::i;:::-;;;;;;;;43135:13;;43120:11;;43113:4;:18;;;;:::i;:::-;43112:36;;;;:::i;:::-;43095:13;;:53;;;;;;;:::i;:::-;;;;;;;;43215:13;;43196:15;;43189:4;:22;;;;:::i;:::-;43188:40;;;;:::i;:::-;43167:17;;:61;;;;;;;:::i;:::-;;;;;;;;42878:768;;;43290:25;:31;43316:4;43290:31;;;;;;;;;;;;;;;;;;;;;;;;;:51;;;;;43340:1;43325:12;;:16;43290:51;43286:360;;;43369:33;43398:3;43369:24;43380:12;;43369:6;:10;;:24;;;;:::i;:::-;:28;;:33;;;;:::i;:::-;43362:40;;43470:12;;43451:15;;43444:4;:22;;;;:::i;:::-;43443:39;;;;:::i;:::-;43421:18;;:61;;;;;;;:::i;:::-;;;;;;;;43540:12;;43526:10;;43519:4;:17;;;;:::i;:::-;43518:34;;;;:::i;:::-;43501:13;;:51;;;;;;;:::i;:::-;;;;;;;;43618:12;;43600:14;;43593:4;:21;;;;:::i;:::-;43592:38;;;;:::i;:::-;43571:17;;:59;;;;;;;:::i;:::-;;;;;;;;43286:360;42878:768;43673:1;43666:4;:8;43662:91;;;43695:42;43711:4;43725;43732;43695:15;:42::i;:::-;43662:91;43779:4;43769:14;;;;;:::i;:::-;;;42826:969;43807:33;43823:4;43829:2;43833:6;43807:15;:33::i;:::-;39772:4076;;;;39659:4189;;;;:::o;3193:191::-;3267:16;3286:6;;;;;;;;;;;3267:25;;3312:8;3303:6;;:17;;;;;;;;;;;;;;;;;;3367:8;3336:40;;3357:8;3336:40;;;;;;;;;;;;3256:128;3193:191;:::o;38830:188::-;38947:5;38913:25;:31;38939:4;38913:31;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;39004:5;38970:40;;38998:4;38970:40;;;;;;;;;;;;38830:188;;:::o;14397:733::-;14555:1;14537:20;;:6;:20;;;14529:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;14639:1;14618:23;;:9;:23;;;14610:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;14694:47;14715:6;14723:9;14734:6;14694:20;:47::i;:::-;14754:21;14778:9;:17;14788:6;14778:17;;;;;;;;;;;;;;;;14754:41;;14831:6;14814:13;:23;;14806:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;14952:6;14936:13;:22;14916:9;:17;14926:6;14916:17;;;;;;;;;;;;;;;:42;;;;15004:6;14980:9;:20;14990:9;14980:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;15045:9;15028:35;;15037:6;15028:35;;;15056:6;15028:35;;;;;;:::i;:::-;;;;;;;;15076:46;15096:6;15104:9;15115:6;15076:19;:46::i;:::-;14518:612;14397:733;;;:::o;44974:1773::-;45013:23;45039:24;45057:4;45039:9;:24::i;:::-;45013:50;;45074:25;45169:13;;45136:17;;45102:18;;:51;;;;:::i;:::-;:80;;;;:::i;:::-;45074:108;;45193:12;45241:1;45222:15;:20;:46;;;;45267:1;45246:17;:22;45222:46;45218:85;;;45285:7;;;;;45218:85;45358:2;45337:18;;:23;;;;:::i;:::-;45319:15;:41;45315:115;;;45416:2;45395:18;;:23;;;;:::i;:::-;45377:41;;45315:115;45491:23;45604:1;45571:17;45536:18;;45518:15;:36;;;;:::i;:::-;45517:71;;;;:::i;:::-;:88;;;;:::i;:::-;45491:114;;45616:26;45645:36;45665:15;45645;:19;;:36;;;;:::i;:::-;45616:65;;45694:25;45722:21;45694:49;;45756:36;45773:18;45756:16;:36::i;:::-;45805:18;45826:44;45852:17;45826:21;:25;;:44;;;;:::i;:::-;45805:65;;45883:22;45908:83;45988:1;45967:18;;:22;;;;:::i;:::-;45946:17;:44;;;;:::i;:::-;45908:33;45923:17;;45908:10;:14;;:33;;;;:::i;:::-;:37;;:83;;;;:::i;:::-;45883:108;;46012:18;46033:79;46109:1;46088:18;;:22;;;;:::i;:::-;46067:17;:44;;;;:::i;:::-;46033:29;46048:13;;46033:10;:14;;:29;;;;:::i;:::-;:33;;:79;;;;:::i;:::-;46012:100;;46125:23;46181:10;46164:14;46151:10;:27;;;;:::i;:::-;:40;;;;:::i;:::-;46125:66;;46225:1;46204:18;:22;;;;46257:1;46237:17;:21;;;;46285:1;46269:13;:17;;;;46321:10;;;;;;;;;;;46313:24;;46345:10;46313:47;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46299:61;;;;;46395:1;46377:15;:19;:42;;;;;46418:1;46400:15;:19;46377:42;46373:278;;;46436:46;46449:15;46466;46436:12;:46::i;:::-;46502:137;46535:18;46572:15;46606:18;;46502:137;;;;;;;;:::i;:::-;;;;;;;;46373:278;46685:14;;;;;;;;;;;46677:28;;46713:21;46677:62;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46663:76;;;;;45002:1745;;;;;;;;;;44974:1773;:::o;22310:98::-;22368:7;22399:1;22395;:5;;;;:::i;:::-;22388:12;;22310:98;;;;:::o;22709:::-;22767:7;22798:1;22794;:5;;;;:::i;:::-;22787:12;;22709:98;;;;:::o;18158:125::-;;;;:::o;18887:124::-;;;;:::o;21953:98::-;22011:7;22042:1;22038;:5;;;;:::i;:::-;22031:12;;21953:98;;;;:::o;43856:589::-;43982:21;44020:1;44006:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43982:40;;44051:4;44033;44038:1;44033:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;;;44077:15;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;44067:4;44072:1;44067:7;;;;;;;;:::i;:::-;;;;;;;:32;;;;;;;;;;;44112:62;44129:4;44144:15;44162:11;44112:8;:62::i;:::-;44213:15;:66;;;44294:11;44320:1;44364:4;44391;44411:15;44213:224;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43911:534;43856:589;:::o;44453:513::-;44601:62;44618:4;44633:15;44651:11;44601:8;:62::i;:::-;44706:15;:31;;;44745:9;44778:4;44798:11;44824:1;44867;44910:7;:5;:7::i;:::-;44932:15;44706:252;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;44453:513;;:::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:118::-;3868:24;3886:5;3868:24;:::i;:::-;3863:3;3856:37;3781:118;;:::o;3905:222::-;3998:4;4036:2;4025:9;4021:18;4013:26;;4049:71;4117:1;4106:9;4102:17;4093:6;4049:71;:::i;:::-;3905:222;;;;:::o;4133:60::-;4161:3;4182:5;4175:12;;4133:60;;;:::o;4199:142::-;4249:9;4282:53;4300:34;4309:24;4327:5;4309:24;:::i;:::-;4300:34;:::i;:::-;4282:53;:::i;:::-;4269:66;;4199:142;;;:::o;4347:126::-;4397:9;4430:37;4461:5;4430:37;:::i;:::-;4417:50;;4347:126;;;:::o;4479:153::-;4556:9;4589:37;4620:5;4589:37;:::i;:::-;4576:50;;4479:153;;;:::o;4638:185::-;4752:64;4810:5;4752:64;:::i;:::-;4747:3;4740:77;4638:185;;:::o;4829:276::-;4949:4;4987:2;4976:9;4972:18;4964:26;;5000:98;5095:1;5084:9;5080:17;5071:6;5000:98;:::i;:::-;4829:276;;;;:::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:118::-;6158:24;6176:5;6158:24;:::i;:::-;6153:3;6146:37;6071:118;;:::o;6195:222::-;6288:4;6326:2;6315:9;6311:18;6303:26;;6339:71;6407:1;6396:9;6392:17;6383:6;6339:71;:::i;:::-;6195:222;;;;:::o;6423:86::-;6458:7;6498:4;6491:5;6487:16;6476:27;;6423:86;;;:::o;6515:112::-;6598:22;6614:5;6598:22;:::i;:::-;6593:3;6586:35;6515:112;;:::o;6633:214::-;6722:4;6760:2;6749:9;6745:18;6737:26;;6773:67;6837:1;6826:9;6822:17;6813:6;6773:67;:::i;:::-;6633:214;;;;:::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:619::-;7665:6;7673;7681;7730:2;7718:9;7709:7;7705:23;7701:32;7698:119;;;7736:79;;:::i;:::-;7698:119;7856:1;7881:53;7926:7;7917:6;7906:9;7902:22;7881:53;:::i;:::-;7871:63;;7827:117;7983:2;8009:53;8054:7;8045:6;8034:9;8030:22;8009:53;:::i;:::-;7999:63;;7954:118;8111:2;8137:53;8182:7;8173:6;8162:9;8158:22;8137:53;:::i;:::-;8127:63;;8082:118;7588:619;;;;;:::o;8213:323::-;8269:6;8318:2;8306:9;8297:7;8293:23;8289:32;8286:119;;;8324:79;;:::i;:::-;8286:119;8444:1;8469:50;8511:7;8502:6;8491:9;8487:22;8469:50;:::i;:::-;8459:60;;8415:114;8213:323;;;;:::o;8542:474::-;8610:6;8618;8667:2;8655:9;8646:7;8642:23;8638:32;8635:119;;;8673:79;;:::i;:::-;8635:119;8793:1;8818:53;8863:7;8854:6;8843:9;8839:22;8818:53;:::i;:::-;8808:63;;8764:117;8920:2;8946:53;8991:7;8982:6;8971:9;8967:22;8946:53;:::i;:::-;8936:63;;8891:118;8542:474;;;;;:::o;9022:180::-;9070:77;9067:1;9060:88;9167:4;9164:1;9157:15;9191:4;9188:1;9181:15;9208:320;9252:6;9289:1;9283:4;9279:12;9269:22;;9336:1;9330:4;9326:12;9357:18;9347:81;;9413:4;9405:6;9401:17;9391:27;;9347:81;9475:2;9467:6;9464:14;9444:18;9441:38;9438:84;;9494:18;;:::i;:::-;9438:84;9259:269;9208:320;;;:::o;9534:182::-;9674:34;9670:1;9662:6;9658:14;9651:58;9534:182;:::o;9722:366::-;9864:3;9885:67;9949:2;9944:3;9885:67;:::i;:::-;9878:74;;9961:93;10050:3;9961:93;:::i;:::-;10079:2;10074:3;10070:12;10063:19;;9722:366;;;:::o;10094:419::-;10260:4;10298:2;10287:9;10283:18;10275:26;;10347:9;10341:4;10337:20;10333:1;10322:9;10318:17;10311:47;10375:131;10501:4;10375:131;:::i;:::-;10367:139;;10094:419;;;:::o;10519:180::-;10567:77;10564:1;10557:88;10664:4;10661:1;10654:15;10688:4;10685:1;10678:15;10705:410;10745:7;10768:20;10786:1;10768:20;:::i;:::-;10763:25;;10802:20;10820:1;10802:20;:::i;:::-;10797:25;;10857:1;10854;10850:9;10879:30;10897:11;10879:30;:::i;:::-;10868:41;;11058:1;11049:7;11045:15;11042:1;11039:22;11019:1;11012:9;10992:83;10969:139;;11088:18;;:::i;:::-;10969:139;10753:362;10705:410;;;;:::o;11121:180::-;11169:77;11166:1;11159:88;11266:4;11263:1;11256:15;11290:4;11287:1;11280:15;11307:185;11347:1;11364:20;11382:1;11364:20;:::i;:::-;11359:25;;11398:20;11416:1;11398:20;:::i;:::-;11393:25;;11437:1;11427:35;;11442:18;;:::i;:::-;11427:35;11484:1;11481;11477:9;11472:14;;11307:185;;;;:::o;11498:234::-;11638:34;11634:1;11626:6;11622:14;11615:58;11707:17;11702:2;11694:6;11690:15;11683:42;11498:234;:::o;11738:366::-;11880:3;11901:67;11965:2;11960:3;11901:67;:::i;:::-;11894:74;;11977:93;12066:3;11977:93;:::i;:::-;12095:2;12090:3;12086:12;12079:19;;11738:366;;;:::o;12110:419::-;12276:4;12314:2;12303:9;12299:18;12291:26;;12363:9;12357:4;12353:20;12349:1;12338:9;12334:17;12327:47;12391:131;12517:4;12391:131;:::i;:::-;12383:139;;12110:419;;;:::o;12535:227::-;12675:34;12671:1;12663:6;12659:14;12652:58;12744:10;12739:2;12731:6;12727:15;12720:35;12535:227;:::o;12768:366::-;12910:3;12931:67;12995:2;12990:3;12931:67;:::i;:::-;12924:74;;13007:93;13096:3;13007:93;:::i;:::-;13125:2;13120:3;13116:12;13109:19;;12768:366;;;:::o;13140:419::-;13306:4;13344:2;13333:9;13329:18;13321:26;;13393:9;13387:4;13383:20;13379:1;13368:9;13364:17;13357:47;13421:131;13547:4;13421:131;:::i;:::-;13413:139;;13140:419;;;:::o;13565:191::-;13605:3;13624:20;13642:1;13624:20;:::i;:::-;13619:25;;13658:20;13676:1;13658:20;:::i;:::-;13653:25;;13701:1;13698;13694:9;13687:16;;13722:3;13719:1;13716:10;13713:36;;;13729:18;;:::i;:::-;13713:36;13565:191;;;;:::o;13762:147::-;13863:11;13900:3;13885:18;;13762:147;;;;:::o;13915:114::-;;:::o;14035:398::-;14194:3;14215:83;14296:1;14291:3;14215:83;:::i;:::-;14208:90;;14307:93;14396:3;14307:93;:::i;:::-;14425:1;14420:3;14416:11;14409:18;;14035:398;;;:::o;14439:379::-;14623:3;14645:147;14788:3;14645:147;:::i;:::-;14638:154;;14809:3;14802:10;;14439:379;;;:::o;14824:172::-;14964:24;14960:1;14952:6;14948:14;14941:48;14824:172;:::o;15002:366::-;15144:3;15165:67;15229:2;15224:3;15165:67;:::i;:::-;15158:74;;15241:93;15330:3;15241:93;:::i;:::-;15359:2;15354:3;15350:12;15343:19;;15002:366;;;:::o;15374:419::-;15540:4;15578:2;15567:9;15563:18;15555:26;;15627:9;15621:4;15617:20;15613:1;15602:9;15598:17;15591:47;15655:131;15781:4;15655:131;:::i;:::-;15647:139;;15374:419;;;:::o;15799:244::-;15939:34;15935:1;15927:6;15923:14;15916:58;16008:27;16003:2;15995:6;15991:15;15984:52;15799:244;:::o;16049:366::-;16191:3;16212:67;16276:2;16271:3;16212:67;:::i;:::-;16205:74;;16288:93;16377:3;16288:93;:::i;:::-;16406:2;16401:3;16397:12;16390:19;;16049:366;;;:::o;16421:419::-;16587:4;16625:2;16614:9;16610:18;16602:26;;16674:9;16668:4;16664:20;16660:1;16649:9;16645:17;16638:47;16702:131;16828:4;16702:131;:::i;:::-;16694:139;;16421:419;;;:::o;16846:224::-;16986:34;16982:1;16974:6;16970:14;16963:58;17055:7;17050:2;17042:6;17038:15;17031:32;16846:224;:::o;17076:366::-;17218:3;17239:67;17303:2;17298:3;17239:67;:::i;:::-;17232:74;;17315:93;17404:3;17315:93;:::i;:::-;17433:2;17428:3;17424:12;17417:19;;17076:366;;;:::o;17448:419::-;17614:4;17652:2;17641:9;17637:18;17629:26;;17701:9;17695:4;17691:20;17687:1;17676:9;17672:17;17665:47;17729:131;17855:4;17729:131;:::i;:::-;17721:139;;17448:419;;;:::o;17873:176::-;18013:28;18009:1;18001:6;17997:14;17990:52;17873:176;:::o;18055:366::-;18197:3;18218:67;18282:2;18277:3;18218:67;:::i;:::-;18211:74;;18294:93;18383:3;18294:93;:::i;:::-;18412:2;18407:3;18403:12;18396:19;;18055:366;;;:::o;18427:419::-;18593:4;18631:2;18620:9;18616:18;18608:26;;18680:9;18674:4;18670:20;18666:1;18655:9;18651:17;18644:47;18708:131;18834:4;18708:131;:::i;:::-;18700:139;;18427:419;;;:::o;18852:143::-;18909:5;18940:6;18934:13;18925:22;;18956:33;18983:5;18956:33;:::i;:::-;18852:143;;;;:::o;19001:351::-;19071:6;19120:2;19108:9;19099:7;19095:23;19091:32;19088:119;;;19126:79;;:::i;:::-;19088:119;19246:1;19271:64;19327:7;19318:6;19307:9;19303:22;19271:64;:::i;:::-;19261:74;;19217:128;19001:351;;;;:::o;19358:332::-;19479:4;19517:2;19506:9;19502:18;19494:26;;19530:71;19598:1;19587:9;19583:17;19574:6;19530:71;:::i;:::-;19611:72;19679:2;19668:9;19664:18;19655:6;19611:72;:::i;:::-;19358:332;;;;;:::o;19696:137::-;19750:5;19781:6;19775:13;19766:22;;19797:30;19821:5;19797:30;:::i;:::-;19696:137;;;;:::o;19839:345::-;19906:6;19955:2;19943:9;19934:7;19930:23;19926:32;19923:119;;;19961:79;;:::i;:::-;19923:119;20081:1;20106:61;20159:7;20150:6;20139:9;20135:22;20106:61;:::i;:::-;20096:71;;20052:125;19839:345;;;;:::o;20190:173::-;20330:25;20326:1;20318:6;20314:14;20307:49;20190:173;:::o;20369:366::-;20511:3;20532:67;20596:2;20591:3;20532:67;:::i;:::-;20525:74;;20608:93;20697:3;20608:93;:::i;:::-;20726:2;20721:3;20717:12;20710:19;;20369:366;;;:::o;20741:419::-;20907:4;20945:2;20934:9;20930:18;20922:26;;20994:9;20988:4;20984:20;20980:1;20969:9;20965:17;20958:47;21022:131;21148:4;21022:131;:::i;:::-;21014:139;;20741:419;;;:::o;21166:223::-;21306:34;21302:1;21294:6;21290:14;21283:58;21375:6;21370:2;21362:6;21358:15;21351:31;21166:223;:::o;21395:366::-;21537:3;21558:67;21622:2;21617:3;21558:67;:::i;:::-;21551:74;;21634:93;21723:3;21634:93;:::i;:::-;21752:2;21747:3;21743:12;21736:19;;21395:366;;;:::o;21767:419::-;21933:4;21971:2;21960:9;21956:18;21948:26;;22020:9;22014:4;22010:20;22006:1;21995:9;21991:17;21984:47;22048:131;22174:4;22048:131;:::i;:::-;22040:139;;21767:419;;;:::o;22192:240::-;22332:34;22328:1;22320:6;22316:14;22309:58;22401:23;22396:2;22388:6;22384:15;22377:48;22192:240;:::o;22438:366::-;22580:3;22601:67;22665:2;22660:3;22601:67;:::i;:::-;22594:74;;22677:93;22766:3;22677:93;:::i;:::-;22795:2;22790:3;22786:12;22779:19;;22438:366;;;:::o;22810:419::-;22976:4;23014:2;23003:9;22999:18;22991:26;;23063:9;23057:4;23053:20;23049:1;23038:9;23034:17;23027:47;23091:131;23217:4;23091:131;:::i;:::-;23083:139;;22810:419;;;:::o;23235:239::-;23375:34;23371:1;23363:6;23359:14;23352:58;23444:22;23439:2;23431:6;23427:15;23420:47;23235:239;:::o;23480:366::-;23622:3;23643:67;23707:2;23702:3;23643:67;:::i;:::-;23636:74;;23719:93;23808:3;23719:93;:::i;:::-;23837:2;23832:3;23828:12;23821:19;;23480:366;;;:::o;23852:419::-;24018:4;24056:2;24045:9;24041:18;24033:26;;24105:9;24099:4;24095:20;24091:1;24080:9;24076:17;24069:47;24133:131;24259:4;24133:131;:::i;:::-;24125:139;;23852:419;;;:::o;24277:220::-;24417:34;24413:1;24405:6;24401:14;24394:58;24486:3;24481:2;24473:6;24469:15;24462:28;24277:220;:::o;24503:366::-;24645:3;24666:67;24730:2;24725:3;24666:67;:::i;:::-;24659:74;;24742:93;24831:3;24742:93;:::i;:::-;24860:2;24855:3;24851:12;24844:19;;24503:366;;;:::o;24875:419::-;25041:4;25079:2;25068:9;25064:18;25056:26;;25128:9;25122:4;25118:20;25114:1;25103:9;25099:17;25092:47;25156:131;25282:4;25156:131;:::i;:::-;25148:139;;24875:419;;;:::o;25300:233::-;25440:34;25436:1;25428:6;25424:14;25417:58;25509:16;25504:2;25496:6;25492:15;25485:41;25300:233;:::o;25539:366::-;25681:3;25702:67;25766:2;25761:3;25702:67;:::i;:::-;25695:74;;25778:93;25867:3;25778:93;:::i;:::-;25896:2;25891:3;25887:12;25880:19;;25539:366;;;:::o;25911:419::-;26077:4;26115:2;26104:9;26100:18;26092:26;;26164:9;26158:4;26154:20;26150:1;26139:9;26135:17;26128:47;26192:131;26318:4;26192:131;:::i;:::-;26184:139;;25911:419;;;:::o;26336:225::-;26476:34;26472:1;26464:6;26460:14;26453:58;26545:8;26540:2;26532:6;26528:15;26521:33;26336:225;:::o;26567:366::-;26709:3;26730:67;26794:2;26789:3;26730:67;:::i;:::-;26723:74;;26806:93;26895:3;26806:93;:::i;:::-;26924:2;26919:3;26915:12;26908:19;;26567:366;;;:::o;26939:419::-;27105:4;27143:2;27132:9;27128:18;27120:26;;27192:9;27186:4;27182:20;27178:1;27167:9;27163:17;27156:47;27220:131;27346:4;27220:131;:::i;:::-;27212:139;;26939:419;;;:::o;27364:223::-;27504:34;27500:1;27492:6;27488:14;27481:58;27573:6;27568:2;27560:6;27556:15;27549:31;27364:223;:::o;27593:366::-;27735:3;27756:67;27820:2;27815:3;27756:67;:::i;:::-;27749:74;;27832:93;27921:3;27832:93;:::i;:::-;27950:2;27945:3;27941:12;27934:19;;27593:366;;;:::o;27965:419::-;28131:4;28169:2;28158:9;28154:18;28146:26;;28218:9;28212:4;28208:20;28204:1;28193:9;28189:17;28182:47;28246:131;28372:4;28246:131;:::i;:::-;28238:139;;27965:419;;;:::o;28390:221::-;28530:34;28526:1;28518:6;28514:14;28507:58;28599:4;28594:2;28586:6;28582:15;28575:29;28390:221;:::o;28617:366::-;28759:3;28780:67;28844:2;28839:3;28780:67;:::i;:::-;28773:74;;28856:93;28945:3;28856:93;:::i;:::-;28974:2;28969:3;28965:12;28958:19;;28617:366;;;:::o;28989:419::-;29155:4;29193:2;29182:9;29178:18;29170:26;;29242:9;29236:4;29232:20;29228:1;29217:9;29213:17;29206:47;29270:131;29396:4;29270:131;:::i;:::-;29262:139;;28989:419;;;:::o;29414:224::-;29554:34;29550:1;29542:6;29538:14;29531:58;29623:7;29618:2;29610:6;29606:15;29599:32;29414:224;:::o;29644:366::-;29786:3;29807:67;29871:2;29866:3;29807:67;:::i;:::-;29800:74;;29883:93;29972:3;29883:93;:::i;:::-;30001:2;29996:3;29992:12;29985:19;;29644:366;;;:::o;30016:419::-;30182:4;30220:2;30209:9;30205:18;30197:26;;30269:9;30263:4;30259:20;30255:1;30244:9;30240:17;30233:47;30297:131;30423:4;30297:131;:::i;:::-;30289:139;;30016:419;;;:::o;30441:222::-;30581:34;30577:1;30569:6;30565:14;30558:58;30650:5;30645:2;30637:6;30633:15;30626:30;30441:222;:::o;30669:366::-;30811:3;30832:67;30896:2;30891:3;30832:67;:::i;:::-;30825:74;;30908:93;30997:3;30908:93;:::i;:::-;31026:2;31021:3;31017:12;31010:19;;30669:366;;;:::o;31041:419::-;31207:4;31245:2;31234:9;31230:18;31222:26;;31294:9;31288:4;31284:20;31280:1;31269:9;31265:17;31258:47;31322:131;31448:4;31322:131;:::i;:::-;31314:139;;31041:419;;;:::o;31466:168::-;31606:20;31602:1;31594:6;31590:14;31583:44;31466:168;:::o;31640:366::-;31782:3;31803:67;31867:2;31862:3;31803:67;:::i;:::-;31796:74;;31879:93;31968:3;31879:93;:::i;:::-;31997:2;31992:3;31988:12;31981:19;;31640:366;;;:::o;32012:419::-;32178:4;32216:2;32205:9;32201:18;32193:26;;32265:9;32259:4;32255:20;32251:1;32240:9;32236:17;32229:47;32293:131;32419:4;32293:131;:::i;:::-;32285:139;;32012:419;;;:::o;32437:170::-;32577:22;32573:1;32565:6;32561:14;32554:46;32437:170;:::o;32613:366::-;32755:3;32776:67;32840:2;32835:3;32776:67;:::i;:::-;32769:74;;32852:93;32941:3;32852:93;:::i;:::-;32970:2;32965:3;32961:12;32954:19;;32613:366;;;:::o;32985:419::-;33151:4;33189:2;33178:9;33174:18;33166:26;;33238:9;33232:4;33228:20;33224:1;33213:9;33209:17;33202:47;33266:131;33392:4;33266:131;:::i;:::-;33258:139;;32985:419;;;:::o;33410:228::-;33550:34;33546:1;33538:6;33534:14;33527:58;33619:11;33614:2;33606:6;33602:15;33595:36;33410:228;:::o;33644:366::-;33786:3;33807:67;33871:2;33866:3;33807:67;:::i;:::-;33800:74;;33883:93;33972:3;33883:93;:::i;:::-;34001:2;33996:3;33992:12;33985:19;;33644:366;;;:::o;34016:419::-;34182:4;34220:2;34209:9;34205:18;34197:26;;34269:9;34263:4;34259:20;34255:1;34244:9;34240:17;34233:47;34297:131;34423:4;34297:131;:::i;:::-;34289:139;;34016:419;;;:::o;34441:172::-;34581:24;34577:1;34569:6;34565:14;34558:48;34441:172;:::o;34619:366::-;34761:3;34782:67;34846:2;34841:3;34782:67;:::i;:::-;34775:74;;34858:93;34947:3;34858:93;:::i;:::-;34976:2;34971:3;34967:12;34960:19;;34619:366;;;:::o;34991:419::-;35157:4;35195:2;35184:9;35180:18;35172:26;;35244:9;35238:4;35234:20;35230:1;35219:9;35215:17;35208:47;35272:131;35398:4;35272:131;:::i;:::-;35264:139;;34991:419;;;:::o;35416:240::-;35556:34;35552:1;35544:6;35540:14;35533:58;35625:23;35620:2;35612:6;35608:15;35601:48;35416:240;:::o;35662:366::-;35804:3;35825:67;35889:2;35884:3;35825:67;:::i;:::-;35818:74;;35901:93;35990:3;35901:93;:::i;:::-;36019:2;36014:3;36010:12;36003:19;;35662:366;;;:::o;36034:419::-;36200:4;36238:2;36227:9;36223:18;36215:26;;36287:9;36281:4;36277:20;36273:1;36262:9;36258:17;36251:47;36315:131;36441:4;36315:131;:::i;:::-;36307:139;;36034:419;;;:::o;36459:169::-;36599:21;36595:1;36587:6;36583:14;36576:45;36459:169;:::o;36634:366::-;36776:3;36797:67;36861:2;36856:3;36797:67;:::i;:::-;36790:74;;36873:93;36962:3;36873:93;:::i;:::-;36991:2;36986:3;36982:12;36975:19;;36634:366;;;:::o;37006:419::-;37172:4;37210:2;37199:9;37195:18;37187:26;;37259:9;37253:4;37249:20;37245:1;37234:9;37230:17;37223:47;37287:131;37413:4;37287:131;:::i;:::-;37279:139;;37006:419;;;:::o;37431:241::-;37571:34;37567:1;37559:6;37555:14;37548:58;37640:24;37635:2;37627:6;37623:15;37616:49;37431:241;:::o;37678:366::-;37820:3;37841:67;37905:2;37900:3;37841:67;:::i;:::-;37834:74;;37917:93;38006:3;37917:93;:::i;:::-;38035:2;38030:3;38026:12;38019:19;;37678:366;;;:::o;38050:419::-;38216:4;38254:2;38243:9;38239:18;38231:26;;38303:9;38297:4;38293:20;38289:1;38278:9;38274:17;38267:47;38331:131;38457:4;38331:131;:::i;:::-;38323:139;;38050:419;;;:::o;38475:194::-;38515:4;38535:20;38553:1;38535:20;:::i;:::-;38530:25;;38569:20;38587:1;38569:20;:::i;:::-;38564:25;;38613:1;38610;38606:9;38598:17;;38637:1;38631:4;38628:11;38625:37;;;38642:18;;:::i;:::-;38625:37;38475:194;;;;:::o;38675:225::-;38815:34;38811:1;38803:6;38799:14;38792:58;38884:8;38879:2;38871:6;38867:15;38860:33;38675:225;:::o;38906:366::-;39048:3;39069:67;39133:2;39128:3;39069:67;:::i;:::-;39062:74;;39145:93;39234:3;39145:93;:::i;:::-;39263:2;39258:3;39254:12;39247:19;;38906:366;;;:::o;39278:419::-;39444:4;39482:2;39471:9;39467:18;39459:26;;39531:9;39525:4;39521:20;39517:1;39506:9;39502:17;39495:47;39559:131;39685:4;39559:131;:::i;:::-;39551:139;;39278:419;;;:::o;39703:442::-;39852:4;39890:2;39879:9;39875:18;39867:26;;39903:71;39971:1;39960:9;39956:17;39947:6;39903:71;:::i;:::-;39984:72;40052:2;40041:9;40037:18;40028:6;39984:72;:::i;:::-;40066;40134:2;40123:9;40119:18;40110:6;40066:72;:::i;:::-;39703:442;;;;;;:::o;40151:180::-;40199:77;40196:1;40189:88;40296:4;40293:1;40286:15;40320:4;40317:1;40310:15;40337:180;40385:77;40382:1;40375:88;40482:4;40479:1;40472:15;40506:4;40503:1;40496:15;40523:143;40580:5;40611:6;40605:13;40596:22;;40627:33;40654:5;40627:33;:::i;:::-;40523:143;;;;:::o;40672:351::-;40742:6;40791:2;40779:9;40770:7;40766:23;40762:32;40759:119;;;40797:79;;:::i;:::-;40759:119;40917:1;40942:64;40998:7;40989:6;40978:9;40974:22;40942:64;:::i;:::-;40932:74;;40888:128;40672:351;;;;:::o;41029:85::-;41074:7;41103:5;41092:16;;41029:85;;;:::o;41120:158::-;41178:9;41211:61;41229:42;41238:32;41264:5;41238:32;:::i;:::-;41229:42;:::i;:::-;41211:61;:::i;:::-;41198:74;;41120:158;;;:::o;41284:147::-;41379:45;41418:5;41379:45;:::i;:::-;41374:3;41367:58;41284:147;;:::o;41437:114::-;41504:6;41538:5;41532:12;41522:22;;41437:114;;;:::o;41557:184::-;41656:11;41690:6;41685:3;41678:19;41730:4;41725:3;41721:14;41706:29;;41557:184;;;;:::o;41747:132::-;41814:4;41837:3;41829:11;;41867:4;41862:3;41858:14;41850:22;;41747:132;;;:::o;41885:108::-;41962:24;41980:5;41962:24;:::i;:::-;41957:3;41950:37;41885:108;;:::o;41999:179::-;42068:10;42089:46;42131:3;42123:6;42089:46;:::i;:::-;42167:4;42162:3;42158:14;42144:28;;41999:179;;;;:::o;42184:113::-;42254:4;42286;42281:3;42277:14;42269:22;;42184:113;;;:::o;42333:732::-;42452:3;42481:54;42529:5;42481:54;:::i;:::-;42551:86;42630:6;42625:3;42551:86;:::i;:::-;42544:93;;42661:56;42711:5;42661:56;:::i;:::-;42740:7;42771:1;42756:284;42781:6;42778:1;42775:13;42756:284;;;42857:6;42851:13;42884:63;42943:3;42928:13;42884:63;:::i;:::-;42877:70;;42970:60;43023:6;42970:60;:::i;:::-;42960:70;;42816:224;42803:1;42800;42796:9;42791:14;;42756:284;;;42760:14;43056:3;43049:10;;42457:608;;;42333:732;;;;:::o;43071:831::-;43334:4;43372:3;43361:9;43357:19;43349:27;;43386:71;43454:1;43443:9;43439:17;43430:6;43386:71;:::i;:::-;43467:80;43543:2;43532:9;43528:18;43519:6;43467:80;:::i;:::-;43594:9;43588:4;43584:20;43579:2;43568:9;43564:18;43557:48;43622:108;43725:4;43716:6;43622:108;:::i;:::-;43614:116;;43740:72;43808:2;43797:9;43793:18;43784:6;43740:72;:::i;:::-;43822:73;43890:3;43879:9;43875:19;43866:6;43822:73;:::i;:::-;43071:831;;;;;;;;:::o;43908:807::-;44157:4;44195:3;44184:9;44180:19;44172:27;;44209:71;44277:1;44266:9;44262:17;44253:6;44209:71;:::i;:::-;44290:72;44358:2;44347:9;44343:18;44334:6;44290:72;:::i;:::-;44372:80;44448:2;44437:9;44433:18;44424:6;44372:80;:::i;:::-;44462;44538:2;44527:9;44523:18;44514:6;44462:80;:::i;:::-;44552:73;44620:3;44609:9;44605:19;44596:6;44552:73;:::i;:::-;44635;44703:3;44692:9;44688:19;44679:6;44635:73;:::i;:::-;43908:807;;;;;;;;;:::o;44721:663::-;44809:6;44817;44825;44874:2;44862:9;44853:7;44849:23;44845:32;44842:119;;;44880:79;;:::i;:::-;44842:119;45000:1;45025:64;45081:7;45072:6;45061:9;45057:22;45025:64;:::i;:::-;45015:74;;44971:128;45138:2;45164:64;45220:7;45211:6;45200:9;45196:22;45164:64;:::i;:::-;45154:74;;45109:129;45277:2;45303:64;45359:7;45350:6;45339:9;45335:22;45303:64;:::i;:::-;45293:74;;45248:129;44721:663;;;;;:::o

Swarm Source

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