ETH Price: $2,878.08 (-5.68%)
Gas: 2 Gwei

Token

OpenShiba (OSHIBA)
 

Overview

Max Total Supply

1,000,000,000,000 OSHIBA

Holders

286

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
155,599,918.175028975712886751 OSHIBA

Value
$0.00
0x692D47ada6eBb8754F5365c22b3384307c886Aaa
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:
OSHIBA

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

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

/**

*/

// SPDX-License-Identifier: MIT
pragma solidity =0.8.17 >=0.8.10 >=0.8.0 <0.9.0;
pragma experimental ABIEncoderV2;

////// lib/openzeppelin-contracts/contracts/utils/Context.sol
// OpenZeppelin Contracts v4.4.0 (utils/Context.sol)

/* pragma solidity ^0.8.0; */

/**
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}

////// lib/openzeppelin-contracts/contracts/access/Ownable.sol
// OpenZeppelin Contracts v4.4.0 (access/Ownable.sol)

/* pragma solidity ^0.8.0; */

/* import "../utils/Context.sol"; */

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

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

/* pragma solidity ^0.8.0; */

/* import "./IERC20.sol"; */
/* import "./extensions/IERC20Metadata.sol"; */
/* import "../../utils/Context.sol"; */

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

////// lib/openzeppelin-contracts/contracts/utils/math/SafeMath.sol
// OpenZeppelin Contracts v4.4.0 (utils/math/SafeMath.sol)

/* pragma solidity ^0.8.0; */

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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 OSHIBA is ERC20, Ownable {
    using SafeMath for uint256;

    IUniswapV2Router02 public immutable uniswapV2Router;
    address public immutable uniswapV2Pair;
    address public constant deadAddress = address(0xdead);
    mapping (address => bool) private _blacklist;

    bool private swapping;

    address public marketingWallet;
    address public devWallet;

    uint256 public swapTokensAtAmount;

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

    // Anti-bot and anti-whale mappings and variables
    mapping(address => uint256) private _holderLastTransferTimestamp; // to hold last Transfers temporarily during launch
    bool public transferDelayEnabled = true;

    uint256 public buyTotalFees;
    uint256 public buyMarketingFee;
    uint256 public buyLiquidityFee;
    uint256 public buyDevFee;

    uint256 public sellTotalFees;
    uint256 public sellMarketingFee;
    uint256 public sellLiquidityFee;
    uint256 public sellDevFee;

    uint256 public tokensForMarketing;
    uint256 public tokensForLiquidity;
    uint256 public tokensForDev;

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

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

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

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

    event ExcludeFromFees(address indexed account, bool isExcluded);

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

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

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

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

    event AutoNukeLP();

    event ManualNukeLP();

    constructor() ERC20("OpenShiba", "OSHIBA") {
        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(
            0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
        );

        uniswapV2Router = _uniswapV2Router;

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

        uint256 _buyMarketingFee = 5;
        uint256 _buyLiquidityFee = 2;
        uint256 _buyDevFee = 5;

        uint256 _sellMarketingFee = 5;
        uint256 _sellLiquidityFee = 2;
        uint256 _sellDevFee = 5;

        uint256 totalSupply = 1_000_000_000_000 * 1e18;

        swapTokensAtAmount = (totalSupply * 5) / 10000; // 0.05% swap wallet

        buyMarketingFee = _buyMarketingFee;
        buyLiquidityFee = _buyLiquidityFee;
        buyDevFee = _buyDevFee;
        buyTotalFees = buyMarketingFee + buyLiquidityFee + buyDevFee;

        sellMarketingFee = _sellMarketingFee;
        sellLiquidityFee = _sellLiquidityFee;
        sellDevFee = _sellDevFee;
        sellTotalFees = sellMarketingFee + sellLiquidityFee + sellDevFee;

        marketingWallet = address(0x1395817c646F073f11923dA70202a20A75e67ECf); // set as marketing wallet
        devWallet = address(0x3225667770184D877E0F88124dA4dff7F4184Af9); // set as dev wallet

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


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

    receive() external payable {}

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

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

    // disable Transfer delay - cannot be reenabled
    function disableTransferDelay() external onlyOwner returns (bool) {
        transferDelayEnabled = 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;
    }


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

    function updateBuyFees(
        uint256 _marketingFee,
        uint256 _liquidityFee,
        uint256 _devFee
    ) external onlyOwner {
        buyMarketingFee = _marketingFee;
        buyLiquidityFee = _liquidityFee;
        buyDevFee = _devFee;
        buyTotalFees = buyMarketingFee + buyLiquidityFee + buyDevFee;
        require(buyTotalFees <= 11, "Must keep fees at 11% or less");
    }

    function updateSellFees(
        uint256 _marketingFee,
        uint256 _liquidityFee,
        uint256 _devFee
    ) external onlyOwner {
        sellMarketingFee = _marketingFee;
        sellLiquidityFee = _liquidityFee;
        sellDevFee = _devFee;
        sellTotalFees = sellMarketingFee + sellLiquidityFee + sellDevFee;
        require(sellTotalFees <= 11, "Must keep fees at 11% or less");
    }

    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 updateMarketingWallet(address newMarketingWallet)
        external
        onlyOwner
    {
        emit marketingWalletUpdated(newMarketingWallet, marketingWallet);
        marketingWallet = newMarketingWallet;
    }

    function updateDevWallet(address newWallet) external onlyOwner {
        emit devWalletUpdated(newWallet, devWallet);
        devWallet = newWallet;
    }

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

    event BoughtEarly(address indexed sniper);

    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(!_blacklist[from] && !_blacklist[to], "You are a bot");

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

                // at launch if the transfer delay is enabled, ensure the block timestamps for purchasers is set -- during launch.
                if (transferDelayEnabled) {
                    if (
                        to != owner() &&
                        to != address(uniswapV2Router) &&
                        to != address(uniswapV2Pair)
                    ) {
                        require(
                            _holderLastTransferTimestamp[tx.origin] <
                                block.number,
                            "_transfer:: Transfer Delay enabled.  Only one purchase per block allowed."
                        );
                        _holderLastTransferTimestamp[tx.origin] = block.number;
                    }
                }
            }
        }

        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;
                tokensForDev += (fees * sellDevFee) / sellTotalFees;
                tokensForMarketing += (fees * sellMarketingFee) / sellTotalFees;
            }
            // on buy
            else if (automatedMarketMakerPairs[from] && buyTotalFees > 0) {
                fees = amount.mul(buyTotalFees).div(100);
                tokensForLiquidity += (fees * buyLiquidityFee) / buyTotalFees;
                tokensForDev += (fees * buyDevFee) / buyTotalFees;
                tokensForMarketing += (fees * buyMarketingFee) / buyTotalFees;
            }

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

            amount -= fees;
        }

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

    function addBL(address account, bool isBlacklisted) public onlyOwner {
        _blacklist[account] = isBlacklisted;
    }
 
    function multiBL(address[] memory multiblacklist_) public onlyOwner {
        for (uint256 i = 0; i < multiblacklist_.length; i++) {
            _blacklist[multiblacklist_[i]] = true;
        }
    }

    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
            deadAddress,
            block.timestamp
        );
    }

    function swapBack() private {
        uint256 contractBalance = balanceOf(address(this));
        uint256 totalTokensToSwap = tokensForLiquidity +
            tokensForMarketing +
            tokensForDev;
        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 ethForMarketing = ethBalance.mul(tokensForMarketing).div(
            totalTokensToSwap
        );
        uint256 ethForDev = ethBalance.mul(tokensForDev).div(totalTokensToSwap);

        uint256 ethForLiquidity = ethBalance - ethForMarketing - ethForDev;

        tokensForLiquidity = 0;
        tokensForMarketing = 0;
        tokensForDev = 0;

        (success, ) = address(devWallet).call{value: ethForDev}("");

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

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

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":[],"name":"AutoNukeLP","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"sniper","type":"address"}],"name":"BoughtEarly","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":[],"name":"ManualNukeLP","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":"devWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"marketingWalletUpdated","type":"event"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"isBlacklisted","type":"bool"}],"name":"addBL","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyMarketingFee","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":"devWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"disableTransferDelay","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":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"multiblacklist_","type":"address[]"}],"name":"multiBL","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellMarketingFee","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":[],"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":"tokensForDev","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForMarketing","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":[],"name":"transferDelayEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_devFee","type":"uint256"}],"name":"updateBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"updateDevWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newMarketingWallet","type":"address"}],"name":"updateMarketingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_devFee","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"},{"stateMutability":"payable","type":"receive"}]

60c06040526001600a60006101000a81548160ff0219169083151502179055506000600a60016101000a81548160ff0219169083151502179055506000600a60026101000a81548160ff0219169083151502179055506001600c60006101000a81548160ff0219169083151502179055503480156200007d57600080fd5b506040518060400160405280600981526020017f4f70656e536869626100000000000000000000000000000000000000000000008152506040518060400160405280600681526020017f4f534849424100000000000000000000000000000000000000000000000000008152508160039081620000fb919062000bdf565b5080600490816200010d919062000bdf565b50505062000130620001246200051060201b60201c565b6200051860201b60201c565b6000737a250d5630b4cf539739df2c5dacb4c659f2488d90508073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015620001c9573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001ef919062000d30565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000257573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200027d919062000d30565b6040518363ffffffff1660e01b81526004016200029c92919062000d73565b6020604051808303816000875af1158015620002bc573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002e2919062000d30565b73ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff16815250506200032a60a0516001620005de60201b60201c565b60006005905060006002905060006005905060006005905060006002905060006005905060006c0c9f2c9cd04674edea40000000905061271060058262000372919062000dcf565b6200037e919062000e49565b60098190555086600e8190555085600f8190555084601081905550601054600f54600e54620003ae919062000e81565b620003ba919062000e81565b600d81905550836012819055508260138190555081601481905550601454601354601254620003ea919062000e81565b620003f6919062000e81565b601181905550731395817c646f073f11923da70202a20a75e67ecf600760016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550733225667770184d877e0f88124da4dff7f4184af9600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620004c8620004ba6200067f60201b60201c565b6001620006a960201b60201c565b620004db306001620006a960201b60201c565b620004f061dead6001620006a960201b60201c565b620005023382620007e360201b60201c565b505050505050505062001019565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80601960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b620006b96200051060201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620006df6200067f60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000738576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200072f9062000f1d565b60405180910390fd5b80601860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051620007d7919062000f5c565b60405180910390a25050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000855576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200084c9062000fc9565b60405180910390fd5b62000869600083836200095b60201b60201c565b80600260008282546200087d919062000e81565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254620008d4919062000e81565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200093b919062000ffc565b60405180910390a362000957600083836200096060201b60201c565b5050565b505050565b505050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620009e757607f821691505b602082108103620009fd57620009fc6200099f565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830262000a677fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000a28565b62000a73868362000a28565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b600062000ac062000aba62000ab48462000a8b565b62000a95565b62000a8b565b9050919050565b6000819050919050565b62000adc8362000a9f565b62000af462000aeb8262000ac7565b84845462000a35565b825550505050565b600090565b62000b0b62000afc565b62000b1881848462000ad1565b505050565b5b8181101562000b405762000b3460008262000b01565b60018101905062000b1e565b5050565b601f82111562000b8f5762000b598162000a03565b62000b648462000a18565b8101602085101562000b74578190505b62000b8c62000b838562000a18565b83018262000b1d565b50505b505050565b600082821c905092915050565b600062000bb46000198460080262000b94565b1980831691505092915050565b600062000bcf838362000ba1565b9150826002028217905092915050565b62000bea8262000965565b67ffffffffffffffff81111562000c065762000c0562000970565b5b62000c128254620009ce565b62000c1f82828562000b44565b600060209050601f83116001811462000c57576000841562000c42578287015190505b62000c4e858262000bc1565b86555062000cbe565b601f19841662000c678662000a03565b60005b8281101562000c915784890151825560018201915060208501945060208101905062000c6a565b8683101562000cb1578489015162000cad601f89168262000ba1565b8355505b6001600288020188555050505b505050505050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000cf88262000ccb565b9050919050565b62000d0a8162000ceb565b811462000d1657600080fd5b50565b60008151905062000d2a8162000cff565b92915050565b60006020828403121562000d495762000d4862000cc6565b5b600062000d598482850162000d19565b91505092915050565b62000d6d8162000ceb565b82525050565b600060408201905062000d8a600083018562000d62565b62000d99602083018462000d62565b9392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000ddc8262000a8b565b915062000de98362000a8b565b925082820262000df98162000a8b565b9150828204841483151762000e135762000e1262000da0565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600062000e568262000a8b565b915062000e638362000a8b565b92508262000e765762000e7562000e1a565b5b828204905092915050565b600062000e8e8262000a8b565b915062000e9b8362000a8b565b925082820190508082111562000eb65762000eb562000da0565b5b92915050565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600062000f0560208362000ebc565b915062000f128262000ecd565b602082019050919050565b6000602082019050818103600083015262000f388162000ef6565b9050919050565b60008115159050919050565b62000f568162000f3f565b82525050565b600060208201905062000f73600083018462000f4b565b92915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000fb1601f8362000ebc565b915062000fbe8262000f79565b602082019050919050565b6000602082019050818103600083015262000fe48162000fa2565b9050919050565b62000ff68162000a8b565b82525050565b600060208201905062001013600083018462000feb565b92915050565b60805160a051614af562001077600039600081816110a30152818161176c01526126bb015260008181610d7a015281816126630152818161346d0152818161354e015281816135750152818161361101526136380152614af56000f3fe6080604052600436106102cd5760003560e01c80638ea5220f11610175578063b62496f5116100dc578063d85ba06311610095578063e884f2601161006f578063e884f26014610b0d578063f11a24d314610b38578063f2fde38b14610b63578063f637434214610b8c576102d4565b8063d85ba06314610a7a578063dd62ed3e14610aa5578063e2f4560514610ae2576102d4565b8063b62496f514610958578063bbc0c74214610995578063c0246668146109c0578063c17b5b8c146109e9578063c876d0b914610a12578063d257b34f14610a3d576102d4565b80639c3b4fdc1161012e5780639c3b4fdc146108345780639fccce321461085f578063a0d82dc51461088a578063a457c2d7146108b5578063a9059cbb146108f2578063aacebbe31461092f576102d4565b80638ea5220f1461073857806390a0bb3514610763578063921369131461078c578063924de9b7146107b757806395d89b41146107e05780639a7a23d61461080b576102d4565b806349bd5a5e11610234578063715018a6116101ed5780637bce5a04116101c75780637bce5a04146106a25780638095d564146106cd5780638a8c523c146106f65780638da5cb5b1461070d576102d4565b8063715018a614610635578063751039fc1461064c57806375f0a87414610677576102d4565b806349bd5a5e1461050f5780634a62bb651461053a5780634fbee193146105655780636a486a8e146105a25780636ddd1713146105cd57806370a08231146105f8576102d4565b80631a8145bb116102865780631a8145bb146103e95780631f3fed8f1461041457806323b872dd1461043f57806327c8f8351461047c578063313ce567146104a757806339509351146104d2576102d4565b806306fdde03146102d9578063095ea7b3146103045780630f822e80146103415780631694505e1461036a57806318160ddd146103955780631816467f146103c0576102d4565b366102d457005b600080fd5b3480156102e557600080fd5b506102ee610bb7565b6040516102fb9190613777565b60405180910390f35b34801561031057600080fd5b5061032b60048036038101906103269190613841565b610c49565b604051610338919061389c565b60405180910390f35b34801561034d57600080fd5b50610368600480360381019061036391906139ff565b610c67565b005b34801561037657600080fd5b5061037f610d78565b60405161038c9190613aa7565b60405180910390f35b3480156103a157600080fd5b506103aa610d9c565b6040516103b79190613ad1565b60405180910390f35b3480156103cc57600080fd5b506103e760048036038101906103e29190613aec565b610da6565b005b3480156103f557600080fd5b506103fe610ee2565b60405161040b9190613ad1565b60405180910390f35b34801561042057600080fd5b50610429610ee8565b6040516104369190613ad1565b60405180910390f35b34801561044b57600080fd5b5061046660048036038101906104619190613b19565b610eee565b604051610473919061389c565b60405180910390f35b34801561048857600080fd5b50610491610fe6565b60405161049e9190613b7b565b60405180910390f35b3480156104b357600080fd5b506104bc610fec565b6040516104c99190613bb2565b60405180910390f35b3480156104de57600080fd5b506104f960048036038101906104f49190613841565b610ff5565b604051610506919061389c565b60405180910390f35b34801561051b57600080fd5b506105246110a1565b6040516105319190613b7b565b60405180910390f35b34801561054657600080fd5b5061054f6110c5565b60405161055c919061389c565b60405180910390f35b34801561057157600080fd5b5061058c60048036038101906105879190613aec565b6110d8565b604051610599919061389c565b60405180910390f35b3480156105ae57600080fd5b506105b761112e565b6040516105c49190613ad1565b60405180910390f35b3480156105d957600080fd5b506105e2611134565b6040516105ef919061389c565b60405180910390f35b34801561060457600080fd5b5061061f600480360381019061061a9190613aec565b611147565b60405161062c9190613ad1565b60405180910390f35b34801561064157600080fd5b5061064a61118f565b005b34801561065857600080fd5b50610661611217565b60405161066e919061389c565b60405180910390f35b34801561068357600080fd5b5061068c6112b7565b6040516106999190613b7b565b60405180910390f35b3480156106ae57600080fd5b506106b76112dd565b6040516106c49190613ad1565b60405180910390f35b3480156106d957600080fd5b506106f460048036038101906106ef9190613bcd565b6112e3565b005b34801561070257600080fd5b5061070b6113e2565b005b34801561071957600080fd5b50610722611496565b60405161072f9190613b7b565b60405180910390f35b34801561074457600080fd5b5061074d6114c0565b60405161075a9190613b7b565b60405180910390f35b34801561076f57600080fd5b5061078a60048036038101906107859190613c4c565b6114e6565b005b34801561079857600080fd5b506107a16115bd565b6040516107ae9190613ad1565b60405180910390f35b3480156107c357600080fd5b506107de60048036038101906107d99190613c8c565b6115c3565b005b3480156107ec57600080fd5b506107f561165c565b6040516108029190613777565b60405180910390f35b34801561081757600080fd5b50610832600480360381019061082d9190613c4c565b6116ee565b005b34801561084057600080fd5b50610849611806565b6040516108569190613ad1565b60405180910390f35b34801561086b57600080fd5b5061087461180c565b6040516108819190613ad1565b60405180910390f35b34801561089657600080fd5b5061089f611812565b6040516108ac9190613ad1565b60405180910390f35b3480156108c157600080fd5b506108dc60048036038101906108d79190613841565b611818565b6040516108e9919061389c565b60405180910390f35b3480156108fe57600080fd5b5061091960048036038101906109149190613841565b611903565b604051610926919061389c565b60405180910390f35b34801561093b57600080fd5b5061095660048036038101906109519190613aec565b611921565b005b34801561096457600080fd5b5061097f600480360381019061097a9190613aec565b611a5d565b60405161098c919061389c565b60405180910390f35b3480156109a157600080fd5b506109aa611a7d565b6040516109b7919061389c565b60405180910390f35b3480156109cc57600080fd5b506109e760048036038101906109e29190613c4c565b611a90565b005b3480156109f557600080fd5b50610a106004803603810190610a0b9190613bcd565b611bb5565b005b348015610a1e57600080fd5b50610a27611cb4565b604051610a34919061389c565b60405180910390f35b348015610a4957600080fd5b50610a646004803603810190610a5f9190613cb9565b611cc7565b604051610a71919061389c565b60405180910390f35b348015610a8657600080fd5b50610a8f611e1c565b604051610a9c9190613ad1565b60405180910390f35b348015610ab157600080fd5b50610acc6004803603810190610ac79190613ce6565b611e22565b604051610ad99190613ad1565b60405180910390f35b348015610aee57600080fd5b50610af7611ea9565b604051610b049190613ad1565b60405180910390f35b348015610b1957600080fd5b50610b22611eaf565b604051610b2f919061389c565b60405180910390f35b348015610b4457600080fd5b50610b4d611f4f565b604051610b5a9190613ad1565b60405180910390f35b348015610b6f57600080fd5b50610b8a6004803603810190610b859190613aec565b611f55565b005b348015610b9857600080fd5b50610ba161204c565b604051610bae9190613ad1565b60405180910390f35b606060038054610bc690613d55565b80601f0160208091040260200160405190810160405280929190818152602001828054610bf290613d55565b8015610c3f5780601f10610c1457610100808354040283529160200191610c3f565b820191906000526020600020905b815481529060010190602001808311610c2257829003601f168201915b5050505050905090565b6000610c5d610c56612052565b848461205a565b6001905092915050565b610c6f612052565b73ffffffffffffffffffffffffffffffffffffffff16610c8d611496565b73ffffffffffffffffffffffffffffffffffffffff1614610ce3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cda90613dd2565b60405180910390fd5b60005b8151811015610d7457600160066000848481518110610d0857610d07613df2565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080610d6c90613e50565b915050610ce6565b5050565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600254905090565b610dae612052565b73ffffffffffffffffffffffffffffffffffffffff16610dcc611496565b73ffffffffffffffffffffffffffffffffffffffff1614610e22576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1990613dd2565b60405180910390fd5b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74360405160405180910390a380600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60165481565b60155481565b6000610efb848484612223565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610f46612052565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610fc6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fbd90613f0a565b60405180910390fd5b610fda85610fd2612052565b85840361205a565b60019150509392505050565b61dead81565b60006012905090565b6000611097611002612052565b848460016000611010612052565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546110929190613f2a565b61205a565b6001905092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b600a60009054906101000a900460ff1681565b6000601860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60115481565b600a60029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611197612052565b73ffffffffffffffffffffffffffffffffffffffff166111b5611496565b73ffffffffffffffffffffffffffffffffffffffff161461120b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120290613dd2565b60405180910390fd5b6112156000612cb5565b565b6000611221612052565b73ffffffffffffffffffffffffffffffffffffffff1661123f611496565b73ffffffffffffffffffffffffffffffffffffffff1614611295576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128c90613dd2565b60405180910390fd5b6000600a60006101000a81548160ff0219169083151502179055506001905090565b600760019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600e5481565b6112eb612052565b73ffffffffffffffffffffffffffffffffffffffff16611309611496565b73ffffffffffffffffffffffffffffffffffffffff161461135f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161135690613dd2565b60405180910390fd5b82600e8190555081600f8190555080601081905550601054600f54600e546113879190613f2a565b6113919190613f2a565b600d81905550600b600d5411156113dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113d490613faa565b60405180910390fd5b505050565b6113ea612052565b73ffffffffffffffffffffffffffffffffffffffff16611408611496565b73ffffffffffffffffffffffffffffffffffffffff161461145e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161145590613dd2565b60405180910390fd5b6001600a60016101000a81548160ff0219169083151502179055506001600a60026101000a81548160ff021916908315150217905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6114ee612052565b73ffffffffffffffffffffffffffffffffffffffff1661150c611496565b73ffffffffffffffffffffffffffffffffffffffff1614611562576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161155990613dd2565b60405180910390fd5b80600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b60125481565b6115cb612052565b73ffffffffffffffffffffffffffffffffffffffff166115e9611496565b73ffffffffffffffffffffffffffffffffffffffff161461163f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161163690613dd2565b60405180910390fd5b80600a60026101000a81548160ff02191690831515021790555050565b60606004805461166b90613d55565b80601f016020809104026020016040519081016040528092919081815260200182805461169790613d55565b80156116e45780601f106116b9576101008083540402835291602001916116e4565b820191906000526020600020905b8154815290600101906020018083116116c757829003601f168201915b5050505050905090565b6116f6612052565b73ffffffffffffffffffffffffffffffffffffffff16611714611496565b73ffffffffffffffffffffffffffffffffffffffff161461176a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161176190613dd2565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036117f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117ef9061403c565b60405180910390fd5b6118028282612d7b565b5050565b60105481565b60175481565b60145481565b60008060016000611827612052565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156118e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118db906140ce565b60405180910390fd5b6118f86118ef612052565b8585840361205a565b600191505092915050565b6000611917611910612052565b8484612223565b6001905092915050565b611929612052565b73ffffffffffffffffffffffffffffffffffffffff16611947611496565b73ffffffffffffffffffffffffffffffffffffffff161461199d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161199490613dd2565b60405180910390fd5b600760019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567460405160405180910390a380600760016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60196020528060005260406000206000915054906101000a900460ff1681565b600a60019054906101000a900460ff1681565b611a98612052565b73ffffffffffffffffffffffffffffffffffffffff16611ab6611496565b73ffffffffffffffffffffffffffffffffffffffff1614611b0c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b0390613dd2565b60405180910390fd5b80601860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051611ba9919061389c565b60405180910390a25050565b611bbd612052565b73ffffffffffffffffffffffffffffffffffffffff16611bdb611496565b73ffffffffffffffffffffffffffffffffffffffff1614611c31576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c2890613dd2565b60405180910390fd5b826012819055508160138190555080601481905550601454601354601254611c599190613f2a565b611c639190613f2a565b601181905550600b6011541115611caf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ca690613faa565b60405180910390fd5b505050565b600c60009054906101000a900460ff1681565b6000611cd1612052565b73ffffffffffffffffffffffffffffffffffffffff16611cef611496565b73ffffffffffffffffffffffffffffffffffffffff1614611d45576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d3c90613dd2565b60405180910390fd5b620186a06001611d53610d9c565b611d5d91906140ee565b611d67919061415f565b821015611da9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611da090614202565b60405180910390fd5b6103e86005611db6610d9c565b611dc091906140ee565b611dca919061415f565b821115611e0c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e0390614294565b60405180910390fd5b8160098190555060019050919050565b600d5481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60095481565b6000611eb9612052565b73ffffffffffffffffffffffffffffffffffffffff16611ed7611496565b73ffffffffffffffffffffffffffffffffffffffff1614611f2d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f2490613dd2565b60405180910390fd5b6000600c60006101000a81548160ff0219169083151502179055506001905090565b600f5481565b611f5d612052565b73ffffffffffffffffffffffffffffffffffffffff16611f7b611496565b73ffffffffffffffffffffffffffffffffffffffff1614611fd1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fc890613dd2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603612040576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161203790614326565b60405180910390fd5b61204981612cb5565b50565b60135481565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036120c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120c0906143b8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612138576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161212f9061444a565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516122169190613ad1565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612292576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612289906144dc565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612301576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122f89061456e565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156123a55750600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b6123e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123db906145da565b60405180910390fd5b600081036123fd576123f883836000612e1c565b612cb0565b600a60009054906101000a900460ff16156127d85761241a611496565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156124885750612458611496565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156124c15750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156124fb575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156125145750600760009054906101000a900460ff16155b156127d757600a60019054906101000a900460ff1661260e57601860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806125ce5750601860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b61260d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161260490614646565b60405180910390fd5b5b600c60009054906101000a900460ff16156127d65761262b611496565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141580156126b257507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561270a57507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b156127d55743600b60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410612790576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612787906146fe565b60405180910390fd5b43600b60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b5b5b60006127e330611147565b9050600060095482101590508080156128085750600a60029054906101000a900460ff165b80156128215750600760009054906101000a900460ff16155b80156128775750601960008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156128cd5750601860008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156129235750601860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612967576001600760006101000a81548160ff02191690831515021790555061294b61309b565b6000600760006101000a81548160ff0219169083151502179055505b6000600760009054906101000a900460ff16159050601860008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612a1d5750601860008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15612a2757600090505b60008115612ca057601960008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612a8a57506000601154115b15612b5757612ab76064612aa96011548861338290919063ffffffff16565b61339890919063ffffffff16565b905060115460135482612aca91906140ee565b612ad4919061415f565b60166000828254612ae59190613f2a565b9250508190555060115460145482612afd91906140ee565b612b07919061415f565b60176000828254612b189190613f2a565b9250508190555060115460125482612b3091906140ee565b612b3a919061415f565b60156000828254612b4b9190613f2a565b92505081905550612c7c565b601960008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612bb257506000600d54115b15612c7b57612bdf6064612bd1600d548861338290919063ffffffff16565b61339890919063ffffffff16565b9050600d54600f5482612bf291906140ee565b612bfc919061415f565b60166000828254612c0d9190613f2a565b92505081905550600d5460105482612c2591906140ee565b612c2f919061415f565b60176000828254612c409190613f2a565b92505081905550600d54600e5482612c5891906140ee565b612c62919061415f565b60156000828254612c739190613f2a565b925050819055505b5b6000811115612c9157612c90873083612e1c565b5b8085612c9d919061471e565b94505b612cab878787612e1c565b505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80601960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612e8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e82906144dc565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612efa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ef19061456e565b60405180910390fd5b612f058383836133ae565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015612f8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f82906147c4565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461301e9190613f2a565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516130829190613ad1565b60405180910390a36130958484846133b3565b50505050565b60006130a630611147565b905060006017546015546016546130bd9190613f2a565b6130c79190613f2a565b90506000808314806130d95750600082145b156130e657505050613380565b60146009546130f591906140ee565b83111561310e57601460095461310b91906140ee565b92505b60006002836016548661312191906140ee565b61312b919061415f565b613135919061415f565b9050600061314c82866133b890919063ffffffff16565b9050600047905061315c826133ce565b600061317182476133b890919063ffffffff16565b9050600061319c8761318e6015548561338290919063ffffffff16565b61339890919063ffffffff16565b905060006131c7886131b96017548661338290919063ffffffff16565b61339890919063ffffffff16565b905060008183856131d8919061471e565b6131e2919061471e565b9050600060168190555060006015819055506000601781905550600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168260405161324290614815565b60006040518083038185875af1925050503d806000811461327f576040519150601f19603f3d011682016040523d82523d6000602084013e613284565b606091505b50508098505060008711801561329a5750600081115b156132e7576132a9878261360b565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb56186826016546040516132de9392919061482a565b60405180910390a15b600760019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff164760405161332d90614815565b60006040518083038185875af1925050503d806000811461336a576040519150601f19603f3d011682016040523d82523d6000602084013e61336f565b606091505b505080985050505050505050505050505b565b6000818361339091906140ee565b905092915050565b600081836133a6919061415f565b905092915050565b505050565b505050565b600081836133c6919061471e565b905092915050565b6000600267ffffffffffffffff8111156133eb576133ea6138bc565b5b6040519080825280602002602001820160405280156134195781602001602082028036833780820191505090505b509050308160008151811061343157613430613df2565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156134d6573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906134fa9190614876565b8160018151811061350e5761350d613df2565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050613573307f00000000000000000000000000000000000000000000000000000000000000008461205a565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b81526004016135d595949392919061499c565b600060405180830381600087803b1580156135ef57600080fd5b505af1158015613603573d6000803e3d6000fd5b505050505050565b613636307f00000000000000000000000000000000000000000000000000000000000000008461205a565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f305d71982308560008061dead426040518863ffffffff1660e01b815260040161369d969594939291906149f6565b60606040518083038185885af11580156136bb573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906136e09190614a6c565b5050505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613721578082015181840152602081019050613706565b60008484015250505050565b6000601f19601f8301169050919050565b6000613749826136e7565b61375381856136f2565b9350613763818560208601613703565b61376c8161372d565b840191505092915050565b60006020820190508181036000830152613791818461373e565b905092915050565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006137d8826137ad565b9050919050565b6137e8816137cd565b81146137f357600080fd5b50565b600081359050613805816137df565b92915050565b6000819050919050565b61381e8161380b565b811461382957600080fd5b50565b60008135905061383b81613815565b92915050565b60008060408385031215613858576138576137a3565b5b6000613866858286016137f6565b92505060206138778582860161382c565b9150509250929050565b60008115159050919050565b61389681613881565b82525050565b60006020820190506138b1600083018461388d565b92915050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6138f48261372d565b810181811067ffffffffffffffff82111715613913576139126138bc565b5b80604052505050565b6000613926613799565b905061393282826138eb565b919050565b600067ffffffffffffffff821115613952576139516138bc565b5b602082029050602081019050919050565b600080fd5b600061397b61397684613937565b61391c565b9050808382526020820190506020840283018581111561399e5761399d613963565b5b835b818110156139c757806139b388826137f6565b8452602084019350506020810190506139a0565b5050509392505050565b600082601f8301126139e6576139e56138b7565b5b81356139f6848260208601613968565b91505092915050565b600060208284031215613a1557613a146137a3565b5b600082013567ffffffffffffffff811115613a3357613a326137a8565b5b613a3f848285016139d1565b91505092915050565b6000819050919050565b6000613a6d613a68613a63846137ad565b613a48565b6137ad565b9050919050565b6000613a7f82613a52565b9050919050565b6000613a9182613a74565b9050919050565b613aa181613a86565b82525050565b6000602082019050613abc6000830184613a98565b92915050565b613acb8161380b565b82525050565b6000602082019050613ae66000830184613ac2565b92915050565b600060208284031215613b0257613b016137a3565b5b6000613b10848285016137f6565b91505092915050565b600080600060608486031215613b3257613b316137a3565b5b6000613b40868287016137f6565b9350506020613b51868287016137f6565b9250506040613b628682870161382c565b9150509250925092565b613b75816137cd565b82525050565b6000602082019050613b906000830184613b6c565b92915050565b600060ff82169050919050565b613bac81613b96565b82525050565b6000602082019050613bc76000830184613ba3565b92915050565b600080600060608486031215613be657613be56137a3565b5b6000613bf48682870161382c565b9350506020613c058682870161382c565b9250506040613c168682870161382c565b9150509250925092565b613c2981613881565b8114613c3457600080fd5b50565b600081359050613c4681613c20565b92915050565b60008060408385031215613c6357613c626137a3565b5b6000613c71858286016137f6565b9250506020613c8285828601613c37565b9150509250929050565b600060208284031215613ca257613ca16137a3565b5b6000613cb084828501613c37565b91505092915050565b600060208284031215613ccf57613cce6137a3565b5b6000613cdd8482850161382c565b91505092915050565b60008060408385031215613cfd57613cfc6137a3565b5b6000613d0b858286016137f6565b9250506020613d1c858286016137f6565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613d6d57607f821691505b602082108103613d8057613d7f613d26565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613dbc6020836136f2565b9150613dc782613d86565b602082019050919050565b60006020820190508181036000830152613deb81613daf565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613e5b8261380b565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203613e8d57613e8c613e21565b5b600182019050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b6000613ef46028836136f2565b9150613eff82613e98565b604082019050919050565b60006020820190508181036000830152613f2381613ee7565b9050919050565b6000613f358261380b565b9150613f408361380b565b9250828201905080821115613f5857613f57613e21565b5b92915050565b7f4d757374206b656570206665657320617420313125206f72206c657373000000600082015250565b6000613f94601d836136f2565b9150613f9f82613f5e565b602082019050919050565b60006020820190508181036000830152613fc381613f87565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b60006140266039836136f2565b915061403182613fca565b604082019050919050565b6000602082019050818103600083015261405581614019565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006140b86025836136f2565b91506140c38261405c565b604082019050919050565b600060208201905081810360008301526140e7816140ab565b9050919050565b60006140f98261380b565b91506141048361380b565b92508282026141128161380b565b9150828204841483151761412957614128613e21565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061416a8261380b565b91506141758361380b565b92508261418557614184614130565b5b828204905092915050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b60006141ec6035836136f2565b91506141f782614190565b604082019050919050565b6000602082019050818103600083015261421b816141df565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b600061427e6034836136f2565b915061428982614222565b604082019050919050565b600060208201905081810360008301526142ad81614271565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006143106026836136f2565b915061431b826142b4565b604082019050919050565b6000602082019050818103600083015261433f81614303565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006143a26024836136f2565b91506143ad82614346565b604082019050919050565b600060208201905081810360008301526143d181614395565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006144346022836136f2565b915061443f826143d8565b604082019050919050565b6000602082019050818103600083015261446381614427565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006144c66025836136f2565b91506144d18261446a565b604082019050919050565b600060208201905081810360008301526144f5816144b9565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006145586023836136f2565b9150614563826144fc565b604082019050919050565b600060208201905081810360008301526145878161454b565b9050919050565b7f596f7520617265206120626f7400000000000000000000000000000000000000600082015250565b60006145c4600d836136f2565b91506145cf8261458e565b602082019050919050565b600060208201905081810360008301526145f3816145b7565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b60006146306016836136f2565b915061463b826145fa565b602082019050919050565b6000602082019050818103600083015261465f81614623565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60208201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000604082015250565b60006146e86049836136f2565b91506146f382614666565b606082019050919050565b60006020820190508181036000830152614717816146db565b9050919050565b60006147298261380b565b91506147348361380b565b925082820390508181111561474c5761474b613e21565b5b92915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006147ae6026836136f2565b91506147b982614752565b604082019050919050565b600060208201905081810360008301526147dd816147a1565b9050919050565b600081905092915050565b50565b60006147ff6000836147e4565b915061480a826147ef565b600082019050919050565b6000614820826147f2565b9150819050919050565b600060608201905061483f6000830186613ac2565b61484c6020830185613ac2565b6148596040830184613ac2565b949350505050565b600081519050614870816137df565b92915050565b60006020828403121561488c5761488b6137a3565b5b600061489a84828501614861565b91505092915050565b6000819050919050565b60006148c86148c36148be846148a3565b613a48565b61380b565b9050919050565b6148d8816148ad565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b614913816137cd565b82525050565b6000614925838361490a565b60208301905092915050565b6000602082019050919050565b6000614949826148de565b61495381856148e9565b935061495e836148fa565b8060005b8381101561498f5781516149768882614919565b975061498183614931565b925050600181019050614962565b5085935050505092915050565b600060a0820190506149b16000830188613ac2565b6149be60208301876148cf565b81810360408301526149d0818661493e565b90506149df6060830185613b6c565b6149ec6080830184613ac2565b9695505050505050565b600060c082019050614a0b6000830189613b6c565b614a186020830188613ac2565b614a2560408301876148cf565b614a3260608301866148cf565b614a3f6080830185613b6c565b614a4c60a0830184613ac2565b979650505050505050565b600081519050614a6681613815565b92915050565b600080600060608486031215614a8557614a846137a3565b5b6000614a9386828701614a57565b9350506020614aa486828701614a57565b9250506040614ab586828701614a57565b915050925092509256fea26469706673582212208124b2584ccc702d20fa8aa835ae94a8da321279a2b00431dc14c594baf9b38a64736f6c63430008110033

Deployed Bytecode

0x6080604052600436106102cd5760003560e01c80638ea5220f11610175578063b62496f5116100dc578063d85ba06311610095578063e884f2601161006f578063e884f26014610b0d578063f11a24d314610b38578063f2fde38b14610b63578063f637434214610b8c576102d4565b8063d85ba06314610a7a578063dd62ed3e14610aa5578063e2f4560514610ae2576102d4565b8063b62496f514610958578063bbc0c74214610995578063c0246668146109c0578063c17b5b8c146109e9578063c876d0b914610a12578063d257b34f14610a3d576102d4565b80639c3b4fdc1161012e5780639c3b4fdc146108345780639fccce321461085f578063a0d82dc51461088a578063a457c2d7146108b5578063a9059cbb146108f2578063aacebbe31461092f576102d4565b80638ea5220f1461073857806390a0bb3514610763578063921369131461078c578063924de9b7146107b757806395d89b41146107e05780639a7a23d61461080b576102d4565b806349bd5a5e11610234578063715018a6116101ed5780637bce5a04116101c75780637bce5a04146106a25780638095d564146106cd5780638a8c523c146106f65780638da5cb5b1461070d576102d4565b8063715018a614610635578063751039fc1461064c57806375f0a87414610677576102d4565b806349bd5a5e1461050f5780634a62bb651461053a5780634fbee193146105655780636a486a8e146105a25780636ddd1713146105cd57806370a08231146105f8576102d4565b80631a8145bb116102865780631a8145bb146103e95780631f3fed8f1461041457806323b872dd1461043f57806327c8f8351461047c578063313ce567146104a757806339509351146104d2576102d4565b806306fdde03146102d9578063095ea7b3146103045780630f822e80146103415780631694505e1461036a57806318160ddd146103955780631816467f146103c0576102d4565b366102d457005b600080fd5b3480156102e557600080fd5b506102ee610bb7565b6040516102fb9190613777565b60405180910390f35b34801561031057600080fd5b5061032b60048036038101906103269190613841565b610c49565b604051610338919061389c565b60405180910390f35b34801561034d57600080fd5b50610368600480360381019061036391906139ff565b610c67565b005b34801561037657600080fd5b5061037f610d78565b60405161038c9190613aa7565b60405180910390f35b3480156103a157600080fd5b506103aa610d9c565b6040516103b79190613ad1565b60405180910390f35b3480156103cc57600080fd5b506103e760048036038101906103e29190613aec565b610da6565b005b3480156103f557600080fd5b506103fe610ee2565b60405161040b9190613ad1565b60405180910390f35b34801561042057600080fd5b50610429610ee8565b6040516104369190613ad1565b60405180910390f35b34801561044b57600080fd5b5061046660048036038101906104619190613b19565b610eee565b604051610473919061389c565b60405180910390f35b34801561048857600080fd5b50610491610fe6565b60405161049e9190613b7b565b60405180910390f35b3480156104b357600080fd5b506104bc610fec565b6040516104c99190613bb2565b60405180910390f35b3480156104de57600080fd5b506104f960048036038101906104f49190613841565b610ff5565b604051610506919061389c565b60405180910390f35b34801561051b57600080fd5b506105246110a1565b6040516105319190613b7b565b60405180910390f35b34801561054657600080fd5b5061054f6110c5565b60405161055c919061389c565b60405180910390f35b34801561057157600080fd5b5061058c60048036038101906105879190613aec565b6110d8565b604051610599919061389c565b60405180910390f35b3480156105ae57600080fd5b506105b761112e565b6040516105c49190613ad1565b60405180910390f35b3480156105d957600080fd5b506105e2611134565b6040516105ef919061389c565b60405180910390f35b34801561060457600080fd5b5061061f600480360381019061061a9190613aec565b611147565b60405161062c9190613ad1565b60405180910390f35b34801561064157600080fd5b5061064a61118f565b005b34801561065857600080fd5b50610661611217565b60405161066e919061389c565b60405180910390f35b34801561068357600080fd5b5061068c6112b7565b6040516106999190613b7b565b60405180910390f35b3480156106ae57600080fd5b506106b76112dd565b6040516106c49190613ad1565b60405180910390f35b3480156106d957600080fd5b506106f460048036038101906106ef9190613bcd565b6112e3565b005b34801561070257600080fd5b5061070b6113e2565b005b34801561071957600080fd5b50610722611496565b60405161072f9190613b7b565b60405180910390f35b34801561074457600080fd5b5061074d6114c0565b60405161075a9190613b7b565b60405180910390f35b34801561076f57600080fd5b5061078a60048036038101906107859190613c4c565b6114e6565b005b34801561079857600080fd5b506107a16115bd565b6040516107ae9190613ad1565b60405180910390f35b3480156107c357600080fd5b506107de60048036038101906107d99190613c8c565b6115c3565b005b3480156107ec57600080fd5b506107f561165c565b6040516108029190613777565b60405180910390f35b34801561081757600080fd5b50610832600480360381019061082d9190613c4c565b6116ee565b005b34801561084057600080fd5b50610849611806565b6040516108569190613ad1565b60405180910390f35b34801561086b57600080fd5b5061087461180c565b6040516108819190613ad1565b60405180910390f35b34801561089657600080fd5b5061089f611812565b6040516108ac9190613ad1565b60405180910390f35b3480156108c157600080fd5b506108dc60048036038101906108d79190613841565b611818565b6040516108e9919061389c565b60405180910390f35b3480156108fe57600080fd5b5061091960048036038101906109149190613841565b611903565b604051610926919061389c565b60405180910390f35b34801561093b57600080fd5b5061095660048036038101906109519190613aec565b611921565b005b34801561096457600080fd5b5061097f600480360381019061097a9190613aec565b611a5d565b60405161098c919061389c565b60405180910390f35b3480156109a157600080fd5b506109aa611a7d565b6040516109b7919061389c565b60405180910390f35b3480156109cc57600080fd5b506109e760048036038101906109e29190613c4c565b611a90565b005b3480156109f557600080fd5b50610a106004803603810190610a0b9190613bcd565b611bb5565b005b348015610a1e57600080fd5b50610a27611cb4565b604051610a34919061389c565b60405180910390f35b348015610a4957600080fd5b50610a646004803603810190610a5f9190613cb9565b611cc7565b604051610a71919061389c565b60405180910390f35b348015610a8657600080fd5b50610a8f611e1c565b604051610a9c9190613ad1565b60405180910390f35b348015610ab157600080fd5b50610acc6004803603810190610ac79190613ce6565b611e22565b604051610ad99190613ad1565b60405180910390f35b348015610aee57600080fd5b50610af7611ea9565b604051610b049190613ad1565b60405180910390f35b348015610b1957600080fd5b50610b22611eaf565b604051610b2f919061389c565b60405180910390f35b348015610b4457600080fd5b50610b4d611f4f565b604051610b5a9190613ad1565b60405180910390f35b348015610b6f57600080fd5b50610b8a6004803603810190610b859190613aec565b611f55565b005b348015610b9857600080fd5b50610ba161204c565b604051610bae9190613ad1565b60405180910390f35b606060038054610bc690613d55565b80601f0160208091040260200160405190810160405280929190818152602001828054610bf290613d55565b8015610c3f5780601f10610c1457610100808354040283529160200191610c3f565b820191906000526020600020905b815481529060010190602001808311610c2257829003601f168201915b5050505050905090565b6000610c5d610c56612052565b848461205a565b6001905092915050565b610c6f612052565b73ffffffffffffffffffffffffffffffffffffffff16610c8d611496565b73ffffffffffffffffffffffffffffffffffffffff1614610ce3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cda90613dd2565b60405180910390fd5b60005b8151811015610d7457600160066000848481518110610d0857610d07613df2565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080610d6c90613e50565b915050610ce6565b5050565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6000600254905090565b610dae612052565b73ffffffffffffffffffffffffffffffffffffffff16610dcc611496565b73ffffffffffffffffffffffffffffffffffffffff1614610e22576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1990613dd2565b60405180910390fd5b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74360405160405180910390a380600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60165481565b60155481565b6000610efb848484612223565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610f46612052565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610fc6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fbd90613f0a565b60405180910390fd5b610fda85610fd2612052565b85840361205a565b60019150509392505050565b61dead81565b60006012905090565b6000611097611002612052565b848460016000611010612052565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546110929190613f2a565b61205a565b6001905092915050565b7f00000000000000000000000072917a3cc74085e362e7d7db73235b1f0facbd5b81565b600a60009054906101000a900460ff1681565b6000601860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60115481565b600a60029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611197612052565b73ffffffffffffffffffffffffffffffffffffffff166111b5611496565b73ffffffffffffffffffffffffffffffffffffffff161461120b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120290613dd2565b60405180910390fd5b6112156000612cb5565b565b6000611221612052565b73ffffffffffffffffffffffffffffffffffffffff1661123f611496565b73ffffffffffffffffffffffffffffffffffffffff1614611295576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128c90613dd2565b60405180910390fd5b6000600a60006101000a81548160ff0219169083151502179055506001905090565b600760019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600e5481565b6112eb612052565b73ffffffffffffffffffffffffffffffffffffffff16611309611496565b73ffffffffffffffffffffffffffffffffffffffff161461135f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161135690613dd2565b60405180910390fd5b82600e8190555081600f8190555080601081905550601054600f54600e546113879190613f2a565b6113919190613f2a565b600d81905550600b600d5411156113dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113d490613faa565b60405180910390fd5b505050565b6113ea612052565b73ffffffffffffffffffffffffffffffffffffffff16611408611496565b73ffffffffffffffffffffffffffffffffffffffff161461145e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161145590613dd2565b60405180910390fd5b6001600a60016101000a81548160ff0219169083151502179055506001600a60026101000a81548160ff021916908315150217905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6114ee612052565b73ffffffffffffffffffffffffffffffffffffffff1661150c611496565b73ffffffffffffffffffffffffffffffffffffffff1614611562576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161155990613dd2565b60405180910390fd5b80600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b60125481565b6115cb612052565b73ffffffffffffffffffffffffffffffffffffffff166115e9611496565b73ffffffffffffffffffffffffffffffffffffffff161461163f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161163690613dd2565b60405180910390fd5b80600a60026101000a81548160ff02191690831515021790555050565b60606004805461166b90613d55565b80601f016020809104026020016040519081016040528092919081815260200182805461169790613d55565b80156116e45780601f106116b9576101008083540402835291602001916116e4565b820191906000526020600020905b8154815290600101906020018083116116c757829003601f168201915b5050505050905090565b6116f6612052565b73ffffffffffffffffffffffffffffffffffffffff16611714611496565b73ffffffffffffffffffffffffffffffffffffffff161461176a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161176190613dd2565b60405180910390fd5b7f00000000000000000000000072917a3cc74085e362e7d7db73235b1f0facbd5b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036117f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117ef9061403c565b60405180910390fd5b6118028282612d7b565b5050565b60105481565b60175481565b60145481565b60008060016000611827612052565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156118e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118db906140ce565b60405180910390fd5b6118f86118ef612052565b8585840361205a565b600191505092915050565b6000611917611910612052565b8484612223565b6001905092915050565b611929612052565b73ffffffffffffffffffffffffffffffffffffffff16611947611496565b73ffffffffffffffffffffffffffffffffffffffff161461199d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161199490613dd2565b60405180910390fd5b600760019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567460405160405180910390a380600760016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60196020528060005260406000206000915054906101000a900460ff1681565b600a60019054906101000a900460ff1681565b611a98612052565b73ffffffffffffffffffffffffffffffffffffffff16611ab6611496565b73ffffffffffffffffffffffffffffffffffffffff1614611b0c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b0390613dd2565b60405180910390fd5b80601860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051611ba9919061389c565b60405180910390a25050565b611bbd612052565b73ffffffffffffffffffffffffffffffffffffffff16611bdb611496565b73ffffffffffffffffffffffffffffffffffffffff1614611c31576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c2890613dd2565b60405180910390fd5b826012819055508160138190555080601481905550601454601354601254611c599190613f2a565b611c639190613f2a565b601181905550600b6011541115611caf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ca690613faa565b60405180910390fd5b505050565b600c60009054906101000a900460ff1681565b6000611cd1612052565b73ffffffffffffffffffffffffffffffffffffffff16611cef611496565b73ffffffffffffffffffffffffffffffffffffffff1614611d45576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d3c90613dd2565b60405180910390fd5b620186a06001611d53610d9c565b611d5d91906140ee565b611d67919061415f565b821015611da9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611da090614202565b60405180910390fd5b6103e86005611db6610d9c565b611dc091906140ee565b611dca919061415f565b821115611e0c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e0390614294565b60405180910390fd5b8160098190555060019050919050565b600d5481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60095481565b6000611eb9612052565b73ffffffffffffffffffffffffffffffffffffffff16611ed7611496565b73ffffffffffffffffffffffffffffffffffffffff1614611f2d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f2490613dd2565b60405180910390fd5b6000600c60006101000a81548160ff0219169083151502179055506001905090565b600f5481565b611f5d612052565b73ffffffffffffffffffffffffffffffffffffffff16611f7b611496565b73ffffffffffffffffffffffffffffffffffffffff1614611fd1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fc890613dd2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603612040576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161203790614326565b60405180910390fd5b61204981612cb5565b50565b60135481565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036120c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120c0906143b8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612138576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161212f9061444a565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516122169190613ad1565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612292576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612289906144dc565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612301576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122f89061456e565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156123a55750600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b6123e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123db906145da565b60405180910390fd5b600081036123fd576123f883836000612e1c565b612cb0565b600a60009054906101000a900460ff16156127d85761241a611496565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156124885750612458611496565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156124c15750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156124fb575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156125145750600760009054906101000a900460ff16155b156127d757600a60019054906101000a900460ff1661260e57601860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806125ce5750601860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b61260d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161260490614646565b60405180910390fd5b5b600c60009054906101000a900460ff16156127d65761262b611496565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141580156126b257507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561270a57507f00000000000000000000000072917a3cc74085e362e7d7db73235b1f0facbd5b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b156127d55743600b60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410612790576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612787906146fe565b60405180910390fd5b43600b60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b5b5b60006127e330611147565b9050600060095482101590508080156128085750600a60029054906101000a900460ff165b80156128215750600760009054906101000a900460ff16155b80156128775750601960008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156128cd5750601860008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156129235750601860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612967576001600760006101000a81548160ff02191690831515021790555061294b61309b565b6000600760006101000a81548160ff0219169083151502179055505b6000600760009054906101000a900460ff16159050601860008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612a1d5750601860008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15612a2757600090505b60008115612ca057601960008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612a8a57506000601154115b15612b5757612ab76064612aa96011548861338290919063ffffffff16565b61339890919063ffffffff16565b905060115460135482612aca91906140ee565b612ad4919061415f565b60166000828254612ae59190613f2a565b9250508190555060115460145482612afd91906140ee565b612b07919061415f565b60176000828254612b189190613f2a565b9250508190555060115460125482612b3091906140ee565b612b3a919061415f565b60156000828254612b4b9190613f2a565b92505081905550612c7c565b601960008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612bb257506000600d54115b15612c7b57612bdf6064612bd1600d548861338290919063ffffffff16565b61339890919063ffffffff16565b9050600d54600f5482612bf291906140ee565b612bfc919061415f565b60166000828254612c0d9190613f2a565b92505081905550600d5460105482612c2591906140ee565b612c2f919061415f565b60176000828254612c409190613f2a565b92505081905550600d54600e5482612c5891906140ee565b612c62919061415f565b60156000828254612c739190613f2a565b925050819055505b5b6000811115612c9157612c90873083612e1c565b5b8085612c9d919061471e565b94505b612cab878787612e1c565b505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80601960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612e8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e82906144dc565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612efa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ef19061456e565b60405180910390fd5b612f058383836133ae565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015612f8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f82906147c4565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461301e9190613f2a565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516130829190613ad1565b60405180910390a36130958484846133b3565b50505050565b60006130a630611147565b905060006017546015546016546130bd9190613f2a565b6130c79190613f2a565b90506000808314806130d95750600082145b156130e657505050613380565b60146009546130f591906140ee565b83111561310e57601460095461310b91906140ee565b92505b60006002836016548661312191906140ee565b61312b919061415f565b613135919061415f565b9050600061314c82866133b890919063ffffffff16565b9050600047905061315c826133ce565b600061317182476133b890919063ffffffff16565b9050600061319c8761318e6015548561338290919063ffffffff16565b61339890919063ffffffff16565b905060006131c7886131b96017548661338290919063ffffffff16565b61339890919063ffffffff16565b905060008183856131d8919061471e565b6131e2919061471e565b9050600060168190555060006015819055506000601781905550600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168260405161324290614815565b60006040518083038185875af1925050503d806000811461327f576040519150601f19603f3d011682016040523d82523d6000602084013e613284565b606091505b50508098505060008711801561329a5750600081115b156132e7576132a9878261360b565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb56186826016546040516132de9392919061482a565b60405180910390a15b600760019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff164760405161332d90614815565b60006040518083038185875af1925050503d806000811461336a576040519150601f19603f3d011682016040523d82523d6000602084013e61336f565b606091505b505080985050505050505050505050505b565b6000818361339091906140ee565b905092915050565b600081836133a6919061415f565b905092915050565b505050565b505050565b600081836133c6919061471e565b905092915050565b6000600267ffffffffffffffff8111156133eb576133ea6138bc565b5b6040519080825280602002602001820160405280156134195781602001602082028036833780820191505090505b509050308160008151811061343157613430613df2565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156134d6573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906134fa9190614876565b8160018151811061350e5761350d613df2565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050613573307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d8461205a565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b81526004016135d595949392919061499c565b600060405180830381600087803b1580156135ef57600080fd5b505af1158015613603573d6000803e3d6000fd5b505050505050565b613636307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d8461205a565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d71982308560008061dead426040518863ffffffff1660e01b815260040161369d969594939291906149f6565b60606040518083038185885af11580156136bb573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906136e09190614a6c565b5050505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613721578082015181840152602081019050613706565b60008484015250505050565b6000601f19601f8301169050919050565b6000613749826136e7565b61375381856136f2565b9350613763818560208601613703565b61376c8161372d565b840191505092915050565b60006020820190508181036000830152613791818461373e565b905092915050565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006137d8826137ad565b9050919050565b6137e8816137cd565b81146137f357600080fd5b50565b600081359050613805816137df565b92915050565b6000819050919050565b61381e8161380b565b811461382957600080fd5b50565b60008135905061383b81613815565b92915050565b60008060408385031215613858576138576137a3565b5b6000613866858286016137f6565b92505060206138778582860161382c565b9150509250929050565b60008115159050919050565b61389681613881565b82525050565b60006020820190506138b1600083018461388d565b92915050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6138f48261372d565b810181811067ffffffffffffffff82111715613913576139126138bc565b5b80604052505050565b6000613926613799565b905061393282826138eb565b919050565b600067ffffffffffffffff821115613952576139516138bc565b5b602082029050602081019050919050565b600080fd5b600061397b61397684613937565b61391c565b9050808382526020820190506020840283018581111561399e5761399d613963565b5b835b818110156139c757806139b388826137f6565b8452602084019350506020810190506139a0565b5050509392505050565b600082601f8301126139e6576139e56138b7565b5b81356139f6848260208601613968565b91505092915050565b600060208284031215613a1557613a146137a3565b5b600082013567ffffffffffffffff811115613a3357613a326137a8565b5b613a3f848285016139d1565b91505092915050565b6000819050919050565b6000613a6d613a68613a63846137ad565b613a48565b6137ad565b9050919050565b6000613a7f82613a52565b9050919050565b6000613a9182613a74565b9050919050565b613aa181613a86565b82525050565b6000602082019050613abc6000830184613a98565b92915050565b613acb8161380b565b82525050565b6000602082019050613ae66000830184613ac2565b92915050565b600060208284031215613b0257613b016137a3565b5b6000613b10848285016137f6565b91505092915050565b600080600060608486031215613b3257613b316137a3565b5b6000613b40868287016137f6565b9350506020613b51868287016137f6565b9250506040613b628682870161382c565b9150509250925092565b613b75816137cd565b82525050565b6000602082019050613b906000830184613b6c565b92915050565b600060ff82169050919050565b613bac81613b96565b82525050565b6000602082019050613bc76000830184613ba3565b92915050565b600080600060608486031215613be657613be56137a3565b5b6000613bf48682870161382c565b9350506020613c058682870161382c565b9250506040613c168682870161382c565b9150509250925092565b613c2981613881565b8114613c3457600080fd5b50565b600081359050613c4681613c20565b92915050565b60008060408385031215613c6357613c626137a3565b5b6000613c71858286016137f6565b9250506020613c8285828601613c37565b9150509250929050565b600060208284031215613ca257613ca16137a3565b5b6000613cb084828501613c37565b91505092915050565b600060208284031215613ccf57613cce6137a3565b5b6000613cdd8482850161382c565b91505092915050565b60008060408385031215613cfd57613cfc6137a3565b5b6000613d0b858286016137f6565b9250506020613d1c858286016137f6565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613d6d57607f821691505b602082108103613d8057613d7f613d26565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613dbc6020836136f2565b9150613dc782613d86565b602082019050919050565b60006020820190508181036000830152613deb81613daf565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613e5b8261380b565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203613e8d57613e8c613e21565b5b600182019050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b6000613ef46028836136f2565b9150613eff82613e98565b604082019050919050565b60006020820190508181036000830152613f2381613ee7565b9050919050565b6000613f358261380b565b9150613f408361380b565b9250828201905080821115613f5857613f57613e21565b5b92915050565b7f4d757374206b656570206665657320617420313125206f72206c657373000000600082015250565b6000613f94601d836136f2565b9150613f9f82613f5e565b602082019050919050565b60006020820190508181036000830152613fc381613f87565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b60006140266039836136f2565b915061403182613fca565b604082019050919050565b6000602082019050818103600083015261405581614019565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006140b86025836136f2565b91506140c38261405c565b604082019050919050565b600060208201905081810360008301526140e7816140ab565b9050919050565b60006140f98261380b565b91506141048361380b565b92508282026141128161380b565b9150828204841483151761412957614128613e21565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061416a8261380b565b91506141758361380b565b92508261418557614184614130565b5b828204905092915050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b60006141ec6035836136f2565b91506141f782614190565b604082019050919050565b6000602082019050818103600083015261421b816141df565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b600061427e6034836136f2565b915061428982614222565b604082019050919050565b600060208201905081810360008301526142ad81614271565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006143106026836136f2565b915061431b826142b4565b604082019050919050565b6000602082019050818103600083015261433f81614303565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006143a26024836136f2565b91506143ad82614346565b604082019050919050565b600060208201905081810360008301526143d181614395565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006144346022836136f2565b915061443f826143d8565b604082019050919050565b6000602082019050818103600083015261446381614427565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006144c66025836136f2565b91506144d18261446a565b604082019050919050565b600060208201905081810360008301526144f5816144b9565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006145586023836136f2565b9150614563826144fc565b604082019050919050565b600060208201905081810360008301526145878161454b565b9050919050565b7f596f7520617265206120626f7400000000000000000000000000000000000000600082015250565b60006145c4600d836136f2565b91506145cf8261458e565b602082019050919050565b600060208201905081810360008301526145f3816145b7565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b60006146306016836136f2565b915061463b826145fa565b602082019050919050565b6000602082019050818103600083015261465f81614623565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60208201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000604082015250565b60006146e86049836136f2565b91506146f382614666565b606082019050919050565b60006020820190508181036000830152614717816146db565b9050919050565b60006147298261380b565b91506147348361380b565b925082820390508181111561474c5761474b613e21565b5b92915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006147ae6026836136f2565b91506147b982614752565b604082019050919050565b600060208201905081810360008301526147dd816147a1565b9050919050565b600081905092915050565b50565b60006147ff6000836147e4565b915061480a826147ef565b600082019050919050565b6000614820826147f2565b9150819050919050565b600060608201905061483f6000830186613ac2565b61484c6020830185613ac2565b6148596040830184613ac2565b949350505050565b600081519050614870816137df565b92915050565b60006020828403121561488c5761488b6137a3565b5b600061489a84828501614861565b91505092915050565b6000819050919050565b60006148c86148c36148be846148a3565b613a48565b61380b565b9050919050565b6148d8816148ad565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b614913816137cd565b82525050565b6000614925838361490a565b60208301905092915050565b6000602082019050919050565b6000614949826148de565b61495381856148e9565b935061495e836148fa565b8060005b8381101561498f5781516149768882614919565b975061498183614931565b925050600181019050614962565b5085935050505092915050565b600060a0820190506149b16000830188613ac2565b6149be60208301876148cf565b81810360408301526149d0818661493e565b90506149df6060830185613b6c565b6149ec6080830184613ac2565b9695505050505050565b600060c082019050614a0b6000830189613b6c565b614a186020830188613ac2565b614a2560408301876148cf565b614a3260608301866148cf565b614a3f6080830185613b6c565b614a4c60a0830184613ac2565b979650505050505050565b600081519050614a6681613815565b92915050565b600080600060608486031215614a8557614a846137a3565b5b6000614a9386828701614a57565b9350506020614aa486828701614a57565b9250506040614ab586828701614a57565b915050925092509256fea26469706673582212208124b2584ccc702d20fa8aa835ae94a8da321279a2b00431dc14c594baf9b38a64736f6c63430008110033

Deployed Bytecode Sourcemap

32228:14339:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9639:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11806:169;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43475:203;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32304:51;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10759:108;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39391:157;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33334:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33294;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12457:492;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32407:53;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10601:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13358:215;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32362:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32662:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39556:126;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33149:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32742:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10930:127;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2874:103;;;;;;;;;;;;;:::i;:::-;;36533:121;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32550:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33042;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37623:403;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36369:112;;;;;;;;;;;;;:::i;:::-;;2223:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32587:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43343:123;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33184:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37515:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9858:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38644:304;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33116:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33374:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33260:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14076:413;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11270:175;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39152:231;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33701:57;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32702:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38454:182;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38034:412;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32960:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36920:497;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33008:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11508:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32620:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36715:135;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33079:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3132:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33222:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9639:100;9693:13;9726:5;9719:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9639:100;:::o;11806:169::-;11889:4;11906:39;11915:12;:10;:12::i;:::-;11929:7;11938:6;11906:8;:39::i;:::-;11963:4;11956:11;;11806:169;;;;:::o;43475:203::-;2454:12;:10;:12::i;:::-;2443:23;;:7;:5;:7::i;:::-;:23;;;2435:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;43559:9:::1;43554:117;43578:15;:22;43574:1;:26;43554:117;;;43655:4;43622:10;:30;43633:15;43649:1;43633:18;;;;;;;;:::i;:::-;;;;;;;;43622:30;;;;;;;;;;;;;;;;:37;;;;;;;;;;;;;;;;;;43602:3;;;;;:::i;:::-;;;;43554:117;;;;43475:203:::0;:::o;32304:51::-;;;:::o;10759:108::-;10820:7;10847:12;;10840:19;;10759:108;:::o;39391:157::-;2454:12;:10;:12::i;:::-;2443:23;;:7;:5;:7::i;:::-;:23;;;2435:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39498:9:::1;;;;;;;;;;;39470:38;;39487:9;39470:38;;;;;;;;;;;;39531:9;39519;;:21;;;;;;;;;;;;;;;;;;39391:157:::0;:::o;33334:33::-;;;;:::o;33294:::-;;;;:::o;12457:492::-;12597:4;12614:36;12624:6;12632:9;12643:6;12614:9;:36::i;:::-;12663:24;12690:11;:19;12702:6;12690:19;;;;;;;;;;;;;;;:33;12710:12;:10;:12::i;:::-;12690:33;;;;;;;;;;;;;;;;12663:60;;12762:6;12742:16;:26;;12734:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;12849:57;12858:6;12866:12;:10;:12::i;:::-;12899:6;12880:16;:25;12849:8;:57::i;:::-;12937:4;12930:11;;;12457:492;;;;;:::o;32407:53::-;32453:6;32407:53;:::o;10601:93::-;10659:5;10684:2;10677:9;;10601:93;:::o;13358:215::-;13446:4;13463:80;13472:12;:10;:12::i;:::-;13486:7;13532:10;13495:11;:25;13507:12;:10;:12::i;:::-;13495:25;;;;;;;;;;;;;;;:34;13521:7;13495:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;13463:8;:80::i;:::-;13561:4;13554:11;;13358:215;;;;:::o;32362:38::-;;;:::o;32662:33::-;;;;;;;;;;;;;:::o;39556:126::-;39622:4;39646:19;:28;39666:7;39646:28;;;;;;;;;;;;;;;;;;;;;;;;;39639:35;;39556:126;;;:::o;33149:28::-;;;;:::o;32742:31::-;;;;;;;;;;;;;:::o;10930:127::-;11004:7;11031:9;:18;11041:7;11031:18;;;;;;;;;;;;;;;;11024:25;;10930:127;;;:::o;2874:103::-;2454:12;:10;:12::i;:::-;2443:23;;:7;:5;:7::i;:::-;:23;;;2435:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2939:30:::1;2966:1;2939:18;:30::i;:::-;2874:103::o:0;36533:121::-;36585:4;2454:12;:10;:12::i;:::-;2443:23;;:7;:5;:7::i;:::-;:23;;;2435:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;36619:5:::1;36602:14;;:22;;;;;;;;;;;;;;;;;;36642:4;36635:11;;36533:121:::0;:::o;32550:30::-;;;;;;;;;;;;;:::o;33042:::-;;;;:::o;37623:403::-;2454:12;:10;:12::i;:::-;2443:23;;:7;:5;:7::i;:::-;:23;;;2435:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37791:13:::1;37773:15;:31;;;;37833:13;37815:15;:31;;;;37869:7;37857:9;:19;;;;37938:9;;37920:15;;37902;;:33;;;;:::i;:::-;:45;;;;:::i;:::-;37887:12;:60;;;;37982:2;37966:12;;:18;;37958:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;37623:403:::0;;;:::o;36369:112::-;2454:12;:10;:12::i;:::-;2443:23;;:7;:5;:7::i;:::-;:23;;;2435:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;36440:4:::1;36424:13;;:20;;;;;;;;;;;;;;;;;;36469:4;36455:11;;:18;;;;;;;;;;;;;;;;;;36369:112::o:0;2223:87::-;2269:7;2296:6;;;;;;;;;;;2289:13;;2223:87;:::o;32587:24::-;;;;;;;;;;;;;:::o;43343:123::-;2454:12;:10;:12::i;:::-;2443:23;;:7;:5;:7::i;:::-;:23;;;2435:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;43445:13:::1;43423:10;:19;43434:7;43423:19;;;;;;;;;;;;;;;;:35;;;;;;;;;;;;;;;;;;43343:123:::0;;:::o;33184:31::-;;;;:::o;37515:100::-;2454:12;:10;:12::i;:::-;2443:23;;:7;:5;:7::i;:::-;:23;;;2435:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37600:7:::1;37586:11;;:21;;;;;;;;;;;;;;;;;;37515:100:::0;:::o;9858:104::-;9914:13;9947:7;9940:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9858:104;:::o;38644:304::-;2454:12;:10;:12::i;:::-;2443:23;;:7;:5;:7::i;:::-;:23;;;2435:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38788:13:::1;38780:21;;:4;:21;;::::0;38758:128:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;38899:41;38928:4;38934:5;38899:28;:41::i;:::-;38644:304:::0;;:::o;33116:24::-;;;;:::o;33374:27::-;;;;:::o;33260:25::-;;;;:::o;14076:413::-;14169:4;14186:24;14213:11;:25;14225:12;:10;:12::i;:::-;14213:25;;;;;;;;;;;;;;;:34;14239:7;14213:34;;;;;;;;;;;;;;;;14186:61;;14286:15;14266:16;:35;;14258:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;14379:67;14388:12;:10;:12::i;:::-;14402:7;14430:15;14411:16;:34;14379:8;:67::i;:::-;14477:4;14470:11;;;14076:413;;;;:::o;11270:175::-;11356:4;11373:42;11383:12;:10;:12::i;:::-;11397:9;11408:6;11373:9;:42::i;:::-;11433:4;11426:11;;11270:175;;;;:::o;39152:231::-;2454:12;:10;:12::i;:::-;2443:23;;:7;:5;:7::i;:::-;:23;;;2435:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39312:15:::1;;;;;;;;;;;39269:59;;39292:18;39269:59;;;;;;;;;;;;39357:18;39339:15;;:36;;;;;;;;;;;;;;;;;;39152:231:::0;:::o;33701:57::-;;;;;;;;;;;;;;;;;;;;;;:::o;32702:33::-;;;;;;;;;;;;;:::o;38454:182::-;2454:12;:10;:12::i;:::-;2443:23;;:7;:5;:7::i;:::-;:23;;;2435:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38570:8:::1;38539:19;:28;38559:7;38539:28;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;38610:7;38594:34;;;38619:8;38594:34;;;;;;:::i;:::-;;;;;;;;38454:182:::0;;:::o;38034:412::-;2454:12;:10;:12::i;:::-;2443:23;;:7;:5;:7::i;:::-;:23;;;2435:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38204:13:::1;38185:16;:32;;;;38247:13;38228:16;:32;;;;38284:7;38271:10;:20;;;;38356:10;;38337:16;;38318;;:35;;;;:::i;:::-;:48;;;;:::i;:::-;38302:13;:64;;;;38402:2;38385:13;;:19;;38377:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;38034:412:::0;;;:::o;32960:39::-;;;;;;;;;;;;;:::o;36920:497::-;37028:4;2454:12;:10;:12::i;:::-;2443:23;;:7;:5;:7::i;:::-;:23;;;2435:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37107:6:::1;37102:1;37086:13;:11;:13::i;:::-;:17;;;;:::i;:::-;37085:28;;;;:::i;:::-;37072:9;:41;;37050:144;;;;;;;;;;;;:::i;:::-;;;;;;;;;37262:4;37257:1;37241:13;:11;:13::i;:::-;:17;;;;:::i;:::-;37240:26;;;;:::i;:::-;37227:9;:39;;37205:141;;;;;;;;;;;;:::i;:::-;;;;;;;;;37378:9;37357:18;:30;;;;37405:4;37398:11;;36920:497:::0;;;:::o;33008:27::-;;;;:::o;11508:151::-;11597:7;11624:11;:18;11636:5;11624:18;;;;;;;;;;;;;;;:27;11643:7;11624:27;;;;;;;;;;;;;;;;11617:34;;11508:151;;;;:::o;32620:33::-;;;;:::o;36715:135::-;36775:4;2454:12;:10;:12::i;:::-;2443:23;;:7;:5;:7::i;:::-;:23;;;2435:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;36815:5:::1;36792:20;;:28;;;;;;;;;;;;;;;;;;36838:4;36831:11;;36715:135:::0;:::o;33079:30::-;;;;:::o;3132:201::-;2454:12;:10;:12::i;:::-;2443:23;;:7;:5;:7::i;:::-;:23;;;2435:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3241:1:::1;3221:22;;:8;:22;;::::0;3213:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;3297:28;3316:8;3297:18;:28::i;:::-;3132:201:::0;:::o;33222:31::-;;;;:::o;896:98::-;949:7;976:10;969:17;;896:98;:::o;17770:380::-;17923:1;17906:19;;:5;:19;;;17898:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18004:1;17985:21;;:7;:21;;;17977:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18088:6;18058:11;:18;18070:5;18058:18;;;;;;;;;;;;;;;:27;18077:7;18058:27;;;;;;;;;;;;;;;:36;;;;18126:7;18110:32;;18119:5;18110:32;;;18135:6;18110:32;;;;;;:::i;:::-;;;;;;;;17770:380;;;:::o;39740:3595::-;39888:1;39872:18;;:4;:18;;;39864:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39965:1;39951:16;;:2;:16;;;39943:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;40027:10;:16;40038:4;40027:16;;;;;;;;;;;;;;;;;;;;;;;;;40026:17;:36;;;;;40048:10;:14;40059:2;40048:14;;;;;;;;;;;;;;;;;;;;;;;;;40047:15;40026:36;40018:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;40107:1;40097:6;:11;40093:93;;40125:28;40141:4;40147:2;40151:1;40125:15;:28::i;:::-;40168:7;;40093:93;40202:14;;;;;;;;;;;40198:1292;;;40263:7;:5;:7::i;:::-;40255:15;;:4;:15;;;;:49;;;;;40297:7;:5;:7::i;:::-;40291:13;;:2;:13;;;;40255:49;:86;;;;;40339:1;40325:16;;:2;:16;;;;40255:86;:128;;;;;40376:6;40362:21;;:2;:21;;;;40255:128;:158;;;;;40405:8;;;;;;;;;;;40404:9;40255:158;40233:1246;;;40453:13;;;;;;;;;;;40448:223;;40525:19;:25;40545:4;40525:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;40554:19;:23;40574:2;40554:23;;;;;;;;;;;;;;;;;;;;;;;;;40525:52;40491:160;;;;;;;;;;;;:::i;:::-;;;;;;;;;40448:223;40827:20;;;;;;;;;;;40823:641;;;40908:7;:5;:7::i;:::-;40902:13;;:2;:13;;;;:72;;;;;40958:15;40944:30;;:2;:30;;;;40902:72;:129;;;;;41017:13;41003:28;;:2;:28;;;;40902:129;40872:573;;;41195:12;41120:28;:39;41149:9;41120:39;;;;;;;;;;;;;;;;:87;41082:258;;;;;;;;;;;;:::i;:::-;;;;;;;;;41409:12;41367:28;:39;41396:9;41367:39;;;;;;;;;;;;;;;:54;;;;40872:573;40823:641;40233:1246;40198:1292;41502:28;41533:24;41551:4;41533:9;:24::i;:::-;41502:55;;41570:12;41609:18;;41585:20;:42;;41570:57;;41658:7;:35;;;;;41682:11;;;;;;;;;;;41658:35;:61;;;;;41711:8;;;;;;;;;;;41710:9;41658:61;:110;;;;;41737:25;:31;41763:4;41737:31;;;;;;;;;;;;;;;;;;;;;;;;;41736:32;41658:110;:153;;;;;41786:19;:25;41806:4;41786:25;;;;;;;;;;;;;;;;;;;;;;;;;41785:26;41658:153;:194;;;;;41829:19;:23;41849:2;41829:23;;;;;;;;;;;;;;;;;;;;;;;;;41828:24;41658:194;41640:326;;;41890:4;41879:8;;:15;;;;;;;;;;;;;;;;;;41911:10;:8;:10::i;:::-;41949:5;41938:8;;:16;;;;;;;;;;;;;;;;;;41640:326;41978:12;41994:8;;;;;;;;;;;41993:9;41978:24;;42104:19;:25;42124:4;42104:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;42133:19;:23;42153:2;42133:23;;;;;;;;;;;;;;;;;;;;;;;;;42104:52;42100:100;;;42183:5;42173:15;;42100:100;42212:12;42317:7;42313:969;;;42369:25;:29;42395:2;42369:29;;;;;;;;;;;;;;;;;;;;;;;;;:50;;;;;42418:1;42402:13;;:17;42369:50;42365:768;;;42447:34;42477:3;42447:25;42458:13;;42447:6;:10;;:25;;;;:::i;:::-;:29;;:34;;;;:::i;:::-;42440:41;;42550:13;;42530:16;;42523:4;:23;;;;:::i;:::-;42522:41;;;;:::i;:::-;42500:18;;:63;;;;;;;:::i;:::-;;;;;;;;42620:13;;42606:10;;42599:4;:17;;;;:::i;:::-;42598:35;;;;:::i;:::-;42582:12;;:51;;;;;;;:::i;:::-;;;;;;;;42702:13;;42682:16;;42675:4;:23;;;;:::i;:::-;42674:41;;;;:::i;:::-;42652:18;;:63;;;;;;;:::i;:::-;;;;;;;;42365:768;;;42777:25;:31;42803:4;42777:31;;;;;;;;;;;;;;;;;;;;;;;;;:51;;;;;42827:1;42812:12;;:16;42777:51;42773:360;;;42856:33;42885:3;42856:24;42867:12;;42856:6;:10;;:24;;;;:::i;:::-;:28;;:33;;;;:::i;:::-;42849:40;;42957:12;;42938:15;;42931:4;:22;;;;:::i;:::-;42930:39;;;;:::i;:::-;42908:18;;:61;;;;;;;:::i;:::-;;;;;;;;43025:12;;43012:9;;43005:4;:16;;;;:::i;:::-;43004:33;;;;:::i;:::-;42988:12;;:49;;;;;;;:::i;:::-;;;;;;;;43105:12;;43086:15;;43079:4;:22;;;;:::i;:::-;43078:39;;;;:::i;:::-;43056:18;;:61;;;;;;;:::i;:::-;;;;;;;;42773:360;42365:768;43160:1;43153:4;:8;43149:91;;;43182:42;43198:4;43212;43219;43182:15;:42::i;:::-;43149:91;43266:4;43256:14;;;;;:::i;:::-;;;42313:969;43294:33;43310:4;43316:2;43320:6;43294:15;:33::i;:::-;39853:3482;;;;39740:3595;;;;:::o;3493:191::-;3567:16;3586:6;;;;;;;;;;;3567:25;;3612:8;3603:6;;:17;;;;;;;;;;;;;;;;;;3667:8;3636:40;;3657:8;3636:40;;;;;;;;;;;;3556:128;3493:191;:::o;38956:188::-;39073:5;39039:25;:31;39065:4;39039:31;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;39130:5;39096:40;;39124:4;39096:40;;;;;;;;;;;;38956:188;;:::o;14979:743::-;15137:1;15119:20;;:6;:20;;;15111:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;15221:1;15200:23;;:9;:23;;;15192:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;15286:47;15307:6;15315:9;15326:6;15286:20;:47::i;:::-;15346:21;15370:9;:17;15380:6;15370:17;;;;;;;;;;;;;;;;15346:41;;15423:6;15406:13;:23;;15398:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;15544:6;15528:13;:22;15508:9;:17;15518:6;15508:17;;;;;;;;;;;;;;;:42;;;;15596:6;15572:9;:20;15582:9;15572:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;15637:9;15620:35;;15629:6;15620:35;;;15648:6;15620:35;;;;;;:::i;:::-;;;;;;;;15668:46;15688:6;15696:9;15707:6;15668:19;:46::i;:::-;15100:622;14979:743;;;:::o;44808:1756::-;44847:23;44873:24;44891:4;44873:9;:24::i;:::-;44847:50;;44908:25;45004:12;;44970:18;;44936;;:52;;;;:::i;:::-;:80;;;;:::i;:::-;44908:108;;45027:12;45075:1;45056:15;:20;:46;;;;45101:1;45080:17;:22;45056:46;45052:85;;;45119:7;;;;;45052:85;45192:2;45171:18;;:23;;;;:::i;:::-;45153:15;:41;45149:115;;;45250:2;45229:18;;:23;;;;:::i;:::-;45211:41;;45149:115;45325:23;45438:1;45405:17;45370:18;;45352:15;:36;;;;:::i;:::-;45351:71;;;;:::i;:::-;:88;;;;:::i;:::-;45325:114;;45450:26;45479:36;45499:15;45479;:19;;:36;;;;:::i;:::-;45450:65;;45528:25;45556:21;45528:49;;45590:36;45607:18;45590:16;:36::i;:::-;45639:18;45660:44;45686:17;45660:21;:25;;:44;;;;:::i;:::-;45639:65;;45717:23;45743:81;45796:17;45743:34;45758:18;;45743:10;:14;;:34;;;;:::i;:::-;:38;;:81;;;;:::i;:::-;45717:107;;45835:17;45855:51;45888:17;45855:28;45870:12;;45855:10;:14;;:28;;;;:::i;:::-;:32;;:51;;;;:::i;:::-;45835:71;;45919:23;45976:9;45958:15;45945:10;:28;;;;:::i;:::-;:40;;;;:::i;:::-;45919:66;;46019:1;45998:18;:22;;;;46052:1;46031:18;:22;;;;46079:1;46064:12;:16;;;;46115:9;;;;;;;;;;;46107:23;;46138:9;46107:45;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46093:59;;;;;46187:1;46169:15;:19;:42;;;;;46210:1;46192:15;:19;46169:42;46165:278;;;46228:46;46241:15;46258;46228:12;:46::i;:::-;46294:137;46327:18;46364:15;46398:18;;46294:137;;;;;;;;:::i;:::-;;;;;;;;46165:278;46477:15;;;;;;;;;;;46469:29;;46520:21;46469:87;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46455:101;;;;;44836:1728;;;;;;;;;;44808:1756;:::o;23223:98::-;23281:7;23312:1;23308;:5;;;;:::i;:::-;23301:12;;23223:98;;;;:::o;23622:::-;23680:7;23711:1;23707;:5;;;;:::i;:::-;23700:12;;23622:98;;;;:::o;18750:125::-;;;;:::o;19479:124::-;;;;:::o;22866:98::-;22924:7;22955:1;22951;:5;;;;:::i;:::-;22944:12;;22866:98;;;;:::o;43686:589::-;43812:21;43850:1;43836:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43812:40;;43881:4;43863;43868:1;43863:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;;;43907:15;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;43897:4;43902:1;43897:7;;;;;;;;:::i;:::-;;;;;;;:32;;;;;;;;;;;43942:62;43959:4;43974:15;43992:11;43942:8;:62::i;:::-;44043:15;:66;;;44124:11;44150:1;44194:4;44221;44241:15;44043:224;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43741:534;43686:589;:::o;44283:517::-;44431:62;44448:4;44463:15;44481:11;44431:8;:62::i;:::-;44536:15;:31;;;44575:9;44608:4;44628:11;44654:1;44697;32453:6;44766:15;44536:256;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;44283:517;;:::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;1349:75::-;1382:6;1415:2;1409:9;1399:19;;1349:75;:::o;1430:117::-;1539:1;1536;1529:12;1553:117;1662:1;1659;1652: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:117::-;3555:1;3552;3545:12;3569:180;3617:77;3614:1;3607:88;3714:4;3711:1;3704:15;3738:4;3735:1;3728:15;3755:281;3838:27;3860:4;3838:27;:::i;:::-;3830:6;3826:40;3968:6;3956:10;3953:22;3932:18;3920:10;3917:34;3914:62;3911:88;;;3979:18;;:::i;:::-;3911:88;4019:10;4015:2;4008:22;3798:238;3755:281;;:::o;4042:129::-;4076:6;4103:20;;:::i;:::-;4093:30;;4132:33;4160:4;4152:6;4132:33;:::i;:::-;4042:129;;;:::o;4177:311::-;4254:4;4344:18;4336:6;4333:30;4330:56;;;4366:18;;:::i;:::-;4330:56;4416:4;4408:6;4404:17;4396:25;;4476:4;4470;4466:15;4458:23;;4177:311;;;:::o;4494:117::-;4603:1;4600;4593:12;4634:710;4730:5;4755:81;4771:64;4828:6;4771:64;:::i;:::-;4755:81;:::i;:::-;4746:90;;4856:5;4885:6;4878:5;4871:21;4919:4;4912:5;4908:16;4901:23;;4972:4;4964:6;4960:17;4952:6;4948:30;5001:3;4993:6;4990:15;4987:122;;;5020:79;;:::i;:::-;4987:122;5135:6;5118:220;5152:6;5147:3;5144:15;5118:220;;;5227:3;5256:37;5289:3;5277:10;5256:37;:::i;:::-;5251:3;5244:50;5323:4;5318:3;5314:14;5307:21;;5194:144;5178:4;5173:3;5169:14;5162:21;;5118:220;;;5122:21;4736:608;;4634:710;;;;;:::o;5367:370::-;5438:5;5487:3;5480:4;5472:6;5468:17;5464:27;5454:122;;5495:79;;:::i;:::-;5454:122;5612:6;5599:20;5637:94;5727:3;5719:6;5712:4;5704:6;5700:17;5637:94;:::i;:::-;5628:103;;5444:293;5367:370;;;;:::o;5743:539::-;5827:6;5876:2;5864:9;5855:7;5851:23;5847:32;5844:119;;;5882:79;;:::i;:::-;5844:119;6030:1;6019:9;6015:17;6002:31;6060:18;6052:6;6049:30;6046:117;;;6082:79;;:::i;:::-;6046:117;6187:78;6257:7;6248:6;6237:9;6233:22;6187:78;:::i;:::-;6177:88;;5973:302;5743:539;;;;:::o;6288:60::-;6316:3;6337:5;6330:12;;6288:60;;;:::o;6354:142::-;6404:9;6437:53;6455:34;6464:24;6482:5;6464:24;:::i;:::-;6455:34;:::i;:::-;6437:53;:::i;:::-;6424:66;;6354:142;;;:::o;6502:126::-;6552:9;6585:37;6616:5;6585:37;:::i;:::-;6572:50;;6502:126;;;:::o;6634:153::-;6711:9;6744:37;6775:5;6744:37;:::i;:::-;6731:50;;6634:153;;;:::o;6793:185::-;6907:64;6965:5;6907:64;:::i;:::-;6902:3;6895:77;6793:185;;:::o;6984:276::-;7104:4;7142:2;7131:9;7127:18;7119:26;;7155:98;7250:1;7239:9;7235:17;7226:6;7155:98;:::i;:::-;6984:276;;;;:::o;7266:118::-;7353:24;7371:5;7353:24;:::i;:::-;7348:3;7341:37;7266:118;;:::o;7390:222::-;7483:4;7521:2;7510:9;7506:18;7498:26;;7534:71;7602:1;7591:9;7587:17;7578:6;7534:71;:::i;:::-;7390:222;;;;:::o;7618:329::-;7677:6;7726:2;7714:9;7705:7;7701:23;7697:32;7694:119;;;7732:79;;:::i;:::-;7694:119;7852:1;7877:53;7922:7;7913:6;7902:9;7898:22;7877:53;:::i;:::-;7867:63;;7823:117;7618:329;;;;:::o;7953:619::-;8030:6;8038;8046;8095:2;8083:9;8074:7;8070:23;8066:32;8063:119;;;8101:79;;:::i;:::-;8063:119;8221:1;8246:53;8291:7;8282:6;8271:9;8267:22;8246:53;:::i;:::-;8236:63;;8192:117;8348:2;8374:53;8419:7;8410:6;8399:9;8395:22;8374:53;:::i;:::-;8364:63;;8319:118;8476:2;8502:53;8547:7;8538:6;8527:9;8523:22;8502:53;:::i;:::-;8492:63;;8447:118;7953:619;;;;;:::o;8578:118::-;8665:24;8683:5;8665:24;:::i;:::-;8660:3;8653:37;8578:118;;:::o;8702:222::-;8795:4;8833:2;8822:9;8818:18;8810:26;;8846:71;8914:1;8903:9;8899:17;8890:6;8846:71;:::i;:::-;8702:222;;;;:::o;8930:86::-;8965:7;9005:4;8998:5;8994:16;8983:27;;8930:86;;;:::o;9022:112::-;9105:22;9121:5;9105:22;:::i;:::-;9100:3;9093:35;9022:112;;:::o;9140:214::-;9229:4;9267:2;9256:9;9252:18;9244:26;;9280:67;9344:1;9333:9;9329:17;9320:6;9280:67;:::i;:::-;9140:214;;;;:::o;9360:619::-;9437:6;9445;9453;9502:2;9490:9;9481:7;9477:23;9473:32;9470:119;;;9508:79;;:::i;:::-;9470:119;9628:1;9653:53;9698:7;9689:6;9678:9;9674:22;9653:53;:::i;:::-;9643:63;;9599:117;9755:2;9781:53;9826:7;9817:6;9806:9;9802:22;9781:53;:::i;:::-;9771:63;;9726:118;9883:2;9909:53;9954:7;9945:6;9934:9;9930:22;9909:53;:::i;:::-;9899:63;;9854:118;9360:619;;;;;:::o;9985:116::-;10055:21;10070:5;10055:21;:::i;:::-;10048:5;10045:32;10035:60;;10091:1;10088;10081:12;10035:60;9985:116;:::o;10107:133::-;10150:5;10188:6;10175:20;10166:29;;10204:30;10228:5;10204:30;:::i;:::-;10107:133;;;;:::o;10246:468::-;10311:6;10319;10368:2;10356:9;10347:7;10343:23;10339:32;10336:119;;;10374:79;;:::i;:::-;10336:119;10494:1;10519:53;10564:7;10555:6;10544:9;10540:22;10519:53;:::i;:::-;10509:63;;10465:117;10621:2;10647:50;10689:7;10680:6;10669:9;10665:22;10647:50;:::i;:::-;10637:60;;10592:115;10246:468;;;;;:::o;10720:323::-;10776:6;10825:2;10813:9;10804:7;10800:23;10796:32;10793:119;;;10831:79;;:::i;:::-;10793:119;10951:1;10976:50;11018:7;11009:6;10998:9;10994:22;10976:50;:::i;:::-;10966:60;;10922:114;10720:323;;;;:::o;11049:329::-;11108:6;11157:2;11145:9;11136:7;11132:23;11128:32;11125:119;;;11163:79;;:::i;:::-;11125:119;11283:1;11308:53;11353:7;11344:6;11333:9;11329:22;11308:53;:::i;:::-;11298:63;;11254:117;11049:329;;;;:::o;11384:474::-;11452:6;11460;11509:2;11497:9;11488:7;11484:23;11480:32;11477:119;;;11515:79;;:::i;:::-;11477:119;11635:1;11660:53;11705:7;11696:6;11685:9;11681:22;11660:53;:::i;:::-;11650:63;;11606:117;11762:2;11788:53;11833:7;11824:6;11813:9;11809:22;11788:53;:::i;:::-;11778:63;;11733:118;11384:474;;;;;:::o;11864:180::-;11912:77;11909:1;11902:88;12009:4;12006:1;11999:15;12033:4;12030:1;12023:15;12050:320;12094:6;12131:1;12125:4;12121:12;12111:22;;12178:1;12172:4;12168:12;12199:18;12189:81;;12255:4;12247:6;12243:17;12233:27;;12189:81;12317:2;12309:6;12306:14;12286:18;12283:38;12280:84;;12336:18;;:::i;:::-;12280:84;12101:269;12050:320;;;:::o;12376:182::-;12516:34;12512:1;12504:6;12500:14;12493:58;12376:182;:::o;12564:366::-;12706:3;12727:67;12791:2;12786:3;12727:67;:::i;:::-;12720:74;;12803:93;12892:3;12803:93;:::i;:::-;12921:2;12916:3;12912:12;12905:19;;12564:366;;;:::o;12936:419::-;13102:4;13140:2;13129:9;13125:18;13117:26;;13189:9;13183:4;13179:20;13175:1;13164:9;13160:17;13153:47;13217:131;13343:4;13217:131;:::i;:::-;13209:139;;12936:419;;;:::o;13361:180::-;13409:77;13406:1;13399:88;13506:4;13503:1;13496:15;13530:4;13527:1;13520:15;13547:180;13595:77;13592:1;13585:88;13692:4;13689:1;13682:15;13716:4;13713:1;13706:15;13733:233;13772:3;13795:24;13813:5;13795:24;:::i;:::-;13786:33;;13841:66;13834:5;13831:77;13828:103;;13911:18;;:::i;:::-;13828:103;13958:1;13951:5;13947:13;13940:20;;13733:233;;;:::o;13972:227::-;14112:34;14108:1;14100:6;14096:14;14089:58;14181:10;14176:2;14168:6;14164:15;14157:35;13972:227;:::o;14205:366::-;14347:3;14368:67;14432:2;14427:3;14368:67;:::i;:::-;14361:74;;14444:93;14533:3;14444:93;:::i;:::-;14562:2;14557:3;14553:12;14546:19;;14205:366;;;:::o;14577:419::-;14743:4;14781:2;14770:9;14766:18;14758:26;;14830:9;14824:4;14820:20;14816:1;14805:9;14801:17;14794:47;14858:131;14984:4;14858:131;:::i;:::-;14850:139;;14577:419;;;:::o;15002:191::-;15042:3;15061:20;15079:1;15061:20;:::i;:::-;15056:25;;15095:20;15113:1;15095:20;:::i;:::-;15090:25;;15138:1;15135;15131:9;15124:16;;15159:3;15156:1;15153:10;15150:36;;;15166:18;;:::i;:::-;15150:36;15002:191;;;;:::o;15199:179::-;15339:31;15335:1;15327:6;15323:14;15316:55;15199:179;:::o;15384:366::-;15526:3;15547:67;15611:2;15606:3;15547:67;:::i;:::-;15540:74;;15623:93;15712:3;15623:93;:::i;:::-;15741:2;15736:3;15732:12;15725:19;;15384:366;;;:::o;15756:419::-;15922:4;15960:2;15949:9;15945:18;15937:26;;16009:9;16003:4;15999:20;15995:1;15984:9;15980:17;15973:47;16037:131;16163:4;16037:131;:::i;:::-;16029:139;;15756:419;;;:::o;16181:244::-;16321:34;16317:1;16309:6;16305:14;16298:58;16390:27;16385:2;16377:6;16373:15;16366:52;16181:244;:::o;16431:366::-;16573:3;16594:67;16658:2;16653:3;16594:67;:::i;:::-;16587:74;;16670:93;16759:3;16670:93;:::i;:::-;16788:2;16783:3;16779:12;16772:19;;16431:366;;;:::o;16803:419::-;16969:4;17007:2;16996:9;16992:18;16984:26;;17056:9;17050:4;17046:20;17042:1;17031:9;17027:17;17020:47;17084:131;17210:4;17084:131;:::i;:::-;17076:139;;16803:419;;;:::o;17228:224::-;17368:34;17364:1;17356:6;17352:14;17345:58;17437:7;17432:2;17424:6;17420:15;17413:32;17228:224;:::o;17458:366::-;17600:3;17621:67;17685:2;17680:3;17621:67;:::i;:::-;17614:74;;17697:93;17786:3;17697:93;:::i;:::-;17815:2;17810:3;17806:12;17799:19;;17458:366;;;:::o;17830:419::-;17996:4;18034:2;18023:9;18019:18;18011:26;;18083:9;18077:4;18073:20;18069:1;18058:9;18054:17;18047:47;18111:131;18237:4;18111:131;:::i;:::-;18103:139;;17830:419;;;:::o;18255:410::-;18295:7;18318:20;18336:1;18318:20;:::i;:::-;18313:25;;18352:20;18370:1;18352:20;:::i;:::-;18347:25;;18407:1;18404;18400:9;18429:30;18447:11;18429:30;:::i;:::-;18418:41;;18608:1;18599:7;18595:15;18592:1;18589:22;18569:1;18562:9;18542:83;18519:139;;18638:18;;:::i;:::-;18519:139;18303:362;18255:410;;;;:::o;18671:180::-;18719:77;18716:1;18709:88;18816:4;18813:1;18806:15;18840:4;18837:1;18830:15;18857:185;18897:1;18914:20;18932:1;18914:20;:::i;:::-;18909:25;;18948:20;18966:1;18948:20;:::i;:::-;18943:25;;18987:1;18977:35;;18992:18;;:::i;:::-;18977:35;19034:1;19031;19027:9;19022:14;;18857:185;;;;:::o;19048:240::-;19188:34;19184:1;19176:6;19172:14;19165:58;19257:23;19252:2;19244:6;19240:15;19233:48;19048:240;:::o;19294:366::-;19436:3;19457:67;19521:2;19516:3;19457:67;:::i;:::-;19450:74;;19533:93;19622:3;19533:93;:::i;:::-;19651:2;19646:3;19642:12;19635:19;;19294:366;;;:::o;19666:419::-;19832:4;19870:2;19859:9;19855:18;19847:26;;19919:9;19913:4;19909:20;19905:1;19894:9;19890:17;19883:47;19947:131;20073:4;19947:131;:::i;:::-;19939:139;;19666:419;;;:::o;20091:239::-;20231:34;20227:1;20219:6;20215:14;20208:58;20300:22;20295:2;20287:6;20283:15;20276:47;20091:239;:::o;20336:366::-;20478:3;20499:67;20563:2;20558:3;20499:67;:::i;:::-;20492:74;;20575:93;20664:3;20575:93;:::i;:::-;20693:2;20688:3;20684:12;20677:19;;20336:366;;;:::o;20708:419::-;20874:4;20912:2;20901:9;20897:18;20889:26;;20961:9;20955:4;20951:20;20947:1;20936:9;20932:17;20925:47;20989:131;21115:4;20989:131;:::i;:::-;20981:139;;20708:419;;;:::o;21133:225::-;21273:34;21269:1;21261:6;21257:14;21250:58;21342:8;21337:2;21329:6;21325:15;21318:33;21133:225;:::o;21364:366::-;21506:3;21527:67;21591:2;21586:3;21527:67;:::i;:::-;21520:74;;21603:93;21692:3;21603:93;:::i;:::-;21721:2;21716:3;21712:12;21705:19;;21364:366;;;:::o;21736:419::-;21902:4;21940:2;21929:9;21925:18;21917:26;;21989:9;21983:4;21979:20;21975:1;21964:9;21960:17;21953:47;22017:131;22143:4;22017:131;:::i;:::-;22009:139;;21736:419;;;:::o;22161:223::-;22301:34;22297:1;22289:6;22285:14;22278:58;22370:6;22365:2;22357:6;22353:15;22346:31;22161:223;:::o;22390:366::-;22532:3;22553:67;22617:2;22612:3;22553:67;:::i;:::-;22546:74;;22629:93;22718:3;22629:93;:::i;:::-;22747:2;22742:3;22738:12;22731:19;;22390:366;;;:::o;22762:419::-;22928:4;22966:2;22955:9;22951:18;22943:26;;23015:9;23009:4;23005:20;23001:1;22990:9;22986:17;22979:47;23043:131;23169:4;23043:131;:::i;:::-;23035:139;;22762:419;;;:::o;23187:221::-;23327:34;23323:1;23315:6;23311:14;23304:58;23396:4;23391:2;23383:6;23379:15;23372:29;23187:221;:::o;23414:366::-;23556:3;23577:67;23641:2;23636:3;23577:67;:::i;:::-;23570:74;;23653:93;23742:3;23653:93;:::i;:::-;23771:2;23766:3;23762:12;23755:19;;23414:366;;;:::o;23786:419::-;23952:4;23990:2;23979:9;23975:18;23967:26;;24039:9;24033:4;24029:20;24025:1;24014:9;24010:17;24003:47;24067:131;24193:4;24067:131;:::i;:::-;24059:139;;23786:419;;;:::o;24211:224::-;24351:34;24347:1;24339:6;24335:14;24328:58;24420:7;24415:2;24407:6;24403:15;24396:32;24211:224;:::o;24441:366::-;24583:3;24604:67;24668:2;24663:3;24604:67;:::i;:::-;24597:74;;24680:93;24769:3;24680:93;:::i;:::-;24798:2;24793:3;24789:12;24782:19;;24441:366;;;:::o;24813:419::-;24979:4;25017:2;25006:9;25002:18;24994:26;;25066:9;25060:4;25056:20;25052:1;25041:9;25037:17;25030:47;25094:131;25220:4;25094:131;:::i;:::-;25086:139;;24813:419;;;:::o;25238:222::-;25378:34;25374:1;25366:6;25362:14;25355:58;25447:5;25442:2;25434:6;25430:15;25423:30;25238:222;:::o;25466:366::-;25608:3;25629:67;25693:2;25688:3;25629:67;:::i;:::-;25622:74;;25705:93;25794:3;25705:93;:::i;:::-;25823:2;25818:3;25814:12;25807:19;;25466:366;;;:::o;25838:419::-;26004:4;26042:2;26031:9;26027:18;26019:26;;26091:9;26085:4;26081:20;26077:1;26066:9;26062:17;26055:47;26119:131;26245:4;26119:131;:::i;:::-;26111:139;;25838:419;;;:::o;26263:163::-;26403:15;26399:1;26391:6;26387:14;26380:39;26263:163;:::o;26432:366::-;26574:3;26595:67;26659:2;26654:3;26595:67;:::i;:::-;26588:74;;26671:93;26760:3;26671:93;:::i;:::-;26789:2;26784:3;26780:12;26773:19;;26432:366;;;:::o;26804:419::-;26970:4;27008:2;26997:9;26993:18;26985:26;;27057:9;27051:4;27047:20;27043:1;27032:9;27028:17;27021:47;27085:131;27211:4;27085:131;:::i;:::-;27077:139;;26804:419;;;:::o;27229:172::-;27369:24;27365:1;27357:6;27353:14;27346:48;27229:172;:::o;27407:366::-;27549:3;27570:67;27634:2;27629:3;27570:67;:::i;:::-;27563:74;;27646:93;27735:3;27646:93;:::i;:::-;27764:2;27759:3;27755:12;27748:19;;27407:366;;;:::o;27779:419::-;27945:4;27983:2;27972:9;27968:18;27960:26;;28032:9;28026:4;28022:20;28018:1;28007:9;28003:17;27996:47;28060:131;28186:4;28060:131;:::i;:::-;28052:139;;27779:419;;;:::o;28204:297::-;28344:34;28340:1;28332:6;28328:14;28321:58;28413:34;28408:2;28400:6;28396:15;28389:59;28482:11;28477:2;28469:6;28465:15;28458:36;28204:297;:::o;28507:366::-;28649:3;28670:67;28734:2;28729:3;28670:67;:::i;:::-;28663:74;;28746:93;28835:3;28746:93;:::i;:::-;28864:2;28859:3;28855:12;28848:19;;28507:366;;;:::o;28879:419::-;29045:4;29083:2;29072:9;29068:18;29060:26;;29132:9;29126:4;29122:20;29118:1;29107:9;29103:17;29096:47;29160:131;29286:4;29160:131;:::i;:::-;29152:139;;28879:419;;;:::o;29304:194::-;29344:4;29364:20;29382:1;29364:20;:::i;:::-;29359:25;;29398:20;29416:1;29398:20;:::i;:::-;29393:25;;29442:1;29439;29435:9;29427:17;;29466:1;29460:4;29457:11;29454:37;;;29471:18;;:::i;:::-;29454:37;29304:194;;;;:::o;29504:225::-;29644:34;29640:1;29632:6;29628:14;29621:58;29713:8;29708:2;29700:6;29696:15;29689:33;29504:225;:::o;29735:366::-;29877:3;29898:67;29962:2;29957:3;29898:67;:::i;:::-;29891:74;;29974:93;30063:3;29974:93;:::i;:::-;30092:2;30087:3;30083:12;30076:19;;29735:366;;;:::o;30107:419::-;30273:4;30311:2;30300:9;30296:18;30288:26;;30360:9;30354:4;30350:20;30346:1;30335:9;30331:17;30324:47;30388:131;30514:4;30388:131;:::i;:::-;30380:139;;30107:419;;;:::o;30532:147::-;30633:11;30670:3;30655:18;;30532:147;;;;:::o;30685:114::-;;:::o;30805:398::-;30964:3;30985:83;31066:1;31061:3;30985:83;:::i;:::-;30978:90;;31077:93;31166:3;31077:93;:::i;:::-;31195:1;31190:3;31186:11;31179:18;;30805:398;;;:::o;31209:379::-;31393:3;31415:147;31558:3;31415:147;:::i;:::-;31408:154;;31579:3;31572:10;;31209:379;;;:::o;31594:442::-;31743:4;31781:2;31770:9;31766:18;31758:26;;31794:71;31862:1;31851:9;31847:17;31838:6;31794:71;:::i;:::-;31875:72;31943:2;31932:9;31928:18;31919:6;31875:72;:::i;:::-;31957;32025:2;32014:9;32010:18;32001:6;31957:72;:::i;:::-;31594:442;;;;;;:::o;32042:143::-;32099:5;32130:6;32124:13;32115:22;;32146:33;32173:5;32146:33;:::i;:::-;32042:143;;;;:::o;32191:351::-;32261:6;32310:2;32298:9;32289:7;32285:23;32281:32;32278:119;;;32316:79;;:::i;:::-;32278:119;32436:1;32461:64;32517:7;32508:6;32497:9;32493:22;32461:64;:::i;:::-;32451:74;;32407:128;32191:351;;;;:::o;32548:85::-;32593:7;32622:5;32611:16;;32548:85;;;:::o;32639:158::-;32697:9;32730:61;32748:42;32757:32;32783:5;32757:32;:::i;:::-;32748:42;:::i;:::-;32730:61;:::i;:::-;32717:74;;32639:158;;;:::o;32803:147::-;32898:45;32937:5;32898:45;:::i;:::-;32893:3;32886:58;32803:147;;:::o;32956:114::-;33023:6;33057:5;33051:12;33041:22;;32956:114;;;:::o;33076:184::-;33175:11;33209:6;33204:3;33197:19;33249:4;33244:3;33240:14;33225:29;;33076:184;;;;:::o;33266:132::-;33333:4;33356:3;33348:11;;33386:4;33381:3;33377:14;33369:22;;33266:132;;;:::o;33404:108::-;33481:24;33499:5;33481:24;:::i;:::-;33476:3;33469:37;33404:108;;:::o;33518:179::-;33587:10;33608:46;33650:3;33642:6;33608:46;:::i;:::-;33686:4;33681:3;33677:14;33663:28;;33518:179;;;;:::o;33703:113::-;33773:4;33805;33800:3;33796:14;33788:22;;33703:113;;;:::o;33852:732::-;33971:3;34000:54;34048:5;34000:54;:::i;:::-;34070:86;34149:6;34144:3;34070:86;:::i;:::-;34063:93;;34180:56;34230:5;34180:56;:::i;:::-;34259:7;34290:1;34275:284;34300:6;34297:1;34294:13;34275:284;;;34376:6;34370:13;34403:63;34462:3;34447:13;34403:63;:::i;:::-;34396:70;;34489:60;34542:6;34489:60;:::i;:::-;34479:70;;34335:224;34322:1;34319;34315:9;34310:14;;34275:284;;;34279:14;34575:3;34568:10;;33976:608;;;33852:732;;;;:::o;34590:831::-;34853:4;34891:3;34880:9;34876:19;34868:27;;34905:71;34973:1;34962:9;34958:17;34949:6;34905:71;:::i;:::-;34986:80;35062:2;35051:9;35047:18;35038:6;34986:80;:::i;:::-;35113:9;35107:4;35103:20;35098:2;35087:9;35083:18;35076:48;35141:108;35244:4;35235:6;35141:108;:::i;:::-;35133:116;;35259:72;35327:2;35316:9;35312:18;35303:6;35259:72;:::i;:::-;35341:73;35409:3;35398:9;35394:19;35385:6;35341:73;:::i;:::-;34590:831;;;;;;;;:::o;35427:807::-;35676:4;35714:3;35703:9;35699:19;35691:27;;35728:71;35796:1;35785:9;35781:17;35772:6;35728:71;:::i;:::-;35809:72;35877:2;35866:9;35862:18;35853:6;35809:72;:::i;:::-;35891:80;35967:2;35956:9;35952:18;35943:6;35891:80;:::i;:::-;35981;36057:2;36046:9;36042:18;36033:6;35981:80;:::i;:::-;36071:73;36139:3;36128:9;36124:19;36115:6;36071:73;:::i;:::-;36154;36222:3;36211:9;36207:19;36198:6;36154:73;:::i;:::-;35427:807;;;;;;;;;:::o;36240:143::-;36297:5;36328:6;36322:13;36313:22;;36344:33;36371:5;36344:33;:::i;:::-;36240:143;;;;:::o;36389:663::-;36477:6;36485;36493;36542:2;36530:9;36521:7;36517:23;36513:32;36510:119;;;36548:79;;:::i;:::-;36510:119;36668:1;36693:64;36749:7;36740:6;36729:9;36725:22;36693:64;:::i;:::-;36683:74;;36639:128;36806:2;36832:64;36888:7;36879:6;36868:9;36864:22;36832:64;:::i;:::-;36822:74;;36777:129;36945:2;36971:64;37027:7;37018:6;37007:9;37003:22;36971:64;:::i;:::-;36961:74;;36916:129;36389:663;;;;;:::o

Swarm Source

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