ETH Price: $2,455.55 (-2.74%)

Token

Pink Clifford (Cliff)
 

Overview

Max Total Supply

100,000,000 Cliff

Holders

10

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
1,900,000.000000000057015476 Cliff

Value
$0.00
0xeabb2157a5fc3cd650a0e3d0e8c9c6894e1b756b
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:
PinkClifford

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, Unlicense license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-12-22
*/

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

/*
 Twitter: https://twitter.com/pinkclifforderc
 Telegram: https://t.me/Pink_clifford_erc20
 Medium: https://medium.com/@pinkclifforderc

*/
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

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

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

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

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

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

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

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

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

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

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

/* pragma solidity ^0.8.0; */

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

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

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

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

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

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

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

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

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

/* pragma solidity ^0.8.0; */

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

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

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

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

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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `recipient` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address recipient, uint256 amount) public virtual override returns (bool) {
        _transfer(_msgSender(), recipient, amount);
        return true;
    }

    /**
     * @dev See {IERC20-allowance}.
     */
    function allowance(address owner, address spender) public view virtual override returns (uint256) {
        return _allowances[owner][spender];
    }

    /**
     * @dev See {IERC20-approve}.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        _approve(_msgSender(), spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * Requirements:
     *
     * - `sender` and `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     * - the caller must have allowance for ``sender``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) public virtual override returns (bool) {
        _transfer(sender, recipient, amount);

        uint256 currentAllowance = _allowances[sender][_msgSender()];
        require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance");
        unchecked {
            _approve(sender, _msgSender(), currentAllowance - amount);
        }

        return true;
    }

    /**
     * @dev Atomically increases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender] + addedValue);
        return true;
    }

    /**
     * @dev Atomically decreases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `spender` must have allowance for the caller of at least
     * `subtractedValue`.
     */
    function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
        uint256 currentAllowance = _allowances[_msgSender()][spender];
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(_msgSender(), spender, currentAllowance - subtractedValue);
        }

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `sender` to `recipient`.
     *
     * This internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * Requirements:
     *
     * - `sender` cannot be the zero address.
     * - `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     */
    function _transfer(
        address sender,
        address recipient,
        uint256 amount
    ) internal virtual {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(sender, recipient, amount);

        uint256 senderBalance = _balances[sender];
        require(senderBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[sender] = senderBalance - amount;
        }
        _balances[recipient] += amount;

        emit Transfer(sender, recipient, amount);

        _afterTokenTransfer(sender, recipient, amount);
    }

    /** @dev Creates `amount` tokens and assigns them to `account`, increasing
     * the total supply.
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");

        _beforeTokenTransfer(address(0), account, amount);

        _totalSupply += amount;
        _balances[account] += amount;
        emit Transfer(address(0), account, amount);

        _afterTokenTransfer(address(0), account, amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, reducing the
     * total supply.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     * - `account` must have at least `amount` tokens.
     */
    function _burn(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: burn from the zero address");

        _beforeTokenTransfer(account, address(0), amount);

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
        }
        _totalSupply -= amount;

        emit Transfer(account, address(0), amount);

        _afterTokenTransfer(account, address(0), amount);
    }

    /**
     * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
     *
     * This internal function is equivalent to `approve`, and can be used to
     * e.g. set automatic allowances for certain subsystems, etc.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `owner` cannot be the zero address.
     * - `spender` cannot be the zero address.
     */
    function _approve(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");

        _allowances[owner][spender] = amount;
        emit Approval(owner, spender, amount);
    }

    /**
     * @dev Hook that is called before any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * will be transferred to `to`.
     * - when `from` is zero, `amount` tokens will be minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * has been transferred to `to`.
     * - when `from` is zero, `amount` tokens have been minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens have been burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    function feeTo() external view returns (address);

    function feeToSetter() external view returns (address);

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

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

    function allPairsLength() external view returns (uint256);

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

    function setFeeTo(address) external;

    function setFeeToSetter(address) external;
}

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

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

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

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

    function decimals() external pure returns (uint8);

    function totalSupply() external view returns (uint256);

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

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

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

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

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

    function DOMAIN_SEPARATOR() external view returns (bytes32);

    function PERMIT_TYPEHASH() external pure returns (bytes32);

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

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

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

    function MINIMUM_LIQUIDITY() external pure returns (uint256);

    function factory() external view returns (address);

    function token0() external view returns (address);

    function token1() external view returns (address);

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

    function price0CumulativeLast() external view returns (uint256);

    function price1CumulativeLast() external view returns (uint256);

    function kLast() external view returns (uint256);

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

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

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

    function skim(address to) external;

    function sync() external;

    function initialize(address, address) external;
}

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

    function WETH() external pure returns (address);

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

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

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

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

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

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

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

    bool private swapping;

    address public devWallet;

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

    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 = false;

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

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

    uint256 public tokensForLiquidity;
    uint256 public tokensForDev;

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

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

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

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

    event ExcludeFromFees(address indexed account, bool isExcluded);

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

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

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

    event AutoNukeLP();

    event ManualNukeLP();

    constructor() ERC20("Pink Clifford", "Cliff") {
        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(
            0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
        );

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

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

        uint256 _buyLiquidityFee = 0;
        uint256 _buyDevFee = 0;

        uint256 _sellLiquidityFee = 0;
        uint256 _sellDevFee = 0;

        uint256 totalSupply = 100_000_000 * 1e18;

        maxTransactionAmount = 2_000_000 * 1e18; // 2% from total supply
        maxWallet = 10_000_000 * 1e18; // 2% from total supply maxWallet
        swapTokensAtAmount = (totalSupply * 4) / 1000; // 0.4% swap wallet

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

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

        devWallet = address(0xEE29c9F86b06B417Fb54524C97848783029B355d); // set as dev wallet

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

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

        /*
            _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() * 8) / 1000,
            "Swap amount cannot be higher than 0.8% total supply."
        );
        swapTokensAtAmount = newAmount;
        return true;
    }

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

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

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

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

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

    function updateSellFees(
        uint256 _liquidityFee,
        uint256 _devFee
    ) external onlyOwner {
        sellLiquidityFee = _liquidityFee;
        sellDevFee = _devFee;
        sellTotalFees = sellLiquidityFee + sellDevFee;
    }

    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 updateDevWallet(address newWallet) external onlyOwner {
        emit devWalletUpdated(newWallet, devWallet);
        devWallet = newWallet;
    }

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

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

        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] + 1 <
                                block.number,
                            "_transfer:: Transfer Delay enabled.  Only one purchase per two blocks allowed."
                        );
                        _holderLastTransferTimestamp[tx.origin] = block.number;
                    }
                }

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

        uint256 contractTokenBalance = balanceOf(address(this));

        bool canSwap = contractTokenBalance >= swapTokensAtAmount;

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

            swapBack();

            swapping = false;
        }

        bool takeFee = !swapping;

        // if any account belongs to _isExcludedFromFee account then remove the fee
        if (_isExcludedFromFees[from] || _isExcludedFromFees[to]) {
            takeFee = false;
        }

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

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

            amount -= fees;
        }

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

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

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

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

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

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

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

        uint256 ethForLiquidity = ethBalance - ethForDev;

        tokensForLiquidity = 0;
        tokensForDev = 0;

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

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

    function withdraw() external onlyOwner {
        uint256 balance = IERC20(address(this)).balanceOf(address(this));
        IERC20(address(this)).transfer(msg.sender, balance);
        payable(msg.sender).transfer(address(this).balance);
    }

    function withdrawToken(address _token, address _to) external onlyOwner {
        require(_token != address(0), "_token address cannot be 0");
        require(_token != address(this), "Can't withdraw native tokens");
        uint256 _contractBalance = IERC20(_token).balanceOf(address(this));
        IERC20(_token).transfer(_to, _contractBalance);
    }

}

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":"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"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"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":"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":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"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":"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":"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":"_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":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxTxnAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"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"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_token","type":"address"},{"internalType":"address","name":"_to","type":"address"}],"name":"withdrawToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c06040526001600a60006101000a81548160ff0219169083151502179055506000600a60016101000a81548160ff0219169083151502179055506000600a60026101000a81548160ff0219169083151502179055506000600c60006101000a81548160ff0219169083151502179055503480156200007d57600080fd5b506040518060400160405280600d81526020017f50696e6b20436c6966666f7264000000000000000000000000000000000000008152506040518060400160405280600581526020017f436c69666600000000000000000000000000000000000000000000000000000081525081600390805190602001906200010292919062000a81565b5080600490805190602001906200011b92919062000a81565b5050506200013e620001326200054160201b60201c565b6200054960201b60201c565b6000737a250d5630b4cf539739df2c5dacb4c659f2488d90506200016a8160016200060f60201b60201c565b8073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b158015620001e557600080fd5b505afa158015620001fa573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000220919062000b9b565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b1580156200028357600080fd5b505afa15801562000298573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002be919062000b9b565b6040518363ffffffff1660e01b8152600401620002dd92919062000bde565b602060405180830381600087803b158015620002f857600080fd5b505af11580156200030d573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000333919062000b9b565b73ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff16815250506200037b60a05160016200060f60201b60201c565b6200039060a0516001620006f960201b60201c565b60008060008060006a52b7d2dcc80cd2e400000090506a01a784379d99db420000006007819055506a084595161401484a0000006009819055506103e8600482620003dc919062000c44565b620003e8919062000cd4565b60088190555084600e8190555083600f81905550600f54600e546200040e919062000d0c565b600d81905550826011819055508160128190555060125460115462000434919062000d0c565b60108190555073ee29c9f86b06b417fb54524c97848783029b355d600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620004b1620004a36200079a60201b60201c565b6001620007c460201b60201c565b620004c4306001620007c460201b60201c565b620004d961dead6001620007c460201b60201c565b620004fb620004ed6200079a60201b60201c565b60016200060f60201b60201c565b6200050e3060016200060f60201b60201c565b6200052361dead60016200060f60201b60201c565b620005353382620008fe60201b60201c565b50505050505062000f2b565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6200061f6200054160201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620006456200079a60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16146200069e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620006959062000dca565b60405180910390fd5b80601660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b80601760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b620007d46200054160201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620007fa6200079a60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000853576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200084a9062000dca565b60405180910390fd5b80601560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051620008f2919062000e09565b60405180910390a25050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000971576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620009689062000e76565b60405180910390fd5b620009856000838362000a7760201b60201c565b806002600082825462000999919062000d0c565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254620009f0919062000d0c565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000a57919062000ea9565b60405180910390a362000a736000838362000a7c60201b60201c565b5050565b505050565b505050565b82805462000a8f9062000ef5565b90600052602060002090601f01602090048101928262000ab3576000855562000aff565b82601f1062000ace57805160ff191683800117855562000aff565b8280016001018555821562000aff579182015b8281111562000afe57825182559160200191906001019062000ae1565b5b50905062000b0e919062000b12565b5090565b5b8082111562000b2d57600081600090555060010162000b13565b5090565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000b638262000b36565b9050919050565b62000b758162000b56565b811462000b8157600080fd5b50565b60008151905062000b958162000b6a565b92915050565b60006020828403121562000bb45762000bb362000b31565b5b600062000bc48482850162000b84565b91505092915050565b62000bd88162000b56565b82525050565b600060408201905062000bf5600083018562000bcd565b62000c04602083018462000bcd565b9392505050565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000c518262000c0b565b915062000c5e8362000c0b565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161562000c9a5762000c9962000c15565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600062000ce18262000c0b565b915062000cee8362000c0b565b92508262000d015762000d0062000ca5565b5b828204905092915050565b600062000d198262000c0b565b915062000d268362000c0b565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000d5e5762000d5d62000c15565b5b828201905092915050565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600062000db260208362000d69565b915062000dbf8262000d7a565b602082019050919050565b6000602082019050818103600083015262000de58162000da3565b9050919050565b60008115159050919050565b62000e038162000dec565b82525050565b600060208201905062000e20600083018462000df8565b92915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000e5e601f8362000d69565b915062000e6b8262000e26565b602082019050919050565b6000602082019050818103600083015262000e918162000e4f565b9050919050565b62000ea38162000c0b565b82525050565b600060208201905062000ec0600083018462000e98565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000f0e57607f821691505b6020821081141562000f255762000f2462000ec6565b5b50919050565b60805160a05161521562000f89600039600081816115fd01528181611c7f01526129d2015260008181610d6f0152818161297a0152818161393a01528181613a2a01528181613a5101528181613aed0152613b1401526152156000f3fe6080604052600436106102e85760003560e01c80638a8c523c11610190578063c0246668116100dc578063dd62ed3e11610095578063f11a24d31161006f578063f11a24d314610b4f578063f2fde38b14610b7a578063f637434214610ba3578063f8b45b0514610bce576102ef565b8063dd62ed3e14610abc578063e2f4560514610af9578063e884f26014610b24576102ef565b8063c0246668146109ac578063c18bc195146109d5578063c876d0b9146109fe578063c8c8ebe414610a29578063d257b34f14610a54578063d85ba06314610a91576102ef565b80639c3b4fdc11610149578063a457c2d711610123578063a457c2d7146108ca578063a9059cbb14610907578063b62496f514610944578063bbc0c74214610981576102ef565b80639c3b4fdc146108495780639fccce3214610874578063a0d82dc51461089f576102ef565b80638a8c523c1461075f5780638da5cb5b146107765780638ea5220f146107a1578063924de9b7146107cc57806395d89b41146107f55780639a7a23d614610820576102ef565b8063395093511161024f57806366ca9b831161020857806370a08231116101e257806370a08231146106b7578063715018a6146106f4578063751039fc1461070b5780637571336a14610736576102ef565b806366ca9b83146106385780636a486a8e146106615780636ddd17131461068c576102ef565b806339509351146105285780633aeac4e1146105655780633ccfd60b1461058e57806349bd5a5e146105a55780634a62bb65146105d05780634fbee193146105fb576102ef565b80631816467f116102a15780631816467f146104185780631a8145bb14610441578063203e727e1461046c57806323b872dd1461049557806327c8f835146104d2578063313ce567146104fd576102ef565b806302dbd8f8146102f457806306fdde031461031d578063095ea7b31461034857806310d5de53146103855780631694505e146103c257806318160ddd146103ed576102ef565b366102ef57005b600080fd5b34801561030057600080fd5b5061031b60048036038101906103169190613c12565b610bf9565b005b34801561032957600080fd5b50610332610c9d565b60405161033f9190613ceb565b60405180910390f35b34801561035457600080fd5b5061036f600480360381019061036a9190613d6b565b610d2f565b60405161037c9190613dc6565b60405180910390f35b34801561039157600080fd5b506103ac60048036038101906103a79190613de1565b610d4d565b6040516103b99190613dc6565b60405180910390f35b3480156103ce57600080fd5b506103d7610d6d565b6040516103e49190613e6d565b60405180910390f35b3480156103f957600080fd5b50610402610d91565b60405161040f9190613e97565b60405180910390f35b34801561042457600080fd5b5061043f600480360381019061043a9190613de1565b610d9b565b005b34801561044d57600080fd5b50610456610ed7565b6040516104639190613e97565b60405180910390f35b34801561047857600080fd5b50610493600480360381019061048e9190613eb2565b610edd565b005b3480156104a157600080fd5b506104bc60048036038101906104b79190613edf565b610fec565b6040516104c99190613dc6565b60405180910390f35b3480156104de57600080fd5b506104e76110e4565b6040516104f49190613f41565b60405180910390f35b34801561050957600080fd5b506105126110ea565b60405161051f9190613f78565b60405180910390f35b34801561053457600080fd5b5061054f600480360381019061054a9190613d6b565b6110f3565b60405161055c9190613dc6565b60405180910390f35b34801561057157600080fd5b5061058c60048036038101906105879190613f93565b61119f565b005b34801561059a57600080fd5b506105a361141a565b005b3480156105b157600080fd5b506105ba6115fb565b6040516105c79190613f41565b60405180910390f35b3480156105dc57600080fd5b506105e561161f565b6040516105f29190613dc6565b60405180910390f35b34801561060757600080fd5b50610622600480360381019061061d9190613de1565b611632565b60405161062f9190613dc6565b60405180910390f35b34801561064457600080fd5b5061065f600480360381019061065a9190613c12565b611688565b005b34801561066d57600080fd5b50610676611772565b6040516106839190613e97565b60405180910390f35b34801561069857600080fd5b506106a1611778565b6040516106ae9190613dc6565b60405180910390f35b3480156106c357600080fd5b506106de60048036038101906106d99190613de1565b61178b565b6040516106eb9190613e97565b60405180910390f35b34801561070057600080fd5b506107096117d3565b005b34801561071757600080fd5b5061072061185b565b60405161072d9190613dc6565b60405180910390f35b34801561074257600080fd5b5061075d60048036038101906107589190613fff565b6118fb565b005b34801561076b57600080fd5b506107746119d2565b005b34801561078257600080fd5b5061078b611a86565b6040516107989190613f41565b60405180910390f35b3480156107ad57600080fd5b506107b6611ab0565b6040516107c39190613f41565b60405180910390f35b3480156107d857600080fd5b506107f360048036038101906107ee919061403f565b611ad6565b005b34801561080157600080fd5b5061080a611b6f565b6040516108179190613ceb565b60405180910390f35b34801561082c57600080fd5b5061084760048036038101906108429190613fff565b611c01565b005b34801561085557600080fd5b5061085e611d1a565b60405161086b9190613e97565b60405180910390f35b34801561088057600080fd5b50610889611d20565b6040516108969190613e97565b60405180910390f35b3480156108ab57600080fd5b506108b4611d26565b6040516108c19190613e97565b60405180910390f35b3480156108d657600080fd5b506108f160048036038101906108ec9190613d6b565b611d2c565b6040516108fe9190613dc6565b60405180910390f35b34801561091357600080fd5b5061092e60048036038101906109299190613d6b565b611e17565b60405161093b9190613dc6565b60405180910390f35b34801561095057600080fd5b5061096b60048036038101906109669190613de1565b611e35565b6040516109789190613dc6565b60405180910390f35b34801561098d57600080fd5b50610996611e55565b6040516109a39190613dc6565b60405180910390f35b3480156109b857600080fd5b506109d360048036038101906109ce9190613fff565b611e68565b005b3480156109e157600080fd5b506109fc60048036038101906109f79190613eb2565b611f8d565b005b348015610a0a57600080fd5b50610a1361209c565b604051610a209190613dc6565b60405180910390f35b348015610a3557600080fd5b50610a3e6120af565b604051610a4b9190613e97565b60405180910390f35b348015610a6057600080fd5b50610a7b6004803603810190610a769190613eb2565b6120b5565b604051610a889190613dc6565b60405180910390f35b348015610a9d57600080fd5b50610aa661220a565b604051610ab39190613e97565b60405180910390f35b348015610ac857600080fd5b50610ae36004803603810190610ade9190613f93565b612210565b604051610af09190613e97565b60405180910390f35b348015610b0557600080fd5b50610b0e612297565b604051610b1b9190613e97565b60405180910390f35b348015610b3057600080fd5b50610b3961229d565b604051610b469190613dc6565b60405180910390f35b348015610b5b57600080fd5b50610b6461233d565b604051610b719190613e97565b60405180910390f35b348015610b8657600080fd5b50610ba16004803603810190610b9c9190613de1565b612343565b005b348015610baf57600080fd5b50610bb861243b565b604051610bc59190613e97565b60405180910390f35b348015610bda57600080fd5b50610be3612441565b604051610bf09190613e97565b60405180910390f35b610c01612447565b73ffffffffffffffffffffffffffffffffffffffff16610c1f611a86565b73ffffffffffffffffffffffffffffffffffffffff1614610c75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6c906140b8565b60405180910390fd5b8160118190555080601281905550601254601154610c939190614107565b6010819055505050565b606060038054610cac9061418c565b80601f0160208091040260200160405190810160405280929190818152602001828054610cd89061418c565b8015610d255780601f10610cfa57610100808354040283529160200191610d25565b820191906000526020600020905b815481529060010190602001808311610d0857829003601f168201915b5050505050905090565b6000610d43610d3c612447565b848461244f565b6001905092915050565b60166020528060005260406000206000915054906101000a900460ff1681565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600254905090565b610da3612447565b73ffffffffffffffffffffffffffffffffffffffff16610dc1611a86565b73ffffffffffffffffffffffffffffffffffffffff1614610e17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0e906140b8565b60405180910390fd5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74360405160405180910390a380600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60135481565b610ee5612447565b73ffffffffffffffffffffffffffffffffffffffff16610f03611a86565b73ffffffffffffffffffffffffffffffffffffffff1614610f59576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f50906140b8565b60405180910390fd5b670de0b6b3a76400006103e86001610f6f610d91565b610f7991906141be565b610f839190614247565b610f8d9190614247565b811015610fcf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fc6906142ea565b60405180910390fd5b670de0b6b3a764000081610fe391906141be565b60078190555050565b6000610ff984848461261a565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000611044612447565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156110c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110bb9061437c565b60405180910390fd5b6110d8856110d0612447565b85840361244f565b60019150509392505050565b61dead81565b60006012905090565b6000611195611100612447565b84846001600061110e612447565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546111909190614107565b61244f565b6001905092915050565b6111a7612447565b73ffffffffffffffffffffffffffffffffffffffff166111c5611a86565b73ffffffffffffffffffffffffffffffffffffffff161461121b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611212906140b8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561128b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611282906143e8565b60405180910390fd5b3073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156112fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112f190614454565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016113359190613f41565b60206040518083038186803b15801561134d57600080fd5b505afa158015611361573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113859190614489565b90508273ffffffffffffffffffffffffffffffffffffffff1663a9059cbb83836040518363ffffffff1660e01b81526004016113c29291906144b6565b602060405180830381600087803b1580156113dc57600080fd5b505af11580156113f0573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061141491906144f4565b50505050565b611422612447565b73ffffffffffffffffffffffffffffffffffffffff16611440611a86565b73ffffffffffffffffffffffffffffffffffffffff1614611496576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148d906140b8565b60405180910390fd5b60003073ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016114d19190613f41565b60206040518083038186803b1580156114e957600080fd5b505afa1580156114fd573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115219190614489565b90503073ffffffffffffffffffffffffffffffffffffffff1663a9059cbb33836040518363ffffffff1660e01b815260040161155e9291906144b6565b602060405180830381600087803b15801561157857600080fd5b505af115801561158c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115b091906144f4565b503373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f193505050501580156115f7573d6000803e3d6000fd5b5050565b7f000000000000000000000000000000000000000000000000000000000000000081565b600a60009054906101000a900460ff1681565b6000601560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b611690612447565b73ffffffffffffffffffffffffffffffffffffffff166116ae611a86565b73ffffffffffffffffffffffffffffffffffffffff1614611704576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116fb906140b8565b60405180910390fd5b81600e8190555080600f81905550600f54600e546117229190614107565b600d81905550600f600d54111561176e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117659061456d565b60405180910390fd5b5050565b60105481565b600a60029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6117db612447565b73ffffffffffffffffffffffffffffffffffffffff166117f9611a86565b73ffffffffffffffffffffffffffffffffffffffff161461184f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611846906140b8565b60405180910390fd5b611859600061325a565b565b6000611865612447565b73ffffffffffffffffffffffffffffffffffffffff16611883611a86565b73ffffffffffffffffffffffffffffffffffffffff16146118d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118d0906140b8565b60405180910390fd5b6000600a60006101000a81548160ff0219169083151502179055506001905090565b611903612447565b73ffffffffffffffffffffffffffffffffffffffff16611921611a86565b73ffffffffffffffffffffffffffffffffffffffff1614611977576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161196e906140b8565b60405180910390fd5b80601660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6119da612447565b73ffffffffffffffffffffffffffffffffffffffff166119f8611a86565b73ffffffffffffffffffffffffffffffffffffffff1614611a4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a45906140b8565b60405180910390fd5b6001600a60016101000a81548160ff0219169083151502179055506001600a60026101000a81548160ff021916908315150217905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b611ade612447565b73ffffffffffffffffffffffffffffffffffffffff16611afc611a86565b73ffffffffffffffffffffffffffffffffffffffff1614611b52576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b49906140b8565b60405180910390fd5b80600a60026101000a81548160ff02191690831515021790555050565b606060048054611b7e9061418c565b80601f0160208091040260200160405190810160405280929190818152602001828054611baa9061418c565b8015611bf75780601f10611bcc57610100808354040283529160200191611bf7565b820191906000526020600020905b815481529060010190602001808311611bda57829003601f168201915b5050505050905090565b611c09612447565b73ffffffffffffffffffffffffffffffffffffffff16611c27611a86565b73ffffffffffffffffffffffffffffffffffffffff1614611c7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c74906140b8565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611d0c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d03906145ff565b60405180910390fd5b611d168282613320565b5050565b600f5481565b60145481565b60125481565b60008060016000611d3b612447565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611df8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611def90614691565b60405180910390fd5b611e0c611e03612447565b8585840361244f565b600191505092915050565b6000611e2b611e24612447565b848461261a565b6001905092915050565b60176020528060005260406000206000915054906101000a900460ff1681565b600a60019054906101000a900460ff1681565b611e70612447565b73ffffffffffffffffffffffffffffffffffffffff16611e8e611a86565b73ffffffffffffffffffffffffffffffffffffffff1614611ee4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611edb906140b8565b60405180910390fd5b80601560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051611f819190613dc6565b60405180910390a25050565b611f95612447565b73ffffffffffffffffffffffffffffffffffffffff16611fb3611a86565b73ffffffffffffffffffffffffffffffffffffffff1614612009576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612000906140b8565b60405180910390fd5b670de0b6b3a76400006103e8600561201f610d91565b61202991906141be565b6120339190614247565b61203d9190614247565b81101561207f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161207690614723565b60405180910390fd5b670de0b6b3a76400008161209391906141be565b60098190555050565b600c60009054906101000a900460ff1681565b60075481565b60006120bf612447565b73ffffffffffffffffffffffffffffffffffffffff166120dd611a86565b73ffffffffffffffffffffffffffffffffffffffff1614612133576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161212a906140b8565b60405180910390fd5b620186a06001612141610d91565b61214b91906141be565b6121559190614247565b821015612197576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161218e906147b5565b60405180910390fd5b6103e860086121a4610d91565b6121ae91906141be565b6121b89190614247565b8211156121fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121f190614847565b60405180910390fd5b8160088190555060019050919050565b600d5481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60085481565b60006122a7612447565b73ffffffffffffffffffffffffffffffffffffffff166122c5611a86565b73ffffffffffffffffffffffffffffffffffffffff161461231b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612312906140b8565b60405180910390fd5b6000600c60006101000a81548160ff0219169083151502179055506001905090565b600e5481565b61234b612447565b73ffffffffffffffffffffffffffffffffffffffff16612369611a86565b73ffffffffffffffffffffffffffffffffffffffff16146123bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123b6906140b8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561242f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612426906148d9565b60405180910390fd5b6124388161325a565b50565b60115481565b60095481565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156124bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124b69061496b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561252f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612526906149fd565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161260d9190613e97565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561268a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161268190614a8f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156126fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126f190614b21565b60405180910390fd5b60008114156127145761270f838360006133c1565b613255565b600a60009054906101000a900460ff1615612de357612731611a86565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415801561279f575061276f611a86565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156127d85750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612812575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561282b5750600560149054906101000a900460ff16155b15612de257600a60019054906101000a900460ff1661292557601560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806128e55750601560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b612924576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161291b90614b8d565b60405180910390fd5b5b600c60009054906101000a900460ff1615612af957612942611a86565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141580156129c957507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612a2157507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b15612af857436001600b60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612a739190614107565b10612ab3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612aaa90614c45565b60405180910390fd5b43600b60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b601760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612b9c5750601660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612c4357600754811115612be6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bdd90614cd7565b60405180910390fd5b600954612bf28361178b565b82612bfd9190614107565b1115612c3e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c3590614d43565b60405180910390fd5b612de1565b601760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612ce65750601660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612d3557600754811115612d30576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d2790614dd5565b60405180910390fd5b612de0565b601660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16612ddf57600954612d928361178b565b82612d9d9190614107565b1115612dde576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612dd590614d43565b60405180910390fd5b5b5b5b5b5b6000612dee3061178b565b905060006008548210159050808015612e135750600a60029054906101000a900460ff165b8015612e2c5750600560149054906101000a900460ff16155b8015612e825750601760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612ed85750601560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612f2e5750601560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612f72576001600560146101000a81548160ff021916908315150217905550612f56613642565b6000600560146101000a81548160ff0219169083151502179055505b6000600560149054906101000a900460ff16159050601560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806130285750601560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561303257600090505b6000811561324557601760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561309557506000601054115b1561312f576130c260646130b46010548861384f90919063ffffffff16565b61386590919063ffffffff16565b9050601054601154826130d591906141be565b6130df9190614247565b601360008282546130f09190614107565b925050819055506010546012548261310891906141be565b6131129190614247565b601460008282546131239190614107565b92505081905550613221565b601760008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561318a57506000600d54115b15613220576131b760646131a9600d548861384f90919063ffffffff16565b61386590919063ffffffff16565b9050600d54600e54826131ca91906141be565b6131d49190614247565b601360008282546131e59190614107565b92505081905550600d54600f54826131fd91906141be565b6132079190614247565b601460008282546132189190614107565b925050819055505b5b6000811115613236576132358730836133c1565b5b80856132429190614df5565b94505b6132508787876133c1565b505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80601760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415613431576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161342890614a8f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156134a1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161349890614b21565b60405180910390fd5b6134ac83838361387b565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015613532576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161352990614e9b565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546135c59190614107565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516136299190613e97565b60405180910390a361363c848484613880565b50505050565b600061364d3061178b565b905060006014546013546136619190614107565b90506000808314806136735750600082145b156136805750505061384d565b601460085461368f91906141be565b8311156136a85760146008546136a591906141be565b92505b6000600283601354866136bb91906141be565b6136c59190614247565b6136cf9190614247565b905060006136e6828661388590919063ffffffff16565b905060004790506136f68261389b565b600061370b824761388590919063ffffffff16565b90506000613736876137286014548561384f90919063ffffffff16565b61386590919063ffffffff16565b9050600081836137469190614df5565b905060006013819055506000601481905550600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168260405161379e90614eec565b60006040518083038185875af1925050503d80600081146137db576040519150601f19603f3d011682016040523d82523d6000602084013e6137e0565b606091505b5050809750506000861180156137f65750600081115b15613843576138058682613ae7565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb561858260135460405161383a93929190614f01565b60405180910390a15b5050505050505050505b565b6000818361385d91906141be565b905092915050565b600081836138739190614247565b905092915050565b505050565b505050565b600081836138939190614df5565b905092915050565b6000600267ffffffffffffffff8111156138b8576138b7614f38565b5b6040519080825280602002602001820160405280156138e65781602001602082028036833780820191505090505b50905030816000815181106138fe576138fd614f67565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b15801561399e57600080fd5b505afa1580156139b2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906139d69190614fab565b816001815181106139ea576139e9614f67565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050613a4f307f00000000000000000000000000000000000000000000000000000000000000008461244f565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401613ab19594939291906150d1565b600060405180830381600087803b158015613acb57600080fd5b505af1158015613adf573d6000803e3d6000fd5b505050505050565b613b12307f00000000000000000000000000000000000000000000000000000000000000008461244f565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f305d719823085600080613b5c611a86565b426040518863ffffffff1660e01b8152600401613b7e9695949392919061512b565b6060604051808303818588803b158015613b9757600080fd5b505af1158015613bab573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190613bd0919061518c565b5050505050565b600080fd5b6000819050919050565b613bef81613bdc565b8114613bfa57600080fd5b50565b600081359050613c0c81613be6565b92915050565b60008060408385031215613c2957613c28613bd7565b5b6000613c3785828601613bfd565b9250506020613c4885828601613bfd565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613c8c578082015181840152602081019050613c71565b83811115613c9b576000848401525b50505050565b6000601f19601f8301169050919050565b6000613cbd82613c52565b613cc78185613c5d565b9350613cd7818560208601613c6e565b613ce081613ca1565b840191505092915050565b60006020820190508181036000830152613d058184613cb2565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613d3882613d0d565b9050919050565b613d4881613d2d565b8114613d5357600080fd5b50565b600081359050613d6581613d3f565b92915050565b60008060408385031215613d8257613d81613bd7565b5b6000613d9085828601613d56565b9250506020613da185828601613bfd565b9150509250929050565b60008115159050919050565b613dc081613dab565b82525050565b6000602082019050613ddb6000830184613db7565b92915050565b600060208284031215613df757613df6613bd7565b5b6000613e0584828501613d56565b91505092915050565b6000819050919050565b6000613e33613e2e613e2984613d0d565b613e0e565b613d0d565b9050919050565b6000613e4582613e18565b9050919050565b6000613e5782613e3a565b9050919050565b613e6781613e4c565b82525050565b6000602082019050613e826000830184613e5e565b92915050565b613e9181613bdc565b82525050565b6000602082019050613eac6000830184613e88565b92915050565b600060208284031215613ec857613ec7613bd7565b5b6000613ed684828501613bfd565b91505092915050565b600080600060608486031215613ef857613ef7613bd7565b5b6000613f0686828701613d56565b9350506020613f1786828701613d56565b9250506040613f2886828701613bfd565b9150509250925092565b613f3b81613d2d565b82525050565b6000602082019050613f566000830184613f32565b92915050565b600060ff82169050919050565b613f7281613f5c565b82525050565b6000602082019050613f8d6000830184613f69565b92915050565b60008060408385031215613faa57613fa9613bd7565b5b6000613fb885828601613d56565b9250506020613fc985828601613d56565b9150509250929050565b613fdc81613dab565b8114613fe757600080fd5b50565b600081359050613ff981613fd3565b92915050565b6000806040838503121561401657614015613bd7565b5b600061402485828601613d56565b925050602061403585828601613fea565b9150509250929050565b60006020828403121561405557614054613bd7565b5b600061406384828501613fea565b91505092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006140a2602083613c5d565b91506140ad8261406c565b602082019050919050565b600060208201905081810360008301526140d181614095565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061411282613bdc565b915061411d83613bdc565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614152576141516140d8565b5b828201905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806141a457607f821691505b602082108114156141b8576141b761415d565b5b50919050565b60006141c982613bdc565b91506141d483613bdc565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561420d5761420c6140d8565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061425282613bdc565b915061425d83613bdc565b92508261426d5761426c614218565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20302e31250000000000000000000000000000000000602082015250565b60006142d4602f83613c5d565b91506142df82614278565b604082019050919050565b60006020820190508181036000830152614303816142c7565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b6000614366602883613c5d565b91506143718261430a565b604082019050919050565b6000602082019050818103600083015261439581614359565b9050919050565b7f5f746f6b656e20616464726573732063616e6e6f742062652030000000000000600082015250565b60006143d2601a83613c5d565b91506143dd8261439c565b602082019050919050565b60006020820190508181036000830152614401816143c5565b9050919050565b7f43616e2774207769746864726177206e617469766520746f6b656e7300000000600082015250565b600061443e601c83613c5d565b915061444982614408565b602082019050919050565b6000602082019050818103600083015261446d81614431565b9050919050565b60008151905061448381613be6565b92915050565b60006020828403121561449f5761449e613bd7565b5b60006144ad84828501614474565b91505092915050565b60006040820190506144cb6000830185613f32565b6144d86020830184613e88565b9392505050565b6000815190506144ee81613fd3565b92915050565b60006020828403121561450a57614509613bd7565b5b6000614518848285016144df565b91505092915050565b7f4d757374206b656570206665657320617420313525206f72206c657373000000600082015250565b6000614557601d83613c5d565b915061456282614521565b602082019050919050565b600060208201905081810360008301526145868161454a565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b60006145e9603983613c5d565b91506145f48261458d565b604082019050919050565b60006020820190508181036000830152614618816145dc565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b600061467b602583613c5d565b91506146868261461f565b604082019050919050565b600060208201905081810360008301526146aa8161466e565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b600061470d602483613c5d565b9150614718826146b1565b604082019050919050565b6000602082019050818103600083015261473c81614700565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b600061479f603583613c5d565b91506147aa82614743565b604082019050919050565b600060208201905081810360008301526147ce81614792565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e382520746f74616c20737570706c792e000000000000000000000000602082015250565b6000614831603483613c5d565b915061483c826147d5565b604082019050919050565b6000602082019050818103600083015261486081614824565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006148c3602683613c5d565b91506148ce82614867565b604082019050919050565b600060208201905081810360008301526148f2816148b6565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000614955602483613c5d565b9150614960826148f9565b604082019050919050565b6000602082019050818103600083015261498481614948565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006149e7602283613c5d565b91506149f28261498b565b604082019050919050565b60006020820190508181036000830152614a16816149da565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000614a79602583613c5d565b9150614a8482614a1d565b604082019050919050565b60006020820190508181036000830152614aa881614a6c565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000614b0b602383613c5d565b9150614b1682614aaf565b604082019050919050565b60006020820190508181036000830152614b3a81614afe565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b6000614b77601683613c5d565b9150614b8282614b41565b602082019050919050565b60006020820190508181036000830152614ba681614b6a565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008201527f65642e20204f6e6c79206f6e65207075726368617365207065722074776f206260208201527f6c6f636b7320616c6c6f7765642e000000000000000000000000000000000000604082015250565b6000614c2f604e83613c5d565b9150614c3a82614bad565b606082019050919050565b60006020820190508181036000830152614c5e81614c22565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b6000614cc1603583613c5d565b9150614ccc82614c65565b604082019050919050565b60006020820190508181036000830152614cf081614cb4565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b6000614d2d601383613c5d565b9150614d3882614cf7565b602082019050919050565b60006020820190508181036000830152614d5c81614d20565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b6000614dbf603683613c5d565b9150614dca82614d63565b604082019050919050565b60006020820190508181036000830152614dee81614db2565b9050919050565b6000614e0082613bdc565b9150614e0b83613bdc565b925082821015614e1e57614e1d6140d8565b5b828203905092915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000614e85602683613c5d565b9150614e9082614e29565b604082019050919050565b60006020820190508181036000830152614eb481614e78565b9050919050565b600081905092915050565b50565b6000614ed6600083614ebb565b9150614ee182614ec6565b600082019050919050565b6000614ef782614ec9565b9150819050919050565b6000606082019050614f166000830186613e88565b614f236020830185613e88565b614f306040830184613e88565b949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050614fa581613d3f565b92915050565b600060208284031215614fc157614fc0613bd7565b5b6000614fcf84828501614f96565b91505092915050565b6000819050919050565b6000614ffd614ff8614ff384614fd8565b613e0e565b613bdc565b9050919050565b61500d81614fe2565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61504881613d2d565b82525050565b600061505a838361503f565b60208301905092915050565b6000602082019050919050565b600061507e82615013565b615088818561501e565b93506150938361502f565b8060005b838110156150c45781516150ab888261504e565b97506150b683615066565b925050600181019050615097565b5085935050505092915050565b600060a0820190506150e66000830188613e88565b6150f36020830187615004565b81810360408301526151058186615073565b90506151146060830185613f32565b6151216080830184613e88565b9695505050505050565b600060c0820190506151406000830189613f32565b61514d6020830188613e88565b61515a6040830187615004565b6151676060830186615004565b6151746080830185613f32565b61518160a0830184613e88565b979650505050505050565b6000806000606084860312156151a5576151a4613bd7565b5b60006151b386828701614474565b93505060206151c486828701614474565b92505060406151d586828701614474565b915050925092509256fea264697066735822122026ec2071d3a0094024acc1f9a8584424b20d368a869859448d5b1f8ec40a6b4f64736f6c63430008090033

Deployed Bytecode

0x6080604052600436106102e85760003560e01c80638a8c523c11610190578063c0246668116100dc578063dd62ed3e11610095578063f11a24d31161006f578063f11a24d314610b4f578063f2fde38b14610b7a578063f637434214610ba3578063f8b45b0514610bce576102ef565b8063dd62ed3e14610abc578063e2f4560514610af9578063e884f26014610b24576102ef565b8063c0246668146109ac578063c18bc195146109d5578063c876d0b9146109fe578063c8c8ebe414610a29578063d257b34f14610a54578063d85ba06314610a91576102ef565b80639c3b4fdc11610149578063a457c2d711610123578063a457c2d7146108ca578063a9059cbb14610907578063b62496f514610944578063bbc0c74214610981576102ef565b80639c3b4fdc146108495780639fccce3214610874578063a0d82dc51461089f576102ef565b80638a8c523c1461075f5780638da5cb5b146107765780638ea5220f146107a1578063924de9b7146107cc57806395d89b41146107f55780639a7a23d614610820576102ef565b8063395093511161024f57806366ca9b831161020857806370a08231116101e257806370a08231146106b7578063715018a6146106f4578063751039fc1461070b5780637571336a14610736576102ef565b806366ca9b83146106385780636a486a8e146106615780636ddd17131461068c576102ef565b806339509351146105285780633aeac4e1146105655780633ccfd60b1461058e57806349bd5a5e146105a55780634a62bb65146105d05780634fbee193146105fb576102ef565b80631816467f116102a15780631816467f146104185780631a8145bb14610441578063203e727e1461046c57806323b872dd1461049557806327c8f835146104d2578063313ce567146104fd576102ef565b806302dbd8f8146102f457806306fdde031461031d578063095ea7b31461034857806310d5de53146103855780631694505e146103c257806318160ddd146103ed576102ef565b366102ef57005b600080fd5b34801561030057600080fd5b5061031b60048036038101906103169190613c12565b610bf9565b005b34801561032957600080fd5b50610332610c9d565b60405161033f9190613ceb565b60405180910390f35b34801561035457600080fd5b5061036f600480360381019061036a9190613d6b565b610d2f565b60405161037c9190613dc6565b60405180910390f35b34801561039157600080fd5b506103ac60048036038101906103a79190613de1565b610d4d565b6040516103b99190613dc6565b60405180910390f35b3480156103ce57600080fd5b506103d7610d6d565b6040516103e49190613e6d565b60405180910390f35b3480156103f957600080fd5b50610402610d91565b60405161040f9190613e97565b60405180910390f35b34801561042457600080fd5b5061043f600480360381019061043a9190613de1565b610d9b565b005b34801561044d57600080fd5b50610456610ed7565b6040516104639190613e97565b60405180910390f35b34801561047857600080fd5b50610493600480360381019061048e9190613eb2565b610edd565b005b3480156104a157600080fd5b506104bc60048036038101906104b79190613edf565b610fec565b6040516104c99190613dc6565b60405180910390f35b3480156104de57600080fd5b506104e76110e4565b6040516104f49190613f41565b60405180910390f35b34801561050957600080fd5b506105126110ea565b60405161051f9190613f78565b60405180910390f35b34801561053457600080fd5b5061054f600480360381019061054a9190613d6b565b6110f3565b60405161055c9190613dc6565b60405180910390f35b34801561057157600080fd5b5061058c60048036038101906105879190613f93565b61119f565b005b34801561059a57600080fd5b506105a361141a565b005b3480156105b157600080fd5b506105ba6115fb565b6040516105c79190613f41565b60405180910390f35b3480156105dc57600080fd5b506105e561161f565b6040516105f29190613dc6565b60405180910390f35b34801561060757600080fd5b50610622600480360381019061061d9190613de1565b611632565b60405161062f9190613dc6565b60405180910390f35b34801561064457600080fd5b5061065f600480360381019061065a9190613c12565b611688565b005b34801561066d57600080fd5b50610676611772565b6040516106839190613e97565b60405180910390f35b34801561069857600080fd5b506106a1611778565b6040516106ae9190613dc6565b60405180910390f35b3480156106c357600080fd5b506106de60048036038101906106d99190613de1565b61178b565b6040516106eb9190613e97565b60405180910390f35b34801561070057600080fd5b506107096117d3565b005b34801561071757600080fd5b5061072061185b565b60405161072d9190613dc6565b60405180910390f35b34801561074257600080fd5b5061075d60048036038101906107589190613fff565b6118fb565b005b34801561076b57600080fd5b506107746119d2565b005b34801561078257600080fd5b5061078b611a86565b6040516107989190613f41565b60405180910390f35b3480156107ad57600080fd5b506107b6611ab0565b6040516107c39190613f41565b60405180910390f35b3480156107d857600080fd5b506107f360048036038101906107ee919061403f565b611ad6565b005b34801561080157600080fd5b5061080a611b6f565b6040516108179190613ceb565b60405180910390f35b34801561082c57600080fd5b5061084760048036038101906108429190613fff565b611c01565b005b34801561085557600080fd5b5061085e611d1a565b60405161086b9190613e97565b60405180910390f35b34801561088057600080fd5b50610889611d20565b6040516108969190613e97565b60405180910390f35b3480156108ab57600080fd5b506108b4611d26565b6040516108c19190613e97565b60405180910390f35b3480156108d657600080fd5b506108f160048036038101906108ec9190613d6b565b611d2c565b6040516108fe9190613dc6565b60405180910390f35b34801561091357600080fd5b5061092e60048036038101906109299190613d6b565b611e17565b60405161093b9190613dc6565b60405180910390f35b34801561095057600080fd5b5061096b60048036038101906109669190613de1565b611e35565b6040516109789190613dc6565b60405180910390f35b34801561098d57600080fd5b50610996611e55565b6040516109a39190613dc6565b60405180910390f35b3480156109b857600080fd5b506109d360048036038101906109ce9190613fff565b611e68565b005b3480156109e157600080fd5b506109fc60048036038101906109f79190613eb2565b611f8d565b005b348015610a0a57600080fd5b50610a1361209c565b604051610a209190613dc6565b60405180910390f35b348015610a3557600080fd5b50610a3e6120af565b604051610a4b9190613e97565b60405180910390f35b348015610a6057600080fd5b50610a7b6004803603810190610a769190613eb2565b6120b5565b604051610a889190613dc6565b60405180910390f35b348015610a9d57600080fd5b50610aa661220a565b604051610ab39190613e97565b60405180910390f35b348015610ac857600080fd5b50610ae36004803603810190610ade9190613f93565b612210565b604051610af09190613e97565b60405180910390f35b348015610b0557600080fd5b50610b0e612297565b604051610b1b9190613e97565b60405180910390f35b348015610b3057600080fd5b50610b3961229d565b604051610b469190613dc6565b60405180910390f35b348015610b5b57600080fd5b50610b6461233d565b604051610b719190613e97565b60405180910390f35b348015610b8657600080fd5b50610ba16004803603810190610b9c9190613de1565b612343565b005b348015610baf57600080fd5b50610bb861243b565b604051610bc59190613e97565b60405180910390f35b348015610bda57600080fd5b50610be3612441565b604051610bf09190613e97565b60405180910390f35b610c01612447565b73ffffffffffffffffffffffffffffffffffffffff16610c1f611a86565b73ffffffffffffffffffffffffffffffffffffffff1614610c75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6c906140b8565b60405180910390fd5b8160118190555080601281905550601254601154610c939190614107565b6010819055505050565b606060038054610cac9061418c565b80601f0160208091040260200160405190810160405280929190818152602001828054610cd89061418c565b8015610d255780601f10610cfa57610100808354040283529160200191610d25565b820191906000526020600020905b815481529060010190602001808311610d0857829003601f168201915b5050505050905090565b6000610d43610d3c612447565b848461244f565b6001905092915050565b60166020528060005260406000206000915054906101000a900460ff1681565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6000600254905090565b610da3612447565b73ffffffffffffffffffffffffffffffffffffffff16610dc1611a86565b73ffffffffffffffffffffffffffffffffffffffff1614610e17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0e906140b8565b60405180910390fd5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74360405160405180910390a380600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60135481565b610ee5612447565b73ffffffffffffffffffffffffffffffffffffffff16610f03611a86565b73ffffffffffffffffffffffffffffffffffffffff1614610f59576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f50906140b8565b60405180910390fd5b670de0b6b3a76400006103e86001610f6f610d91565b610f7991906141be565b610f839190614247565b610f8d9190614247565b811015610fcf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fc6906142ea565b60405180910390fd5b670de0b6b3a764000081610fe391906141be565b60078190555050565b6000610ff984848461261a565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000611044612447565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156110c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110bb9061437c565b60405180910390fd5b6110d8856110d0612447565b85840361244f565b60019150509392505050565b61dead81565b60006012905090565b6000611195611100612447565b84846001600061110e612447565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546111909190614107565b61244f565b6001905092915050565b6111a7612447565b73ffffffffffffffffffffffffffffffffffffffff166111c5611a86565b73ffffffffffffffffffffffffffffffffffffffff161461121b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611212906140b8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561128b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611282906143e8565b60405180910390fd5b3073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156112fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112f190614454565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016113359190613f41565b60206040518083038186803b15801561134d57600080fd5b505afa158015611361573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113859190614489565b90508273ffffffffffffffffffffffffffffffffffffffff1663a9059cbb83836040518363ffffffff1660e01b81526004016113c29291906144b6565b602060405180830381600087803b1580156113dc57600080fd5b505af11580156113f0573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061141491906144f4565b50505050565b611422612447565b73ffffffffffffffffffffffffffffffffffffffff16611440611a86565b73ffffffffffffffffffffffffffffffffffffffff1614611496576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148d906140b8565b60405180910390fd5b60003073ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016114d19190613f41565b60206040518083038186803b1580156114e957600080fd5b505afa1580156114fd573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115219190614489565b90503073ffffffffffffffffffffffffffffffffffffffff1663a9059cbb33836040518363ffffffff1660e01b815260040161155e9291906144b6565b602060405180830381600087803b15801561157857600080fd5b505af115801561158c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115b091906144f4565b503373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f193505050501580156115f7573d6000803e3d6000fd5b5050565b7f000000000000000000000000a6ed2f188cea511166aac24951aad57a3810186a81565b600a60009054906101000a900460ff1681565b6000601560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b611690612447565b73ffffffffffffffffffffffffffffffffffffffff166116ae611a86565b73ffffffffffffffffffffffffffffffffffffffff1614611704576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116fb906140b8565b60405180910390fd5b81600e8190555080600f81905550600f54600e546117229190614107565b600d81905550600f600d54111561176e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117659061456d565b60405180910390fd5b5050565b60105481565b600a60029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6117db612447565b73ffffffffffffffffffffffffffffffffffffffff166117f9611a86565b73ffffffffffffffffffffffffffffffffffffffff161461184f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611846906140b8565b60405180910390fd5b611859600061325a565b565b6000611865612447565b73ffffffffffffffffffffffffffffffffffffffff16611883611a86565b73ffffffffffffffffffffffffffffffffffffffff16146118d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118d0906140b8565b60405180910390fd5b6000600a60006101000a81548160ff0219169083151502179055506001905090565b611903612447565b73ffffffffffffffffffffffffffffffffffffffff16611921611a86565b73ffffffffffffffffffffffffffffffffffffffff1614611977576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161196e906140b8565b60405180910390fd5b80601660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6119da612447565b73ffffffffffffffffffffffffffffffffffffffff166119f8611a86565b73ffffffffffffffffffffffffffffffffffffffff1614611a4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a45906140b8565b60405180910390fd5b6001600a60016101000a81548160ff0219169083151502179055506001600a60026101000a81548160ff021916908315150217905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b611ade612447565b73ffffffffffffffffffffffffffffffffffffffff16611afc611a86565b73ffffffffffffffffffffffffffffffffffffffff1614611b52576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b49906140b8565b60405180910390fd5b80600a60026101000a81548160ff02191690831515021790555050565b606060048054611b7e9061418c565b80601f0160208091040260200160405190810160405280929190818152602001828054611baa9061418c565b8015611bf75780601f10611bcc57610100808354040283529160200191611bf7565b820191906000526020600020905b815481529060010190602001808311611bda57829003601f168201915b5050505050905090565b611c09612447565b73ffffffffffffffffffffffffffffffffffffffff16611c27611a86565b73ffffffffffffffffffffffffffffffffffffffff1614611c7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c74906140b8565b60405180910390fd5b7f000000000000000000000000a6ed2f188cea511166aac24951aad57a3810186a73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611d0c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d03906145ff565b60405180910390fd5b611d168282613320565b5050565b600f5481565b60145481565b60125481565b60008060016000611d3b612447565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611df8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611def90614691565b60405180910390fd5b611e0c611e03612447565b8585840361244f565b600191505092915050565b6000611e2b611e24612447565b848461261a565b6001905092915050565b60176020528060005260406000206000915054906101000a900460ff1681565b600a60019054906101000a900460ff1681565b611e70612447565b73ffffffffffffffffffffffffffffffffffffffff16611e8e611a86565b73ffffffffffffffffffffffffffffffffffffffff1614611ee4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611edb906140b8565b60405180910390fd5b80601560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051611f819190613dc6565b60405180910390a25050565b611f95612447565b73ffffffffffffffffffffffffffffffffffffffff16611fb3611a86565b73ffffffffffffffffffffffffffffffffffffffff1614612009576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612000906140b8565b60405180910390fd5b670de0b6b3a76400006103e8600561201f610d91565b61202991906141be565b6120339190614247565b61203d9190614247565b81101561207f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161207690614723565b60405180910390fd5b670de0b6b3a76400008161209391906141be565b60098190555050565b600c60009054906101000a900460ff1681565b60075481565b60006120bf612447565b73ffffffffffffffffffffffffffffffffffffffff166120dd611a86565b73ffffffffffffffffffffffffffffffffffffffff1614612133576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161212a906140b8565b60405180910390fd5b620186a06001612141610d91565b61214b91906141be565b6121559190614247565b821015612197576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161218e906147b5565b60405180910390fd5b6103e860086121a4610d91565b6121ae91906141be565b6121b89190614247565b8211156121fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121f190614847565b60405180910390fd5b8160088190555060019050919050565b600d5481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60085481565b60006122a7612447565b73ffffffffffffffffffffffffffffffffffffffff166122c5611a86565b73ffffffffffffffffffffffffffffffffffffffff161461231b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612312906140b8565b60405180910390fd5b6000600c60006101000a81548160ff0219169083151502179055506001905090565b600e5481565b61234b612447565b73ffffffffffffffffffffffffffffffffffffffff16612369611a86565b73ffffffffffffffffffffffffffffffffffffffff16146123bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123b6906140b8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561242f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612426906148d9565b60405180910390fd5b6124388161325a565b50565b60115481565b60095481565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156124bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124b69061496b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561252f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612526906149fd565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161260d9190613e97565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561268a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161268190614a8f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156126fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126f190614b21565b60405180910390fd5b60008114156127145761270f838360006133c1565b613255565b600a60009054906101000a900460ff1615612de357612731611a86565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415801561279f575061276f611a86565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156127d85750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612812575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561282b5750600560149054906101000a900460ff16155b15612de257600a60019054906101000a900460ff1661292557601560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806128e55750601560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b612924576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161291b90614b8d565b60405180910390fd5b5b600c60009054906101000a900460ff1615612af957612942611a86565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141580156129c957507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612a2157507f000000000000000000000000a6ed2f188cea511166aac24951aad57a3810186a73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b15612af857436001600b60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612a739190614107565b10612ab3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612aaa90614c45565b60405180910390fd5b43600b60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b601760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612b9c5750601660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612c4357600754811115612be6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bdd90614cd7565b60405180910390fd5b600954612bf28361178b565b82612bfd9190614107565b1115612c3e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c3590614d43565b60405180910390fd5b612de1565b601760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612ce65750601660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612d3557600754811115612d30576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d2790614dd5565b60405180910390fd5b612de0565b601660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16612ddf57600954612d928361178b565b82612d9d9190614107565b1115612dde576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612dd590614d43565b60405180910390fd5b5b5b5b5b5b6000612dee3061178b565b905060006008548210159050808015612e135750600a60029054906101000a900460ff165b8015612e2c5750600560149054906101000a900460ff16155b8015612e825750601760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612ed85750601560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612f2e5750601560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612f72576001600560146101000a81548160ff021916908315150217905550612f56613642565b6000600560146101000a81548160ff0219169083151502179055505b6000600560149054906101000a900460ff16159050601560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806130285750601560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561303257600090505b6000811561324557601760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561309557506000601054115b1561312f576130c260646130b46010548861384f90919063ffffffff16565b61386590919063ffffffff16565b9050601054601154826130d591906141be565b6130df9190614247565b601360008282546130f09190614107565b925050819055506010546012548261310891906141be565b6131129190614247565b601460008282546131239190614107565b92505081905550613221565b601760008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561318a57506000600d54115b15613220576131b760646131a9600d548861384f90919063ffffffff16565b61386590919063ffffffff16565b9050600d54600e54826131ca91906141be565b6131d49190614247565b601360008282546131e59190614107565b92505081905550600d54600f54826131fd91906141be565b6132079190614247565b601460008282546132189190614107565b925050819055505b5b6000811115613236576132358730836133c1565b5b80856132429190614df5565b94505b6132508787876133c1565b505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80601760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415613431576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161342890614a8f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156134a1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161349890614b21565b60405180910390fd5b6134ac83838361387b565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015613532576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161352990614e9b565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546135c59190614107565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516136299190613e97565b60405180910390a361363c848484613880565b50505050565b600061364d3061178b565b905060006014546013546136619190614107565b90506000808314806136735750600082145b156136805750505061384d565b601460085461368f91906141be565b8311156136a85760146008546136a591906141be565b92505b6000600283601354866136bb91906141be565b6136c59190614247565b6136cf9190614247565b905060006136e6828661388590919063ffffffff16565b905060004790506136f68261389b565b600061370b824761388590919063ffffffff16565b90506000613736876137286014548561384f90919063ffffffff16565b61386590919063ffffffff16565b9050600081836137469190614df5565b905060006013819055506000601481905550600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168260405161379e90614eec565b60006040518083038185875af1925050503d80600081146137db576040519150601f19603f3d011682016040523d82523d6000602084013e6137e0565b606091505b5050809750506000861180156137f65750600081115b15613843576138058682613ae7565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb561858260135460405161383a93929190614f01565b60405180910390a15b5050505050505050505b565b6000818361385d91906141be565b905092915050565b600081836138739190614247565b905092915050565b505050565b505050565b600081836138939190614df5565b905092915050565b6000600267ffffffffffffffff8111156138b8576138b7614f38565b5b6040519080825280602002602001820160405280156138e65781602001602082028036833780820191505090505b50905030816000815181106138fe576138fd614f67565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b15801561399e57600080fd5b505afa1580156139b2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906139d69190614fab565b816001815181106139ea576139e9614f67565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050613a4f307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d8461244f565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401613ab19594939291906150d1565b600060405180830381600087803b158015613acb57600080fd5b505af1158015613adf573d6000803e3d6000fd5b505050505050565b613b12307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d8461244f565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d719823085600080613b5c611a86565b426040518863ffffffff1660e01b8152600401613b7e9695949392919061512b565b6060604051808303818588803b158015613b9757600080fd5b505af1158015613bab573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190613bd0919061518c565b5050505050565b600080fd5b6000819050919050565b613bef81613bdc565b8114613bfa57600080fd5b50565b600081359050613c0c81613be6565b92915050565b60008060408385031215613c2957613c28613bd7565b5b6000613c3785828601613bfd565b9250506020613c4885828601613bfd565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613c8c578082015181840152602081019050613c71565b83811115613c9b576000848401525b50505050565b6000601f19601f8301169050919050565b6000613cbd82613c52565b613cc78185613c5d565b9350613cd7818560208601613c6e565b613ce081613ca1565b840191505092915050565b60006020820190508181036000830152613d058184613cb2565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613d3882613d0d565b9050919050565b613d4881613d2d565b8114613d5357600080fd5b50565b600081359050613d6581613d3f565b92915050565b60008060408385031215613d8257613d81613bd7565b5b6000613d9085828601613d56565b9250506020613da185828601613bfd565b9150509250929050565b60008115159050919050565b613dc081613dab565b82525050565b6000602082019050613ddb6000830184613db7565b92915050565b600060208284031215613df757613df6613bd7565b5b6000613e0584828501613d56565b91505092915050565b6000819050919050565b6000613e33613e2e613e2984613d0d565b613e0e565b613d0d565b9050919050565b6000613e4582613e18565b9050919050565b6000613e5782613e3a565b9050919050565b613e6781613e4c565b82525050565b6000602082019050613e826000830184613e5e565b92915050565b613e9181613bdc565b82525050565b6000602082019050613eac6000830184613e88565b92915050565b600060208284031215613ec857613ec7613bd7565b5b6000613ed684828501613bfd565b91505092915050565b600080600060608486031215613ef857613ef7613bd7565b5b6000613f0686828701613d56565b9350506020613f1786828701613d56565b9250506040613f2886828701613bfd565b9150509250925092565b613f3b81613d2d565b82525050565b6000602082019050613f566000830184613f32565b92915050565b600060ff82169050919050565b613f7281613f5c565b82525050565b6000602082019050613f8d6000830184613f69565b92915050565b60008060408385031215613faa57613fa9613bd7565b5b6000613fb885828601613d56565b9250506020613fc985828601613d56565b9150509250929050565b613fdc81613dab565b8114613fe757600080fd5b50565b600081359050613ff981613fd3565b92915050565b6000806040838503121561401657614015613bd7565b5b600061402485828601613d56565b925050602061403585828601613fea565b9150509250929050565b60006020828403121561405557614054613bd7565b5b600061406384828501613fea565b91505092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006140a2602083613c5d565b91506140ad8261406c565b602082019050919050565b600060208201905081810360008301526140d181614095565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061411282613bdc565b915061411d83613bdc565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614152576141516140d8565b5b828201905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806141a457607f821691505b602082108114156141b8576141b761415d565b5b50919050565b60006141c982613bdc565b91506141d483613bdc565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561420d5761420c6140d8565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061425282613bdc565b915061425d83613bdc565b92508261426d5761426c614218565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20302e31250000000000000000000000000000000000602082015250565b60006142d4602f83613c5d565b91506142df82614278565b604082019050919050565b60006020820190508181036000830152614303816142c7565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b6000614366602883613c5d565b91506143718261430a565b604082019050919050565b6000602082019050818103600083015261439581614359565b9050919050565b7f5f746f6b656e20616464726573732063616e6e6f742062652030000000000000600082015250565b60006143d2601a83613c5d565b91506143dd8261439c565b602082019050919050565b60006020820190508181036000830152614401816143c5565b9050919050565b7f43616e2774207769746864726177206e617469766520746f6b656e7300000000600082015250565b600061443e601c83613c5d565b915061444982614408565b602082019050919050565b6000602082019050818103600083015261446d81614431565b9050919050565b60008151905061448381613be6565b92915050565b60006020828403121561449f5761449e613bd7565b5b60006144ad84828501614474565b91505092915050565b60006040820190506144cb6000830185613f32565b6144d86020830184613e88565b9392505050565b6000815190506144ee81613fd3565b92915050565b60006020828403121561450a57614509613bd7565b5b6000614518848285016144df565b91505092915050565b7f4d757374206b656570206665657320617420313525206f72206c657373000000600082015250565b6000614557601d83613c5d565b915061456282614521565b602082019050919050565b600060208201905081810360008301526145868161454a565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b60006145e9603983613c5d565b91506145f48261458d565b604082019050919050565b60006020820190508181036000830152614618816145dc565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b600061467b602583613c5d565b91506146868261461f565b604082019050919050565b600060208201905081810360008301526146aa8161466e565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b600061470d602483613c5d565b9150614718826146b1565b604082019050919050565b6000602082019050818103600083015261473c81614700565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b600061479f603583613c5d565b91506147aa82614743565b604082019050919050565b600060208201905081810360008301526147ce81614792565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e382520746f74616c20737570706c792e000000000000000000000000602082015250565b6000614831603483613c5d565b915061483c826147d5565b604082019050919050565b6000602082019050818103600083015261486081614824565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006148c3602683613c5d565b91506148ce82614867565b604082019050919050565b600060208201905081810360008301526148f2816148b6565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000614955602483613c5d565b9150614960826148f9565b604082019050919050565b6000602082019050818103600083015261498481614948565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006149e7602283613c5d565b91506149f28261498b565b604082019050919050565b60006020820190508181036000830152614a16816149da565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000614a79602583613c5d565b9150614a8482614a1d565b604082019050919050565b60006020820190508181036000830152614aa881614a6c565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000614b0b602383613c5d565b9150614b1682614aaf565b604082019050919050565b60006020820190508181036000830152614b3a81614afe565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b6000614b77601683613c5d565b9150614b8282614b41565b602082019050919050565b60006020820190508181036000830152614ba681614b6a565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008201527f65642e20204f6e6c79206f6e65207075726368617365207065722074776f206260208201527f6c6f636b7320616c6c6f7765642e000000000000000000000000000000000000604082015250565b6000614c2f604e83613c5d565b9150614c3a82614bad565b606082019050919050565b60006020820190508181036000830152614c5e81614c22565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b6000614cc1603583613c5d565b9150614ccc82614c65565b604082019050919050565b60006020820190508181036000830152614cf081614cb4565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b6000614d2d601383613c5d565b9150614d3882614cf7565b602082019050919050565b60006020820190508181036000830152614d5c81614d20565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b6000614dbf603683613c5d565b9150614dca82614d63565b604082019050919050565b60006020820190508181036000830152614dee81614db2565b9050919050565b6000614e0082613bdc565b9150614e0b83613bdc565b925082821015614e1e57614e1d6140d8565b5b828203905092915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000614e85602683613c5d565b9150614e9082614e29565b604082019050919050565b60006020820190508181036000830152614eb481614e78565b9050919050565b600081905092915050565b50565b6000614ed6600083614ebb565b9150614ee182614ec6565b600082019050919050565b6000614ef782614ec9565b9150819050919050565b6000606082019050614f166000830186613e88565b614f236020830185613e88565b614f306040830184613e88565b949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050614fa581613d3f565b92915050565b600060208284031215614fc157614fc0613bd7565b5b6000614fcf84828501614f96565b91505092915050565b6000819050919050565b6000614ffd614ff8614ff384614fd8565b613e0e565b613bdc565b9050919050565b61500d81614fe2565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61504881613d2d565b82525050565b600061505a838361503f565b60208301905092915050565b6000602082019050919050565b600061507e82615013565b615088818561501e565b93506150938361502f565b8060005b838110156150c45781516150ab888261504e565b97506150b683615066565b925050600181019050615097565b5085935050505092915050565b600060a0820190506150e66000830188613e88565b6150f36020830187615004565b81810360408301526151058186615073565b90506151146060830185613f32565b6151216080830184613e88565b9695505050505050565b600060c0820190506151406000830189613f32565b61514d6020830188613e88565b61515a6040830187615004565b6151676060830186615004565b6151746080830185613f32565b61518160a0830184613e88565b979650505050505050565b6000806000606084860312156151a5576151a4613bd7565b5b60006151b386828701614474565b93505060206151c486828701614474565b92505060406151d586828701614474565b915050925092509256fea264697066735822122026ec2071d3a0094024acc1f9a8584424b20d368a869859448d5b1f8ec40a6b4f64736f6c63430008090033

Deployed Bytecode Sourcemap

30607:15400:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37002:246;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;8566:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10733:169;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31806:63;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30689:51;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9686:108;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37954:157;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31590:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35765:275;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;11384:492;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30792:53;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9528:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12285:215;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45644:358;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45390:246;;;;;;;;;;;;;:::i;:::-;;30747:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31032:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38119:126;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36683:311;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31483:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31112:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9857:127;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2083:103;;;;;;;;;;;;;:::i;:::-;;34873:121;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36312:167;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34709:112;;;;;;;;;;;;;:::i;:::-;;1432:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30884:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36575:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;8785:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37446:304;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31450:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31630:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31556:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13003:413;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10197:175;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32027:57;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31072:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37256:182;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36048:256;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31330:40;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30917:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35260:497;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31379:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10435:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30959:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35055:135;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31413:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2341:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31518:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30999:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37002:246;1663:12;:10;:12::i;:::-;1652:23;;:7;:5;:7::i;:::-;:23;;;1644:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37140:13:::1;37121:16;:32;;;;37177:7;37164:10;:20;;;;37230:10;;37211:16;;:29;;;;:::i;:::-;37195:13;:45;;;;37002:246:::0;;:::o;8566:100::-;8620:13;8653:5;8646:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8566:100;:::o;10733:169::-;10816:4;10833:39;10842:12;:10;:12::i;:::-;10856:7;10865:6;10833:8;:39::i;:::-;10890:4;10883:11;;10733:169;;;;:::o;31806:63::-;;;;;;;;;;;;;;;;;;;;;;:::o;30689:51::-;;;:::o;9686:108::-;9747:7;9774:12;;9767:19;;9686:108;:::o;37954:157::-;1663:12;:10;:12::i;:::-;1652:23;;:7;:5;:7::i;:::-;:23;;;1644:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38061:9:::1;;;;;;;;;;;38033:38;;38050:9;38033:38;;;;;;;;;;;;38094:9;38082;;:21;;;;;;;;;;;;;;;;;;37954:157:::0;:::o;31590:33::-;;;;:::o;35765:275::-;1663:12;:10;:12::i;:::-;1652:23;;:7;:5;:7::i;:::-;:23;;;1644:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;35902:4:::1;35894;35889:1;35873:13;:11;:13::i;:::-;:17;;;;:::i;:::-;35872:26;;;;:::i;:::-;35871:35;;;;:::i;:::-;35861:6;:45;;35839:142;;;;;;;;;;;;:::i;:::-;;;;;;;;;36025:6;36015;:17;;;;:::i;:::-;35992:20;:40;;;;35765:275:::0;:::o;11384:492::-;11524:4;11541:36;11551:6;11559:9;11570:6;11541:9;:36::i;:::-;11590:24;11617:11;:19;11629:6;11617:19;;;;;;;;;;;;;;;:33;11637:12;:10;:12::i;:::-;11617:33;;;;;;;;;;;;;;;;11590:60;;11689:6;11669:16;:26;;11661:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;11776:57;11785:6;11793:12;:10;:12::i;:::-;11826:6;11807:16;:25;11776:8;:57::i;:::-;11864:4;11857:11;;;11384:492;;;;;:::o;30792:53::-;30838:6;30792:53;:::o;9528:93::-;9586:5;9611:2;9604:9;;9528:93;:::o;12285:215::-;12373:4;12390:80;12399:12;:10;:12::i;:::-;12413:7;12459:10;12422:11;:25;12434:12;:10;:12::i;:::-;12422:25;;;;;;;;;;;;;;;:34;12448:7;12422:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;12390:8;:80::i;:::-;12488:4;12481:11;;12285:215;;;;:::o;45644:358::-;1663:12;:10;:12::i;:::-;1652:23;;:7;:5;:7::i;:::-;:23;;;1644:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;45752:1:::1;45734:20;;:6;:20;;;;45726:59;;;;;;;;;;;;:::i;:::-;;;;;;;;;45822:4;45804:23;;:6;:23;;;;45796:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;45871:24;45905:6;45898:24;;;45931:4;45898:39;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;45871:66;;45955:6;45948:23;;;45972:3;45977:16;45948:46;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;45715:287;45644:358:::0;;:::o;45390:246::-;1663:12;:10;:12::i;:::-;1652:23;;:7;:5;:7::i;:::-;:23;;;1644:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;45440:15:::1;45473:4;45458:31;;;45498:4;45458:46;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;45440:64;;45530:4;45515:30;;;45546:10;45558:7;45515:51;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;45585:10;45577:28;;:51;45606:21;45577:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;45429:207;45390:246::o:0;30747:38::-;;;:::o;31032:33::-;;;;;;;;;;;;;:::o;38119:126::-;38185:4;38209:19;:28;38229:7;38209:28;;;;;;;;;;;;;;;;;;;;;;;;;38202:35;;38119:126;;;:::o;36683:311::-;1663:12;:10;:12::i;:::-;1652:23;;:7;:5;:7::i;:::-;:23;;;1644:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;36819:13:::1;36801:15;:31;;;;36855:7;36843:9;:19;;;;36906:9;;36888:15;;:27;;;;:::i;:::-;36873:12;:42;;;;36950:2;36934:12;;:18;;36926:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;36683:311:::0;;:::o;31483:28::-;;;;:::o;31112:31::-;;;;;;;;;;;;;:::o;9857:127::-;9931:7;9958:9;:18;9968:7;9958:18;;;;;;;;;;;;;;;;9951:25;;9857:127;;;:::o;2083:103::-;1663:12;:10;:12::i;:::-;1652:23;;:7;:5;:7::i;:::-;:23;;;1644:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2148:30:::1;2175:1;2148:18;:30::i;:::-;2083:103::o:0;34873:121::-;34925:4;1663:12;:10;:12::i;:::-;1652:23;;:7;:5;:7::i;:::-;:23;;;1644:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;34959:5:::1;34942:14;;:22;;;;;;;;;;;;;;;;;;34982:4;34975:11;;34873:121:::0;:::o;36312:167::-;1663:12;:10;:12::i;:::-;1652:23;;:7;:5;:7::i;:::-;:23;;;1644:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;36467:4:::1;36425:31;:39;36457:6;36425:39;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;36312:167:::0;;:::o;34709:112::-;1663:12;:10;:12::i;:::-;1652:23;;:7;:5;:7::i;:::-;:23;;;1644:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;34780:4:::1;34764:13;;:20;;;;;;;;;;;;;;;;;;34809:4;34795:11;;:18;;;;;;;;;;;;;;;;;;34709:112::o:0;1432:87::-;1478:7;1505:6;;;;;;;;;;;1498:13;;1432:87;:::o;30884:24::-;;;;;;;;;;;;;:::o;36575:100::-;1663:12;:10;:12::i;:::-;1652:23;;:7;:5;:7::i;:::-;:23;;;1644:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;36660:7:::1;36646:11;;:21;;;;;;;;;;;;;;;;;;36575:100:::0;:::o;8785:104::-;8841:13;8874:7;8867:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8785:104;:::o;37446:304::-;1663:12;:10;:12::i;:::-;1652:23;;:7;:5;:7::i;:::-;:23;;;1644:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37590:13:::1;37582:21;;:4;:21;;;;37560:128;;;;;;;;;;;;:::i;:::-;;;;;;;;;37701:41;37730:4;37736:5;37701:28;:41::i;:::-;37446:304:::0;;:::o;31450:24::-;;;;:::o;31630:27::-;;;;:::o;31556:25::-;;;;:::o;13003:413::-;13096:4;13113:24;13140:11;:25;13152:12;:10;:12::i;:::-;13140:25;;;;;;;;;;;;;;;:34;13166:7;13140:34;;;;;;;;;;;;;;;;13113:61;;13213:15;13193:16;:35;;13185:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;13306:67;13315:12;:10;:12::i;:::-;13329:7;13357:15;13338:16;:34;13306:8;:67::i;:::-;13404:4;13397:11;;;13003:413;;;;:::o;10197:175::-;10283:4;10300:42;10310:12;:10;:12::i;:::-;10324:9;10335:6;10300:9;:42::i;:::-;10360:4;10353:11;;10197:175;;;;:::o;32027:57::-;;;;;;;;;;;;;;;;;;;;;;:::o;31072:33::-;;;;;;;;;;;;;:::o;37256:182::-;1663:12;:10;:12::i;:::-;1652:23;;:7;:5;:7::i;:::-;:23;;;1644:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37372:8:::1;37341:19;:28;37361:7;37341:28;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;37412:7;37396:34;;;37421:8;37396:34;;;;;;:::i;:::-;;;;;;;;37256:182:::0;;:::o;36048:256::-;1663:12;:10;:12::i;:::-;1652:23;;:7;:5;:7::i;:::-;:23;;;1644:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;36188:4:::1;36180;36175:1;36159:13;:11;:13::i;:::-;:17;;;;:::i;:::-;36158:26;;;;:::i;:::-;36157:35;;;;:::i;:::-;36147:6;:45;;36125:131;;;;;;;;;;;;:::i;:::-;;;;;;;;;36289:6;36279;:17;;;;:::i;:::-;36267:9;:29;;;;36048:256:::0;:::o;31330:40::-;;;;;;;;;;;;;:::o;30917:35::-;;;;:::o;35260:497::-;35368:4;1663:12;:10;:12::i;:::-;1652:23;;:7;:5;:7::i;:::-;:23;;;1644:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;35447:6:::1;35442:1;35426:13;:11;:13::i;:::-;:17;;;;:::i;:::-;35425:28;;;;:::i;:::-;35412:9;:41;;35390:144;;;;;;;;;;;;:::i;:::-;;;;;;;;;35602:4;35597:1;35581:13;:11;:13::i;:::-;:17;;;;:::i;:::-;35580:26;;;;:::i;:::-;35567:9;:39;;35545:141;;;;;;;;;;;;:::i;:::-;;;;;;;;;35718:9;35697:18;:30;;;;35745:4;35738:11;;35260:497:::0;;;:::o;31379:27::-;;;;:::o;10435:151::-;10524:7;10551:11;:18;10563:5;10551:18;;;;;;;;;;;;;;;:27;10570:7;10551:27;;;;;;;;;;;;;;;;10544:34;;10435:151;;;;:::o;30959:33::-;;;;:::o;35055:135::-;35115:4;1663:12;:10;:12::i;:::-;1652:23;;:7;:5;:7::i;:::-;:23;;;1644:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;35155:5:::1;35132:20;;:28;;;;;;;;;;;;;;;;;;35178:4;35171:11;;35055:135:::0;:::o;31413:30::-;;;;:::o;2341:201::-;1663:12;:10;:12::i;:::-;1652:23;;:7;:5;:7::i;:::-;:23;;;1644:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2450:1:::1;2430:22;;:8;:22;;;;2422:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;2506:28;2525:8;2506:18;:28::i;:::-;2341:201:::0;:::o;31518:31::-;;;;:::o;30999:24::-;;;;:::o;299:98::-;352:7;379:10;372:17;;299:98;:::o;16687:380::-;16840:1;16823:19;;:5;:19;;;;16815:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;16921:1;16902:21;;:7;:21;;;;16894:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;17005:6;16975:11;:18;16987:5;16975:18;;;;;;;;;;;;;;;:27;16994:7;16975:27;;;;;;;;;;;;;;;:36;;;;17043:7;17027:32;;17036:5;17027:32;;;17052:6;17027:32;;;;;;:::i;:::-;;;;;;;;16687:380;;;:::o;38253:4564::-;38401:1;38385:18;;:4;:18;;;;38377:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38478:1;38464:16;;:2;:16;;;;38456:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;38547:1;38537:6;:11;38533:93;;;38565:28;38581:4;38587:2;38591:1;38565:15;:28::i;:::-;38608:7;;38533:93;38642:14;;;;;;;;;;;38638:2496;;;38703:7;:5;:7::i;:::-;38695:15;;:4;:15;;;;:49;;;;;38737:7;:5;:7::i;:::-;38731:13;;:2;:13;;;;38695:49;:86;;;;;38779:1;38765:16;;:2;:16;;;;38695:86;:128;;;;;38816:6;38802:21;;:2;:21;;;;38695:128;:158;;;;;38845:8;;;;;;;;;;;38844:9;38695:158;38673:2450;;;38893:13;;;;;;;;;;;38888:223;;38965:19;:25;38985:4;38965:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;38994:19;:23;39014:2;38994:23;;;;;;;;;;;;;;;;;;;;;;;;;38965:52;38931:160;;;;;;;;;;;;:::i;:::-;;;;;;;;;38888:223;39267:20;;;;;;;;;;;39263:650;;;39348:7;:5;:7::i;:::-;39342:13;;:2;:13;;;;:72;;;;;39398:15;39384:30;;:2;:30;;;;39342:72;:129;;;;;39457:13;39443:28;;:2;:28;;;;39342:129;39312:582;;;39639:12;39602:1;39560:28;:39;39589:9;39560:39;;;;;;;;;;;;;;;;:43;;;;:::i;:::-;:91;39522:267;;;;;;;;;;;;:::i;:::-;;;;;;;;;39858:12;39816:28;:39;39845:9;39816:39;;;;;;;;;;;;;;;:54;;;;39312:582;39263:650;39987:25;:31;40013:4;39987:31;;;;;;;;;;;;;;;;;;;;;;;;;:92;;;;;40044:31;:35;40076:2;40044:35;;;;;;;;;;;;;;;;;;;;;;;;;40043:36;39987:92;39961:1147;;;40166:20;;40156:6;:30;;40122:169;;;;;;;;;;;;:::i;:::-;;;;;;;;;40374:9;;40357:13;40367:2;40357:9;:13::i;:::-;40348:6;:22;;;;:::i;:::-;:35;;40314:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;39961:1147;;;40552:25;:29;40578:2;40552:29;;;;;;;;;;;;;;;;;;;;;;;;;:92;;;;;40607:31;:37;40639:4;40607:37;;;;;;;;;;;;;;;;;;;;;;;;;40606:38;40552:92;40526:582;;;40731:20;;40721:6;:30;;40687:170;;;;;;;;;;;;:::i;:::-;;;;;;;;;40526:582;;;40888:31;:35;40920:2;40888:35;;;;;;;;;;;;;;;;;;;;;;;;;40883:225;;41008:9;;40991:13;41001:2;40991:9;:13::i;:::-;40982:6;:22;;;;:::i;:::-;:35;;40948:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;40883:225;40526:582;39961:1147;38673:2450;38638:2496;41146:28;41177:24;41195:4;41177:9;:24::i;:::-;41146:55;;41214:12;41253:18;;41229:20;:42;;41214:57;;41302:7;:35;;;;;41326:11;;;;;;;;;;;41302:35;:61;;;;;41355:8;;;;;;;;;;;41354:9;41302:61;:110;;;;;41381:25;:31;41407:4;41381:31;;;;;;;;;;;;;;;;;;;;;;;;;41380:32;41302:110;:153;;;;;41430:19;:25;41450:4;41430:25;;;;;;;;;;;;;;;;;;;;;;;;;41429:26;41302:153;:194;;;;;41473:19;:23;41493:2;41473:23;;;;;;;;;;;;;;;;;;;;;;;;;41472:24;41302:194;41284:326;;;41534:4;41523:8;;:15;;;;;;;;;;;;;;;;;;41555:10;:8;:10::i;:::-;41593:5;41582:8;;:16;;;;;;;;;;;;;;;;;;41284:326;41622:12;41638:8;;;;;;;;;;;41637:9;41622:24;;41748:19;:25;41768:4;41748:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;41777:19;:23;41797:2;41777:23;;;;;;;;;;;;;;;;;;;;;;;;;41748:52;41744:100;;;41827:5;41817:15;;41744:100;41856:12;41961:7;41957:807;;;42013:25;:29;42039:2;42013:29;;;;;;;;;;;;;;;;;;;;;;;;;:50;;;;;42062:1;42046:13;;:17;42013:50;42009:606;;;42091:34;42121:3;42091:25;42102:13;;42091:6;:10;;:25;;;;:::i;:::-;:29;;:34;;;;:::i;:::-;42084:41;;42194:13;;42174:16;;42167:4;:23;;;;:::i;:::-;42166:41;;;;:::i;:::-;42144:18;;:63;;;;;;;:::i;:::-;;;;;;;;42264:13;;42250:10;;42243:4;:17;;;;:::i;:::-;42242:35;;;;:::i;:::-;42226:12;;:51;;;;;;;:::i;:::-;;;;;;;;42009:606;;;42339:25;:31;42365:4;42339:31;;;;;;;;;;;;;;;;;;;;;;;;;:51;;;;;42389:1;42374:12;;:16;42339:51;42335:280;;;42418:33;42447:3;42418:24;42429:12;;42418:6;:10;;:24;;;;:::i;:::-;:28;;:33;;;;:::i;:::-;42411:40;;42519:12;;42500:15;;42493:4;:22;;;;:::i;:::-;42492:39;;;;:::i;:::-;42470:18;;:61;;;;;;;:::i;:::-;;;;;;;;42587:12;;42574:9;;42567:4;:16;;;;:::i;:::-;42566:33;;;;:::i;:::-;42550:12;;:49;;;;;;;:::i;:::-;;;;;;;;42335:280;42009:606;42642:1;42635:4;:8;42631:91;;;42664:42;42680:4;42694;42701;42664:15;:42::i;:::-;42631:91;42748:4;42738:14;;;;;:::i;:::-;;;41957:807;42776:33;42792:4;42798:2;42802:6;42776:15;:33::i;:::-;38366:4451;;;;38253:4564;;;;:::o;2702:191::-;2776:16;2795:6;;;;;;;;;;;2776:25;;2821:8;2812:6;;:17;;;;;;;;;;;;;;;;;;2876:8;2845:40;;2866:8;2845:40;;;;;;;;;;;;2765:128;2702:191;:::o;37758:188::-;37875:5;37841:25;:31;37867:4;37841:31;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;37932:5;37898:40;;37926:4;37898:40;;;;;;;;;;;;37758:188;;:::o;13906:733::-;14064:1;14046:20;;:6;:20;;;;14038:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;14148:1;14127:23;;:9;:23;;;;14119:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;14203:47;14224:6;14232:9;14243:6;14203:20;:47::i;:::-;14263:21;14287:9;:17;14297:6;14287:17;;;;;;;;;;;;;;;;14263:41;;14340:6;14323:13;:23;;14315:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;14461:6;14445:13;:22;14425:9;:17;14435:6;14425:17;;;;;;;;;;;;;;;:42;;;;14513:6;14489:9;:20;14499:9;14489:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;14554:9;14537:35;;14546:6;14537:35;;;14565:6;14537:35;;;;;;:::i;:::-;;;;;;;;14585:46;14605:6;14613:9;14624:6;14585:19;:46::i;:::-;14027:612;13906:733;;;:::o;43943:1439::-;43982:23;44008:24;44026:4;44008:9;:24::i;:::-;43982:50;;44043:25;44105:12;;44071:18;;:46;;;;:::i;:::-;44043:74;;44128:12;44176:1;44157:15;:20;:46;;;;44202:1;44181:17;:22;44157:46;44153:85;;;44220:7;;;;;44153:85;44293:2;44272:18;;:23;;;;:::i;:::-;44254:15;:41;44250:115;;;44351:2;44330:18;;:23;;;;:::i;:::-;44312:41;;44250:115;44426:23;44539:1;44506:17;44471:18;;44453:15;:36;;;;:::i;:::-;44452:71;;;;:::i;:::-;:88;;;;:::i;:::-;44426:114;;44551:26;44580:36;44600:15;44580;:19;;:36;;;;:::i;:::-;44551:65;;44629:25;44657:21;44629:49;;44691:36;44708:18;44691:16;:36::i;:::-;44740:18;44761:44;44787:17;44761:21;:25;;:44;;;;:::i;:::-;44740:65;;44818:17;44838:51;44871:17;44838:28;44853:12;;44838:10;:14;;:28;;;;:::i;:::-;:32;;:51;;;;:::i;:::-;44818:71;;44902:23;44941:9;44928:10;:22;;;;:::i;:::-;44902:48;;44984:1;44963:18;:22;;;;45011:1;44996:12;:16;;;;45047:9;;;;;;;;;;;45039:23;;45070:9;45039:45;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45025:59;;;;;45119:1;45101:15;:19;:42;;;;;45142:1;45124:15;:19;45101:42;45097:278;;;45160:46;45173:15;45190;45160:12;:46::i;:::-;45226:137;45259:18;45296:15;45330:18;;45226:137;;;;;;;;:::i;:::-;;;;;;;;45097:278;43971:1411;;;;;;;;;43943:1439;:::o;21819:98::-;21877:7;21908:1;21904;:5;;;;:::i;:::-;21897:12;;21819:98;;;;:::o;22218:::-;22276:7;22307:1;22303;:5;;;;:::i;:::-;22296:12;;22218:98;;;;:::o;17667:125::-;;;;:::o;18396:124::-;;;;:::o;21462:98::-;21520:7;21551:1;21547;:5;;;;:::i;:::-;21540:12;;21462:98;;;;:::o;42825:589::-;42951:21;42989:1;42975:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42951:40;;43020:4;43002;43007:1;43002:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;;;43046:15;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;43036:4;43041:1;43036:7;;;;;;;;:::i;:::-;;;;;;;:32;;;;;;;;;;;43081:62;43098:4;43113:15;43131:11;43081:8;:62::i;:::-;43182:15;:66;;;43263:11;43289:1;43333:4;43360;43380:15;43182:224;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42880:534;42825:589;:::o;43422:513::-;43570:62;43587:4;43602:15;43620:11;43570:8;:62::i;:::-;43675:15;:31;;;43714:9;43747:4;43767:11;43793:1;43836;43879:7;:5;:7::i;:::-;43901:15;43675:252;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;43422:513;;:::o;88:117:1:-;197:1;194;187:12;334:77;371:7;400:5;389:16;;334:77;;;:::o;417:122::-;490:24;508:5;490:24;:::i;:::-;483:5;480:35;470:63;;529:1;526;519:12;470:63;417:122;:::o;545:139::-;591:5;629:6;616:20;607:29;;645:33;672:5;645:33;:::i;:::-;545:139;;;;:::o;690:474::-;758:6;766;815:2;803:9;794:7;790:23;786:32;783:119;;;821:79;;:::i;:::-;783:119;941:1;966:53;1011:7;1002:6;991:9;987:22;966:53;:::i;:::-;956:63;;912:117;1068:2;1094:53;1139:7;1130:6;1119:9;1115:22;1094:53;:::i;:::-;1084:63;;1039:118;690:474;;;;;:::o;1170:99::-;1222:6;1256:5;1250:12;1240:22;;1170:99;;;:::o;1275:169::-;1359:11;1393:6;1388:3;1381:19;1433:4;1428:3;1424:14;1409:29;;1275:169;;;;:::o;1450:307::-;1518:1;1528:113;1542:6;1539:1;1536:13;1528:113;;;1627:1;1622:3;1618:11;1612:18;1608:1;1603:3;1599:11;1592:39;1564:2;1561:1;1557:10;1552:15;;1528:113;;;1659:6;1656:1;1653:13;1650:101;;;1739:1;1730:6;1725:3;1721:16;1714:27;1650:101;1499:258;1450:307;;;:::o;1763:102::-;1804:6;1855:2;1851:7;1846:2;1839:5;1835:14;1831:28;1821:38;;1763:102;;;:::o;1871:364::-;1959:3;1987:39;2020:5;1987:39;:::i;:::-;2042:71;2106:6;2101:3;2042:71;:::i;:::-;2035:78;;2122:52;2167:6;2162:3;2155:4;2148:5;2144:16;2122:52;:::i;:::-;2199:29;2221:6;2199:29;:::i;:::-;2194:3;2190:39;2183:46;;1963:272;1871:364;;;;:::o;2241:313::-;2354:4;2392:2;2381:9;2377:18;2369:26;;2441:9;2435:4;2431:20;2427:1;2416:9;2412:17;2405:47;2469:78;2542:4;2533:6;2469:78;:::i;:::-;2461:86;;2241:313;;;;:::o;2560:126::-;2597:7;2637:42;2630:5;2626:54;2615:65;;2560:126;;;:::o;2692:96::-;2729:7;2758:24;2776:5;2758:24;:::i;:::-;2747:35;;2692:96;;;:::o;2794:122::-;2867:24;2885:5;2867:24;:::i;:::-;2860:5;2857:35;2847:63;;2906:1;2903;2896:12;2847:63;2794:122;:::o;2922:139::-;2968:5;3006:6;2993:20;2984:29;;3022:33;3049:5;3022:33;:::i;:::-;2922:139;;;;:::o;3067:474::-;3135:6;3143;3192:2;3180:9;3171:7;3167:23;3163:32;3160:119;;;3198:79;;:::i;:::-;3160:119;3318:1;3343:53;3388:7;3379:6;3368:9;3364:22;3343:53;:::i;:::-;3333:63;;3289:117;3445:2;3471:53;3516:7;3507:6;3496:9;3492:22;3471:53;:::i;:::-;3461:63;;3416:118;3067:474;;;;;:::o;3547:90::-;3581:7;3624:5;3617:13;3610:21;3599:32;;3547:90;;;:::o;3643:109::-;3724:21;3739:5;3724:21;:::i;:::-;3719:3;3712:34;3643:109;;:::o;3758:210::-;3845:4;3883:2;3872:9;3868:18;3860:26;;3896:65;3958:1;3947:9;3943:17;3934:6;3896:65;:::i;:::-;3758:210;;;;:::o;3974:329::-;4033:6;4082:2;4070:9;4061:7;4057:23;4053:32;4050:119;;;4088:79;;:::i;:::-;4050:119;4208:1;4233:53;4278:7;4269:6;4258:9;4254:22;4233:53;:::i;:::-;4223:63;;4179:117;3974:329;;;;:::o;4309:60::-;4337:3;4358:5;4351:12;;4309:60;;;:::o;4375:142::-;4425:9;4458:53;4476:34;4485:24;4503:5;4485:24;:::i;:::-;4476:34;:::i;:::-;4458:53;:::i;:::-;4445:66;;4375:142;;;:::o;4523:126::-;4573:9;4606:37;4637:5;4606:37;:::i;:::-;4593:50;;4523:126;;;:::o;4655:153::-;4732:9;4765:37;4796:5;4765:37;:::i;:::-;4752:50;;4655:153;;;:::o;4814:185::-;4928:64;4986:5;4928:64;:::i;:::-;4923:3;4916:77;4814:185;;:::o;5005:276::-;5125:4;5163:2;5152:9;5148:18;5140:26;;5176:98;5271:1;5260:9;5256:17;5247:6;5176:98;:::i;:::-;5005:276;;;;:::o;5287:118::-;5374:24;5392:5;5374:24;:::i;:::-;5369:3;5362:37;5287:118;;:::o;5411:222::-;5504:4;5542:2;5531:9;5527:18;5519:26;;5555:71;5623:1;5612:9;5608:17;5599:6;5555:71;:::i;:::-;5411:222;;;;:::o;5639:329::-;5698:6;5747:2;5735:9;5726:7;5722:23;5718:32;5715:119;;;5753:79;;:::i;:::-;5715:119;5873:1;5898:53;5943:7;5934:6;5923:9;5919:22;5898:53;:::i;:::-;5888:63;;5844:117;5639:329;;;;:::o;5974:619::-;6051:6;6059;6067;6116:2;6104:9;6095:7;6091:23;6087:32;6084:119;;;6122:79;;:::i;:::-;6084:119;6242:1;6267:53;6312:7;6303:6;6292:9;6288:22;6267:53;:::i;:::-;6257:63;;6213:117;6369:2;6395:53;6440:7;6431:6;6420:9;6416:22;6395:53;:::i;:::-;6385:63;;6340:118;6497:2;6523:53;6568:7;6559:6;6548:9;6544:22;6523:53;:::i;:::-;6513:63;;6468:118;5974:619;;;;;:::o;6599:118::-;6686:24;6704:5;6686:24;:::i;:::-;6681:3;6674:37;6599:118;;:::o;6723:222::-;6816:4;6854:2;6843:9;6839:18;6831:26;;6867:71;6935:1;6924:9;6920:17;6911:6;6867:71;:::i;:::-;6723:222;;;;:::o;6951:86::-;6986:7;7026:4;7019:5;7015:16;7004:27;;6951:86;;;:::o;7043:112::-;7126:22;7142:5;7126:22;:::i;:::-;7121:3;7114:35;7043:112;;:::o;7161:214::-;7250:4;7288:2;7277:9;7273:18;7265:26;;7301:67;7365:1;7354:9;7350:17;7341:6;7301:67;:::i;:::-;7161:214;;;;:::o;7381:474::-;7449:6;7457;7506:2;7494:9;7485:7;7481:23;7477:32;7474:119;;;7512:79;;:::i;:::-;7474:119;7632:1;7657:53;7702:7;7693:6;7682:9;7678:22;7657:53;:::i;:::-;7647:63;;7603:117;7759:2;7785:53;7830:7;7821:6;7810:9;7806:22;7785:53;:::i;:::-;7775:63;;7730:118;7381:474;;;;;:::o;7861:116::-;7931:21;7946:5;7931:21;:::i;:::-;7924:5;7921:32;7911:60;;7967:1;7964;7957:12;7911:60;7861:116;:::o;7983:133::-;8026:5;8064:6;8051:20;8042:29;;8080:30;8104:5;8080:30;:::i;:::-;7983:133;;;;:::o;8122:468::-;8187:6;8195;8244:2;8232:9;8223:7;8219:23;8215:32;8212:119;;;8250:79;;:::i;:::-;8212:119;8370:1;8395:53;8440:7;8431:6;8420:9;8416:22;8395:53;:::i;:::-;8385:63;;8341:117;8497:2;8523:50;8565:7;8556:6;8545:9;8541:22;8523:50;:::i;:::-;8513:60;;8468:115;8122:468;;;;;:::o;8596:323::-;8652:6;8701:2;8689:9;8680:7;8676:23;8672:32;8669:119;;;8707:79;;:::i;:::-;8669:119;8827:1;8852:50;8894:7;8885:6;8874:9;8870:22;8852:50;:::i;:::-;8842:60;;8798:114;8596:323;;;;:::o;8925:182::-;9065:34;9061:1;9053:6;9049:14;9042:58;8925:182;:::o;9113:366::-;9255:3;9276:67;9340:2;9335:3;9276:67;:::i;:::-;9269:74;;9352:93;9441:3;9352:93;:::i;:::-;9470:2;9465:3;9461:12;9454:19;;9113:366;;;:::o;9485:419::-;9651:4;9689:2;9678:9;9674:18;9666:26;;9738:9;9732:4;9728:20;9724:1;9713:9;9709:17;9702:47;9766:131;9892:4;9766:131;:::i;:::-;9758:139;;9485:419;;;:::o;9910:180::-;9958:77;9955:1;9948:88;10055:4;10052:1;10045:15;10079:4;10076:1;10069:15;10096:305;10136:3;10155:20;10173:1;10155:20;:::i;:::-;10150:25;;10189:20;10207:1;10189:20;:::i;:::-;10184:25;;10343:1;10275:66;10271:74;10268:1;10265:81;10262:107;;;10349:18;;:::i;:::-;10262:107;10393:1;10390;10386:9;10379:16;;10096:305;;;;:::o;10407:180::-;10455:77;10452:1;10445:88;10552:4;10549:1;10542:15;10576:4;10573:1;10566:15;10593:320;10637:6;10674:1;10668:4;10664:12;10654:22;;10721:1;10715:4;10711:12;10742:18;10732:81;;10798:4;10790:6;10786:17;10776:27;;10732:81;10860:2;10852:6;10849:14;10829:18;10826:38;10823:84;;;10879:18;;:::i;:::-;10823:84;10644:269;10593:320;;;:::o;10919:348::-;10959:7;10982:20;11000:1;10982:20;:::i;:::-;10977:25;;11016:20;11034:1;11016:20;:::i;:::-;11011:25;;11204:1;11136:66;11132:74;11129:1;11126:81;11121:1;11114:9;11107:17;11103:105;11100:131;;;11211:18;;:::i;:::-;11100:131;11259:1;11256;11252:9;11241:20;;10919:348;;;;:::o;11273:180::-;11321:77;11318:1;11311:88;11418:4;11415:1;11408:15;11442:4;11439:1;11432:15;11459:185;11499:1;11516:20;11534:1;11516:20;:::i;:::-;11511:25;;11550:20;11568:1;11550:20;:::i;:::-;11545:25;;11589:1;11579:35;;11594:18;;:::i;:::-;11579:35;11636:1;11633;11629:9;11624:14;;11459:185;;;;:::o;11650:234::-;11790:34;11786:1;11778:6;11774:14;11767:58;11859:17;11854:2;11846:6;11842:15;11835:42;11650:234;:::o;11890:366::-;12032:3;12053:67;12117:2;12112:3;12053:67;:::i;:::-;12046:74;;12129:93;12218:3;12129:93;:::i;:::-;12247:2;12242:3;12238:12;12231:19;;11890:366;;;:::o;12262:419::-;12428:4;12466:2;12455:9;12451:18;12443:26;;12515:9;12509:4;12505:20;12501:1;12490:9;12486:17;12479:47;12543:131;12669:4;12543:131;:::i;:::-;12535:139;;12262:419;;;:::o;12687:227::-;12827:34;12823:1;12815:6;12811:14;12804:58;12896:10;12891:2;12883:6;12879:15;12872:35;12687:227;:::o;12920:366::-;13062:3;13083:67;13147:2;13142:3;13083:67;:::i;:::-;13076:74;;13159:93;13248:3;13159:93;:::i;:::-;13277:2;13272:3;13268:12;13261:19;;12920:366;;;:::o;13292:419::-;13458:4;13496:2;13485:9;13481:18;13473:26;;13545:9;13539:4;13535:20;13531:1;13520:9;13516:17;13509:47;13573:131;13699:4;13573:131;:::i;:::-;13565:139;;13292:419;;;:::o;13717:176::-;13857:28;13853:1;13845:6;13841:14;13834:52;13717:176;:::o;13899:366::-;14041:3;14062:67;14126:2;14121:3;14062:67;:::i;:::-;14055:74;;14138:93;14227:3;14138:93;:::i;:::-;14256:2;14251:3;14247:12;14240:19;;13899:366;;;:::o;14271:419::-;14437:4;14475:2;14464:9;14460:18;14452:26;;14524:9;14518:4;14514:20;14510:1;14499:9;14495:17;14488:47;14552:131;14678:4;14552:131;:::i;:::-;14544:139;;14271:419;;;:::o;14696:178::-;14836:30;14832:1;14824:6;14820:14;14813:54;14696:178;:::o;14880:366::-;15022:3;15043:67;15107:2;15102:3;15043:67;:::i;:::-;15036:74;;15119:93;15208:3;15119:93;:::i;:::-;15237:2;15232:3;15228:12;15221:19;;14880:366;;;:::o;15252:419::-;15418:4;15456:2;15445:9;15441:18;15433:26;;15505:9;15499:4;15495:20;15491:1;15480:9;15476:17;15469:47;15533:131;15659:4;15533:131;:::i;:::-;15525:139;;15252:419;;;:::o;15677:143::-;15734:5;15765:6;15759:13;15750:22;;15781:33;15808:5;15781:33;:::i;:::-;15677:143;;;;:::o;15826:351::-;15896:6;15945:2;15933:9;15924:7;15920:23;15916:32;15913:119;;;15951:79;;:::i;:::-;15913:119;16071:1;16096:64;16152:7;16143:6;16132:9;16128:22;16096:64;:::i;:::-;16086:74;;16042:128;15826:351;;;;:::o;16183:332::-;16304:4;16342:2;16331:9;16327:18;16319:26;;16355:71;16423:1;16412:9;16408:17;16399:6;16355:71;:::i;:::-;16436:72;16504:2;16493:9;16489:18;16480:6;16436:72;:::i;:::-;16183:332;;;;;:::o;16521:137::-;16575:5;16606:6;16600:13;16591:22;;16622:30;16646:5;16622:30;:::i;:::-;16521:137;;;;:::o;16664:345::-;16731:6;16780:2;16768:9;16759:7;16755:23;16751:32;16748:119;;;16786:79;;:::i;:::-;16748:119;16906:1;16931:61;16984:7;16975:6;16964:9;16960:22;16931:61;:::i;:::-;16921:71;;16877:125;16664:345;;;;:::o;17015:179::-;17155:31;17151:1;17143:6;17139:14;17132:55;17015:179;:::o;17200:366::-;17342:3;17363:67;17427:2;17422:3;17363:67;:::i;:::-;17356:74;;17439:93;17528:3;17439:93;:::i;:::-;17557:2;17552:3;17548:12;17541:19;;17200:366;;;:::o;17572:419::-;17738:4;17776:2;17765:9;17761:18;17753:26;;17825:9;17819:4;17815:20;17811:1;17800:9;17796:17;17789:47;17853:131;17979:4;17853:131;:::i;:::-;17845:139;;17572:419;;;:::o;17997:244::-;18137:34;18133:1;18125:6;18121:14;18114:58;18206:27;18201:2;18193:6;18189:15;18182:52;17997:244;:::o;18247:366::-;18389:3;18410:67;18474:2;18469:3;18410:67;:::i;:::-;18403:74;;18486:93;18575:3;18486:93;:::i;:::-;18604:2;18599:3;18595:12;18588:19;;18247:366;;;:::o;18619:419::-;18785:4;18823:2;18812:9;18808:18;18800:26;;18872:9;18866:4;18862:20;18858:1;18847:9;18843:17;18836:47;18900:131;19026:4;18900:131;:::i;:::-;18892:139;;18619:419;;;:::o;19044:224::-;19184:34;19180:1;19172:6;19168:14;19161:58;19253:7;19248:2;19240:6;19236:15;19229:32;19044:224;:::o;19274:366::-;19416:3;19437:67;19501:2;19496:3;19437:67;:::i;:::-;19430:74;;19513:93;19602:3;19513:93;:::i;:::-;19631:2;19626:3;19622:12;19615:19;;19274:366;;;:::o;19646:419::-;19812:4;19850:2;19839:9;19835:18;19827:26;;19899:9;19893:4;19889:20;19885:1;19874:9;19870:17;19863:47;19927:131;20053:4;19927:131;:::i;:::-;19919:139;;19646:419;;;:::o;20071:223::-;20211:34;20207:1;20199:6;20195:14;20188:58;20280:6;20275:2;20267:6;20263:15;20256:31;20071:223;:::o;20300:366::-;20442:3;20463:67;20527:2;20522:3;20463:67;:::i;:::-;20456:74;;20539:93;20628:3;20539:93;:::i;:::-;20657:2;20652:3;20648:12;20641:19;;20300:366;;;:::o;20672:419::-;20838:4;20876:2;20865:9;20861:18;20853:26;;20925:9;20919:4;20915:20;20911:1;20900:9;20896:17;20889:47;20953:131;21079:4;20953:131;:::i;:::-;20945:139;;20672:419;;;:::o;21097:240::-;21237:34;21233:1;21225:6;21221:14;21214:58;21306:23;21301:2;21293:6;21289:15;21282:48;21097:240;:::o;21343:366::-;21485:3;21506:67;21570:2;21565:3;21506:67;:::i;:::-;21499:74;;21582:93;21671:3;21582:93;:::i;:::-;21700:2;21695:3;21691:12;21684:19;;21343:366;;;:::o;21715:419::-;21881:4;21919:2;21908:9;21904:18;21896:26;;21968:9;21962:4;21958:20;21954:1;21943:9;21939:17;21932:47;21996:131;22122:4;21996:131;:::i;:::-;21988:139;;21715:419;;;:::o;22140:239::-;22280:34;22276:1;22268:6;22264:14;22257:58;22349:22;22344:2;22336:6;22332:15;22325:47;22140:239;:::o;22385:366::-;22527:3;22548:67;22612:2;22607:3;22548:67;:::i;:::-;22541:74;;22624:93;22713:3;22624:93;:::i;:::-;22742:2;22737:3;22733:12;22726:19;;22385:366;;;:::o;22757:419::-;22923:4;22961:2;22950:9;22946:18;22938:26;;23010:9;23004:4;23000:20;22996:1;22985:9;22981:17;22974:47;23038:131;23164:4;23038:131;:::i;:::-;23030:139;;22757:419;;;:::o;23182:225::-;23322:34;23318:1;23310:6;23306:14;23299:58;23391:8;23386:2;23378:6;23374:15;23367:33;23182:225;:::o;23413:366::-;23555:3;23576:67;23640:2;23635:3;23576:67;:::i;:::-;23569:74;;23652:93;23741:3;23652:93;:::i;:::-;23770:2;23765:3;23761:12;23754:19;;23413:366;;;:::o;23785:419::-;23951:4;23989:2;23978:9;23974:18;23966:26;;24038:9;24032:4;24028:20;24024:1;24013:9;24009:17;24002:47;24066:131;24192:4;24066:131;:::i;:::-;24058:139;;23785:419;;;:::o;24210:223::-;24350:34;24346:1;24338:6;24334:14;24327:58;24419:6;24414:2;24406:6;24402:15;24395:31;24210:223;:::o;24439:366::-;24581:3;24602:67;24666:2;24661:3;24602:67;:::i;:::-;24595:74;;24678:93;24767:3;24678:93;:::i;:::-;24796:2;24791:3;24787:12;24780:19;;24439:366;;;:::o;24811:419::-;24977:4;25015:2;25004:9;25000:18;24992:26;;25064:9;25058:4;25054:20;25050:1;25039:9;25035:17;25028:47;25092:131;25218:4;25092:131;:::i;:::-;25084:139;;24811:419;;;:::o;25236:221::-;25376:34;25372:1;25364:6;25360:14;25353:58;25445:4;25440:2;25432:6;25428:15;25421:29;25236:221;:::o;25463:366::-;25605:3;25626:67;25690:2;25685:3;25626:67;:::i;:::-;25619:74;;25702:93;25791:3;25702:93;:::i;:::-;25820:2;25815:3;25811:12;25804:19;;25463:366;;;:::o;25835:419::-;26001:4;26039:2;26028:9;26024:18;26016:26;;26088:9;26082:4;26078:20;26074:1;26063:9;26059:17;26052:47;26116:131;26242:4;26116:131;:::i;:::-;26108:139;;25835:419;;;:::o;26260:224::-;26400:34;26396:1;26388:6;26384:14;26377:58;26469:7;26464:2;26456:6;26452:15;26445:32;26260:224;:::o;26490:366::-;26632:3;26653:67;26717:2;26712:3;26653:67;:::i;:::-;26646:74;;26729:93;26818:3;26729:93;:::i;:::-;26847:2;26842:3;26838:12;26831:19;;26490:366;;;:::o;26862:419::-;27028:4;27066:2;27055:9;27051:18;27043:26;;27115:9;27109:4;27105:20;27101:1;27090:9;27086:17;27079:47;27143:131;27269:4;27143:131;:::i;:::-;27135:139;;26862:419;;;:::o;27287:222::-;27427:34;27423:1;27415:6;27411:14;27404:58;27496:5;27491:2;27483:6;27479:15;27472:30;27287:222;:::o;27515:366::-;27657:3;27678:67;27742:2;27737:3;27678:67;:::i;:::-;27671:74;;27754:93;27843:3;27754:93;:::i;:::-;27872:2;27867:3;27863:12;27856:19;;27515:366;;;:::o;27887:419::-;28053:4;28091:2;28080:9;28076:18;28068:26;;28140:9;28134:4;28130:20;28126:1;28115:9;28111:17;28104:47;28168:131;28294:4;28168:131;:::i;:::-;28160:139;;27887:419;;;:::o;28312:172::-;28452:24;28448:1;28440:6;28436:14;28429:48;28312:172;:::o;28490:366::-;28632:3;28653:67;28717:2;28712:3;28653:67;:::i;:::-;28646:74;;28729:93;28818:3;28729:93;:::i;:::-;28847:2;28842:3;28838:12;28831:19;;28490:366;;;:::o;28862:419::-;29028:4;29066:2;29055:9;29051:18;29043:26;;29115:9;29109:4;29105:20;29101:1;29090:9;29086:17;29079:47;29143:131;29269:4;29143:131;:::i;:::-;29135:139;;28862:419;;;:::o;29287:302::-;29427:34;29423:1;29415:6;29411:14;29404:58;29496:34;29491:2;29483:6;29479:15;29472:59;29565:16;29560:2;29552:6;29548:15;29541:41;29287:302;:::o;29595:366::-;29737:3;29758:67;29822:2;29817:3;29758:67;:::i;:::-;29751:74;;29834:93;29923:3;29834:93;:::i;:::-;29952:2;29947:3;29943:12;29936:19;;29595:366;;;:::o;29967:419::-;30133:4;30171:2;30160:9;30156:18;30148:26;;30220:9;30214:4;30210:20;30206:1;30195:9;30191:17;30184:47;30248:131;30374:4;30248:131;:::i;:::-;30240:139;;29967:419;;;:::o;30392:240::-;30532:34;30528:1;30520:6;30516:14;30509:58;30601:23;30596:2;30588:6;30584:15;30577:48;30392:240;:::o;30638:366::-;30780:3;30801:67;30865:2;30860:3;30801:67;:::i;:::-;30794:74;;30877:93;30966:3;30877:93;:::i;:::-;30995:2;30990:3;30986:12;30979:19;;30638:366;;;:::o;31010:419::-;31176:4;31214:2;31203:9;31199:18;31191:26;;31263:9;31257:4;31253:20;31249:1;31238:9;31234:17;31227:47;31291:131;31417:4;31291:131;:::i;:::-;31283:139;;31010:419;;;:::o;31435:169::-;31575:21;31571:1;31563:6;31559:14;31552:45;31435:169;:::o;31610:366::-;31752:3;31773:67;31837:2;31832:3;31773:67;:::i;:::-;31766:74;;31849:93;31938:3;31849:93;:::i;:::-;31967:2;31962:3;31958:12;31951:19;;31610:366;;;:::o;31982:419::-;32148:4;32186:2;32175:9;32171:18;32163:26;;32235:9;32229:4;32225:20;32221:1;32210:9;32206:17;32199:47;32263:131;32389:4;32263:131;:::i;:::-;32255:139;;31982:419;;;:::o;32407:241::-;32547:34;32543:1;32535:6;32531:14;32524:58;32616:24;32611:2;32603:6;32599:15;32592:49;32407:241;:::o;32654:366::-;32796:3;32817:67;32881:2;32876:3;32817:67;:::i;:::-;32810:74;;32893:93;32982:3;32893:93;:::i;:::-;33011:2;33006:3;33002:12;32995:19;;32654:366;;;:::o;33026:419::-;33192:4;33230:2;33219:9;33215:18;33207:26;;33279:9;33273:4;33269:20;33265:1;33254:9;33250:17;33243:47;33307:131;33433:4;33307:131;:::i;:::-;33299:139;;33026:419;;;:::o;33451:191::-;33491:4;33511:20;33529:1;33511:20;:::i;:::-;33506:25;;33545:20;33563:1;33545:20;:::i;:::-;33540:25;;33584:1;33581;33578:8;33575:34;;;33589:18;;:::i;:::-;33575:34;33634:1;33631;33627:9;33619:17;;33451:191;;;;:::o;33648:225::-;33788:34;33784:1;33776:6;33772:14;33765:58;33857:8;33852:2;33844:6;33840:15;33833:33;33648:225;:::o;33879:366::-;34021:3;34042:67;34106:2;34101:3;34042:67;:::i;:::-;34035:74;;34118:93;34207:3;34118:93;:::i;:::-;34236:2;34231:3;34227:12;34220:19;;33879:366;;;:::o;34251:419::-;34417:4;34455:2;34444:9;34440:18;34432:26;;34504:9;34498:4;34494:20;34490:1;34479:9;34475:17;34468:47;34532:131;34658:4;34532:131;:::i;:::-;34524:139;;34251:419;;;:::o;34676:147::-;34777:11;34814:3;34799:18;;34676:147;;;;:::o;34829:114::-;;:::o;34949:398::-;35108:3;35129:83;35210:1;35205:3;35129:83;:::i;:::-;35122:90;;35221:93;35310:3;35221:93;:::i;:::-;35339:1;35334:3;35330:11;35323:18;;34949:398;;;:::o;35353:379::-;35537:3;35559:147;35702:3;35559:147;:::i;:::-;35552:154;;35723:3;35716:10;;35353:379;;;:::o;35738:442::-;35887:4;35925:2;35914:9;35910:18;35902:26;;35938:71;36006:1;35995:9;35991:17;35982:6;35938:71;:::i;:::-;36019:72;36087:2;36076:9;36072:18;36063:6;36019:72;:::i;:::-;36101;36169:2;36158:9;36154:18;36145:6;36101:72;:::i;:::-;35738:442;;;;;;:::o;36186:180::-;36234:77;36231:1;36224:88;36331:4;36328:1;36321:15;36355:4;36352:1;36345:15;36372:180;36420:77;36417:1;36410:88;36517:4;36514:1;36507:15;36541:4;36538:1;36531:15;36558:143;36615:5;36646:6;36640:13;36631:22;;36662:33;36689:5;36662:33;:::i;:::-;36558:143;;;;:::o;36707:351::-;36777:6;36826:2;36814:9;36805:7;36801:23;36797:32;36794:119;;;36832:79;;:::i;:::-;36794:119;36952:1;36977:64;37033:7;37024:6;37013:9;37009:22;36977:64;:::i;:::-;36967:74;;36923:128;36707:351;;;;:::o;37064:85::-;37109:7;37138:5;37127:16;;37064:85;;;:::o;37155:158::-;37213:9;37246:61;37264:42;37273:32;37299:5;37273:32;:::i;:::-;37264:42;:::i;:::-;37246:61;:::i;:::-;37233:74;;37155:158;;;:::o;37319:147::-;37414:45;37453:5;37414:45;:::i;:::-;37409:3;37402:58;37319:147;;:::o;37472:114::-;37539:6;37573:5;37567:12;37557:22;;37472:114;;;:::o;37592:184::-;37691:11;37725:6;37720:3;37713:19;37765:4;37760:3;37756:14;37741:29;;37592:184;;;;:::o;37782:132::-;37849:4;37872:3;37864:11;;37902:4;37897:3;37893:14;37885:22;;37782:132;;;:::o;37920:108::-;37997:24;38015:5;37997:24;:::i;:::-;37992:3;37985:37;37920:108;;:::o;38034:179::-;38103:10;38124:46;38166:3;38158:6;38124:46;:::i;:::-;38202:4;38197:3;38193:14;38179:28;;38034:179;;;;:::o;38219:113::-;38289:4;38321;38316:3;38312:14;38304:22;;38219:113;;;:::o;38368:732::-;38487:3;38516:54;38564:5;38516:54;:::i;:::-;38586:86;38665:6;38660:3;38586:86;:::i;:::-;38579:93;;38696:56;38746:5;38696:56;:::i;:::-;38775:7;38806:1;38791:284;38816:6;38813:1;38810:13;38791:284;;;38892:6;38886:13;38919:63;38978:3;38963:13;38919:63;:::i;:::-;38912:70;;39005:60;39058:6;39005:60;:::i;:::-;38995:70;;38851:224;38838:1;38835;38831:9;38826:14;;38791:284;;;38795:14;39091:3;39084:10;;38492:608;;;38368:732;;;;:::o;39106:831::-;39369:4;39407:3;39396:9;39392:19;39384:27;;39421:71;39489:1;39478:9;39474:17;39465:6;39421:71;:::i;:::-;39502:80;39578:2;39567:9;39563:18;39554:6;39502:80;:::i;:::-;39629:9;39623:4;39619:20;39614:2;39603:9;39599:18;39592:48;39657:108;39760:4;39751:6;39657:108;:::i;:::-;39649:116;;39775:72;39843:2;39832:9;39828:18;39819:6;39775:72;:::i;:::-;39857:73;39925:3;39914:9;39910:19;39901:6;39857:73;:::i;:::-;39106:831;;;;;;;;:::o;39943:807::-;40192:4;40230:3;40219:9;40215:19;40207:27;;40244:71;40312:1;40301:9;40297:17;40288:6;40244:71;:::i;:::-;40325:72;40393:2;40382:9;40378:18;40369:6;40325:72;:::i;:::-;40407:80;40483:2;40472:9;40468:18;40459:6;40407:80;:::i;:::-;40497;40573:2;40562:9;40558:18;40549:6;40497:80;:::i;:::-;40587:73;40655:3;40644:9;40640:19;40631:6;40587:73;:::i;:::-;40670;40738:3;40727:9;40723:19;40714:6;40670:73;:::i;:::-;39943:807;;;;;;;;;:::o;40756:663::-;40844:6;40852;40860;40909:2;40897:9;40888:7;40884:23;40880:32;40877:119;;;40915:79;;:::i;:::-;40877:119;41035:1;41060:64;41116:7;41107:6;41096:9;41092:22;41060:64;:::i;:::-;41050:74;;41006:128;41173:2;41199:64;41255:7;41246:6;41235:9;41231:22;41199:64;:::i;:::-;41189:74;;41144:129;41312:2;41338:64;41394:7;41385:6;41374:9;41370:22;41338:64;:::i;:::-;41328:74;;41283:129;40756:663;;;;;:::o

Swarm Source

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