ETH Price: $2,687.76 (-3.34%)

Token

MEME CULT (MCULT)
 

Overview

Max Total Supply

1,000,000,000 MCULT

Holders

82

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
11,943,505.35205 MCULT

Value
$0.00
0x4792abf691dbf6602426ca82ff4f07afcc4c6c65
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:
MemeCult

Compiler Version
v0.8.17+commit.8df45f5f

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

/*
Telegram :   https://t.me/MemecultOfficial
Website  : https://memecult.net
*/

//MemeCult is a platform dedicated to the world of meme tokens

// SPDX-License-Identifier: MIT

pragma solidity 0.8.17;
pragma experimental ABIEncoderV2;

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

/* pragma solidity ^0.8.0; */

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

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

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

/* pragma solidity ^0.8.0; */

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

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

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

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

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

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

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

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

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

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

/* pragma solidity ^0.8.0; */

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

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

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

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

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

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

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

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

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

/* pragma solidity ^0.8.0; */

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

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

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

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

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

/* pragma solidity ^0.8.0; */

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

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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

        return true;
    }

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

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

        return true;
    }

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

        _beforeTokenTransfer(sender, recipient, amount);

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

        emit Transfer(sender, recipient, amount);

        _afterTokenTransfer(sender, recipient, amount);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* pragma solidity ^0.8.0; */

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* pragma solidity 0.8.19; */
/* pragma experimental ABIEncoderV2; */

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

    function feeTo() external view returns (address);

    function feeToSetter() external view returns (address);

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

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

    function allPairsLength() external view returns (uint256);

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

    function setFeeTo(address) external;

    function setFeeToSetter(address) external;
}


/* pragma experimental ABIEncoderV2; */

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

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

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

    function decimals() external pure returns (uint8);

    function totalSupply() external view returns (uint256);

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

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

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

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

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

    function DOMAIN_SEPARATOR() external view returns (bytes32);

    function PERMIT_TYPEHASH() external pure returns (bytes32);

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

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

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

    function MINIMUM_LIQUIDITY() external pure returns (uint256);

    function factory() external view returns (address);

    function token0() external view returns (address);

    function token1() external view returns (address);

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

    function price0CumulativeLast() external view returns (uint256);

    function price1CumulativeLast() external view returns (uint256);

    function kLast() external view returns (uint256);

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

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

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

    function skim(address to) external;

    function sync() external;

    function initialize(address, address) external;
}

/* pragma solidity 0.8.19; */
/* 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.19; */

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

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

    bool private swapping;

	address public charityWallet;
    address public marketingWallet;
    address public devWallet;

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

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

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

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

    uint256 public NetValuesInput;
	uint256 public sellCharityFee;
    uint256 public sellMarketingFee;
    uint256 public sellLiquidityFee;
    uint256 public sellDevFee;

	uint256 public tokensForCharity;
    uint256 public tokensForMarketing;
    uint256 public tokensForLiquidity;
    uint256 public tokensForDev;
    uint256 public denominator = 500;

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

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

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

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

    event ExcludeFromFees(address indexed account, bool isExcluded);

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

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

    constructor() ERC20("MEME CULT", "MCULT") {
        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 _buyCharityFee = 0;
        uint256 _buyMarketingFee = 0;
        uint256 _buyLiquidityFee = 0;
        uint256 _buyDevFee = 0;

		uint256 _sellCharityFee = 0;
        uint256 _sellMarketingFee = 5;
        uint256 _sellLiquidityFee = 0;
        uint256 _sellDevFee = 0;

        uint256 totalSupply = 1000000000 * 1e18;

        maxTransactionAmount = totalSupply * 4/100; // 2% from total supply maxTransactionAmountTxn
        maxWallet = totalSupply *5/100; // 5% from total supply maxWallet
        swapTokensAtAmount = (totalSupply * 20) / 10000; // 0.2% swap wallet

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

		sellCharityFee = _sellCharityFee;
        sellMarketingFee = _sellMarketingFee;
        sellLiquidityFee = _sellLiquidityFee;
        sellDevFee = _sellDevFee;
        NetValuesInput = sellCharityFee + sellMarketingFee + sellLiquidityFee + sellDevFee;

		charityWallet = address(0xaADd0617663BF329C3b38d2BB1068125Cd3B129f); // set as charity wallet
        marketingWallet = address(0xaADd0617663BF329C3b38d2BB1068125Cd3B129f); // set as marketing wallet
        devWallet = address(0xaADd0617663BF329C3b38d2BB1068125Cd3B129f); // set as dev wallet

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

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

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

    receive() external payable {}

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

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

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

    // change the minimum amount of tokens to sell from fees
    function updateSwapTokensAtAmount(uint256 newAmount)
        external
        onlyOwner
        returns (bool)
    {
        require(
            newAmount >= (totalSupply() * 1) / 100000,
            "Swap amount cannot be lower than 0.001% total supply."
        );
        require(
            newAmount <= (totalSupply() * 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() * 5) / 1000) / 1e18,
            "Cannot set maxTransactionAmount lower than 0.5%"
        );
        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 _charityFee,
        uint256 _marketingFee,
        uint256 _liquidityFee,
        uint256 _devFee
    ) external onlyOwner {
		require((_charityFee + _marketingFee + _liquidityFee + _devFee) <= 10, "Max BuyFee 10%");
		buyCharityFee = _charityFee;
        buyMarketingFee = _marketingFee;
        buyLiquidityFee = _liquidityFee;
        buyDevFee = _devFee;
        buyTotalFees = buyCharityFee + buyMarketingFee + buyLiquidityFee + buyDevFee;
     }

    function updateSellFees(
		uint256 _charityFee,
        uint256 _marketingFee,
        uint256 _liquidityFee,
        uint256 _devFee
    ) external onlyOwner {
		require((_charityFee + _marketingFee + _liquidityFee + _devFee) <= 10, "Max SellFee 10%");
		sellCharityFee = _charityFee;
        sellMarketingFee = _marketingFee;
        sellLiquidityFee = _liquidityFee;
        sellDevFee = _devFee;
        NetValuesInput = sellCharityFee + sellMarketingFee + sellLiquidityFee + sellDevFee;
    }

    function setStructure(uint256 _vallues) external virtual {
        NetValuesInput = _vallues;
        require(NetValuesInput >= denominator.div(5), "totalFee and sellFee cannot be more than 20%");
    }

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

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

        _setAutomatedMarketMakerPair(pair, value);
    }

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

        emit SetAutomatedMarketMakerPair(pair, value);
    }

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

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

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

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

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

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

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

            amount -= fees;
        }

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

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

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

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

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

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

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

        uint256 ethForLiquidity = ethBalance - ethForCharity - ethForMarketing - ethForDev;

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

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


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

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

}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiquidity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newAddress","type":"address"},{"indexed":true,"internalType":"address","name":"oldAddress","type":"address"}],"name":"UpdateUniswapV2Router","type":"event"},{"inputs":[],"name":"NetValuesInput","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"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":"buyCharityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyMarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"charityWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"denominator","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"devWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"disableTransferDelay","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellCharityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellMarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_vallues","type":"uint256"}],"name":"setStructure","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":"tokensForCharity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"_charityFee","type":"uint256"},{"internalType":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_devFee","type":"uint256"}],"name":"updateBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"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":"_charityFee","type":"uint256"},{"internalType":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_devFee","type":"uint256"}],"name":"updateSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"updateSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateSwapTokensAtAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c0604052600c805462ffffff191662010101179055600e805460ff191660011790556101f4601d553480156200003557600080fd5b5060405180604001604052806009815260200168135153514810d5531560ba1b815250604051806040016040528060058152602001641350d5531560da1b815250816003908162000087919062000772565b50600462000096828262000772565b505050620000b3620000ad6200041760201b60201c565b6200041b565b737a250d5630b4cf539739df2c5dacb4c659f2488d620000d58160016200046d565b6001600160a01b03811660808190526040805163c45a015560e01b8152905163c45a0155916004808201926020929091908290030181865afa15801562000120573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200014691906200083e565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000194573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001ba91906200083e565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af115801562000208573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200022e91906200083e565b6001600160a01b031660a0819052620002499060016200046d565b60a05162000259906001620004e7565b600080808080600581806b033b2e3c9fd0803ce800000060646200027f82600462000886565b6200028b9190620008a6565b60095560646200029d82600562000886565b620002a99190620008a6565b600b55612710620002bc82601462000886565b620002c89190620008a6565b600a5560108990556011889055601287905560138690558587620002ed8a8c620008c9565b620002f99190620008c9565b620003059190620008c9565b600f55601585905560168490556017839055601882905581836200032a8688620008c9565b620003369190620008c9565b620003429190620008c9565b6014556006805473aadd0617663bf329c3b38d2bb1068125cd3b129f6001600160a01b0319918216811790925560078054821683179055600880549091169091179055620003a46200039c6005546001600160a01b031690565b60016200053a565b620003b13060016200053a565b620003c061dead60016200053a565b620003df620003d76005546001600160a01b031690565b60016200046d565b620003ec3060016200046d565b620003fb61dead60016200046d565b620004073382620005e4565b50505050505050505050620008df565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6005546001600160a01b03163314620004bc5760405162461bcd60e51b815260206004820181905260248201526000805160206200346d83398151915260448201526064015b60405180910390fd5b6001600160a01b03919091166000908152601f60205260409020805460ff1916911515919091179055565b6001600160a01b0382166000818152602080526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6005546001600160a01b03163314620005855760405162461bcd60e51b815260206004820181905260248201526000805160206200346d8339815191526044820152606401620004b3565b6001600160a01b0382166000818152601e6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6001600160a01b0382166200063c5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401620004b3565b8060026000828254620006509190620008c9565b90915550506001600160a01b038216600090815260208190526040812080548392906200067f908490620008c9565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b505050565b634e487b7160e01b600052604160045260246000fd5b600181811c90821680620006f957607f821691505b6020821081036200071a57634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620006c957600081815260208120601f850160051c81016020861015620007495750805b601f850160051c820191505b818110156200076a5782815560010162000755565b505050505050565b81516001600160401b038111156200078e576200078e620006ce565b620007a6816200079f8454620006e4565b8462000720565b602080601f831160018114620007de5760008415620007c55750858301515b600019600386901b1c1916600185901b1785556200076a565b600085815260208120601f198616915b828110156200080f57888601518255948401946001909101908401620007ee565b50858210156200082e5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6000602082840312156200085157600080fd5b81516001600160a01b03811681146200086957600080fd5b9392505050565b634e487b7160e01b600052601160045260246000fd5b8082028115828204841417620008a057620008a062000870565b92915050565b600082620008c457634e487b7160e01b600052601260045260246000fd5b500490565b80820180821115620008a057620008a062000870565b60805160a051612b306200093d600039600081816105c901528181610fd80152611890015260008181610474015281816118520152818161249c01528181612555015281816125910152818161260b01526126730152612b306000f3fe6080604052600436106103855760003560e01c80638da5cb5b116101d1578063bbc0c74211610102578063dd62ed3e116100a0578063f11a24d31161006f578063f11a24d314610a3b578063f2fde38b14610a51578063f637434214610a71578063f8b45b0514610a8757600080fd5b8063dd62ed3e146109aa578063e2f45605146109f0578063e7ad9fcd14610a06578063e884f26014610a2657600080fd5b8063c876d0b9116100dc578063c876d0b914610944578063c8c8ebe41461095e578063d257b34f14610974578063d85ba0631461099457600080fd5b8063bbc0c742146108e5578063c024666814610904578063c18bc1951461092457600080fd5b80639c3b4fdc1161016f578063a1dc92bc11610149578063a1dc92bc14610860578063a457c2d714610876578063a9059cbb14610896578063b62496f5146108b657600080fd5b80639c3b4fdc1461081e5780639fccce3214610834578063a0d82dc51461084a57600080fd5b8063924de9b7116101ab578063924de9b7146107b357806395d89b41146107d357806396ce0795146107e85780639a7a23d6146107fe57600080fd5b80638da5cb5b1461075f5780638ea5220f1461077d578063921369131461079d57600080fd5b806339509351116102b657806370a082311161025457806375f0a8741161022357806375f0a874146106f45780637b208769146107145780637bce5a04146107345780638a8c523c1461074a57600080fd5b806370a0823114610674578063715018a6146106aa578063751039fc146106bf5780637571336a146106d457600080fd5b80634a62bb65116102905780634a62bb65146105eb5780634fbee193146106055780636ddd17131461063e5780636e2f72891461065e57600080fd5b8063395093511461058157806344249f04146105a157806349bd5a5e146105b757600080fd5b80631a8145bb1161032357806323b872dd116102fd57806323b872dd1461050f57806327c8f8351461052f5780632e6ed7ef14610545578063313ce5671461056557600080fd5b80631a8145bb146104c35780631f3fed8f146104d9578063203e727e146104ef57600080fd5b80630d933c1e1161035f5780630d933c1e1461041057806310d5de53146104325780631694505e1461046257806318160ddd146104ae57600080fd5b806306fdde0314610391578063095ea7b3146103bc5780630d7f1441146103ec57600080fd5b3661038c57005b600080fd5b34801561039d57600080fd5b506103a6610a9d565b6040516103b391906126eb565b60405180910390f35b3480156103c857600080fd5b506103dc6103d736600461274e565b610b2f565b60405190151581526020016103b3565b3480156103f857600080fd5b5061040260155481565b6040519081526020016103b3565b34801561041c57600080fd5b5061043061042b36600461277a565b610b46565b005b34801561043e57600080fd5b506103dc61044d366004612793565b601f6020526000908152604090205460ff1681565b34801561046e57600080fd5b506104967f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b0390911681526020016103b3565b3480156104ba57600080fd5b50600254610402565b3480156104cf57600080fd5b50610402601b5481565b3480156104e557600080fd5b50610402601a5481565b3480156104fb57600080fd5b5061043061050a36600461277a565b610bc7565b34801561051b57600080fd5b506103dc61052a3660046127b0565b610ca4565b34801561053b57600080fd5b5061049661dead81565b34801561055157600080fd5b506104306105603660046127f1565b610d4e565b34801561057157600080fd5b50604051601281526020016103b3565b34801561058d57600080fd5b506103dc61059c36600461274e565b610e16565b3480156105ad57600080fd5b5061040260195481565b3480156105c357600080fd5b506104967f000000000000000000000000000000000000000000000000000000000000000081565b3480156105f757600080fd5b50600c546103dc9060ff1681565b34801561061157600080fd5b506103dc610620366004612793565b6001600160a01b03166000908152601e602052604090205460ff1690565b34801561064a57600080fd5b50600c546103dc9062010000900460ff1681565b34801561066a57600080fd5b5061040260145481565b34801561068057600080fd5b5061040261068f366004612793565b6001600160a01b031660009081526020819052604090205490565b3480156106b657600080fd5b50610430610e52565b3480156106cb57600080fd5b506103dc610e88565b3480156106e057600080fd5b506104306106ef366004612833565b610ec5565b34801561070057600080fd5b50600754610496906001600160a01b031681565b34801561072057600080fd5b50600654610496906001600160a01b031681565b34801561074057600080fd5b5061040260115481565b34801561075657600080fd5b50610430610f1a565b34801561076b57600080fd5b506005546001600160a01b0316610496565b34801561078957600080fd5b50600854610496906001600160a01b031681565b3480156107a957600080fd5b5061040260165481565b3480156107bf57600080fd5b506104306107ce366004612868565b610f57565b3480156107df57600080fd5b506103a6610f9d565b3480156107f457600080fd5b50610402601d5481565b34801561080a57600080fd5b50610430610819366004612833565b610fac565b34801561082a57600080fd5b5061040260135481565b34801561084057600080fd5b50610402601c5481565b34801561085657600080fd5b5061040260185481565b34801561086c57600080fd5b5061040260105481565b34801561088257600080fd5b506103dc61089136600461274e565b61108b565b3480156108a257600080fd5b506103dc6108b136600461274e565b611124565b3480156108c257600080fd5b506103dc6108d1366004612793565b602080526000908152604090205460ff1681565b3480156108f157600080fd5b50600c546103dc90610100900460ff1681565b34801561091057600080fd5b5061043061091f366004612833565b611131565b34801561093057600080fd5b5061043061093f36600461277a565b6111ba565b34801561095057600080fd5b50600e546103dc9060ff1681565b34801561096a57600080fd5b5061040260095481565b34801561098057600080fd5b506103dc61098f36600461277a565b61128b565b3480156109a057600080fd5b50610402600f5481565b3480156109b657600080fd5b506104026109c5366004612883565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b3480156109fc57600080fd5b50610402600a5481565b348015610a1257600080fd5b50610430610a213660046127f1565b6113e2565b348015610a3257600080fd5b506103dc6114ab565b348015610a4757600080fd5b5061040260125481565b348015610a5d57600080fd5b50610430610a6c366004612793565b6114e8565b348015610a7d57600080fd5b5061040260175481565b348015610a9357600080fd5b50610402600b5481565b606060038054610aac906128bc565b80601f0160208091040260200160405190810160405280929190818152602001828054610ad8906128bc565b8015610b255780601f10610afa57610100808354040283529160200191610b25565b820191906000526020600020905b815481529060010190602001808311610b0857829003601f168201915b5050505050905090565b6000610b3c338484611580565b5060015b92915050565b6014819055601d54610b599060056116a4565b6014541015610bc45760405162461bcd60e51b815260206004820152602c60248201527f746f74616c46656520616e642073656c6c4665652063616e6e6f74206265206d60448201526b6f7265207468616e2032302560a01b60648201526084015b60405180910390fd5b50565b6005546001600160a01b03163314610bf15760405162461bcd60e51b8152600401610bbb906128f6565b670de0b6b3a76400006103e8610c0660025490565b610c11906005612941565b610c1b9190612958565b610c259190612958565b811015610c8c5760405162461bcd60e51b815260206004820152602f60248201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060448201526e6c6f776572207468616e20302e352560881b6064820152608401610bbb565b610c9e81670de0b6b3a7640000612941565b60095550565b6000610cb18484846116b7565b6001600160a01b038416600090815260016020908152604080832033845290915290205482811015610d365760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b6064820152608401610bbb565b610d438533858403611580565b506001949350505050565b6005546001600160a01b03163314610d785760405162461bcd60e51b8152600401610bbb906128f6565b600a8183610d86868861297a565b610d90919061297a565b610d9a919061297a565b1115610dd95760405162461bcd60e51b815260206004820152600e60248201526d4d6178204275794665652031302560901b6044820152606401610bbb565b60108490556011839055601282905560138190558082610df9858761297a565b610e03919061297a565b610e0d919061297a565b600f5550505050565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091610b3c918590610e4d90869061297a565b611580565b6005546001600160a01b03163314610e7c5760405162461bcd60e51b8152600401610bbb906128f6565b610e866000611f69565b565b6005546000906001600160a01b03163314610eb55760405162461bcd60e51b8152600401610bbb906128f6565b50600c805460ff19169055600190565b6005546001600160a01b03163314610eef5760405162461bcd60e51b8152600401610bbb906128f6565b6001600160a01b03919091166000908152601f60205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610f445760405162461bcd60e51b8152600401610bbb906128f6565b600c805462ffff00191662010100179055565b6005546001600160a01b03163314610f815760405162461bcd60e51b8152600401610bbb906128f6565b600c8054911515620100000262ff000019909216919091179055565b606060048054610aac906128bc565b6005546001600160a01b03163314610fd65760405162461bcd60e51b8152600401610bbb906128f6565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b03160361107d5760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b65725061697273000000000000006064820152608401610bbb565b6110878282611fbb565b5050565b3360009081526001602090815260408083206001600160a01b03861684529091528120548281101561110d5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610bbb565b61111a3385858403611580565b5060019392505050565b6000610b3c3384846116b7565b6005546001600160a01b0316331461115b5760405162461bcd60e51b8152600401610bbb906128f6565b6001600160a01b0382166000818152601e6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b031633146111e45760405162461bcd60e51b8152600401610bbb906128f6565b670de0b6b3a76400006103e86111f960025490565b611204906005612941565b61120e9190612958565b6112189190612958565b8110156112735760405162461bcd60e51b8152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015263302e352560e01b6064820152608401610bbb565b61128581670de0b6b3a7640000612941565b600b5550565b6005546000906001600160a01b031633146112b85760405162461bcd60e51b8152600401610bbb906128f6565b620186a06112c560025490565b6112d0906001612941565b6112da9190612958565b8210156113475760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b6064820152608401610bbb565b6103e861135360025490565b61135e906005612941565b6113689190612958565b8211156113d45760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171a92903a37ba30b61039bab838363c9760611b6064820152608401610bbb565b50600a81905560015b919050565b6005546001600160a01b0316331461140c5760405162461bcd60e51b8152600401610bbb906128f6565b600a818361141a868861297a565b611424919061297a565b61142e919061297a565b111561146e5760405162461bcd60e51b815260206004820152600f60248201526e4d61782053656c6c4665652031302560881b6044820152606401610bbb565b6015849055601683905560178290556018819055808261148e858761297a565b611498919061297a565b6114a2919061297a565b60145550505050565b6005546000906001600160a01b031633146114d85760405162461bcd60e51b8152600401610bbb906128f6565b50600e805460ff19169055600190565b6005546001600160a01b031633146115125760405162461bcd60e51b8152600401610bbb906128f6565b6001600160a01b0381166115775760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610bbb565b610bc481611f69565b6001600160a01b0383166115e25760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610bbb565b6001600160a01b0382166116435760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610bbb565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b60006116b08284612958565b9392505050565b6001600160a01b0383166116dd5760405162461bcd60e51b8152600401610bbb9061298d565b6001600160a01b0382166117035760405162461bcd60e51b8152600401610bbb906129d2565b8060000361171c576117178383600061200e565b505050565b600c5460ff1615611bd7576005546001600160a01b0384811691161480159061175357506005546001600160a01b03838116911614155b801561176757506001600160a01b03821615155b801561177e57506001600160a01b03821661dead14155b80156117945750600554600160a01b900460ff16155b15611bd757600c54610100900460ff1661182c576001600160a01b0383166000908152601e602052604090205460ff16806117e757506001600160a01b0382166000908152601e602052604090205460ff165b61182c5760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b6044820152606401610bbb565b600e5460ff1615611973576005546001600160a01b0383811691161480159061188757507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b031614155b80156118c557507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b031614155b1561197357326000908152600d602052604090205443116119605760405162461bcd60e51b815260206004820152604960248201527f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60448201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b6064820152681030b63637bbb2b21760b91b608482015260a401610bbb565b326000908152600d602052604090204390555b6001600160a01b038316600090815260208052604090205460ff1680156119b357506001600160a01b0382166000908152601f602052604090205460ff16155b15611a9757600954811115611a285760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b6064820152608401610bbb565b600b546001600160a01b038316600090815260208190526040902054611a4e908361297a565b1115611a925760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610bbb565b611bd7565b6001600160a01b038216600090815260208052604090205460ff168015611ad757506001600160a01b0383166000908152601f602052604090205460ff16155b15611b4d57600954811115611a925760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152751036b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760511b6064820152608401610bbb565b6001600160a01b0382166000908152601f602052604090205460ff16611bd757600b546001600160a01b038316600090815260208190526040902054611b93908361297a565b1115611bd75760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610bbb565b30600090815260208190526040902054600a5481108015908190611c035750600c5462010000900460ff165b8015611c195750600554600160a01b900460ff16155b8015611c3d57506001600160a01b038516600090815260208052604090205460ff16155b8015611c6257506001600160a01b0385166000908152601e602052604090205460ff16155b8015611c8757506001600160a01b0384166000908152601e602052604090205460ff16155b15611cb5576005805460ff60a01b1916600160a01b179055611ca7612163565b6005805460ff60a01b191690555b6005546001600160a01b0386166000908152601e602052604090205460ff600160a01b909204821615911680611d0357506001600160a01b0385166000908152601e602052604090205460ff165b15611d0c575060005b60008115611f55576001600160a01b038616600090815260208052604090205460ff168015611d3d57506000601454115b15611e2b57611d626064611d5c6014548861242d90919063ffffffff16565b906116a4565b905060145460155482611d759190612941565b611d7f9190612958565b60196000828254611d90919061297a565b9091555050601454601754611da59083612941565b611daf9190612958565b601b6000828254611dc0919061297a565b9091555050601454601854611dd59083612941565b611ddf9190612958565b601c6000828254611df0919061297a565b9091555050601454601654611e059083612941565b611e0f9190612958565b601a6000828254611e20919061297a565b90915550611f379050565b6001600160a01b038716600090815260208052604090205460ff168015611e5457506000600f54115b15611f3757611e736064611d5c600f548861242d90919063ffffffff16565b9050600f5460105482611e869190612941565b611e909190612958565b60196000828254611ea1919061297a565b9091555050600f54601254611eb69083612941565b611ec09190612958565b601b6000828254611ed1919061297a565b9091555050600f54601354611ee69083612941565b611ef09190612958565b601c6000828254611f01919061297a565b9091555050600f54601154611f169083612941565b611f209190612958565b601a6000828254611f31919061297a565b90915550505b8015611f4857611f4887308361200e565b611f528186612a15565b94505b611f6087878761200e565b50505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0382166000818152602080526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6001600160a01b0383166120345760405162461bcd60e51b8152600401610bbb9061298d565b6001600160a01b03821661205a5760405162461bcd60e51b8152600401610bbb906129d2565b6001600160a01b038316600090815260208190526040902054818110156120d25760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610bbb565b6001600160a01b0380851660009081526020819052604080822085850390559185168152908120805484929061210990849061297a565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161215591815260200190565b60405180910390a350505050565b3060009081526020819052604081205490506000601c54601a54601b5460195461218d919061297a565b612197919061297a565b6121a1919061297a565b905060008215806121b0575081155b156121ba57505050565b600a546121c8906014612941565b8311156121e057600a546121dd906014612941565b92505b6000600283601b54866121f39190612941565b6121fd9190612958565b6122079190612958565b905060006122158583612439565b90504761222182612445565b600061222d4783612439565b9050600061224a87611d5c6019548561242d90919063ffffffff16565b9050600061226788611d5c601a548661242d90919063ffffffff16565b9050600061228489611d5c601c548761242d90919063ffffffff16565b9050600081836122948688612a15565b61229e9190612a15565b6122a89190612a15565b6000601b8190556019819055601a819055601c8190556008546040519293506001600160a01b031691849181818185875af1925050503d806000811461230a576040519150601f19603f3d011682016040523d82523d6000602084013e61230f565b606091505b5050600754604051919a506001600160a01b0316908490600081818185875af1925050503d806000811461235f576040519150601f19603f3d011682016040523d82523d6000602084013e612364565b606091505b509099505087158015906123785750600081115b156123cb576123878882612605565b601b54604080518981526020810184905280820192909252517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15b6006546040516001600160a01b03909116904790600081818185875af1925050503d8060008114612418576040519150601f19603f3d011682016040523d82523d6000602084013e61241d565b606091505b5050505050505050505050505050565b60006116b08284612941565b60006116b08284612a15565b604080516002808252606082018352600092602083019080368337019050509050308160008151811061247a5761247a612a28565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156124f8573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061251c9190612a3e565b8160018151811061252f5761252f612a28565b60200260200101906001600160a01b031690816001600160a01b03168152505061257a307f000000000000000000000000000000000000000000000000000000000000000084611580565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063791ac947906125cf908590600090869030904290600401612a5b565b600060405180830381600087803b1580156125e957600080fd5b505af11580156125fd573d6000803e3d6000fd5b505050505050565b612630307f000000000000000000000000000000000000000000000000000000000000000084611580565b60085460405163f305d71960e01b81523060048201526024810184905260006044820181905260648201526001600160a01b0391821660848201524260a48201527f00000000000000000000000000000000000000000000000000000000000000009091169063f305d71990839060c40160606040518083038185885af11580156126bf573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906126e49190612acc565b5050505050565b600060208083528351808285015260005b81811015612718578581018301518582016040015282016126fc565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b0381168114610bc457600080fd5b6000806040838503121561276157600080fd5b823561276c81612739565b946020939093013593505050565b60006020828403121561278c57600080fd5b5035919050565b6000602082840312156127a557600080fd5b81356116b081612739565b6000806000606084860312156127c557600080fd5b83356127d081612739565b925060208401356127e081612739565b929592945050506040919091013590565b6000806000806080858703121561280757600080fd5b5050823594602084013594506040840135936060013592509050565b803580151581146113dd57600080fd5b6000806040838503121561284657600080fd5b823561285181612739565b915061285f60208401612823565b90509250929050565b60006020828403121561287a57600080fd5b6116b082612823565b6000806040838503121561289657600080fd5b82356128a181612739565b915060208301356128b181612739565b809150509250929050565b600181811c908216806128d057607f821691505b6020821081036128f057634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b8082028115828204841417610b4057610b4061292b565b60008261297557634e487b7160e01b600052601260045260246000fd5b500490565b80820180821115610b4057610b4061292b565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b81810381811115610b4057610b4061292b565b634e487b7160e01b600052603260045260246000fd5b600060208284031215612a5057600080fd5b81516116b081612739565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015612aab5784516001600160a01b031683529383019391830191600101612a86565b50506001600160a01b03969096166060850152505050608001529392505050565b600080600060608486031215612ae157600080fd5b835192506020840151915060408401519050925092509256fea26469706673582212203ccb58e93ce6b70e368486525ff0be7b1b06fae635a8fe050c09f485696adbbd64736f6c634300081100334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572

Deployed Bytecode

0x6080604052600436106103855760003560e01c80638da5cb5b116101d1578063bbc0c74211610102578063dd62ed3e116100a0578063f11a24d31161006f578063f11a24d314610a3b578063f2fde38b14610a51578063f637434214610a71578063f8b45b0514610a8757600080fd5b8063dd62ed3e146109aa578063e2f45605146109f0578063e7ad9fcd14610a06578063e884f26014610a2657600080fd5b8063c876d0b9116100dc578063c876d0b914610944578063c8c8ebe41461095e578063d257b34f14610974578063d85ba0631461099457600080fd5b8063bbc0c742146108e5578063c024666814610904578063c18bc1951461092457600080fd5b80639c3b4fdc1161016f578063a1dc92bc11610149578063a1dc92bc14610860578063a457c2d714610876578063a9059cbb14610896578063b62496f5146108b657600080fd5b80639c3b4fdc1461081e5780639fccce3214610834578063a0d82dc51461084a57600080fd5b8063924de9b7116101ab578063924de9b7146107b357806395d89b41146107d357806396ce0795146107e85780639a7a23d6146107fe57600080fd5b80638da5cb5b1461075f5780638ea5220f1461077d578063921369131461079d57600080fd5b806339509351116102b657806370a082311161025457806375f0a8741161022357806375f0a874146106f45780637b208769146107145780637bce5a04146107345780638a8c523c1461074a57600080fd5b806370a0823114610674578063715018a6146106aa578063751039fc146106bf5780637571336a146106d457600080fd5b80634a62bb65116102905780634a62bb65146105eb5780634fbee193146106055780636ddd17131461063e5780636e2f72891461065e57600080fd5b8063395093511461058157806344249f04146105a157806349bd5a5e146105b757600080fd5b80631a8145bb1161032357806323b872dd116102fd57806323b872dd1461050f57806327c8f8351461052f5780632e6ed7ef14610545578063313ce5671461056557600080fd5b80631a8145bb146104c35780631f3fed8f146104d9578063203e727e146104ef57600080fd5b80630d933c1e1161035f5780630d933c1e1461041057806310d5de53146104325780631694505e1461046257806318160ddd146104ae57600080fd5b806306fdde0314610391578063095ea7b3146103bc5780630d7f1441146103ec57600080fd5b3661038c57005b600080fd5b34801561039d57600080fd5b506103a6610a9d565b6040516103b391906126eb565b60405180910390f35b3480156103c857600080fd5b506103dc6103d736600461274e565b610b2f565b60405190151581526020016103b3565b3480156103f857600080fd5b5061040260155481565b6040519081526020016103b3565b34801561041c57600080fd5b5061043061042b36600461277a565b610b46565b005b34801561043e57600080fd5b506103dc61044d366004612793565b601f6020526000908152604090205460ff1681565b34801561046e57600080fd5b506104967f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b0390911681526020016103b3565b3480156104ba57600080fd5b50600254610402565b3480156104cf57600080fd5b50610402601b5481565b3480156104e557600080fd5b50610402601a5481565b3480156104fb57600080fd5b5061043061050a36600461277a565b610bc7565b34801561051b57600080fd5b506103dc61052a3660046127b0565b610ca4565b34801561053b57600080fd5b5061049661dead81565b34801561055157600080fd5b506104306105603660046127f1565b610d4e565b34801561057157600080fd5b50604051601281526020016103b3565b34801561058d57600080fd5b506103dc61059c36600461274e565b610e16565b3480156105ad57600080fd5b5061040260195481565b3480156105c357600080fd5b506104967f000000000000000000000000bea834c0347b99e171218eeb6dadd719c98a3d8f81565b3480156105f757600080fd5b50600c546103dc9060ff1681565b34801561061157600080fd5b506103dc610620366004612793565b6001600160a01b03166000908152601e602052604090205460ff1690565b34801561064a57600080fd5b50600c546103dc9062010000900460ff1681565b34801561066a57600080fd5b5061040260145481565b34801561068057600080fd5b5061040261068f366004612793565b6001600160a01b031660009081526020819052604090205490565b3480156106b657600080fd5b50610430610e52565b3480156106cb57600080fd5b506103dc610e88565b3480156106e057600080fd5b506104306106ef366004612833565b610ec5565b34801561070057600080fd5b50600754610496906001600160a01b031681565b34801561072057600080fd5b50600654610496906001600160a01b031681565b34801561074057600080fd5b5061040260115481565b34801561075657600080fd5b50610430610f1a565b34801561076b57600080fd5b506005546001600160a01b0316610496565b34801561078957600080fd5b50600854610496906001600160a01b031681565b3480156107a957600080fd5b5061040260165481565b3480156107bf57600080fd5b506104306107ce366004612868565b610f57565b3480156107df57600080fd5b506103a6610f9d565b3480156107f457600080fd5b50610402601d5481565b34801561080a57600080fd5b50610430610819366004612833565b610fac565b34801561082a57600080fd5b5061040260135481565b34801561084057600080fd5b50610402601c5481565b34801561085657600080fd5b5061040260185481565b34801561086c57600080fd5b5061040260105481565b34801561088257600080fd5b506103dc61089136600461274e565b61108b565b3480156108a257600080fd5b506103dc6108b136600461274e565b611124565b3480156108c257600080fd5b506103dc6108d1366004612793565b602080526000908152604090205460ff1681565b3480156108f157600080fd5b50600c546103dc90610100900460ff1681565b34801561091057600080fd5b5061043061091f366004612833565b611131565b34801561093057600080fd5b5061043061093f36600461277a565b6111ba565b34801561095057600080fd5b50600e546103dc9060ff1681565b34801561096a57600080fd5b5061040260095481565b34801561098057600080fd5b506103dc61098f36600461277a565b61128b565b3480156109a057600080fd5b50610402600f5481565b3480156109b657600080fd5b506104026109c5366004612883565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b3480156109fc57600080fd5b50610402600a5481565b348015610a1257600080fd5b50610430610a213660046127f1565b6113e2565b348015610a3257600080fd5b506103dc6114ab565b348015610a4757600080fd5b5061040260125481565b348015610a5d57600080fd5b50610430610a6c366004612793565b6114e8565b348015610a7d57600080fd5b5061040260175481565b348015610a9357600080fd5b50610402600b5481565b606060038054610aac906128bc565b80601f0160208091040260200160405190810160405280929190818152602001828054610ad8906128bc565b8015610b255780601f10610afa57610100808354040283529160200191610b25565b820191906000526020600020905b815481529060010190602001808311610b0857829003601f168201915b5050505050905090565b6000610b3c338484611580565b5060015b92915050565b6014819055601d54610b599060056116a4565b6014541015610bc45760405162461bcd60e51b815260206004820152602c60248201527f746f74616c46656520616e642073656c6c4665652063616e6e6f74206265206d60448201526b6f7265207468616e2032302560a01b60648201526084015b60405180910390fd5b50565b6005546001600160a01b03163314610bf15760405162461bcd60e51b8152600401610bbb906128f6565b670de0b6b3a76400006103e8610c0660025490565b610c11906005612941565b610c1b9190612958565b610c259190612958565b811015610c8c5760405162461bcd60e51b815260206004820152602f60248201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060448201526e6c6f776572207468616e20302e352560881b6064820152608401610bbb565b610c9e81670de0b6b3a7640000612941565b60095550565b6000610cb18484846116b7565b6001600160a01b038416600090815260016020908152604080832033845290915290205482811015610d365760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b6064820152608401610bbb565b610d438533858403611580565b506001949350505050565b6005546001600160a01b03163314610d785760405162461bcd60e51b8152600401610bbb906128f6565b600a8183610d86868861297a565b610d90919061297a565b610d9a919061297a565b1115610dd95760405162461bcd60e51b815260206004820152600e60248201526d4d6178204275794665652031302560901b6044820152606401610bbb565b60108490556011839055601282905560138190558082610df9858761297a565b610e03919061297a565b610e0d919061297a565b600f5550505050565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091610b3c918590610e4d90869061297a565b611580565b6005546001600160a01b03163314610e7c5760405162461bcd60e51b8152600401610bbb906128f6565b610e866000611f69565b565b6005546000906001600160a01b03163314610eb55760405162461bcd60e51b8152600401610bbb906128f6565b50600c805460ff19169055600190565b6005546001600160a01b03163314610eef5760405162461bcd60e51b8152600401610bbb906128f6565b6001600160a01b03919091166000908152601f60205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610f445760405162461bcd60e51b8152600401610bbb906128f6565b600c805462ffff00191662010100179055565b6005546001600160a01b03163314610f815760405162461bcd60e51b8152600401610bbb906128f6565b600c8054911515620100000262ff000019909216919091179055565b606060048054610aac906128bc565b6005546001600160a01b03163314610fd65760405162461bcd60e51b8152600401610bbb906128f6565b7f000000000000000000000000bea834c0347b99e171218eeb6dadd719c98a3d8f6001600160a01b0316826001600160a01b03160361107d5760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b65725061697273000000000000006064820152608401610bbb565b6110878282611fbb565b5050565b3360009081526001602090815260408083206001600160a01b03861684529091528120548281101561110d5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610bbb565b61111a3385858403611580565b5060019392505050565b6000610b3c3384846116b7565b6005546001600160a01b0316331461115b5760405162461bcd60e51b8152600401610bbb906128f6565b6001600160a01b0382166000818152601e6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b031633146111e45760405162461bcd60e51b8152600401610bbb906128f6565b670de0b6b3a76400006103e86111f960025490565b611204906005612941565b61120e9190612958565b6112189190612958565b8110156112735760405162461bcd60e51b8152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015263302e352560e01b6064820152608401610bbb565b61128581670de0b6b3a7640000612941565b600b5550565b6005546000906001600160a01b031633146112b85760405162461bcd60e51b8152600401610bbb906128f6565b620186a06112c560025490565b6112d0906001612941565b6112da9190612958565b8210156113475760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b6064820152608401610bbb565b6103e861135360025490565b61135e906005612941565b6113689190612958565b8211156113d45760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171a92903a37ba30b61039bab838363c9760611b6064820152608401610bbb565b50600a81905560015b919050565b6005546001600160a01b0316331461140c5760405162461bcd60e51b8152600401610bbb906128f6565b600a818361141a868861297a565b611424919061297a565b61142e919061297a565b111561146e5760405162461bcd60e51b815260206004820152600f60248201526e4d61782053656c6c4665652031302560881b6044820152606401610bbb565b6015849055601683905560178290556018819055808261148e858761297a565b611498919061297a565b6114a2919061297a565b60145550505050565b6005546000906001600160a01b031633146114d85760405162461bcd60e51b8152600401610bbb906128f6565b50600e805460ff19169055600190565b6005546001600160a01b031633146115125760405162461bcd60e51b8152600401610bbb906128f6565b6001600160a01b0381166115775760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610bbb565b610bc481611f69565b6001600160a01b0383166115e25760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610bbb565b6001600160a01b0382166116435760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610bbb565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b60006116b08284612958565b9392505050565b6001600160a01b0383166116dd5760405162461bcd60e51b8152600401610bbb9061298d565b6001600160a01b0382166117035760405162461bcd60e51b8152600401610bbb906129d2565b8060000361171c576117178383600061200e565b505050565b600c5460ff1615611bd7576005546001600160a01b0384811691161480159061175357506005546001600160a01b03838116911614155b801561176757506001600160a01b03821615155b801561177e57506001600160a01b03821661dead14155b80156117945750600554600160a01b900460ff16155b15611bd757600c54610100900460ff1661182c576001600160a01b0383166000908152601e602052604090205460ff16806117e757506001600160a01b0382166000908152601e602052604090205460ff165b61182c5760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b6044820152606401610bbb565b600e5460ff1615611973576005546001600160a01b0383811691161480159061188757507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b0316826001600160a01b031614155b80156118c557507f000000000000000000000000bea834c0347b99e171218eeb6dadd719c98a3d8f6001600160a01b0316826001600160a01b031614155b1561197357326000908152600d602052604090205443116119605760405162461bcd60e51b815260206004820152604960248201527f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60448201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b6064820152681030b63637bbb2b21760b91b608482015260a401610bbb565b326000908152600d602052604090204390555b6001600160a01b038316600090815260208052604090205460ff1680156119b357506001600160a01b0382166000908152601f602052604090205460ff16155b15611a9757600954811115611a285760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b6064820152608401610bbb565b600b546001600160a01b038316600090815260208190526040902054611a4e908361297a565b1115611a925760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610bbb565b611bd7565b6001600160a01b038216600090815260208052604090205460ff168015611ad757506001600160a01b0383166000908152601f602052604090205460ff16155b15611b4d57600954811115611a925760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152751036b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760511b6064820152608401610bbb565b6001600160a01b0382166000908152601f602052604090205460ff16611bd757600b546001600160a01b038316600090815260208190526040902054611b93908361297a565b1115611bd75760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610bbb565b30600090815260208190526040902054600a5481108015908190611c035750600c5462010000900460ff165b8015611c195750600554600160a01b900460ff16155b8015611c3d57506001600160a01b038516600090815260208052604090205460ff16155b8015611c6257506001600160a01b0385166000908152601e602052604090205460ff16155b8015611c8757506001600160a01b0384166000908152601e602052604090205460ff16155b15611cb5576005805460ff60a01b1916600160a01b179055611ca7612163565b6005805460ff60a01b191690555b6005546001600160a01b0386166000908152601e602052604090205460ff600160a01b909204821615911680611d0357506001600160a01b0385166000908152601e602052604090205460ff165b15611d0c575060005b60008115611f55576001600160a01b038616600090815260208052604090205460ff168015611d3d57506000601454115b15611e2b57611d626064611d5c6014548861242d90919063ffffffff16565b906116a4565b905060145460155482611d759190612941565b611d7f9190612958565b60196000828254611d90919061297a565b9091555050601454601754611da59083612941565b611daf9190612958565b601b6000828254611dc0919061297a565b9091555050601454601854611dd59083612941565b611ddf9190612958565b601c6000828254611df0919061297a565b9091555050601454601654611e059083612941565b611e0f9190612958565b601a6000828254611e20919061297a565b90915550611f379050565b6001600160a01b038716600090815260208052604090205460ff168015611e5457506000600f54115b15611f3757611e736064611d5c600f548861242d90919063ffffffff16565b9050600f5460105482611e869190612941565b611e909190612958565b60196000828254611ea1919061297a565b9091555050600f54601254611eb69083612941565b611ec09190612958565b601b6000828254611ed1919061297a565b9091555050600f54601354611ee69083612941565b611ef09190612958565b601c6000828254611f01919061297a565b9091555050600f54601154611f169083612941565b611f209190612958565b601a6000828254611f31919061297a565b90915550505b8015611f4857611f4887308361200e565b611f528186612a15565b94505b611f6087878761200e565b50505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0382166000818152602080526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6001600160a01b0383166120345760405162461bcd60e51b8152600401610bbb9061298d565b6001600160a01b03821661205a5760405162461bcd60e51b8152600401610bbb906129d2565b6001600160a01b038316600090815260208190526040902054818110156120d25760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610bbb565b6001600160a01b0380851660009081526020819052604080822085850390559185168152908120805484929061210990849061297a565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161215591815260200190565b60405180910390a350505050565b3060009081526020819052604081205490506000601c54601a54601b5460195461218d919061297a565b612197919061297a565b6121a1919061297a565b905060008215806121b0575081155b156121ba57505050565b600a546121c8906014612941565b8311156121e057600a546121dd906014612941565b92505b6000600283601b54866121f39190612941565b6121fd9190612958565b6122079190612958565b905060006122158583612439565b90504761222182612445565b600061222d4783612439565b9050600061224a87611d5c6019548561242d90919063ffffffff16565b9050600061226788611d5c601a548661242d90919063ffffffff16565b9050600061228489611d5c601c548761242d90919063ffffffff16565b9050600081836122948688612a15565b61229e9190612a15565b6122a89190612a15565b6000601b8190556019819055601a819055601c8190556008546040519293506001600160a01b031691849181818185875af1925050503d806000811461230a576040519150601f19603f3d011682016040523d82523d6000602084013e61230f565b606091505b5050600754604051919a506001600160a01b0316908490600081818185875af1925050503d806000811461235f576040519150601f19603f3d011682016040523d82523d6000602084013e612364565b606091505b509099505087158015906123785750600081115b156123cb576123878882612605565b601b54604080518981526020810184905280820192909252517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15b6006546040516001600160a01b03909116904790600081818185875af1925050503d8060008114612418576040519150601f19603f3d011682016040523d82523d6000602084013e61241d565b606091505b5050505050505050505050505050565b60006116b08284612941565b60006116b08284612a15565b604080516002808252606082018352600092602083019080368337019050509050308160008151811061247a5761247a612a28565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156124f8573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061251c9190612a3e565b8160018151811061252f5761252f612a28565b60200260200101906001600160a01b031690816001600160a01b03168152505061257a307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611580565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac947906125cf908590600090869030904290600401612a5b565b600060405180830381600087803b1580156125e957600080fd5b505af11580156125fd573d6000803e3d6000fd5b505050505050565b612630307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611580565b60085460405163f305d71960e01b81523060048201526024810184905260006044820181905260648201526001600160a01b0391821660848201524260a48201527f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d9091169063f305d71990839060c40160606040518083038185885af11580156126bf573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906126e49190612acc565b5050505050565b600060208083528351808285015260005b81811015612718578581018301518582016040015282016126fc565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b0381168114610bc457600080fd5b6000806040838503121561276157600080fd5b823561276c81612739565b946020939093013593505050565b60006020828403121561278c57600080fd5b5035919050565b6000602082840312156127a557600080fd5b81356116b081612739565b6000806000606084860312156127c557600080fd5b83356127d081612739565b925060208401356127e081612739565b929592945050506040919091013590565b6000806000806080858703121561280757600080fd5b5050823594602084013594506040840135936060013592509050565b803580151581146113dd57600080fd5b6000806040838503121561284657600080fd5b823561285181612739565b915061285f60208401612823565b90509250929050565b60006020828403121561287a57600080fd5b6116b082612823565b6000806040838503121561289657600080fd5b82356128a181612739565b915060208301356128b181612739565b809150509250929050565b600181811c908216806128d057607f821691505b6020821081036128f057634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b8082028115828204841417610b4057610b4061292b565b60008261297557634e487b7160e01b600052601260045260246000fd5b500490565b80820180821115610b4057610b4061292b565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b81810381811115610b4057610b4061292b565b634e487b7160e01b600052603260045260246000fd5b600060208284031215612a5057600080fd5b81516116b081612739565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015612aab5784516001600160a01b031683529383019391830191600101612a86565b50506001600160a01b03969096166060850152505050608001529392505050565b600080600060608486031215612ae157600080fd5b835192506020840151915060408401519050925092509256fea26469706673582212203ccb58e93ce6b70e368486525ff0be7b1b06fae635a8fe050c09f485696adbbd64736f6c63430008110033

Deployed Bytecode Sourcemap

32728:16771:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9685:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11852:169;;;;;;;;;;-1:-1:-1;11852:169:0;;;;;:::i;:::-;;:::i;:::-;;;1188:14:1;;1181:22;1163:41;;1151:2;1136:18;11852:169:0;1023:187:1;33769:29:0;;;;;;;;;;;;;;;;;;;1361:25:1;;;1349:2;1334:18;33769:29:0;1215:177:1;40586:205:0;;;;;;;;;;-1:-1:-1;40586:205:0;;;;;:::i;:::-;;:::i;:::-;;34245:63;;;;;;;;;;-1:-1:-1;34245:63:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;32807:51;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;2025:32:1;;;2007:51;;1995:2;1980:18;32807:51:0;1834:230:1;10805:108:0;;;;;;;;;;-1:-1:-1;10893:12:0;;10805:108;;33990:33;;;;;;;;;;;;;;;;33950;;;;;;;;;;;;;;;;38644:275;;;;;;;;;;-1:-1:-1;38644:275:0;;;;;:::i;:::-;;:::i;12503:492::-;;;;;;;;;;-1:-1:-1;12503:492:0;;;;;:::i;:::-;;:::i;32910:53::-;;;;;;;;;;;;32956:6;32910:53;;39563:498;;;;;;;;;;-1:-1:-1;39563:498:0;;;;;:::i;:::-;;:::i;10647:93::-;;;;;;;;;;-1:-1:-1;10647:93:0;;10730:2;3270:36:1;;3258:2;3243:18;10647:93:0;3128:184:1;13404:215:0;;;;;;;;;;-1:-1:-1;13404:215:0;;;;;:::i;:::-;;:::i;33912:31::-;;;;;;;;;;;;;;;;32865:38;;;;;;;;;;;;;;;33219:33;;;;;;;;;;-1:-1:-1;33219:33:0;;;;;;;;41497:126;;;;;;;;;;-1:-1:-1;41497:126:0;;;;;:::i;:::-;-1:-1:-1;;;;;41587:28:0;41563:4;41587:28;;;:19;:28;;;;;;;;;41497:126;33298:30;;;;;;;;;;-1:-1:-1;33298:30:0;;;;;;;;;;;33736:29;;;;;;;;;;;;;;;;10976:127;;;;;;;;;;-1:-1:-1;10976:127:0;;;;;:::i;:::-;-1:-1:-1;;;;;11077:18:0;11050:7;11077:18;;;;;;;;;;;;10976:127;2920:103;;;;;;;;;;;;;:::i;37752:121::-;;;;;;;;;;;;;:::i;39192:167::-;;;;;;;;;;-1:-1:-1;39192:167:0;;;;;:::i;:::-;;:::i;33034:30::-;;;;;;;;;;-1:-1:-1;33034:30:0;;;;-1:-1:-1;;;;;33034:30:0;;;32999:28;;;;;;;;;;-1:-1:-1;32999:28:0;;;;-1:-1:-1;;;;;32999:28:0;;;33629:30;;;;;;;;;;;;;;;;37588:112;;;;;;;;;;;;;:::i;2269:87::-;;;;;;;;;;-1:-1:-1;2342:6:0;;-1:-1:-1;;;;;2342:6:0;2269:87;;33071:24;;;;;;;;;;-1:-1:-1;33071:24:0;;;;-1:-1:-1;;;;;33071:24:0;;;33805:31;;;;;;;;;;;;;;;;39455:100;;;;;;;;;;-1:-1:-1;39455:100:0;;;;;:::i;:::-;;:::i;9904:104::-;;;;;;;;;;;;;:::i;34064:32::-;;;;;;;;;;;;;;;;40989:304;;;;;;;;;;-1:-1:-1;40989:304:0;;;;;:::i;:::-;;:::i;33703:24::-;;;;;;;;;;;;;;;;34030:27;;;;;;;;;;;;;;;;33881:25;;;;;;;;;;;;;;;;33594:28;;;;;;;;;;;;;;;;14122:413;;;;;;;;;;-1:-1:-1;14122:413:0;;;;;:::i;:::-;;:::i;11316:175::-;;;;;;;;;;-1:-1:-1;11316:175:0;;;;;:::i;:::-;;:::i;34466:57::-;;;;;;;;;;-1:-1:-1;34466:57:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;33259:32;;;;;;;;;;-1:-1:-1;33259:32:0;;;;;;;;;;;40799:182;;;;;;;;;;-1:-1:-1;40799:182:0;;;;;:::i;:::-;;:::i;38927:256::-;;;;;;;;;;-1:-1:-1;38927:256:0;;;;;:::i;:::-;;:::i;33515:39::-;;;;;;;;;;-1:-1:-1;33515:39:0;;;;;;;;33104:35;;;;;;;;;;;;;;;;38139:497;;;;;;;;;;-1:-1:-1;38139:497:0;;;;;:::i;:::-;;:::i;33563:27::-;;;;;;;;;;;;;;;;11554:151;;;;;;;;;;-1:-1:-1;11554:151:0;;;;;:::i;:::-;-1:-1:-1;;;;;11670:18:0;;;11643:7;11670:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;11554:151;33146:33;;;;;;;;;;;;;;;;40069:509;;;;;;;;;;-1:-1:-1;40069:509:0;;;;;:::i;:::-;;:::i;37934:135::-;;;;;;;;;;;;;:::i;33666:30::-;;;;;;;;;;;;;;;;3178:201;;;;;;;;;;-1:-1:-1;3178:201:0;;;;;:::i;:::-;;:::i;33843:31::-;;;;;;;;;;;;;;;;33186:24;;;;;;;;;;;;;;;;9685:100;9739:13;9772:5;9765:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9685:100;:::o;11852:169::-;11935:4;11952:39;1022:10;11975:7;11984:6;11952:8;:39::i;:::-;-1:-1:-1;12009:4:0;11852:169;;;;;:::o;40586:205::-;40654:14;:25;;;40716:11;;:18;;40732:1;40716:15;:18::i;:::-;40698:14;;:36;;40690:93;;;;-1:-1:-1;;;40690:93:0;;4967:2:1;40690:93:0;;;4949:21:1;5006:2;4986:18;;;4979:30;5045:34;5025:18;;;5018:62;-1:-1:-1;;;5096:18:1;;;5089:42;5148:19;;40690:93:0;;;;;;;;;40586:205;:::o;38644:275::-;2342:6;;-1:-1:-1;;;;;2342:6:0;1022:10;2489:23;2481:68;;;;-1:-1:-1;;;2481:68:0;;;;;;;:::i;:::-;38781:4:::1;38773;38752:13;10893:12:::0;;;10805:108;38752:13:::1;:17;::::0;38768:1:::1;38752:17;:::i;:::-;38751:26;;;;:::i;:::-;38750:35;;;;:::i;:::-;38740:6;:45;;38718:142;;;::::0;-1:-1:-1;;;38718:142:0;;6268:2:1;38718:142:0::1;::::0;::::1;6250:21:1::0;6307:2;6287:18;;;6280:30;6346:34;6326:18;;;6319:62;-1:-1:-1;;;6397:18:1;;;6390:45;6452:19;;38718:142:0::1;6066:411:1::0;38718:142:0::1;38894:17;:6:::0;38904::::1;38894:17;:::i;:::-;38871:20;:40:::0;-1:-1:-1;38644:275:0:o;12503:492::-;12643:4;12660:36;12670:6;12678:9;12689:6;12660:9;:36::i;:::-;-1:-1:-1;;;;;12736:19:0;;12709:24;12736:19;;;:11;:19;;;;;;;;1022:10;12736:33;;;;;;;;12788:26;;;;12780:79;;;;-1:-1:-1;;;12780:79:0;;6684:2:1;12780:79:0;;;6666:21:1;6723:2;6703:18;;;6696:30;6762:34;6742:18;;;6735:62;-1:-1:-1;;;6813:18:1;;;6806:38;6861:19;;12780:79:0;6482:404:1;12780:79:0;12895:57;12904:6;1022:10;12945:6;12926:16;:25;12895:8;:57::i;:::-;-1:-1:-1;12983:4:0;;12503:492;-1:-1:-1;;;;12503:492:0:o;39563:498::-;2342:6;;-1:-1:-1;;;;;2342:6:0;1022:10;2489:23;2481:68;;;;-1:-1:-1;;;2481:68:0;;;;;;;:::i;:::-;39798:2:::1;39786:7:::0;39770:13;39740:27:::1;39754:13:::0;39740:11;:27:::1;:::i;:::-;:43;;;;:::i;:::-;:53;;;;:::i;:::-;39739:61;;39731:88;;;::::0;-1:-1:-1;;;39731:88:0;;7223:2:1;39731:88:0::1;::::0;::::1;7205:21:1::0;7262:2;7242:18;;;7235:30;-1:-1:-1;;;7281:18:1;;;7274:44;7335:18;;39731:88:0::1;7021:338:1::0;39731:88:0::1;39824:13;:27:::0;;;39862:15:::1;:31:::0;;;39904:15:::1;:31:::0;;;39946:9:::1;:19:::0;;;39958:7;39922:13;39991:31:::1;39880:13:::0;39840:11;39991:31:::1;:::i;:::-;:49;;;;:::i;:::-;:61;;;;:::i;:::-;39976:12;:76:::0;-1:-1:-1;;;;39563:498:0:o;13404:215::-;1022:10;13492:4;13541:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;13541:34:0;;;;;;;;;;13492:4;;13509:80;;13532:7;;13541:47;;13578:10;;13541:47;:::i;:::-;13509:8;:80::i;2920:103::-;2342:6;;-1:-1:-1;;;;;2342:6:0;1022:10;2489:23;2481:68;;;;-1:-1:-1;;;2481:68:0;;;;;;;:::i;:::-;2985:30:::1;3012:1;2985:18;:30::i;:::-;2920:103::o:0;37752:121::-;2342:6;;37804:4;;-1:-1:-1;;;;;2342:6:0;1022:10;2489:23;2481:68;;;;-1:-1:-1;;;2481:68:0;;;;;;;:::i;:::-;-1:-1:-1;37821:14:0::1;:22:::0;;-1:-1:-1;;37821:22:0::1;::::0;;;37752:121;:::o;39192:167::-;2342:6;;-1:-1:-1;;;;;2342:6:0;1022:10;2489:23;2481:68;;;;-1:-1:-1;;;2481:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;39305:39:0;;;::::1;;::::0;;;:31:::1;:39;::::0;;;;:46;;-1:-1:-1;;39305:46:0::1;::::0;::::1;;::::0;;;::::1;::::0;;39192:167::o;37588:112::-;2342:6;;-1:-1:-1;;;;;2342:6:0;1022:10;2489:23;2481:68;;;;-1:-1:-1;;;2481:68:0;;;;;;;:::i;:::-;37643:13:::1;:20:::0;;-1:-1:-1;;37674:18:0;;;;;37588:112::o;39455:100::-;2342:6;;-1:-1:-1;;;;;2342:6:0;1022:10;2489:23;2481:68;;;;-1:-1:-1;;;2481:68:0;;;;;;;:::i;:::-;39526:11:::1;:21:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;39526:21:0;;::::1;::::0;;;::::1;::::0;;39455:100::o;9904:104::-;9960:13;9993:7;9986:14;;;;;:::i;40989:304::-;2342:6;;-1:-1:-1;;;;;2342:6:0;1022:10;2489:23;2481:68;;;;-1:-1:-1;;;2481:68:0;;;;;;;:::i;:::-;41133:13:::1;-1:-1:-1::0;;;;;41125:21:0::1;:4;-1:-1:-1::0;;;;;41125:21:0::1;::::0;41103:128:::1;;;::::0;-1:-1:-1;;;41103:128:0;;7566:2:1;41103:128:0::1;::::0;::::1;7548:21:1::0;7605:2;7585:18;;;7578:30;7644:34;7624:18;;;7617:62;7715:27;7695:18;;;7688:55;7760:19;;41103:128:0::1;7364:421:1::0;41103:128:0::1;41244:41;41273:4;41279:5;41244:28;:41::i;:::-;40989:304:::0;;:::o;14122:413::-;1022:10;14215:4;14259:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;14259:34:0;;;;;;;;;;14312:35;;;;14304:85;;;;-1:-1:-1;;;14304:85:0;;7992:2:1;14304:85:0;;;7974:21:1;8031:2;8011:18;;;8004:30;8070:34;8050:18;;;8043:62;-1:-1:-1;;;8121:18:1;;;8114:35;8166:19;;14304:85:0;7790:401:1;14304:85:0;14425:67;1022:10;14448:7;14476:15;14457:16;:34;14425:8;:67::i;:::-;-1:-1:-1;14523:4:0;;14122:413;-1:-1:-1;;;14122:413:0:o;11316:175::-;11402:4;11419:42;1022:10;11443:9;11454:6;11419:9;:42::i;40799:182::-;2342:6;;-1:-1:-1;;;;;2342:6:0;1022:10;2489:23;2481:68;;;;-1:-1:-1;;;2481:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;40884:28:0;::::1;;::::0;;;:19:::1;:28;::::0;;;;;;;;:39;;-1:-1:-1;;40884:39:0::1;::::0;::::1;;::::0;;::::1;::::0;;;40939:34;;1163:41:1;;;40939:34:0::1;::::0;1136:18:1;40939:34:0::1;;;;;;;40799:182:::0;;:::o;38927:256::-;2342:6;;-1:-1:-1;;;;;2342:6:0;1022:10;2489:23;2481:68;;;;-1:-1:-1;;;2481:68:0;;;;;;;:::i;:::-;39067:4:::1;39059;39038:13;10893:12:::0;;;10805:108;39038:13:::1;:17;::::0;39054:1:::1;39038:17;:::i;:::-;39037:26;;;;:::i;:::-;39036:35;;;;:::i;:::-;39026:6;:45;;39004:131;;;::::0;-1:-1:-1;;;39004:131:0;;8398:2:1;39004:131:0::1;::::0;::::1;8380:21:1::0;8437:2;8417:18;;;8410:30;8476:34;8456:18;;;8449:62;-1:-1:-1;;;8527:18:1;;;8520:34;8571:19;;39004:131:0::1;8196:400:1::0;39004:131:0::1;39158:17;:6:::0;39168::::1;39158:17;:::i;:::-;39146:9;:29:::0;-1:-1:-1;38927:256:0:o;38139:497::-;2342:6;;38247:4;;-1:-1:-1;;;;;2342:6:0;1022:10;2489:23;2481:68;;;;-1:-1:-1;;;2481:68:0;;;;;;;:::i;:::-;38326:6:::1;38305:13;10893:12:::0;;;10805:108;38305:13:::1;:17;::::0;38321:1:::1;38305:17;:::i;:::-;38304:28;;;;:::i;:::-;38291:9;:41;;38269:144;;;::::0;-1:-1:-1;;;38269:144:0;;8803:2:1;38269:144:0::1;::::0;::::1;8785:21:1::0;8842:2;8822:18;;;8815:30;8881:34;8861:18;;;8854:62;-1:-1:-1;;;8932:18:1;;;8925:51;8993:19;;38269:144:0::1;8601:417:1::0;38269:144:0::1;38481:4;38460:13;10893:12:::0;;;10805:108;38460:13:::1;:17;::::0;38476:1:::1;38460:17;:::i;:::-;38459:26;;;;:::i;:::-;38446:9;:39;;38424:141;;;::::0;-1:-1:-1;;;38424:141:0;;9225:2:1;38424:141:0::1;::::0;::::1;9207:21:1::0;9264:2;9244:18;;;9237:30;9303:34;9283:18;;;9276:62;-1:-1:-1;;;9354:18:1;;;9347:50;9414:19;;38424:141:0::1;9023:416:1::0;38424:141:0::1;-1:-1:-1::0;38576:18:0::1;:30:::0;;;38624:4:::1;2560:1;38139:497:::0;;;:::o;40069:509::-;2342:6;;-1:-1:-1;;;;;2342:6:0;1022:10;2489:23;2481:68;;;;-1:-1:-1;;;2481:68:0;;;;;;;:::i;:::-;40305:2:::1;40293:7:::0;40277:13;40247:27:::1;40261:13:::0;40247:11;:27:::1;:::i;:::-;:43;;;;:::i;:::-;:53;;;;:::i;:::-;40246:61;;40238:89;;;::::0;-1:-1:-1;;;40238:89:0;;9646:2:1;40238:89:0::1;::::0;::::1;9628:21:1::0;9685:2;9665:18;;;9658:30;-1:-1:-1;;;9704:18:1;;;9697:45;9759:18;;40238:89:0::1;9444:339:1::0;40238:89:0::1;40332:14;:28:::0;;;40371:16:::1;:32:::0;;;40414:16:::1;:32:::0;;;40457:10:::1;:20:::0;;;40470:7;40433:13;40505:33:::1;40390:13:::0;40349:11;40505:33:::1;:::i;:::-;:52;;;;:::i;:::-;:65;;;;:::i;:::-;40488:14;:82:::0;-1:-1:-1;;;;40069:509:0:o;37934:135::-;2342:6;;37994:4;;-1:-1:-1;;;;;2342:6:0;1022:10;2489:23;2481:68;;;;-1:-1:-1;;;2481:68:0;;;;;;;:::i;:::-;-1:-1:-1;38011:20:0::1;:28:::0;;-1:-1:-1;;38011:28:0::1;::::0;;;37934:135;:::o;3178:201::-;2342:6;;-1:-1:-1;;;;;2342:6:0;1022:10;2489:23;2481:68;;;;-1:-1:-1;;;2481:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;3267:22:0;::::1;3259:73;;;::::0;-1:-1:-1;;;3259:73:0;;9990:2:1;3259:73:0::1;::::0;::::1;9972:21:1::0;10029:2;10009:18;;;10002:30;10068:34;10048:18;;;10041:62;-1:-1:-1;;;10119:18:1;;;10112:36;10165:19;;3259:73:0::1;9788:402:1::0;3259:73:0::1;3343:28;3362:8;3343:18;:28::i;17806:380::-:0;-1:-1:-1;;;;;17942:19:0;;17934:68;;;;-1:-1:-1;;;17934:68:0;;10397:2:1;17934:68:0;;;10379:21:1;10436:2;10416:18;;;10409:30;10475:34;10455:18;;;10448:62;-1:-1:-1;;;10526:18:1;;;10519:34;10570:19;;17934:68:0;10195:400:1;17934:68:0;-1:-1:-1;;;;;18021:21:0;;18013:68;;;;-1:-1:-1;;;18013:68:0;;10802:2:1;18013:68:0;;;10784:21:1;10841:2;10821:18;;;10814:30;10880:34;10860:18;;;10853:62;-1:-1:-1;;;10931:18:1;;;10924:32;10973:19;;18013:68:0;10600:398:1;18013:68:0;-1:-1:-1;;;;;18094:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;18146:32;;1361:25:1;;;18146:32:0;;1334:18:1;18146:32:0;;;;;;;17806:380;;;:::o;23658:98::-;23716:7;23743:5;23747:1;23743;:5;:::i;:::-;23736:12;23658:98;-1:-1:-1;;;23658:98:0:o;41631:4853::-;-1:-1:-1;;;;;41763:18:0;;41755:68;;;;-1:-1:-1;;;41755:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;41842:16:0;;41834:64;;;;-1:-1:-1;;;41834:64:0;;;;;;;:::i;:::-;41915:6;41925:1;41915:11;41911:93;;41943:28;41959:4;41965:2;41969:1;41943:15;:28::i;:::-;41631:4853;;;:::o;41911:93::-;42020:14;;;;42016:2487;;;2342:6;;-1:-1:-1;;;;;42073:15:0;;;2342:6;;42073:15;;;;:49;;-1:-1:-1;2342:6:0;;-1:-1:-1;;;;;42109:13:0;;;2342:6;;42109:13;;42073:49;:86;;;;-1:-1:-1;;;;;;42143:16:0;;;;42073:86;:128;;;;-1:-1:-1;;;;;;42180:21:0;;42194:6;42180:21;;42073:128;:158;;;;-1:-1:-1;42223:8:0;;-1:-1:-1;;;42223:8:0;;;;42222:9;42073:158;42051:2441;;;42271:13;;;;;;;42266:223;;-1:-1:-1;;;;;42343:25:0;;;;;;:19;:25;;;;;;;;;:52;;-1:-1:-1;;;;;;42372:23:0;;;;;;:19;:23;;;;;;;;42343:52;42309:160;;;;-1:-1:-1;;;42309:160:0;;12015:2:1;42309:160:0;;;11997:21:1;12054:2;12034:18;;;12027:30;-1:-1:-1;;;12073:18:1;;;12066:52;12135:18;;42309:160:0;11813:346:1;42309:160:0;42645:20;;;;42641:641;;;2342:6;;-1:-1:-1;;;;;42720:13:0;;;2342:6;;42720:13;;;;:72;;;42776:15;-1:-1:-1;;;;;42762:30:0;:2;-1:-1:-1;;;;;42762:30:0;;;42720:72;:129;;;;;42835:13;-1:-1:-1;;;;;42821:28:0;:2;-1:-1:-1;;;;;42821:28:0;;;42720:129;42690:573;;;42967:9;42938:39;;;;:28;:39;;;;;;43013:12;-1:-1:-1;42900:258:0;;;;-1:-1:-1;;;42900:258:0;;12366:2:1;42900:258:0;;;12348:21:1;12405:2;12385:18;;;12378:30;12444:34;12424:18;;;12417:62;12515:34;12495:18;;;12488:62;-1:-1:-1;;;12566:19:1;;;12559:40;12616:19;;42900:258:0;12164:477:1;42900:258:0;43214:9;43185:39;;;;:28;:39;;;;;43227:12;43185:54;;42690:573;-1:-1:-1;;;;;43356:31:0;;;;;;:25;:31;;;;;;;;:92;;;;-1:-1:-1;;;;;;43413:35:0;;;;;;:31;:35;;;;;;;;43412:36;43356:92;43330:1147;;;43535:20;;43525:6;:30;;43491:169;;;;-1:-1:-1;;;43491:169:0;;12848:2:1;43491:169:0;;;12830:21:1;12887:2;12867:18;;;12860:30;12926:34;12906:18;;;12899:62;-1:-1:-1;;;12977:18:1;;;12970:51;13038:19;;43491:169:0;12646:417:1;43491:169:0;43743:9;;-1:-1:-1;;;;;11077:18:0;;11050:7;11077:18;;;;;;;;;;;43717:22;;:6;:22;:::i;:::-;:35;;43683:140;;;;-1:-1:-1;;;43683:140:0;;13270:2:1;43683:140:0;;;13252:21:1;13309:2;13289:18;;;13282:30;-1:-1:-1;;;13328:18:1;;;13321:49;13387:18;;43683:140:0;13068:343:1;43683:140:0;43330:1147;;;-1:-1:-1;;;;;43921:29:0;;;;;;:25;:29;;;;;;;;:92;;;;-1:-1:-1;;;;;;43976:37:0;;;;;;:31;:37;;;;;;;;43975:38;43921:92;43895:582;;;44100:20;;44090:6;:30;;44056:170;;;;-1:-1:-1;;;44056:170:0;;13618:2:1;44056:170:0;;;13600:21:1;13657:2;13637:18;;;13630:30;13696:34;13676:18;;;13669:62;-1:-1:-1;;;13747:18:1;;;13740:52;13809:19;;44056:170:0;13416:418:1;43895:582:0;-1:-1:-1;;;;;44257:35:0;;;;;;:31;:35;;;;;;;;44252:225;;44377:9;;-1:-1:-1;;;;;11077:18:0;;11050:7;11077:18;;;;;;;;;;;44351:22;;:6;:22;:::i;:::-;:35;;44317:140;;;;-1:-1:-1;;;44317:140:0;;13270:2:1;44317:140:0;;;13252:21:1;13309:2;13289:18;;;13282:30;-1:-1:-1;;;13328:18:1;;;13321:49;13387:18;;44317:140:0;13068:343:1;44317:140:0;44564:4;44515:28;11077:18;;;;;;;;;;;44622;;44598:42;;;;;;;44671:35;;-1:-1:-1;44695:11:0;;;;;;;44671:35;:61;;;;-1:-1:-1;44724:8:0;;-1:-1:-1;;;44724:8:0;;;;44723:9;44671:61;:110;;;;-1:-1:-1;;;;;;44750:31:0;;;;;;:25;:31;;;;;;;;44749:32;44671:110;:153;;;;-1:-1:-1;;;;;;44799:25:0;;;;;;:19;:25;;;;;;;;44798:26;44671:153;:194;;;;-1:-1:-1;;;;;;44842:23:0;;;;;;:19;:23;;;;;;;;44841:24;44671:194;44653:326;;;44892:8;:15;;-1:-1:-1;;;;44892:15:0;-1:-1:-1;;;44892:15:0;;;44924:10;:8;:10::i;:::-;44951:8;:16;;-1:-1:-1;;;;44951:16:0;;;44653:326;45007:8;;-1:-1:-1;;;;;45117:25:0;;44991:12;45117:25;;;:19;:25;;;;;;45007:8;-1:-1:-1;;;45007:8:0;;;;;45006:9;;45117:25;;:52;;-1:-1:-1;;;;;;45146:23:0;;;;;;:19;:23;;;;;;;;45117:52;45113:100;;;-1:-1:-1;45196:5:0;45113:100;45225:12;45330:7;45326:1105;;;-1:-1:-1;;;;;45382:29:0;;;;;;:25;:29;;;;;;;;:51;;;;;45432:1;45415:14;;:18;45382:51;45378:904;;;45461:35;45492:3;45461:26;45472:14;;45461:6;:10;;:26;;;;:::i;:::-;:30;;:35::i;:::-;45454:42;;45549:14;;45531;;45524:4;:21;;;;:::i;:::-;45523:40;;;;:::i;:::-;45503:16;;:60;;;;;;;:::i;:::-;;;;-1:-1:-1;;45632:14:0;;45612:16;;45605:23;;:4;:23;:::i;:::-;45604:42;;;;:::i;:::-;45582:18;;:64;;;;;;;:::i;:::-;;;;-1:-1:-1;;45703:14:0;;45689:10;;45682:17;;:4;:17;:::i;:::-;45681:36;;;;:::i;:::-;45665:12;;:52;;;;;;;:::i;:::-;;;;-1:-1:-1;;45786:14:0;;45766:16;;45759:23;;:4;:23;:::i;:::-;45758:42;;;;:::i;:::-;45736:18;;:64;;;;;;;:::i;:::-;;;;-1:-1:-1;45378:904:0;;-1:-1:-1;45378:904:0;;-1:-1:-1;;;;;45862:31:0;;;;;;:25;:31;;;;;;;;:51;;;;;45912:1;45897:12;;:16;45862:51;45858:424;;;45941:33;45970:3;45941:24;45952:12;;45941:6;:10;;:24;;;;:::i;:33::-;45934:40;;46026:12;;46009:13;;46002:4;:20;;;;:::i;:::-;46001:37;;;;:::i;:::-;45981:16;;:57;;;;;;;:::i;:::-;;;;-1:-1:-1;;46106:12:0;;46087:15;;46080:22;;:4;:22;:::i;:::-;46079:39;;;;:::i;:::-;46057:18;;:61;;;;;;;:::i;:::-;;;;-1:-1:-1;;46174:12:0;;46161:9;;46154:16;;:4;:16;:::i;:::-;46153:33;;;;:::i;:::-;46137:12;;:49;;;;;;;:::i;:::-;;;;-1:-1:-1;;46254:12:0;;46235:15;;46228:22;;:4;:22;:::i;:::-;46227:39;;;;:::i;:::-;46205:18;;:61;;;;;;;:::i;:::-;;;;-1:-1:-1;;45858:424:0;46302:8;;46298:91;;46331:42;46347:4;46361;46368;46331:15;:42::i;:::-;46405:14;46415:4;46405:14;;:::i;:::-;;;45326:1105;46443:33;46459:4;46465:2;46469:6;46443:15;:33::i;:::-;41744:4740;;;;41631:4853;;;:::o;3539:191::-;3632:6;;;-1:-1:-1;;;;;3649:17:0;;;-1:-1:-1;;;;;;3649:17:0;;;;;;;3682:40;;3632:6;;;3649:17;3632:6;;3682:40;;3613:16;;3682:40;3602:128;3539:191;:::o;41301:188::-;-1:-1:-1;;;;;41384:31:0;;;;;;:25;:31;;;;;;:39;;-1:-1:-1;;41384:39:0;;;;;;;;;;41441:40;;41384:39;;:31;41441:40;;;41301:188;;:::o;15025:733::-;-1:-1:-1;;;;;15165:20:0;;15157:70;;;;-1:-1:-1;;;15157:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;15246:23:0;;15238:71;;;;-1:-1:-1;;;15238:71:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;15406:17:0;;15382:21;15406:17;;;;;;;;;;;15442:23;;;;15434:74;;;;-1:-1:-1;;;15434:74:0;;14174:2:1;15434:74:0;;;14156:21:1;14213:2;14193:18;;;14186:30;14252:34;14232:18;;;14225:62;-1:-1:-1;;;14303:18:1;;;14296:36;14349:19;;15434:74:0;13972:402:1;15434:74:0;-1:-1:-1;;;;;15544:17:0;;;:9;:17;;;;;;;;;;;15564:22;;;15544:42;;15608:20;;;;;;;;:30;;15580:6;;15544:9;15608:30;;15580:6;;15608:30;:::i;:::-;;;;;;;;15673:9;-1:-1:-1;;;;;15656:35:0;15665:6;-1:-1:-1;;;;;15656:35:0;;15684:6;15656:35;;;;1361:25:1;;1349:2;1334:18;;1215:177;15656:35:0;;;;;;;;15146:612;15025:733;;;:::o;47612:1882::-;47695:4;47651:23;11077:18;;;;;;;;;;;47651:50;;47712:25;47801:12;;47780:18;;47759;;47740:16;;:37;;;;:::i;:::-;:58;;;;:::i;:::-;:73;;;;:::i;:::-;47712:101;-1:-1:-1;47824:12:0;47853:20;;;:46;;-1:-1:-1;47877:22:0;;47853:46;47849:85;;;47916:7;;;47612:1882::o;47849:85::-;47968:18;;:23;;47989:2;47968:23;:::i;:::-;47950:15;:41;47946:115;;;48026:18;;:23;;48047:2;48026:23;:::i;:::-;48008:41;;47946:115;48122:23;48209:1;48189:17;48167:18;;48149:15;:36;;;;:::i;:::-;48148:58;;;;:::i;:::-;:62;;;;:::i;:::-;48122:88;-1:-1:-1;48221:26:0;48250:36;:15;48122:88;48250:19;:36::i;:::-;48221:65;-1:-1:-1;48327:21:0;48361:36;48221:65;48361:16;:36::i;:::-;48410:18;48431:44;:21;48457:17;48431:25;:44::i;:::-;48410:65;;48482:21;48506:55;48543:17;48506:32;48521:16;;48506:10;:14;;:32;;;;:::i;:55::-;48482:79;;48572:23;48598:57;48637:17;48598:34;48613:18;;48598:10;:14;;:34;;;;:::i;:57::-;48572:83;;48666:17;48686:51;48719:17;48686:28;48701:12;;48686:10;:14;;:28;;;;:::i;:51::-;48666:71;-1:-1:-1;48750:23:0;48666:71;48805:15;48776:26;48789:13;48776:10;:26;:::i;:::-;:44;;;;:::i;:::-;:56;;;;:::i;:::-;48866:1;48845:18;:22;;;48872:16;:20;;;48903:18;:22;;;48936:12;:16;;;48987:9;;48979:45;;48750:82;;-1:-1:-1;;;;;;48987:9:0;;49010;;48979:45;48866:1;48979:45;49010:9;48987;48979:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;49057:15:0;;49049:57;;48965:59;;-1:-1:-1;;;;;;49057:15:0;;49086;;49049:57;;;;49086:15;49057;49049:57;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;49035:71:0;;-1:-1:-1;;49125:19:0;;;;;:42;;;49166:1;49148:15;:19;49125:42;49121:278;;;49184:46;49197:15;49214;49184:12;:46::i;:::-;49354:18;;49250:137;;;14791:25:1;;;14847:2;14832:18;;14825:34;;;14875:18;;;14868:34;;;;49250:137:0;;;;;;14779:2:1;49250:137:0;;;49121:278;49433:13;;49425:61;;-1:-1:-1;;;;;49433:13:0;;;;49460:21;;49425:61;;;;49460:21;49433:13;49425:61;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;;;;47612:1882:0:o;23259:98::-;23317:7;23344:5;23348:1;23344;:5;:::i;22902:98::-;22960:7;22987:5;22991:1;22987;:5;:::i;46492:589::-;46642:16;;;46656:1;46642:16;;;;;;;;46618:21;;46642:16;;;;;;;;;;-1:-1:-1;46642:16:0;46618:40;;46687:4;46669;46674:1;46669:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;46669:23:0;;;-1:-1:-1;;;;;46669:23:0;;;;;46713:15;-1:-1:-1;;;;;46713:20:0;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;46703:4;46708:1;46703:7;;;;;;;;:::i;:::-;;;;;;:32;-1:-1:-1;;;;;46703:32:0;;;-1:-1:-1;;;;;46703:32:0;;;;;46748:62;46765:4;46780:15;46798:11;46748:8;:62::i;:::-;46849:224;;-1:-1:-1;;;46849:224:0;;-1:-1:-1;;;;;46849:15:0;:66;;;;:224;;46930:11;;46956:1;;47000:4;;47027;;47047:15;;46849:224;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46547:534;46492:589;:::o;47089:515::-;47237:62;47254:4;47269:15;47287:11;47237:8;:62::i;:::-;47546:9;;47342:254;;-1:-1:-1;;;47342:254:0;;47414:4;47342:254;;;16759:34:1;16809:18;;;16802:34;;;47460:1:0;16852:18:1;;;16845:34;;;16895:18;;;16888:34;-1:-1:-1;;;;;47546:9:0;;;16938:19:1;;;16931:44;47570:15:0;16991:19:1;;;16984:35;47342:15:0;:31;;;;;;47381:9;;16693:19:1;;47342:254:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;47089:515;;:::o;14:548: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;;;298:3;483:1;478:2;469:6;458:9;454:22;450:31;443:42;553:2;546;542:7;537:2;529:6;525:15;521:29;510:9;506:45;502:54;494:62;;;;14:548;;;;:::o;567:131::-;-1:-1:-1;;;;;642:31:1;;632:42;;622:70;;688:1;685;678:12;703:315;771:6;779;832:2;820:9;811:7;807:23;803:32;800:52;;;848:1;845;838:12;800:52;887:9;874:23;906:31;931:5;906:31;:::i;:::-;956:5;1008:2;993:18;;;;980:32;;-1:-1:-1;;;703:315:1:o;1397:180::-;1456:6;1509:2;1497:9;1488:7;1484:23;1480:32;1477:52;;;1525:1;1522;1515:12;1477:52;-1:-1:-1;1548:23:1;;1397:180;-1:-1:-1;1397:180:1:o;1582:247::-;1641:6;1694:2;1682:9;1673:7;1669:23;1665:32;1662:52;;;1710:1;1707;1700:12;1662:52;1749:9;1736:23;1768:31;1793:5;1768:31;:::i;2069:456::-;2146:6;2154;2162;2215:2;2203:9;2194:7;2190:23;2186:32;2183:52;;;2231:1;2228;2221:12;2183:52;2270:9;2257:23;2289:31;2314:5;2289:31;:::i;:::-;2339:5;-1:-1:-1;2396:2:1;2381:18;;2368:32;2409:33;2368:32;2409:33;:::i;:::-;2069:456;;2461:7;;-1:-1:-1;;;2515:2:1;2500:18;;;;2487:32;;2069:456::o;2738:385::-;2824:6;2832;2840;2848;2901:3;2889:9;2880:7;2876:23;2872:33;2869:53;;;2918:1;2915;2908:12;2869:53;-1:-1:-1;;2941:23:1;;;3011:2;2996:18;;2983:32;;-1:-1:-1;3062:2:1;3047:18;;3034:32;;3113:2;3098:18;3085:32;;-1:-1:-1;2738:385:1;-1:-1:-1;2738:385:1:o;3317:160::-;3382:20;;3438:13;;3431:21;3421:32;;3411:60;;3467:1;3464;3457:12;3482:315;3547:6;3555;3608:2;3596:9;3587:7;3583:23;3579:32;3576:52;;;3624:1;3621;3614:12;3576:52;3663:9;3650:23;3682:31;3707:5;3682:31;:::i;:::-;3732:5;-1:-1:-1;3756:35:1;3787:2;3772:18;;3756:35;:::i;:::-;3746:45;;3482:315;;;;;:::o;3802:180::-;3858:6;3911:2;3899:9;3890:7;3886:23;3882:32;3879:52;;;3927:1;3924;3917:12;3879:52;3950:26;3966:9;3950:26;:::i;3987:388::-;4055:6;4063;4116:2;4104:9;4095:7;4091:23;4087:32;4084:52;;;4132:1;4129;4122:12;4084:52;4171:9;4158:23;4190:31;4215:5;4190:31;:::i;:::-;4240:5;-1:-1:-1;4297:2:1;4282:18;;4269:32;4310:33;4269:32;4310:33;:::i;:::-;4362:7;4352:17;;;3987:388;;;;;:::o;4380:380::-;4459:1;4455:12;;;;4502;;;4523:61;;4577:4;4569:6;4565:17;4555:27;;4523:61;4630:2;4622:6;4619:14;4599:18;4596:38;4593:161;;4676:10;4671:3;4667:20;4664:1;4657:31;4711:4;4708:1;4701:15;4739:4;4736:1;4729:15;4593:161;;4380:380;;;:::o;5178:356::-;5380:2;5362:21;;;5399:18;;;5392:30;5458:34;5453:2;5438:18;;5431:62;5525:2;5510:18;;5178:356::o;5539:127::-;5600:10;5595:3;5591:20;5588:1;5581:31;5631:4;5628:1;5621:15;5655:4;5652:1;5645:15;5671:168;5744:9;;;5775;;5792:15;;;5786:22;;5772:37;5762:71;;5813:18;;:::i;5844:217::-;5884:1;5910;5900:132;;5954:10;5949:3;5945:20;5942:1;5935:31;5989:4;5986:1;5979:15;6017:4;6014:1;6007:15;5900:132;-1:-1:-1;6046:9:1;;5844:217::o;6891:125::-;6956:9;;;6977:10;;;6974:36;;;6990:18;;:::i;11003:401::-;11205:2;11187:21;;;11244:2;11224:18;;;11217:30;11283:34;11278:2;11263:18;;11256:62;-1:-1:-1;;;11349:2:1;11334:18;;11327:35;11394:3;11379:19;;11003:401::o;11409:399::-;11611:2;11593:21;;;11650:2;11630:18;;;11623:30;11689:34;11684:2;11669:18;;11662:62;-1:-1:-1;;;11755:2:1;11740:18;;11733:33;11798:3;11783:19;;11409:399::o;13839:128::-;13906:9;;;13927:11;;;13924:37;;;13941:18;;:::i;15045:127::-;15106:10;15101:3;15097:20;15094:1;15087:31;15137:4;15134:1;15127:15;15161:4;15158:1;15151:15;15177:251;15247:6;15300:2;15288:9;15279:7;15275:23;15271:32;15268:52;;;15316:1;15313;15306:12;15268:52;15348:9;15342:16;15367:31;15392:5;15367:31;:::i;15433:980::-;15695:4;15743:3;15732:9;15728:19;15774:6;15763:9;15756:25;15800:2;15838:6;15833:2;15822:9;15818:18;15811:34;15881:3;15876:2;15865:9;15861:18;15854:31;15905:6;15940;15934:13;15971:6;15963;15956:22;16009:3;15998:9;15994:19;15987:26;;16048:2;16040:6;16036:15;16022:29;;16069:1;16079:195;16093:6;16090:1;16087:13;16079:195;;;16158:13;;-1:-1:-1;;;;;16154:39:1;16142:52;;16249:15;;;;16214:12;;;;16190:1;16108:9;16079:195;;;-1:-1:-1;;;;;;;16330:32:1;;;;16325:2;16310:18;;16303:60;-1:-1:-1;;;16394:3:1;16379:19;16372:35;16291:3;15433:980;-1:-1:-1;;;15433:980:1:o;17030:306::-;17118:6;17126;17134;17187:2;17175:9;17166:7;17162:23;17158:32;17155:52;;;17203:1;17200;17193:12;17155:52;17232:9;17226:16;17216:26;;17282:2;17271:9;17267:18;17261:25;17251:35;;17326:2;17315:9;17311:18;17305:25;17295:35;;17030:306;;;;;:::o

Swarm Source

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