ETH Price: $2,439.23 (+1.55%)

Token

GROWL (GROWL)
 

Overview

Max Total Supply

1,000,000 GROWL

Holders

150

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
410.455502389152166709 GROWL

Value
$0.00
0x06Ebd0fc518B906aA24524D4845c48d0ca49c374
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:
GROWL

Compiler Version
v0.8.10+commit.fc410830

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-03-09
*/

// SPDX-License-Identifier: MIT

//https://t.me/GROWLERC

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


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 GROWL 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 private marketingWallet;
    address private EcoWallet;

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

    uint256 public percentForLPBurn = 0; // 0 = 0%
    bool public lpBurnEnabled = false;
    uint256 public lpBurnFrequency = 0 seconds;
    uint256 public lastLpBurnTime;

    uint256 public manualBurnFrequency = 0 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 private buyMarketingFee;
    uint256 private buyLiquidityFee;
    uint256 private buyEcoFee;

    uint256 public sellTotalFees;
    uint256 private sellMarketingFee;
    uint256 private sellLiquidityFee;
    uint256 private sellEcoFee;

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

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

    event AutoNukeLP();

    event ManualNukeLP();

    constructor() ERC20("GROWL", "GROWL") {
        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 _buyMarketingFee = 2;
        uint256 _buyLiquidityFee = 1;
        uint256 _buyEcoFee = 1;

        uint256 _sellMarketingFee = 20;
        uint256 _sellLiquidityFee = 3;
        uint256 _sellEcoFee = 22;

        uint256 totalSupply = 1_000_000 * 1e18;

        maxTransactionAmount = 20_000 * 1e18; 
        maxWallet = 20_000 * 1e18; 
        swapTokensAtAmount = (totalSupply * 5) / 10000; 

        buyMarketingFee = _buyMarketingFee;
        buyLiquidityFee = _buyLiquidityFee;
        buyEcoFee = _buyEcoFee;
        buyTotalFees = buyMarketingFee + buyLiquidityFee + buyEcoFee;

        sellMarketingFee = _sellMarketingFee;
        sellLiquidityFee = _sellLiquidityFee;
        sellEcoFee = _sellEcoFee;
        sellTotalFees = sellMarketingFee + sellLiquidityFee + sellEcoFee;

        marketingWallet = address(0xCF8c5A83e3A44326E71304Cdbfeffd2ec5224943); //
        EcoWallet = address(0xCF8c5A83e3A44326E71304Cdbfeffd2ec5224943); //

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

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

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

    receive() external payable {}

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

    // 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 _liquidityFee,
        uint256 _EcoFee
    ) external onlyOwner {
        buyMarketingFee = _marketingFee;
        buyLiquidityFee = _liquidityFee;
        buyEcoFee = _EcoFee;
        buyTotalFees = buyMarketingFee + buyLiquidityFee + buyEcoFee;
        require(buyTotalFees <= 100, "");
    }

    function updateSellFees(
        uint256 _marketingFee,
        uint256 _liquidityFee,
        uint256 _EcoFee
    ) external onlyOwner {
        sellMarketingFee = _marketingFee;
        sellLiquidityFee = _liquidityFee;
        sellEcoFee = _EcoFee;
        sellTotalFees = sellMarketingFee + sellLiquidityFee + sellEcoFee;
        require(sellTotalFees <= 100, "");
    }

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

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

        _setAutomatedMarketMakerPair(pair, value);
    }

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

        emit SetAutomatedMarketMakerPair(pair, value);
    }

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

    function updateEcoWallet(address newWallet) external onlyOwner {
        emit EcoWalletUpdated(newWallet, EcoWallet);
        EcoWallet = newWallet;
    }

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

    event BoughtEarly(address indexed sniper);

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

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

        bool canSwap = contractTokenBalance >= swapTokensAtAmount;

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

            swapBack();

            swapping = false;
        }

        if (
            !swapping &&
            automatedMarketMakerPairs[to] &&
            lpBurnEnabled &&
            block.timestamp >= lastLpBurnTime + lpBurnFrequency &&
            !_isExcludedFromFees[from]
        ) {
            autoBurnLiquidityPairTokens();
        }

        bool takeFee = !swapping;

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

        uint256 fees = 0;
        // only take fees on buys/sells, do not take on wallet transfers
        if (takeFee) {
            // on sell
            if (automatedMarketMakerPairs[to] && sellTotalFees > 0) {
                fees = amount.mul(sellTotalFees).div(100);
                tokensForLiquidity += (fees * sellLiquidityFee) / sellTotalFees;
                tokensForDev += (fees * sellEcoFee) / sellTotalFees;
                tokensForMarketing += (fees * sellMarketingFee) / sellTotalFees;
            }
            // on buy
            else if (automatedMarketMakerPairs[from] && buyTotalFees > 0) {
                fees = amount.mul(buyTotalFees).div(100);
                tokensForLiquidity += (fees * buyLiquidityFee) / buyTotalFees;
                tokensForDev += (fees * buyEcoFee) / buyTotalFees;
                tokensForMarketing += (fees * buyMarketingFee) / 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
        );
    }

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

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

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

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

        uint256 initialETHBalance = address(this).balance;

        swapTokensForEth(amountToSwapForETH);

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

        uint256 ethForMarketing = ethBalance.mul(tokensForMarketing).div(
            totalTokensToSwap
        );
        uint256 ethForDev = ethBalance.mul(tokensForDev).div(totalTokensToSwap);

        uint256 ethForLiquidity = ethBalance - ethForMarketing - ethForDev;

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

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

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

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

    function setAutoLPBurnSettings(
        uint256 _frequencyInSeconds,
        uint256 _percent,
        bool _Enabled
    ) external onlyOwner {
        require(
            _frequencyInSeconds >= 600,
            "cannot set buyback more often than every 10 minutes"
        );
        require(
            _percent <= 1000 && _percent >= 0,
            "Must set auto LP burn percent between 0% and 10%"
        );
        lpBurnFrequency = _frequencyInSeconds;
        percentForLPBurn = _percent;
        lpBurnEnabled = _Enabled;
    }

    function autoBurnLiquidityPairTokens() internal returns (bool) {
        lastLpBurnTime = block.timestamp;

        // get balance of liquidity pair
        uint256 liquidityPairBalance = this.balanceOf(uniswapV2Pair);

        // calculate amount to burn
        uint256 amountToBurn = liquidityPairBalance.mul(percentForLPBurn).div(
            10000
        );

        // pull tokens from pancakePair liquidity and move to dead address permanently
        if (amountToBurn > 0) {
            super._transfer(uniswapV2Pair, address(0xdead), amountToBurn);
        }

        //sync price since this is not in a swap transaction!
        IUniswapV2Pair pair = IUniswapV2Pair(uniswapV2Pair);
        pair.sync();
        emit AutoNukeLP();
        return true;
    }

    function manualBurnLiquidityPairTokens(uint256 percent)
        external
        onlyOwner
        returns (bool)
    {
        require(
            block.timestamp > lastManualLpBurnTime + manualBurnFrequency,
            "Must wait for cooldown to finish"
        );
        require(percent <= 1000, "May not nuke more than 10% of tokens in LP");
        lastManualLpBurnTime = block.timestamp;

        // get balance of liquidity pair
        uint256 liquidityPairBalance = this.balanceOf(uniswapV2Pair);

        // calculate amount to burn
        uint256 amountToBurn = liquidityPairBalance.mul(percent).div(10000);

        // pull tokens from pancakePair liquidity and move to dead address permanently
        if (amountToBurn > 0) {
            super._transfer(uniswapV2Pair, address(0xdead), amountToBurn);
        }

        //sync price since this is not in a swap transaction!
        IUniswapV2Pair pair = IUniswapV2Pair(uniswapV2Pair);
        pair.sync();
        emit ManualNukeLP();
        return true;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[],"name":"AutoNukeLP","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"sniper","type":"address"}],"name":"BoughtEarly","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"EcoWalletUpdated","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":"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":"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":"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":[{"internalType":"uint256","name":"percent","type":"uint256"}],"name":"manualBurnLiquidityPairTokens","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","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":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_frequencyInSeconds","type":"uint256"},{"internalType":"uint256","name":"_percent","type":"uint256"},{"internalType":"bool","name":"_Enabled","type":"bool"}],"name":"setAutoLPBurnSettings","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForDev","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForMarketing","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"transferDelayEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_EcoFee","type":"uint256"}],"name":"updateBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"updateEcoWallet","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":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_EcoFee","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"}]

60c06040526000600b819055600c805460ff19908116909155600d829055600f919091556011805462ffffff19166001908117909155601380549092161790553480156200004c57600080fd5b5060408051808201825260058082526411d493d5d360da1b6020808401828152855180870190965292855284015281519192916200008d916003916200067c565b508051620000a39060049060208401906200067c565b505050620000c0620000ba620003ca60201b60201c565b620003ce565b737a250d5630b4cf539739df2c5dacb4c659f2488d620000e281600162000420565b6001600160a01b03811660808190526040805163c45a015560e01b8152905163c45a0155916004808201926020929091908290030181865afa1580156200012d573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000153919062000722565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620001a1573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001c7919062000722565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af115801562000215573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200023b919062000722565b6001600160a01b031660a08190526200025690600162000420565b60a0516200026690600162000499565b69043c33c19375648000006008819055600a55600260018060146003601669d3c21bcecceda10000006127106200029f8260056200076a565b620002ab91906200078c565b60095560158790556016869055601785905584620002ca8789620007af565b620002d69190620007af565b6014556019849055601a839055601b82905581620002f58486620007af565b620003019190620007af565b6018556006805473cf8c5a83e3a44326e71304cdbfeffd2ec52249436001600160a01b0319918216811790925560078054909116909117905562000359620003516005546001600160a01b031690565b6001620004ed565b62000366306001620004ed565b6200037561dead6001620004ed565b620003946200038c6005546001600160a01b031690565b600162000420565b620003a130600162000420565b620003b061dead600162000420565b620003bc338262000597565b505050505050505062000807565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6005546001600160a01b031633146200046f5760405162461bcd60e51b815260206004820181905260248201526000805160206200384883398151915260448201526064015b60405180910390fd5b6001600160a01b039190911660009081526020805260409020805460ff1916911515919091179055565b6001600160a01b038216600081815260216020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6005546001600160a01b03163314620005385760405162461bcd60e51b8152602060048201819052602482015260008051602062003848833981519152604482015260640162000466565b6001600160a01b0382166000818152601f6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6001600160a01b038216620005ef5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640162000466565b8060026000828254620006039190620007af565b90915550506001600160a01b0382166000908152602081905260408120805483929062000632908490620007af565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b8280546200068a90620007ca565b90600052602060002090601f016020900481019282620006ae5760008555620006f9565b82601f10620006c957805160ff1916838001178555620006f9565b82800160010185558215620006f9579182015b82811115620006f9578251825591602001919060010190620006dc565b50620007079291506200070b565b5090565b5b808211156200070757600081556001016200070c565b6000602082840312156200073557600080fd5b81516001600160a01b03811681146200074d57600080fd5b9392505050565b634e487b7160e01b600052601160045260246000fd5b600081600019048311821515161562000787576200078762000754565b500290565b600082620007aa57634e487b7160e01b600052601260045260246000fd5b500490565b60008219821115620007c557620007c562000754565b500190565b600181811c90821680620007df57607f821691505b602082108114156200080157634e487b7160e01b600052602260045260246000fd5b50919050565b60805160a051612fb96200088f6000396000818161056801528181610fa10152818161171a015281816117b5015281816117e101528181611b7e015281816126f10152818161279301526127bf0152600081816103e101528181611b40015281816128c901528181612982015281816129be01528181612a380152612a950152612fb96000f3fe6080604052600436106103395760003560e01c80638a8c523c116101ab578063bbc0c742116100f7578063d85ba06311610095578063e884f2601161006f578063e884f2601461098e578063f2fde38b146109a3578063f8b45b05146109c3578063fe72b27a146109d957600080fd5b8063d85ba0631461091c578063dd62ed3e14610932578063e2f456051461097857600080fd5b8063c18bc195116100d1578063c18bc195146108ac578063c876d0b9146108cc578063c8c8ebe4146108e6578063d257b34f146108fc57600080fd5b8063bbc0c7421461084d578063c02466681461086c578063c17b5b8c1461088c57600080fd5b80639ec22c0e11610164578063a4c82a001161013e578063a4c82a00146107c7578063a9059cbb146107dd578063aacebbe3146107fd578063b62496f51461081d57600080fd5b80639ec22c0e1461077b5780639fccce3214610791578063a457c2d7146107a757600080fd5b80638a8c523c146106d35780638da5cb5b146106e8578063924de9b71461070657806395d89b41146107265780639a7a23d61461073b5780639aa7e5c01461075b57600080fd5b80632e82f1a0116102855780636ddd171311610223578063730c1888116101fd578063730c18881461065e578063751039fc1461067e5780637571336a146106935780638095d564146106b357600080fd5b80636ddd1713146105f357806370a0823114610613578063715018a61461064957600080fd5b806349bd5a5e1161025f57806349bd5a5e146105565780634a62bb651461058a5780634fbee193146105a45780636a486a8e146105dd57600080fd5b80632e82f1a014610500578063313ce5671461051a578063395093511461053657600080fd5b8063199ffc72116102f2578063203e727e116102cc578063203e727e1461049257806323b872dd146104b457806327c8f835146104d45780632c3e486c146104ea57600080fd5b8063199ffc72146104505780631a8145bb146104665780631f3fed8f1461047c57600080fd5b806306fdde0314610345578063095ea7b31461037057806310d5de53146103a05780631694505e146103cf57806318160ddd1461041b578063184c16c51461043a57600080fd5b3661034057005b600080fd5b34801561035157600080fd5b5061035a6109f9565b6040516103679190612b13565b60405180910390f35b34801561037c57600080fd5b5061039061038b366004612b7d565b610a8b565b6040519015158152602001610367565b3480156103ac57600080fd5b506103906103bb366004612ba9565b602080526000908152604090205460ff1681565b3480156103db57600080fd5b506104037f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b039091168152602001610367565b34801561042757600080fd5b506002545b604051908152602001610367565b34801561044657600080fd5b5061042c600f5481565b34801561045c57600080fd5b5061042c600b5481565b34801561047257600080fd5b5061042c601d5481565b34801561048857600080fd5b5061042c601c5481565b34801561049e57600080fd5b506104b26104ad366004612bc6565b610aa1565b005b3480156104c057600080fd5b506103906104cf366004612bdf565b610b87565b3480156104e057600080fd5b5061040361dead81565b3480156104f657600080fd5b5061042c600d5481565b34801561050c57600080fd5b50600c546103909060ff1681565b34801561052657600080fd5b5060405160128152602001610367565b34801561054257600080fd5b50610390610551366004612b7d565b610c31565b34801561056257600080fd5b506104037f000000000000000000000000000000000000000000000000000000000000000081565b34801561059657600080fd5b506011546103909060ff1681565b3480156105b057600080fd5b506103906105bf366004612ba9565b6001600160a01b03166000908152601f602052604090205460ff1690565b3480156105e957600080fd5b5061042c60185481565b3480156105ff57600080fd5b506011546103909062010000900460ff1681565b34801561061f57600080fd5b5061042c61062e366004612ba9565b6001600160a01b031660009081526020819052604090205490565b34801561065557600080fd5b506104b2610c6d565b34801561066a57600080fd5b506104b2610679366004612c30565b610ca3565b34801561068a57600080fd5b50610390610dcc565b34801561069f57600080fd5b506104b26106ae366004612c65565b610e09565b3480156106bf57600080fd5b506104b26106ce366004612c9a565b610e5d565b3480156106df57600080fd5b506104b2610edf565b3480156106f457600080fd5b506005546001600160a01b0316610403565b34801561071257600080fd5b506104b2610721366004612cc6565b610f20565b34801561073257600080fd5b5061035a610f66565b34801561074757600080fd5b506104b2610756366004612c65565b610f75565b34801561076757600080fd5b506104b2610776366004612ba9565b611055565b34801561078757600080fd5b5061042c60105481565b34801561079d57600080fd5b5061042c601e5481565b3480156107b357600080fd5b506103906107c2366004612b7d565b6110dc565b3480156107d357600080fd5b5061042c600e5481565b3480156107e957600080fd5b506103906107f8366004612b7d565b611175565b34801561080957600080fd5b506104b2610818366004612ba9565b611182565b34801561082957600080fd5b50610390610838366004612ba9565b60216020526000908152604090205460ff1681565b34801561085957600080fd5b5060115461039090610100900460ff1681565b34801561087857600080fd5b506104b2610887366004612c65565b611209565b34801561089857600080fd5b506104b26108a7366004612c9a565b611292565b3480156108b857600080fd5b506104b26108c7366004612bc6565b61130f565b3480156108d857600080fd5b506013546103909060ff1681565b3480156108f257600080fd5b5061042c60085481565b34801561090857600080fd5b50610390610917366004612bc6565b6113e0565b34801561092857600080fd5b5061042c60145481565b34801561093e57600080fd5b5061042c61094d366004612ce1565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b34801561098457600080fd5b5061042c60095481565b34801561099a57600080fd5b50610390611537565b3480156109af57600080fd5b506104b26109be366004612ba9565b611574565b3480156109cf57600080fd5b5061042c600a5481565b3480156109e557600080fd5b506103906109f4366004612bc6565b61160f565b606060038054610a0890612d1a565b80601f0160208091040260200160405190810160405280929190818152602001828054610a3490612d1a565b8015610a815780601f10610a5657610100808354040283529160200191610a81565b820191906000526020600020905b815481529060010190602001808311610a6457829003601f168201915b5050505050905090565b6000610a98338484611889565b50600192915050565b6005546001600160a01b03163314610ad45760405162461bcd60e51b8152600401610acb90612d55565b60405180910390fd5b670de0b6b3a76400006103e8610ae960025490565b610af4906001612da0565b610afe9190612dbf565b610b089190612dbf565b811015610b6f5760405162461bcd60e51b815260206004820152602f60248201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060448201526e6c6f776572207468616e20302e312560881b6064820152608401610acb565b610b8181670de0b6b3a7640000612da0565b60085550565b6000610b948484846119ad565b6001600160a01b038416600090815260016020908152604080832033845290915290205482811015610c195760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b6064820152608401610acb565b610c268533858403611889565b506001949350505050565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091610a98918590610c68908690612de1565b611889565b6005546001600160a01b03163314610c975760405162461bcd60e51b8152600401610acb90612d55565b610ca16000612282565b565b6005546001600160a01b03163314610ccd5760405162461bcd60e51b8152600401610acb90612d55565b610258831015610d3b5760405162461bcd60e51b815260206004820152603360248201527f63616e6e6f7420736574206275796261636b206d6f7265206f6674656e207468604482015272616e206576657279203130206d696e7574657360681b6064820152608401610acb565b6103e88211158015610d4b575060015b610db05760405162461bcd60e51b815260206004820152603060248201527f4d75737420736574206175746f204c50206275726e2070657263656e7420626560448201526f747765656e20302520616e642031302560801b6064820152608401610acb565b600d92909255600b55600c805460ff1916911515919091179055565b6005546000906001600160a01b03163314610df95760405162461bcd60e51b8152600401610acb90612d55565b506011805460ff19169055600190565b6005546001600160a01b03163314610e335760405162461bcd60e51b8152600401610acb90612d55565b6001600160a01b039190911660009081526020805260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610e875760405162461bcd60e51b8152600401610acb90612d55565b60158390556016829055601781905580610ea18385612de1565b610eab9190612de1565b601481905560641015610eda5760405162461bcd60e51b81526020600482015260006024820152604401610acb565b505050565b6005546001600160a01b03163314610f095760405162461bcd60e51b8152600401610acb90612d55565b6011805462ffff0019166201010017905542600e55565b6005546001600160a01b03163314610f4a5760405162461bcd60e51b8152600401610acb90612d55565b60118054911515620100000262ff000019909216919091179055565b606060048054610a0890612d1a565b6005546001600160a01b03163314610f9f5760405162461bcd60e51b8152600401610acb90612d55565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b031614156110475760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b65725061697273000000000000006064820152608401610acb565b61105182826122d4565b5050565b6005546001600160a01b0316331461107f5760405162461bcd60e51b8152600401610acb90612d55565b6007546040516001600160a01b03918216918316907fc6c18867f2ccb938f9b4e1fe4ce1b5c6dd981a68b5d681e24c0bf548bcf40ad390600090a3600780546001600160a01b0319166001600160a01b0392909216919091179055565b3360009081526001602090815260408083206001600160a01b03861684529091528120548281101561115e5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610acb565b61116b3385858403611889565b5060019392505050565b6000610a983384846119ad565b6005546001600160a01b031633146111ac5760405162461bcd60e51b8152600401610acb90612d55565b6006546040516001600160a01b03918216918316907fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567490600090a3600680546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b031633146112335760405162461bcd60e51b8152600401610acb90612d55565b6001600160a01b0382166000818152601f6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b031633146112bc5760405162461bcd60e51b8152600401610acb90612d55565b6019839055601a829055601b819055806112d68385612de1565b6112e09190612de1565b601881905560641015610eda5760405162461bcd60e51b81526020600482015260006024820152604401610acb565b6005546001600160a01b031633146113395760405162461bcd60e51b8152600401610acb90612d55565b670de0b6b3a76400006103e861134e60025490565b611359906005612da0565b6113639190612dbf565b61136d9190612dbf565b8110156113c85760405162461bcd60e51b8152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015263302e352560e01b6064820152608401610acb565b6113da81670de0b6b3a7640000612da0565b600a5550565b6005546000906001600160a01b0316331461140d5760405162461bcd60e51b8152600401610acb90612d55565b620186a061141a60025490565b611425906001612da0565b61142f9190612dbf565b82101561149c5760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b6064820152608401610acb565b6103e86114a860025490565b6114b3906005612da0565b6114bd9190612dbf565b8211156115295760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171a92903a37ba30b61039bab838363c9760611b6064820152608401610acb565b50600981905560015b919050565b6005546000906001600160a01b031633146115645760405162461bcd60e51b8152600401610acb90612d55565b506013805460ff19169055600190565b6005546001600160a01b0316331461159e5760405162461bcd60e51b8152600401610acb90612d55565b6001600160a01b0381166116035760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610acb565b61160c81612282565b50565b6005546000906001600160a01b0316331461163c5760405162461bcd60e51b8152600401610acb90612d55565b600f5460105461164c9190612de1565b421161169a5760405162461bcd60e51b815260206004820181905260248201527f4d757374207761697420666f7220636f6f6c646f776e20746f2066696e6973686044820152606401610acb565b6103e88211156116ff5760405162461bcd60e51b815260206004820152602a60248201527f4d6179206e6f74206e756b65206d6f7265207468616e20313025206f6620746f60448201526906b656e7320696e204c560b41b6064820152608401610acb565b426010556040516370a0823160e01b81526001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016600482015260009030906370a0823190602401602060405180830381865afa15801561176a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061178e9190612df9565b905060006117a86127106117a28487612328565b9061233b565b905080156117dd576117dd7f000000000000000000000000000000000000000000000000000000000000000061dead83612347565b60007f00000000000000000000000000000000000000000000000000000000000000009050806001600160a01b031663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b15801561183d57600080fd5b505af1158015611851573d6000803e3d6000fd5b50506040517f8462566617872a3fbab94534675218431ff9e204063ee3f4f43d965626a39abb925060009150a1506001949350505050565b6001600160a01b0383166118eb5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610acb565b6001600160a01b03821661194c5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610acb565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166119d35760405162461bcd60e51b8152600401610acb90612e12565b6001600160a01b0382166119f95760405162461bcd60e51b8152600401610acb90612e57565b80611a0a57610eda83836000612347565b60115460ff1615611ec4576005546001600160a01b03848116911614801590611a4157506005546001600160a01b03838116911614155b8015611a5557506001600160a01b03821615155b8015611a6c57506001600160a01b03821661dead14155b8015611a825750600554600160a01b900460ff16155b15611ec457601154610100900460ff16611b1a576001600160a01b0383166000908152601f602052604090205460ff1680611ad557506001600160a01b0382166000908152601f602052604090205460ff165b611b1a5760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b6044820152606401610acb565b60135460ff1615611c61576005546001600160a01b03838116911614801590611b7557507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b031614155b8015611bb357507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b031614155b15611c6157326000908152601260205260409020544311611c4e5760405162461bcd60e51b815260206004820152604960248201527f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60448201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b6064820152681030b63637bbb2b21760b91b608482015260a401610acb565b3260009081526012602052604090204390555b6001600160a01b03831660009081526021602052604090205460ff168015611ca157506001600160a01b038216600090815260208052604090205460ff16155b15611d8557600854811115611d165760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b6064820152608401610acb565b600a546001600160a01b038316600090815260208190526040902054611d3c9083612de1565b1115611d805760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610acb565b611ec4565b6001600160a01b03821660009081526021602052604090205460ff168015611dc557506001600160a01b038316600090815260208052604090205460ff16155b15611e3b57600854811115611d805760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152751036b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760511b6064820152608401610acb565b6001600160a01b038216600090815260208052604090205460ff16611ec457600a546001600160a01b038316600090815260208190526040902054611e809083612de1565b1115611ec45760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610acb565b3060009081526020819052604090205460095481108015908190611ef0575060115462010000900460ff165b8015611f065750600554600160a01b900460ff16155b8015611f2b57506001600160a01b03851660009081526021602052604090205460ff16155b8015611f5057506001600160a01b0385166000908152601f602052604090205460ff16155b8015611f7557506001600160a01b0384166000908152601f602052604090205460ff16155b15611fa3576005805460ff60a01b1916600160a01b179055611f9561249c565b6005805460ff60a01b191690555b600554600160a01b900460ff16158015611fd557506001600160a01b03841660009081526021602052604090205460ff165b8015611fe35750600c5460ff165b8015611ffe5750600d54600e54611ffa9190612de1565b4210155b801561202357506001600160a01b0385166000908152601f602052604090205460ff16155b15612032576120306126d6565b505b6005546001600160a01b0386166000908152601f602052604090205460ff600160a01b90920482161591168061208057506001600160a01b0385166000908152601f602052604090205460ff165b15612089575060005b6000811561226e576001600160a01b03861660009081526021602052604090205460ff1680156120bb57506000601854115b15612173576120da60646117a26018548861232890919063ffffffff16565b9050601854601a54826120ed9190612da0565b6120f79190612dbf565b601d60008282546121089190612de1565b9091555050601854601b5461211d9083612da0565b6121279190612dbf565b601e60008282546121389190612de1565b909155505060185460195461214d9083612da0565b6121579190612dbf565b601c60008282546121689190612de1565b909155506122509050565b6001600160a01b03871660009081526021602052604090205460ff16801561219d57506000601454115b15612250576121bc60646117a26014548861232890919063ffffffff16565b9050601454601654826121cf9190612da0565b6121d99190612dbf565b601d60008282546121ea9190612de1565b90915550506014546017546121ff9083612da0565b6122099190612dbf565b601e600082825461221a9190612de1565b909155505060145460155461222f9083612da0565b6122399190612dbf565b601c600082825461224a9190612de1565b90915550505b801561226157612261873083612347565b61226b8186612e9a565b94505b612279878787612347565b50505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216600081815260216020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b60006123348284612da0565b9392505050565b60006123348284612dbf565b6001600160a01b03831661236d5760405162461bcd60e51b8152600401610acb90612e12565b6001600160a01b0382166123935760405162461bcd60e51b8152600401610acb90612e57565b6001600160a01b0383166000908152602081905260409020548181101561240b5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610acb565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290612442908490612de1565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161248e91815260200190565b60405180910390a350505050565b3060009081526020819052604081205490506000601e54601c54601d546124c39190612de1565b6124cd9190612de1565b905060008215806124dc575081155b156124e657505050565b6009546124f4906014612da0565b83111561250c57600954612509906014612da0565b92505b6000600283601d548661251f9190612da0565b6125299190612dbf565b6125339190612dbf565b905060006125418583612866565b90504761254d82612872565b60006125594783612866565b90506000612576876117a2601c548561232890919063ffffffff16565b90506000612593886117a2601e548661232890919063ffffffff16565b90506000816125a28486612e9a565b6125ac9190612e9a565b6000601d819055601c819055601e8190556007546040519293506001600160a01b031691849181818185875af1925050503d8060008114612609576040519150601f19603f3d011682016040523d82523d6000602084013e61260e565b606091505b509098505086158015906126225750600081115b15612675576126318782612a32565b601d54604080518881526020810184905280820192909252517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15b6006546040516001600160a01b03909116904790600081818185875af1925050503d80600081146126c2576040519150601f19603f3d011682016040523d82523d6000602084013e6126c7565b606091505b50505050505050505050505050565b42600e556040516370a0823160e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000166004820152600090819030906370a0823190602401602060405180830381865afa158015612743573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906127679190612df9565b905060006127866127106117a2600b548561232890919063ffffffff16565b905080156127bb576127bb7f000000000000000000000000000000000000000000000000000000000000000061dead83612347565b60007f00000000000000000000000000000000000000000000000000000000000000009050806001600160a01b031663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b15801561281b57600080fd5b505af115801561282f573d6000803e3d6000fd5b50506040517f454c91ae84fcc766ddda0dcb289f26b3d0176efeacf4061fc219fa6ca8c3048d925060009150a16001935050505090565b60006123348284612e9a565b60408051600280825260608201835260009260208301908036833701905050905030816000815181106128a7576128a7612eb1565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612925573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906129499190612ec7565b8160018151811061295c5761295c612eb1565b60200260200101906001600160a01b031690816001600160a01b0316815250506129a7307f000000000000000000000000000000000000000000000000000000000000000084611889565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063791ac947906129fc908590600090869030904290600401612ee4565b600060405180830381600087803b158015612a1657600080fd5b505af1158015612a2a573d6000803e3d6000fd5b505050505050565b612a5d307f000000000000000000000000000000000000000000000000000000000000000084611889565b60405163f305d71960e01b815230600482015260248101839052600060448201819052606482015261dead60848201524260a48201527f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03169063f305d71990839060c40160606040518083038185885af1158015612ae7573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190612b0c9190612f55565b5050505050565b600060208083528351808285015260005b81811015612b4057858101830151858201604001528201612b24565b81811115612b52576000604083870101525b50601f01601f1916929092016040019392505050565b6001600160a01b038116811461160c57600080fd5b60008060408385031215612b9057600080fd5b8235612b9b81612b68565b946020939093013593505050565b600060208284031215612bbb57600080fd5b813561233481612b68565b600060208284031215612bd857600080fd5b5035919050565b600080600060608486031215612bf457600080fd5b8335612bff81612b68565b92506020840135612c0f81612b68565b929592945050506040919091013590565b8035801515811461153257600080fd5b600080600060608486031215612c4557600080fd5b8335925060208401359150612c5c60408501612c20565b90509250925092565b60008060408385031215612c7857600080fd5b8235612c8381612b68565b9150612c9160208401612c20565b90509250929050565b600080600060608486031215612caf57600080fd5b505081359360208301359350604090920135919050565b600060208284031215612cd857600080fd5b61233482612c20565b60008060408385031215612cf457600080fd5b8235612cff81612b68565b91506020830135612d0f81612b68565b809150509250929050565b600181811c90821680612d2e57607f821691505b60208210811415612d4f57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b6000816000190483118215151615612dba57612dba612d8a565b500290565b600082612ddc57634e487b7160e01b600052601260045260246000fd5b500490565b60008219821115612df457612df4612d8a565b500190565b600060208284031215612e0b57600080fd5b5051919050565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b600082821015612eac57612eac612d8a565b500390565b634e487b7160e01b600052603260045260246000fd5b600060208284031215612ed957600080fd5b815161233481612b68565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015612f345784516001600160a01b031683529383019391830191600101612f0f565b50506001600160a01b03969096166060850152505050608001529392505050565b600080600060608486031215612f6a57600080fd5b835192506020840151915060408401519050925092509256fea26469706673582212207d451c2230cd6033b82b559e21fc9a0a14beb624925c4d18f4476b3e0b840d7e64736f6c634300080a00334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572

Deployed Bytecode

0x6080604052600436106103395760003560e01c80638a8c523c116101ab578063bbc0c742116100f7578063d85ba06311610095578063e884f2601161006f578063e884f2601461098e578063f2fde38b146109a3578063f8b45b05146109c3578063fe72b27a146109d957600080fd5b8063d85ba0631461091c578063dd62ed3e14610932578063e2f456051461097857600080fd5b8063c18bc195116100d1578063c18bc195146108ac578063c876d0b9146108cc578063c8c8ebe4146108e6578063d257b34f146108fc57600080fd5b8063bbc0c7421461084d578063c02466681461086c578063c17b5b8c1461088c57600080fd5b80639ec22c0e11610164578063a4c82a001161013e578063a4c82a00146107c7578063a9059cbb146107dd578063aacebbe3146107fd578063b62496f51461081d57600080fd5b80639ec22c0e1461077b5780639fccce3214610791578063a457c2d7146107a757600080fd5b80638a8c523c146106d35780638da5cb5b146106e8578063924de9b71461070657806395d89b41146107265780639a7a23d61461073b5780639aa7e5c01461075b57600080fd5b80632e82f1a0116102855780636ddd171311610223578063730c1888116101fd578063730c18881461065e578063751039fc1461067e5780637571336a146106935780638095d564146106b357600080fd5b80636ddd1713146105f357806370a0823114610613578063715018a61461064957600080fd5b806349bd5a5e1161025f57806349bd5a5e146105565780634a62bb651461058a5780634fbee193146105a45780636a486a8e146105dd57600080fd5b80632e82f1a014610500578063313ce5671461051a578063395093511461053657600080fd5b8063199ffc72116102f2578063203e727e116102cc578063203e727e1461049257806323b872dd146104b457806327c8f835146104d45780632c3e486c146104ea57600080fd5b8063199ffc72146104505780631a8145bb146104665780631f3fed8f1461047c57600080fd5b806306fdde0314610345578063095ea7b31461037057806310d5de53146103a05780631694505e146103cf57806318160ddd1461041b578063184c16c51461043a57600080fd5b3661034057005b600080fd5b34801561035157600080fd5b5061035a6109f9565b6040516103679190612b13565b60405180910390f35b34801561037c57600080fd5b5061039061038b366004612b7d565b610a8b565b6040519015158152602001610367565b3480156103ac57600080fd5b506103906103bb366004612ba9565b602080526000908152604090205460ff1681565b3480156103db57600080fd5b506104037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b039091168152602001610367565b34801561042757600080fd5b506002545b604051908152602001610367565b34801561044657600080fd5b5061042c600f5481565b34801561045c57600080fd5b5061042c600b5481565b34801561047257600080fd5b5061042c601d5481565b34801561048857600080fd5b5061042c601c5481565b34801561049e57600080fd5b506104b26104ad366004612bc6565b610aa1565b005b3480156104c057600080fd5b506103906104cf366004612bdf565b610b87565b3480156104e057600080fd5b5061040361dead81565b3480156104f657600080fd5b5061042c600d5481565b34801561050c57600080fd5b50600c546103909060ff1681565b34801561052657600080fd5b5060405160128152602001610367565b34801561054257600080fd5b50610390610551366004612b7d565b610c31565b34801561056257600080fd5b506104037f000000000000000000000000a1cefc1feb8f4492cb2a6fd5ab6088cfebdc650781565b34801561059657600080fd5b506011546103909060ff1681565b3480156105b057600080fd5b506103906105bf366004612ba9565b6001600160a01b03166000908152601f602052604090205460ff1690565b3480156105e957600080fd5b5061042c60185481565b3480156105ff57600080fd5b506011546103909062010000900460ff1681565b34801561061f57600080fd5b5061042c61062e366004612ba9565b6001600160a01b031660009081526020819052604090205490565b34801561065557600080fd5b506104b2610c6d565b34801561066a57600080fd5b506104b2610679366004612c30565b610ca3565b34801561068a57600080fd5b50610390610dcc565b34801561069f57600080fd5b506104b26106ae366004612c65565b610e09565b3480156106bf57600080fd5b506104b26106ce366004612c9a565b610e5d565b3480156106df57600080fd5b506104b2610edf565b3480156106f457600080fd5b506005546001600160a01b0316610403565b34801561071257600080fd5b506104b2610721366004612cc6565b610f20565b34801561073257600080fd5b5061035a610f66565b34801561074757600080fd5b506104b2610756366004612c65565b610f75565b34801561076757600080fd5b506104b2610776366004612ba9565b611055565b34801561078757600080fd5b5061042c60105481565b34801561079d57600080fd5b5061042c601e5481565b3480156107b357600080fd5b506103906107c2366004612b7d565b6110dc565b3480156107d357600080fd5b5061042c600e5481565b3480156107e957600080fd5b506103906107f8366004612b7d565b611175565b34801561080957600080fd5b506104b2610818366004612ba9565b611182565b34801561082957600080fd5b50610390610838366004612ba9565b60216020526000908152604090205460ff1681565b34801561085957600080fd5b5060115461039090610100900460ff1681565b34801561087857600080fd5b506104b2610887366004612c65565b611209565b34801561089857600080fd5b506104b26108a7366004612c9a565b611292565b3480156108b857600080fd5b506104b26108c7366004612bc6565b61130f565b3480156108d857600080fd5b506013546103909060ff1681565b3480156108f257600080fd5b5061042c60085481565b34801561090857600080fd5b50610390610917366004612bc6565b6113e0565b34801561092857600080fd5b5061042c60145481565b34801561093e57600080fd5b5061042c61094d366004612ce1565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b34801561098457600080fd5b5061042c60095481565b34801561099a57600080fd5b50610390611537565b3480156109af57600080fd5b506104b26109be366004612ba9565b611574565b3480156109cf57600080fd5b5061042c600a5481565b3480156109e557600080fd5b506103906109f4366004612bc6565b61160f565b606060038054610a0890612d1a565b80601f0160208091040260200160405190810160405280929190818152602001828054610a3490612d1a565b8015610a815780601f10610a5657610100808354040283529160200191610a81565b820191906000526020600020905b815481529060010190602001808311610a6457829003601f168201915b5050505050905090565b6000610a98338484611889565b50600192915050565b6005546001600160a01b03163314610ad45760405162461bcd60e51b8152600401610acb90612d55565b60405180910390fd5b670de0b6b3a76400006103e8610ae960025490565b610af4906001612da0565b610afe9190612dbf565b610b089190612dbf565b811015610b6f5760405162461bcd60e51b815260206004820152602f60248201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060448201526e6c6f776572207468616e20302e312560881b6064820152608401610acb565b610b8181670de0b6b3a7640000612da0565b60085550565b6000610b948484846119ad565b6001600160a01b038416600090815260016020908152604080832033845290915290205482811015610c195760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b6064820152608401610acb565b610c268533858403611889565b506001949350505050565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091610a98918590610c68908690612de1565b611889565b6005546001600160a01b03163314610c975760405162461bcd60e51b8152600401610acb90612d55565b610ca16000612282565b565b6005546001600160a01b03163314610ccd5760405162461bcd60e51b8152600401610acb90612d55565b610258831015610d3b5760405162461bcd60e51b815260206004820152603360248201527f63616e6e6f7420736574206275796261636b206d6f7265206f6674656e207468604482015272616e206576657279203130206d696e7574657360681b6064820152608401610acb565b6103e88211158015610d4b575060015b610db05760405162461bcd60e51b815260206004820152603060248201527f4d75737420736574206175746f204c50206275726e2070657263656e7420626560448201526f747765656e20302520616e642031302560801b6064820152608401610acb565b600d92909255600b55600c805460ff1916911515919091179055565b6005546000906001600160a01b03163314610df95760405162461bcd60e51b8152600401610acb90612d55565b506011805460ff19169055600190565b6005546001600160a01b03163314610e335760405162461bcd60e51b8152600401610acb90612d55565b6001600160a01b039190911660009081526020805260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610e875760405162461bcd60e51b8152600401610acb90612d55565b60158390556016829055601781905580610ea18385612de1565b610eab9190612de1565b601481905560641015610eda5760405162461bcd60e51b81526020600482015260006024820152604401610acb565b505050565b6005546001600160a01b03163314610f095760405162461bcd60e51b8152600401610acb90612d55565b6011805462ffff0019166201010017905542600e55565b6005546001600160a01b03163314610f4a5760405162461bcd60e51b8152600401610acb90612d55565b60118054911515620100000262ff000019909216919091179055565b606060048054610a0890612d1a565b6005546001600160a01b03163314610f9f5760405162461bcd60e51b8152600401610acb90612d55565b7f000000000000000000000000a1cefc1feb8f4492cb2a6fd5ab6088cfebdc65076001600160a01b0316826001600160a01b031614156110475760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b65725061697273000000000000006064820152608401610acb565b61105182826122d4565b5050565b6005546001600160a01b0316331461107f5760405162461bcd60e51b8152600401610acb90612d55565b6007546040516001600160a01b03918216918316907fc6c18867f2ccb938f9b4e1fe4ce1b5c6dd981a68b5d681e24c0bf548bcf40ad390600090a3600780546001600160a01b0319166001600160a01b0392909216919091179055565b3360009081526001602090815260408083206001600160a01b03861684529091528120548281101561115e5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610acb565b61116b3385858403611889565b5060019392505050565b6000610a983384846119ad565b6005546001600160a01b031633146111ac5760405162461bcd60e51b8152600401610acb90612d55565b6006546040516001600160a01b03918216918316907fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567490600090a3600680546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b031633146112335760405162461bcd60e51b8152600401610acb90612d55565b6001600160a01b0382166000818152601f6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b031633146112bc5760405162461bcd60e51b8152600401610acb90612d55565b6019839055601a829055601b819055806112d68385612de1565b6112e09190612de1565b601881905560641015610eda5760405162461bcd60e51b81526020600482015260006024820152604401610acb565b6005546001600160a01b031633146113395760405162461bcd60e51b8152600401610acb90612d55565b670de0b6b3a76400006103e861134e60025490565b611359906005612da0565b6113639190612dbf565b61136d9190612dbf565b8110156113c85760405162461bcd60e51b8152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015263302e352560e01b6064820152608401610acb565b6113da81670de0b6b3a7640000612da0565b600a5550565b6005546000906001600160a01b0316331461140d5760405162461bcd60e51b8152600401610acb90612d55565b620186a061141a60025490565b611425906001612da0565b61142f9190612dbf565b82101561149c5760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b6064820152608401610acb565b6103e86114a860025490565b6114b3906005612da0565b6114bd9190612dbf565b8211156115295760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171a92903a37ba30b61039bab838363c9760611b6064820152608401610acb565b50600981905560015b919050565b6005546000906001600160a01b031633146115645760405162461bcd60e51b8152600401610acb90612d55565b506013805460ff19169055600190565b6005546001600160a01b0316331461159e5760405162461bcd60e51b8152600401610acb90612d55565b6001600160a01b0381166116035760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610acb565b61160c81612282565b50565b6005546000906001600160a01b0316331461163c5760405162461bcd60e51b8152600401610acb90612d55565b600f5460105461164c9190612de1565b421161169a5760405162461bcd60e51b815260206004820181905260248201527f4d757374207761697420666f7220636f6f6c646f776e20746f2066696e6973686044820152606401610acb565b6103e88211156116ff5760405162461bcd60e51b815260206004820152602a60248201527f4d6179206e6f74206e756b65206d6f7265207468616e20313025206f6620746f60448201526906b656e7320696e204c560b41b6064820152608401610acb565b426010556040516370a0823160e01b81526001600160a01b037f000000000000000000000000a1cefc1feb8f4492cb2a6fd5ab6088cfebdc650716600482015260009030906370a0823190602401602060405180830381865afa15801561176a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061178e9190612df9565b905060006117a86127106117a28487612328565b9061233b565b905080156117dd576117dd7f000000000000000000000000a1cefc1feb8f4492cb2a6fd5ab6088cfebdc650761dead83612347565b60007f000000000000000000000000a1cefc1feb8f4492cb2a6fd5ab6088cfebdc65079050806001600160a01b031663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b15801561183d57600080fd5b505af1158015611851573d6000803e3d6000fd5b50506040517f8462566617872a3fbab94534675218431ff9e204063ee3f4f43d965626a39abb925060009150a1506001949350505050565b6001600160a01b0383166118eb5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610acb565b6001600160a01b03821661194c5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610acb565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166119d35760405162461bcd60e51b8152600401610acb90612e12565b6001600160a01b0382166119f95760405162461bcd60e51b8152600401610acb90612e57565b80611a0a57610eda83836000612347565b60115460ff1615611ec4576005546001600160a01b03848116911614801590611a4157506005546001600160a01b03838116911614155b8015611a5557506001600160a01b03821615155b8015611a6c57506001600160a01b03821661dead14155b8015611a825750600554600160a01b900460ff16155b15611ec457601154610100900460ff16611b1a576001600160a01b0383166000908152601f602052604090205460ff1680611ad557506001600160a01b0382166000908152601f602052604090205460ff165b611b1a5760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b6044820152606401610acb565b60135460ff1615611c61576005546001600160a01b03838116911614801590611b7557507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b0316826001600160a01b031614155b8015611bb357507f000000000000000000000000a1cefc1feb8f4492cb2a6fd5ab6088cfebdc65076001600160a01b0316826001600160a01b031614155b15611c6157326000908152601260205260409020544311611c4e5760405162461bcd60e51b815260206004820152604960248201527f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60448201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b6064820152681030b63637bbb2b21760b91b608482015260a401610acb565b3260009081526012602052604090204390555b6001600160a01b03831660009081526021602052604090205460ff168015611ca157506001600160a01b038216600090815260208052604090205460ff16155b15611d8557600854811115611d165760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b6064820152608401610acb565b600a546001600160a01b038316600090815260208190526040902054611d3c9083612de1565b1115611d805760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610acb565b611ec4565b6001600160a01b03821660009081526021602052604090205460ff168015611dc557506001600160a01b038316600090815260208052604090205460ff16155b15611e3b57600854811115611d805760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152751036b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760511b6064820152608401610acb565b6001600160a01b038216600090815260208052604090205460ff16611ec457600a546001600160a01b038316600090815260208190526040902054611e809083612de1565b1115611ec45760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610acb565b3060009081526020819052604090205460095481108015908190611ef0575060115462010000900460ff165b8015611f065750600554600160a01b900460ff16155b8015611f2b57506001600160a01b03851660009081526021602052604090205460ff16155b8015611f5057506001600160a01b0385166000908152601f602052604090205460ff16155b8015611f7557506001600160a01b0384166000908152601f602052604090205460ff16155b15611fa3576005805460ff60a01b1916600160a01b179055611f9561249c565b6005805460ff60a01b191690555b600554600160a01b900460ff16158015611fd557506001600160a01b03841660009081526021602052604090205460ff165b8015611fe35750600c5460ff165b8015611ffe5750600d54600e54611ffa9190612de1565b4210155b801561202357506001600160a01b0385166000908152601f602052604090205460ff16155b15612032576120306126d6565b505b6005546001600160a01b0386166000908152601f602052604090205460ff600160a01b90920482161591168061208057506001600160a01b0385166000908152601f602052604090205460ff165b15612089575060005b6000811561226e576001600160a01b03861660009081526021602052604090205460ff1680156120bb57506000601854115b15612173576120da60646117a26018548861232890919063ffffffff16565b9050601854601a54826120ed9190612da0565b6120f79190612dbf565b601d60008282546121089190612de1565b9091555050601854601b5461211d9083612da0565b6121279190612dbf565b601e60008282546121389190612de1565b909155505060185460195461214d9083612da0565b6121579190612dbf565b601c60008282546121689190612de1565b909155506122509050565b6001600160a01b03871660009081526021602052604090205460ff16801561219d57506000601454115b15612250576121bc60646117a26014548861232890919063ffffffff16565b9050601454601654826121cf9190612da0565b6121d99190612dbf565b601d60008282546121ea9190612de1565b90915550506014546017546121ff9083612da0565b6122099190612dbf565b601e600082825461221a9190612de1565b909155505060145460155461222f9083612da0565b6122399190612dbf565b601c600082825461224a9190612de1565b90915550505b801561226157612261873083612347565b61226b8186612e9a565b94505b612279878787612347565b50505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216600081815260216020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b60006123348284612da0565b9392505050565b60006123348284612dbf565b6001600160a01b03831661236d5760405162461bcd60e51b8152600401610acb90612e12565b6001600160a01b0382166123935760405162461bcd60e51b8152600401610acb90612e57565b6001600160a01b0383166000908152602081905260409020548181101561240b5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610acb565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290612442908490612de1565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161248e91815260200190565b60405180910390a350505050565b3060009081526020819052604081205490506000601e54601c54601d546124c39190612de1565b6124cd9190612de1565b905060008215806124dc575081155b156124e657505050565b6009546124f4906014612da0565b83111561250c57600954612509906014612da0565b92505b6000600283601d548661251f9190612da0565b6125299190612dbf565b6125339190612dbf565b905060006125418583612866565b90504761254d82612872565b60006125594783612866565b90506000612576876117a2601c548561232890919063ffffffff16565b90506000612593886117a2601e548661232890919063ffffffff16565b90506000816125a28486612e9a565b6125ac9190612e9a565b6000601d819055601c819055601e8190556007546040519293506001600160a01b031691849181818185875af1925050503d8060008114612609576040519150601f19603f3d011682016040523d82523d6000602084013e61260e565b606091505b509098505086158015906126225750600081115b15612675576126318782612a32565b601d54604080518881526020810184905280820192909252517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15b6006546040516001600160a01b03909116904790600081818185875af1925050503d80600081146126c2576040519150601f19603f3d011682016040523d82523d6000602084013e6126c7565b606091505b50505050505050505050505050565b42600e556040516370a0823160e01b81526001600160a01b037f000000000000000000000000a1cefc1feb8f4492cb2a6fd5ab6088cfebdc6507166004820152600090819030906370a0823190602401602060405180830381865afa158015612743573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906127679190612df9565b905060006127866127106117a2600b548561232890919063ffffffff16565b905080156127bb576127bb7f000000000000000000000000a1cefc1feb8f4492cb2a6fd5ab6088cfebdc650761dead83612347565b60007f000000000000000000000000a1cefc1feb8f4492cb2a6fd5ab6088cfebdc65079050806001600160a01b031663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b15801561281b57600080fd5b505af115801561282f573d6000803e3d6000fd5b50506040517f454c91ae84fcc766ddda0dcb289f26b3d0176efeacf4061fc219fa6ca8c3048d925060009150a16001935050505090565b60006123348284612e9a565b60408051600280825260608201835260009260208301908036833701905050905030816000815181106128a7576128a7612eb1565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612925573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906129499190612ec7565b8160018151811061295c5761295c612eb1565b60200260200101906001600160a01b031690816001600160a01b0316815250506129a7307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611889565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac947906129fc908590600090869030904290600401612ee4565b600060405180830381600087803b158015612a1657600080fd5b505af1158015612a2a573d6000803e3d6000fd5b505050505050565b612a5d307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611889565b60405163f305d71960e01b815230600482015260248101839052600060448201819052606482015261dead60848201524260a48201527f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b03169063f305d71990839060c40160606040518083038185885af1158015612ae7573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190612b0c9190612f55565b5050505050565b600060208083528351808285015260005b81811015612b4057858101830151858201604001528201612b24565b81811115612b52576000604083870101525b50601f01601f1916929092016040019392505050565b6001600160a01b038116811461160c57600080fd5b60008060408385031215612b9057600080fd5b8235612b9b81612b68565b946020939093013593505050565b600060208284031215612bbb57600080fd5b813561233481612b68565b600060208284031215612bd857600080fd5b5035919050565b600080600060608486031215612bf457600080fd5b8335612bff81612b68565b92506020840135612c0f81612b68565b929592945050506040919091013590565b8035801515811461153257600080fd5b600080600060608486031215612c4557600080fd5b8335925060208401359150612c5c60408501612c20565b90509250925092565b60008060408385031215612c7857600080fd5b8235612c8381612b68565b9150612c9160208401612c20565b90509250929050565b600080600060608486031215612caf57600080fd5b505081359360208301359350604090920135919050565b600060208284031215612cd857600080fd5b61233482612c20565b60008060408385031215612cf457600080fd5b8235612cff81612b68565b91506020830135612d0f81612b68565b809150509250929050565b600181811c90821680612d2e57607f821691505b60208210811415612d4f57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b6000816000190483118215151615612dba57612dba612d8a565b500290565b600082612ddc57634e487b7160e01b600052601260045260246000fd5b500490565b60008219821115612df457612df4612d8a565b500190565b600060208284031215612e0b57600080fd5b5051919050565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b600082821015612eac57612eac612d8a565b500390565b634e487b7160e01b600052603260045260246000fd5b600060208284031215612ed957600080fd5b815161233481612b68565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015612f345784516001600160a01b031683529383019391830191600101612f0f565b50506001600160a01b03969096166060850152505050608001529392505050565b600080600060608486031215612f6a57600080fd5b835192506020840151915060408401519050925092509256fea26469706673582212207d451c2230cd6033b82b559e21fc9a0a14beb624925c4d18f4476b3e0b840d7e64736f6c634300080a0033

Deployed Bytecode Sourcemap

32257:19231:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9085:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11252:169;;;;;;;;;;-1:-1:-1;11252:169:0;;;;;:::i;:::-;;:::i;:::-;;;1237:14:1;;1230:22;1212:41;;1200:2;1185:18;11252:169:0;1072:187:1;33884:63:0;;;;;;;;;;-1:-1:-1;33884:63:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;32332:51;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;1707:32:1;;;1689:51;;1677:2;1662:18;32332:51:0;1516:230:1;10205:108:0;;;;;;;;;;-1:-1:-1;10293:12:0;;10205:108;;;1897:25:1;;;1885:2;1870:18;10205:108:0;1751:177:1;32893:46:0;;;;;;;;;;;;;;;;32714:35;;;;;;;;;;;;;;;;33668:33;;;;;;;;;;;;;;;;33628;;;;;;;;;;;;;;;;38186:275;;;;;;;;;;-1:-1:-1;38186:275:0;;;;;:::i;:::-;;:::i;:::-;;11903:492;;;;;;;;;;-1:-1:-1;11903:492:0;;;;;:::i;:::-;;:::i;32435:53::-;;;;;;;;;;;;32481:6;32435:53;;32806:42;;;;;;;;;;;;;;;;32766:33;;;;;;;;;;-1:-1:-1;32766:33:0;;;;;;;;10047:93;;;;;;;;;;-1:-1:-1;10047:93:0;;10130:2;2929:36:1;;2917:2;2902:18;10047:93:0;2787:184:1;12804:215:0;;;;;;;;;;-1:-1:-1;12804:215:0;;;;;:::i;:::-;;:::i;32390:38::-;;;;;;;;;;;;;;;32990:33;;;;;;;;;;-1:-1:-1;32990:33:0;;;;;;;;40981:126;;;;;;;;;;-1:-1:-1;40981:126:0;;;;;:::i;:::-;-1:-1:-1;;;;;41071:28:0;41047:4;41071:28;;;:19;:28;;;;;;;;;40981:126;33480:28;;;;;;;;;;;;;;;;33070:31;;;;;;;;;;-1:-1:-1;33070:31:0;;;;;;;;;;;10376:127;;;;;;;;;;-1:-1:-1;10376:127:0;;;;;:::i;:::-;-1:-1:-1;;;;;10477:18:0;10450:7;10477:18;;;;;;;;;;;;10376:127;2320:103;;;;;;;;;;;;;:::i;49070:555::-;;;;;;;;;;-1:-1:-1;49070:555:0;;;;;:::i;:::-;;:::i;37294:121::-;;;;;;;;;;;;;:::i;38733:167::-;;;;;;;;;;-1:-1:-1;38733:167:0;;;;;:::i;:::-;;:::i;39104:375::-;;;;;;;;;;-1:-1:-1;39104:375:0;;;;;:::i;:::-;;:::i;37087:155::-;;;;;;;;;;;;;:::i;1669:87::-;;;;;;;;;;-1:-1:-1;1742:6:0;;-1:-1:-1;;;;;1742:6:0;1669:87;;38996:100;;;;;;;;;;-1:-1:-1;38996:100:0;;;;;:::i;:::-;;:::i;9304:104::-;;;;;;;;;;;;;:::i;40069:304::-;;;;;;;;;;-1:-1:-1;40069:304:0;;;;;:::i;:::-;;:::i;40816:157::-;;;;;;;;;;-1:-1:-1;40816:157:0;;;;;:::i;:::-;;:::i;32946:35::-;;;;;;;;;;;;;;;;33708:27;;;;;;;;;;;;;;;;13522:413;;;;;;;;;;-1:-1:-1;13522:413:0;;;;;:::i;:::-;;:::i;32855:29::-;;;;;;;;;;;;;;;;10716:175;;;;;;;;;;-1:-1:-1;10716:175:0;;;;;:::i;:::-;;:::i;40577:231::-;;;;;;;;;;-1:-1:-1;40577:231:0;;;;;:::i;:::-;;:::i;34105:57::-;;;;;;;;;;-1:-1:-1;34105:57:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;33030:33;;;;;;;;;;-1:-1:-1;33030:33:0;;;;;;;;;;;39879:182;;;;;;;;;;-1:-1:-1;39879:182:0;;;;;:::i;:::-;;:::i;39487:384::-;;;;;;;;;;-1:-1:-1;39487:384:0;;;;;:::i;:::-;;:::i;38469:256::-;;;;;;;;;;-1:-1:-1;38469:256:0;;;;;:::i;:::-;;:::i;33288:39::-;;;;;;;;;;-1:-1:-1;33288:39:0;;;;;;;;32599:35;;;;;;;;;;;;;;;;37681:497;;;;;;;;;;-1:-1:-1;37681:497:0;;;;;:::i;:::-;;:::i;33336:27::-;;;;;;;;;;;;;;;;10954:151;;;;;;;;;;-1:-1:-1;10954:151:0;;;;;:::i;:::-;-1:-1:-1;;;;;11070:18:0;;;11043:7;11070:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;10954:151;32641:33;;;;;;;;;;;;;;;;37476:135;;;;;;;;;;;;;:::i;2578:201::-;;;;;;;;;;-1:-1:-1;2578:201:0;;;;;:::i;:::-;;:::i;32681:24::-;;;;;;;;;;;;;;;;50429:1056;;;;;;;;;;-1:-1:-1;50429:1056:0;;;;;:::i;:::-;;:::i;9085:100::-;9139:13;9172:5;9165:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9085:100;:::o;11252:169::-;11335:4;11352:39;422:10;11375:7;11384:6;11352:8;:39::i;:::-;-1:-1:-1;11409:4:0;11252:169;;;;:::o;38186:275::-;1742:6;;-1:-1:-1;;;;;1742:6:0;422:10;1889:23;1881:68;;;;-1:-1:-1;;;1881:68:0;;;;;;;:::i;:::-;;;;;;;;;38323:4:::1;38315;38294:13;10293:12:::0;;;10205:108;38294:13:::1;:17;::::0;38310:1:::1;38294:17;:::i;:::-;38293:26;;;;:::i;:::-;38292:35;;;;:::i;:::-;38282:6;:45;;38260:142;;;::::0;-1:-1:-1;;;38260:142:0;;6156:2:1;38260:142:0::1;::::0;::::1;6138:21:1::0;6195:2;6175:18;;;6168:30;6234:34;6214:18;;;6207:62;-1:-1:-1;;;6285:18:1;;;6278:45;6340:19;;38260:142:0::1;5954:411:1::0;38260:142:0::1;38436:17;:6:::0;38446::::1;38436:17;:::i;:::-;38413:20;:40:::0;-1:-1:-1;38186:275:0:o;11903:492::-;12043:4;12060:36;12070:6;12078:9;12089:6;12060:9;:36::i;:::-;-1:-1:-1;;;;;12136:19:0;;12109:24;12136:19;;;:11;:19;;;;;;;;422:10;12136:33;;;;;;;;12188:26;;;;12180:79;;;;-1:-1:-1;;;12180:79:0;;6572:2:1;12180:79:0;;;6554:21:1;6611:2;6591:18;;;6584:30;6650:34;6630:18;;;6623:62;-1:-1:-1;;;6701:18:1;;;6694:38;6749:19;;12180:79:0;6370:404:1;12180:79:0;12295:57;12304:6;422:10;12345:6;12326:16;:25;12295:8;:57::i;:::-;-1:-1:-1;12383:4:0;;11903:492;-1:-1:-1;;;;11903:492:0:o;12804:215::-;422:10;12892:4;12941:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;12941:34:0;;;;;;;;;;12892:4;;12909:80;;12932:7;;12941:47;;12978:10;;12941:47;:::i;:::-;12909:8;:80::i;2320:103::-;1742:6;;-1:-1:-1;;;;;1742:6:0;422:10;1889:23;1881:68;;;;-1:-1:-1;;;1881:68:0;;;;;;;:::i;:::-;2385:30:::1;2412:1;2385:18;:30::i;:::-;2320:103::o:0;49070:555::-;1742:6;;-1:-1:-1;;;;;1742:6:0;422:10;1889:23;1881:68;;;;-1:-1:-1;;;1881:68:0;;;;;;;:::i;:::-;49272:3:::1;49249:19;:26;;49227:127;;;::::0;-1:-1:-1;;;49227:127:0;;7114:2:1;49227:127:0::1;::::0;::::1;7096:21:1::0;7153:2;7133:18;;;7126:30;7192:34;7172:18;;;7165:62;-1:-1:-1;;;7243:18:1;;;7236:49;7302:19;;49227:127:0::1;6912:415:1::0;49227:127:0::1;49399:4;49387:8;:16;;:33;;;;-1:-1:-1::0;49407:13:0;49387:33:::1;49365:131;;;::::0;-1:-1:-1;;;49365:131:0;;7534:2:1;49365:131:0::1;::::0;::::1;7516:21:1::0;7573:2;7553:18;;;7546:30;7612:34;7592:18;;;7585:62;-1:-1:-1;;;7663:18:1;;;7656:46;7719:19;;49365:131:0::1;7332:412:1::0;49365:131:0::1;49507:15;:37:::0;;;;49555:16:::1;:27:::0;49593:13:::1;:24:::0;;-1:-1:-1;;49593:24:0::1;::::0;::::1;;::::0;;;::::1;::::0;;49070:555::o;37294:121::-;1742:6;;37346:4;;-1:-1:-1;;;;;1742:6:0;422:10;1889:23;1881:68;;;;-1:-1:-1;;;1881:68:0;;;;;;;:::i;:::-;-1:-1:-1;37363:14:0::1;:22:::0;;-1:-1:-1;;37363:22:0::1;::::0;;;37294:121;:::o;38733:167::-;1742:6;;-1:-1:-1;;;;;1742:6:0;422:10;1889:23;1881:68;;;;-1:-1:-1;;;1881:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;38846:39:0;;;::::1;;::::0;;;:31:::1;:39:::0;;;;;:46;;-1:-1:-1;;38846:46:0::1;::::0;::::1;;::::0;;;::::1;::::0;;38733:167::o;39104:375::-;1742:6;;-1:-1:-1;;;;;1742:6:0;422:10;1889:23;1881:68;;;;-1:-1:-1;;;1881:68:0;;;;;;;:::i;:::-;39254:15:::1;:31:::0;;;39296:15:::1;:31:::0;;;39338:9:::1;:19:::0;;;39350:7;39383:33:::1;39314:13:::0;39272;39383:33:::1;:::i;:::-;:45;;;;:::i;:::-;39368:12;:60:::0;;;39463:3:::1;-1:-1:-1::0;39447:19:0::1;39439:32;;;::::0;-1:-1:-1;;;39439:32:0;;7951:2:1;39439:32:0::1;::::0;::::1;7933:21:1::0;-1:-1:-1;7970:18:1;;;7963:29;8009:18;;39439:32:0::1;7749:284:1::0;39439:32:0::1;39104:375:::0;;;:::o;37087:155::-;1742:6;;-1:-1:-1;;;;;1742:6:0;422:10;1889:23;1881:68;;;;-1:-1:-1;;;1881:68:0;;;;;;;:::i;:::-;37142:13:::1;:20:::0;;-1:-1:-1;;37173:18:0;;;;;37219:15:::1;37202:14;:32:::0;37087:155::o;38996:100::-;1742:6;;-1:-1:-1;;;;;1742:6:0;422:10;1889:23;1881:68;;;;-1:-1:-1;;;1881:68:0;;;;;;;:::i;:::-;39067:11:::1;:21:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;39067:21:0;;::::1;::::0;;;::::1;::::0;;38996:100::o;9304:104::-;9360:13;9393:7;9386:14;;;;;:::i;40069:304::-;1742:6;;-1:-1:-1;;;;;1742:6:0;422:10;1889:23;1881:68;;;;-1:-1:-1;;;1881:68:0;;;;;;;:::i;:::-;40213:13:::1;-1:-1:-1::0;;;;;40205:21:0::1;:4;-1:-1:-1::0;;;;;40205:21:0::1;;;40183:128;;;::::0;-1:-1:-1;;;40183:128:0;;8240:2:1;40183:128:0::1;::::0;::::1;8222:21:1::0;8279:2;8259:18;;;8252:30;8318:34;8298:18;;;8291:62;8389:27;8369:18;;;8362:55;8434:19;;40183:128:0::1;8038:421:1::0;40183:128:0::1;40324:41;40353:4;40359:5;40324:28;:41::i;:::-;40069:304:::0;;:::o;40816:157::-;1742:6;;-1:-1:-1;;;;;1742:6:0;422:10;1889:23;1881:68;;;;-1:-1:-1;;;1881:68:0;;;;;;;:::i;:::-;40923:9:::1;::::0;40895:38:::1;::::0;-1:-1:-1;;;;;40923:9:0;;::::1;::::0;40895:38;::::1;::::0;::::1;::::0;40923:9:::1;::::0;40895:38:::1;40944:9;:21:::0;;-1:-1:-1;;;;;;40944:21:0::1;-1:-1:-1::0;;;;;40944:21:0;;;::::1;::::0;;;::::1;::::0;;40816:157::o;13522:413::-;422:10;13615:4;13659:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;13659:34:0;;;;;;;;;;13712:35;;;;13704:85;;;;-1:-1:-1;;;13704:85:0;;8666:2:1;13704:85:0;;;8648:21:1;8705:2;8685:18;;;8678:30;8744:34;8724:18;;;8717:62;-1:-1:-1;;;8795:18:1;;;8788:35;8840:19;;13704:85:0;8464:401:1;13704:85:0;13825:67;422:10;13848:7;13876:15;13857:16;:34;13825:8;:67::i;:::-;-1:-1:-1;13923:4:0;;13522:413;-1:-1:-1;;;13522:413:0:o;10716:175::-;10802:4;10819:42;422:10;10843:9;10854:6;10819:9;:42::i;40577:231::-;1742:6;;-1:-1:-1;;;;;1742:6:0;422:10;1889:23;1881:68;;;;-1:-1:-1;;;1881:68:0;;;;;;;:::i;:::-;40737:15:::1;::::0;40694:59:::1;::::0;-1:-1:-1;;;;;40737:15:0;;::::1;::::0;40694:59;::::1;::::0;::::1;::::0;40737:15:::1;::::0;40694:59:::1;40764:15;:36:::0;;-1:-1:-1;;;;;;40764:36:0::1;-1:-1:-1::0;;;;;40764:36:0;;;::::1;::::0;;;::::1;::::0;;40577:231::o;39879:182::-;1742:6;;-1:-1:-1;;;;;1742:6:0;422:10;1889:23;1881:68;;;;-1:-1:-1;;;1881:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;39964:28:0;::::1;;::::0;;;:19:::1;:28;::::0;;;;;;;;:39;;-1:-1:-1;;39964:39:0::1;::::0;::::1;;::::0;;::::1;::::0;;;40019:34;;1212:41:1;;;40019:34:0::1;::::0;1185:18:1;40019:34:0::1;;;;;;;39879:182:::0;;:::o;39487:384::-;1742:6;;-1:-1:-1;;;;;1742:6:0;422:10;1889:23;1881:68;;;;-1:-1:-1;;;1881:68:0;;;;;;;:::i;:::-;39638:16:::1;:32:::0;;;39681:16:::1;:32:::0;;;39724:10:::1;:20:::0;;;39737:7;39771:35:::1;39700:13:::0;39657;39771:35:::1;:::i;:::-;:48;;;;:::i;:::-;39755:13;:64:::0;;;39855:3:::1;-1:-1:-1::0;39838:20:0::1;39830:33;;;::::0;-1:-1:-1;;;39830:33:0;;7951:2:1;39830:33:0::1;::::0;::::1;7933:21:1::0;-1:-1:-1;7970:18:1;;;7963:29;8009:18;;39830:33:0::1;7749:284:1::0;38469:256:0;1742:6;;-1:-1:-1;;;;;1742:6:0;422:10;1889:23;1881:68;;;;-1:-1:-1;;;1881:68:0;;;;;;;:::i;:::-;38609:4:::1;38601;38580:13;10293:12:::0;;;10205:108;38580:13:::1;:17;::::0;38596:1:::1;38580:17;:::i;:::-;38579:26;;;;:::i;:::-;38578:35;;;;:::i;:::-;38568:6;:45;;38546:131;;;::::0;-1:-1:-1;;;38546:131:0;;9072:2:1;38546:131:0::1;::::0;::::1;9054:21:1::0;9111:2;9091:18;;;9084:30;9150:34;9130:18;;;9123:62;-1:-1:-1;;;9201:18:1;;;9194:34;9245:19;;38546:131:0::1;8870:400:1::0;38546:131:0::1;38700:17;:6:::0;38710::::1;38700:17;:::i;:::-;38688:9;:29:::0;-1:-1:-1;38469:256:0:o;37681:497::-;1742:6;;37789:4;;-1:-1:-1;;;;;1742:6:0;422:10;1889:23;1881:68;;;;-1:-1:-1;;;1881:68:0;;;;;;;:::i;:::-;37868:6:::1;37847:13;10293:12:::0;;;10205:108;37847:13:::1;:17;::::0;37863:1:::1;37847:17;:::i;:::-;37846:28;;;;:::i;:::-;37833:9;:41;;37811:144;;;::::0;-1:-1:-1;;;37811:144:0;;9477:2:1;37811:144:0::1;::::0;::::1;9459:21:1::0;9516:2;9496:18;;;9489:30;9555:34;9535:18;;;9528:62;-1:-1:-1;;;9606:18:1;;;9599:51;9667:19;;37811:144:0::1;9275:417:1::0;37811:144:0::1;38023:4;38002:13;10293:12:::0;;;10205:108;38002:13:::1;:17;::::0;38018:1:::1;38002:17;:::i;:::-;38001:26;;;;:::i;:::-;37988:9;:39;;37966:141;;;::::0;-1:-1:-1;;;37966:141:0;;9899:2:1;37966:141:0::1;::::0;::::1;9881:21:1::0;9938:2;9918:18;;;9911:30;9977:34;9957:18;;;9950:62;-1:-1:-1;;;10028:18:1;;;10021:50;10088:19;;37966:141:0::1;9697:416:1::0;37966:141:0::1;-1:-1:-1::0;38118:18:0::1;:30:::0;;;38166:4:::1;1960:1;37681:497:::0;;;:::o;37476:135::-;1742:6;;37536:4;;-1:-1:-1;;;;;1742:6:0;422:10;1889:23;1881:68;;;;-1:-1:-1;;;1881:68:0;;;;;;;:::i;:::-;-1:-1:-1;37553:20:0::1;:28:::0;;-1:-1:-1;;37553:28:0::1;::::0;;;37476:135;:::o;2578:201::-;1742:6;;-1:-1:-1;;;;;1742:6:0;422:10;1889:23;1881:68;;;;-1:-1:-1;;;1881:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;2667:22:0;::::1;2659:73;;;::::0;-1:-1:-1;;;2659:73:0;;10320:2:1;2659:73:0::1;::::0;::::1;10302:21:1::0;10359:2;10339:18;;;10332:30;10398:34;10378:18;;;10371:62;-1:-1:-1;;;10449:18:1;;;10442:36;10495:19;;2659:73:0::1;10118:402:1::0;2659:73:0::1;2743:28;2762:8;2743:18;:28::i;:::-;2578:201:::0;:::o;50429:1056::-;1742:6;;50540:4;;-1:-1:-1;;;;;1742:6:0;422:10;1889:23;1881:68;;;;-1:-1:-1;;;1881:68:0;;;;;;;:::i;:::-;50625:19:::1;;50602:20;;:42;;;;:::i;:::-;50584:15;:60;50562:142;;;::::0;-1:-1:-1;;;50562:142:0;;10727:2:1;50562:142:0::1;::::0;::::1;10709:21:1::0;;;10746:18;;;10739:30;10805:34;10785:18;;;10778:62;10857:18;;50562:142:0::1;10525:356:1::0;50562:142:0::1;50734:4;50723:7;:15;;50715:70;;;::::0;-1:-1:-1;;;50715:70:0;;11088:2:1;50715:70:0::1;::::0;::::1;11070:21:1::0;11127:2;11107:18;;;11100:30;11166:34;11146:18;;;11139:62;-1:-1:-1;;;11217:18:1;;;11210:40;11267:19;;50715:70:0::1;10886:406:1::0;50715:70:0::1;50819:15;50796:20;:38:::0;50920:29:::1;::::0;-1:-1:-1;;;50920:29:0;;-1:-1:-1;;;;;50935:13:0::1;1707:32:1::0;50920:29:0::1;::::0;::::1;1689:51:1::0;50889:28:0::1;::::0;50920:4:::1;::::0;:14:::1;::::0;1662:18:1;;50920:29:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;50889:60:::0;-1:-1:-1;50999:20:0::1;51022:44;51060:5;51022:33;50889:60:::0;51047:7;51022:24:::1;:33::i;:::-;:37:::0;::::1;:44::i;:::-;50999:67:::0;-1:-1:-1;51171:16:0;;51167:110:::1;;51204:61;51220:13;51243:6;51252:12;51204:15;:61::i;:::-;51352:19;51389:13;51352:51;;51414:4;-1:-1:-1::0;;;;;51414:9:0::1;;:11;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;;51441:14:0::1;::::0;::::1;::::0;-1:-1:-1;51441:14:0;;-1:-1:-1;51441:14:0::1;-1:-1:-1::0;51473:4:0::1;::::0;50429:1056;-1:-1:-1;;;;50429:1056:0:o;17206:380::-;-1:-1:-1;;;;;17342:19:0;;17334:68;;;;-1:-1:-1;;;17334:68:0;;11688:2:1;17334:68:0;;;11670:21:1;11727:2;11707:18;;;11700:30;11766:34;11746:18;;;11739:62;-1:-1:-1;;;11817:18:1;;;11810:34;11861:19;;17334:68:0;11486:400:1;17334:68:0;-1:-1:-1;;;;;17421:21:0;;17413:68;;;;-1:-1:-1;;;17413:68:0;;12093:2:1;17413:68:0;;;12075:21:1;12132:2;12112:18;;;12105:30;12171:34;12151:18;;;12144:62;-1:-1:-1;;;12222:18:1;;;12215:32;12264:19;;17413:68:0;11891:398:1;17413:68:0;-1:-1:-1;;;;;17494:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;17546:32;;1897:25:1;;;17546:32:0;;1870:18:1;17546:32:0;;;;;;;17206:380;;;:::o;41165:5011::-;-1:-1:-1;;;;;41297:18:0;;41289:68;;;;-1:-1:-1;;;41289:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;41376:16:0;;41368:64;;;;-1:-1:-1;;;41368:64:0;;;;;;;:::i;:::-;41449:11;41445:93;;41477:28;41493:4;41499:2;41503:1;41477:15;:28::i;41445:93::-;41554:14;;;;41550:2487;;;1742:6;;-1:-1:-1;;;;;41607:15:0;;;1742:6;;41607:15;;;;:49;;-1:-1:-1;1742:6:0;;-1:-1:-1;;;;;41643:13:0;;;1742:6;;41643:13;;41607:49;:86;;;;-1:-1:-1;;;;;;41677:16:0;;;;41607:86;:128;;;;-1:-1:-1;;;;;;41714:21:0;;41728:6;41714:21;;41607:128;:158;;;;-1:-1:-1;41757:8:0;;-1:-1:-1;;;41757:8:0;;;;41756:9;41607:158;41585:2441;;;41805:13;;;;;;;41800:223;;-1:-1:-1;;;;;41877:25:0;;;;;;:19;:25;;;;;;;;;:52;;-1:-1:-1;;;;;;41906:23:0;;;;;;:19;:23;;;;;;;;41877:52;41843:160;;;;-1:-1:-1;;;41843:160:0;;13306:2:1;41843:160:0;;;13288:21:1;13345:2;13325:18;;;13318:30;-1:-1:-1;;;13364:18:1;;;13357:52;13426:18;;41843:160:0;13104:346:1;41843:160:0;42179:20;;;;42175:641;;;1742:6;;-1:-1:-1;;;;;42254:13:0;;;1742:6;;42254:13;;;;:72;;;42310:15;-1:-1:-1;;;;;42296:30:0;:2;-1:-1:-1;;;;;42296:30:0;;;42254:72;:129;;;;;42369:13;-1:-1:-1;;;;;42355:28:0;:2;-1:-1:-1;;;;;42355:28:0;;;42254:129;42224:573;;;42501:9;42472:39;;;;:28;:39;;;;;;42547:12;-1:-1:-1;42434:258:0;;;;-1:-1:-1;;;42434:258:0;;13657:2:1;42434:258:0;;;13639:21:1;13696:2;13676:18;;;13669:30;13735:34;13715:18;;;13708:62;13806:34;13786:18;;;13779:62;-1:-1:-1;;;13857:19:1;;;13850:40;13907:19;;42434:258:0;13455:477:1;42434:258:0;42748:9;42719:39;;;;:28;:39;;;;;42761:12;42719:54;;42224:573;-1:-1:-1;;;;;42890:31:0;;;;;;:25;:31;;;;;;;;:92;;;;-1:-1:-1;;;;;;42947:35:0;;;;;;:31;:35;;;;;;;;42946:36;42890:92;42864:1147;;;43069:20;;43059:6;:30;;43025:169;;;;-1:-1:-1;;;43025:169:0;;14139:2:1;43025:169:0;;;14121:21:1;14178:2;14158:18;;;14151:30;14217:34;14197:18;;;14190:62;-1:-1:-1;;;14268:18:1;;;14261:51;14329:19;;43025:169:0;13937:417:1;43025:169:0;43277:9;;-1:-1:-1;;;;;10477:18:0;;10450:7;10477:18;;;;;;;;;;;43251:22;;:6;:22;:::i;:::-;:35;;43217:140;;;;-1:-1:-1;;;43217:140:0;;14561:2:1;43217:140:0;;;14543:21:1;14600:2;14580:18;;;14573:30;-1:-1:-1;;;14619:18:1;;;14612:49;14678:18;;43217:140:0;14359:343:1;43217:140:0;42864:1147;;;-1:-1:-1;;;;;43455:29:0;;;;;;:25;:29;;;;;;;;:92;;;;-1:-1:-1;;;;;;43510:37:0;;;;;;:31;:37;;;;;;;;43509:38;43455:92;43429:582;;;43634:20;;43624:6;:30;;43590:170;;;;-1:-1:-1;;;43590:170:0;;14909:2:1;43590:170:0;;;14891:21:1;14948:2;14928:18;;;14921:30;14987:34;14967:18;;;14960:62;-1:-1:-1;;;15038:18:1;;;15031:52;15100:19;;43590:170:0;14707:418:1;43429:582:0;-1:-1:-1;;;;;43791:35:0;;;;;;:31;:35;;;;;;;;43786:225;;43911:9;;-1:-1:-1;;;;;10477:18:0;;10450:7;10477:18;;;;;;;;;;;43885:22;;:6;:22;:::i;:::-;:35;;43851:140;;;;-1:-1:-1;;;43851:140:0;;14561:2:1;43851:140:0;;;14543:21:1;14600:2;14580:18;;;14573:30;-1:-1:-1;;;14619:18:1;;;14612:49;14678:18;;43851:140:0;14359:343:1;43851:140:0;44098:4;44049:28;10477:18;;;;;;;;;;;44156;;44132:42;;;;;;;44205:35;;-1:-1:-1;44229:11:0;;;;;;;44205:35;:61;;;;-1:-1:-1;44258:8:0;;-1:-1:-1;;;44258:8:0;;;;44257:9;44205:61;:110;;;;-1:-1:-1;;;;;;44284:31:0;;;;;;:25;:31;;;;;;;;44283:32;44205:110;:153;;;;-1:-1:-1;;;;;;44333:25:0;;;;;;:19;:25;;;;;;;;44332:26;44205:153;:194;;;;-1:-1:-1;;;;;;44376:23:0;;;;;;:19;:23;;;;;;;;44375:24;44205:194;44187:326;;;44426:8;:15;;-1:-1:-1;;;;44426:15:0;-1:-1:-1;;;44426:15:0;;;44458:10;:8;:10::i;:::-;44485:8;:16;;-1:-1:-1;;;;44485:16:0;;;44187:326;44544:8;;-1:-1:-1;;;44544:8:0;;;;44543:9;:55;;;;-1:-1:-1;;;;;;44569:29:0;;;;;;:25;:29;;;;;;;;44543:55;:85;;;;-1:-1:-1;44615:13:0;;;;44543:85;:153;;;;;44681:15;;44664:14;;:32;;;;:::i;:::-;44645:15;:51;;44543:153;:196;;;;-1:-1:-1;;;;;;44714:25:0;;;;;;:19;:25;;;;;;;;44713:26;44543:196;44525:282;;;44766:29;:27;:29::i;:::-;;44525:282;44835:8;;-1:-1:-1;;;;;44945:25:0;;44819:12;44945:25;;;:19;:25;;;;;;44835:8;-1:-1:-1;;;44835:8:0;;;;;44834:9;;44945:25;;:52;;-1:-1:-1;;;;;;44974:23:0;;;;;;:19;:23;;;;;;;;44945:52;44941:100;;;-1:-1:-1;45024:5:0;44941:100;45053:12;45158:7;45154:969;;;-1:-1:-1;;;;;45210:29:0;;;;;;:25;:29;;;;;;;;:50;;;;;45259:1;45243:13;;:17;45210:50;45206:768;;;45288:34;45318:3;45288:25;45299:13;;45288:6;:10;;:25;;;;:::i;:34::-;45281:41;;45391:13;;45371:16;;45364:4;:23;;;;:::i;:::-;45363:41;;;;:::i;:::-;45341:18;;:63;;;;;;;:::i;:::-;;;;-1:-1:-1;;45461:13:0;;45447:10;;45440:17;;:4;:17;:::i;:::-;45439:35;;;;:::i;:::-;45423:12;;:51;;;;;;;:::i;:::-;;;;-1:-1:-1;;45543:13:0;;45523:16;;45516:23;;:4;:23;:::i;:::-;45515:41;;;;:::i;:::-;45493:18;;:63;;;;;;;:::i;:::-;;;;-1:-1:-1;45206:768:0;;-1:-1:-1;45206:768:0;;-1:-1:-1;;;;;45618:31:0;;;;;;:25;:31;;;;;;;;:51;;;;;45668:1;45653:12;;:16;45618:51;45614:360;;;45697:33;45726:3;45697:24;45708:12;;45697:6;:10;;:24;;;;:::i;:33::-;45690:40;;45798:12;;45779:15;;45772:4;:22;;;;:::i;:::-;45771:39;;;;:::i;:::-;45749:18;;:61;;;;;;;:::i;:::-;;;;-1:-1:-1;;45866:12:0;;45853:9;;45846:16;;:4;:16;:::i;:::-;45845:33;;;;:::i;:::-;45829:12;;:49;;;;;;;:::i;:::-;;;;-1:-1:-1;;45946:12:0;;45927:15;;45920:22;;:4;:22;:::i;:::-;45919:39;;;;:::i;:::-;45897:18;;:61;;;;;;;:::i;:::-;;;;-1:-1:-1;;45614:360:0;45994:8;;45990:91;;46023:42;46039:4;46053;46060;46023:15;:42::i;:::-;46097:14;46107:4;46097:14;;:::i;:::-;;;45154:969;46135:33;46151:4;46157:2;46161:6;46135:15;:33::i;:::-;41278:4898;;;;41165:5011;;;:::o;2939:191::-;3032:6;;;-1:-1:-1;;;;;3049:17:0;;;-1:-1:-1;;;;;;3049:17:0;;;;;;;3082:40;;3032:6;;;3049:17;3032:6;;3082:40;;3013:16;;3082:40;3002:128;2939:191;:::o;40381:188::-;-1:-1:-1;;;;;40464:31:0;;;;;;:25;:31;;;;;;:39;;-1:-1:-1;;40464:39:0;;;;;;;;;;40521:40;;40464:39;;:31;40521:40;;;40381:188;;:::o;22659:98::-;22717:7;22744:5;22748:1;22744;:5;:::i;:::-;22737:12;22659:98;-1:-1:-1;;;22659:98:0:o;23058:::-;23116:7;23143:5;23147:1;23143;:5;:::i;14425:733::-;-1:-1:-1;;;;;14565:20:0;;14557:70;;;;-1:-1:-1;;;14557:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;14646:23:0;;14638:71;;;;-1:-1:-1;;;14638:71:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;14806:17:0;;14782:21;14806:17;;;;;;;;;;;14842:23;;;;14834:74;;;;-1:-1:-1;;;14834:74:0;;15462:2:1;14834:74:0;;;15444:21:1;15501:2;15481:18;;;15474:30;15540:34;15520:18;;;15513:62;-1:-1:-1;;;15591:18:1;;;15584:36;15637:19;;14834:74:0;15260:402:1;14834:74:0;-1:-1:-1;;;;;14944:17:0;;;:9;:17;;;;;;;;;;;14964:22;;;14944:42;;15008:20;;;;;;;;:30;;14980:6;;14944:9;15008:30;;14980:6;;15008:30;:::i;:::-;;;;;;;;15073:9;-1:-1:-1;;;;;15056:35:0;15065:6;-1:-1:-1;;;;;15056:35:0;;15084:6;15056:35;;;;1897:25:1;;1885:2;1870:18;;1751:177;15056:35:0;;;;;;;;14546:612;14425:733;;;:::o;47306:1756::-;47389:4;47345:23;10477:18;;;;;;;;;;;47345:50;;47406:25;47502:12;;47468:18;;47434;;:52;;;;:::i;:::-;:80;;;;:::i;:::-;47406:108;-1:-1:-1;47525:12:0;47554:20;;;:46;;-1:-1:-1;47578:22:0;;47554:46;47550:85;;;47617:7;;;47306:1756::o;47550:85::-;47669:18;;:23;;47690:2;47669:23;:::i;:::-;47651:15;:41;47647:115;;;47727:18;;:23;;47748:2;47727:23;:::i;:::-;47709:41;;47647:115;47823:23;47936:1;47903:17;47868:18;;47850:15;:36;;;;:::i;:::-;47849:71;;;;:::i;:::-;:88;;;;:::i;:::-;47823:114;-1:-1:-1;47948:26:0;47977:36;:15;47823:114;47977:19;:36::i;:::-;47948:65;-1:-1:-1;48054:21:0;48088:36;47948:65;48088:16;:36::i;:::-;48137:18;48158:44;:21;48184:17;48158:25;:44::i;:::-;48137:65;;48215:23;48241:81;48294:17;48241:34;48256:18;;48241:10;:14;;:34;;;;:::i;:81::-;48215:107;;48333:17;48353:51;48386:17;48353:28;48368:12;;48353:10;:14;;:28;;;;:::i;:51::-;48333:71;-1:-1:-1;48417:23:0;48333:71;48443:28;48456:15;48443:10;:28;:::i;:::-;:40;;;;:::i;:::-;48517:1;48496:18;:22;;;48529:18;:22;;;48562:12;:16;;;48613:9;;48605:45;;48417:66;;-1:-1:-1;;;;;;48613:9:0;;48636;;48605:45;48517:1;48605:45;48636:9;48613;48605:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;48591:59:0;;-1:-1:-1;;48667:19:0;;;;;:42;;;48708:1;48690:15;:19;48667:42;48663:278;;;48726:46;48739:15;48756;48726:12;:46::i;:::-;48896:18;;48792:137;;;16079:25:1;;;16135:2;16120:18;;16113:34;;;16163:18;;;16156:34;;;;48792:137:0;;;;;;16067:2:1;48792:137:0;;;48663:278;48975:15;;48967:87;;-1:-1:-1;;;;;48975:15:0;;;;49018:21;;48967:87;;;;49018:21;48975:15;48967:87;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;;;47306:1756:0:o;49633:788::-;49724:15;49707:14;:32;49825:29;;-1:-1:-1;;;49825:29:0;;-1:-1:-1;;;;;49840:13:0;1707:32:1;49825:29:0;;;1689:51:1;49690:4:0;;;;49825;;:14;;1662:18:1;;49825:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;49794:60;;49904:20;49927:77;49988:5;49927:42;49952:16;;49927:20;:24;;:42;;;;:::i;:77::-;49904:100;-1:-1:-1;50109:16:0;;50105:110;;50142:61;50158:13;50181:6;50190:12;50142:15;:61::i;:::-;50290:19;50327:13;50290:51;;50352:4;-1:-1:-1;;;;;50352:9:0;;:11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;50379:12:0;;;;-1:-1:-1;50379:12:0;;-1:-1:-1;50379:12:0;50409:4;50402:11;;;;;49633:788;:::o;22302:98::-;22360:7;22387:5;22391:1;22387;:5;:::i;46184:589::-;46334:16;;;46348:1;46334:16;;;;;;;;46310:21;;46334:16;;;;;;;;;;-1:-1:-1;46334:16:0;46310:40;;46379:4;46361;46366:1;46361:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;46361:23:0;;;-1:-1:-1;;;;;46361:23:0;;;;;46405:15;-1:-1:-1;;;;;46405:20:0;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;46395:4;46400:1;46395:7;;;;;;;;:::i;:::-;;;;;;:32;-1:-1:-1;;;;;46395:32:0;;;-1:-1:-1;;;;;46395:32:0;;;;;46440:62;46457:4;46472:15;46490:11;46440:8;:62::i;:::-;46541:224;;-1:-1:-1;;;46541:224:0;;-1:-1:-1;;;;;46541:15:0;:66;;;;:224;;46622:11;;46648:1;;46692:4;;46719;;46739:15;;46541:224;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46239:534;46184:589;:::o;46781:517::-;46929:62;46946:4;46961:15;46979:11;46929:8;:62::i;:::-;47034:256;;-1:-1:-1;;;47034:256:0;;47106:4;47034:256;;;18047:34:1;18097:18;;;18090:34;;;47152:1:0;18140:18:1;;;18133:34;;;18183:18;;;18176:34;32481:6:0;18226:19:1;;;18219:44;47264:15:0;18279:19:1;;;18272:35;47034:15:0;-1:-1:-1;;;;;47034:31:0;;;;47073:9;;17981:19:1;;47034:256:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;46781:517;;:::o;14:597:1:-;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;452:6;449:1;446:13;443:91;;;522:1;517:2;508:6;497:9;493:22;489:31;482:42;443:91;-1:-1:-1;595:2:1;574:15;-1:-1:-1;;570:29:1;555:45;;;;602:2;551:54;;14:597;-1:-1:-1;;;14:597:1:o;616:131::-;-1:-1:-1;;;;;691:31:1;;681:42;;671:70;;737:1;734;727:12;752:315;820:6;828;881:2;869:9;860:7;856:23;852:32;849:52;;;897:1;894;887:12;849:52;936:9;923:23;955:31;980:5;955:31;:::i;:::-;1005:5;1057:2;1042:18;;;;1029:32;;-1:-1:-1;;;752:315:1:o;1264:247::-;1323:6;1376:2;1364:9;1355:7;1351:23;1347:32;1344:52;;;1392:1;1389;1382:12;1344:52;1431:9;1418:23;1450:31;1475:5;1450:31;:::i;1933:180::-;1992:6;2045:2;2033:9;2024:7;2020:23;2016:32;2013:52;;;2061:1;2058;2051:12;2013:52;-1:-1:-1;2084:23:1;;1933:180;-1:-1:-1;1933:180:1:o;2118:456::-;2195:6;2203;2211;2264:2;2252:9;2243:7;2239:23;2235:32;2232:52;;;2280:1;2277;2270:12;2232:52;2319:9;2306:23;2338:31;2363:5;2338:31;:::i;:::-;2388:5;-1:-1:-1;2445:2:1;2430:18;;2417:32;2458:33;2417:32;2458:33;:::i;:::-;2118:456;;2510:7;;-1:-1:-1;;;2564:2:1;2549:18;;;;2536:32;;2118:456::o;2976:160::-;3041:20;;3097:13;;3090:21;3080:32;;3070:60;;3126:1;3123;3116:12;3141:316;3215:6;3223;3231;3284:2;3272:9;3263:7;3259:23;3255:32;3252:52;;;3300:1;3297;3290:12;3252:52;3336:9;3323:23;3313:33;;3393:2;3382:9;3378:18;3365:32;3355:42;;3416:35;3447:2;3436:9;3432:18;3416:35;:::i;:::-;3406:45;;3141:316;;;;;:::o;3462:315::-;3527:6;3535;3588:2;3576:9;3567:7;3563:23;3559:32;3556:52;;;3604:1;3601;3594:12;3556:52;3643:9;3630:23;3662:31;3687:5;3662:31;:::i;:::-;3712:5;-1:-1:-1;3736:35:1;3767:2;3752:18;;3736:35;:::i;:::-;3726:45;;3462:315;;;;;:::o;3782:316::-;3859:6;3867;3875;3928:2;3916:9;3907:7;3903:23;3899:32;3896:52;;;3944:1;3941;3934:12;3896:52;-1:-1:-1;;3967:23:1;;;4037:2;4022:18;;4009:32;;-1:-1:-1;4088:2:1;4073:18;;;4060:32;;3782:316;-1:-1:-1;3782:316:1:o;4103:180::-;4159:6;4212:2;4200:9;4191:7;4187:23;4183:32;4180:52;;;4228:1;4225;4218:12;4180:52;4251:26;4267:9;4251:26;:::i;4288:388::-;4356:6;4364;4417:2;4405:9;4396:7;4392:23;4388:32;4385:52;;;4433:1;4430;4423:12;4385:52;4472:9;4459:23;4491:31;4516:5;4491:31;:::i;:::-;4541:5;-1:-1:-1;4598:2:1;4583:18;;4570:32;4611:33;4570:32;4611:33;:::i;:::-;4663:7;4653:17;;;4288:388;;;;;:::o;4681:380::-;4760:1;4756:12;;;;4803;;;4824:61;;4878:4;4870:6;4866:17;4856:27;;4824:61;4931:2;4923:6;4920:14;4900:18;4897:38;4894:161;;;4977:10;4972:3;4968:20;4965:1;4958:31;5012:4;5009:1;5002:15;5040:4;5037:1;5030:15;4894:161;;4681:380;;;:::o;5066:356::-;5268:2;5250:21;;;5287:18;;;5280:30;5346:34;5341:2;5326:18;;5319:62;5413:2;5398:18;;5066:356::o;5427:127::-;5488:10;5483:3;5479:20;5476:1;5469:31;5519:4;5516:1;5509:15;5543:4;5540:1;5533:15;5559:168;5599:7;5665:1;5661;5657:6;5653:14;5650:1;5647:21;5642:1;5635:9;5628:17;5624:45;5621:71;;;5672:18;;:::i;:::-;-1:-1:-1;5712:9:1;;5559:168::o;5732:217::-;5772:1;5798;5788:132;;5842:10;5837:3;5833:20;5830:1;5823:31;5877:4;5874:1;5867:15;5905:4;5902:1;5895:15;5788:132;-1:-1:-1;5934:9:1;;5732:217::o;6779:128::-;6819:3;6850:1;6846:6;6843:1;6840:13;6837:39;;;6856:18;;:::i;:::-;-1:-1:-1;6892:9:1;;6779:128::o;11297:184::-;11367:6;11420:2;11408:9;11399:7;11395:23;11391:32;11388:52;;;11436:1;11433;11426:12;11388:52;-1:-1:-1;11459:16:1;;11297:184;-1:-1:-1;11297:184:1:o;12294:401::-;12496:2;12478:21;;;12535:2;12515:18;;;12508:30;12574:34;12569:2;12554:18;;12547:62;-1:-1:-1;;;12640:2:1;12625:18;;12618:35;12685:3;12670:19;;12294:401::o;12700:399::-;12902:2;12884:21;;;12941:2;12921:18;;;12914:30;12980:34;12975:2;12960:18;;12953:62;-1:-1:-1;;;13046:2:1;13031:18;;13024:33;13089:3;13074:19;;12700:399::o;15130:125::-;15170:4;15198:1;15195;15192:8;15189:34;;;15203:18;;:::i;:::-;-1:-1:-1;15240:9:1;;15130:125::o;16333:127::-;16394:10;16389:3;16385:20;16382:1;16375:31;16425:4;16422:1;16415:15;16449:4;16446:1;16439:15;16465:251;16535:6;16588:2;16576:9;16567:7;16563:23;16559:32;16556:52;;;16604:1;16601;16594:12;16556:52;16636:9;16630:16;16655:31;16680:5;16655:31;:::i;16721:980::-;16983:4;17031:3;17020:9;17016:19;17062:6;17051:9;17044:25;17088:2;17126:6;17121:2;17110:9;17106:18;17099:34;17169:3;17164:2;17153:9;17149:18;17142:31;17193:6;17228;17222:13;17259:6;17251;17244:22;17297:3;17286:9;17282:19;17275:26;;17336:2;17328:6;17324:15;17310:29;;17357:1;17367:195;17381:6;17378:1;17375:13;17367:195;;;17446:13;;-1:-1:-1;;;;;17442:39:1;17430:52;;17537:15;;;;17502:12;;;;17478:1;17396:9;17367:195;;;-1:-1:-1;;;;;;;17618:32:1;;;;17613:2;17598:18;;17591:60;-1:-1:-1;;;17682:3:1;17667:19;17660:35;17579:3;16721:980;-1:-1:-1;;;16721:980:1:o;18318:306::-;18406:6;18414;18422;18475:2;18463:9;18454:7;18450:23;18446:32;18443:52;;;18491:1;18488;18481:12;18443:52;18520:9;18514:16;18504:26;;18570:2;18559:9;18555:18;18549:25;18539:35;;18614:2;18603:9;18599:18;18593:25;18583:35;;18318:306;;;;;:::o

Swarm Source

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