ETH Price: $3,421.06 (-1.59%)
Gas: 8 Gwei

Token

Big Slick (AK)
 

Overview

Max Total Supply

1,000,000,000 AK

Holders

58

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
Aggregation Router V4
Balance
0 AK

Value
$0.00
0x1111111254fb6c44bac0bed2854e76f90643097d
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:
BigSlick

Compiler Version
v0.8.10+commit.fc410830

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-08-25
*/

/*

    You gotta know when to hodl,
    You gotta know when to jeet,
    You gotta learn when to DCA,
    and wen to learn to walk away!

*/

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

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

/* pragma solidity ^0.8.0; */

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

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

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

/* pragma solidity ^0.8.0; */

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

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

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

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

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

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

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

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

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

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

/* pragma solidity ^0.8.0; */

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

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

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

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

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

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

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

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

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

/* pragma solidity ^0.8.0; */

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

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

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

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

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

/* pragma solidity ^0.8.0; */

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

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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

        return true;
    }

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

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

        return true;
    }

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

        _beforeTokenTransfer(sender, recipient, amount);

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

        emit Transfer(sender, recipient, amount);

        _afterTokenTransfer(sender, recipient, amount);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* pragma solidity ^0.8.0; */

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* pragma solidity 0.8.10; */
/* pragma experimental ABIEncoderV2; */

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

    function feeTo() external view returns (address);

    function feeToSetter() external view returns (address);

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

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

    function allPairsLength() external view returns (uint256);

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

    function setFeeTo(address) external;

    function setFeeToSetter(address) external;
}

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

/* pragma solidity 0.8.10; */
/* pragma experimental ABIEncoderV2; */

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

    function WETH() external pure returns (address);

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

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

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

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

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

/* pragma solidity >=0.8.10; */

/* import {IUniswapV2Router02} from "./IUniswapV2Router02.sol"; */
/* import {IUniswapV2Factory} from "./IUniswapV2Factory.sol"; */
/* import {IUniswapV2Pair} from "./IUniswapV2Pair.sol"; */
/* import {IERC20} from "lib/openzeppelin-contracts/contracts/token/ERC20/IERC20.sol"; */
/* import {ERC20} from "lib/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol"; */
/* import {Ownable} from "lib/openzeppelin-contracts/contracts/access/Ownable.sol"; */
/* import {SafeMath} from "lib/openzeppelin-contracts/contracts/utils/math/SafeMath.sol"; */

contract BigSlick 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;

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

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

	uint256 public tokensForLiquidity;
    uint256 public tokensForDev;

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

    // exlcude 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 SwapAndLiquify(
        uint256 tokensSwapped,
        uint256 ethReceived,
        uint256 tokensIntoLiquidity
    );

    constructor() ERC20("Big Slick ", "AK") {
        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 = 4;

        uint256 _sellLiquidityFee = 0;
        uint256 _sellDevFee = 4;

        uint256 totalSupply = 1 * 1e9 * 1e18;

        maxTransactionAmount = 2 * 1e7 * 1e18; // 2% from total supply maxTransactionAmountTxn
        maxWallet = 2 * 1e7 * 1e18; // 2% from total supply maxWallet
        swapTokensAtAmount = (totalSupply * 10) / 10000; // 0.1% swap wallet

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

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

        devWallet = address(0x3A41B77B03CDFD623C73ED2dd06FDdfD43B6b210); // 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;
    }

    // change the minimum amount of tokens to sell from fees
    function updateSwapTokensAtAmount(uint256 newAmount)
        external
        onlyOwner
        returns (bool)
    {
        require(
            newAmount >= (totalSupply() * 1) / 100000,
            "Swap amount cannot be lower than 0.001% total supply."
        );
        require(
            newAmount <= (totalSupply() * 5) / 1000,
            "Swap amount cannot be higher than 0.5% total supply."
        );
        swapTokensAtAmount = newAmount;
        return true;
    }
	
    function 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 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 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."
                    );
                }

                //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
            devWallet,
            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;

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

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

}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiquidity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newAddress","type":"address"},{"indexed":true,"internalType":"address","name":"oldAddress","type":"address"}],"name":"UpdateUniswapV2Router","type":"event"},{"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":"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":[{"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":"bool","name":"enabled","type":"bool"}],"name":"updateSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateSwapTokensAtAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c06040526001600a60006101000a81548160ff0219169083151502179055506000600a60016101000a81548160ff0219169083151502179055506000600a60026101000a81548160ff0219169083151502179055503480156200006257600080fd5b506040518060400160405280600a81526020017f42696720536c69636b20000000000000000000000000000000000000000000008152506040518060400160405280600281526020017f414b0000000000000000000000000000000000000000000000000000000000008152508160039080519060200190620000e792919062000a3f565b5080600490805190602001906200010092919062000a3f565b5050506200012362000117620004ff60201b60201c565b6200050760201b60201c565b6000737a250d5630b4cf539739df2c5dacb4c659f2488d90506200014f816001620005cd60201b60201c565b8073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015620001cf573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001f5919062000b59565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200025d573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000283919062000b59565b6040518363ffffffff1660e01b8152600401620002a292919062000b9c565b6020604051808303816000875af1158015620002c2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002e8919062000b59565b73ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff16815250506200033060a0516001620005cd60201b60201c565b6200034560a0516001620006b760201b60201c565b600080600490506000806004905060006b033b2e3c9fd0803ce800000090506a108b2a2c280290940000006007819055506a108b2a2c28029094000000600981905550612710600a826200039a919062000c02565b620003a6919062000c92565b60088190555084600c8190555083600d81905550600d54600c54620003cc919062000cca565b600b8190555082600f8190555081601081905550601054600f54620003f2919062000cca565b600e81905550733a41b77b03cdfd623c73ed2dd06fddfd43b6b210600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506200046f620004616200075860201b60201c565b60016200078260201b60201c565b620004823060016200078260201b60201c565b6200049761dead60016200078260201b60201c565b620004b9620004ab6200075860201b60201c565b6001620005cd60201b60201c565b620004cc306001620005cd60201b60201c565b620004e161dead6001620005cd60201b60201c565b620004f33382620008bc60201b60201c565b50505050505062000ee9565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620005dd620004ff60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620006036200075860201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16146200065c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620006539062000d88565b60405180910390fd5b80601460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b80601560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b62000792620004ff60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620007b86200075860201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000811576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620008089062000d88565b60405180910390fd5b80601360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051620008b0919062000dc7565b60405180910390a25050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156200092f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620009269062000e34565b60405180910390fd5b620009436000838362000a3560201b60201c565b806002600082825462000957919062000cca565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254620009ae919062000cca565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000a15919062000e67565b60405180910390a362000a316000838362000a3a60201b60201c565b5050565b505050565b505050565b82805462000a4d9062000eb3565b90600052602060002090601f01602090048101928262000a71576000855562000abd565b82601f1062000a8c57805160ff191683800117855562000abd565b8280016001018555821562000abd579182015b8281111562000abc57825182559160200191906001019062000a9f565b5b50905062000acc919062000ad0565b5090565b5b8082111562000aeb57600081600090555060010162000ad1565b5090565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000b218262000af4565b9050919050565b62000b338162000b14565b811462000b3f57600080fd5b50565b60008151905062000b538162000b28565b92915050565b60006020828403121562000b725762000b7162000aef565b5b600062000b828482850162000b42565b91505092915050565b62000b968162000b14565b82525050565b600060408201905062000bb3600083018562000b8b565b62000bc2602083018462000b8b565b9392505050565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000c0f8262000bc9565b915062000c1c8362000bc9565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161562000c585762000c5762000bd3565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600062000c9f8262000bc9565b915062000cac8362000bc9565b92508262000cbf5762000cbe62000c63565b5b828204905092915050565b600062000cd78262000bc9565b915062000ce48362000bc9565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000d1c5762000d1b62000bd3565b5b828201905092915050565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600062000d7060208362000d27565b915062000d7d8262000d38565b602082019050919050565b6000602082019050818103600083015262000da38162000d61565b9050919050565b60008115159050919050565b62000dc18162000daa565b82525050565b600060208201905062000dde600083018462000db6565b92915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000e1c601f8362000d27565b915062000e298262000de4565b602082019050919050565b6000602082019050818103600083015262000e4f8162000e0d565b9050919050565b62000e618162000bc9565b82525050565b600060208201905062000e7e600083018462000e56565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000ecc57607f821691505b6020821081141562000ee35762000ee262000e84565b5b50919050565b60805160a05161405962000f3960003960008181610cbc0152611254015260008181610ad501528181612b7901528181612c5a01528181612c8101528181612d1d0152612d4401526140596000f3fe6080604052600436106102555760003560e01c80638ea5220f11610139578063bbc0c742116100b6578063dd62ed3e1161007a578063dd62ed3e146108f1578063e2f456051461092e578063f11a24d314610959578063f2fde38b14610984578063f6374342146109ad578063f8b45b05146109d85761025c565b8063bbc0c7421461080a578063c024666814610835578063c8c8ebe41461085e578063d257b34f14610889578063d85ba063146108c65761025c565b80639fccce32116100fd5780639fccce32146106fd578063a0d82dc514610728578063a457c2d714610753578063a9059cbb14610790578063b62496f5146107cd5761025c565b80638ea5220f1461062a578063924de9b71461065557806395d89b411461067e5780639a7a23d6146106a95780639c3b4fdc146106d25761025c565b806349bd5a5e116101d257806370a082311161019657806370a0823114610540578063715018a61461057d578063751039fc146105945780637571336a146105bf5780638a8c523c146105e85780638da5cb5b146105ff5761025c565b806349bd5a5e146104575780634a62bb65146104825780634fbee193146104ad5780636a486a8e146104ea5780636ddd1713146105155761025c565b80631a8145bb116102195780631a8145bb1461035c57806323b872dd1461038757806327c8f835146103c4578063313ce567146103ef578063395093511461041a5761025c565b806306fdde0314610261578063095ea7b31461028c57806310d5de53146102c95780631694505e1461030657806318160ddd146103315761025c565b3661025c57005b600080fd5b34801561026d57600080fd5b50610276610a03565b6040516102839190612eac565b60405180910390f35b34801561029857600080fd5b506102b360048036038101906102ae9190612f67565b610a95565b6040516102c09190612fc2565b60405180910390f35b3480156102d557600080fd5b506102f060048036038101906102eb9190612fdd565b610ab3565b6040516102fd9190612fc2565b60405180910390f35b34801561031257600080fd5b5061031b610ad3565b6040516103289190613069565b60405180910390f35b34801561033d57600080fd5b50610346610af7565b6040516103539190613093565b60405180910390f35b34801561036857600080fd5b50610371610b01565b60405161037e9190613093565b60405180910390f35b34801561039357600080fd5b506103ae60048036038101906103a991906130ae565b610b07565b6040516103bb9190612fc2565b60405180910390f35b3480156103d057600080fd5b506103d9610bff565b6040516103e69190613110565b60405180910390f35b3480156103fb57600080fd5b50610404610c05565b6040516104119190613147565b60405180910390f35b34801561042657600080fd5b50610441600480360381019061043c9190612f67565b610c0e565b60405161044e9190612fc2565b60405180910390f35b34801561046357600080fd5b5061046c610cba565b6040516104799190613110565b60405180910390f35b34801561048e57600080fd5b50610497610cde565b6040516104a49190612fc2565b60405180910390f35b3480156104b957600080fd5b506104d460048036038101906104cf9190612fdd565b610cf1565b6040516104e19190612fc2565b60405180910390f35b3480156104f657600080fd5b506104ff610d47565b60405161050c9190613093565b60405180910390f35b34801561052157600080fd5b5061052a610d4d565b6040516105379190612fc2565b60405180910390f35b34801561054c57600080fd5b5061056760048036038101906105629190612fdd565b610d60565b6040516105749190613093565b60405180910390f35b34801561058957600080fd5b50610592610da8565b005b3480156105a057600080fd5b506105a9610e30565b6040516105b69190612fc2565b60405180910390f35b3480156105cb57600080fd5b506105e660048036038101906105e1919061318e565b610ed0565b005b3480156105f457600080fd5b506105fd610fa7565b005b34801561060b57600080fd5b5061061461105b565b6040516106219190613110565b60405180910390f35b34801561063657600080fd5b5061063f611085565b60405161064c9190613110565b60405180910390f35b34801561066157600080fd5b5061067c600480360381019061067791906131ce565b6110ab565b005b34801561068a57600080fd5b50610693611144565b6040516106a09190612eac565b60405180910390f35b3480156106b557600080fd5b506106d060048036038101906106cb919061318e565b6111d6565b005b3480156106de57600080fd5b506106e76112ef565b6040516106f49190613093565b60405180910390f35b34801561070957600080fd5b506107126112f5565b60405161071f9190613093565b60405180910390f35b34801561073457600080fd5b5061073d6112fb565b60405161074a9190613093565b60405180910390f35b34801561075f57600080fd5b5061077a60048036038101906107759190612f67565b611301565b6040516107879190612fc2565b60405180910390f35b34801561079c57600080fd5b506107b760048036038101906107b29190612f67565b6113ec565b6040516107c49190612fc2565b60405180910390f35b3480156107d957600080fd5b506107f460048036038101906107ef9190612fdd565b61140a565b6040516108019190612fc2565b60405180910390f35b34801561081657600080fd5b5061081f61142a565b60405161082c9190612fc2565b60405180910390f35b34801561084157600080fd5b5061085c6004803603810190610857919061318e565b61143d565b005b34801561086a57600080fd5b50610873611562565b6040516108809190613093565b60405180910390f35b34801561089557600080fd5b506108b060048036038101906108ab91906131fb565b611568565b6040516108bd9190612fc2565b60405180910390f35b3480156108d257600080fd5b506108db6116bd565b6040516108e89190613093565b60405180910390f35b3480156108fd57600080fd5b5061091860048036038101906109139190613228565b6116c3565b6040516109259190613093565b60405180910390f35b34801561093a57600080fd5b5061094361174a565b6040516109509190613093565b60405180910390f35b34801561096557600080fd5b5061096e611750565b60405161097b9190613093565b60405180910390f35b34801561099057600080fd5b506109ab60048036038101906109a69190612fdd565b611756565b005b3480156109b957600080fd5b506109c261184e565b6040516109cf9190613093565b60405180910390f35b3480156109e457600080fd5b506109ed611854565b6040516109fa9190613093565b60405180910390f35b606060038054610a1290613297565b80601f0160208091040260200160405190810160405280929190818152602001828054610a3e90613297565b8015610a8b5780601f10610a6057610100808354040283529160200191610a8b565b820191906000526020600020905b815481529060010190602001808311610a6e57829003601f168201915b5050505050905090565b6000610aa9610aa261185a565b8484611862565b6001905092915050565b60146020528060005260406000206000915054906101000a900460ff1681565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600254905090565b60115481565b6000610b14848484611a2d565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610b5f61185a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610bdf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bd69061333b565b60405180910390fd5b610bf385610beb61185a565b858403611862565b60019150509392505050565b61dead81565b60006012905090565b6000610cb0610c1b61185a565b848460016000610c2961185a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610cab919061338a565b611862565b6001905092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b600a60009054906101000a900460ff1681565b6000601360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b600e5481565b600a60029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610db061185a565b73ffffffffffffffffffffffffffffffffffffffff16610dce61105b565b73ffffffffffffffffffffffffffffffffffffffff1614610e24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1b9061342c565b60405180910390fd5b610e2e6000612499565b565b6000610e3a61185a565b73ffffffffffffffffffffffffffffffffffffffff16610e5861105b565b73ffffffffffffffffffffffffffffffffffffffff1614610eae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ea59061342c565b60405180910390fd5b6000600a60006101000a81548160ff0219169083151502179055506001905090565b610ed861185a565b73ffffffffffffffffffffffffffffffffffffffff16610ef661105b565b73ffffffffffffffffffffffffffffffffffffffff1614610f4c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f439061342c565b60405180910390fd5b80601460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b610faf61185a565b73ffffffffffffffffffffffffffffffffffffffff16610fcd61105b565b73ffffffffffffffffffffffffffffffffffffffff1614611023576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101a9061342c565b60405180910390fd5b6001600a60016101000a81548160ff0219169083151502179055506001600a60026101000a81548160ff021916908315150217905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6110b361185a565b73ffffffffffffffffffffffffffffffffffffffff166110d161105b565b73ffffffffffffffffffffffffffffffffffffffff1614611127576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111e9061342c565b60405180910390fd5b80600a60026101000a81548160ff02191690831515021790555050565b60606004805461115390613297565b80601f016020809104026020016040519081016040528092919081815260200182805461117f90613297565b80156111cc5780601f106111a1576101008083540402835291602001916111cc565b820191906000526020600020905b8154815290600101906020018083116111af57829003601f168201915b5050505050905090565b6111de61185a565b73ffffffffffffffffffffffffffffffffffffffff166111fc61105b565b73ffffffffffffffffffffffffffffffffffffffff1614611252576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112499061342c565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156112e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112d8906134be565b60405180910390fd5b6112eb828261255f565b5050565b600d5481565b60125481565b60105481565b6000806001600061131061185a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156113cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113c490613550565b60405180910390fd5b6113e16113d861185a565b85858403611862565b600191505092915050565b60006114006113f961185a565b8484611a2d565b6001905092915050565b60156020528060005260406000206000915054906101000a900460ff1681565b600a60019054906101000a900460ff1681565b61144561185a565b73ffffffffffffffffffffffffffffffffffffffff1661146361105b565b73ffffffffffffffffffffffffffffffffffffffff16146114b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114b09061342c565b60405180910390fd5b80601360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7826040516115569190612fc2565b60405180910390a25050565b60075481565b600061157261185a565b73ffffffffffffffffffffffffffffffffffffffff1661159061105b565b73ffffffffffffffffffffffffffffffffffffffff16146115e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115dd9061342c565b60405180910390fd5b620186a060016115f4610af7565b6115fe9190613570565b61160891906135f9565b82101561164a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116419061369c565b60405180910390fd5b6103e86005611657610af7565b6116619190613570565b61166b91906135f9565b8211156116ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116a49061372e565b60405180910390fd5b8160088190555060019050919050565b600b5481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60085481565b600c5481565b61175e61185a565b73ffffffffffffffffffffffffffffffffffffffff1661177c61105b565b73ffffffffffffffffffffffffffffffffffffffff16146117d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117c99061342c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611842576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611839906137c0565b60405180910390fd5b61184b81612499565b50565b600f5481565b60095481565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156118d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118c990613852565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611942576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611939906138e4565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051611a209190613093565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611a9d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a9490613976565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611b0d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b0490613a08565b60405180910390fd5b6000811415611b2757611b2283836000612600565b612494565b600a60009054906101000a900460ff161561202257611b4461105b565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015611bb25750611b8261105b565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611beb5750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611c25575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611c3e5750600560149054906101000a900460ff16155b1561202157600a60019054906101000a900460ff16611d3857601360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680611cf85750601360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b611d37576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d2e90613a74565b60405180910390fd5b5b601560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015611ddb5750601460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15611e8257600754811115611e25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e1c90613b06565b60405180910390fd5b600954611e3183610d60565b82611e3c919061338a565b1115611e7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e7490613b72565b60405180910390fd5b612020565b601560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015611f255750601460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15611f7457600754811115611f6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f6690613c04565b60405180910390fd5b61201f565b601460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661201e57600954611fd183610d60565b82611fdc919061338a565b111561201d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161201490613b72565b60405180910390fd5b5b5b5b5b5b600061202d30610d60565b9050600060085482101590508080156120525750600a60029054906101000a900460ff165b801561206b5750600560149054906101000a900460ff16155b80156120c15750601560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156121175750601360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b801561216d5750601360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156121b1576001600560146101000a81548160ff021916908315150217905550612195612881565b6000600560146101000a81548160ff0219169083151502179055505b6000600560149054906101000a900460ff16159050601360008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806122675750601360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561227157600090505b6000811561248457601560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156122d457506000600e54115b1561236e5761230160646122f3600e5488612a8e90919063ffffffff16565b612aa490919063ffffffff16565b9050600e54600f54826123149190613570565b61231e91906135f9565b6011600082825461232f919061338a565b92505081905550600e54601054826123479190613570565b61235191906135f9565b60126000828254612362919061338a565b92505081905550612460565b601560008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156123c957506000600b54115b1561245f576123f660646123e8600b5488612a8e90919063ffffffff16565b612aa490919063ffffffff16565b9050600b54600c54826124099190613570565b61241391906135f9565b60116000828254612424919061338a565b92505081905550600b54600d548261243c9190613570565b61244691906135f9565b60126000828254612457919061338a565b925050819055505b5b600081111561247557612474873083612600565b5b80856124819190613c24565b94505b61248f878787612600565b505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80601560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612670576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161266790613976565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156126e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126d790613a08565b60405180910390fd5b6126eb838383612aba565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015612771576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161276890613cca565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612804919061338a565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516128689190613093565b60405180910390a361287b848484612abf565b50505050565b600061288c30610d60565b905060006012546011546128a0919061338a565b90506000808314806128b25750600082145b156128bf57505050612a8c565b60146008546128ce9190613570565b8311156128e75760146008546128e49190613570565b92505b6000600283601154866128fa9190613570565b61290491906135f9565b61290e91906135f9565b905060006129258286612ac490919063ffffffff16565b9050600047905061293582612ada565b600061294a8247612ac490919063ffffffff16565b905060006129758761296760125485612a8e90919063ffffffff16565b612aa490919063ffffffff16565b9050600081836129859190613c24565b9050600060118190555060006012819055506000861180156129a75750600081115b156129f4576129b68682612d17565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb56185826011546040516129eb93929190613cea565b60405180910390a15b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051612a3a90613d52565b60006040518083038185875af1925050503d8060008114612a77576040519150601f19603f3d011682016040523d82523d6000602084013e612a7c565b606091505b5050809750505050505050505050505b565b60008183612a9c9190613570565b905092915050565b60008183612ab291906135f9565b905092915050565b505050565b505050565b60008183612ad29190613c24565b905092915050565b6000600267ffffffffffffffff811115612af757612af6613d67565b5b604051908082528060200260200182016040528015612b255781602001602082028036833780820191505090505b5090503081600081518110612b3d57612b3c613d96565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612be2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612c069190613dda565b81600181518110612c1a57612c19613d96565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050612c7f307f000000000000000000000000000000000000000000000000000000000000000084611862565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401612ce1959493929190613f00565b600060405180830381600087803b158015612cfb57600080fd5b505af1158015612d0f573d6000803e3d6000fd5b505050505050565b612d42307f000000000000000000000000000000000000000000000000000000000000000084611862565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f305d719823085600080600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518863ffffffff1660e01b8152600401612dc996959493929190613f5a565b60606040518083038185885af1158015612de7573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190612e0c9190613fd0565b5050505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612e4d578082015181840152602081019050612e32565b83811115612e5c576000848401525b50505050565b6000601f19601f8301169050919050565b6000612e7e82612e13565b612e888185612e1e565b9350612e98818560208601612e2f565b612ea181612e62565b840191505092915050565b60006020820190508181036000830152612ec68184612e73565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612efe82612ed3565b9050919050565b612f0e81612ef3565b8114612f1957600080fd5b50565b600081359050612f2b81612f05565b92915050565b6000819050919050565b612f4481612f31565b8114612f4f57600080fd5b50565b600081359050612f6181612f3b565b92915050565b60008060408385031215612f7e57612f7d612ece565b5b6000612f8c85828601612f1c565b9250506020612f9d85828601612f52565b9150509250929050565b60008115159050919050565b612fbc81612fa7565b82525050565b6000602082019050612fd76000830184612fb3565b92915050565b600060208284031215612ff357612ff2612ece565b5b600061300184828501612f1c565b91505092915050565b6000819050919050565b600061302f61302a61302584612ed3565b61300a565b612ed3565b9050919050565b600061304182613014565b9050919050565b600061305382613036565b9050919050565b61306381613048565b82525050565b600060208201905061307e600083018461305a565b92915050565b61308d81612f31565b82525050565b60006020820190506130a86000830184613084565b92915050565b6000806000606084860312156130c7576130c6612ece565b5b60006130d586828701612f1c565b93505060206130e686828701612f1c565b92505060406130f786828701612f52565b9150509250925092565b61310a81612ef3565b82525050565b60006020820190506131256000830184613101565b92915050565b600060ff82169050919050565b6131418161312b565b82525050565b600060208201905061315c6000830184613138565b92915050565b61316b81612fa7565b811461317657600080fd5b50565b60008135905061318881613162565b92915050565b600080604083850312156131a5576131a4612ece565b5b60006131b385828601612f1c565b92505060206131c485828601613179565b9150509250929050565b6000602082840312156131e4576131e3612ece565b5b60006131f284828501613179565b91505092915050565b60006020828403121561321157613210612ece565b5b600061321f84828501612f52565b91505092915050565b6000806040838503121561323f5761323e612ece565b5b600061324d85828601612f1c565b925050602061325e85828601612f1c565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806132af57607f821691505b602082108114156132c3576132c2613268565b5b50919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b6000613325602883612e1e565b9150613330826132c9565b604082019050919050565b6000602082019050818103600083015261335481613318565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061339582612f31565b91506133a083612f31565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156133d5576133d461335b565b5b828201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613416602083612e1e565b9150613421826133e0565b602082019050919050565b6000602082019050818103600083015261344581613409565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b60006134a8603983612e1e565b91506134b38261344c565b604082019050919050565b600060208201905081810360008301526134d78161349b565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b600061353a602583612e1e565b9150613545826134de565b604082019050919050565b600060208201905081810360008301526135698161352d565b9050919050565b600061357b82612f31565b915061358683612f31565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156135bf576135be61335b565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061360482612f31565b915061360f83612f31565b92508261361f5761361e6135ca565b5b828204905092915050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b6000613686603583612e1e565b91506136918261362a565b604082019050919050565b600060208201905081810360008301526136b581613679565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b6000613718603483612e1e565b9150613723826136bc565b604082019050919050565b600060208201905081810360008301526137478161370b565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006137aa602683612e1e565b91506137b58261374e565b604082019050919050565b600060208201905081810360008301526137d98161379d565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061383c602483612e1e565b9150613847826137e0565b604082019050919050565b6000602082019050818103600083015261386b8161382f565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006138ce602283612e1e565b91506138d982613872565b604082019050919050565b600060208201905081810360008301526138fd816138c1565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000613960602583612e1e565b915061396b82613904565b604082019050919050565b6000602082019050818103600083015261398f81613953565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006139f2602383612e1e565b91506139fd82613996565b604082019050919050565b60006020820190508181036000830152613a21816139e5565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b6000613a5e601683612e1e565b9150613a6982613a28565b602082019050919050565b60006020820190508181036000830152613a8d81613a51565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b6000613af0603583612e1e565b9150613afb82613a94565b604082019050919050565b60006020820190508181036000830152613b1f81613ae3565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b6000613b5c601383612e1e565b9150613b6782613b26565b602082019050919050565b60006020820190508181036000830152613b8b81613b4f565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b6000613bee603683612e1e565b9150613bf982613b92565b604082019050919050565b60006020820190508181036000830152613c1d81613be1565b9050919050565b6000613c2f82612f31565b9150613c3a83612f31565b925082821015613c4d57613c4c61335b565b5b828203905092915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000613cb4602683612e1e565b9150613cbf82613c58565b604082019050919050565b60006020820190508181036000830152613ce381613ca7565b9050919050565b6000606082019050613cff6000830186613084565b613d0c6020830185613084565b613d196040830184613084565b949350505050565b600081905092915050565b50565b6000613d3c600083613d21565b9150613d4782613d2c565b600082019050919050565b6000613d5d82613d2f565b9150819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050613dd481612f05565b92915050565b600060208284031215613df057613def612ece565b5b6000613dfe84828501613dc5565b91505092915050565b6000819050919050565b6000613e2c613e27613e2284613e07565b61300a565b612f31565b9050919050565b613e3c81613e11565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b613e7781612ef3565b82525050565b6000613e898383613e6e565b60208301905092915050565b6000602082019050919050565b6000613ead82613e42565b613eb78185613e4d565b9350613ec283613e5e565b8060005b83811015613ef3578151613eda8882613e7d565b9750613ee583613e95565b925050600181019050613ec6565b5085935050505092915050565b600060a082019050613f156000830188613084565b613f226020830187613e33565b8181036040830152613f348186613ea2565b9050613f436060830185613101565b613f506080830184613084565b9695505050505050565b600060c082019050613f6f6000830189613101565b613f7c6020830188613084565b613f896040830187613e33565b613f966060830186613e33565b613fa36080830185613101565b613fb060a0830184613084565b979650505050505050565b600081519050613fca81612f3b565b92915050565b600080600060608486031215613fe957613fe8612ece565b5b6000613ff786828701613fbb565b935050602061400886828701613fbb565b925050604061401986828701613fbb565b915050925092509256fea26469706673582212200e196f9fa3c234f92fdce4377acac504e73b1abb2de8b5342f28372e72a7bd8b64736f6c634300080a0033

Deployed Bytecode

0x6080604052600436106102555760003560e01c80638ea5220f11610139578063bbc0c742116100b6578063dd62ed3e1161007a578063dd62ed3e146108f1578063e2f456051461092e578063f11a24d314610959578063f2fde38b14610984578063f6374342146109ad578063f8b45b05146109d85761025c565b8063bbc0c7421461080a578063c024666814610835578063c8c8ebe41461085e578063d257b34f14610889578063d85ba063146108c65761025c565b80639fccce32116100fd5780639fccce32146106fd578063a0d82dc514610728578063a457c2d714610753578063a9059cbb14610790578063b62496f5146107cd5761025c565b80638ea5220f1461062a578063924de9b71461065557806395d89b411461067e5780639a7a23d6146106a95780639c3b4fdc146106d25761025c565b806349bd5a5e116101d257806370a082311161019657806370a0823114610540578063715018a61461057d578063751039fc146105945780637571336a146105bf5780638a8c523c146105e85780638da5cb5b146105ff5761025c565b806349bd5a5e146104575780634a62bb65146104825780634fbee193146104ad5780636a486a8e146104ea5780636ddd1713146105155761025c565b80631a8145bb116102195780631a8145bb1461035c57806323b872dd1461038757806327c8f835146103c4578063313ce567146103ef578063395093511461041a5761025c565b806306fdde0314610261578063095ea7b31461028c57806310d5de53146102c95780631694505e1461030657806318160ddd146103315761025c565b3661025c57005b600080fd5b34801561026d57600080fd5b50610276610a03565b6040516102839190612eac565b60405180910390f35b34801561029857600080fd5b506102b360048036038101906102ae9190612f67565b610a95565b6040516102c09190612fc2565b60405180910390f35b3480156102d557600080fd5b506102f060048036038101906102eb9190612fdd565b610ab3565b6040516102fd9190612fc2565b60405180910390f35b34801561031257600080fd5b5061031b610ad3565b6040516103289190613069565b60405180910390f35b34801561033d57600080fd5b50610346610af7565b6040516103539190613093565b60405180910390f35b34801561036857600080fd5b50610371610b01565b60405161037e9190613093565b60405180910390f35b34801561039357600080fd5b506103ae60048036038101906103a991906130ae565b610b07565b6040516103bb9190612fc2565b60405180910390f35b3480156103d057600080fd5b506103d9610bff565b6040516103e69190613110565b60405180910390f35b3480156103fb57600080fd5b50610404610c05565b6040516104119190613147565b60405180910390f35b34801561042657600080fd5b50610441600480360381019061043c9190612f67565b610c0e565b60405161044e9190612fc2565b60405180910390f35b34801561046357600080fd5b5061046c610cba565b6040516104799190613110565b60405180910390f35b34801561048e57600080fd5b50610497610cde565b6040516104a49190612fc2565b60405180910390f35b3480156104b957600080fd5b506104d460048036038101906104cf9190612fdd565b610cf1565b6040516104e19190612fc2565b60405180910390f35b3480156104f657600080fd5b506104ff610d47565b60405161050c9190613093565b60405180910390f35b34801561052157600080fd5b5061052a610d4d565b6040516105379190612fc2565b60405180910390f35b34801561054c57600080fd5b5061056760048036038101906105629190612fdd565b610d60565b6040516105749190613093565b60405180910390f35b34801561058957600080fd5b50610592610da8565b005b3480156105a057600080fd5b506105a9610e30565b6040516105b69190612fc2565b60405180910390f35b3480156105cb57600080fd5b506105e660048036038101906105e1919061318e565b610ed0565b005b3480156105f457600080fd5b506105fd610fa7565b005b34801561060b57600080fd5b5061061461105b565b6040516106219190613110565b60405180910390f35b34801561063657600080fd5b5061063f611085565b60405161064c9190613110565b60405180910390f35b34801561066157600080fd5b5061067c600480360381019061067791906131ce565b6110ab565b005b34801561068a57600080fd5b50610693611144565b6040516106a09190612eac565b60405180910390f35b3480156106b557600080fd5b506106d060048036038101906106cb919061318e565b6111d6565b005b3480156106de57600080fd5b506106e76112ef565b6040516106f49190613093565b60405180910390f35b34801561070957600080fd5b506107126112f5565b60405161071f9190613093565b60405180910390f35b34801561073457600080fd5b5061073d6112fb565b60405161074a9190613093565b60405180910390f35b34801561075f57600080fd5b5061077a60048036038101906107759190612f67565b611301565b6040516107879190612fc2565b60405180910390f35b34801561079c57600080fd5b506107b760048036038101906107b29190612f67565b6113ec565b6040516107c49190612fc2565b60405180910390f35b3480156107d957600080fd5b506107f460048036038101906107ef9190612fdd565b61140a565b6040516108019190612fc2565b60405180910390f35b34801561081657600080fd5b5061081f61142a565b60405161082c9190612fc2565b60405180910390f35b34801561084157600080fd5b5061085c6004803603810190610857919061318e565b61143d565b005b34801561086a57600080fd5b50610873611562565b6040516108809190613093565b60405180910390f35b34801561089557600080fd5b506108b060048036038101906108ab91906131fb565b611568565b6040516108bd9190612fc2565b60405180910390f35b3480156108d257600080fd5b506108db6116bd565b6040516108e89190613093565b60405180910390f35b3480156108fd57600080fd5b5061091860048036038101906109139190613228565b6116c3565b6040516109259190613093565b60405180910390f35b34801561093a57600080fd5b5061094361174a565b6040516109509190613093565b60405180910390f35b34801561096557600080fd5b5061096e611750565b60405161097b9190613093565b60405180910390f35b34801561099057600080fd5b506109ab60048036038101906109a69190612fdd565b611756565b005b3480156109b957600080fd5b506109c261184e565b6040516109cf9190613093565b60405180910390f35b3480156109e457600080fd5b506109ed611854565b6040516109fa9190613093565b60405180910390f35b606060038054610a1290613297565b80601f0160208091040260200160405190810160405280929190818152602001828054610a3e90613297565b8015610a8b5780601f10610a6057610100808354040283529160200191610a8b565b820191906000526020600020905b815481529060010190602001808311610a6e57829003601f168201915b5050505050905090565b6000610aa9610aa261185a565b8484611862565b6001905092915050565b60146020528060005260406000206000915054906101000a900460ff1681565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6000600254905090565b60115481565b6000610b14848484611a2d565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610b5f61185a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610bdf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bd69061333b565b60405180910390fd5b610bf385610beb61185a565b858403611862565b60019150509392505050565b61dead81565b60006012905090565b6000610cb0610c1b61185a565b848460016000610c2961185a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610cab919061338a565b611862565b6001905092915050565b7f0000000000000000000000001de83cbc66874ee9fde0a8896651f6b1a10791c981565b600a60009054906101000a900460ff1681565b6000601360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b600e5481565b600a60029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610db061185a565b73ffffffffffffffffffffffffffffffffffffffff16610dce61105b565b73ffffffffffffffffffffffffffffffffffffffff1614610e24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1b9061342c565b60405180910390fd5b610e2e6000612499565b565b6000610e3a61185a565b73ffffffffffffffffffffffffffffffffffffffff16610e5861105b565b73ffffffffffffffffffffffffffffffffffffffff1614610eae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ea59061342c565b60405180910390fd5b6000600a60006101000a81548160ff0219169083151502179055506001905090565b610ed861185a565b73ffffffffffffffffffffffffffffffffffffffff16610ef661105b565b73ffffffffffffffffffffffffffffffffffffffff1614610f4c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f439061342c565b60405180910390fd5b80601460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b610faf61185a565b73ffffffffffffffffffffffffffffffffffffffff16610fcd61105b565b73ffffffffffffffffffffffffffffffffffffffff1614611023576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101a9061342c565b60405180910390fd5b6001600a60016101000a81548160ff0219169083151502179055506001600a60026101000a81548160ff021916908315150217905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6110b361185a565b73ffffffffffffffffffffffffffffffffffffffff166110d161105b565b73ffffffffffffffffffffffffffffffffffffffff1614611127576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111e9061342c565b60405180910390fd5b80600a60026101000a81548160ff02191690831515021790555050565b60606004805461115390613297565b80601f016020809104026020016040519081016040528092919081815260200182805461117f90613297565b80156111cc5780601f106111a1576101008083540402835291602001916111cc565b820191906000526020600020905b8154815290600101906020018083116111af57829003601f168201915b5050505050905090565b6111de61185a565b73ffffffffffffffffffffffffffffffffffffffff166111fc61105b565b73ffffffffffffffffffffffffffffffffffffffff1614611252576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112499061342c565b60405180910390fd5b7f0000000000000000000000001de83cbc66874ee9fde0a8896651f6b1a10791c973ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156112e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112d8906134be565b60405180910390fd5b6112eb828261255f565b5050565b600d5481565b60125481565b60105481565b6000806001600061131061185a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156113cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113c490613550565b60405180910390fd5b6113e16113d861185a565b85858403611862565b600191505092915050565b60006114006113f961185a565b8484611a2d565b6001905092915050565b60156020528060005260406000206000915054906101000a900460ff1681565b600a60019054906101000a900460ff1681565b61144561185a565b73ffffffffffffffffffffffffffffffffffffffff1661146361105b565b73ffffffffffffffffffffffffffffffffffffffff16146114b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114b09061342c565b60405180910390fd5b80601360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7826040516115569190612fc2565b60405180910390a25050565b60075481565b600061157261185a565b73ffffffffffffffffffffffffffffffffffffffff1661159061105b565b73ffffffffffffffffffffffffffffffffffffffff16146115e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115dd9061342c565b60405180910390fd5b620186a060016115f4610af7565b6115fe9190613570565b61160891906135f9565b82101561164a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116419061369c565b60405180910390fd5b6103e86005611657610af7565b6116619190613570565b61166b91906135f9565b8211156116ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116a49061372e565b60405180910390fd5b8160088190555060019050919050565b600b5481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60085481565b600c5481565b61175e61185a565b73ffffffffffffffffffffffffffffffffffffffff1661177c61105b565b73ffffffffffffffffffffffffffffffffffffffff16146117d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117c99061342c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611842576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611839906137c0565b60405180910390fd5b61184b81612499565b50565b600f5481565b60095481565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156118d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118c990613852565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611942576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611939906138e4565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051611a209190613093565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611a9d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a9490613976565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611b0d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b0490613a08565b60405180910390fd5b6000811415611b2757611b2283836000612600565b612494565b600a60009054906101000a900460ff161561202257611b4461105b565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015611bb25750611b8261105b565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611beb5750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611c25575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611c3e5750600560149054906101000a900460ff16155b1561202157600a60019054906101000a900460ff16611d3857601360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680611cf85750601360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b611d37576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d2e90613a74565b60405180910390fd5b5b601560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015611ddb5750601460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15611e8257600754811115611e25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e1c90613b06565b60405180910390fd5b600954611e3183610d60565b82611e3c919061338a565b1115611e7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e7490613b72565b60405180910390fd5b612020565b601560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015611f255750601460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15611f7457600754811115611f6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f6690613c04565b60405180910390fd5b61201f565b601460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661201e57600954611fd183610d60565b82611fdc919061338a565b111561201d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161201490613b72565b60405180910390fd5b5b5b5b5b5b600061202d30610d60565b9050600060085482101590508080156120525750600a60029054906101000a900460ff165b801561206b5750600560149054906101000a900460ff16155b80156120c15750601560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156121175750601360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b801561216d5750601360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156121b1576001600560146101000a81548160ff021916908315150217905550612195612881565b6000600560146101000a81548160ff0219169083151502179055505b6000600560149054906101000a900460ff16159050601360008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806122675750601360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561227157600090505b6000811561248457601560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156122d457506000600e54115b1561236e5761230160646122f3600e5488612a8e90919063ffffffff16565b612aa490919063ffffffff16565b9050600e54600f54826123149190613570565b61231e91906135f9565b6011600082825461232f919061338a565b92505081905550600e54601054826123479190613570565b61235191906135f9565b60126000828254612362919061338a565b92505081905550612460565b601560008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156123c957506000600b54115b1561245f576123f660646123e8600b5488612a8e90919063ffffffff16565b612aa490919063ffffffff16565b9050600b54600c54826124099190613570565b61241391906135f9565b60116000828254612424919061338a565b92505081905550600b54600d548261243c9190613570565b61244691906135f9565b60126000828254612457919061338a565b925050819055505b5b600081111561247557612474873083612600565b5b80856124819190613c24565b94505b61248f878787612600565b505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80601560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612670576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161266790613976565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156126e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126d790613a08565b60405180910390fd5b6126eb838383612aba565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015612771576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161276890613cca565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612804919061338a565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516128689190613093565b60405180910390a361287b848484612abf565b50505050565b600061288c30610d60565b905060006012546011546128a0919061338a565b90506000808314806128b25750600082145b156128bf57505050612a8c565b60146008546128ce9190613570565b8311156128e75760146008546128e49190613570565b92505b6000600283601154866128fa9190613570565b61290491906135f9565b61290e91906135f9565b905060006129258286612ac490919063ffffffff16565b9050600047905061293582612ada565b600061294a8247612ac490919063ffffffff16565b905060006129758761296760125485612a8e90919063ffffffff16565b612aa490919063ffffffff16565b9050600081836129859190613c24565b9050600060118190555060006012819055506000861180156129a75750600081115b156129f4576129b68682612d17565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb56185826011546040516129eb93929190613cea565b60405180910390a15b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051612a3a90613d52565b60006040518083038185875af1925050503d8060008114612a77576040519150601f19603f3d011682016040523d82523d6000602084013e612a7c565b606091505b5050809750505050505050505050505b565b60008183612a9c9190613570565b905092915050565b60008183612ab291906135f9565b905092915050565b505050565b505050565b60008183612ad29190613c24565b905092915050565b6000600267ffffffffffffffff811115612af757612af6613d67565b5b604051908082528060200260200182016040528015612b255781602001602082028036833780820191505090505b5090503081600081518110612b3d57612b3c613d96565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612be2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612c069190613dda565b81600181518110612c1a57612c19613d96565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050612c7f307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611862565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401612ce1959493929190613f00565b600060405180830381600087803b158015612cfb57600080fd5b505af1158015612d0f573d6000803e3d6000fd5b505050505050565b612d42307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611862565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d719823085600080600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518863ffffffff1660e01b8152600401612dc996959493929190613f5a565b60606040518083038185885af1158015612de7573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190612e0c9190613fd0565b5050505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612e4d578082015181840152602081019050612e32565b83811115612e5c576000848401525b50505050565b6000601f19601f8301169050919050565b6000612e7e82612e13565b612e888185612e1e565b9350612e98818560208601612e2f565b612ea181612e62565b840191505092915050565b60006020820190508181036000830152612ec68184612e73565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612efe82612ed3565b9050919050565b612f0e81612ef3565b8114612f1957600080fd5b50565b600081359050612f2b81612f05565b92915050565b6000819050919050565b612f4481612f31565b8114612f4f57600080fd5b50565b600081359050612f6181612f3b565b92915050565b60008060408385031215612f7e57612f7d612ece565b5b6000612f8c85828601612f1c565b9250506020612f9d85828601612f52565b9150509250929050565b60008115159050919050565b612fbc81612fa7565b82525050565b6000602082019050612fd76000830184612fb3565b92915050565b600060208284031215612ff357612ff2612ece565b5b600061300184828501612f1c565b91505092915050565b6000819050919050565b600061302f61302a61302584612ed3565b61300a565b612ed3565b9050919050565b600061304182613014565b9050919050565b600061305382613036565b9050919050565b61306381613048565b82525050565b600060208201905061307e600083018461305a565b92915050565b61308d81612f31565b82525050565b60006020820190506130a86000830184613084565b92915050565b6000806000606084860312156130c7576130c6612ece565b5b60006130d586828701612f1c565b93505060206130e686828701612f1c565b92505060406130f786828701612f52565b9150509250925092565b61310a81612ef3565b82525050565b60006020820190506131256000830184613101565b92915050565b600060ff82169050919050565b6131418161312b565b82525050565b600060208201905061315c6000830184613138565b92915050565b61316b81612fa7565b811461317657600080fd5b50565b60008135905061318881613162565b92915050565b600080604083850312156131a5576131a4612ece565b5b60006131b385828601612f1c565b92505060206131c485828601613179565b9150509250929050565b6000602082840312156131e4576131e3612ece565b5b60006131f284828501613179565b91505092915050565b60006020828403121561321157613210612ece565b5b600061321f84828501612f52565b91505092915050565b6000806040838503121561323f5761323e612ece565b5b600061324d85828601612f1c565b925050602061325e85828601612f1c565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806132af57607f821691505b602082108114156132c3576132c2613268565b5b50919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b6000613325602883612e1e565b9150613330826132c9565b604082019050919050565b6000602082019050818103600083015261335481613318565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061339582612f31565b91506133a083612f31565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156133d5576133d461335b565b5b828201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613416602083612e1e565b9150613421826133e0565b602082019050919050565b6000602082019050818103600083015261344581613409565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b60006134a8603983612e1e565b91506134b38261344c565b604082019050919050565b600060208201905081810360008301526134d78161349b565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b600061353a602583612e1e565b9150613545826134de565b604082019050919050565b600060208201905081810360008301526135698161352d565b9050919050565b600061357b82612f31565b915061358683612f31565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156135bf576135be61335b565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061360482612f31565b915061360f83612f31565b92508261361f5761361e6135ca565b5b828204905092915050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b6000613686603583612e1e565b91506136918261362a565b604082019050919050565b600060208201905081810360008301526136b581613679565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b6000613718603483612e1e565b9150613723826136bc565b604082019050919050565b600060208201905081810360008301526137478161370b565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006137aa602683612e1e565b91506137b58261374e565b604082019050919050565b600060208201905081810360008301526137d98161379d565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061383c602483612e1e565b9150613847826137e0565b604082019050919050565b6000602082019050818103600083015261386b8161382f565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006138ce602283612e1e565b91506138d982613872565b604082019050919050565b600060208201905081810360008301526138fd816138c1565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000613960602583612e1e565b915061396b82613904565b604082019050919050565b6000602082019050818103600083015261398f81613953565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006139f2602383612e1e565b91506139fd82613996565b604082019050919050565b60006020820190508181036000830152613a21816139e5565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b6000613a5e601683612e1e565b9150613a6982613a28565b602082019050919050565b60006020820190508181036000830152613a8d81613a51565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b6000613af0603583612e1e565b9150613afb82613a94565b604082019050919050565b60006020820190508181036000830152613b1f81613ae3565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b6000613b5c601383612e1e565b9150613b6782613b26565b602082019050919050565b60006020820190508181036000830152613b8b81613b4f565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b6000613bee603683612e1e565b9150613bf982613b92565b604082019050919050565b60006020820190508181036000830152613c1d81613be1565b9050919050565b6000613c2f82612f31565b9150613c3a83612f31565b925082821015613c4d57613c4c61335b565b5b828203905092915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000613cb4602683612e1e565b9150613cbf82613c58565b604082019050919050565b60006020820190508181036000830152613ce381613ca7565b9050919050565b6000606082019050613cff6000830186613084565b613d0c6020830185613084565b613d196040830184613084565b949350505050565b600081905092915050565b50565b6000613d3c600083613d21565b9150613d4782613d2c565b600082019050919050565b6000613d5d82613d2f565b9150819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050613dd481612f05565b92915050565b600060208284031215613df057613def612ece565b5b6000613dfe84828501613dc5565b91505092915050565b6000819050919050565b6000613e2c613e27613e2284613e07565b61300a565b612f31565b9050919050565b613e3c81613e11565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b613e7781612ef3565b82525050565b6000613e898383613e6e565b60208301905092915050565b6000602082019050919050565b6000613ead82613e42565b613eb78185613e4d565b9350613ec283613e5e565b8060005b83811015613ef3578151613eda8882613e7d565b9750613ee583613e95565b925050600181019050613ec6565b5085935050505092915050565b600060a082019050613f156000830188613084565b613f226020830187613e33565b8181036040830152613f348186613ea2565b9050613f436060830185613101565b613f506080830184613084565b9695505050505050565b600060c082019050613f6f6000830189613101565b613f7c6020830188613084565b613f896040830187613e33565b613f966060830186613e33565b613fa36080830185613101565b613fb060a0830184613084565b979650505050505050565b600081519050613fca81612f3b565b92915050565b600080600060608486031215613fe957613fe8612ece565b5b6000613ff786828701613fbb565b935050602061400886828701613fbb565b925050604061401986828701613fbb565b915050925092509256fea26469706673582212200e196f9fa3c234f92fdce4377acac504e73b1abb2de8b5342f28372e72a7bd8b64736f6c634300080a0033

Deployed Bytecode Sourcemap

32779:12101:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9707:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11874:169;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33744:63;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32857:51;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10827:108;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33528:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12525:492;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32960:53;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10669:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13426:215;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32915:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33200:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38422:126;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33424:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33280:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10998:127;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2942:103;;;;;;;;;;;;;:::i;:::-;;36656:121;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37353:167;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36492:112;;;;;;;;;;;;;:::i;:::-;;2291:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33052:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37616:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9926:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37914:304;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33391:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33568:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33497:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14144:413;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11338:175;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33965:57;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33240:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37724:182;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33085:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36847:497;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33320:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11576:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33127:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33354:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3200:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33459:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33167:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9707:100;9761:13;9794:5;9787:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9707:100;:::o;11874:169::-;11957:4;11974:39;11983:12;:10;:12::i;:::-;11997:7;12006:6;11974:8;:39::i;:::-;12031:4;12024:11;;11874:169;;;;:::o;33744:63::-;;;;;;;;;;;;;;;;;;;;;;:::o;32857:51::-;;;:::o;10827:108::-;10888:7;10915:12;;10908:19;;10827:108;:::o;33528:33::-;;;;:::o;12525:492::-;12665:4;12682:36;12692:6;12700:9;12711:6;12682:9;:36::i;:::-;12731:24;12758:11;:19;12770:6;12758:19;;;;;;;;;;;;;;;:33;12778:12;:10;:12::i;:::-;12758:33;;;;;;;;;;;;;;;;12731:60;;12830:6;12810:16;:26;;12802:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;12917:57;12926:6;12934:12;:10;:12::i;:::-;12967:6;12948:16;:25;12917:8;:57::i;:::-;13005:4;12998:11;;;12525:492;;;;;:::o;32960:53::-;33006:6;32960:53;:::o;10669:93::-;10727:5;10752:2;10745:9;;10669:93;:::o;13426:215::-;13514:4;13531:80;13540:12;:10;:12::i;:::-;13554:7;13600:10;13563:11;:25;13575:12;:10;:12::i;:::-;13563:25;;;;;;;;;;;;;;;:34;13589:7;13563:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;13531:8;:80::i;:::-;13629:4;13622:11;;13426:215;;;;:::o;32915:38::-;;;:::o;33200:33::-;;;;;;;;;;;;;:::o;38422:126::-;38488:4;38512:19;:28;38532:7;38512:28;;;;;;;;;;;;;;;;;;;;;;;;;38505:35;;38422:126;;;:::o;33424:28::-;;;;:::o;33280:31::-;;;;;;;;;;;;;:::o;10998:127::-;11072:7;11099:9;:18;11109:7;11099:18;;;;;;;;;;;;;;;;11092:25;;10998:127;;;:::o;2942:103::-;2522:12;:10;:12::i;:::-;2511:23;;:7;:5;:7::i;:::-;:23;;;2503:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3007:30:::1;3034:1;3007:18;:30::i;:::-;2942:103::o:0;36656:121::-;36708:4;2522:12;:10;:12::i;:::-;2511:23;;:7;:5;:7::i;:::-;:23;;;2503:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;36742:5:::1;36725:14;;:22;;;;;;;;;;;;;;;;;;36765:4;36758:11;;36656:121:::0;:::o;37353:167::-;2522:12;:10;:12::i;:::-;2511:23;;:7;:5;:7::i;:::-;:23;;;2503:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37508:4:::1;37466:31;:39;37498:6;37466:39;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;37353:167:::0;;:::o;36492:112::-;2522:12;:10;:12::i;:::-;2511:23;;:7;:5;:7::i;:::-;:23;;;2503:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;36563:4:::1;36547:13;;:20;;;;;;;;;;;;;;;;;;36592:4;36578:11;;:18;;;;;;;;;;;;;;;;;;36492:112::o:0;2291:87::-;2337:7;2364:6;;;;;;;;;;;2357:13;;2291:87;:::o;33052:24::-;;;;;;;;;;;;;:::o;37616:100::-;2522:12;:10;:12::i;:::-;2511:23;;:7;:5;:7::i;:::-;:23;;;2503:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37701:7:::1;37687:11;;:21;;;;;;;;;;;;;;;;;;37616:100:::0;:::o;9926:104::-;9982:13;10015:7;10008:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9926:104;:::o;37914:304::-;2522:12;:10;:12::i;:::-;2511:23;;:7;:5;:7::i;:::-;:23;;;2503:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38058:13:::1;38050:21;;:4;:21;;;;38028:128;;;;;;;;;;;;:::i;:::-;;;;;;;;;38169:41;38198:4;38204:5;38169:28;:41::i;:::-;37914:304:::0;;:::o;33391:24::-;;;;:::o;33568:27::-;;;;:::o;33497:25::-;;;;:::o;14144:413::-;14237:4;14254:24;14281:11;:25;14293:12;:10;:12::i;:::-;14281:25;;;;;;;;;;;;;;;:34;14307:7;14281:34;;;;;;;;;;;;;;;;14254:61;;14354:15;14334:16;:35;;14326:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;14447:67;14456:12;:10;:12::i;:::-;14470:7;14498:15;14479:16;:34;14447:8;:67::i;:::-;14545:4;14538:11;;;14144:413;;;;:::o;11338:175::-;11424:4;11441:42;11451:12;:10;:12::i;:::-;11465:9;11476:6;11441:9;:42::i;:::-;11501:4;11494:11;;11338:175;;;;:::o;33965:57::-;;;;;;;;;;;;;;;;;;;;;;:::o;33240:33::-;;;;;;;;;;;;;:::o;37724:182::-;2522:12;:10;:12::i;:::-;2511:23;;:7;:5;:7::i;:::-;:23;;;2503:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37840:8:::1;37809:19;:28;37829:7;37809:28;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;37880:7;37864:34;;;37889:8;37864:34;;;;;;:::i;:::-;;;;;;;;37724:182:::0;;:::o;33085:35::-;;;;:::o;36847:497::-;36955:4;2522:12;:10;:12::i;:::-;2511:23;;:7;:5;:7::i;:::-;:23;;;2503:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37034:6:::1;37029:1;37013:13;:11;:13::i;:::-;:17;;;;:::i;:::-;37012:28;;;;:::i;:::-;36999:9;:41;;36977:144;;;;;;;;;;;;:::i;:::-;;;;;;;;;37189:4;37184:1;37168:13;:11;:13::i;:::-;:17;;;;:::i;:::-;37167:26;;;;:::i;:::-;37154:9;:39;;37132:141;;;;;;;;;;;;:::i;:::-;;;;;;;;;37305:9;37284:18;:30;;;;37332:4;37325:11;;36847:497:::0;;;:::o;33320:27::-;;;;:::o;11576:151::-;11665:7;11692:11;:18;11704:5;11692:18;;;;;;;;;;;;;;;:27;11711:7;11692:27;;;;;;;;;;;;;;;;11685:34;;11576:151;;;;:::o;33127:33::-;;;;:::o;33354:30::-;;;;:::o;3200:201::-;2522:12;:10;:12::i;:::-;2511:23;;:7;:5;:7::i;:::-;:23;;;2503:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3309:1:::1;3289:22;;:8;:22;;;;3281:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;3365:28;3384:8;3365:18;:28::i;:::-;3200:201:::0;:::o;33459:31::-;;;;:::o;33167:24::-;;;;:::o;964:98::-;1017:7;1044:10;1037:17;;964:98;:::o;17828:380::-;17981:1;17964:19;;:5;:19;;;;17956:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18062:1;18043:21;;:7;:21;;;;18035:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18146:6;18116:11;:18;18128:5;18116:18;;;;;;;;;;;;;;;:27;18135:7;18116:27;;;;;;;;;;;;;;;:36;;;;18184:7;18168:32;;18177:5;18168:32;;;18193:6;18168:32;;;;;;:::i;:::-;;;;;;;;17828:380;;;:::o;38556:3778::-;38704:1;38688:18;;:4;:18;;;;38680:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38781:1;38767:16;;:2;:16;;;;38759:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;38850:1;38840:6;:11;38836:93;;;38868:28;38884:4;38890:2;38894:1;38868:15;:28::i;:::-;38911:7;;38836:93;38945:14;;;;;;;;;;;38941:1694;;;39006:7;:5;:7::i;:::-;38998:15;;:4;:15;;;;:49;;;;;39040:7;:5;:7::i;:::-;39034:13;;:2;:13;;;;38998:49;:86;;;;;39082:1;39068:16;;:2;:16;;;;38998:86;:128;;;;;39119:6;39105:21;;:2;:21;;;;38998:128;:158;;;;;39148:8;;;;;;;;;;;39147:9;38998:158;38976:1648;;;39196:13;;;;;;;;;;;39191:223;;39268:19;:25;39288:4;39268:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;39297:19;:23;39317:2;39297:23;;;;;;;;;;;;;;;;;;;;;;;;;39268:52;39234:160;;;;;;;;;;;;:::i;:::-;;;;;;;;;39191:223;39488:25;:31;39514:4;39488:31;;;;;;;;;;;;;;;;;;;;;;;;;:92;;;;;39545:31;:35;39577:2;39545:35;;;;;;;;;;;;;;;;;;;;;;;;;39544:36;39488:92;39462:1147;;;39667:20;;39657:6;:30;;39623:169;;;;;;;;;;;;:::i;:::-;;;;;;;;;39875:9;;39858:13;39868:2;39858:9;:13::i;:::-;39849:6;:22;;;;:::i;:::-;:35;;39815:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;39462:1147;;;40053:25;:29;40079:2;40053:29;;;;;;;;;;;;;;;;;;;;;;;;;:92;;;;;40108:31;:37;40140:4;40108:37;;;;;;;;;;;;;;;;;;;;;;;;;40107:38;40053:92;40027:582;;;40232:20;;40222:6;:30;;40188:170;;;;;;;;;;;;:::i;:::-;;;;;;;;;40027:582;;;40389:31;:35;40421:2;40389:35;;;;;;;;;;;;;;;;;;;;;;;;;40384:225;;40509:9;;40492:13;40502:2;40492:9;:13::i;:::-;40483:6;:22;;;;:::i;:::-;:35;;40449:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;40384:225;40027:582;39462:1147;38976:1648;38941:1694;40647:28;40678:24;40696:4;40678:9;:24::i;:::-;40647:55;;40715:12;40754:18;;40730:20;:42;;40715:57;;40803:7;:35;;;;;40827:11;;;;;;;;;;;40803:35;:61;;;;;40856:8;;;;;;;;;;;40855:9;40803:61;:110;;;;;40882:25;:31;40908:4;40882:31;;;;;;;;;;;;;;;;;;;;;;;;;40881:32;40803:110;:153;;;;;40931:19;:25;40951:4;40931:25;;;;;;;;;;;;;;;;;;;;;;;;;40930:26;40803:153;:194;;;;;40974:19;:23;40994:2;40974:23;;;;;;;;;;;;;;;;;;;;;;;;;40973:24;40803:194;40785:326;;;41035:4;41024:8;;:15;;;;;;;;;;;;;;;;;;41056:10;:8;:10::i;:::-;41094:5;41083:8;;:16;;;;;;;;;;;;;;;;;;40785:326;41123:12;41139:8;;;;;;;;;;;41138:9;41123:24;;41249:19;:25;41269:4;41249:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;41278:19;:23;41298:2;41278:23;;;;;;;;;;;;;;;;;;;;;;;;;41249:52;41245:100;;;41328:5;41318:15;;41245:100;41357:12;41462:7;41458:823;;;41514:25;:29;41540:2;41514:29;;;;;;;;;;;;;;;;;;;;;;;;;:50;;;;;41563:1;41547:13;;:17;41514:50;41510:622;;;41592:34;41622:3;41592:25;41603:13;;41592:6;:10;;:25;;;;:::i;:::-;:29;;:34;;;;:::i;:::-;41585:41;;41695:13;;41675:16;;41668:4;:23;;;;:::i;:::-;41667:41;;;;:::i;:::-;41645:18;;:63;;;;;;;:::i;:::-;;;;;;;;41765:13;;41751:10;;41744:4;:17;;;;:::i;:::-;41743:35;;;;:::i;:::-;41727:12;;:51;;;;;;;:::i;:::-;;;;;;;;41510:622;;;41856:25;:31;41882:4;41856:31;;;;;;;;;;;;;;;;;;;;;;;;;:51;;;;;41906:1;41891:12;;:16;41856:51;41852:280;;;41935:33;41964:3;41935:24;41946:12;;41935:6;:10;;:24;;;;:::i;:::-;:28;;:33;;;;:::i;:::-;41928:40;;42036:12;;42017:15;;42010:4;:22;;;;:::i;:::-;42009:39;;;;:::i;:::-;41987:18;;:61;;;;;;;:::i;:::-;;;;;;;;42104:12;;42091:9;;42084:4;:16;;;;:::i;:::-;42083:33;;;;:::i;:::-;42067:12;;:49;;;;;;;:::i;:::-;;;;;;;;41852:280;41510:622;42159:1;42152:4;:8;42148:91;;;42181:42;42197:4;42211;42218;42181:15;:42::i;:::-;42148:91;42265:4;42255:14;;;;;:::i;:::-;;;41458:823;42293:33;42309:4;42315:2;42319:6;42293:15;:33::i;:::-;38669:3665;;;;38556:3778;;;;:::o;3561:191::-;3635:16;3654:6;;;;;;;;;;;3635:25;;3680:8;3671:6;;:17;;;;;;;;;;;;;;;;;;3735:8;3704:40;;3725:8;3704:40;;;;;;;;;;;;3624:128;3561:191;:::o;38226:188::-;38343:5;38309:25;:31;38335:4;38309:31;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;38400:5;38366:40;;38394:4;38366:40;;;;;;;;;;;;38226:188;;:::o;15047:733::-;15205:1;15187:20;;:6;:20;;;;15179:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;15289:1;15268:23;;:9;:23;;;;15260:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;15344:47;15365:6;15373:9;15384:6;15344:20;:47::i;:::-;15404:21;15428:9;:17;15438:6;15428:17;;;;;;;;;;;;;;;;15404:41;;15481:6;15464:13;:23;;15456:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;15602:6;15586:13;:22;15566:9;:17;15576:6;15566:17;;;;;;;;;;;;;;;:42;;;;15654:6;15630:9;:20;15640:9;15630:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;15695:9;15678:35;;15687:6;15678:35;;;15706:6;15678:35;;;;;;:::i;:::-;;;;;;;;15726:46;15746:6;15754:9;15765:6;15726:19;:46::i;:::-;15168:612;15047:733;;;:::o;43462:1413::-;43501:23;43527:24;43545:4;43527:9;:24::i;:::-;43501:50;;43562:25;43611:12;;43590:18;;:33;;;;:::i;:::-;43562:61;;43634:12;43682:1;43663:15;:20;:46;;;;43708:1;43687:17;:22;43663:46;43659:85;;;43726:7;;;;;43659:85;43799:2;43778:18;;:23;;;;:::i;:::-;43760:15;:41;43756:115;;;43857:2;43836:18;;:23;;;;:::i;:::-;43818:41;;43756:115;43932:23;44019:1;43999:17;43977:18;;43959:15;:36;;;;:::i;:::-;43958:58;;;;:::i;:::-;:62;;;;:::i;:::-;43932:88;;44031:26;44060:36;44080:15;44060;:19;;:36;;;;:::i;:::-;44031:65;;44109:25;44137:21;44109:49;;44171:36;44188:18;44171:16;:36::i;:::-;44220:18;44241:44;44267:17;44241:21;:25;;:44;;;;:::i;:::-;44220:65;;44299:17;44319:51;44352:17;44319:28;44334:12;;44319:10;:14;;:28;;;;:::i;:::-;:32;;:51;;;;:::i;:::-;44299:71;;44383:23;44422:9;44409:10;:22;;;;:::i;:::-;44383:48;;44465:1;44444:18;:22;;;;44492:1;44477:12;:16;;;;44528:1;44510:15;:19;:42;;;;;44551:1;44533:15;:19;44510:42;44506:278;;;44569:46;44582:15;44599;44569:12;:46::i;:::-;44635:137;44668:18;44705:15;44739:18;;44635:137;;;;;;;;:::i;:::-;;;;;;;;44506:278;44818:9;;;;;;;;;;;44810:23;;44841:21;44810:57;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44796:71;;;;;43490:1385;;;;;;;;;43462:1413;:::o;23281:98::-;23339:7;23370:1;23366;:5;;;;:::i;:::-;23359:12;;23281:98;;;;:::o;23680:::-;23738:7;23769:1;23765;:5;;;;:::i;:::-;23758:12;;23680:98;;;;:::o;18808:125::-;;;;:::o;19537:124::-;;;;:::o;22924:98::-;22982:7;23013:1;23009;:5;;;;:::i;:::-;23002:12;;22924:98;;;;:::o;42342:589::-;42468:21;42506:1;42492:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42468:40;;42537:4;42519;42524:1;42519:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;;;42563:15;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;42553:4;42558:1;42553:7;;;;;;;;:::i;:::-;;;;;;;:32;;;;;;;;;;;42598:62;42615:4;42630:15;42648:11;42598:8;:62::i;:::-;42699:15;:66;;;42780:11;42806:1;42850:4;42877;42897:15;42699:224;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42397:534;42342:589;:::o;42939:515::-;43087:62;43104:4;43119:15;43137:11;43087:8;:62::i;:::-;43192:15;:31;;;43231:9;43264:4;43284:11;43310:1;43353;43396:9;;;;;;;;;;;43420:15;43192:254;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;42939:515;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:307::-;355:1;365:113;379:6;376:1;373:13;365:113;;;464:1;459:3;455:11;449:18;445:1;440:3;436:11;429:39;401:2;398:1;394:10;389:15;;365:113;;;496:6;493:1;490:13;487:101;;;576:1;567:6;562:3;558:16;551:27;487:101;336:258;287:307;;;:::o;600:102::-;641:6;692:2;688:7;683:2;676:5;672:14;668:28;658:38;;600:102;;;:::o;708:364::-;796:3;824:39;857:5;824:39;:::i;:::-;879:71;943:6;938:3;879:71;:::i;:::-;872:78;;959:52;1004:6;999:3;992:4;985:5;981:16;959:52;:::i;:::-;1036:29;1058:6;1036:29;:::i;:::-;1031:3;1027:39;1020:46;;800:272;708:364;;;;:::o;1078:313::-;1191:4;1229:2;1218:9;1214:18;1206:26;;1278:9;1272:4;1268:20;1264:1;1253:9;1249:17;1242:47;1306:78;1379:4;1370:6;1306:78;:::i;:::-;1298:86;;1078:313;;;;:::o;1478:117::-;1587:1;1584;1577:12;1724:126;1761:7;1801:42;1794:5;1790:54;1779:65;;1724:126;;;:::o;1856:96::-;1893:7;1922:24;1940:5;1922:24;:::i;:::-;1911:35;;1856:96;;;:::o;1958:122::-;2031:24;2049:5;2031:24;:::i;:::-;2024:5;2021:35;2011:63;;2070:1;2067;2060:12;2011:63;1958:122;:::o;2086:139::-;2132:5;2170:6;2157:20;2148:29;;2186:33;2213:5;2186:33;:::i;:::-;2086:139;;;;:::o;2231:77::-;2268:7;2297:5;2286:16;;2231:77;;;:::o;2314:122::-;2387:24;2405:5;2387:24;:::i;:::-;2380:5;2377:35;2367:63;;2426:1;2423;2416:12;2367:63;2314:122;:::o;2442:139::-;2488:5;2526:6;2513:20;2504:29;;2542:33;2569:5;2542:33;:::i;:::-;2442:139;;;;:::o;2587:474::-;2655:6;2663;2712:2;2700:9;2691:7;2687:23;2683:32;2680:119;;;2718:79;;:::i;:::-;2680:119;2838:1;2863:53;2908:7;2899:6;2888:9;2884:22;2863:53;:::i;:::-;2853:63;;2809:117;2965:2;2991:53;3036:7;3027:6;3016:9;3012:22;2991:53;:::i;:::-;2981:63;;2936:118;2587:474;;;;;:::o;3067:90::-;3101:7;3144:5;3137:13;3130:21;3119:32;;3067:90;;;:::o;3163:109::-;3244:21;3259:5;3244:21;:::i;:::-;3239:3;3232:34;3163:109;;:::o;3278:210::-;3365:4;3403:2;3392:9;3388:18;3380:26;;3416:65;3478:1;3467:9;3463:17;3454:6;3416:65;:::i;:::-;3278:210;;;;:::o;3494:329::-;3553:6;3602:2;3590:9;3581:7;3577:23;3573:32;3570:119;;;3608:79;;:::i;:::-;3570:119;3728:1;3753:53;3798:7;3789:6;3778:9;3774:22;3753:53;:::i;:::-;3743:63;;3699:117;3494:329;;;;:::o;3829:60::-;3857:3;3878:5;3871:12;;3829:60;;;:::o;3895:142::-;3945:9;3978:53;3996:34;4005:24;4023:5;4005:24;:::i;:::-;3996:34;:::i;:::-;3978:53;:::i;:::-;3965:66;;3895:142;;;:::o;4043:126::-;4093:9;4126:37;4157:5;4126:37;:::i;:::-;4113:50;;4043:126;;;:::o;4175:153::-;4252:9;4285:37;4316:5;4285:37;:::i;:::-;4272:50;;4175:153;;;:::o;4334:185::-;4448:64;4506:5;4448:64;:::i;:::-;4443:3;4436:77;4334:185;;:::o;4525:276::-;4645:4;4683:2;4672:9;4668:18;4660:26;;4696:98;4791:1;4780:9;4776:17;4767:6;4696:98;:::i;:::-;4525:276;;;;:::o;4807:118::-;4894:24;4912:5;4894:24;:::i;:::-;4889:3;4882:37;4807:118;;:::o;4931:222::-;5024:4;5062:2;5051:9;5047:18;5039:26;;5075:71;5143:1;5132:9;5128:17;5119:6;5075:71;:::i;:::-;4931:222;;;;:::o;5159:619::-;5236:6;5244;5252;5301:2;5289:9;5280:7;5276:23;5272:32;5269:119;;;5307:79;;:::i;:::-;5269:119;5427:1;5452:53;5497:7;5488:6;5477:9;5473:22;5452:53;:::i;:::-;5442:63;;5398:117;5554:2;5580:53;5625:7;5616:6;5605:9;5601:22;5580:53;:::i;:::-;5570:63;;5525:118;5682:2;5708:53;5753:7;5744:6;5733:9;5729:22;5708:53;:::i;:::-;5698:63;;5653:118;5159:619;;;;;:::o;5784:118::-;5871:24;5889:5;5871:24;:::i;:::-;5866:3;5859:37;5784:118;;:::o;5908:222::-;6001:4;6039:2;6028:9;6024:18;6016:26;;6052:71;6120:1;6109:9;6105:17;6096:6;6052:71;:::i;:::-;5908:222;;;;:::o;6136:86::-;6171:7;6211:4;6204:5;6200:16;6189:27;;6136:86;;;:::o;6228:112::-;6311:22;6327:5;6311:22;:::i;:::-;6306:3;6299:35;6228:112;;:::o;6346:214::-;6435:4;6473:2;6462:9;6458:18;6450:26;;6486:67;6550:1;6539:9;6535:17;6526:6;6486:67;:::i;:::-;6346:214;;;;:::o;6566:116::-;6636:21;6651:5;6636:21;:::i;:::-;6629:5;6626:32;6616:60;;6672:1;6669;6662:12;6616:60;6566:116;:::o;6688:133::-;6731:5;6769:6;6756:20;6747:29;;6785:30;6809:5;6785:30;:::i;:::-;6688:133;;;;:::o;6827:468::-;6892:6;6900;6949:2;6937:9;6928:7;6924:23;6920:32;6917:119;;;6955:79;;:::i;:::-;6917:119;7075:1;7100:53;7145:7;7136:6;7125:9;7121:22;7100:53;:::i;:::-;7090:63;;7046:117;7202:2;7228:50;7270:7;7261:6;7250:9;7246:22;7228:50;:::i;:::-;7218:60;;7173:115;6827:468;;;;;:::o;7301:323::-;7357:6;7406:2;7394:9;7385:7;7381:23;7377:32;7374:119;;;7412:79;;:::i;:::-;7374:119;7532:1;7557:50;7599:7;7590:6;7579:9;7575:22;7557:50;:::i;:::-;7547:60;;7503:114;7301:323;;;;:::o;7630:329::-;7689:6;7738:2;7726:9;7717:7;7713:23;7709:32;7706:119;;;7744:79;;:::i;:::-;7706:119;7864:1;7889:53;7934:7;7925:6;7914:9;7910:22;7889:53;:::i;:::-;7879:63;;7835:117;7630:329;;;;:::o;7965:474::-;8033:6;8041;8090:2;8078:9;8069:7;8065:23;8061:32;8058:119;;;8096:79;;:::i;:::-;8058:119;8216:1;8241:53;8286:7;8277:6;8266:9;8262:22;8241:53;:::i;:::-;8231:63;;8187:117;8343:2;8369:53;8414:7;8405:6;8394:9;8390:22;8369:53;:::i;:::-;8359:63;;8314:118;7965:474;;;;;:::o;8445:180::-;8493:77;8490:1;8483:88;8590:4;8587:1;8580:15;8614:4;8611:1;8604:15;8631:320;8675:6;8712:1;8706:4;8702:12;8692:22;;8759:1;8753:4;8749:12;8780:18;8770:81;;8836:4;8828:6;8824:17;8814:27;;8770:81;8898:2;8890:6;8887:14;8867:18;8864:38;8861:84;;;8917:18;;:::i;:::-;8861:84;8682:269;8631:320;;;:::o;8957:227::-;9097:34;9093:1;9085:6;9081:14;9074:58;9166:10;9161:2;9153:6;9149:15;9142:35;8957:227;:::o;9190:366::-;9332:3;9353:67;9417:2;9412:3;9353:67;:::i;:::-;9346:74;;9429:93;9518:3;9429:93;:::i;:::-;9547:2;9542:3;9538:12;9531:19;;9190:366;;;:::o;9562:419::-;9728:4;9766:2;9755:9;9751:18;9743:26;;9815:9;9809:4;9805:20;9801:1;9790:9;9786:17;9779:47;9843:131;9969:4;9843:131;:::i;:::-;9835:139;;9562:419;;;:::o;9987:180::-;10035:77;10032:1;10025:88;10132:4;10129:1;10122:15;10156:4;10153:1;10146:15;10173:305;10213:3;10232:20;10250:1;10232:20;:::i;:::-;10227:25;;10266:20;10284:1;10266:20;:::i;:::-;10261:25;;10420:1;10352:66;10348:74;10345:1;10342:81;10339:107;;;10426:18;;:::i;:::-;10339:107;10470:1;10467;10463:9;10456:16;;10173:305;;;;:::o;10484:182::-;10624:34;10620:1;10612:6;10608:14;10601:58;10484:182;:::o;10672:366::-;10814:3;10835:67;10899:2;10894:3;10835:67;:::i;:::-;10828:74;;10911:93;11000:3;10911:93;:::i;:::-;11029:2;11024:3;11020:12;11013:19;;10672:366;;;:::o;11044:419::-;11210:4;11248:2;11237:9;11233:18;11225:26;;11297:9;11291:4;11287:20;11283:1;11272:9;11268:17;11261:47;11325:131;11451:4;11325:131;:::i;:::-;11317:139;;11044:419;;;:::o;11469:244::-;11609:34;11605:1;11597:6;11593:14;11586:58;11678:27;11673:2;11665:6;11661:15;11654:52;11469:244;:::o;11719:366::-;11861:3;11882:67;11946:2;11941:3;11882:67;:::i;:::-;11875:74;;11958:93;12047:3;11958:93;:::i;:::-;12076:2;12071:3;12067:12;12060:19;;11719:366;;;:::o;12091:419::-;12257:4;12295:2;12284:9;12280:18;12272:26;;12344:9;12338:4;12334:20;12330:1;12319:9;12315:17;12308:47;12372:131;12498:4;12372:131;:::i;:::-;12364:139;;12091:419;;;:::o;12516:224::-;12656:34;12652:1;12644:6;12640:14;12633:58;12725:7;12720:2;12712:6;12708:15;12701:32;12516:224;:::o;12746:366::-;12888:3;12909:67;12973:2;12968:3;12909:67;:::i;:::-;12902:74;;12985:93;13074:3;12985:93;:::i;:::-;13103:2;13098:3;13094:12;13087:19;;12746:366;;;:::o;13118:419::-;13284:4;13322:2;13311:9;13307:18;13299:26;;13371:9;13365:4;13361:20;13357:1;13346:9;13342:17;13335:47;13399:131;13525:4;13399:131;:::i;:::-;13391:139;;13118:419;;;:::o;13543:348::-;13583:7;13606:20;13624:1;13606:20;:::i;:::-;13601:25;;13640:20;13658:1;13640:20;:::i;:::-;13635:25;;13828:1;13760:66;13756:74;13753:1;13750:81;13745:1;13738:9;13731:17;13727:105;13724:131;;;13835:18;;:::i;:::-;13724:131;13883:1;13880;13876:9;13865:20;;13543:348;;;;:::o;13897:180::-;13945:77;13942:1;13935:88;14042:4;14039:1;14032:15;14066:4;14063:1;14056:15;14083:185;14123:1;14140:20;14158:1;14140:20;:::i;:::-;14135:25;;14174:20;14192:1;14174:20;:::i;:::-;14169:25;;14213:1;14203:35;;14218:18;;:::i;:::-;14203:35;14260:1;14257;14253:9;14248:14;;14083:185;;;;:::o;14274:240::-;14414:34;14410:1;14402:6;14398:14;14391:58;14483:23;14478:2;14470:6;14466:15;14459:48;14274:240;:::o;14520:366::-;14662:3;14683:67;14747:2;14742:3;14683:67;:::i;:::-;14676:74;;14759:93;14848:3;14759:93;:::i;:::-;14877:2;14872:3;14868:12;14861:19;;14520:366;;;:::o;14892:419::-;15058:4;15096:2;15085:9;15081:18;15073:26;;15145:9;15139:4;15135:20;15131:1;15120:9;15116:17;15109:47;15173:131;15299:4;15173:131;:::i;:::-;15165:139;;14892:419;;;:::o;15317:239::-;15457:34;15453:1;15445:6;15441:14;15434:58;15526:22;15521:2;15513:6;15509:15;15502:47;15317:239;:::o;15562:366::-;15704:3;15725:67;15789:2;15784:3;15725:67;:::i;:::-;15718:74;;15801:93;15890:3;15801:93;:::i;:::-;15919:2;15914:3;15910:12;15903:19;;15562:366;;;:::o;15934:419::-;16100:4;16138:2;16127:9;16123:18;16115:26;;16187:9;16181:4;16177:20;16173:1;16162:9;16158:17;16151:47;16215:131;16341:4;16215:131;:::i;:::-;16207:139;;15934:419;;;:::o;16359:225::-;16499:34;16495:1;16487:6;16483:14;16476:58;16568:8;16563:2;16555:6;16551:15;16544:33;16359:225;:::o;16590:366::-;16732:3;16753:67;16817:2;16812:3;16753:67;:::i;:::-;16746:74;;16829:93;16918:3;16829:93;:::i;:::-;16947:2;16942:3;16938:12;16931:19;;16590:366;;;:::o;16962:419::-;17128:4;17166:2;17155:9;17151:18;17143:26;;17215:9;17209:4;17205:20;17201:1;17190:9;17186:17;17179:47;17243:131;17369:4;17243:131;:::i;:::-;17235:139;;16962:419;;;:::o;17387:223::-;17527:34;17523:1;17515:6;17511:14;17504:58;17596:6;17591:2;17583:6;17579:15;17572:31;17387:223;:::o;17616:366::-;17758:3;17779:67;17843:2;17838:3;17779:67;:::i;:::-;17772:74;;17855:93;17944:3;17855:93;:::i;:::-;17973:2;17968:3;17964:12;17957:19;;17616:366;;;:::o;17988:419::-;18154:4;18192:2;18181:9;18177:18;18169:26;;18241:9;18235:4;18231:20;18227:1;18216:9;18212:17;18205:47;18269:131;18395:4;18269:131;:::i;:::-;18261:139;;17988:419;;;:::o;18413:221::-;18553:34;18549:1;18541:6;18537:14;18530:58;18622:4;18617:2;18609:6;18605:15;18598:29;18413:221;:::o;18640:366::-;18782:3;18803:67;18867:2;18862:3;18803:67;:::i;:::-;18796:74;;18879:93;18968:3;18879:93;:::i;:::-;18997:2;18992:3;18988:12;18981:19;;18640:366;;;:::o;19012:419::-;19178:4;19216:2;19205:9;19201:18;19193:26;;19265:9;19259:4;19255:20;19251:1;19240:9;19236:17;19229:47;19293:131;19419:4;19293:131;:::i;:::-;19285:139;;19012:419;;;:::o;19437:224::-;19577:34;19573:1;19565:6;19561:14;19554:58;19646:7;19641:2;19633:6;19629:15;19622:32;19437:224;:::o;19667:366::-;19809:3;19830:67;19894:2;19889:3;19830:67;:::i;:::-;19823:74;;19906:93;19995:3;19906:93;:::i;:::-;20024:2;20019:3;20015:12;20008:19;;19667:366;;;:::o;20039:419::-;20205:4;20243:2;20232:9;20228:18;20220:26;;20292:9;20286:4;20282:20;20278:1;20267:9;20263:17;20256:47;20320:131;20446:4;20320:131;:::i;:::-;20312:139;;20039:419;;;:::o;20464:222::-;20604:34;20600:1;20592:6;20588:14;20581:58;20673:5;20668:2;20660:6;20656:15;20649:30;20464:222;:::o;20692:366::-;20834:3;20855:67;20919:2;20914:3;20855:67;:::i;:::-;20848:74;;20931:93;21020:3;20931:93;:::i;:::-;21049:2;21044:3;21040:12;21033:19;;20692:366;;;:::o;21064:419::-;21230:4;21268:2;21257:9;21253:18;21245:26;;21317:9;21311:4;21307:20;21303:1;21292:9;21288:17;21281:47;21345:131;21471:4;21345:131;:::i;:::-;21337:139;;21064:419;;;:::o;21489:172::-;21629:24;21625:1;21617:6;21613:14;21606:48;21489:172;:::o;21667:366::-;21809:3;21830:67;21894:2;21889:3;21830:67;:::i;:::-;21823:74;;21906:93;21995:3;21906:93;:::i;:::-;22024:2;22019:3;22015:12;22008:19;;21667:366;;;:::o;22039:419::-;22205:4;22243:2;22232:9;22228:18;22220:26;;22292:9;22286:4;22282:20;22278:1;22267:9;22263:17;22256:47;22320:131;22446:4;22320:131;:::i;:::-;22312:139;;22039:419;;;:::o;22464:240::-;22604:34;22600:1;22592:6;22588:14;22581:58;22673:23;22668:2;22660:6;22656:15;22649:48;22464:240;:::o;22710:366::-;22852:3;22873:67;22937:2;22932:3;22873:67;:::i;:::-;22866:74;;22949:93;23038:3;22949:93;:::i;:::-;23067:2;23062:3;23058:12;23051:19;;22710:366;;;:::o;23082:419::-;23248:4;23286:2;23275:9;23271:18;23263:26;;23335:9;23329:4;23325:20;23321:1;23310:9;23306:17;23299:47;23363:131;23489:4;23363:131;:::i;:::-;23355:139;;23082:419;;;:::o;23507:169::-;23647:21;23643:1;23635:6;23631:14;23624:45;23507:169;:::o;23682:366::-;23824:3;23845:67;23909:2;23904:3;23845:67;:::i;:::-;23838:74;;23921:93;24010:3;23921:93;:::i;:::-;24039:2;24034:3;24030:12;24023:19;;23682:366;;;:::o;24054:419::-;24220:4;24258:2;24247:9;24243:18;24235:26;;24307:9;24301:4;24297:20;24293:1;24282:9;24278:17;24271:47;24335:131;24461:4;24335:131;:::i;:::-;24327:139;;24054:419;;;:::o;24479:241::-;24619:34;24615:1;24607:6;24603:14;24596:58;24688:24;24683:2;24675:6;24671:15;24664:49;24479:241;:::o;24726:366::-;24868:3;24889:67;24953:2;24948:3;24889:67;:::i;:::-;24882:74;;24965:93;25054:3;24965:93;:::i;:::-;25083:2;25078:3;25074:12;25067:19;;24726:366;;;:::o;25098:419::-;25264:4;25302:2;25291:9;25287:18;25279:26;;25351:9;25345:4;25341:20;25337:1;25326:9;25322:17;25315:47;25379:131;25505:4;25379:131;:::i;:::-;25371:139;;25098:419;;;:::o;25523:191::-;25563:4;25583:20;25601:1;25583:20;:::i;:::-;25578:25;;25617:20;25635:1;25617:20;:::i;:::-;25612:25;;25656:1;25653;25650:8;25647:34;;;25661:18;;:::i;:::-;25647:34;25706:1;25703;25699:9;25691:17;;25523:191;;;;:::o;25720:225::-;25860:34;25856:1;25848:6;25844:14;25837:58;25929:8;25924:2;25916:6;25912:15;25905:33;25720:225;:::o;25951:366::-;26093:3;26114:67;26178:2;26173:3;26114:67;:::i;:::-;26107:74;;26190:93;26279:3;26190:93;:::i;:::-;26308:2;26303:3;26299:12;26292:19;;25951:366;;;:::o;26323:419::-;26489:4;26527:2;26516:9;26512:18;26504:26;;26576:9;26570:4;26566:20;26562:1;26551:9;26547:17;26540:47;26604:131;26730:4;26604:131;:::i;:::-;26596:139;;26323:419;;;:::o;26748:442::-;26897:4;26935:2;26924:9;26920:18;26912:26;;26948:71;27016:1;27005:9;27001:17;26992:6;26948:71;:::i;:::-;27029:72;27097:2;27086:9;27082:18;27073:6;27029:72;:::i;:::-;27111;27179:2;27168:9;27164:18;27155:6;27111:72;:::i;:::-;26748:442;;;;;;:::o;27196:147::-;27297:11;27334:3;27319:18;;27196:147;;;;:::o;27349:114::-;;:::o;27469:398::-;27628:3;27649:83;27730:1;27725:3;27649:83;:::i;:::-;27642:90;;27741:93;27830:3;27741:93;:::i;:::-;27859:1;27854:3;27850:11;27843:18;;27469:398;;;:::o;27873:379::-;28057:3;28079:147;28222:3;28079:147;:::i;:::-;28072:154;;28243:3;28236:10;;27873:379;;;:::o;28258:180::-;28306:77;28303:1;28296:88;28403:4;28400:1;28393:15;28427:4;28424:1;28417:15;28444:180;28492:77;28489:1;28482:88;28589:4;28586:1;28579:15;28613:4;28610:1;28603:15;28630:143;28687:5;28718:6;28712:13;28703:22;;28734:33;28761:5;28734:33;:::i;:::-;28630:143;;;;:::o;28779:351::-;28849:6;28898:2;28886:9;28877:7;28873:23;28869:32;28866:119;;;28904:79;;:::i;:::-;28866:119;29024:1;29049:64;29105:7;29096:6;29085:9;29081:22;29049:64;:::i;:::-;29039:74;;28995:128;28779:351;;;;:::o;29136:85::-;29181:7;29210:5;29199:16;;29136:85;;;:::o;29227:158::-;29285:9;29318:61;29336:42;29345:32;29371:5;29345:32;:::i;:::-;29336:42;:::i;:::-;29318:61;:::i;:::-;29305:74;;29227:158;;;:::o;29391:147::-;29486:45;29525:5;29486:45;:::i;:::-;29481:3;29474:58;29391:147;;:::o;29544:114::-;29611:6;29645:5;29639:12;29629:22;;29544:114;;;:::o;29664:184::-;29763:11;29797:6;29792:3;29785:19;29837:4;29832:3;29828:14;29813:29;;29664:184;;;;:::o;29854:132::-;29921:4;29944:3;29936:11;;29974:4;29969:3;29965:14;29957:22;;29854:132;;;:::o;29992:108::-;30069:24;30087:5;30069:24;:::i;:::-;30064:3;30057:37;29992:108;;:::o;30106:179::-;30175:10;30196:46;30238:3;30230:6;30196:46;:::i;:::-;30274:4;30269:3;30265:14;30251:28;;30106:179;;;;:::o;30291:113::-;30361:4;30393;30388:3;30384:14;30376:22;;30291:113;;;:::o;30440:732::-;30559:3;30588:54;30636:5;30588:54;:::i;:::-;30658:86;30737:6;30732:3;30658:86;:::i;:::-;30651:93;;30768:56;30818:5;30768:56;:::i;:::-;30847:7;30878:1;30863:284;30888:6;30885:1;30882:13;30863:284;;;30964:6;30958:13;30991:63;31050:3;31035:13;30991:63;:::i;:::-;30984:70;;31077:60;31130:6;31077:60;:::i;:::-;31067:70;;30923:224;30910:1;30907;30903:9;30898:14;;30863:284;;;30867:14;31163:3;31156:10;;30564:608;;;30440:732;;;;:::o;31178:831::-;31441:4;31479:3;31468:9;31464:19;31456:27;;31493:71;31561:1;31550:9;31546:17;31537:6;31493:71;:::i;:::-;31574:80;31650:2;31639:9;31635:18;31626:6;31574:80;:::i;:::-;31701:9;31695:4;31691:20;31686:2;31675:9;31671:18;31664:48;31729:108;31832:4;31823:6;31729:108;:::i;:::-;31721:116;;31847:72;31915:2;31904:9;31900:18;31891:6;31847:72;:::i;:::-;31929:73;31997:3;31986:9;31982:19;31973:6;31929:73;:::i;:::-;31178:831;;;;;;;;:::o;32015:807::-;32264:4;32302:3;32291:9;32287:19;32279:27;;32316:71;32384:1;32373:9;32369:17;32360:6;32316:71;:::i;:::-;32397:72;32465:2;32454:9;32450:18;32441:6;32397:72;:::i;:::-;32479:80;32555:2;32544:9;32540:18;32531:6;32479:80;:::i;:::-;32569;32645:2;32634:9;32630:18;32621:6;32569:80;:::i;:::-;32659:73;32727:3;32716:9;32712:19;32703:6;32659:73;:::i;:::-;32742;32810:3;32799:9;32795:19;32786:6;32742:73;:::i;:::-;32015:807;;;;;;;;;:::o;32828:143::-;32885:5;32916:6;32910:13;32901:22;;32932:33;32959:5;32932:33;:::i;:::-;32828:143;;;;:::o;32977:663::-;33065:6;33073;33081;33130:2;33118:9;33109:7;33105:23;33101:32;33098:119;;;33136:79;;:::i;:::-;33098:119;33256:1;33281:64;33337:7;33328:6;33317:9;33313:22;33281:64;:::i;:::-;33271:74;;33227:128;33394:2;33420:64;33476:7;33467:6;33456:9;33452:22;33420:64;:::i;:::-;33410:74;;33365:129;33533:2;33559:64;33615:7;33606:6;33595:9;33591:22;33559:64;:::i;:::-;33549:74;;33504:129;32977:663;;;;;:::o

Swarm Source

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