ETH Price: $3,454.84 (-0.82%)
Gas: 1 Gwei

Token

0xHalal (HALAL)
 

Overview

Max Total Supply

100,000,000 HALAL

Holders

48

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
0.506316812422 HALAL

Value
$0.00
0x51dd1e3917941ea5102fa7f0bc806ece3e1049bb
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:
Halal

Compiler Version
v0.8.20+commit.a1b79de6

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-05-12
*/

/**

$HALAL
Certified by chads.
Trusted by the community.

Website  - https://0xhalal.com/
Twitter  - https://twitter.com/halaltokenerc/
Medium   - https://medium.com/@0xHalal
Telegram - https://t.me/halaltokenerc

*/

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

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

/* pragma solidity ^0.8.0; */

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

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

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

/* pragma solidity ^0.8.0; */

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

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

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

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

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

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

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

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

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

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

/* pragma solidity ^0.8.0; */

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

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

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

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

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

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

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

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

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

/* pragma solidity ^0.8.0; */

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

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

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

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

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

/* pragma solidity ^0.8.0; */

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

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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

        return true;
    }

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

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

        return true;
    }

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

        _beforeTokenTransfer(sender, recipient, amount);

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

        emit Transfer(sender, recipient, amount);

        _afterTokenTransfer(sender, recipient, amount);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* pragma solidity ^0.8.0; */

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    function feeTo() external view returns (address);

    function feeToSetter() external view returns (address);

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

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

    function allPairsLength() external view returns (uint256);

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

    function setFeeTo(address) external;

    function setFeeToSetter(address) external;
}

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

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

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

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

    function decimals() external pure returns (uint8);

    function totalSupply() external view returns (uint256);

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

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

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

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

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

    function DOMAIN_SEPARATOR() external view returns (bytes32);

    function PERMIT_TYPEHASH() external pure returns (bytes32);

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

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

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

    function MINIMUM_LIQUIDITY() external pure returns (uint256);

    function factory() external view returns (address);

    function token0() external view returns (address);

    function token1() external view returns (address);

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

    function price0CumulativeLast() external view returns (uint256);

    function price1CumulativeLast() external view returns (uint256);

    function kLast() external view returns (uint256);

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

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

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

    function skim(address to) external;

    function sync() external;

    function initialize(address, address) external;
}

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

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

    function WETH() external pure returns (address);

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

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

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

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

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

contract Halal 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 marketingWallet;
    address public devWallet;

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

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

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

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

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

    uint256 public tokensForMarketing;
    uint256 public tokensForLiquidity;
    uint256 public tokensForDev;

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

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

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

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

    event ExcludeFromFees(address indexed account, bool isExcluded);

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

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

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

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

    constructor() ERC20("0xHalal", "HALAL") {
        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(
            0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
        );

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

        uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory())
            .createPair(address(this), _uniswapV2Router.WETH());
        excludeFromMaxTransaction(address(uniswapV2Pair), true);
        _setAutomatedMarketMakerPair(address(uniswapV2Pair), true);
        
        uint256 _buyMarketingFee = 7;
        uint256 _buyLiquidityFee = 0;
        uint256 _buyDevFee = 10;

        uint256 _sellMarketingFee = 14;
        uint256 _sellLiquidityFee = 0;
        uint256 _sellDevFee = 10;

        uint256 totalSupply = 100_000_000 * 1e18;

        maxTransactionAmount = (totalSupply * 20) / 1000; // 2% from total supply maxTransactionAmountTxn
        maxWallet = (totalSupply * 20) / 1000; // 2% from total supply maxWallet
        swapTokensAtAmount = (totalSupply * 35) / 100000; // 0.035% swap wallet

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

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

        marketingWallet = address(0x9e60A1354754C8ffd37eCa92EBDA79Fc3cdfb833); // set as marketing wallet
        devWallet = address(0x40e700F891896F6904DBd2EeE0663F991CFd0e41); // set as dev wallet

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

        excludeFromMaxTransaction(owner(), true);
        excludeFromMaxTransaction(marketingWallet, true);
        excludeFromMaxTransaction(devWallet, 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() * 1) / 1000) / 1e18,
            "Cannot set maxTransactionAmount lower than 0.1%"
        );
        maxTransactionAmount = newNum * (10**18);
    }

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

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

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

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

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

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

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

        _setAutomatedMarketMakerPair(pair, value);
    }

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

        emit SetAutomatedMarketMakerPair(pair, value);
    }

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

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

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

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

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

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

                // at launch if the transfer delay is enabled, ensure the block timestamps for purchasers is set -- during launch.
                if (transferDelayEnabled) {
                    if (
                        to != owner() &&
                        to != address(uniswapV2Router) &&
                        to != address(uniswapV2Pair)
                    ) {
                        require(
                            _holderLastTransferTimestamp[tx.origin] <
                                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] && sellTotalFees > 0) {
                fees = amount.mul(sellTotalFees).div(100);
                tokensForLiquidity += (fees * sellLiquidityFee) / sellTotalFees;
                tokensForDev += (fees * sellDevFee) / sellTotalFees;
                tokensForMarketing += (fees * sellMarketingFee) / sellTotalFees;
            }
            // on buy
            else if (automatedMarketMakerPairs[from] && buyTotalFees > 0) {
                fees = amount.mul(buyTotalFees).div(100);
                tokensForLiquidity += (fees * buyLiquidityFee) / buyTotalFees;
                tokensForDev += (fees * 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
            deadAddress,
            block.timestamp
        );
    }

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

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

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

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

        uint256 initialETHBalance = address(this).balance;

        swapTokensForEth(amountToSwapForETH);

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

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

        uint256 ethForLiquidity = ethBalance - ethForMarketing - ethForDev;

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

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

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

        (success, ) = address(marketingWallet).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"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"devWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"marketingWalletUpdated","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":"deadAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"devWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"disableTransferDelay","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":"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":[],"name":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForDev","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForMarketing","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"transferDelayEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_devFee","type":"uint256"}],"name":"updateBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"updateDevWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newMarketingWallet","type":"address"}],"name":"updateMarketingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxTxnAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_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"}]

60c0604052600b805462ffffff19166001908117909155600d805460ff191690911790553480156200002f575f80fd5b50604051806040016040528060078152602001660c1e12185b185b60ca1b81525060405180604001604052806005815260200164121053105360da1b81525081600390816200007f91906200079d565b5060046200008e82826200079d565b505050620000ab620000a56200044f60201b60201c565b62000453565b737a250d5630b4cf539739df2c5dacb4c659f2488d620000cd816001620004a4565b6001600160a01b03811660808190526040805163c45a015560e01b8152905163c45a0155916004808201926020929091908290030181865afa15801562000116573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906200013c919062000865565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000188573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190620001ae919062000865565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303815f875af1158015620001f9573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906200021f919062000865565b6001600160a01b031660a08190526200023a906001620004a4565b60a0516200024a9060016200051c565b60075f600a600e82826a52b7d2dcc80cd2e40000006103e86200026f826014620008a8565b6200027b9190620008c8565b6008556103e86200028e826014620008a8565b6200029a9190620008c8565b600a55620186a0620002ae826023620008a8565b620002ba9190620008c8565b600955600f8790556010869055601185905584620002d98789620008e8565b620002e59190620008e8565b600e5560138490556014839055601582905581620003048486620008e8565b620003109190620008e8565b601255600680546001600160a01b0319908116739e60a1354754c8ffd37eca92ebda79fc3cdfb83317909155600780549091167340e700f891896f6904dbd2eee0663f991cfd0e411790556200037a620003726005546001600160a01b031690565b60016200056f565b60065462000393906001600160a01b031660016200056f565b600754620003ac906001600160a01b031660016200056f565b620003b93060016200056f565b620003c861dead60016200056f565b620003e7620003df6005546001600160a01b031690565b6001620004a4565b60065462000400906001600160a01b03166001620004a4565b60075462000419906001600160a01b03166001620004a4565b62000426306001620004a4565b6200043561dead6001620004a4565b62000441338262000617565b5050505050505050620008fe565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6005546001600160a01b03163314620004f25760405162461bcd60e51b815260206004820181905260248201525f805160206200327483398151915260448201526064015b60405180910390fd5b6001600160a01b03919091165f908152601a60205260409020805460ff1916911515919091179055565b6001600160a01b0382165f818152601b6020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6005546001600160a01b03163314620005b95760405162461bcd60e51b815260206004820181905260248201525f80516020620032748339815191526044820152606401620004e9565b6001600160a01b0382165f81815260196020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6001600160a01b0382166200066f5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401620004e9565b8060025f828254620006829190620008e8565b90915550506001600160a01b0382165f9081526020819052604081208054839290620006b0908490620008e8565b90915550506040518181526001600160a01b038316905f907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b505050565b634e487b7160e01b5f52604160045260245ffd5b600181811c908216806200072757607f821691505b6020821081036200074657634e487b7160e01b5f52602260045260245ffd5b50919050565b601f821115620006f9575f81815260208120601f850160051c81016020861015620007745750805b601f850160051c820191505b81811015620007955782815560010162000780565b505050505050565b81516001600160401b03811115620007b957620007b9620006fe565b620007d181620007ca845462000712565b846200074c565b602080601f83116001811462000807575f8415620007ef5750858301515b5f19600386901b1c1916600185901b17855562000795565b5f85815260208120601f198616915b82811015620008375788860151825594840194600190910190840162000816565b50858210156200085557878501515f19600388901b60f8161c191681555b5050505050600190811b01905550565b5f6020828403121562000876575f80fd5b81516001600160a01b03811681146200088d575f80fd5b9392505050565b634e487b7160e01b5f52601160045260245ffd5b8082028115828204841417620008c257620008c262000894565b92915050565b5f82620008e357634e487b7160e01b5f52601260045260245ffd5b500490565b80820180821115620008c257620008c262000894565b60805160a05161291c620009585f395f818161050e01528181610ecb01526117c401525f81816103cd01528181611786015281816122c50152818161237c015281816123b80152818161242c0152612488015261291c5ff3fe60806040526004361061032a575f3560e01c80638ea5220f116101a3578063c0246668116100f2578063dd62ed3e11610092578063f11a24d31161006d578063f11a24d31461094d578063f2fde38b14610962578063f637434214610981578063f8b45b0514610996575f80fd5b8063dd62ed3e146108e0578063e2f4560514610924578063e884f26014610939575f80fd5b8063c876d0b9116100cd578063c876d0b91461087e578063c8c8ebe414610897578063d257b34f146108ac578063d85ba063146108cb575f80fd5b8063c024666814610821578063c17b5b8c14610840578063c18bc1951461085f575f80fd5b80639fccce321161015d578063a9059cbb11610138578063a9059cbb14610797578063aacebbe3146107b6578063b62496f5146107d5578063bbc0c74214610803575f80fd5b80639fccce321461074e578063a0d82dc514610763578063a457c2d714610778575f80fd5b80638ea5220f146106b357806392136913146106d2578063924de9b7146106e757806395d89b41146107065780639a7a23d61461071a5780639c3b4fdc14610739575f80fd5b806349bd5a5e11610279578063751039fc116102195780637bce5a04116101f45780637bce5a041461064e5780638095d564146106635780638a8c523c146106825780638da5cb5b14610696575f80fd5b8063751039fc146105fc5780637571336a1461061057806375f0a8741461062f575f80fd5b80636a486a8e116102545780636a486a8e146105805780636ddd17131461059557806370a08231146105b4578063715018a6146105e8575f80fd5b806349bd5a5e146104fd5780634a62bb65146105305780634fbee19314610549575f80fd5b80631a8145bb116102e457806323b872dd116102bf57806323b872dd1461048f57806327c8f835146104ae578063313ce567146104c357806339509351146104de575f80fd5b80631a8145bb146104465780631f3fed8f1461045b578063203e727e14610470575f80fd5b806306fdde0314610335578063095ea7b31461035f57806310d5de531461038e5780631694505e146103bc57806318160ddd146104075780631816467f14610425575f80fd5b3661033157005b5f80fd5b348015610340575f80fd5b506103496109ab565b6040516103569190612504565b60405180910390f35b34801561036a575f80fd5b5061037e610379366004612563565b610a3b565b6040519015158152602001610356565b348015610399575f80fd5b5061037e6103a836600461258d565b601a6020525f908152604090205460ff1681565b3480156103c7575f80fd5b506103ef7f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b039091168152602001610356565b348015610412575f80fd5b506002545b604051908152602001610356565b348015610430575f80fd5b5061044461043f36600461258d565b610a51565b005b348015610451575f80fd5b5061041760175481565b348015610466575f80fd5b5061041760165481565b34801561047b575f80fd5b5061044461048a3660046125a8565b610ae0565b34801561049a575f80fd5b5061037e6104a93660046125bf565b610bbd565b3480156104b9575f80fd5b506103ef61dead81565b3480156104ce575f80fd5b5060405160128152602001610356565b3480156104e9575f80fd5b5061037e6104f8366004612563565b610c65565b348015610508575f80fd5b506103ef7f000000000000000000000000000000000000000000000000000000000000000081565b34801561053b575f80fd5b50600b5461037e9060ff1681565b348015610554575f80fd5b5061037e61056336600461258d565b6001600160a01b03165f9081526019602052604090205460ff1690565b34801561058b575f80fd5b5061041760125481565b3480156105a0575f80fd5b50600b5461037e9062010000900460ff1681565b3480156105bf575f80fd5b506104176105ce36600461258d565b6001600160a01b03165f9081526020819052604090205490565b3480156105f3575f80fd5b50610444610ca0565b348015610607575f80fd5b5061037e610cd5565b34801561061b575f80fd5b5061044461062a36600461260c565b610d11565b34801561063a575f80fd5b506006546103ef906001600160a01b031681565b348015610659575f80fd5b50610417600f5481565b34801561066e575f80fd5b5061044461067d36600461263f565b610d65565b34801561068d575f80fd5b50610444610e0d565b3480156106a1575f80fd5b506005546001600160a01b03166103ef565b3480156106be575f80fd5b506007546103ef906001600160a01b031681565b3480156106dd575f80fd5b5061041760135481565b3480156106f2575f80fd5b50610444610701366004612668565b610e4a565b348015610711575f80fd5b50610349610e90565b348015610725575f80fd5b5061044461073436600461260c565b610e9f565b348015610744575f80fd5b5061041760115481565b348015610759575f80fd5b5061041760185481565b34801561076e575f80fd5b5061041760155481565b348015610783575f80fd5b5061037e610792366004612563565b610f7e565b3480156107a2575f80fd5b5061037e6107b1366004612563565b611016565b3480156107c1575f80fd5b506104446107d036600461258d565b611022565b3480156107e0575f80fd5b5061037e6107ef36600461258d565b601b6020525f908152604090205460ff1681565b34801561080e575f80fd5b50600b5461037e90610100900460ff1681565b34801561082c575f80fd5b5061044461083b36600461260c565b6110a8565b34801561084b575f80fd5b5061044461085a36600461263f565b611130565b34801561086a575f80fd5b506104446108793660046125a8565b6111d3565b348015610889575f80fd5b50600d5461037e9060ff1681565b3480156108a2575f80fd5b5061041760085481565b3480156108b7575f80fd5b5061037e6108c63660046125a8565b6112a4565b3480156108d6575f80fd5b50610417600e5481565b3480156108eb575f80fd5b506104176108fa366004612681565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b34801561092f575f80fd5b5061041760095481565b348015610944575f80fd5b5061037e6113fa565b348015610958575f80fd5b5061041760105481565b34801561096d575f80fd5b5061044461097c36600461258d565b611436565b34801561098c575f80fd5b5061041760145481565b3480156109a1575f80fd5b50610417600a5481565b6060600380546109ba906126b8565b80601f01602080910402602001604051908101604052809291908181526020018280546109e6906126b8565b8015610a315780601f10610a0857610100808354040283529160200191610a31565b820191905f5260205f20905b815481529060010190602001808311610a1457829003601f168201915b5050505050905090565b5f610a473384846114d1565b5060015b92915050565b6005546001600160a01b03163314610a845760405162461bcd60e51b8152600401610a7b906126f0565b60405180910390fd5b6007546040516001600160a01b03918216918316907f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e743905f90a3600780546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b03163314610b0a5760405162461bcd60e51b8152600401610a7b906126f0565b670de0b6b3a76400006103e8610b1f60025490565b610b2a906001612739565b610b349190612750565b610b3e9190612750565b811015610ba55760405162461bcd60e51b815260206004820152602f60248201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060448201526e6c6f776572207468616e20302e312560881b6064820152608401610a7b565b610bb781670de0b6b3a7640000612739565b60085550565b5f610bc98484846115f4565b6001600160a01b0384165f90815260016020908152604080832033845290915290205482811015610c4d5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b6064820152608401610a7b565b610c5a85338584036114d1565b506001949350505050565b335f8181526001602090815260408083206001600160a01b03871684529091528120549091610a47918590610c9b90869061276f565b6114d1565b6005546001600160a01b03163314610cca5760405162461bcd60e51b8152600401610a7b906126f0565b610cd35f611e27565b565b6005545f906001600160a01b03163314610d015760405162461bcd60e51b8152600401610a7b906126f0565b50600b805460ff19169055600190565b6005546001600160a01b03163314610d3b5760405162461bcd60e51b8152600401610a7b906126f0565b6001600160a01b03919091165f908152601a60205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610d8f5760405162461bcd60e51b8152600401610a7b906126f0565b600f8390556010829055601181905580610da9838561276f565b610db3919061276f565b600e819055600a1015610e085760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420313025206f72206c6573730000006044820152606401610a7b565b505050565b6005546001600160a01b03163314610e375760405162461bcd60e51b8152600401610a7b906126f0565b600b805462ffff00191662010100179055565b6005546001600160a01b03163314610e745760405162461bcd60e51b8152600401610a7b906126f0565b600b8054911515620100000262ff000019909216919091179055565b6060600480546109ba906126b8565b6005546001600160a01b03163314610ec95760405162461bcd60e51b8152600401610a7b906126f0565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b031603610f705760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b65725061697273000000000000006064820152608401610a7b565b610f7a8282611e78565b5050565b335f9081526001602090815260408083206001600160a01b038616845290915281205482811015610fff5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610a7b565b61100c33858584036114d1565b5060019392505050565b5f610a473384846115f4565b6005546001600160a01b0316331461104c5760405162461bcd60e51b8152600401610a7b906126f0565b6006546040516001600160a01b03918216918316907fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b05674905f90a3600680546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b031633146110d25760405162461bcd60e51b8152600401610a7b906126f0565b6001600160a01b0382165f81815260196020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b0316331461115a5760405162461bcd60e51b8152600401610a7b906126f0565b60138390556014829055601581905580611174838561276f565b61117e919061276f565b6012819055600f1015610e085760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420313525206f72206c6573730000006044820152606401610a7b565b6005546001600160a01b031633146111fd5760405162461bcd60e51b8152600401610a7b906126f0565b670de0b6b3a76400006103e861121260025490565b61121d906005612739565b6112279190612750565b6112319190612750565b81101561128c5760405162461bcd60e51b8152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015263302e352560e01b6064820152608401610a7b565b61129e81670de0b6b3a7640000612739565b600a5550565b6005545f906001600160a01b031633146112d05760405162461bcd60e51b8152600401610a7b906126f0565b620186a06112dd60025490565b6112e8906001612739565b6112f29190612750565b82101561135f5760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b6064820152608401610a7b565b6103e861136b60025490565b611376906005612739565b6113809190612750565b8211156113ec5760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171a92903a37ba30b61039bab838363c9760611b6064820152608401610a7b565b50600981905560015b919050565b6005545f906001600160a01b031633146114265760405162461bcd60e51b8152600401610a7b906126f0565b50600d805460ff19169055600190565b6005546001600160a01b031633146114605760405162461bcd60e51b8152600401610a7b906126f0565b6001600160a01b0381166114c55760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610a7b565b6114ce81611e27565b50565b6001600160a01b0383166115335760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610a7b565b6001600160a01b0382166115945760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610a7b565b6001600160a01b038381165f8181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b03831661161a5760405162461bcd60e51b8152600401610a7b90612782565b6001600160a01b0382166116405760405162461bcd60e51b8152600401610a7b906127c7565b805f0361165257610e0883835f611ecb565b600b5460ff1615611b04576005546001600160a01b0384811691161480159061168957506005546001600160a01b03838116911614155b801561169d57506001600160a01b03821615155b80156116b457506001600160a01b03821661dead14155b80156116ca5750600554600160a01b900460ff16155b15611b0457600b54610100900460ff16611760576001600160a01b0383165f9081526019602052604090205460ff168061171b57506001600160a01b0382165f9081526019602052604090205460ff165b6117605760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b6044820152606401610a7b565b600d5460ff16156118a5576005546001600160a01b038381169116148015906117bb57507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b031614155b80156117f957507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b031614155b156118a557325f908152600c602052604090205443116118935760405162461bcd60e51b815260206004820152604960248201527f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60448201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b6064820152681030b63637bbb2b21760b91b608482015260a401610a7b565b325f908152600c602052604090204390555b6001600160a01b0383165f908152601b602052604090205460ff1680156118e457506001600160a01b0382165f908152601a602052604090205460ff16155b156119c7576008548111156119595760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b6064820152608401610a7b565b600a546001600160a01b0383165f9081526020819052604090205461197e908361276f565b11156119c25760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610a7b565b611b04565b6001600160a01b0382165f908152601b602052604090205460ff168015611a0657506001600160a01b0383165f908152601a602052604090205460ff16155b15611a7c576008548111156119c25760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152751036b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760511b6064820152608401610a7b565b6001600160a01b0382165f908152601a602052604090205460ff16611b0457600a546001600160a01b0383165f90815260208190526040902054611ac0908361276f565b1115611b045760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610a7b565b305f9081526020819052604090205460095481108015908190611b2f5750600b5462010000900460ff165b8015611b455750600554600160a01b900460ff16155b8015611b6957506001600160a01b0385165f908152601b602052604090205460ff16155b8015611b8d57506001600160a01b0385165f9081526019602052604090205460ff16155b8015611bb157506001600160a01b0384165f9081526019602052604090205460ff16155b15611bdf576005805460ff60a01b1916600160a01b179055611bd161201e565b6005805460ff60a01b191690555b6005546001600160a01b0386165f9081526019602052604090205460ff600160a01b909204821615911680611c2b57506001600160a01b0385165f9081526019602052604090205460ff165b15611c3357505f5b5f8115611e13576001600160a01b0386165f908152601b602052604090205460ff168015611c6257505f601254115b15611d1d57611c876064611c816012548861224890919063ffffffff16565b9061225a565b905060125460145482611c9a9190612739565b611ca49190612750565b60175f828254611cb4919061276f565b9091555050601254601554611cc99083612739565b611cd39190612750565b60185f828254611ce3919061276f565b9091555050601254601354611cf89083612739565b611d029190612750565b60165f828254611d12919061276f565b90915550611df59050565b6001600160a01b0387165f908152601b602052604090205460ff168015611d4557505f600e54115b15611df557611d646064611c81600e548861224890919063ffffffff16565b9050600e5460105482611d779190612739565b611d819190612750565b60175f828254611d91919061276f565b9091555050600e54601154611da69083612739565b611db09190612750565b60185f828254611dc0919061276f565b9091555050600e54600f54611dd59083612739565b611ddf9190612750565b60165f828254611def919061276f565b90915550505b8015611e0657611e06873083611ecb565b611e10818661280a565b94505b611e1e878787611ecb565b50505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6001600160a01b0382165f818152601b6020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6001600160a01b038316611ef15760405162461bcd60e51b8152600401610a7b90612782565b6001600160a01b038216611f175760405162461bcd60e51b8152600401610a7b906127c7565b6001600160a01b0383165f9081526020819052604090205481811015611f8e5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610a7b565b6001600160a01b038085165f90815260208190526040808220858503905591851681529081208054849290611fc490849061276f565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161201091815260200190565b60405180910390a350505050565b305f9081526020819052604081205490505f601854601654601754612043919061276f565b61204d919061276f565b90505f82158061205b575081155b1561206557505050565b600954612073906014612739565b83111561208b57600954612088906014612739565b92505b5f6002836017548661209d9190612739565b6120a79190612750565b6120b19190612750565b90505f6120be8583612265565b9050476120ca82612270565b5f6120d54783612265565b90505f6120f187611c816016548561224890919063ffffffff16565b90505f61210d88611c816018548661224890919063ffffffff16565b90505f8161211b848661280a565b612125919061280a565b5f6017819055601681905560188190556007546040519293506001600160a01b031691849181818185875af1925050503d805f811461217f576040519150601f19603f3d011682016040523d82523d5f602084013e612184565b606091505b5090985050861580159061219757505f81115b156121ea576121a68782612426565b601754604080518881526020810184905280820192909252517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15b6006546040516001600160a01b039091169047905f81818185875af1925050503d805f8114612234576040519150601f19603f3d011682016040523d82523d5f602084013e612239565b606091505b50505050505050505050505050565b5f6122538284612739565b9392505050565b5f6122538284612750565b5f612253828461280a565b6040805160028082526060820183525f9260208301908036833701905050905030815f815181106122a3576122a361281d565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561231f573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906123439190612831565b816001815181106123565761235661281d565b60200260200101906001600160a01b031690816001600160a01b0316815250506123a1307f0000000000000000000000000000000000000000000000000000000000000000846114d1565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063791ac947906123f59085905f9086903090429060040161284c565b5f604051808303815f87803b15801561240c575f80fd5b505af115801561241e573d5f803e3d5ffd5b505050505050565b612451307f0000000000000000000000000000000000000000000000000000000000000000846114d1565b60405163f305d71960e01b8152306004820152602481018390525f60448201819052606482015261dead60848201524260a48201527f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03169063f305d71990839060c40160606040518083038185885af11580156124d8573d5f803e3d5ffd5b50505050506040513d601f19601f820116820180604052508101906124fd91906128bb565b5050505050565b5f6020808352835180828501525f5b8181101561252f57858101830151858201604001528201612513565b505f604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b03811681146114ce575f80fd5b5f8060408385031215612574575f80fd5b823561257f8161254f565b946020939093013593505050565b5f6020828403121561259d575f80fd5b81356122538161254f565b5f602082840312156125b8575f80fd5b5035919050565b5f805f606084860312156125d1575f80fd5b83356125dc8161254f565b925060208401356125ec8161254f565b929592945050506040919091013590565b803580151581146113f5575f80fd5b5f806040838503121561261d575f80fd5b82356126288161254f565b9150612636602084016125fd565b90509250929050565b5f805f60608486031215612651575f80fd5b505081359360208301359350604090920135919050565b5f60208284031215612678575f80fd5b612253826125fd565b5f8060408385031215612692575f80fd5b823561269d8161254f565b915060208301356126ad8161254f565b809150509250929050565b600181811c908216806126cc57607f821691505b6020821081036126ea57634e487b7160e01b5f52602260045260245ffd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b5f52601160045260245ffd5b8082028115828204841417610a4b57610a4b612725565b5f8261276a57634e487b7160e01b5f52601260045260245ffd5b500490565b80820180821115610a4b57610a4b612725565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b81810381811115610a4b57610a4b612725565b634e487b7160e01b5f52603260045260245ffd5b5f60208284031215612841575f80fd5b81516122538161254f565b5f60a082018783526020878185015260a0604085015281875180845260c08601915082890193505f5b8181101561289a5784516001600160a01b031683529383019391830191600101612875565b50506001600160a01b03969096166060850152505050608001529392505050565b5f805f606084860312156128cd575f80fd5b835192506020840151915060408401519050925092509256fea264697066735822122062f1550f3850d0ca0fcad875b82f96218cc25b9779c8dcb05e414f06a3e82c6264736f6c634300081400334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572

Deployed Bytecode

0x60806040526004361061032a575f3560e01c80638ea5220f116101a3578063c0246668116100f2578063dd62ed3e11610092578063f11a24d31161006d578063f11a24d31461094d578063f2fde38b14610962578063f637434214610981578063f8b45b0514610996575f80fd5b8063dd62ed3e146108e0578063e2f4560514610924578063e884f26014610939575f80fd5b8063c876d0b9116100cd578063c876d0b91461087e578063c8c8ebe414610897578063d257b34f146108ac578063d85ba063146108cb575f80fd5b8063c024666814610821578063c17b5b8c14610840578063c18bc1951461085f575f80fd5b80639fccce321161015d578063a9059cbb11610138578063a9059cbb14610797578063aacebbe3146107b6578063b62496f5146107d5578063bbc0c74214610803575f80fd5b80639fccce321461074e578063a0d82dc514610763578063a457c2d714610778575f80fd5b80638ea5220f146106b357806392136913146106d2578063924de9b7146106e757806395d89b41146107065780639a7a23d61461071a5780639c3b4fdc14610739575f80fd5b806349bd5a5e11610279578063751039fc116102195780637bce5a04116101f45780637bce5a041461064e5780638095d564146106635780638a8c523c146106825780638da5cb5b14610696575f80fd5b8063751039fc146105fc5780637571336a1461061057806375f0a8741461062f575f80fd5b80636a486a8e116102545780636a486a8e146105805780636ddd17131461059557806370a08231146105b4578063715018a6146105e8575f80fd5b806349bd5a5e146104fd5780634a62bb65146105305780634fbee19314610549575f80fd5b80631a8145bb116102e457806323b872dd116102bf57806323b872dd1461048f57806327c8f835146104ae578063313ce567146104c357806339509351146104de575f80fd5b80631a8145bb146104465780631f3fed8f1461045b578063203e727e14610470575f80fd5b806306fdde0314610335578063095ea7b31461035f57806310d5de531461038e5780631694505e146103bc57806318160ddd146104075780631816467f14610425575f80fd5b3661033157005b5f80fd5b348015610340575f80fd5b506103496109ab565b6040516103569190612504565b60405180910390f35b34801561036a575f80fd5b5061037e610379366004612563565b610a3b565b6040519015158152602001610356565b348015610399575f80fd5b5061037e6103a836600461258d565b601a6020525f908152604090205460ff1681565b3480156103c7575f80fd5b506103ef7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b039091168152602001610356565b348015610412575f80fd5b506002545b604051908152602001610356565b348015610430575f80fd5b5061044461043f36600461258d565b610a51565b005b348015610451575f80fd5b5061041760175481565b348015610466575f80fd5b5061041760165481565b34801561047b575f80fd5b5061044461048a3660046125a8565b610ae0565b34801561049a575f80fd5b5061037e6104a93660046125bf565b610bbd565b3480156104b9575f80fd5b506103ef61dead81565b3480156104ce575f80fd5b5060405160128152602001610356565b3480156104e9575f80fd5b5061037e6104f8366004612563565b610c65565b348015610508575f80fd5b506103ef7f0000000000000000000000001a79907f6b3302588764d488db89f025e7b4fd2681565b34801561053b575f80fd5b50600b5461037e9060ff1681565b348015610554575f80fd5b5061037e61056336600461258d565b6001600160a01b03165f9081526019602052604090205460ff1690565b34801561058b575f80fd5b5061041760125481565b3480156105a0575f80fd5b50600b5461037e9062010000900460ff1681565b3480156105bf575f80fd5b506104176105ce36600461258d565b6001600160a01b03165f9081526020819052604090205490565b3480156105f3575f80fd5b50610444610ca0565b348015610607575f80fd5b5061037e610cd5565b34801561061b575f80fd5b5061044461062a36600461260c565b610d11565b34801561063a575f80fd5b506006546103ef906001600160a01b031681565b348015610659575f80fd5b50610417600f5481565b34801561066e575f80fd5b5061044461067d36600461263f565b610d65565b34801561068d575f80fd5b50610444610e0d565b3480156106a1575f80fd5b506005546001600160a01b03166103ef565b3480156106be575f80fd5b506007546103ef906001600160a01b031681565b3480156106dd575f80fd5b5061041760135481565b3480156106f2575f80fd5b50610444610701366004612668565b610e4a565b348015610711575f80fd5b50610349610e90565b348015610725575f80fd5b5061044461073436600461260c565b610e9f565b348015610744575f80fd5b5061041760115481565b348015610759575f80fd5b5061041760185481565b34801561076e575f80fd5b5061041760155481565b348015610783575f80fd5b5061037e610792366004612563565b610f7e565b3480156107a2575f80fd5b5061037e6107b1366004612563565b611016565b3480156107c1575f80fd5b506104446107d036600461258d565b611022565b3480156107e0575f80fd5b5061037e6107ef36600461258d565b601b6020525f908152604090205460ff1681565b34801561080e575f80fd5b50600b5461037e90610100900460ff1681565b34801561082c575f80fd5b5061044461083b36600461260c565b6110a8565b34801561084b575f80fd5b5061044461085a36600461263f565b611130565b34801561086a575f80fd5b506104446108793660046125a8565b6111d3565b348015610889575f80fd5b50600d5461037e9060ff1681565b3480156108a2575f80fd5b5061041760085481565b3480156108b7575f80fd5b5061037e6108c63660046125a8565b6112a4565b3480156108d6575f80fd5b50610417600e5481565b3480156108eb575f80fd5b506104176108fa366004612681565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b34801561092f575f80fd5b5061041760095481565b348015610944575f80fd5b5061037e6113fa565b348015610958575f80fd5b5061041760105481565b34801561096d575f80fd5b5061044461097c36600461258d565b611436565b34801561098c575f80fd5b5061041760145481565b3480156109a1575f80fd5b50610417600a5481565b6060600380546109ba906126b8565b80601f01602080910402602001604051908101604052809291908181526020018280546109e6906126b8565b8015610a315780601f10610a0857610100808354040283529160200191610a31565b820191905f5260205f20905b815481529060010190602001808311610a1457829003601f168201915b5050505050905090565b5f610a473384846114d1565b5060015b92915050565b6005546001600160a01b03163314610a845760405162461bcd60e51b8152600401610a7b906126f0565b60405180910390fd5b6007546040516001600160a01b03918216918316907f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e743905f90a3600780546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b03163314610b0a5760405162461bcd60e51b8152600401610a7b906126f0565b670de0b6b3a76400006103e8610b1f60025490565b610b2a906001612739565b610b349190612750565b610b3e9190612750565b811015610ba55760405162461bcd60e51b815260206004820152602f60248201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060448201526e6c6f776572207468616e20302e312560881b6064820152608401610a7b565b610bb781670de0b6b3a7640000612739565b60085550565b5f610bc98484846115f4565b6001600160a01b0384165f90815260016020908152604080832033845290915290205482811015610c4d5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b6064820152608401610a7b565b610c5a85338584036114d1565b506001949350505050565b335f8181526001602090815260408083206001600160a01b03871684529091528120549091610a47918590610c9b90869061276f565b6114d1565b6005546001600160a01b03163314610cca5760405162461bcd60e51b8152600401610a7b906126f0565b610cd35f611e27565b565b6005545f906001600160a01b03163314610d015760405162461bcd60e51b8152600401610a7b906126f0565b50600b805460ff19169055600190565b6005546001600160a01b03163314610d3b5760405162461bcd60e51b8152600401610a7b906126f0565b6001600160a01b03919091165f908152601a60205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610d8f5760405162461bcd60e51b8152600401610a7b906126f0565b600f8390556010829055601181905580610da9838561276f565b610db3919061276f565b600e819055600a1015610e085760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420313025206f72206c6573730000006044820152606401610a7b565b505050565b6005546001600160a01b03163314610e375760405162461bcd60e51b8152600401610a7b906126f0565b600b805462ffff00191662010100179055565b6005546001600160a01b03163314610e745760405162461bcd60e51b8152600401610a7b906126f0565b600b8054911515620100000262ff000019909216919091179055565b6060600480546109ba906126b8565b6005546001600160a01b03163314610ec95760405162461bcd60e51b8152600401610a7b906126f0565b7f0000000000000000000000001a79907f6b3302588764d488db89f025e7b4fd266001600160a01b0316826001600160a01b031603610f705760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b65725061697273000000000000006064820152608401610a7b565b610f7a8282611e78565b5050565b335f9081526001602090815260408083206001600160a01b038616845290915281205482811015610fff5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610a7b565b61100c33858584036114d1565b5060019392505050565b5f610a473384846115f4565b6005546001600160a01b0316331461104c5760405162461bcd60e51b8152600401610a7b906126f0565b6006546040516001600160a01b03918216918316907fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b05674905f90a3600680546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b031633146110d25760405162461bcd60e51b8152600401610a7b906126f0565b6001600160a01b0382165f81815260196020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b0316331461115a5760405162461bcd60e51b8152600401610a7b906126f0565b60138390556014829055601581905580611174838561276f565b61117e919061276f565b6012819055600f1015610e085760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420313525206f72206c6573730000006044820152606401610a7b565b6005546001600160a01b031633146111fd5760405162461bcd60e51b8152600401610a7b906126f0565b670de0b6b3a76400006103e861121260025490565b61121d906005612739565b6112279190612750565b6112319190612750565b81101561128c5760405162461bcd60e51b8152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015263302e352560e01b6064820152608401610a7b565b61129e81670de0b6b3a7640000612739565b600a5550565b6005545f906001600160a01b031633146112d05760405162461bcd60e51b8152600401610a7b906126f0565b620186a06112dd60025490565b6112e8906001612739565b6112f29190612750565b82101561135f5760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b6064820152608401610a7b565b6103e861136b60025490565b611376906005612739565b6113809190612750565b8211156113ec5760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171a92903a37ba30b61039bab838363c9760611b6064820152608401610a7b565b50600981905560015b919050565b6005545f906001600160a01b031633146114265760405162461bcd60e51b8152600401610a7b906126f0565b50600d805460ff19169055600190565b6005546001600160a01b031633146114605760405162461bcd60e51b8152600401610a7b906126f0565b6001600160a01b0381166114c55760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610a7b565b6114ce81611e27565b50565b6001600160a01b0383166115335760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610a7b565b6001600160a01b0382166115945760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610a7b565b6001600160a01b038381165f8181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b03831661161a5760405162461bcd60e51b8152600401610a7b90612782565b6001600160a01b0382166116405760405162461bcd60e51b8152600401610a7b906127c7565b805f0361165257610e0883835f611ecb565b600b5460ff1615611b04576005546001600160a01b0384811691161480159061168957506005546001600160a01b03838116911614155b801561169d57506001600160a01b03821615155b80156116b457506001600160a01b03821661dead14155b80156116ca5750600554600160a01b900460ff16155b15611b0457600b54610100900460ff16611760576001600160a01b0383165f9081526019602052604090205460ff168061171b57506001600160a01b0382165f9081526019602052604090205460ff165b6117605760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b6044820152606401610a7b565b600d5460ff16156118a5576005546001600160a01b038381169116148015906117bb57507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b0316826001600160a01b031614155b80156117f957507f0000000000000000000000001a79907f6b3302588764d488db89f025e7b4fd266001600160a01b0316826001600160a01b031614155b156118a557325f908152600c602052604090205443116118935760405162461bcd60e51b815260206004820152604960248201527f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60448201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b6064820152681030b63637bbb2b21760b91b608482015260a401610a7b565b325f908152600c602052604090204390555b6001600160a01b0383165f908152601b602052604090205460ff1680156118e457506001600160a01b0382165f908152601a602052604090205460ff16155b156119c7576008548111156119595760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b6064820152608401610a7b565b600a546001600160a01b0383165f9081526020819052604090205461197e908361276f565b11156119c25760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610a7b565b611b04565b6001600160a01b0382165f908152601b602052604090205460ff168015611a0657506001600160a01b0383165f908152601a602052604090205460ff16155b15611a7c576008548111156119c25760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152751036b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760511b6064820152608401610a7b565b6001600160a01b0382165f908152601a602052604090205460ff16611b0457600a546001600160a01b0383165f90815260208190526040902054611ac0908361276f565b1115611b045760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610a7b565b305f9081526020819052604090205460095481108015908190611b2f5750600b5462010000900460ff165b8015611b455750600554600160a01b900460ff16155b8015611b6957506001600160a01b0385165f908152601b602052604090205460ff16155b8015611b8d57506001600160a01b0385165f9081526019602052604090205460ff16155b8015611bb157506001600160a01b0384165f9081526019602052604090205460ff16155b15611bdf576005805460ff60a01b1916600160a01b179055611bd161201e565b6005805460ff60a01b191690555b6005546001600160a01b0386165f9081526019602052604090205460ff600160a01b909204821615911680611c2b57506001600160a01b0385165f9081526019602052604090205460ff165b15611c3357505f5b5f8115611e13576001600160a01b0386165f908152601b602052604090205460ff168015611c6257505f601254115b15611d1d57611c876064611c816012548861224890919063ffffffff16565b9061225a565b905060125460145482611c9a9190612739565b611ca49190612750565b60175f828254611cb4919061276f565b9091555050601254601554611cc99083612739565b611cd39190612750565b60185f828254611ce3919061276f565b9091555050601254601354611cf89083612739565b611d029190612750565b60165f828254611d12919061276f565b90915550611df59050565b6001600160a01b0387165f908152601b602052604090205460ff168015611d4557505f600e54115b15611df557611d646064611c81600e548861224890919063ffffffff16565b9050600e5460105482611d779190612739565b611d819190612750565b60175f828254611d91919061276f565b9091555050600e54601154611da69083612739565b611db09190612750565b60185f828254611dc0919061276f565b9091555050600e54600f54611dd59083612739565b611ddf9190612750565b60165f828254611def919061276f565b90915550505b8015611e0657611e06873083611ecb565b611e10818661280a565b94505b611e1e878787611ecb565b50505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6001600160a01b0382165f818152601b6020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6001600160a01b038316611ef15760405162461bcd60e51b8152600401610a7b90612782565b6001600160a01b038216611f175760405162461bcd60e51b8152600401610a7b906127c7565b6001600160a01b0383165f9081526020819052604090205481811015611f8e5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610a7b565b6001600160a01b038085165f90815260208190526040808220858503905591851681529081208054849290611fc490849061276f565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161201091815260200190565b60405180910390a350505050565b305f9081526020819052604081205490505f601854601654601754612043919061276f565b61204d919061276f565b90505f82158061205b575081155b1561206557505050565b600954612073906014612739565b83111561208b57600954612088906014612739565b92505b5f6002836017548661209d9190612739565b6120a79190612750565b6120b19190612750565b90505f6120be8583612265565b9050476120ca82612270565b5f6120d54783612265565b90505f6120f187611c816016548561224890919063ffffffff16565b90505f61210d88611c816018548661224890919063ffffffff16565b90505f8161211b848661280a565b612125919061280a565b5f6017819055601681905560188190556007546040519293506001600160a01b031691849181818185875af1925050503d805f811461217f576040519150601f19603f3d011682016040523d82523d5f602084013e612184565b606091505b5090985050861580159061219757505f81115b156121ea576121a68782612426565b601754604080518881526020810184905280820192909252517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15b6006546040516001600160a01b039091169047905f81818185875af1925050503d805f8114612234576040519150601f19603f3d011682016040523d82523d5f602084013e612239565b606091505b50505050505050505050505050565b5f6122538284612739565b9392505050565b5f6122538284612750565b5f612253828461280a565b6040805160028082526060820183525f9260208301908036833701905050905030815f815181106122a3576122a361281d565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561231f573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906123439190612831565b816001815181106123565761235661281d565b60200260200101906001600160a01b031690816001600160a01b0316815250506123a1307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846114d1565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac947906123f59085905f9086903090429060040161284c565b5f604051808303815f87803b15801561240c575f80fd5b505af115801561241e573d5f803e3d5ffd5b505050505050565b612451307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846114d1565b60405163f305d71960e01b8152306004820152602481018390525f60448201819052606482015261dead60848201524260a48201527f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b03169063f305d71990839060c40160606040518083038185885af11580156124d8573d5f803e3d5ffd5b50505050506040513d601f19601f820116820180604052508101906124fd91906128bb565b5050505050565b5f6020808352835180828501525f5b8181101561252f57858101830151858201604001528201612513565b505f604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b03811681146114ce575f80fd5b5f8060408385031215612574575f80fd5b823561257f8161254f565b946020939093013593505050565b5f6020828403121561259d575f80fd5b81356122538161254f565b5f602082840312156125b8575f80fd5b5035919050565b5f805f606084860312156125d1575f80fd5b83356125dc8161254f565b925060208401356125ec8161254f565b929592945050506040919091013590565b803580151581146113f5575f80fd5b5f806040838503121561261d575f80fd5b82356126288161254f565b9150612636602084016125fd565b90509250929050565b5f805f60608486031215612651575f80fd5b505081359360208301359350604090920135919050565b5f60208284031215612678575f80fd5b612253826125fd565b5f8060408385031215612692575f80fd5b823561269d8161254f565b915060208301356126ad8161254f565b809150509250929050565b600181811c908216806126cc57607f821691505b6020821081036126ea57634e487b7160e01b5f52602260045260245ffd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b5f52601160045260245ffd5b8082028115828204841417610a4b57610a4b612725565b5f8261276a57634e487b7160e01b5f52601260045260245ffd5b500490565b80820180821115610a4b57610a4b612725565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b81810381811115610a4b57610a4b612725565b634e487b7160e01b5f52603260045260245ffd5b5f60208284031215612841575f80fd5b81516122538161254f565b5f60a082018783526020878185015260a0604085015281875180845260c08601915082890193505f5b8181101561289a5784516001600160a01b031683529383019391830191600101612875565b50506001600160a01b03969096166060850152505050608001529392505050565b5f805f606084860312156128cd575f80fd5b835192506020840151915060408401519050925092509256fea264697066735822122062f1550f3850d0ca0fcad875b82f96218cc25b9779c8dcb05e414f06a3e82c6264736f6c63430008140033

Deployed Bytecode Sourcemap

33066:16523:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9920:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12228:210;;;;;;;;;;-1:-1:-1;12228:210:0;;;;;:::i;:::-;;:::i;:::-;;;1188:14:1;;1181:22;1163:41;;1151:2;1136:18;12228:210:0;1023:187:1;34409:63:0;;;;;;;;;;-1:-1:-1;34409:63:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;33141:51;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;1658:32:1;;;1640:51;;1628:2;1613:18;33141:51:0;1467:230:1;11040:108:0;;;;;;;;;;-1:-1:-1;11128:12:0;;11040:108;;;1848:25:1;;;1836:2;1821:18;11040:108:0;1702:177:1;41684:157:0;;;;;;;;;;-1:-1:-1;41684:157:0;;;;;:::i;:::-;;:::i;:::-;;34193:33;;;;;;;;;;;;;;;;34153;;;;;;;;;;;;;;;;38998:275;;;;;;;;;;-1:-1:-1;38998:275:0;;;;;:::i;:::-;;:::i;12920:529::-;;;;;;;;;;-1:-1:-1;12920:529:0;;;;;:::i;:::-;;:::i;33244:53::-;;;;;;;;;;;;33290:6;33244:53;;10882:93;;;;;;;;;;-1:-1:-1;10882:93:0;;10965:2;2880:36:1;;2868:2;2853:18;10882:93:0;2738:184:1;13858:297:0;;;;;;;;;;-1:-1:-1;13858:297:0;;;;;:::i;:::-;;:::i;33199:38::-;;;;;;;;;;;;;;;33521:33;;;;;;;;;;-1:-1:-1;33521:33:0;;;;;;;;41849:126;;;;;;;;;;-1:-1:-1;41849:126:0;;;;;:::i;:::-;-1:-1:-1;;;;;41939:28:0;41915:4;41939:28;;;:19;:28;;;;;;;;;41849:126;34008:28;;;;;;;;;;;;;;;;33601:31;;;;;;;;;;-1:-1:-1;33601:31:0;;;;;;;;;;;11211:177;;;;;;;;;;-1:-1:-1;11211:177:0;;;;;:::i;:::-;-1:-1:-1;;;;;11362:18:0;11330:7;11362:18;;;;;;;;;;;;11211:177;3039:103;;;;;;;;;;;;;:::i;38106:121::-;;;;;;;;;;;;;:::i;39545:167::-;;;;;;;;;;-1:-1:-1;39545:167:0;;;;;:::i;:::-;;:::i;33336:30::-;;;;;;;;;;-1:-1:-1;33336:30:0;;;;-1:-1:-1;;;;;33336:30:0;;;33901;;;;;;;;;;;;;;;;39916:403;;;;;;;;;;-1:-1:-1;39916:403:0;;;;;:::i;:::-;;:::i;37942:112::-;;;;;;;;;;;;;:::i;2388:87::-;;;;;;;;;;-1:-1:-1;2461:6:0;;-1:-1:-1;;;;;2461:6:0;2388:87;;33373:24;;;;;;;;;;-1:-1:-1;33373:24:0;;;;-1:-1:-1;;;;;33373:24:0;;;34043:31;;;;;;;;;;;;;;;;39808:100;;;;;;;;;;-1:-1:-1;39808:100:0;;;;;:::i;:::-;;:::i;10139:104::-;;;;;;;;;;;;;:::i;40937:304::-;;;;;;;;;;-1:-1:-1;40937:304:0;;;;;:::i;:::-;;:::i;33975:24::-;;;;;;;;;;;;;;;;34233:27;;;;;;;;;;;;;;;;34119:25;;;;;;;;;;;;;;;;14658:482;;;;;;;;;;-1:-1:-1;14658:482:0;;;;;:::i;:::-;;:::i;11601:216::-;;;;;;;;;;-1:-1:-1;11601:216:0;;;;;:::i;:::-;;:::i;41445:231::-;;;;;;;;;;-1:-1:-1;41445:231:0;;;;;:::i;:::-;;:::i;34630:57::-;;;;;;;;;;-1:-1:-1;34630:57:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;33561:33;;;;;;;;;;-1:-1:-1;33561:33:0;;;;;;;;;;;40747:182;;;;;;;;;;-1:-1:-1;40747:182:0;;;;;:::i;:::-;;:::i;40327:412::-;;;;;;;;;;-1:-1:-1;40327:412:0;;;;;:::i;:::-;;:::i;39281:256::-;;;;;;;;;;-1:-1:-1;39281:256:0;;;;;:::i;:::-;;:::i;33819:39::-;;;;;;;;;;-1:-1:-1;33819:39:0;;;;;;;;33406:35;;;;;;;;;;;;;;;;38493:497;;;;;;;;;;-1:-1:-1;38493:497:0;;;;;:::i;:::-;;:::i;33867:27::-;;;;;;;;;;;;;;;;11880:201;;;;;;;;;;-1:-1:-1;11880:201:0;;;;;:::i;:::-;-1:-1:-1;;;;;12046:18:0;;;12014:7;12046:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;11880:201;33448:33;;;;;;;;;;;;;;;;38288:135;;;;;;;;;;;;;:::i;33938:30::-;;;;;;;;;;;;;;;;3297:238;;;;;;;;;;-1:-1:-1;3297:238:0;;;;;:::i;:::-;;:::i;34081:31::-;;;;;;;;;;;;;;;;33488:24;;;;;;;;;;;;;;;;9920:100;9974:13;10007:5;10000:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9920:100;:::o;12228:210::-;12347:4;12369:39;1116:10;12392:7;12401:6;12369:8;:39::i;:::-;-1:-1:-1;12426:4:0;12228:210;;;;;:::o;41684:157::-;2461:6;;-1:-1:-1;;;;;2461:6:0;1116:10;2608:23;2600:68;;;;-1:-1:-1;;;2600:68:0;;;;;;;:::i;:::-;;;;;;;;;41791:9:::1;::::0;41763:38:::1;::::0;-1:-1:-1;;;;;41791:9:0;;::::1;::::0;41763:38;::::1;::::0;::::1;::::0;41791:9:::1;::::0;41763:38:::1;41812:9;:21:::0;;-1:-1:-1;;;;;;41812:21:0::1;-1:-1:-1::0;;;;;41812:21:0;;;::::1;::::0;;;::::1;::::0;;41684:157::o;38998:275::-;2461:6;;-1:-1:-1;;;;;2461:6:0;1116:10;2608:23;2600:68;;;;-1:-1:-1;;;2600:68:0;;;;;;;:::i;:::-;39135:4:::1;39127;39106:13;11128:12:::0;;;11040:108;39106:13:::1;:17;::::0;39122:1:::1;39106:17;:::i;:::-;39105:26;;;;:::i;:::-;39104:35;;;;:::i;:::-;39094:6;:45;;39072:142;;;::::0;-1:-1:-1;;;39072:142:0;;5786:2:1;39072:142:0::1;::::0;::::1;5768:21:1::0;5825:2;5805:18;;;5798:30;5864:34;5844:18;;;5837:62;-1:-1:-1;;;5915:18:1;;;5908:45;5970:19;;39072:142:0::1;5584:411:1::0;39072:142:0::1;39248:17;:6:::0;39258::::1;39248:17;:::i;:::-;39225:20;:40:::0;-1:-1:-1;38998:275:0:o;12920:529::-;13060:4;13077:36;13087:6;13095:9;13106:6;13077:9;:36::i;:::-;-1:-1:-1;;;;;13153:19:0;;13126:24;13153:19;;;:11;:19;;;;;;;;1116:10;13153:33;;;;;;;;13219:26;;;;13197:116;;;;-1:-1:-1;;;13197:116:0;;6202:2:1;13197:116:0;;;6184:21:1;6241:2;6221:18;;;6214:30;6280:34;6260:18;;;6253:62;-1:-1:-1;;;6331:18:1;;;6324:38;6379:19;;13197:116:0;6000:404:1;13197:116:0;13349:57;13358:6;1116:10;13399:6;13380:16;:25;13349:8;:57::i;:::-;-1:-1:-1;13437:4:0;;12920:529;-1:-1:-1;;;;12920:529:0:o;13858:297::-;1116:10;13973:4;14067:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;14067:34:0;;;;;;;;;;13973:4;;13995:130;;14045:7;;14067:47;;14104:10;;14067:47;:::i;:::-;13995:8;:130::i;3039:103::-;2461:6;;-1:-1:-1;;;;;2461:6:0;1116:10;2608:23;2600:68;;;;-1:-1:-1;;;2600:68:0;;;;;;;:::i;:::-;3104:30:::1;3131:1;3104:18;:30::i;:::-;3039:103::o:0;38106:121::-;2461:6;;38158:4;;-1:-1:-1;;;;;2461:6:0;1116:10;2608:23;2600:68;;;;-1:-1:-1;;;2600:68:0;;;;;;;:::i;:::-;-1:-1:-1;38175:14:0::1;:22:::0;;-1:-1:-1;;38175:22:0::1;::::0;;;38106:121;:::o;39545:167::-;2461:6;;-1:-1:-1;;;;;2461:6:0;1116:10;2608:23;2600:68;;;;-1:-1:-1;;;2600:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;39658:39:0;;;::::1;;::::0;;;:31:::1;:39;::::0;;;;:46;;-1:-1:-1;;39658:46:0::1;::::0;::::1;;::::0;;;::::1;::::0;;39545:167::o;39916:403::-;2461:6;;-1:-1:-1;;;;;2461:6:0;1116:10;2608:23;2600:68;;;;-1:-1:-1;;;2600:68:0;;;;;;;:::i;:::-;40066:15:::1;:31:::0;;;40108:15:::1;:31:::0;;;40150:9:::1;:19:::0;;;40162:7;40195:33:::1;40126:13:::0;40084;40195:33:::1;:::i;:::-;:45;;;;:::i;:::-;40180:12;:60:::0;;;40275:2:::1;-1:-1:-1::0;40259:18:0::1;40251:60;;;::::0;-1:-1:-1;;;40251:60:0;;6741:2:1;40251:60:0::1;::::0;::::1;6723:21:1::0;6780:2;6760:18;;;6753:30;6819:31;6799:18;;;6792:59;6868:18;;40251:60:0::1;6539:353:1::0;40251:60:0::1;39916:403:::0;;;:::o;37942:112::-;2461:6;;-1:-1:-1;;;;;2461:6:0;1116:10;2608:23;2600:68;;;;-1:-1:-1;;;2600:68:0;;;;;;;:::i;:::-;37997:13:::1;:20:::0;;-1:-1:-1;;38028:18:0;;;;;37942:112::o;39808:100::-;2461:6;;-1:-1:-1;;;;;2461:6:0;1116:10;2608:23;2600:68;;;;-1:-1:-1;;;2600:68:0;;;;;;;:::i;:::-;39879:11:::1;:21:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;39879:21:0;;::::1;::::0;;;::::1;::::0;;39808:100::o;10139:104::-;10195:13;10228:7;10221:14;;;;;:::i;40937:304::-;2461:6;;-1:-1:-1;;;;;2461:6:0;1116:10;2608:23;2600:68;;;;-1:-1:-1;;;2600:68:0;;;;;;;:::i;:::-;41081:13:::1;-1:-1:-1::0;;;;;41073:21:0::1;:4;-1:-1:-1::0;;;;;41073:21:0::1;::::0;41051:128:::1;;;::::0;-1:-1:-1;;;41051:128:0;;7099:2:1;41051:128:0::1;::::0;::::1;7081:21:1::0;7138:2;7118:18;;;7111:30;7177:34;7157:18;;;7150:62;7248:27;7228:18;;;7221:55;7293:19;;41051:128:0::1;6897:421:1::0;41051:128:0::1;41192:41;41221:4;41227:5;41192:28;:41::i;:::-;40937:304:::0;;:::o;14658:482::-;1116:10;14778:4;14827:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;14827:34:0;;;;;;;;;;14894:35;;;;14872:122;;;;-1:-1:-1;;;14872:122:0;;7525:2:1;14872:122:0;;;7507:21:1;7564:2;7544:18;;;7537:30;7603:34;7583:18;;;7576:62;-1:-1:-1;;;7654:18:1;;;7647:35;7699:19;;14872:122:0;7323:401:1;14872:122:0;15030:67;1116:10;15053:7;15081:15;15062:16;:34;15030:8;:67::i;:::-;-1:-1:-1;15128:4:0;;14658:482;-1:-1:-1;;;14658:482:0:o;11601:216::-;11723:4;11745:42;1116:10;11769:9;11780:6;11745:9;:42::i;41445:231::-;2461:6;;-1:-1:-1;;;;;2461:6:0;1116:10;2608:23;2600:68;;;;-1:-1:-1;;;2600:68:0;;;;;;;:::i;:::-;41605:15:::1;::::0;41562:59:::1;::::0;-1:-1:-1;;;;;41605:15:0;;::::1;::::0;41562:59;::::1;::::0;::::1;::::0;41605:15:::1;::::0;41562:59:::1;41632:15;:36:::0;;-1:-1:-1;;;;;;41632:36:0::1;-1:-1:-1::0;;;;;41632:36:0;;;::::1;::::0;;;::::1;::::0;;41445:231::o;40747:182::-;2461:6;;-1:-1:-1;;;;;2461:6:0;1116:10;2608:23;2600:68;;;;-1:-1:-1;;;2600:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;40832:28:0;::::1;;::::0;;;:19:::1;:28;::::0;;;;;;;;:39;;-1:-1:-1;;40832:39:0::1;::::0;::::1;;::::0;;::::1;::::0;;;40887:34;;1163:41:1;;;40887:34:0::1;::::0;1136:18:1;40887:34:0::1;;;;;;;40747:182:::0;;:::o;40327:412::-;2461:6;;-1:-1:-1;;;;;2461:6:0;1116:10;2608:23;2600:68;;;;-1:-1:-1;;;2600:68:0;;;;;;;:::i;:::-;40478:16:::1;:32:::0;;;40521:16:::1;:32:::0;;;40564:10:::1;:20:::0;;;40577:7;40611:35:::1;40540:13:::0;40497;40611:35:::1;:::i;:::-;:48;;;;:::i;:::-;40595:13;:64:::0;;;40695:2:::1;-1:-1:-1::0;40678:19:0::1;40670:61;;;::::0;-1:-1:-1;;;40670:61:0;;7931:2:1;40670:61:0::1;::::0;::::1;7913:21:1::0;7970:2;7950:18;;;7943:30;8009:31;7989:18;;;7982:59;8058:18;;40670:61:0::1;7729:353:1::0;39281:256:0;2461:6;;-1:-1:-1;;;;;2461:6:0;1116:10;2608:23;2600:68;;;;-1:-1:-1;;;2600:68:0;;;;;;;:::i;:::-;39421:4:::1;39413;39392:13;11128:12:::0;;;11040:108;39392:13:::1;:17;::::0;39408:1:::1;39392:17;:::i;:::-;39391:26;;;;:::i;:::-;39390:35;;;;:::i;:::-;39380:6;:45;;39358:131;;;::::0;-1:-1:-1;;;39358:131:0;;8289:2:1;39358:131:0::1;::::0;::::1;8271:21:1::0;8328:2;8308:18;;;8301:30;8367:34;8347:18;;;8340:62;-1:-1:-1;;;8418:18:1;;;8411:34;8462:19;;39358:131:0::1;8087:400:1::0;39358:131:0::1;39512:17;:6:::0;39522::::1;39512:17;:::i;:::-;39500:9;:29:::0;-1:-1:-1;39281:256:0:o;38493:497::-;2461:6;;38601:4;;-1:-1:-1;;;;;2461:6:0;1116:10;2608:23;2600:68;;;;-1:-1:-1;;;2600:68:0;;;;;;;:::i;:::-;38680:6:::1;38659:13;11128:12:::0;;;11040:108;38659:13:::1;:17;::::0;38675:1:::1;38659:17;:::i;:::-;38658:28;;;;:::i;:::-;38645:9;:41;;38623:144;;;::::0;-1:-1:-1;;;38623:144:0;;8694:2:1;38623:144:0::1;::::0;::::1;8676:21:1::0;8733:2;8713:18;;;8706:30;8772:34;8752:18;;;8745:62;-1:-1:-1;;;8823:18:1;;;8816:51;8884:19;;38623:144:0::1;8492:417:1::0;38623:144:0::1;38835:4;38814:13;11128:12:::0;;;11040:108;38814:13:::1;:17;::::0;38830:1:::1;38814:17;:::i;:::-;38813:26;;;;:::i;:::-;38800:9;:39;;38778:141;;;::::0;-1:-1:-1;;;38778:141:0;;9116:2:1;38778:141:0::1;::::0;::::1;9098:21:1::0;9155:2;9135:18;;;9128:30;9194:34;9174:18;;;9167:62;-1:-1:-1;;;9245:18:1;;;9238:50;9305:19;;38778:141:0::1;8914:416:1::0;38778:141:0::1;-1:-1:-1::0;38930:18:0::1;:30:::0;;;38978:4:::1;2679:1;38493:497:::0;;;:::o;38288:135::-;2461:6;;38348:4;;-1:-1:-1;;;;;2461:6:0;1116:10;2608:23;2600:68;;;;-1:-1:-1;;;2600:68:0;;;;;;;:::i;:::-;-1:-1:-1;38365:20:0::1;:28:::0;;-1:-1:-1;;38365:28:0::1;::::0;;;38288:135;:::o;3297:238::-;2461:6;;-1:-1:-1;;;;;2461:6:0;1116:10;2608:23;2600:68;;;;-1:-1:-1;;;2600:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;3400:22:0;::::1;3378:110;;;::::0;-1:-1:-1;;;3378:110:0;;9537:2:1;3378:110:0::1;::::0;::::1;9519:21:1::0;9576:2;9556:18;;;9549:30;9615:34;9595:18;;;9588:62;-1:-1:-1;;;9666:18:1;;;9659:36;9712:19;;3378:110:0::1;9335:402:1::0;3378:110:0::1;3499:28;3518:8;3499:18;:28::i;:::-;3297:238:::0;:::o;18448:380::-;-1:-1:-1;;;;;18584:19:0;;18576:68;;;;-1:-1:-1;;;18576:68:0;;9944:2:1;18576:68:0;;;9926:21:1;9983:2;9963:18;;;9956:30;10022:34;10002:18;;;9995:62;-1:-1:-1;;;10073:18:1;;;10066:34;10117:19;;18576:68:0;9742:400:1;18576:68:0;-1:-1:-1;;;;;18663:21:0;;18655:68;;;;-1:-1:-1;;;18655:68:0;;10349:2:1;18655:68:0;;;10331:21:1;10388:2;10368:18;;;10361:30;10427:34;10407:18;;;10400:62;-1:-1:-1;;;10478:18:1;;;10471:32;10520:19;;18655:68:0;10147:398:1;18655:68:0;-1:-1:-1;;;;;18736:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;18788:32;;1848:25:1;;;18788:32:0;;1821:18:1;18788:32:0;;;;;;;18448:380;;;:::o;41983:4717::-;-1:-1:-1;;;;;42115:18:0;;42107:68;;;;-1:-1:-1;;;42107:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;42194:16:0;;42186:64;;;;-1:-1:-1;;;42186:64:0;;;;;;;:::i;:::-;42267:6;42277:1;42267:11;42263:93;;42295:28;42311:4;42317:2;42321:1;42295:15;:28::i;42263:93::-;42372:14;;;;42368:2487;;;2461:6;;-1:-1:-1;;;;;42425:15:0;;;2461:6;;42425:15;;;;:49;;-1:-1:-1;2461:6:0;;-1:-1:-1;;;;;42461:13:0;;;2461:6;;42461:13;;42425:49;:86;;;;-1:-1:-1;;;;;;42495:16:0;;;;42425:86;:128;;;;-1:-1:-1;;;;;;42532:21:0;;42546:6;42532:21;;42425:128;:158;;;;-1:-1:-1;42575:8:0;;-1:-1:-1;;;42575:8:0;;;;42574:9;42425:158;42403:2441;;;42623:13;;;;;;;42618:223;;-1:-1:-1;;;;;42695:25:0;;;;;;:19;:25;;;;;;;;;:52;;-1:-1:-1;;;;;;42724:23:0;;;;;;:19;:23;;;;;;;;42695:52;42661:160;;;;-1:-1:-1;;;42661:160:0;;11562:2:1;42661:160:0;;;11544:21:1;11601:2;11581:18;;;11574:30;-1:-1:-1;;;11620:18:1;;;11613:52;11682:18;;42661:160:0;11360:346:1;42661:160:0;42997:20;;;;42993:641;;;2461:6;;-1:-1:-1;;;;;43072:13:0;;;2461:6;;43072:13;;;;:72;;;43128:15;-1:-1:-1;;;;;43114:30:0;:2;-1:-1:-1;;;;;43114:30:0;;;43072:72;:129;;;;;43187:13;-1:-1:-1;;;;;43173:28:0;:2;-1:-1:-1;;;;;43173:28:0;;;43072:129;43042:573;;;43319:9;43290:39;;;;:28;:39;;;;;;43365:12;-1:-1:-1;43252:258:0;;;;-1:-1:-1;;;43252:258:0;;11913:2:1;43252:258:0;;;11895:21:1;11952:2;11932:18;;;11925:30;11991:34;11971:18;;;11964:62;12062:34;12042:18;;;12035:62;-1:-1:-1;;;12113:19:1;;;12106:40;12163:19;;43252:258:0;11711:477:1;43252:258:0;43566:9;43537:39;;;;:28;:39;;;;;43579:12;43537:54;;43042:573;-1:-1:-1;;;;;43708:31:0;;;;;;:25;:31;;;;;;;;:92;;;;-1:-1:-1;;;;;;43765:35:0;;;;;;:31;:35;;;;;;;;43764:36;43708:92;43682:1147;;;43887:20;;43877:6;:30;;43843:169;;;;-1:-1:-1;;;43843:169:0;;12395:2:1;43843:169:0;;;12377:21:1;12434:2;12414:18;;;12407:30;12473:34;12453:18;;;12446:62;-1:-1:-1;;;12524:18:1;;;12517:51;12585:19;;43843:169:0;12193:417:1;43843:169:0;44095:9;;-1:-1:-1;;;;;11362:18:0;;11330:7;11362:18;;;;;;;;;;;44069:22;;:6;:22;:::i;:::-;:35;;44035:140;;;;-1:-1:-1;;;44035:140:0;;12817:2:1;44035:140:0;;;12799:21:1;12856:2;12836:18;;;12829:30;-1:-1:-1;;;12875:18:1;;;12868:49;12934:18;;44035:140:0;12615:343:1;44035:140:0;43682:1147;;;-1:-1:-1;;;;;44273:29:0;;;;;;:25;:29;;;;;;;;:92;;;;-1:-1:-1;;;;;;44328:37:0;;;;;;:31;:37;;;;;;;;44327:38;44273:92;44247:582;;;44452:20;;44442:6;:30;;44408:170;;;;-1:-1:-1;;;44408:170:0;;13165:2:1;44408:170:0;;;13147:21:1;13204:2;13184:18;;;13177:30;13243:34;13223:18;;;13216:62;-1:-1:-1;;;13294:18:1;;;13287:52;13356:19;;44408:170:0;12963:418:1;44247:582:0;-1:-1:-1;;;;;44609:35:0;;;;;;:31;:35;;;;;;;;44604:225;;44729:9;;-1:-1:-1;;;;;11362:18:0;;11330:7;11362:18;;;;;;;;;;;44703:22;;:6;:22;:::i;:::-;:35;;44669:140;;;;-1:-1:-1;;;44669:140:0;;12817:2:1;44669:140:0;;;12799:21:1;12856:2;12836:18;;;12829:30;-1:-1:-1;;;12875:18:1;;;12868:49;12934:18;;44669:140:0;12615:343:1;44669:140:0;44916:4;44867:28;11362:18;;;;;;;;;;;44974;;44950:42;;;;;;;45023:35;;-1:-1:-1;45047:11:0;;;;;;;45023:35;:61;;;;-1:-1:-1;45076:8:0;;-1:-1:-1;;;45076:8:0;;;;45075:9;45023:61;:110;;;;-1:-1:-1;;;;;;45102:31:0;;;;;;:25;:31;;;;;;;;45101:32;45023:110;:153;;;;-1:-1:-1;;;;;;45151:25:0;;;;;;:19;:25;;;;;;;;45150:26;45023:153;:194;;;;-1:-1:-1;;;;;;45194:23:0;;;;;;:19;:23;;;;;;;;45193:24;45023:194;45005:326;;;45244:8;:15;;-1:-1:-1;;;;45244:15:0;-1:-1:-1;;;45244:15:0;;;45276:10;:8;:10::i;:::-;45303:8;:16;;-1:-1:-1;;;;45303:16:0;;;45005:326;45359:8;;-1:-1:-1;;;;;45469:25:0;;45343:12;45469:25;;;:19;:25;;;;;;45359:8;-1:-1:-1;;;45359:8:0;;;;;45358:9;;45469:25;;:52;;-1:-1:-1;;;;;;45498:23:0;;;;;;:19;:23;;;;;;;;45469:52;45465:100;;;-1:-1:-1;45548:5:0;45465:100;45577:12;45682:7;45678:969;;;-1:-1:-1;;;;;45734:29:0;;;;;;:25;:29;;;;;;;;:50;;;;;45783:1;45767:13;;:17;45734:50;45730:768;;;45812:34;45842:3;45812:25;45823:13;;45812:6;:10;;:25;;;;:::i;:::-;:29;;:34::i;:::-;45805:41;;45915:13;;45895:16;;45888:4;:23;;;;:::i;:::-;45887:41;;;;:::i;:::-;45865:18;;:63;;;;;;;:::i;:::-;;;;-1:-1:-1;;45985:13:0;;45971:10;;45964:17;;:4;:17;:::i;:::-;45963:35;;;;:::i;:::-;45947:12;;:51;;;;;;;:::i;:::-;;;;-1:-1:-1;;46067:13:0;;46047:16;;46040:23;;:4;:23;:::i;:::-;46039:41;;;;:::i;:::-;46017:18;;:63;;;;;;;:::i;:::-;;;;-1:-1:-1;45730:768:0;;-1:-1:-1;45730:768:0;;-1:-1:-1;;;;;46142:31:0;;;;;;:25;:31;;;;;;;;:51;;;;;46192:1;46177:12;;:16;46142:51;46138:360;;;46221:33;46250:3;46221:24;46232:12;;46221:6;:10;;:24;;;;:::i;:33::-;46214:40;;46322:12;;46303:15;;46296:4;:22;;;;:::i;:::-;46295:39;;;;:::i;:::-;46273:18;;:61;;;;;;;:::i;:::-;;;;-1:-1:-1;;46390:12:0;;46377:9;;46370:16;;:4;:16;:::i;:::-;46369:33;;;;:::i;:::-;46353:12;;:49;;;;;;;:::i;:::-;;;;-1:-1:-1;;46470:12:0;;46451:15;;46444:22;;:4;:22;:::i;:::-;46443:39;;;;:::i;:::-;46421:18;;:61;;;;;;;:::i;:::-;;;;-1:-1:-1;;46138:360:0;46518:8;;46514:91;;46547:42;46563:4;46577;46584;46547:15;:42::i;:::-;46621:14;46631:4;46621:14;;:::i;:::-;;;45678:969;46659:33;46675:4;46681:2;46685:6;46659:15;:33::i;:::-;42096:4604;;;;41983:4717;;;:::o;3695:191::-;3788:6;;;-1:-1:-1;;;;;3805:17:0;;;-1:-1:-1;;;;;;3805:17:0;;;;;;;3838:40;;3788:6;;;3805:17;3788:6;;3838:40;;3769:16;;3838:40;3758:128;3695:191;:::o;41249:188::-;-1:-1:-1;;;;;41332:31:0;;;;;;:25;:31;;;;;;:39;;-1:-1:-1;;41332:39:0;;;;;;;;;;41389:40;;41332:39;;:31;41389:40;;;41249:188;;:::o;15630:770::-;-1:-1:-1;;;;;15770:20:0;;15762:70;;;;-1:-1:-1;;;15762:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;15851:23:0;;15843:71;;;;-1:-1:-1;;;15843:71:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;16011:17:0;;15987:21;16011:17;;;;;;;;;;;16061:23;;;;16039:111;;;;-1:-1:-1;;;16039:111:0;;13721:2:1;16039:111:0;;;13703:21:1;13760:2;13740:18;;;13733:30;13799:34;13779:18;;;13772:62;-1:-1:-1;;;13850:18:1;;;13843:36;13896:19;;16039:111:0;13519:402:1;16039:111:0;-1:-1:-1;;;;;16186:17:0;;;:9;:17;;;;;;;;;;;16206:22;;;16186:42;;16250:20;;;;;;;;:30;;16222:6;;16186:9;16250:30;;16222:6;;16250:30;:::i;:::-;;;;;;;;16315:9;-1:-1:-1;;;;;16298:35:0;16307:6;-1:-1:-1;;;;;16298:35:0;;16326:6;16298:35;;;;1848:25:1;;1836:2;1821:18;;1702:177;16298:35:0;;;;;;;;15751:649;15630:770;;;:::o;47830:1756::-;47913:4;47869:23;11362:18;;;;;;;;;;;47869:50;;47930:25;48026:12;;47992:18;;47958;;:52;;;;:::i;:::-;:80;;;;:::i;:::-;47930:108;-1:-1:-1;48049:12:0;48078:20;;;:46;;-1:-1:-1;48102:22:0;;48078:46;48074:85;;;48141:7;;;47830:1756::o;48074:85::-;48193:18;;:23;;48214:2;48193:23;:::i;:::-;48175:15;:41;48171:115;;;48251:18;;:23;;48272:2;48251:23;:::i;:::-;48233:41;;48171:115;48347:23;48460:1;48427:17;48392:18;;48374:15;:36;;;;:::i;:::-;48373:71;;;;:::i;:::-;:88;;;;:::i;:::-;48347:114;-1:-1:-1;48472:26:0;48501:36;:15;48347:114;48501:19;:36::i;:::-;48472:65;-1:-1:-1;48578:21:0;48612:36;48472:65;48612:16;:36::i;:::-;48661:18;48682:44;:21;48708:17;48682:25;:44::i;:::-;48661:65;;48739:23;48765:81;48818:17;48765:34;48780:18;;48765:10;:14;;:34;;;;:::i;:81::-;48739:107;;48857:17;48877:51;48910:17;48877:28;48892:12;;48877:10;:14;;:28;;;;:::i;:51::-;48857:71;-1:-1:-1;48941:23:0;48857:71;48967:28;48980:15;48967:10;:28;:::i;:::-;:40;;;;:::i;:::-;49041:1;49020:18;:22;;;49053:18;:22;;;49086:12;:16;;;49137:9;;49129:45;;48941:66;;-1:-1:-1;;;;;;49137:9:0;;49160;;49129:45;49041:1;49129:45;49160:9;49137;49129:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;49115:59:0;;-1:-1:-1;;49191:19:0;;;;;:42;;;49232:1;49214:15;:19;49191:42;49187:278;;;49250:46;49263:15;49280;49250:12;:46::i;:::-;49420:18;;49316:137;;;14338:25:1;;;14394:2;14379:18;;14372:34;;;14422:18;;;14415:34;;;;49316:137:0;;;;;;14326:2:1;49316:137:0;;;49187:278;49499:15;;49491:87;;-1:-1:-1;;;;;49499:15:0;;;;49542:21;;49491:87;;;;49542:21;49499:15;49491:87;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;;;47830:1756:0:o;24061:98::-;24119:7;24146:5;24150:1;24146;:5;:::i;:::-;24139:12;24061:98;-1:-1:-1;;;24061:98:0:o;24460:::-;24518:7;24545:5;24549:1;24545;:5;:::i;23704:98::-;23762:7;23789:5;23793:1;23789;:5;:::i;46708:589::-;46858:16;;;46872:1;46858:16;;;;;;;;46834:21;;46858:16;;;;;;;;;;-1:-1:-1;46858:16:0;46834:40;;46903:4;46885;46890:1;46885:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;46885:23:0;;;-1:-1:-1;;;;;46885:23:0;;;;;46929:15;-1:-1:-1;;;;;46929:20:0;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;46919:4;46924:1;46919:7;;;;;;;;:::i;:::-;;;;;;:32;-1:-1:-1;;;;;46919:32:0;;;-1:-1:-1;;;;;46919:32:0;;;;;46964:62;46981:4;46996:15;47014:11;46964:8;:62::i;:::-;47065:224;;-1:-1:-1;;;47065:224:0;;-1:-1:-1;;;;;47065:15:0;:66;;;;:224;;47146:11;;47172:1;;47216:4;;47243;;47263:15;;47065:224;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46763:534;46708:589;:::o;47305:517::-;47453:62;47470:4;47485:15;47503:11;47453:8;:62::i;:::-;47558:256;;-1:-1:-1;;;47558:256:0;;47630:4;47558:256;;;16306:34:1;16356:18;;;16349:34;;;47676:1:0;16399:18:1;;;16392:34;;;16442:18;;;16435:34;33290:6:0;16485:19:1;;;16478:44;47788:15:0;16538:19:1;;;16531:35;47558:15:0;-1:-1:-1;;;;;47558:31:0;;;;47597:9;;16240:19:1;;47558:256:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;47305:517;;:::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;1215:247::-;1274:6;1327:2;1315:9;1306:7;1302:23;1298:32;1295:52;;;1343:1;1340;1333:12;1295:52;1382:9;1369:23;1401:31;1426:5;1401:31;:::i;1884:180::-;1943:6;1996:2;1984:9;1975:7;1971:23;1967:32;1964:52;;;2012:1;2009;2002:12;1964:52;-1:-1:-1;2035:23:1;;1884:180;-1:-1:-1;1884:180:1:o;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;2927:160::-;2992:20;;3048:13;;3041:21;3031:32;;3021:60;;3077:1;3074;3067:12;3092:315;3157:6;3165;3218:2;3206:9;3197:7;3193:23;3189:32;3186:52;;;3234:1;3231;3224:12;3186:52;3273:9;3260:23;3292:31;3317:5;3292:31;:::i;:::-;3342:5;-1:-1:-1;3366:35:1;3397:2;3382:18;;3366:35;:::i;:::-;3356:45;;3092:315;;;;;:::o;3412:316::-;3489:6;3497;3505;3558:2;3546:9;3537:7;3533:23;3529:32;3526:52;;;3574:1;3571;3564:12;3526:52;-1:-1:-1;;3597:23:1;;;3667:2;3652:18;;3639:32;;-1:-1:-1;3718:2:1;3703:18;;;3690:32;;3412:316;-1:-1:-1;3412:316:1:o;3733:180::-;3789:6;3842:2;3830:9;3821:7;3817:23;3813:32;3810:52;;;3858:1;3855;3848:12;3810:52;3881:26;3897:9;3881:26;:::i;3918:388::-;3986:6;3994;4047:2;4035:9;4026:7;4022:23;4018:32;4015:52;;;4063:1;4060;4053:12;4015:52;4102:9;4089:23;4121:31;4146:5;4121:31;:::i;:::-;4171:5;-1:-1:-1;4228:2:1;4213:18;;4200:32;4241:33;4200:32;4241:33;:::i;:::-;4293:7;4283:17;;;3918:388;;;;;:::o;4311:380::-;4390:1;4386:12;;;;4433;;;4454:61;;4508:4;4500:6;4496:17;4486:27;;4454:61;4561:2;4553:6;4550:14;4530:18;4527:38;4524:161;;4607:10;4602:3;4598:20;4595:1;4588:31;4642:4;4639:1;4632:15;4670:4;4667:1;4660:15;4524:161;;4311:380;;;:::o;4696:356::-;4898:2;4880:21;;;4917:18;;;4910:30;4976:34;4971:2;4956:18;;4949:62;5043:2;5028:18;;4696:356::o;5057:127::-;5118:10;5113:3;5109:20;5106:1;5099:31;5149:4;5146:1;5139:15;5173:4;5170:1;5163:15;5189:168;5262:9;;;5293;;5310:15;;;5304:22;;5290:37;5280:71;;5331:18;;:::i;5362:217::-;5402:1;5428;5418:132;;5472:10;5467:3;5463:20;5460:1;5453:31;5507:4;5504:1;5497:15;5535:4;5532:1;5525:15;5418:132;-1:-1:-1;5564:9:1;;5362:217::o;6409:125::-;6474:9;;;6495:10;;;6492:36;;;6508:18;;:::i;10550:401::-;10752:2;10734:21;;;10791:2;10771:18;;;10764:30;10830:34;10825:2;10810:18;;10803:62;-1:-1:-1;;;10896:2:1;10881:18;;10874:35;10941:3;10926:19;;10550:401::o;10956:399::-;11158:2;11140:21;;;11197:2;11177:18;;;11170:30;11236:34;11231:2;11216:18;;11209:62;-1:-1:-1;;;11302:2:1;11287:18;;11280:33;11345:3;11330:19;;10956:399::o;13386:128::-;13453:9;;;13474:11;;;13471:37;;;13488:18;;:::i;14592:127::-;14653:10;14648:3;14644:20;14641:1;14634:31;14684:4;14681:1;14674:15;14708:4;14705:1;14698:15;14724:251;14794:6;14847:2;14835:9;14826:7;14822:23;14818:32;14815:52;;;14863:1;14860;14853:12;14815:52;14895:9;14889:16;14914:31;14939:5;14914:31;:::i;14980:980::-;15242:4;15290:3;15279:9;15275:19;15321:6;15310:9;15303:25;15347:2;15385:6;15380:2;15369:9;15365:18;15358:34;15428:3;15423:2;15412:9;15408:18;15401:31;15452:6;15487;15481:13;15518:6;15510;15503:22;15556:3;15545:9;15541:19;15534:26;;15595:2;15587:6;15583:15;15569:29;;15616:1;15626:195;15640:6;15637:1;15634:13;15626:195;;;15705:13;;-1:-1:-1;;;;;15701:39:1;15689:52;;15796:15;;;;15761:12;;;;15737:1;15655:9;15626:195;;;-1:-1:-1;;;;;;;15877:32:1;;;;15872:2;15857:18;;15850:60;-1:-1:-1;;;15941:3:1;15926:19;15919:35;15838:3;14980:980;-1:-1:-1;;;14980:980:1:o;16577:306::-;16665:6;16673;16681;16734:2;16722:9;16713:7;16709:23;16705:32;16702:52;;;16750:1;16747;16740:12;16702:52;16779:9;16773:16;16763:26;;16829:2;16818:9;16814:18;16808:25;16798:35;;16873:2;16862:9;16858:18;16852:25;16842:35;;16577:306;;;;;:::o

Swarm Source

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