ETH Price: $3,390.74 (-2.59%)
Gas: 1 Gwei

Token

0xShooters (0xShooters)
 

Overview

Max Total Supply

1,000,000,000 0xShooters

Holders

11

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
13,194,583.882023570467709299 0xShooters

Value
$0.00
0xe69df133fb7cb2efebd9f63b9d48262bc542fa5a
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:
Shooters

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 2023-06-23
*/

/**
V
                                                                                                                                                                                                     
                                                                                                                                                                                                     
     000000000                            SSSSSSSSSSSSSSS hhhhhhh                                                        tttt                                                                        
   00:::::::::00                        SS:::::::::::::::Sh:::::h                                                     ttt:::t                                                                        
 00:::::::::::::00                     S:::::SSSSSS::::::Sh:::::h                                                     t:::::t                                                                        
0:::::::000:::::::0                    S:::::S     SSSSSSSh:::::h                                                     t:::::t                                                                        
0::::::0   0::::::0xxxxxxx      xxxxxxxS:::::S             h::::h hhhhh          ooooooooooo      ooooooooooo   ttttttt:::::ttttttt        eeeeeeeeeeee    rrrrr   rrrrrrrrr       ssssssssss        
0:::::0     0:::::0 x:::::x    x:::::x S:::::S             h::::hh:::::hhh     oo:::::::::::oo  oo:::::::::::oo t:::::::::::::::::t      ee::::::::::::ee  r::::rrr:::::::::r    ss::::::::::s       
0:::::0     0:::::0  x:::::x  x:::::x   S::::SSSS          h::::::::::::::hh  o:::::::::::::::oo:::::::::::::::ot:::::::::::::::::t     e::::::eeeee:::::eer:::::::::::::::::r ss:::::::::::::s      
0:::::0 000 0:::::0   x:::::xx:::::x     SS::::::SSSSS     h:::::::hhh::::::h o:::::ooooo:::::oo:::::ooooo:::::otttttt:::::::tttttt    e::::::e     e:::::err::::::rrrrr::::::rs::::::ssss:::::s     
0:::::0 000 0:::::0    x::::::::::x        SSS::::::::SS   h::::::h   h::::::ho::::o     o::::oo::::o     o::::o      t:::::t          e:::::::eeeee::::::e r:::::r     r:::::r s:::::s  ssssss      
0:::::0     0:::::0     x::::::::x            SSSSSS::::S  h:::::h     h:::::ho::::o     o::::oo::::o     o::::o      t:::::t          e:::::::::::::::::e  r:::::r     rrrrrrr   s::::::s           
0:::::0     0:::::0     x::::::::x                 S:::::S h:::::h     h:::::ho::::o     o::::oo::::o     o::::o      t:::::t          e::::::eeeeeeeeeee   r:::::r                  s::::::s        
0::::::0   0::::::0    x::::::::::x                S:::::S h:::::h     h:::::ho::::o     o::::oo::::o     o::::o      t:::::t    tttttte:::::::e            r:::::r            ssssss   s:::::s      
0:::::::000:::::::0   x:::::xx:::::x   SSSSSSS     S:::::S h:::::h     h:::::ho:::::ooooo:::::oo:::::ooooo:::::o      t::::::tttt:::::te::::::::e           r:::::r            s:::::ssss::::::s     
 00:::::::::::::00   x:::::x  x:::::x  S::::::SSSSSS:::::S h:::::h     h:::::ho:::::::::::::::oo:::::::::::::::o      tt::::::::::::::t e::::::::eeeeeeee   r:::::r            s::::::::::::::s      
   00:::::::::00    x:::::x    x:::::x S:::::::::::::::SS  h:::::h     h:::::h oo:::::::::::oo  oo:::::::::::oo         tt:::::::::::tt  ee:::::::::::::e   r:::::r             s:::::::::::ss       
     000000000     xxxxxxx      xxxxxxx SSSSSSSSSSSSSSS    hhhhhhh     hhhhhhh   ooooooooooo      ooooooooooo             ttttttttttt      eeeeeeeeeeeeee   rrrrrrr              sssssssssss         
                                                                                                                                                                                                     
                                                                                                                                                                                                     
                                                                                                                                                                                                     
                                                                                                                                                                                                     
                                                                                                                                                                                                     
                                                                                                                                                                                                     
                                                                                                                                                                                                     

*/ 

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

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

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

    function feeTo() external view returns (address);

    function feeToSetter() external view returns (address);

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

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

    function allPairsLength() external view returns (uint256);

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

    function setFeeTo(address) external;

    function setFeeToSetter(address) external;
}

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

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

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

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

    function decimals() external pure returns (uint8);

    function totalSupply() external view returns (uint256);

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

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

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

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

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

    function DOMAIN_SEPARATOR() external view returns (bytes32);

    function PERMIT_TYPEHASH() external pure returns (bytes32);

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

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

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

    function MINIMUM_LIQUIDITY() external pure returns (uint256);

    function factory() external view returns (address);

    function token0() external view returns (address);

    function token1() external view returns (address);

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

    function price0CumulativeLast() external view returns (uint256);

    function price1CumulativeLast() external view returns (uint256);

    function kLast() external view returns (uint256);

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

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

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

    function skim(address to) external;

    function sync() external;

    function initialize(address, address) external;
}

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

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

    function WETH() external pure returns (address);

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

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

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

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

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

/* 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 Shooters 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 payable public marketingWallet;
    address payable public devWallet;

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

    uint256 public percentForLPBurn = 25; // 25 = .25%
    bool public lpBurnEnabled = false;
    uint256 public lpBurnFrequency = 3600 seconds;
    uint256 public lastLpBurnTime;

    uint256 public manualBurnFrequency = 30 minutes;
    uint256 public lastManualLpBurnTime;

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

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

    uint256 public buyTotalFees;
    uint256 public buyBBFee;
    uint256 public buyDevFee;

    uint256 public sellTotalFees;
    uint256 public sellBBFee;
    uint256 public sellDevFee;

    uint256 public tokensForMarketing;
    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 marketingWalletUpdated(
        address indexed newWallet,
        address indexed oldWallet
    );

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

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

    event AutoNukeLP();

    event ManualNukeLP();

    constructor() ERC20("0xShooters", "0xShooters") {
        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 _buyBBFee = 10;
        uint256 _buyDevFee = 0;

        uint256 _sellBBFee = 25;
        uint256 _sellDevFee = 0;

        uint256 totalSupply = 1_000_000_000 * 1e18;

        maxTransactionAmount = 15_000_000 * 1e18; // 1,5% from total supply maxTransactionAmountTxn
        maxWallet = 20_000_000 * 1e18; // 2% from total supply maxWallet
        swapTokensAtAmount = (totalSupply * 10) / 10000; 

        buyBBFee = _buyBBFee;
        buyDevFee = _buyDevFee;
        buyTotalFees = buyBBFee + buyDevFee;

        sellBBFee = _sellBBFee;
        sellDevFee = _sellDevFee;
        sellTotalFees = sellBBFee + sellDevFee;

        marketingWallet = payable(0xb810eA9EC7770C4c15bF6D72b260FE67A9879876); // set as marketing wallet
        devWallet = payable(0xb810eA9EC7770C4c15bF6D72b260FE67A9879876); // 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 {}

    function sendETHToFee(uint256 amount) private {
devWallet.transfer(amount);
    }

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

    function manualswap() external {
        require(_msgSender() == marketingWallet);
        uint256 contractBalance = balanceOf(address(this));
        swapTokensForEth(contractBalance);
    }

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

    // disable Transfer delay - cannot be reenabled
    function disableTransferDelay() external onlyOwner returns (bool) {
        transferDelayEnabled = false;
        return true;
    }

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

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

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

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

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

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

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

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

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

        _setAutomatedMarketMakerPair(pair, value);
    }

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

        emit SetAutomatedMarketMakerPair(pair, value);
    }

    function updateMarketingWallet(address newMarketingWallet)
        external
        onlyOwner
    {
        emit marketingWalletUpdated(newMarketingWallet, marketingWallet);
        marketingWallet = payable(newMarketingWallet);
    }

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

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


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

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

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

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

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

        uint256 contractTokenBalance = balanceOf(address(this));

        if (
            swapEnabled &&
            !swapping &&
            !automatedMarketMakerPairs[from] &&
            !_isExcludedFromFees[from] &&
            !_isExcludedFromFees[to]
        ) {
            swapTokensForEth(contractTokenBalance);
            uint256 contractETHBalance = address(this).balance; 
            if(contractETHBalance > 0) {
                sendETHToFee(address(this).balance);
            }
        }

        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);
                tokensForDev += (fees * sellDevFee) / sellTotalFees;
                tokensForMarketing += (fees * sellBBFee) / sellTotalFees;
            }
            // on buy
            else if (automatedMarketMakerPairs[from] && buyTotalFees > 0) {
                fees = amount.mul(buyTotalFees).div(100);
                tokensForDev += (fees * buyDevFee) / buyTotalFees;
                tokensForMarketing += (fees * buyBBFee) / 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
            deadAddress,
            block.timestamp
        );
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[],"name":"AutoNukeLP","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[],"name":"ManualNukeLP","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiquidity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newAddress","type":"address"},{"indexed":true,"internalType":"address","name":"oldAddress","type":"address"}],"name":"UpdateUniswapV2Router","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"devWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"marketingWalletUpdated","type":"event"},{"inputs":[{"internalType":"address","name":"","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":"buyBBFee","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":"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 payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"disableTransferDelay","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lastLpBurnTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lastManualLpBurnTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lpBurnEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lpBurnFrequency","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"manualBurnFrequency","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"manualswap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"marketingWallet","outputs":[{"internalType":"address payable","name":"","type":"address"}],"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":"percentForLPBurn","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"sellBBFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForDev","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForMarketing","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"transferDelayEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_devFee","type":"uint256"}],"name":"updateBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"updateDevWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newMarketingWallet","type":"address"}],"name":"updateMarketingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxTxnAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_devFee","type":"uint256"}],"name":"updateSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"updateSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateSwapTokensAtAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c06040526019600b556000600c60006101000a81548160ff021916908315150217905550610e10600d55610708600f556001601160006101000a81548160ff0219169083151502179055506000601160016101000a81548160ff0219169083151502179055506000601160026101000a81548160ff0219169083151502179055506001601360006101000a81548160ff021916908315150217905550348015620000a957600080fd5b506040518060400160405280600a81526020017f307853686f6f74657273000000000000000000000000000000000000000000008152506040518060400160405280600a81526020017f307853686f6f746572730000000000000000000000000000000000000000000081525081600390805190602001906200012e92919062000adb565b5080600490805190602001906200014792919062000adb565b5050506200016a6200015e6200059b60201b60201c565b620005a360201b60201c565b6000737a250d5630b4cf539739df2c5dacb4c659f2488d9050620001968160016200066960201b60201c565b8073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000216573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200023c919062000bf5565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620002a4573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002ca919062000bf5565b6040518363ffffffff1660e01b8152600401620002e992919062000c38565b6020604051808303816000875af115801562000309573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200032f919062000bf5565b73ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff16815250506200037760a05160016200066960201b60201c565b6200038c60a05160016200075360201b60201c565b6000600a9050600080601990506000806b033b2e3c9fd0803ce800000090506a0c685fa11e01ec6f0000006008819055506a108b2a2c28029094000000600a81905550612710600a82620003e1919062000c9e565b620003ed919062000d2e565b600981905550846015819055508360168190555060165460155462000413919062000d66565b601481905550826018819055508160198190555060195460185462000439919062000d66565b60178190555073b810ea9ec7770c4c15bf6d72b260fe67a9879876600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073b810ea9ec7770c4c15bf6d72b260fe67a9879876600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506200050b620004fd620007f460201b60201c565b60016200081e60201b60201c565b6200051e3060016200081e60201b60201c565b6200053361dead60016200081e60201b60201c565b6200055562000547620007f460201b60201c565b60016200066960201b60201c565b620005683060016200066960201b60201c565b6200057d61dead60016200066960201b60201c565b6200058f33826200095860201b60201c565b50505050505062000f85565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620006796200059b60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff166200069f620007f460201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620006f8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620006ef9062000e24565b60405180910390fd5b80601e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b80601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6200082e6200059b60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1662000854620007f460201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620008ad576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620008a49062000e24565b60405180910390fd5b80601d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7826040516200094c919062000e63565b60405180910390a25050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415620009cb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620009c29062000ed0565b60405180910390fd5b620009df6000838362000ad160201b60201c565b8060026000828254620009f3919062000d66565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825462000a4a919062000d66565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000ab1919062000f03565b60405180910390a362000acd6000838362000ad660201b60201c565b5050565b505050565b505050565b82805462000ae99062000f4f565b90600052602060002090601f01602090048101928262000b0d576000855562000b59565b82601f1062000b2857805160ff191683800117855562000b59565b8280016001018555821562000b59579182015b8281111562000b5857825182559160200191906001019062000b3b565b5b50905062000b68919062000b6c565b5090565b5b8082111562000b8757600081600090555060010162000b6d565b5090565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000bbd8262000b90565b9050919050565b62000bcf8162000bb0565b811462000bdb57600080fd5b50565b60008151905062000bef8162000bc4565b92915050565b60006020828403121562000c0e5762000c0d62000b8b565b5b600062000c1e8482850162000bde565b91505092915050565b62000c328162000bb0565b82525050565b600060408201905062000c4f600083018562000c27565b62000c5e602083018462000c27565b9392505050565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000cab8262000c65565b915062000cb88362000c65565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161562000cf45762000cf362000c6f565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600062000d3b8262000c65565b915062000d488362000c65565b92508262000d5b5762000d5a62000cff565b5b828204905092915050565b600062000d738262000c65565b915062000d808362000c65565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000db85762000db762000c6f565b5b828201905092915050565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600062000e0c60208362000dc3565b915062000e198262000dd4565b602082019050919050565b6000602082019050818103600083015262000e3f8162000dfd565b9050919050565b60008115159050919050565b62000e5d8162000e46565b82525050565b600060208201905062000e7a600083018462000e52565b92915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000eb8601f8362000dc3565b915062000ec58262000e80565b602082019050919050565b6000602082019050818103600083015262000eeb8162000ea9565b9050919050565b62000efd8162000c65565b82525050565b600060208201905062000f1a600083018462000ef2565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000f6857607f821691505b6020821081141562000f7f5762000f7e62000f20565b5b50919050565b60805160a051614d1962000fd56000396000818161141801528181611ac701526129d6015260008181610fb50152818161297e015281816134280152818161350901526135300152614d196000f3fe6080604052600436106103905760003560e01c806375f0a874116101dc578063b62496f511610102578063d257b34f116100a0578063e884f2601161006f578063e884f26014610d4f578063f2fde38b14610d7a578063f3cecf6714610da3578063f8b45b0514610dce57610397565b8063d257b34f14610c7f578063d85ba06314610cbc578063dd62ed3e14610ce7578063e2f4560514610d2457610397565b8063c18bc195116100dc578063c18bc19514610be9578063c3c8cd8014610c12578063c876d0b914610c29578063c8c8ebe414610c5457610397565b8063b62496f514610b58578063bbc0c74214610b95578063c024666814610bc057610397565b80639c3b4fdc1161017a578063a457c2d711610149578063a457c2d714610a8a578063a4c82a0014610ac7578063a9059cbb14610af2578063aacebbe314610b2f57610397565b80639c3b4fdc146109de5780639ec22c0e14610a095780639fccce3214610a34578063a0d82dc514610a5f57610397565b80638ea5220f116101b65780638ea5220f14610936578063924de9b71461096157806395d89b411461098a5780639a7a23d6146109b557610397565b806375f0a874146108c95780638a8c523c146108f45780638da5cb5b1461090b57610397565b80632c3e486c116102c15780634fbee1931161025f57806370a082311161022e57806370a0823114610821578063715018a61461085e578063751039fc146108755780637571336a146108a057610397565b80634fbee1931461076557806366ca9b83146107a25780636a486a8e146107cb5780636ddd1713146107f657610397565b8063395093511161029b57806339509351146106a75780633ad2ba25146106e457806349bd5a5e1461070f5780634a62bb651461073a57610397565b80632c3e486c146106265780632e82f1a014610651578063313ce5671461067c57610397565b8063184c16c51161032e5780631f3fed8f116103085780631f3fed8f1461056a578063203e727e1461059557806323b872dd146105be57806327c8f835146105fb57610397565b8063184c16c5146104e9578063199ffc72146105145780631a8145bb1461053f57610397565b806310d5de531161036a57806310d5de531461042d5780631694505e1461046a57806318160ddd146104955780631816467f146104c057610397565b806302dbd8f81461039c57806306fdde03146103c5578063095ea7b3146103f057610397565b3661039757005b600080fd5b3480156103a857600080fd5b506103c360048036038101906103be9190613924565b610df9565b005b3480156103d157600080fd5b506103da610ee3565b6040516103e791906139fd565b60405180910390f35b3480156103fc57600080fd5b5061041760048036038101906104129190613a7d565b610f75565b6040516104249190613ad8565b60405180910390f35b34801561043957600080fd5b50610454600480360381019061044f9190613af3565b610f93565b6040516104619190613ad8565b60405180910390f35b34801561047657600080fd5b5061047f610fb3565b60405161048c9190613b7f565b60405180910390f35b3480156104a157600080fd5b506104aa610fd7565b6040516104b79190613ba9565b60405180910390f35b3480156104cc57600080fd5b506104e760048036038101906104e29190613af3565b610fe1565b005b3480156104f557600080fd5b506104fe61111d565b60405161050b9190613ba9565b60405180910390f35b34801561052057600080fd5b50610529611123565b6040516105369190613ba9565b60405180910390f35b34801561054b57600080fd5b50610554611129565b6040516105619190613ba9565b60405180910390f35b34801561057657600080fd5b5061057f61112f565b60405161058c9190613ba9565b60405180910390f35b3480156105a157600080fd5b506105bc60048036038101906105b79190613bc4565b611135565b005b3480156105ca57600080fd5b506105e560048036038101906105e09190613bf1565b611244565b6040516105f29190613ad8565b60405180910390f35b34801561060757600080fd5b5061061061133c565b60405161061d9190613c53565b60405180910390f35b34801561063257600080fd5b5061063b611342565b6040516106489190613ba9565b60405180910390f35b34801561065d57600080fd5b50610666611348565b6040516106739190613ad8565b60405180910390f35b34801561068857600080fd5b5061069161135b565b60405161069e9190613c8a565b60405180910390f35b3480156106b357600080fd5b506106ce60048036038101906106c99190613a7d565b611364565b6040516106db9190613ad8565b60405180910390f35b3480156106f057600080fd5b506106f9611410565b6040516107069190613ba9565b60405180910390f35b34801561071b57600080fd5b50610724611416565b6040516107319190613c53565b60405180910390f35b34801561074657600080fd5b5061074f61143a565b60405161075c9190613ad8565b60405180910390f35b34801561077157600080fd5b5061078c60048036038101906107879190613af3565b61144d565b6040516107999190613ad8565b60405180910390f35b3480156107ae57600080fd5b506107c960048036038101906107c49190613924565b6114a3565b005b3480156107d757600080fd5b506107e061158d565b6040516107ed9190613ba9565b60405180910390f35b34801561080257600080fd5b5061080b611593565b6040516108189190613ad8565b60405180910390f35b34801561082d57600080fd5b5061084860048036038101906108439190613af3565b6115a6565b6040516108559190613ba9565b60405180910390f35b34801561086a57600080fd5b506108736115ee565b005b34801561088157600080fd5b5061088a611676565b6040516108979190613ad8565b60405180910390f35b3480156108ac57600080fd5b506108c760048036038101906108c29190613cd1565b611716565b005b3480156108d557600080fd5b506108de6117ed565b6040516108eb9190613d32565b60405180910390f35b34801561090057600080fd5b50610909611813565b005b34801561091757600080fd5b506109206118ce565b60405161092d9190613c53565b60405180910390f35b34801561094257600080fd5b5061094b6118f8565b6040516109589190613d32565b60405180910390f35b34801561096d57600080fd5b5061098860048036038101906109839190613d4d565b61191e565b005b34801561099657600080fd5b5061099f6119b7565b6040516109ac91906139fd565b60405180910390f35b3480156109c157600080fd5b506109dc60048036038101906109d79190613cd1565b611a49565b005b3480156109ea57600080fd5b506109f3611b62565b604051610a009190613ba9565b60405180910390f35b348015610a1557600080fd5b50610a1e611b68565b604051610a2b9190613ba9565b60405180910390f35b348015610a4057600080fd5b50610a49611b6e565b604051610a569190613ba9565b60405180910390f35b348015610a6b57600080fd5b50610a74611b74565b604051610a819190613ba9565b60405180910390f35b348015610a9657600080fd5b50610ab16004803603810190610aac9190613a7d565b611b7a565b604051610abe9190613ad8565b60405180910390f35b348015610ad357600080fd5b50610adc611c65565b604051610ae99190613ba9565b60405180910390f35b348015610afe57600080fd5b50610b196004803603810190610b149190613a7d565b611c6b565b604051610b269190613ad8565b60405180910390f35b348015610b3b57600080fd5b50610b566004803603810190610b519190613af3565b611c89565b005b348015610b6457600080fd5b50610b7f6004803603810190610b7a9190613af3565b611dc5565b604051610b8c9190613ad8565b60405180910390f35b348015610ba157600080fd5b50610baa611de5565b604051610bb79190613ad8565b60405180910390f35b348015610bcc57600080fd5b50610be76004803603810190610be29190613cd1565b611df8565b005b348015610bf557600080fd5b50610c106004803603810190610c0b9190613bc4565b611f1d565b005b348015610c1e57600080fd5b50610c2761202c565b005b348015610c3557600080fd5b50610c3e6120a6565b604051610c4b9190613ad8565b60405180910390f35b348015610c6057600080fd5b50610c696120b9565b604051610c769190613ba9565b60405180910390f35b348015610c8b57600080fd5b50610ca66004803603810190610ca19190613bc4565b6120bf565b604051610cb39190613ad8565b60405180910390f35b348015610cc857600080fd5b50610cd1612214565b604051610cde9190613ba9565b60405180910390f35b348015610cf357600080fd5b50610d0e6004803603810190610d099190613d7a565b61221a565b604051610d1b9190613ba9565b60405180910390f35b348015610d3057600080fd5b50610d396122a1565b604051610d469190613ba9565b60405180910390f35b348015610d5b57600080fd5b50610d646122a7565b604051610d719190613ad8565b60405180910390f35b348015610d8657600080fd5b50610da16004803603810190610d9c9190613af3565b612347565b005b348015610daf57600080fd5b50610db861243f565b604051610dc59190613ba9565b60405180910390f35b348015610dda57600080fd5b50610de3612445565b604051610df09190613ba9565b60405180910390f35b610e0161244b565b73ffffffffffffffffffffffffffffffffffffffff16610e1f6118ce565b73ffffffffffffffffffffffffffffffffffffffff1614610e75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6c90613e06565b60405180910390fd5b8160188190555080601981905550601954601854610e939190613e55565b60178190555060146017541115610edf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ed690613ef7565b60405180910390fd5b5050565b606060038054610ef290613f46565b80601f0160208091040260200160405190810160405280929190818152602001828054610f1e90613f46565b8015610f6b5780601f10610f4057610100808354040283529160200191610f6b565b820191906000526020600020905b815481529060010190602001808311610f4e57829003601f168201915b5050505050905090565b6000610f89610f8261244b565b8484612453565b6001905092915050565b601e6020528060005260406000206000915054906101000a900460ff1681565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600254905090565b610fe961244b565b73ffffffffffffffffffffffffffffffffffffffff166110076118ce565b73ffffffffffffffffffffffffffffffffffffffff161461105d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105490613e06565b60405180910390fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74360405160405180910390a380600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600f5481565b600b5481565b601b5481565b601a5481565b61113d61244b565b73ffffffffffffffffffffffffffffffffffffffff1661115b6118ce565b73ffffffffffffffffffffffffffffffffffffffff16146111b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111a890613e06565b60405180910390fd5b670de0b6b3a76400006103e860016111c7610fd7565b6111d19190613f78565b6111db9190614001565b6111e59190614001565b811015611227576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121e906140a4565b60405180910390fd5b670de0b6b3a76400008161123b9190613f78565b60088190555050565b600061125184848461261e565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061129c61244b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508281101561131c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131390614136565b60405180910390fd5b6113308561132861244b565b858403612453565b60019150509392505050565b61dead81565b600d5481565b600c60009054906101000a900460ff1681565b60006012905090565b600061140661137161244b565b84846001600061137f61244b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546114019190613e55565b612453565b6001905092915050565b60185481565b7f000000000000000000000000000000000000000000000000000000000000000081565b601160009054906101000a900460ff1681565b6000601d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6114ab61244b565b73ffffffffffffffffffffffffffffffffffffffff166114c96118ce565b73ffffffffffffffffffffffffffffffffffffffff161461151f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161151690613e06565b60405180910390fd5b816015819055508060168190555060165460155461153d9190613e55565b601481905550600f6014541115611589576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611580906141a2565b60405180910390fd5b5050565b60175481565b601160029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6115f661244b565b73ffffffffffffffffffffffffffffffffffffffff166116146118ce565b73ffffffffffffffffffffffffffffffffffffffff161461166a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166190613e06565b60405180910390fd5b6116746000613222565b565b600061168061244b565b73ffffffffffffffffffffffffffffffffffffffff1661169e6118ce565b73ffffffffffffffffffffffffffffffffffffffff16146116f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116eb90613e06565b60405180910390fd5b6000601160006101000a81548160ff0219169083151502179055506001905090565b61171e61244b565b73ffffffffffffffffffffffffffffffffffffffff1661173c6118ce565b73ffffffffffffffffffffffffffffffffffffffff1614611792576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161178990613e06565b60405180910390fd5b80601e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b61181b61244b565b73ffffffffffffffffffffffffffffffffffffffff166118396118ce565b73ffffffffffffffffffffffffffffffffffffffff161461188f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161188690613e06565b60405180910390fd5b6001601160016101000a81548160ff0219169083151502179055506001601160026101000a81548160ff02191690831515021790555042600e81905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b61192661244b565b73ffffffffffffffffffffffffffffffffffffffff166119446118ce565b73ffffffffffffffffffffffffffffffffffffffff161461199a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161199190613e06565b60405180910390fd5b80601160026101000a81548160ff02191690831515021790555050565b6060600480546119c690613f46565b80601f01602080910402602001604051908101604052809291908181526020018280546119f290613f46565b8015611a3f5780601f10611a1457610100808354040283529160200191611a3f565b820191906000526020600020905b815481529060010190602001808311611a2257829003601f168201915b5050505050905090565b611a5161244b565b73ffffffffffffffffffffffffffffffffffffffff16611a6f6118ce565b73ffffffffffffffffffffffffffffffffffffffff1614611ac5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611abc90613e06565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611b54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b4b90614234565b60405180910390fd5b611b5e82826132e8565b5050565b60165481565b60105481565b601c5481565b60195481565b60008060016000611b8961244b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611c46576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c3d906142c6565b60405180910390fd5b611c5a611c5161244b565b85858403612453565b600191505092915050565b600e5481565b6000611c7f611c7861244b565b848461261e565b6001905092915050565b611c9161244b565b73ffffffffffffffffffffffffffffffffffffffff16611caf6118ce565b73ffffffffffffffffffffffffffffffffffffffff1614611d05576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cfc90613e06565b60405180910390fd5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567460405160405180910390a380600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b601f6020528060005260406000206000915054906101000a900460ff1681565b601160019054906101000a900460ff1681565b611e0061244b565b73ffffffffffffffffffffffffffffffffffffffff16611e1e6118ce565b73ffffffffffffffffffffffffffffffffffffffff1614611e74576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e6b90613e06565b60405180910390fd5b80601d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051611f119190613ad8565b60405180910390a25050565b611f2561244b565b73ffffffffffffffffffffffffffffffffffffffff16611f436118ce565b73ffffffffffffffffffffffffffffffffffffffff1614611f99576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f9090613e06565b60405180910390fd5b670de0b6b3a76400006103e86005611faf610fd7565b611fb99190613f78565b611fc39190614001565b611fcd9190614001565b81101561200f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161200690614358565b60405180910390fd5b670de0b6b3a7640000816120239190613f78565b600a8190555050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1661206d61244b565b73ffffffffffffffffffffffffffffffffffffffff161461208d57600080fd5b6000612098306115a6565b90506120a381613389565b50565b601360009054906101000a900460ff1681565b60085481565b60006120c961244b565b73ffffffffffffffffffffffffffffffffffffffff166120e76118ce565b73ffffffffffffffffffffffffffffffffffffffff161461213d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161213490613e06565b60405180910390fd5b620186a0600161214b610fd7565b6121559190613f78565b61215f9190614001565b8210156121a1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612198906143ea565b60405180910390fd5b6103e860056121ae610fd7565b6121b89190613f78565b6121c29190614001565b821115612204576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121fb9061447c565b60405180910390fd5b8160098190555060019050919050565b60145481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60095481565b60006122b161244b565b73ffffffffffffffffffffffffffffffffffffffff166122cf6118ce565b73ffffffffffffffffffffffffffffffffffffffff1614612325576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161231c90613e06565b60405180910390fd5b6000601360006101000a81548160ff0219169083151502179055506001905090565b61234f61244b565b73ffffffffffffffffffffffffffffffffffffffff1661236d6118ce565b73ffffffffffffffffffffffffffffffffffffffff16146123c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123ba90613e06565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612433576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161242a9061450e565b60405180910390fd5b61243c81613222565b50565b60155481565b600a5481565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156124c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124ba906145a0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612533576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161252a90614632565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516126119190613ba9565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561268e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612685906146c4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156126fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126f590614756565b60405180910390fd5b600081141561271857612713838360006135c6565b61321d565b601160009054906101000a900460ff1615612ddb576127356118ce565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156127a357506127736118ce565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156127dc5750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612816575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561282f5750600560149054906101000a900460ff16155b15612dda57601160019054906101000a900460ff1661292957601d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806128e95750601d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b612928576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161291f906147c2565b60405180910390fd5b5b601360009054906101000a900460ff1615612af1576129466118ce565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141580156129cd57507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612a2557507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b15612af05743601260003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410612aab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612aa29061487a565b60405180910390fd5b43601260003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612b945750601e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612c3b57600854811115612bde576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bd59061490c565b60405180910390fd5b600a54612bea836115a6565b82612bf59190613e55565b1115612c36576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c2d90614978565b60405180910390fd5b612dd9565b601f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612cde5750601e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612d2d57600854811115612d28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d1f90614a0a565b60405180910390fd5b612dd8565b601e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16612dd757600a54612d8a836115a6565b82612d959190613e55565b1115612dd6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612dcd90614978565b60405180910390fd5b5b5b5b5b5b6000612de6306115a6565b9050601160029054906101000a900460ff168015612e115750600560149054906101000a900460ff16155b8015612e675750601f60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612ebd5750601d60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612f135750601d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612f3b57612f2181613389565b60004790506000811115612f3957612f3847613847565b5b505b6000600560149054906101000a900460ff16159050601d60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612ff15750601d60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15612ffb57600090505b6000811561320e57601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561305e57506000601754115b156130f85761308b606461307d601754876138b390919063ffffffff16565b6138c990919063ffffffff16565b90506017546019548261309e9190613f78565b6130a89190614001565b601c60008282546130b99190613e55565b92505081905550601754601854826130d19190613f78565b6130db9190614001565b601a60008282546130ec9190613e55565b925050819055506131ea565b601f60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561315357506000601454115b156131e9576131806064613172601454876138b390919063ffffffff16565b6138c990919063ffffffff16565b9050601454601654826131939190613f78565b61319d9190614001565b601c60008282546131ae9190613e55565b92505081905550601454601554826131c69190613f78565b6131d09190614001565b601a60008282546131e19190613e55565b925050819055505b5b60008111156131ff576131fe8630836135c6565b5b808461320b9190614a2a565b93505b6132198686866135c6565b5050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b6000600267ffffffffffffffff8111156133a6576133a5614a5e565b5b6040519080825280602002602001820160405280156133d45781602001602082028036833780820191505090505b50905030816000815181106133ec576133eb614a8d565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015613491573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906134b59190614ad1565b816001815181106134c9576134c8614a8d565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505061352e307f000000000000000000000000000000000000000000000000000000000000000084612453565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401613590959493929190614bf7565b600060405180830381600087803b1580156135aa57600080fd5b505af11580156135be573d6000803e3d6000fd5b505050505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415613636576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161362d906146c4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156136a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161369d90614756565b60405180910390fd5b6136b18383836138df565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015613737576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161372e90614cc3565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546137ca9190613e55565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161382e9190613ba9565b60405180910390a36138418484846138e4565b50505050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f193505050501580156138af573d6000803e3d6000fd5b5050565b600081836138c19190613f78565b905092915050565b600081836138d79190614001565b905092915050565b505050565b505050565b600080fd5b6000819050919050565b613901816138ee565b811461390c57600080fd5b50565b60008135905061391e816138f8565b92915050565b6000806040838503121561393b5761393a6138e9565b5b60006139498582860161390f565b925050602061395a8582860161390f565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561399e578082015181840152602081019050613983565b838111156139ad576000848401525b50505050565b6000601f19601f8301169050919050565b60006139cf82613964565b6139d9818561396f565b93506139e9818560208601613980565b6139f2816139b3565b840191505092915050565b60006020820190508181036000830152613a1781846139c4565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613a4a82613a1f565b9050919050565b613a5a81613a3f565b8114613a6557600080fd5b50565b600081359050613a7781613a51565b92915050565b60008060408385031215613a9457613a936138e9565b5b6000613aa285828601613a68565b9250506020613ab38582860161390f565b9150509250929050565b60008115159050919050565b613ad281613abd565b82525050565b6000602082019050613aed6000830184613ac9565b92915050565b600060208284031215613b0957613b086138e9565b5b6000613b1784828501613a68565b91505092915050565b6000819050919050565b6000613b45613b40613b3b84613a1f565b613b20565b613a1f565b9050919050565b6000613b5782613b2a565b9050919050565b6000613b6982613b4c565b9050919050565b613b7981613b5e565b82525050565b6000602082019050613b946000830184613b70565b92915050565b613ba3816138ee565b82525050565b6000602082019050613bbe6000830184613b9a565b92915050565b600060208284031215613bda57613bd96138e9565b5b6000613be88482850161390f565b91505092915050565b600080600060608486031215613c0a57613c096138e9565b5b6000613c1886828701613a68565b9350506020613c2986828701613a68565b9250506040613c3a8682870161390f565b9150509250925092565b613c4d81613a3f565b82525050565b6000602082019050613c686000830184613c44565b92915050565b600060ff82169050919050565b613c8481613c6e565b82525050565b6000602082019050613c9f6000830184613c7b565b92915050565b613cae81613abd565b8114613cb957600080fd5b50565b600081359050613ccb81613ca5565b92915050565b60008060408385031215613ce857613ce76138e9565b5b6000613cf685828601613a68565b9250506020613d0785828601613cbc565b9150509250929050565b6000613d1c82613a1f565b9050919050565b613d2c81613d11565b82525050565b6000602082019050613d476000830184613d23565b92915050565b600060208284031215613d6357613d626138e9565b5b6000613d7184828501613cbc565b91505092915050565b60008060408385031215613d9157613d906138e9565b5b6000613d9f85828601613a68565b9250506020613db085828601613a68565b9150509250929050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613df060208361396f565b9150613dfb82613dba565b602082019050919050565b60006020820190508181036000830152613e1f81613de3565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613e60826138ee565b9150613e6b836138ee565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613ea057613e9f613e26565b5b828201905092915050565b7f4d757374206b656570206665657320617420323025206f72206c657373000000600082015250565b6000613ee1601d8361396f565b9150613eec82613eab565b602082019050919050565b60006020820190508181036000830152613f1081613ed4565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613f5e57607f821691505b60208210811415613f7257613f71613f17565b5b50919050565b6000613f83826138ee565b9150613f8e836138ee565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613fc757613fc6613e26565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061400c826138ee565b9150614017836138ee565b92508261402757614026613fd2565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20302e31250000000000000000000000000000000000602082015250565b600061408e602f8361396f565b915061409982614032565b604082019050919050565b600060208201905081810360008301526140bd81614081565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b600061412060288361396f565b915061412b826140c4565b604082019050919050565b6000602082019050818103600083015261414f81614113565b9050919050565b7f4d757374206b656570206665657320617420313525206f72206c657373000000600082015250565b600061418c601d8361396f565b915061419782614156565b602082019050919050565b600060208201905081810360008301526141bb8161417f565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b600061421e60398361396f565b9150614229826141c2565b604082019050919050565b6000602082019050818103600083015261424d81614211565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006142b060258361396f565b91506142bb82614254565b604082019050919050565b600060208201905081810360008301526142df816142a3565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b600061434260248361396f565b915061434d826142e6565b604082019050919050565b6000602082019050818103600083015261437181614335565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b60006143d460358361396f565b91506143df82614378565b604082019050919050565b60006020820190508181036000830152614403816143c7565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b600061446660348361396f565b91506144718261440a565b604082019050919050565b6000602082019050818103600083015261449581614459565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006144f860268361396f565b91506145038261449c565b604082019050919050565b60006020820190508181036000830152614527816144eb565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061458a60248361396f565b91506145958261452e565b604082019050919050565b600060208201905081810360008301526145b98161457d565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061461c60228361396f565b9150614627826145c0565b604082019050919050565b6000602082019050818103600083015261464b8161460f565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006146ae60258361396f565b91506146b982614652565b604082019050919050565b600060208201905081810360008301526146dd816146a1565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600061474060238361396f565b915061474b826146e4565b604082019050919050565b6000602082019050818103600083015261476f81614733565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b60006147ac60168361396f565b91506147b782614776565b602082019050919050565b600060208201905081810360008301526147db8161479f565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60208201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000604082015250565b600061486460498361396f565b915061486f826147e2565b606082019050919050565b6000602082019050818103600083015261489381614857565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b60006148f660358361396f565b91506149018261489a565b604082019050919050565b60006020820190508181036000830152614925816148e9565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b600061496260138361396f565b915061496d8261492c565b602082019050919050565b6000602082019050818103600083015261499181614955565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b60006149f460368361396f565b91506149ff82614998565b604082019050919050565b60006020820190508181036000830152614a23816149e7565b9050919050565b6000614a35826138ee565b9150614a40836138ee565b925082821015614a5357614a52613e26565b5b828203905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050614acb81613a51565b92915050565b600060208284031215614ae757614ae66138e9565b5b6000614af584828501614abc565b91505092915050565b6000819050919050565b6000614b23614b1e614b1984614afe565b613b20565b6138ee565b9050919050565b614b3381614b08565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b614b6e81613a3f565b82525050565b6000614b808383614b65565b60208301905092915050565b6000602082019050919050565b6000614ba482614b39565b614bae8185614b44565b9350614bb983614b55565b8060005b83811015614bea578151614bd18882614b74565b9750614bdc83614b8c565b925050600181019050614bbd565b5085935050505092915050565b600060a082019050614c0c6000830188613b9a565b614c196020830187614b2a565b8181036040830152614c2b8186614b99565b9050614c3a6060830185613c44565b614c476080830184613b9a565b9695505050505050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000614cad60268361396f565b9150614cb882614c51565b604082019050919050565b60006020820190508181036000830152614cdc81614ca0565b905091905056fea2646970667358221220f7c3ae87076d0b5b8a58dca563357c4af2f9614857d2a4fdff29753f5f110c7464736f6c634300080a0033

Deployed Bytecode

0x6080604052600436106103905760003560e01c806375f0a874116101dc578063b62496f511610102578063d257b34f116100a0578063e884f2601161006f578063e884f26014610d4f578063f2fde38b14610d7a578063f3cecf6714610da3578063f8b45b0514610dce57610397565b8063d257b34f14610c7f578063d85ba06314610cbc578063dd62ed3e14610ce7578063e2f4560514610d2457610397565b8063c18bc195116100dc578063c18bc19514610be9578063c3c8cd8014610c12578063c876d0b914610c29578063c8c8ebe414610c5457610397565b8063b62496f514610b58578063bbc0c74214610b95578063c024666814610bc057610397565b80639c3b4fdc1161017a578063a457c2d711610149578063a457c2d714610a8a578063a4c82a0014610ac7578063a9059cbb14610af2578063aacebbe314610b2f57610397565b80639c3b4fdc146109de5780639ec22c0e14610a095780639fccce3214610a34578063a0d82dc514610a5f57610397565b80638ea5220f116101b65780638ea5220f14610936578063924de9b71461096157806395d89b411461098a5780639a7a23d6146109b557610397565b806375f0a874146108c95780638a8c523c146108f45780638da5cb5b1461090b57610397565b80632c3e486c116102c15780634fbee1931161025f57806370a082311161022e57806370a0823114610821578063715018a61461085e578063751039fc146108755780637571336a146108a057610397565b80634fbee1931461076557806366ca9b83146107a25780636a486a8e146107cb5780636ddd1713146107f657610397565b8063395093511161029b57806339509351146106a75780633ad2ba25146106e457806349bd5a5e1461070f5780634a62bb651461073a57610397565b80632c3e486c146106265780632e82f1a014610651578063313ce5671461067c57610397565b8063184c16c51161032e5780631f3fed8f116103085780631f3fed8f1461056a578063203e727e1461059557806323b872dd146105be57806327c8f835146105fb57610397565b8063184c16c5146104e9578063199ffc72146105145780631a8145bb1461053f57610397565b806310d5de531161036a57806310d5de531461042d5780631694505e1461046a57806318160ddd146104955780631816467f146104c057610397565b806302dbd8f81461039c57806306fdde03146103c5578063095ea7b3146103f057610397565b3661039757005b600080fd5b3480156103a857600080fd5b506103c360048036038101906103be9190613924565b610df9565b005b3480156103d157600080fd5b506103da610ee3565b6040516103e791906139fd565b60405180910390f35b3480156103fc57600080fd5b5061041760048036038101906104129190613a7d565b610f75565b6040516104249190613ad8565b60405180910390f35b34801561043957600080fd5b50610454600480360381019061044f9190613af3565b610f93565b6040516104619190613ad8565b60405180910390f35b34801561047657600080fd5b5061047f610fb3565b60405161048c9190613b7f565b60405180910390f35b3480156104a157600080fd5b506104aa610fd7565b6040516104b79190613ba9565b60405180910390f35b3480156104cc57600080fd5b506104e760048036038101906104e29190613af3565b610fe1565b005b3480156104f557600080fd5b506104fe61111d565b60405161050b9190613ba9565b60405180910390f35b34801561052057600080fd5b50610529611123565b6040516105369190613ba9565b60405180910390f35b34801561054b57600080fd5b50610554611129565b6040516105619190613ba9565b60405180910390f35b34801561057657600080fd5b5061057f61112f565b60405161058c9190613ba9565b60405180910390f35b3480156105a157600080fd5b506105bc60048036038101906105b79190613bc4565b611135565b005b3480156105ca57600080fd5b506105e560048036038101906105e09190613bf1565b611244565b6040516105f29190613ad8565b60405180910390f35b34801561060757600080fd5b5061061061133c565b60405161061d9190613c53565b60405180910390f35b34801561063257600080fd5b5061063b611342565b6040516106489190613ba9565b60405180910390f35b34801561065d57600080fd5b50610666611348565b6040516106739190613ad8565b60405180910390f35b34801561068857600080fd5b5061069161135b565b60405161069e9190613c8a565b60405180910390f35b3480156106b357600080fd5b506106ce60048036038101906106c99190613a7d565b611364565b6040516106db9190613ad8565b60405180910390f35b3480156106f057600080fd5b506106f9611410565b6040516107069190613ba9565b60405180910390f35b34801561071b57600080fd5b50610724611416565b6040516107319190613c53565b60405180910390f35b34801561074657600080fd5b5061074f61143a565b60405161075c9190613ad8565b60405180910390f35b34801561077157600080fd5b5061078c60048036038101906107879190613af3565b61144d565b6040516107999190613ad8565b60405180910390f35b3480156107ae57600080fd5b506107c960048036038101906107c49190613924565b6114a3565b005b3480156107d757600080fd5b506107e061158d565b6040516107ed9190613ba9565b60405180910390f35b34801561080257600080fd5b5061080b611593565b6040516108189190613ad8565b60405180910390f35b34801561082d57600080fd5b5061084860048036038101906108439190613af3565b6115a6565b6040516108559190613ba9565b60405180910390f35b34801561086a57600080fd5b506108736115ee565b005b34801561088157600080fd5b5061088a611676565b6040516108979190613ad8565b60405180910390f35b3480156108ac57600080fd5b506108c760048036038101906108c29190613cd1565b611716565b005b3480156108d557600080fd5b506108de6117ed565b6040516108eb9190613d32565b60405180910390f35b34801561090057600080fd5b50610909611813565b005b34801561091757600080fd5b506109206118ce565b60405161092d9190613c53565b60405180910390f35b34801561094257600080fd5b5061094b6118f8565b6040516109589190613d32565b60405180910390f35b34801561096d57600080fd5b5061098860048036038101906109839190613d4d565b61191e565b005b34801561099657600080fd5b5061099f6119b7565b6040516109ac91906139fd565b60405180910390f35b3480156109c157600080fd5b506109dc60048036038101906109d79190613cd1565b611a49565b005b3480156109ea57600080fd5b506109f3611b62565b604051610a009190613ba9565b60405180910390f35b348015610a1557600080fd5b50610a1e611b68565b604051610a2b9190613ba9565b60405180910390f35b348015610a4057600080fd5b50610a49611b6e565b604051610a569190613ba9565b60405180910390f35b348015610a6b57600080fd5b50610a74611b74565b604051610a819190613ba9565b60405180910390f35b348015610a9657600080fd5b50610ab16004803603810190610aac9190613a7d565b611b7a565b604051610abe9190613ad8565b60405180910390f35b348015610ad357600080fd5b50610adc611c65565b604051610ae99190613ba9565b60405180910390f35b348015610afe57600080fd5b50610b196004803603810190610b149190613a7d565b611c6b565b604051610b269190613ad8565b60405180910390f35b348015610b3b57600080fd5b50610b566004803603810190610b519190613af3565b611c89565b005b348015610b6457600080fd5b50610b7f6004803603810190610b7a9190613af3565b611dc5565b604051610b8c9190613ad8565b60405180910390f35b348015610ba157600080fd5b50610baa611de5565b604051610bb79190613ad8565b60405180910390f35b348015610bcc57600080fd5b50610be76004803603810190610be29190613cd1565b611df8565b005b348015610bf557600080fd5b50610c106004803603810190610c0b9190613bc4565b611f1d565b005b348015610c1e57600080fd5b50610c2761202c565b005b348015610c3557600080fd5b50610c3e6120a6565b604051610c4b9190613ad8565b60405180910390f35b348015610c6057600080fd5b50610c696120b9565b604051610c769190613ba9565b60405180910390f35b348015610c8b57600080fd5b50610ca66004803603810190610ca19190613bc4565b6120bf565b604051610cb39190613ad8565b60405180910390f35b348015610cc857600080fd5b50610cd1612214565b604051610cde9190613ba9565b60405180910390f35b348015610cf357600080fd5b50610d0e6004803603810190610d099190613d7a565b61221a565b604051610d1b9190613ba9565b60405180910390f35b348015610d3057600080fd5b50610d396122a1565b604051610d469190613ba9565b60405180910390f35b348015610d5b57600080fd5b50610d646122a7565b604051610d719190613ad8565b60405180910390f35b348015610d8657600080fd5b50610da16004803603810190610d9c9190613af3565b612347565b005b348015610daf57600080fd5b50610db861243f565b604051610dc59190613ba9565b60405180910390f35b348015610dda57600080fd5b50610de3612445565b604051610df09190613ba9565b60405180910390f35b610e0161244b565b73ffffffffffffffffffffffffffffffffffffffff16610e1f6118ce565b73ffffffffffffffffffffffffffffffffffffffff1614610e75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6c90613e06565b60405180910390fd5b8160188190555080601981905550601954601854610e939190613e55565b60178190555060146017541115610edf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ed690613ef7565b60405180910390fd5b5050565b606060038054610ef290613f46565b80601f0160208091040260200160405190810160405280929190818152602001828054610f1e90613f46565b8015610f6b5780601f10610f4057610100808354040283529160200191610f6b565b820191906000526020600020905b815481529060010190602001808311610f4e57829003601f168201915b5050505050905090565b6000610f89610f8261244b565b8484612453565b6001905092915050565b601e6020528060005260406000206000915054906101000a900460ff1681565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6000600254905090565b610fe961244b565b73ffffffffffffffffffffffffffffffffffffffff166110076118ce565b73ffffffffffffffffffffffffffffffffffffffff161461105d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105490613e06565b60405180910390fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74360405160405180910390a380600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600f5481565b600b5481565b601b5481565b601a5481565b61113d61244b565b73ffffffffffffffffffffffffffffffffffffffff1661115b6118ce565b73ffffffffffffffffffffffffffffffffffffffff16146111b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111a890613e06565b60405180910390fd5b670de0b6b3a76400006103e860016111c7610fd7565b6111d19190613f78565b6111db9190614001565b6111e59190614001565b811015611227576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121e906140a4565b60405180910390fd5b670de0b6b3a76400008161123b9190613f78565b60088190555050565b600061125184848461261e565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061129c61244b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508281101561131c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131390614136565b60405180910390fd5b6113308561132861244b565b858403612453565b60019150509392505050565b61dead81565b600d5481565b600c60009054906101000a900460ff1681565b60006012905090565b600061140661137161244b565b84846001600061137f61244b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546114019190613e55565b612453565b6001905092915050565b60185481565b7f000000000000000000000000579ab20fbbf984e79c722db58b970406460d198181565b601160009054906101000a900460ff1681565b6000601d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6114ab61244b565b73ffffffffffffffffffffffffffffffffffffffff166114c96118ce565b73ffffffffffffffffffffffffffffffffffffffff161461151f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161151690613e06565b60405180910390fd5b816015819055508060168190555060165460155461153d9190613e55565b601481905550600f6014541115611589576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611580906141a2565b60405180910390fd5b5050565b60175481565b601160029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6115f661244b565b73ffffffffffffffffffffffffffffffffffffffff166116146118ce565b73ffffffffffffffffffffffffffffffffffffffff161461166a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166190613e06565b60405180910390fd5b6116746000613222565b565b600061168061244b565b73ffffffffffffffffffffffffffffffffffffffff1661169e6118ce565b73ffffffffffffffffffffffffffffffffffffffff16146116f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116eb90613e06565b60405180910390fd5b6000601160006101000a81548160ff0219169083151502179055506001905090565b61171e61244b565b73ffffffffffffffffffffffffffffffffffffffff1661173c6118ce565b73ffffffffffffffffffffffffffffffffffffffff1614611792576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161178990613e06565b60405180910390fd5b80601e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b61181b61244b565b73ffffffffffffffffffffffffffffffffffffffff166118396118ce565b73ffffffffffffffffffffffffffffffffffffffff161461188f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161188690613e06565b60405180910390fd5b6001601160016101000a81548160ff0219169083151502179055506001601160026101000a81548160ff02191690831515021790555042600e81905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b61192661244b565b73ffffffffffffffffffffffffffffffffffffffff166119446118ce565b73ffffffffffffffffffffffffffffffffffffffff161461199a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161199190613e06565b60405180910390fd5b80601160026101000a81548160ff02191690831515021790555050565b6060600480546119c690613f46565b80601f01602080910402602001604051908101604052809291908181526020018280546119f290613f46565b8015611a3f5780601f10611a1457610100808354040283529160200191611a3f565b820191906000526020600020905b815481529060010190602001808311611a2257829003601f168201915b5050505050905090565b611a5161244b565b73ffffffffffffffffffffffffffffffffffffffff16611a6f6118ce565b73ffffffffffffffffffffffffffffffffffffffff1614611ac5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611abc90613e06565b60405180910390fd5b7f000000000000000000000000579ab20fbbf984e79c722db58b970406460d198173ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611b54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b4b90614234565b60405180910390fd5b611b5e82826132e8565b5050565b60165481565b60105481565b601c5481565b60195481565b60008060016000611b8961244b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611c46576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c3d906142c6565b60405180910390fd5b611c5a611c5161244b565b85858403612453565b600191505092915050565b600e5481565b6000611c7f611c7861244b565b848461261e565b6001905092915050565b611c9161244b565b73ffffffffffffffffffffffffffffffffffffffff16611caf6118ce565b73ffffffffffffffffffffffffffffffffffffffff1614611d05576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cfc90613e06565b60405180910390fd5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567460405160405180910390a380600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b601f6020528060005260406000206000915054906101000a900460ff1681565b601160019054906101000a900460ff1681565b611e0061244b565b73ffffffffffffffffffffffffffffffffffffffff16611e1e6118ce565b73ffffffffffffffffffffffffffffffffffffffff1614611e74576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e6b90613e06565b60405180910390fd5b80601d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051611f119190613ad8565b60405180910390a25050565b611f2561244b565b73ffffffffffffffffffffffffffffffffffffffff16611f436118ce565b73ffffffffffffffffffffffffffffffffffffffff1614611f99576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f9090613e06565b60405180910390fd5b670de0b6b3a76400006103e86005611faf610fd7565b611fb99190613f78565b611fc39190614001565b611fcd9190614001565b81101561200f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161200690614358565b60405180910390fd5b670de0b6b3a7640000816120239190613f78565b600a8190555050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1661206d61244b565b73ffffffffffffffffffffffffffffffffffffffff161461208d57600080fd5b6000612098306115a6565b90506120a381613389565b50565b601360009054906101000a900460ff1681565b60085481565b60006120c961244b565b73ffffffffffffffffffffffffffffffffffffffff166120e76118ce565b73ffffffffffffffffffffffffffffffffffffffff161461213d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161213490613e06565b60405180910390fd5b620186a0600161214b610fd7565b6121559190613f78565b61215f9190614001565b8210156121a1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612198906143ea565b60405180910390fd5b6103e860056121ae610fd7565b6121b89190613f78565b6121c29190614001565b821115612204576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121fb9061447c565b60405180910390fd5b8160098190555060019050919050565b60145481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60095481565b60006122b161244b565b73ffffffffffffffffffffffffffffffffffffffff166122cf6118ce565b73ffffffffffffffffffffffffffffffffffffffff1614612325576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161231c90613e06565b60405180910390fd5b6000601360006101000a81548160ff0219169083151502179055506001905090565b61234f61244b565b73ffffffffffffffffffffffffffffffffffffffff1661236d6118ce565b73ffffffffffffffffffffffffffffffffffffffff16146123c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123ba90613e06565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612433576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161242a9061450e565b60405180910390fd5b61243c81613222565b50565b60155481565b600a5481565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156124c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124ba906145a0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612533576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161252a90614632565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516126119190613ba9565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561268e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612685906146c4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156126fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126f590614756565b60405180910390fd5b600081141561271857612713838360006135c6565b61321d565b601160009054906101000a900460ff1615612ddb576127356118ce565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156127a357506127736118ce565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156127dc5750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612816575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561282f5750600560149054906101000a900460ff16155b15612dda57601160019054906101000a900460ff1661292957601d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806128e95750601d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b612928576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161291f906147c2565b60405180910390fd5b5b601360009054906101000a900460ff1615612af1576129466118ce565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141580156129cd57507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612a2557507f000000000000000000000000579ab20fbbf984e79c722db58b970406460d198173ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b15612af05743601260003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410612aab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612aa29061487a565b60405180910390fd5b43601260003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612b945750601e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612c3b57600854811115612bde576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bd59061490c565b60405180910390fd5b600a54612bea836115a6565b82612bf59190613e55565b1115612c36576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c2d90614978565b60405180910390fd5b612dd9565b601f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612cde5750601e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612d2d57600854811115612d28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d1f90614a0a565b60405180910390fd5b612dd8565b601e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16612dd757600a54612d8a836115a6565b82612d959190613e55565b1115612dd6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612dcd90614978565b60405180910390fd5b5b5b5b5b5b6000612de6306115a6565b9050601160029054906101000a900460ff168015612e115750600560149054906101000a900460ff16155b8015612e675750601f60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612ebd5750601d60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612f135750601d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612f3b57612f2181613389565b60004790506000811115612f3957612f3847613847565b5b505b6000600560149054906101000a900460ff16159050601d60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612ff15750601d60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15612ffb57600090505b6000811561320e57601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561305e57506000601754115b156130f85761308b606461307d601754876138b390919063ffffffff16565b6138c990919063ffffffff16565b90506017546019548261309e9190613f78565b6130a89190614001565b601c60008282546130b99190613e55565b92505081905550601754601854826130d19190613f78565b6130db9190614001565b601a60008282546130ec9190613e55565b925050819055506131ea565b601f60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561315357506000601454115b156131e9576131806064613172601454876138b390919063ffffffff16565b6138c990919063ffffffff16565b9050601454601654826131939190613f78565b61319d9190614001565b601c60008282546131ae9190613e55565b92505081905550601454601554826131c69190613f78565b6131d09190614001565b601a60008282546131e19190613e55565b925050819055505b5b60008111156131ff576131fe8630836135c6565b5b808461320b9190614a2a565b93505b6132198686866135c6565b5050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b6000600267ffffffffffffffff8111156133a6576133a5614a5e565b5b6040519080825280602002602001820160405280156133d45781602001602082028036833780820191505090505b50905030816000815181106133ec576133eb614a8d565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015613491573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906134b59190614ad1565b816001815181106134c9576134c8614a8d565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505061352e307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84612453565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401613590959493929190614bf7565b600060405180830381600087803b1580156135aa57600080fd5b505af11580156135be573d6000803e3d6000fd5b505050505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415613636576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161362d906146c4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156136a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161369d90614756565b60405180910390fd5b6136b18383836138df565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015613737576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161372e90614cc3565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546137ca9190613e55565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161382e9190613ba9565b60405180910390a36138418484846138e4565b50505050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f193505050501580156138af573d6000803e3d6000fd5b5050565b600081836138c19190613f78565b905092915050565b600081836138d79190614001565b905092915050565b505050565b505050565b600080fd5b6000819050919050565b613901816138ee565b811461390c57600080fd5b50565b60008135905061391e816138f8565b92915050565b6000806040838503121561393b5761393a6138e9565b5b60006139498582860161390f565b925050602061395a8582860161390f565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561399e578082015181840152602081019050613983565b838111156139ad576000848401525b50505050565b6000601f19601f8301169050919050565b60006139cf82613964565b6139d9818561396f565b93506139e9818560208601613980565b6139f2816139b3565b840191505092915050565b60006020820190508181036000830152613a1781846139c4565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613a4a82613a1f565b9050919050565b613a5a81613a3f565b8114613a6557600080fd5b50565b600081359050613a7781613a51565b92915050565b60008060408385031215613a9457613a936138e9565b5b6000613aa285828601613a68565b9250506020613ab38582860161390f565b9150509250929050565b60008115159050919050565b613ad281613abd565b82525050565b6000602082019050613aed6000830184613ac9565b92915050565b600060208284031215613b0957613b086138e9565b5b6000613b1784828501613a68565b91505092915050565b6000819050919050565b6000613b45613b40613b3b84613a1f565b613b20565b613a1f565b9050919050565b6000613b5782613b2a565b9050919050565b6000613b6982613b4c565b9050919050565b613b7981613b5e565b82525050565b6000602082019050613b946000830184613b70565b92915050565b613ba3816138ee565b82525050565b6000602082019050613bbe6000830184613b9a565b92915050565b600060208284031215613bda57613bd96138e9565b5b6000613be88482850161390f565b91505092915050565b600080600060608486031215613c0a57613c096138e9565b5b6000613c1886828701613a68565b9350506020613c2986828701613a68565b9250506040613c3a8682870161390f565b9150509250925092565b613c4d81613a3f565b82525050565b6000602082019050613c686000830184613c44565b92915050565b600060ff82169050919050565b613c8481613c6e565b82525050565b6000602082019050613c9f6000830184613c7b565b92915050565b613cae81613abd565b8114613cb957600080fd5b50565b600081359050613ccb81613ca5565b92915050565b60008060408385031215613ce857613ce76138e9565b5b6000613cf685828601613a68565b9250506020613d0785828601613cbc565b9150509250929050565b6000613d1c82613a1f565b9050919050565b613d2c81613d11565b82525050565b6000602082019050613d476000830184613d23565b92915050565b600060208284031215613d6357613d626138e9565b5b6000613d7184828501613cbc565b91505092915050565b60008060408385031215613d9157613d906138e9565b5b6000613d9f85828601613a68565b9250506020613db085828601613a68565b9150509250929050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613df060208361396f565b9150613dfb82613dba565b602082019050919050565b60006020820190508181036000830152613e1f81613de3565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613e60826138ee565b9150613e6b836138ee565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613ea057613e9f613e26565b5b828201905092915050565b7f4d757374206b656570206665657320617420323025206f72206c657373000000600082015250565b6000613ee1601d8361396f565b9150613eec82613eab565b602082019050919050565b60006020820190508181036000830152613f1081613ed4565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613f5e57607f821691505b60208210811415613f7257613f71613f17565b5b50919050565b6000613f83826138ee565b9150613f8e836138ee565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613fc757613fc6613e26565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061400c826138ee565b9150614017836138ee565b92508261402757614026613fd2565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20302e31250000000000000000000000000000000000602082015250565b600061408e602f8361396f565b915061409982614032565b604082019050919050565b600060208201905081810360008301526140bd81614081565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b600061412060288361396f565b915061412b826140c4565b604082019050919050565b6000602082019050818103600083015261414f81614113565b9050919050565b7f4d757374206b656570206665657320617420313525206f72206c657373000000600082015250565b600061418c601d8361396f565b915061419782614156565b602082019050919050565b600060208201905081810360008301526141bb8161417f565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b600061421e60398361396f565b9150614229826141c2565b604082019050919050565b6000602082019050818103600083015261424d81614211565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006142b060258361396f565b91506142bb82614254565b604082019050919050565b600060208201905081810360008301526142df816142a3565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b600061434260248361396f565b915061434d826142e6565b604082019050919050565b6000602082019050818103600083015261437181614335565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b60006143d460358361396f565b91506143df82614378565b604082019050919050565b60006020820190508181036000830152614403816143c7565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b600061446660348361396f565b91506144718261440a565b604082019050919050565b6000602082019050818103600083015261449581614459565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006144f860268361396f565b91506145038261449c565b604082019050919050565b60006020820190508181036000830152614527816144eb565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061458a60248361396f565b91506145958261452e565b604082019050919050565b600060208201905081810360008301526145b98161457d565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061461c60228361396f565b9150614627826145c0565b604082019050919050565b6000602082019050818103600083015261464b8161460f565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006146ae60258361396f565b91506146b982614652565b604082019050919050565b600060208201905081810360008301526146dd816146a1565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600061474060238361396f565b915061474b826146e4565b604082019050919050565b6000602082019050818103600083015261476f81614733565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b60006147ac60168361396f565b91506147b782614776565b602082019050919050565b600060208201905081810360008301526147db8161479f565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60208201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000604082015250565b600061486460498361396f565b915061486f826147e2565b606082019050919050565b6000602082019050818103600083015261489381614857565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b60006148f660358361396f565b91506149018261489a565b604082019050919050565b60006020820190508181036000830152614925816148e9565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b600061496260138361396f565b915061496d8261492c565b602082019050919050565b6000602082019050818103600083015261499181614955565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b60006149f460368361396f565b91506149ff82614998565b604082019050919050565b60006020820190508181036000830152614a23816149e7565b9050919050565b6000614a35826138ee565b9150614a40836138ee565b925082821015614a5357614a52613e26565b5b828203905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050614acb81613a51565b92915050565b600060208284031215614ae757614ae66138e9565b5b6000614af584828501614abc565b91505092915050565b6000819050919050565b6000614b23614b1e614b1984614afe565b613b20565b6138ee565b9050919050565b614b3381614b08565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b614b6e81613a3f565b82525050565b6000614b808383614b65565b60208301905092915050565b6000602082019050919050565b6000614ba482614b39565b614bae8185614b44565b9350614bb983614b55565b8060005b83811015614bea578151614bd18882614b74565b9750614bdc83614b8c565b925050600181019050614bbd565b5085935050505092915050565b600060a082019050614c0c6000830188613b9a565b614c196020830187614b2a565b8181036040830152614c2b8186614b99565b9050614c3a6060830185613c44565b614c476080830184613b9a565b9695505050505050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000614cad60268361396f565b9150614cb882614c51565b604082019050919050565b60006020820190508181036000830152614cdc81614ca0565b905091905056fea2646970667358221220f7c3ae87076d0b5b8a58dca563357c4af2f9614857d2a4fdff29753f5f110c7464736f6c634300080a0033

Deployed Bytecode Sourcemap

37720:14537:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44977:304;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;14547:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16714:169;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39277:63;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37798:51;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15667:108;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46235:166;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38380:47;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38194:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39061:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39021;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43754:275;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;17365:492;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37901:53;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38290:45;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38250:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15509:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18266:215;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38956:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37856:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38478:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46409:126;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44672:297;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38921:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38558:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15838:127;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7782:103;;;;;;;;;;;;;:::i;:::-;;42862:121;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44301:167;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37993:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42452:155;;;;;;;;;;;;;:::i;:::-;;7131:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38038:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44564:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;14766:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45479:304;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38888:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38434:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39101:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38987:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18984:413;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38342:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16178:175;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45987:240;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39498:57;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38518:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45289:182;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44037:256;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42615:195;;;;;;;;;;;;;:::i;:::-;;38776:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38079:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43249:497;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38824:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16416:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38121:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43044:135;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8040:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38858:23;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38161:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44977:304;7362:12;:10;:12::i;:::-;7351:23;;:7;:5;:7::i;:::-;:23;;;7343:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;45108:13:::1;45096:9;:25;;;;45145:7;45132:10;:20;;;;45191:10;;45179:9;;:22;;;;:::i;:::-;45163:13;:38;;;;45237:2;45220:13;;:19;;45212:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;44977:304:::0;;:::o;14547:100::-;14601:13;14634:5;14627:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14547:100;:::o;16714:169::-;16797:4;16814:39;16823:12;:10;:12::i;:::-;16837:7;16846:6;16814:8;:39::i;:::-;16871:4;16864:11;;16714:169;;;;:::o;39277:63::-;;;;;;;;;;;;;;;;;;;;;;:::o;37798:51::-;;;:::o;15667:108::-;15728:7;15755:12;;15748:19;;15667:108;:::o;46235:166::-;7362:12;:10;:12::i;:::-;7351:23;;:7;:5;:7::i;:::-;:23;;;7343:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;46342:9:::1;;;;;;;;;;;46314:38;;46331:9;46314:38;;;;;;;;;;;;46383:9;46363;;:30;;;;;;;;;;;;;;;;;;46235:166:::0;:::o;38380:47::-;;;;:::o;38194:36::-;;;;:::o;39061:33::-;;;;:::o;39021:::-;;;;:::o;43754:275::-;7362:12;:10;:12::i;:::-;7351:23;;:7;:5;:7::i;:::-;:23;;;7343:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;43891:4:::1;43883;43878:1;43862:13;:11;:13::i;:::-;:17;;;;:::i;:::-;43861:26;;;;:::i;:::-;43860:35;;;;:::i;:::-;43850:6;:45;;43828:142;;;;;;;;;;;;:::i;:::-;;;;;;;;;44014:6;44004;:17;;;;:::i;:::-;43981:20;:40;;;;43754:275:::0;:::o;17365:492::-;17505:4;17522:36;17532:6;17540:9;17551:6;17522:9;:36::i;:::-;17571:24;17598:11;:19;17610:6;17598:19;;;;;;;;;;;;;;;:33;17618:12;:10;:12::i;:::-;17598:33;;;;;;;;;;;;;;;;17571:60;;17670:6;17650:16;:26;;17642:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;17757:57;17766:6;17774:12;:10;:12::i;:::-;17807:6;17788:16;:25;17757:8;:57::i;:::-;17845:4;17838:11;;;17365:492;;;;;:::o;37901:53::-;37947:6;37901:53;:::o;38290:45::-;;;;:::o;38250:33::-;;;;;;;;;;;;;:::o;15509:93::-;15567:5;15592:2;15585:9;;15509:93;:::o;18266:215::-;18354:4;18371:80;18380:12;:10;:12::i;:::-;18394:7;18440:10;18403:11;:25;18415:12;:10;:12::i;:::-;18403:25;;;;;;;;;;;;;;;:34;18429:7;18403:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;18371:8;:80::i;:::-;18469:4;18462:11;;18266:215;;;;:::o;38956:24::-;;;;:::o;37856:38::-;;;:::o;38478:33::-;;;;;;;;;;;;;:::o;46409:126::-;46475:4;46499:19;:28;46519:7;46499:28;;;;;;;;;;;;;;;;;;;;;;;;;46492:35;;46409:126;;;:::o;44672:297::-;7362:12;:10;:12::i;:::-;7351:23;;:7;:5;:7::i;:::-;:23;;;7343:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;44801:13:::1;44790:8;:24;;;;44837:7;44825:9;:19;;;;44881:9;;44870:8;;:20;;;;:::i;:::-;44855:12;:35;;;;44925:2;44909:12;;:18;;44901:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;44672:297:::0;;:::o;38921:28::-;;;;:::o;38558:31::-;;;;;;;;;;;;;:::o;15838:127::-;15912:7;15939:9;:18;15949:7;15939:18;;;;;;;;;;;;;;;;15932:25;;15838:127;;;:::o;7782:103::-;7362:12;:10;:12::i;:::-;7351:23;;:7;:5;:7::i;:::-;:23;;;7343:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;7847:30:::1;7874:1;7847:18;:30::i;:::-;7782:103::o:0;42862:121::-;42914:4;7362:12;:10;:12::i;:::-;7351:23;;:7;:5;:7::i;:::-;:23;;;7343:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42948:5:::1;42931:14;;:22;;;;;;;;;;;;;;;;;;42971:4;42964:11;;42862:121:::0;:::o;44301:167::-;7362:12;:10;:12::i;:::-;7351:23;;:7;:5;:7::i;:::-;:23;;;7343:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;44456:4:::1;44414:31;:39;44446:6;44414:39;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;44301:167:::0;;:::o;37993:38::-;;;;;;;;;;;;;:::o;42452:155::-;7362:12;:10;:12::i;:::-;7351:23;;:7;:5;:7::i;:::-;:23;;;7343:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42523:4:::1;42507:13;;:20;;;;;;;;;;;;;;;;;;42552:4;42538:11;;:18;;;;;;;;;;;;;;;;;;42584:15;42567:14;:32;;;;42452:155::o:0;7131:87::-;7177:7;7204:6;;;;;;;;;;;7197:13;;7131:87;:::o;38038:32::-;;;;;;;;;;;;;:::o;44564:100::-;7362:12;:10;:12::i;:::-;7351:23;;:7;:5;:7::i;:::-;:23;;;7343:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;44649:7:::1;44635:11;;:21;;;;;;;;;;;;;;;;;;44564:100:::0;:::o;14766:104::-;14822:13;14855:7;14848:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14766:104;:::o;45479:304::-;7362:12;:10;:12::i;:::-;7351:23;;:7;:5;:7::i;:::-;:23;;;7343:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;45623:13:::1;45615:21;;:4;:21;;;;45593:128;;;;;;;;;;;;:::i;:::-;;;;;;;;;45734:41;45763:4;45769:5;45734:28;:41::i;:::-;45479:304:::0;;:::o;38888:24::-;;;;:::o;38434:35::-;;;;:::o;39101:27::-;;;;:::o;38987:25::-;;;;:::o;18984:413::-;19077:4;19094:24;19121:11;:25;19133:12;:10;:12::i;:::-;19121:25;;;;;;;;;;;;;;;:34;19147:7;19121:34;;;;;;;;;;;;;;;;19094:61;;19194:15;19174:16;:35;;19166:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;19287:67;19296:12;:10;:12::i;:::-;19310:7;19338:15;19319:16;:34;19287:8;:67::i;:::-;19385:4;19378:11;;;18984:413;;;;:::o;38342:29::-;;;;:::o;16178:175::-;16264:4;16281:42;16291:12;:10;:12::i;:::-;16305:9;16316:6;16281:9;:42::i;:::-;16341:4;16334:11;;16178:175;;;;:::o;45987:240::-;7362:12;:10;:12::i;:::-;7351:23;;:7;:5;:7::i;:::-;:23;;;7343:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;46147:15:::1;;;;;;;;;;;46104:59;;46127:18;46104:59;;;;;;;;;;;;46200:18;46174:15;;:45;;;;;;;;;;;;;;;;;;45987:240:::0;:::o;39498:57::-;;;;;;;;;;;;;;;;;;;;;;:::o;38518:33::-;;;;;;;;;;;;;:::o;45289:182::-;7362:12;:10;:12::i;:::-;7351:23;;:7;:5;:7::i;:::-;:23;;;7343:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;45405:8:::1;45374:19;:28;45394:7;45374:28;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;45445:7;45429:34;;;45454:8;45429:34;;;;;;:::i;:::-;;;;;;;;45289:182:::0;;:::o;44037:256::-;7362:12;:10;:12::i;:::-;7351:23;;:7;:5;:7::i;:::-;:23;;;7343:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;44177:4:::1;44169;44164:1;44148:13;:11;:13::i;:::-;:17;;;;:::i;:::-;44147:26;;;;:::i;:::-;44146:35;;;;:::i;:::-;44136:6;:45;;44114:131;;;;;;;;;;;;:::i;:::-;;;;;;;;;44278:6;44268;:17;;;;:::i;:::-;44256:9;:29;;;;44037:256:::0;:::o;42615:195::-;42681:15;;;;;;;;;;;42665:31;;:12;:10;:12::i;:::-;:31;;;42657:40;;;;;;42708:23;42734:24;42752:4;42734:9;:24::i;:::-;42708:50;;42769:33;42786:15;42769:16;:33::i;:::-;42646:164;42615:195::o;38776:39::-;;;;;;;;;;;;;:::o;38079:35::-;;;;:::o;43249:497::-;43357:4;7362:12;:10;:12::i;:::-;7351:23;;:7;:5;:7::i;:::-;:23;;;7343:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;43436:6:::1;43431:1;43415:13;:11;:13::i;:::-;:17;;;;:::i;:::-;43414:28;;;;:::i;:::-;43401:9;:41;;43379:144;;;;;;;;;;;;:::i;:::-;;;;;;;;;43591:4;43586:1;43570:13;:11;:13::i;:::-;:17;;;;:::i;:::-;43569:26;;;;:::i;:::-;43556:9;:39;;43534:141;;;;;;;;;;;;:::i;:::-;;;;;;;;;43707:9;43686:18;:30;;;;43734:4;43727:11;;43249:497:::0;;;:::o;38824:27::-;;;;:::o;16416:151::-;16505:7;16532:11;:18;16544:5;16532:18;;;;;;;;;;;;;;;:27;16551:7;16532:27;;;;;;;;;;;;;;;;16525:34;;16416:151;;;;:::o;38121:33::-;;;;:::o;43044:135::-;43104:4;7362:12;:10;:12::i;:::-;7351:23;;:7;:5;:7::i;:::-;:23;;;7343:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;43144:5:::1;43121:20;;:28;;;;;;;;;;;;;;;;;;43167:4;43160:11;;43044:135:::0;:::o;8040:201::-;7362:12;:10;:12::i;:::-;7351:23;;:7;:5;:7::i;:::-;:23;;;7343:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;8149:1:::1;8129:22;;:8;:22;;;;8121:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;8205:28;8224:8;8205:18;:28::i;:::-;8040:201:::0;:::o;38858:23::-;;;;:::o;38161:24::-;;;;:::o;5804:98::-;5857:7;5884:10;5877:17;;5804:98;:::o;22668:380::-;22821:1;22804:19;;:5;:19;;;;22796:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;22902:1;22883:21;;:7;:21;;;;22875:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;22986:6;22956:11;:18;22968:5;22956:18;;;;;;;;;;;;;;;:27;22975:7;22956:27;;;;;;;;;;;;;;;:36;;;;23024:7;23008:32;;23017:5;23008:32;;;23033:6;23008:32;;;;;;:::i;:::-;;;;;;;;22668:380;;;:::o;46545:4587::-;46693:1;46677:18;;:4;:18;;;;46669:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;46770:1;46756:16;;:2;:16;;;;46748:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;46839:1;46829:6;:11;46825:93;;;46857:28;46873:4;46879:2;46883:1;46857:15;:28::i;:::-;46900:7;;46825:93;46934:14;;;;;;;;;;;46930:2487;;;46995:7;:5;:7::i;:::-;46987:15;;:4;:15;;;;:49;;;;;47029:7;:5;:7::i;:::-;47023:13;;:2;:13;;;;46987:49;:86;;;;;47071:1;47057:16;;:2;:16;;;;46987:86;:128;;;;;47108:6;47094:21;;:2;:21;;;;46987:128;:158;;;;;47137:8;;;;;;;;;;;47136:9;46987:158;46965:2441;;;47185:13;;;;;;;;;;;47180:223;;47257:19;:25;47277:4;47257:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;47286:19;:23;47306:2;47286:23;;;;;;;;;;;;;;;;;;;;;;;;;47257:52;47223:160;;;;;;;;;;;;:::i;:::-;;;;;;;;;47180:223;47559:20;;;;;;;;;;;47555:641;;;47640:7;:5;:7::i;:::-;47634:13;;:2;:13;;;;:72;;;;;47690:15;47676:30;;:2;:30;;;;47634:72;:129;;;;;47749:13;47735:28;;:2;:28;;;;47634:129;47604:573;;;47927:12;47852:28;:39;47881:9;47852:39;;;;;;;;;;;;;;;;:87;47814:258;;;;;;;;;;;;:::i;:::-;;;;;;;;;48141:12;48099:28;:39;48128:9;48099:39;;;;;;;;;;;;;;;:54;;;;47604:573;47555:641;48270:25;:31;48296:4;48270:31;;;;;;;;;;;;;;;;;;;;;;;;;:92;;;;;48327:31;:35;48359:2;48327:35;;;;;;;;;;;;;;;;;;;;;;;;;48326:36;48270:92;48244:1147;;;48449:20;;48439:6;:30;;48405:169;;;;;;;;;;;;:::i;:::-;;;;;;;;;48657:9;;48640:13;48650:2;48640:9;:13::i;:::-;48631:6;:22;;;;:::i;:::-;:35;;48597:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;48244:1147;;;48835:25;:29;48861:2;48835:29;;;;;;;;;;;;;;;;;;;;;;;;;:92;;;;;48890:31;:37;48922:4;48890:37;;;;;;;;;;;;;;;;;;;;;;;;;48889:38;48835:92;48809:582;;;49014:20;;49004:6;:30;;48970:170;;;;;;;;;;;;:::i;:::-;;;;;;;;;48809:582;;;49171:31;:35;49203:2;49171:35;;;;;;;;;;;;;;;;;;;;;;;;;49166:225;;49291:9;;49274:13;49284:2;49274:9;:13::i;:::-;49265:6;:22;;;;:::i;:::-;:35;;49231:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;49166:225;48809:582;48244:1147;46965:2441;46930:2487;49429:28;49460:24;49478:4;49460:9;:24::i;:::-;49429:55;;49515:11;;;;;;;;;;;:37;;;;;49544:8;;;;;;;;;;;49543:9;49515:37;:86;;;;;49570:25;:31;49596:4;49570:31;;;;;;;;;;;;;;;;;;;;;;;;;49569:32;49515:86;:129;;;;;49619:19;:25;49639:4;49619:25;;;;;;;;;;;;;;;;;;;;;;;;;49618:26;49515:129;:170;;;;;49662:19;:23;49682:2;49662:23;;;;;;;;;;;;;;;;;;;;;;;;;49661:24;49515:170;49497:442;;;49712:38;49729:20;49712:16;:38::i;:::-;49765:26;49794:21;49765:50;;49855:1;49834:18;:22;49831:97;;;49877:35;49890:21;49877:12;:35::i;:::-;49831:97;49697:242;49497:442;49951:12;49967:8;;;;;;;;;;;49966:9;49951:24;;50077:19;:25;50097:4;50077:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;50106:19;:23;50126:2;50106:23;;;;;;;;;;;;;;;;;;;;;;;;;50077:52;50073:100;;;50156:5;50146:15;;50073:100;50185:12;50290:7;50286:793;;;50342:25;:29;50368:2;50342:29;;;;;;;;;;;;;;;;;;;;;;;;;:50;;;;;50391:1;50375:13;;:17;50342:50;50338:592;;;50420:34;50450:3;50420:25;50431:13;;50420:6;:10;;:25;;;;:::i;:::-;:29;;:34;;;;:::i;:::-;50413:41;;50511:13;;50497:10;;50490:4;:17;;;;:::i;:::-;50489:35;;;;:::i;:::-;50473:12;;:51;;;;;;;:::i;:::-;;;;;;;;50586:13;;50573:9;;50566:4;:16;;;;:::i;:::-;50565:34;;;;:::i;:::-;50543:18;;:56;;;;;;;:::i;:::-;;;;;;;;50338:592;;;50661:25;:31;50687:4;50661:31;;;;;;;;;;;;;;;;;;;;;;;;;:51;;;;;50711:1;50696:12;;:16;50661:51;50657:273;;;50740:33;50769:3;50740:24;50751:12;;50740:6;:10;;:24;;;;:::i;:::-;:28;;:33;;;;:::i;:::-;50733:40;;50829:12;;50816:9;;50809:4;:16;;;;:::i;:::-;50808:33;;;;:::i;:::-;50792:12;;:49;;;;;;;:::i;:::-;;;;;;;;50902:12;;50890:8;;50883:4;:15;;;;:::i;:::-;50882:32;;;;:::i;:::-;50860:18;;:54;;;;;;;:::i;:::-;;;;;;;;50657:273;50338:592;50957:1;50950:4;:8;50946:91;;;50979:42;50995:4;51009;51016;50979:15;:42::i;:::-;50946:91;51063:4;51053:14;;;;;:::i;:::-;;;50286:793;51091:33;51107:4;51113:2;51117:6;51091:15;:33::i;:::-;46658:4474;;;46545:4587;;;;:::o;8401:191::-;8475:16;8494:6;;;;;;;;;;;8475:25;;8520:8;8511:6;;:17;;;;;;;;;;;;;;;;;;8575:8;8544:40;;8565:8;8544:40;;;;;;;;;;;;8464:128;8401:191;:::o;45791:188::-;45908:5;45874:25;:31;45900:4;45874:31;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;45965:5;45931:40;;45959:4;45931:40;;;;;;;;;;;;45791:188;;:::o;51140:589::-;51266:21;51304:1;51290:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51266:40;;51335:4;51317;51322:1;51317:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;;;51361:15;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;51351:4;51356:1;51351:7;;;;;;;;:::i;:::-;;;;;;;:32;;;;;;;;;;;51396:62;51413:4;51428:15;51446:11;51396:8;:62::i;:::-;51497:15;:66;;;51578:11;51604:1;51648:4;51675;51695:15;51497:224;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51195:534;51140:589;:::o;19887:733::-;20045:1;20027:20;;:6;:20;;;;20019:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;20129:1;20108:23;;:9;:23;;;;20100:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;20184:47;20205:6;20213:9;20224:6;20184:20;:47::i;:::-;20244:21;20268:9;:17;20278:6;20268:17;;;;;;;;;;;;;;;;20244:41;;20321:6;20304:13;:23;;20296:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;20442:6;20426:13;:22;20406:9;:17;20416:6;20406:17;;;;;;;;;;;;;;;:42;;;;20494:6;20470:9;:20;20480:9;20470:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;20535:9;20518:35;;20527:6;20518:35;;;20546:6;20518:35;;;;;;:::i;:::-;;;;;;;;20566:46;20586:6;20594:9;20605:6;20566:19;:46::i;:::-;20008:612;19887:733;;;:::o;42315:83::-;42364:9;;;;;;;;;;;:18;;:26;42383:6;42364:26;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42315:83;:::o;28121:98::-;28179:7;28210:1;28206;:5;;;;:::i;:::-;28199:12;;28121:98;;;;:::o;28520:::-;28578:7;28609:1;28605;:5;;;;:::i;:::-;28598:12;;28520:98;;;;:::o;23648:125::-;;;;:::o;24377:124::-;;;;:::o;88:117:1:-;197:1;194;187:12;334:77;371:7;400:5;389:16;;334:77;;;:::o;417:122::-;490:24;508:5;490:24;:::i;:::-;483:5;480:35;470:63;;529:1;526;519:12;470:63;417:122;:::o;545:139::-;591:5;629:6;616:20;607:29;;645:33;672:5;645:33;:::i;:::-;545:139;;;;:::o;690:474::-;758:6;766;815:2;803:9;794:7;790:23;786:32;783:119;;;821:79;;:::i;:::-;783:119;941:1;966:53;1011:7;1002:6;991:9;987:22;966:53;:::i;:::-;956:63;;912:117;1068:2;1094:53;1139:7;1130:6;1119:9;1115:22;1094:53;:::i;:::-;1084:63;;1039:118;690:474;;;;;:::o;1170:99::-;1222:6;1256:5;1250:12;1240:22;;1170:99;;;:::o;1275:169::-;1359:11;1393:6;1388:3;1381:19;1433:4;1428:3;1424:14;1409:29;;1275:169;;;;:::o;1450:307::-;1518:1;1528:113;1542:6;1539:1;1536:13;1528:113;;;1627:1;1622:3;1618:11;1612:18;1608:1;1603:3;1599:11;1592:39;1564:2;1561:1;1557:10;1552:15;;1528:113;;;1659:6;1656:1;1653:13;1650:101;;;1739:1;1730:6;1725:3;1721:16;1714:27;1650:101;1499:258;1450:307;;;:::o;1763:102::-;1804:6;1855:2;1851:7;1846:2;1839:5;1835:14;1831:28;1821:38;;1763:102;;;:::o;1871:364::-;1959:3;1987:39;2020:5;1987:39;:::i;:::-;2042:71;2106:6;2101:3;2042:71;:::i;:::-;2035:78;;2122:52;2167:6;2162:3;2155:4;2148:5;2144:16;2122:52;:::i;:::-;2199:29;2221:6;2199:29;:::i;:::-;2194:3;2190:39;2183:46;;1963:272;1871:364;;;;:::o;2241:313::-;2354:4;2392:2;2381:9;2377:18;2369:26;;2441:9;2435:4;2431:20;2427:1;2416:9;2412:17;2405:47;2469:78;2542:4;2533:6;2469:78;:::i;:::-;2461:86;;2241:313;;;;:::o;2560:126::-;2597:7;2637:42;2630:5;2626:54;2615:65;;2560:126;;;:::o;2692:96::-;2729:7;2758:24;2776:5;2758:24;:::i;:::-;2747:35;;2692:96;;;:::o;2794:122::-;2867:24;2885:5;2867:24;:::i;:::-;2860:5;2857:35;2847:63;;2906:1;2903;2896:12;2847:63;2794:122;:::o;2922:139::-;2968:5;3006:6;2993:20;2984:29;;3022:33;3049:5;3022:33;:::i;:::-;2922:139;;;;:::o;3067:474::-;3135:6;3143;3192:2;3180:9;3171:7;3167:23;3163:32;3160:119;;;3198:79;;:::i;:::-;3160:119;3318:1;3343:53;3388:7;3379:6;3368:9;3364:22;3343:53;:::i;:::-;3333:63;;3289:117;3445:2;3471:53;3516:7;3507:6;3496:9;3492:22;3471:53;:::i;:::-;3461:63;;3416:118;3067:474;;;;;:::o;3547:90::-;3581:7;3624:5;3617:13;3610:21;3599:32;;3547:90;;;:::o;3643:109::-;3724:21;3739:5;3724:21;:::i;:::-;3719:3;3712:34;3643:109;;:::o;3758:210::-;3845:4;3883:2;3872:9;3868:18;3860:26;;3896:65;3958:1;3947:9;3943:17;3934:6;3896:65;:::i;:::-;3758:210;;;;:::o;3974:329::-;4033:6;4082:2;4070:9;4061:7;4057:23;4053:32;4050:119;;;4088:79;;:::i;:::-;4050:119;4208:1;4233:53;4278:7;4269:6;4258:9;4254:22;4233:53;:::i;:::-;4223:63;;4179:117;3974:329;;;;:::o;4309:60::-;4337:3;4358:5;4351:12;;4309:60;;;:::o;4375:142::-;4425:9;4458:53;4476:34;4485:24;4503:5;4485:24;:::i;:::-;4476:34;:::i;:::-;4458:53;:::i;:::-;4445:66;;4375:142;;;:::o;4523:126::-;4573:9;4606:37;4637:5;4606:37;:::i;:::-;4593:50;;4523:126;;;:::o;4655:153::-;4732:9;4765:37;4796:5;4765:37;:::i;:::-;4752:50;;4655:153;;;:::o;4814:185::-;4928:64;4986:5;4928:64;:::i;:::-;4923:3;4916:77;4814:185;;:::o;5005:276::-;5125:4;5163:2;5152:9;5148:18;5140:26;;5176:98;5271:1;5260:9;5256:17;5247:6;5176:98;:::i;:::-;5005:276;;;;:::o;5287:118::-;5374:24;5392:5;5374:24;:::i;:::-;5369:3;5362:37;5287:118;;:::o;5411:222::-;5504:4;5542:2;5531:9;5527:18;5519:26;;5555:71;5623:1;5612:9;5608:17;5599:6;5555:71;:::i;:::-;5411:222;;;;:::o;5639:329::-;5698:6;5747:2;5735:9;5726:7;5722:23;5718:32;5715:119;;;5753:79;;:::i;:::-;5715:119;5873:1;5898:53;5943:7;5934:6;5923:9;5919:22;5898:53;:::i;:::-;5888:63;;5844:117;5639:329;;;;:::o;5974:619::-;6051:6;6059;6067;6116:2;6104:9;6095:7;6091:23;6087:32;6084:119;;;6122:79;;:::i;:::-;6084:119;6242:1;6267:53;6312:7;6303:6;6292:9;6288:22;6267:53;:::i;:::-;6257:63;;6213:117;6369:2;6395:53;6440:7;6431:6;6420:9;6416:22;6395:53;:::i;:::-;6385:63;;6340:118;6497:2;6523:53;6568:7;6559:6;6548:9;6544:22;6523:53;:::i;:::-;6513:63;;6468:118;5974:619;;;;;:::o;6599:118::-;6686:24;6704:5;6686:24;:::i;:::-;6681:3;6674:37;6599:118;;:::o;6723:222::-;6816:4;6854:2;6843:9;6839:18;6831:26;;6867:71;6935:1;6924:9;6920:17;6911:6;6867:71;:::i;:::-;6723:222;;;;:::o;6951:86::-;6986:7;7026:4;7019:5;7015:16;7004:27;;6951:86;;;:::o;7043:112::-;7126:22;7142:5;7126:22;:::i;:::-;7121:3;7114:35;7043:112;;:::o;7161:214::-;7250:4;7288:2;7277:9;7273:18;7265:26;;7301:67;7365:1;7354:9;7350:17;7341:6;7301:67;:::i;:::-;7161:214;;;;:::o;7381:116::-;7451:21;7466:5;7451:21;:::i;:::-;7444:5;7441:32;7431:60;;7487:1;7484;7477:12;7431:60;7381:116;:::o;7503:133::-;7546:5;7584:6;7571:20;7562:29;;7600:30;7624:5;7600:30;:::i;:::-;7503:133;;;;:::o;7642:468::-;7707:6;7715;7764:2;7752:9;7743:7;7739:23;7735:32;7732:119;;;7770:79;;:::i;:::-;7732:119;7890:1;7915:53;7960:7;7951:6;7940:9;7936:22;7915:53;:::i;:::-;7905:63;;7861:117;8017:2;8043:50;8085:7;8076:6;8065:9;8061:22;8043:50;:::i;:::-;8033:60;;7988:115;7642:468;;;;;:::o;8116:104::-;8161:7;8190:24;8208:5;8190:24;:::i;:::-;8179:35;;8116:104;;;:::o;8226:142::-;8329:32;8355:5;8329:32;:::i;:::-;8324:3;8317:45;8226:142;;:::o;8374:254::-;8483:4;8521:2;8510:9;8506:18;8498:26;;8534:87;8618:1;8607:9;8603:17;8594:6;8534:87;:::i;:::-;8374:254;;;;:::o;8634:323::-;8690:6;8739:2;8727:9;8718:7;8714:23;8710:32;8707:119;;;8745:79;;:::i;:::-;8707:119;8865:1;8890:50;8932:7;8923:6;8912:9;8908:22;8890:50;:::i;:::-;8880:60;;8836:114;8634:323;;;;:::o;8963:474::-;9031:6;9039;9088:2;9076:9;9067:7;9063:23;9059:32;9056:119;;;9094:79;;:::i;:::-;9056:119;9214:1;9239:53;9284:7;9275:6;9264:9;9260:22;9239:53;:::i;:::-;9229:63;;9185:117;9341:2;9367:53;9412:7;9403:6;9392:9;9388:22;9367:53;:::i;:::-;9357:63;;9312:118;8963:474;;;;;:::o;9443:182::-;9583:34;9579:1;9571:6;9567:14;9560:58;9443:182;:::o;9631:366::-;9773:3;9794:67;9858:2;9853:3;9794:67;:::i;:::-;9787:74;;9870:93;9959:3;9870:93;:::i;:::-;9988:2;9983:3;9979:12;9972:19;;9631:366;;;:::o;10003:419::-;10169:4;10207:2;10196:9;10192:18;10184:26;;10256:9;10250:4;10246:20;10242:1;10231:9;10227:17;10220:47;10284:131;10410:4;10284:131;:::i;:::-;10276:139;;10003:419;;;:::o;10428:180::-;10476:77;10473:1;10466:88;10573:4;10570:1;10563:15;10597:4;10594:1;10587:15;10614:305;10654:3;10673:20;10691:1;10673:20;:::i;:::-;10668:25;;10707:20;10725:1;10707:20;:::i;:::-;10702:25;;10861:1;10793:66;10789:74;10786:1;10783:81;10780:107;;;10867:18;;:::i;:::-;10780:107;10911:1;10908;10904:9;10897:16;;10614:305;;;;:::o;10925:179::-;11065:31;11061:1;11053:6;11049:14;11042:55;10925:179;:::o;11110:366::-;11252:3;11273:67;11337:2;11332:3;11273:67;:::i;:::-;11266:74;;11349:93;11438:3;11349:93;:::i;:::-;11467:2;11462:3;11458:12;11451:19;;11110:366;;;:::o;11482:419::-;11648:4;11686:2;11675:9;11671:18;11663:26;;11735:9;11729:4;11725:20;11721:1;11710:9;11706:17;11699:47;11763:131;11889:4;11763:131;:::i;:::-;11755:139;;11482:419;;;:::o;11907:180::-;11955:77;11952:1;11945:88;12052:4;12049:1;12042:15;12076:4;12073:1;12066:15;12093:320;12137:6;12174:1;12168:4;12164:12;12154:22;;12221:1;12215:4;12211:12;12242:18;12232:81;;12298:4;12290:6;12286:17;12276:27;;12232:81;12360:2;12352:6;12349:14;12329:18;12326:38;12323:84;;;12379:18;;:::i;:::-;12323:84;12144:269;12093:320;;;:::o;12419:348::-;12459:7;12482:20;12500:1;12482:20;:::i;:::-;12477:25;;12516:20;12534:1;12516:20;:::i;:::-;12511:25;;12704:1;12636:66;12632:74;12629:1;12626:81;12621:1;12614:9;12607:17;12603:105;12600:131;;;12711:18;;:::i;:::-;12600:131;12759:1;12756;12752:9;12741:20;;12419:348;;;;:::o;12773:180::-;12821:77;12818:1;12811:88;12918:4;12915:1;12908:15;12942:4;12939:1;12932:15;12959:185;12999:1;13016:20;13034:1;13016:20;:::i;:::-;13011:25;;13050:20;13068:1;13050:20;:::i;:::-;13045:25;;13089:1;13079:35;;13094:18;;:::i;:::-;13079:35;13136:1;13133;13129:9;13124:14;;12959:185;;;;:::o;13150:234::-;13290:34;13286:1;13278:6;13274:14;13267:58;13359:17;13354:2;13346:6;13342:15;13335:42;13150:234;:::o;13390:366::-;13532:3;13553:67;13617:2;13612:3;13553:67;:::i;:::-;13546:74;;13629:93;13718:3;13629:93;:::i;:::-;13747:2;13742:3;13738:12;13731:19;;13390:366;;;:::o;13762:419::-;13928:4;13966:2;13955:9;13951:18;13943:26;;14015:9;14009:4;14005:20;14001:1;13990:9;13986:17;13979:47;14043:131;14169:4;14043:131;:::i;:::-;14035:139;;13762:419;;;:::o;14187:227::-;14327:34;14323:1;14315:6;14311:14;14304:58;14396:10;14391:2;14383:6;14379:15;14372:35;14187:227;:::o;14420:366::-;14562:3;14583:67;14647:2;14642:3;14583:67;:::i;:::-;14576:74;;14659:93;14748:3;14659:93;:::i;:::-;14777:2;14772:3;14768:12;14761:19;;14420:366;;;:::o;14792:419::-;14958:4;14996:2;14985:9;14981:18;14973:26;;15045:9;15039:4;15035:20;15031:1;15020:9;15016:17;15009:47;15073:131;15199:4;15073:131;:::i;:::-;15065:139;;14792:419;;;:::o;15217:179::-;15357:31;15353:1;15345:6;15341:14;15334:55;15217:179;:::o;15402:366::-;15544:3;15565:67;15629:2;15624:3;15565:67;:::i;:::-;15558:74;;15641:93;15730:3;15641:93;:::i;:::-;15759:2;15754:3;15750:12;15743:19;;15402:366;;;:::o;15774:419::-;15940:4;15978:2;15967:9;15963:18;15955:26;;16027:9;16021:4;16017:20;16013:1;16002:9;15998:17;15991:47;16055:131;16181:4;16055:131;:::i;:::-;16047:139;;15774:419;;;:::o;16199:244::-;16339:34;16335:1;16327:6;16323:14;16316:58;16408:27;16403:2;16395:6;16391:15;16384:52;16199:244;:::o;16449:366::-;16591:3;16612:67;16676:2;16671:3;16612:67;:::i;:::-;16605:74;;16688:93;16777:3;16688:93;:::i;:::-;16806:2;16801:3;16797:12;16790:19;;16449:366;;;:::o;16821:419::-;16987:4;17025:2;17014:9;17010:18;17002:26;;17074:9;17068:4;17064:20;17060:1;17049:9;17045:17;17038:47;17102:131;17228:4;17102:131;:::i;:::-;17094:139;;16821:419;;;:::o;17246:224::-;17386:34;17382:1;17374:6;17370:14;17363:58;17455:7;17450:2;17442:6;17438:15;17431:32;17246:224;:::o;17476:366::-;17618:3;17639:67;17703:2;17698:3;17639:67;:::i;:::-;17632:74;;17715:93;17804:3;17715:93;:::i;:::-;17833:2;17828:3;17824:12;17817:19;;17476:366;;;:::o;17848:419::-;18014:4;18052:2;18041:9;18037:18;18029:26;;18101:9;18095:4;18091:20;18087:1;18076:9;18072:17;18065:47;18129:131;18255:4;18129:131;:::i;:::-;18121:139;;17848:419;;;:::o;18273:223::-;18413:34;18409:1;18401:6;18397:14;18390:58;18482:6;18477:2;18469:6;18465:15;18458:31;18273:223;:::o;18502:366::-;18644:3;18665:67;18729:2;18724:3;18665:67;:::i;:::-;18658:74;;18741:93;18830:3;18741:93;:::i;:::-;18859:2;18854:3;18850:12;18843:19;;18502:366;;;:::o;18874:419::-;19040:4;19078:2;19067:9;19063:18;19055:26;;19127:9;19121:4;19117:20;19113:1;19102:9;19098:17;19091:47;19155:131;19281:4;19155:131;:::i;:::-;19147:139;;18874:419;;;:::o;19299:240::-;19439:34;19435:1;19427:6;19423:14;19416:58;19508:23;19503:2;19495:6;19491:15;19484:48;19299:240;:::o;19545:366::-;19687:3;19708:67;19772:2;19767:3;19708:67;:::i;:::-;19701:74;;19784:93;19873:3;19784:93;:::i;:::-;19902:2;19897:3;19893:12;19886:19;;19545:366;;;:::o;19917:419::-;20083:4;20121:2;20110:9;20106:18;20098:26;;20170:9;20164:4;20160:20;20156:1;20145:9;20141:17;20134:47;20198:131;20324:4;20198:131;:::i;:::-;20190:139;;19917:419;;;:::o;20342:239::-;20482:34;20478:1;20470:6;20466:14;20459:58;20551:22;20546:2;20538:6;20534:15;20527:47;20342:239;:::o;20587:366::-;20729:3;20750:67;20814:2;20809:3;20750:67;:::i;:::-;20743:74;;20826:93;20915:3;20826:93;:::i;:::-;20944:2;20939:3;20935:12;20928:19;;20587:366;;;:::o;20959:419::-;21125:4;21163:2;21152:9;21148:18;21140:26;;21212:9;21206:4;21202:20;21198:1;21187:9;21183:17;21176:47;21240:131;21366:4;21240:131;:::i;:::-;21232:139;;20959:419;;;:::o;21384:225::-;21524:34;21520:1;21512:6;21508:14;21501:58;21593:8;21588:2;21580:6;21576:15;21569:33;21384:225;:::o;21615:366::-;21757:3;21778:67;21842:2;21837:3;21778:67;:::i;:::-;21771:74;;21854:93;21943:3;21854:93;:::i;:::-;21972:2;21967:3;21963:12;21956:19;;21615:366;;;:::o;21987:419::-;22153:4;22191:2;22180:9;22176:18;22168:26;;22240:9;22234:4;22230:20;22226:1;22215:9;22211:17;22204:47;22268:131;22394:4;22268:131;:::i;:::-;22260:139;;21987:419;;;:::o;22412:223::-;22552:34;22548:1;22540:6;22536:14;22529:58;22621:6;22616:2;22608:6;22604:15;22597:31;22412:223;:::o;22641:366::-;22783:3;22804:67;22868:2;22863:3;22804:67;:::i;:::-;22797:74;;22880:93;22969:3;22880:93;:::i;:::-;22998:2;22993:3;22989:12;22982:19;;22641:366;;;:::o;23013:419::-;23179:4;23217:2;23206:9;23202:18;23194:26;;23266:9;23260:4;23256:20;23252:1;23241:9;23237:17;23230:47;23294:131;23420:4;23294:131;:::i;:::-;23286:139;;23013:419;;;:::o;23438:221::-;23578:34;23574:1;23566:6;23562:14;23555:58;23647:4;23642:2;23634:6;23630:15;23623:29;23438:221;:::o;23665:366::-;23807:3;23828:67;23892:2;23887:3;23828:67;:::i;:::-;23821:74;;23904:93;23993:3;23904:93;:::i;:::-;24022:2;24017:3;24013:12;24006:19;;23665:366;;;:::o;24037:419::-;24203:4;24241:2;24230:9;24226:18;24218:26;;24290:9;24284:4;24280:20;24276:1;24265:9;24261:17;24254:47;24318:131;24444:4;24318:131;:::i;:::-;24310:139;;24037:419;;;:::o;24462:224::-;24602:34;24598:1;24590:6;24586:14;24579:58;24671:7;24666:2;24658:6;24654:15;24647:32;24462:224;:::o;24692:366::-;24834:3;24855:67;24919:2;24914:3;24855:67;:::i;:::-;24848:74;;24931:93;25020:3;24931:93;:::i;:::-;25049:2;25044:3;25040:12;25033:19;;24692:366;;;:::o;25064:419::-;25230:4;25268:2;25257:9;25253:18;25245:26;;25317:9;25311:4;25307:20;25303:1;25292:9;25288:17;25281:47;25345:131;25471:4;25345:131;:::i;:::-;25337:139;;25064:419;;;:::o;25489:222::-;25629:34;25625:1;25617:6;25613:14;25606:58;25698:5;25693:2;25685:6;25681:15;25674:30;25489:222;:::o;25717:366::-;25859:3;25880:67;25944:2;25939:3;25880:67;:::i;:::-;25873:74;;25956:93;26045:3;25956:93;:::i;:::-;26074:2;26069:3;26065:12;26058:19;;25717:366;;;:::o;26089:419::-;26255:4;26293:2;26282:9;26278:18;26270:26;;26342:9;26336:4;26332:20;26328:1;26317:9;26313:17;26306:47;26370:131;26496:4;26370:131;:::i;:::-;26362:139;;26089:419;;;:::o;26514:172::-;26654:24;26650:1;26642:6;26638:14;26631:48;26514:172;:::o;26692:366::-;26834:3;26855:67;26919:2;26914:3;26855:67;:::i;:::-;26848:74;;26931:93;27020:3;26931:93;:::i;:::-;27049:2;27044:3;27040:12;27033:19;;26692:366;;;:::o;27064:419::-;27230:4;27268:2;27257:9;27253:18;27245:26;;27317:9;27311:4;27307:20;27303:1;27292:9;27288:17;27281:47;27345:131;27471:4;27345:131;:::i;:::-;27337:139;;27064:419;;;:::o;27489:297::-;27629:34;27625:1;27617:6;27613:14;27606:58;27698:34;27693:2;27685:6;27681:15;27674:59;27767:11;27762:2;27754:6;27750:15;27743:36;27489:297;:::o;27792:366::-;27934:3;27955:67;28019:2;28014:3;27955:67;:::i;:::-;27948:74;;28031:93;28120:3;28031:93;:::i;:::-;28149:2;28144:3;28140:12;28133:19;;27792:366;;;:::o;28164:419::-;28330:4;28368:2;28357:9;28353:18;28345:26;;28417:9;28411:4;28407:20;28403:1;28392:9;28388:17;28381:47;28445:131;28571:4;28445:131;:::i;:::-;28437:139;;28164:419;;;:::o;28589:240::-;28729:34;28725:1;28717:6;28713:14;28706:58;28798:23;28793:2;28785:6;28781:15;28774:48;28589:240;:::o;28835:366::-;28977:3;28998:67;29062:2;29057:3;28998:67;:::i;:::-;28991:74;;29074:93;29163:3;29074:93;:::i;:::-;29192:2;29187:3;29183:12;29176:19;;28835:366;;;:::o;29207:419::-;29373:4;29411:2;29400:9;29396:18;29388:26;;29460:9;29454:4;29450:20;29446:1;29435:9;29431:17;29424:47;29488:131;29614:4;29488:131;:::i;:::-;29480:139;;29207:419;;;:::o;29632:169::-;29772:21;29768:1;29760:6;29756:14;29749:45;29632:169;:::o;29807:366::-;29949:3;29970:67;30034:2;30029:3;29970:67;:::i;:::-;29963:74;;30046:93;30135:3;30046:93;:::i;:::-;30164:2;30159:3;30155:12;30148:19;;29807:366;;;:::o;30179:419::-;30345:4;30383:2;30372:9;30368:18;30360:26;;30432:9;30426:4;30422:20;30418:1;30407:9;30403:17;30396:47;30460:131;30586:4;30460:131;:::i;:::-;30452:139;;30179:419;;;:::o;30604:241::-;30744:34;30740:1;30732:6;30728:14;30721:58;30813:24;30808:2;30800:6;30796:15;30789:49;30604:241;:::o;30851:366::-;30993:3;31014:67;31078:2;31073:3;31014:67;:::i;:::-;31007:74;;31090:93;31179:3;31090:93;:::i;:::-;31208:2;31203:3;31199:12;31192:19;;30851:366;;;:::o;31223:419::-;31389:4;31427:2;31416:9;31412:18;31404:26;;31476:9;31470:4;31466:20;31462:1;31451:9;31447:17;31440:47;31504:131;31630:4;31504:131;:::i;:::-;31496:139;;31223:419;;;:::o;31648:191::-;31688:4;31708:20;31726:1;31708:20;:::i;:::-;31703:25;;31742:20;31760:1;31742:20;:::i;:::-;31737:25;;31781:1;31778;31775:8;31772:34;;;31786:18;;:::i;:::-;31772:34;31831:1;31828;31824:9;31816:17;;31648:191;;;;:::o;31845:180::-;31893:77;31890:1;31883:88;31990:4;31987:1;31980:15;32014:4;32011:1;32004:15;32031:180;32079:77;32076:1;32069:88;32176:4;32173:1;32166:15;32200:4;32197:1;32190:15;32217:143;32274:5;32305:6;32299:13;32290:22;;32321:33;32348:5;32321:33;:::i;:::-;32217:143;;;;:::o;32366:351::-;32436:6;32485:2;32473:9;32464:7;32460:23;32456:32;32453:119;;;32491:79;;:::i;:::-;32453:119;32611:1;32636:64;32692:7;32683:6;32672:9;32668:22;32636:64;:::i;:::-;32626:74;;32582:128;32366:351;;;;:::o;32723:85::-;32768:7;32797:5;32786:16;;32723:85;;;:::o;32814:158::-;32872:9;32905:61;32923:42;32932:32;32958:5;32932:32;:::i;:::-;32923:42;:::i;:::-;32905:61;:::i;:::-;32892:74;;32814:158;;;:::o;32978:147::-;33073:45;33112:5;33073:45;:::i;:::-;33068:3;33061:58;32978:147;;:::o;33131:114::-;33198:6;33232:5;33226:12;33216:22;;33131:114;;;:::o;33251:184::-;33350:11;33384:6;33379:3;33372:19;33424:4;33419:3;33415:14;33400:29;;33251:184;;;;:::o;33441:132::-;33508:4;33531:3;33523:11;;33561:4;33556:3;33552:14;33544:22;;33441:132;;;:::o;33579:108::-;33656:24;33674:5;33656:24;:::i;:::-;33651:3;33644:37;33579:108;;:::o;33693:179::-;33762:10;33783:46;33825:3;33817:6;33783:46;:::i;:::-;33861:4;33856:3;33852:14;33838:28;;33693:179;;;;:::o;33878:113::-;33948:4;33980;33975:3;33971:14;33963:22;;33878:113;;;:::o;34027:732::-;34146:3;34175:54;34223:5;34175:54;:::i;:::-;34245:86;34324:6;34319:3;34245:86;:::i;:::-;34238:93;;34355:56;34405:5;34355:56;:::i;:::-;34434:7;34465:1;34450:284;34475:6;34472:1;34469:13;34450:284;;;34551:6;34545:13;34578:63;34637:3;34622:13;34578:63;:::i;:::-;34571:70;;34664:60;34717:6;34664:60;:::i;:::-;34654:70;;34510:224;34497:1;34494;34490:9;34485:14;;34450:284;;;34454:14;34750:3;34743:10;;34151:608;;;34027:732;;;;:::o;34765:831::-;35028:4;35066:3;35055:9;35051:19;35043:27;;35080:71;35148:1;35137:9;35133:17;35124:6;35080:71;:::i;:::-;35161:80;35237:2;35226:9;35222:18;35213:6;35161:80;:::i;:::-;35288:9;35282:4;35278:20;35273:2;35262:9;35258:18;35251:48;35316:108;35419:4;35410:6;35316:108;:::i;:::-;35308:116;;35434:72;35502:2;35491:9;35487:18;35478:6;35434:72;:::i;:::-;35516:73;35584:3;35573:9;35569:19;35560:6;35516:73;:::i;:::-;34765:831;;;;;;;;:::o;35602:225::-;35742:34;35738:1;35730:6;35726:14;35719:58;35811:8;35806:2;35798:6;35794:15;35787:33;35602:225;:::o;35833:366::-;35975:3;35996:67;36060:2;36055:3;35996:67;:::i;:::-;35989:74;;36072:93;36161:3;36072:93;:::i;:::-;36190:2;36185:3;36181:12;36174:19;;35833:366;;;:::o;36205:419::-;36371:4;36409:2;36398:9;36394:18;36386:26;;36458:9;36452:4;36448:20;36444:1;36433:9;36429:17;36422:47;36486:131;36612:4;36486:131;:::i;:::-;36478:139;;36205:419;;;:::o

Swarm Source

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