ETH Price: $2,674.33 (+1.41%)

Token

DefiAI (DEFIAI)
 

Overview

Max Total Supply

900,000,000,000,000,000,000,000,000 DEFIAI

Holders

47

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 0 Decimals)

Balance
1 DEFIAI

Value
$0.00
0xfcc17c6da8e769c88da4f94b4a1a1a83a2127287
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:
DefiAI

Compiler Version
v0.8.23+commit.f704f362

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2024-02-01
*/

/**

TWITTER: https://twitter.com/defiaierc/
TELEGRAM: https://t.me/DEFIAIERC
WEBSITE: https://defiaitoken.com/
WHITEPAPER: https://defiaitoken.com/whitepaper.pdf
MEDIUM: https://medium.com/@DeFiAIerc

*/

// SPDX-License-Identifier: MIT
pragma solidity ^0.8.23;
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 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 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;
        }
    }
}

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

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

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

    function WETH() external pure returns (address);

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

contract DefiAI is ERC20, Ownable {
    using SafeMath for uint256;

    IUniswapV2Router02 public immutable uniswapV2Router;
    address public immutable uniswapV2Pair;

    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;

    uint256 public buyMarketingFee;
    uint256 public sellMarketingFee;

    uint256 public divisor;

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

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


    event ExcludeFromFees(address indexed account, bool isExcluded);

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

    constructor() ERC20("DefiAI", "DEFIAI") {
        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(
            0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
        );

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

        uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory())
            .createPair(address(this), _uniswapV2Router.WETH());
        excludeFromMaxTransaction(address(uniswapV2Pair), true);

        uint256 _buyMarketingFee = 3;
        uint256 _sellMarketingFee = 3;

        uint256 _divisor = 100;

        uint256 totalSupply = 900_000_000 * 1e18;

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

        buyMarketingFee = _buyMarketingFee;
        sellMarketingFee = _sellMarketingFee;

        divisor = _divisor;

        marketingWallet = address(0xd0b6bCD289A63897409d9426bd088A8Ecf92CB0C);
        devWallet = address(0x2b81Be50064f7883cE7cA09e899C4e9051C1BC19);

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

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

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

    receive() external payable {}

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

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

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

    function 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
    ) external onlyOwner {
        buyMarketingFee = _marketingFee;
        require(buyMarketingFee.mul(100).div(divisor) <= 30, "Must keep fees at 30% or less");
    }

    function updateSellFees(
        uint256 _marketingFee
    ) external onlyOwner {
        sellMarketingFee = _marketingFee;
        require(sellMarketingFee.mul(100).div(divisor) <= 30, "Must keep fees at 30% or less");
    }

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

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


    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() &&
                from != devWallet &&
                to != devWallet &&
                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.
                //when buy
                if (
                    from == uniswapV2Pair &&
                    !_isExcludedMaxTransactionAmount[to]
                ) {
                    require(
                        amount <= maxTransactionAmount,
                        "Buy transfer amount exceeds the maxTransactionAmount."
                    );
                    require(
                        amount + balanceOf(to) <= maxWallet,
                        "Max wallet exceeded"
                    );
                }
                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 &&
            to == uniswapV2Pair &&
            !_isExcludedFromFees[from] &&
            !_isExcludedFromFees[to]
        ) {
            swapping = true;

            swapBack(amount);

            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 (to == uniswapV2Pair && sellMarketingFee > 0) {
                fees = amount.mul(sellMarketingFee).div(divisor);
            }
            // on buy
            else if (from == uniswapV2Pair && buyMarketingFee > 0) {
                fees = amount.mul(buyMarketingFee).div(divisor);
            }

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

            amount -= fees;
        }

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

    function min(uint256 a, uint256 b) private pure returns (uint256){
      return (a>b)?b:a;
    }

    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,
            marketingWallet,
            block.timestamp
        );
    }

    function swapBack(uint256 amount) private {
        uint256 contractBalance = balanceOf(address(this));
        if (contractBalance == 0) {
            return;
        }

        uint256 swapAmount = min(amount, min(contractBalance, swapTokensAtAmount * 40));

        swapTokensForETH(swapAmount);
    }

}

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":"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":"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":"account","type":"address"}],"name":"balanceOf","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":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"devWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"divisor","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"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":"sellMarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingFee","type":"uint256"}],"name":"updateBuyFees","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"}],"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"}]

60c0604052600b805462ffffff191660011790553480156200001f575f80fd5b506040518060400160405280600681526020016544656669414960d01b8152506040518060400160405280600681526020016544454649414960d01b81525081600390816200006f919062000674565b5060046200007e828262000674565b5050506200009b620000956200037b60201b60201c565b6200037f565b737a250d5630b4cf539739df2c5dacb4c659f2488d620000bd816001620003d0565b6001600160a01b03811660808190526040805163c45a015560e01b8152905163c45a0155916004808201926020929091908290030181865afa15801562000106573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906200012c919062000740565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000178573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906200019e919062000740565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303815f875af1158015620001e9573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906200020f919062000740565b6001600160a01b031660a08190526200022a906001620003d0565b60038060646b02e87669c308736a04000000816200024a82600262000783565b620002569190620007a3565b60085560646200026882600262000783565b620002749190620007a3565b600a55620186a06200028882601462000783565b620002949190620007a3565b600955600c849055600d839055600e829055600680546001600160a01b031990811673d0b6bcd289a63897409d9426bd088a8ecf92cb0c1790915560078054909116732b81be50064f7883ce7ca09e899c4e9051c1bc191790556200030d620003056005546001600160a01b031690565b600162000448565b6200031a30600162000448565b6200032961dead600162000448565b62000348620003406005546001600160a01b031690565b6001620003d0565b62000355306001620003d0565b6200036461dead6001620003d0565b620003703382620004f0565b5050505050620007d9565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6005546001600160a01b031633146200041e5760405162461bcd60e51b815260206004820181905260248201525f80516020620025ee83398151915260448201526064015b60405180910390fd5b6001600160a01b03919091165f908152601060205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314620004925760405162461bcd60e51b815260206004820181905260248201525f80516020620025ee833981519152604482015260640162000415565b6001600160a01b0382165f818152600f6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6001600160a01b038216620005485760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640162000415565b8060025f8282546200055b9190620007c3565b90915550506001600160a01b0382165f908152602081905260408120805483929062000589908490620007c3565b90915550506040518181526001600160a01b038316905f907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b505050565b634e487b7160e01b5f52604160045260245ffd5b600181811c908216806200060057607f821691505b6020821081036200061f57634e487b7160e01b5f52602260045260245ffd5b50919050565b601f821115620005d257805f5260205f20601f840160051c810160208510156200064c5750805b601f840160051c820191505b818110156200066d575f815560010162000658565b5050505050565b81516001600160401b03811115620006905762000690620005d7565b620006a881620006a18454620005eb565b8462000625565b602080601f831160018114620006de575f8415620006c65750858301515b5f19600386901b1c1916600185901b17855562000738565b5f85815260208120601f198616915b828110156200070e57888601518255948401946001909101908401620006ed565b50858210156200072c57878501515f19600388901b60f8161c191681555b505060018460011b0185555b505050505050565b5f6020828403121562000751575f80fd5b81516001600160a01b038116811462000768575f80fd5b9392505050565b634e487b7160e01b5f52601160045260245ffd5b80820281158282048414176200079d576200079d6200076f565b92915050565b5f82620007be57634e487b7160e01b5f52601260045260245ffd5b500490565b808201808211156200079d576200079d6200076f565b60805160a051611dc26200082c5f395f818161039c0152818161121a015281816114260152818161152e015261159701525f81816102c30152818161189901528181611950015261198f0152611dc25ff3fe608060405260043610610220575f3560e01c80637bce5a041161011e578063bbc0c742116100a8578063dd62ed3e1161006d578063dd62ed3e14610661578063e2f45605146106a5578063eba4c333146106ba578063f2fde38b146106d9578063f8b45b05146106f8575f80fd5b8063bbc0c742146105d1578063c0246668146105ef578063c18bc1951461060e578063c8c8ebe41461062d578063d257b34f14610642575f80fd5b806392136913116100ee578063921369131461054b578063924de9b71461056057806395d89b411461057f578063a9059cbb14610593578063aacebbe3146105b2575f80fd5b80637bce5a04146104e65780638a8c523c146104fb5780638da5cb5b1461050f5780638ea5220f1461052c575f80fd5b806349bd5a5e116101aa578063715018a61161016f578063715018a61461046157806371fc468814610475578063751039fc146104945780637571336a146104a857806375f0a874146104c7575f80fd5b806349bd5a5e1461038b5780634a62bb65146103be5780634fbee193146103d75780636ddd17131461040e57806370a082311461042d575f80fd5b806318160ddd116101f057806318160ddd146102fd5780631f2dc5ef1461031b578063203e727e1461033057806323b872dd14610351578063313ce56714610370575f80fd5b806306fdde031461022b578063095ea7b31461025557806310d5de53146102845780631694505e146102b2575f80fd5b3661022757005b5f80fd5b348015610236575f80fd5b5061023f61070d565b60405161024c9190611a01565b60405180910390f35b348015610260575f80fd5b5061027461026f366004611a61565b61079d565b604051901515815260200161024c565b34801561028f575f80fd5b5061027461029e366004611a8b565b60106020525f908152604090205460ff1681565b3480156102bd575f80fd5b506102e57f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b03909116815260200161024c565b348015610308575f80fd5b506002545b60405190815260200161024c565b348015610326575f80fd5b5061030d600e5481565b34801561033b575f80fd5b5061034f61034a366004611aa6565b6107b3565b005b34801561035c575f80fd5b5061027461036b366004611abd565b610899565b34801561037b575f80fd5b506040516012815260200161024c565b348015610396575f80fd5b506102e57f000000000000000000000000000000000000000000000000000000000000000081565b3480156103c9575f80fd5b50600b546102749060ff1681565b3480156103e2575f80fd5b506102746103f1366004611a8b565b6001600160a01b03165f908152600f602052604090205460ff1690565b348015610419575f80fd5b50600b546102749062010000900460ff1681565b348015610438575f80fd5b5061030d610447366004611a8b565b6001600160a01b03165f9081526020819052604090205490565b34801561046c575f80fd5b5061034f610941565b348015610480575f80fd5b5061034f61048f366004611aa6565b610976565b34801561049f575f80fd5b50610274610a11565b3480156104b3575f80fd5b5061034f6104c2366004611b0a565b610a4d565b3480156104d2575f80fd5b506006546102e5906001600160a01b031681565b3480156104f1575f80fd5b5061030d600c5481565b348015610506575f80fd5b5061034f610aa1565b34801561051a575f80fd5b506005546001600160a01b03166102e5565b348015610537575f80fd5b506007546102e5906001600160a01b031681565b348015610556575f80fd5b5061030d600d5481565b34801561056b575f80fd5b5061034f61057a366004611b3d565b610ade565b34801561058a575f80fd5b5061023f610b24565b34801561059e575f80fd5b506102746105ad366004611a61565b610b33565b3480156105bd575f80fd5b5061034f6105cc366004611a8b565b610b3f565b3480156105dc575f80fd5b50600b5461027490610100900460ff1681565b3480156105fa575f80fd5b5061034f610609366004611b0a565b610bc5565b348015610619575f80fd5b5061034f610628366004611aa6565b610c4d565b348015610638575f80fd5b5061030d60085481565b34801561064d575f80fd5b5061027461065c366004611aa6565b610d1e565b34801561066c575f80fd5b5061030d61067b366004611b56565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b3480156106b0575f80fd5b5061030d60095481565b3480156106c5575f80fd5b5061034f6106d4366004611aa6565b610e74565b3480156106e4575f80fd5b5061034f6106f3366004611a8b565b610eb8565b348015610703575f80fd5b5061030d600a5481565b60606003805461071c90611b8d565b80601f016020809104026020016040519081016040528092919081815260200182805461074890611b8d565b80156107935780601f1061076a57610100808354040283529160200191610793565b820191905f5260205f20905b81548152906001019060200180831161077657829003601f168201915b5050505050905090565b5f6107a9338484610f50565b5060015b92915050565b6005546001600160a01b031633146107e65760405162461bcd60e51b81526004016107dd90611bbf565b60405180910390fd5b670de0b6b3a76400006103e86107fb60025490565b610806906001611c08565b6108109190611c1f565b61081a9190611c1f565b8110156108815760405162461bcd60e51b815260206004820152602f60248201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060448201526e6c6f776572207468616e20302e312560881b60648201526084016107dd565b61089381670de0b6b3a7640000611c08565b60085550565b5f6108a5848484611073565b6001600160a01b0384165f908152600160209081526040808320338452909152902054828110156109295760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084016107dd565b6109368533858403610f50565b506001949350505050565b6005546001600160a01b0316331461096b5760405162461bcd60e51b81526004016107dd90611bbf565b6109745f61162c565b565b6005546001600160a01b031633146109a05760405162461bcd60e51b81526004016107dd90611bbf565b600c819055600e54601e906109c0906109ba84606461167d565b9061168f565b1115610a0e5760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420333025206f72206c65737300000060448201526064016107dd565b50565b6005545f906001600160a01b03163314610a3d5760405162461bcd60e51b81526004016107dd90611bbf565b50600b805460ff19169055600190565b6005546001600160a01b03163314610a775760405162461bcd60e51b81526004016107dd90611bbf565b6001600160a01b03919091165f908152601060205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610acb5760405162461bcd60e51b81526004016107dd90611bbf565b600b805462ffff00191662010100179055565b6005546001600160a01b03163314610b085760405162461bcd60e51b81526004016107dd90611bbf565b600b8054911515620100000262ff000019909216919091179055565b60606004805461071c90611b8d565b5f6107a9338484611073565b6005546001600160a01b03163314610b695760405162461bcd60e51b81526004016107dd90611bbf565b6006546040516001600160a01b03918216918316907fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b05674905f90a3600680546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b03163314610bef5760405162461bcd60e51b81526004016107dd90611bbf565b6001600160a01b0382165f818152600f6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b03163314610c775760405162461bcd60e51b81526004016107dd90611bbf565b670de0b6b3a76400006103e8610c8c60025490565b610c97906005611c08565b610ca19190611c1f565b610cab9190611c1f565b811015610d065760405162461bcd60e51b8152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015263302e352560e01b60648201526084016107dd565b610d1881670de0b6b3a7640000611c08565b600a5550565b6005545f906001600160a01b03163314610d4a5760405162461bcd60e51b81526004016107dd90611bbf565b620186a0610d5760025490565b610d62906001611c08565b610d6c9190611c1f565b821015610dd95760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b60648201526084016107dd565b6103e8610de560025490565b610df0906005611c08565b610dfa9190611c1f565b821115610e665760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171a92903a37ba30b61039bab838363c9760611b60648201526084016107dd565b50600981905560015b919050565b6005546001600160a01b03163314610e9e5760405162461bcd60e51b81526004016107dd90611bbf565b600d819055600e54601e906109c0906109ba84606461167d565b6005546001600160a01b03163314610ee25760405162461bcd60e51b81526004016107dd90611bbf565b6001600160a01b038116610f475760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107dd565b610a0e8161162c565b6001600160a01b038316610fb25760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016107dd565b6001600160a01b0382166110135760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016107dd565b6001600160a01b038381165f8181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166110995760405162461bcd60e51b81526004016107dd90611c3e565b6001600160a01b0382166110bf5760405162461bcd60e51b81526004016107dd90611c83565b805f036110d6576110d183835f61169a565b505050565b600b5460ff16156113dc576005546001600160a01b0384811691161480159061110d57506005546001600160a01b03838116911614155b801561112757506007546001600160a01b03848116911614155b801561114157506007546001600160a01b03838116911614155b801561115557506001600160a01b03821615155b801561116c57506001600160a01b03821661dead14155b80156111825750600554600160a01b900460ff16155b156113dc57600b54610100900460ff16611218576001600160a01b0383165f908152600f602052604090205460ff16806111d357506001600160a01b0382165f908152600f602052604090205460ff165b6112185760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b60448201526064016107dd565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316836001600160a01b031614801561127157506001600160a01b0382165f9081526010602052604090205460ff16155b15611354576008548111156112e65760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b60648201526084016107dd565b600a546001600160a01b0383165f9081526020819052604090205461130b9083611cc6565b111561134f5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b60448201526064016107dd565b6113dc565b6001600160a01b0382165f9081526010602052604090205460ff166113dc57600a546001600160a01b0383165f908152602081905260409020546113989083611cc6565b11156113dc5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b60448201526064016107dd565b305f90815260208190526040902054600954811080159081906114075750600b5462010000900460ff165b801561141d5750600554600160a01b900460ff16155b801561145a57507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316846001600160a01b0316145b801561147e57506001600160a01b0385165f908152600f602052604090205460ff16155b80156114a257506001600160a01b0384165f908152600f602052604090205460ff16155b156114d1576005805460ff60a01b1916600160a01b1790556114c3836117ed565b6005805460ff60a01b191690555b6005546001600160a01b0386165f908152600f602052604090205460ff600160a01b90920482161591168061151d57506001600160a01b0385165f908152600f602052604090205460ff165b1561152557505f5b5f8115611618577f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316866001600160a01b031614801561156e57505f600d54115b156115955761158e600e546109ba600d548861167d90919063ffffffff16565b90506115fa565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316876001600160a01b03161480156115d757505f600c54115b156115fa576115f7600e546109ba600c548861167d90919063ffffffff16565b90505b801561160b5761160b87308361169a565b6116158186611cd9565b94505b61162387878761169a565b50505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b5f6116888284611c08565b9392505050565b5f6116888284611c1f565b6001600160a01b0383166116c05760405162461bcd60e51b81526004016107dd90611c3e565b6001600160a01b0382166116e65760405162461bcd60e51b81526004016107dd90611c83565b6001600160a01b0383165f908152602081905260409020548181101561175d5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016107dd565b6001600160a01b038085165f90815260208190526040808220858503905591851681529081208054849290611793908490611cc6565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516117df91815260200190565b60405180910390a350505050565b305f9081526020819052604081205490819003611808575050565b5f611825836118208460095460286118209190611c08565b611830565b90506110d181611844565b5f81831161183e5782611688565b50919050565b6040805160028082526060820183525f9260208301908036833701905050905030815f8151811061187757611877611cec565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156118f3573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906119179190611d00565b8160018151811061192a5761192a611cec565b60200260200101906001600160a01b031690816001600160a01b031681525050611975307f000000000000000000000000000000000000000000000000000000000000000084610f50565b60065460405163791ac94760e01b81526001600160a01b037f000000000000000000000000000000000000000000000000000000000000000081169263791ac947926119d09287925f92889291909116904290600401611d1b565b5f604051808303815f87803b1580156119e7575f80fd5b505af11580156119f9573d5f803e3d5ffd5b505050505050565b5f602080835283518060208501525f5b81811015611a2d57858101830151858201604001528201611a11565b505f604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b0381168114610a0e575f80fd5b5f8060408385031215611a72575f80fd5b8235611a7d81611a4d565b946020939093013593505050565b5f60208284031215611a9b575f80fd5b813561168881611a4d565b5f60208284031215611ab6575f80fd5b5035919050565b5f805f60608486031215611acf575f80fd5b8335611ada81611a4d565b92506020840135611aea81611a4d565b929592945050506040919091013590565b80358015158114610e6f575f80fd5b5f8060408385031215611b1b575f80fd5b8235611b2681611a4d565b9150611b3460208401611afb565b90509250929050565b5f60208284031215611b4d575f80fd5b61168882611afb565b5f8060408385031215611b67575f80fd5b8235611b7281611a4d565b91506020830135611b8281611a4d565b809150509250929050565b600181811c90821680611ba157607f821691505b60208210810361183e57634e487b7160e01b5f52602260045260245ffd5b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b5f52601160045260245ffd5b80820281158282048414176107ad576107ad611bf4565b5f82611c3957634e487b7160e01b5f52601260045260245ffd5b500490565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b808201808211156107ad576107ad611bf4565b818103818111156107ad576107ad611bf4565b634e487b7160e01b5f52603260045260245ffd5b5f60208284031215611d10575f80fd5b815161168881611a4d565b5f60a08201878352602087602085015260a0604085015281875180845260c0860191506020890193505f5b81811015611d6b5784516001600160a01b031683529383019391830191600101611d46565b50506001600160a01b0396909616606085015250505060800152939250505056fea26469706673582212203b9f22d2d39fe2bbab365a21bba2052b96e087b251d13b0b42d64407945c94a964736f6c634300081700334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572

Deployed Bytecode

0x608060405260043610610220575f3560e01c80637bce5a041161011e578063bbc0c742116100a8578063dd62ed3e1161006d578063dd62ed3e14610661578063e2f45605146106a5578063eba4c333146106ba578063f2fde38b146106d9578063f8b45b05146106f8575f80fd5b8063bbc0c742146105d1578063c0246668146105ef578063c18bc1951461060e578063c8c8ebe41461062d578063d257b34f14610642575f80fd5b806392136913116100ee578063921369131461054b578063924de9b71461056057806395d89b411461057f578063a9059cbb14610593578063aacebbe3146105b2575f80fd5b80637bce5a04146104e65780638a8c523c146104fb5780638da5cb5b1461050f5780638ea5220f1461052c575f80fd5b806349bd5a5e116101aa578063715018a61161016f578063715018a61461046157806371fc468814610475578063751039fc146104945780637571336a146104a857806375f0a874146104c7575f80fd5b806349bd5a5e1461038b5780634a62bb65146103be5780634fbee193146103d75780636ddd17131461040e57806370a082311461042d575f80fd5b806318160ddd116101f057806318160ddd146102fd5780631f2dc5ef1461031b578063203e727e1461033057806323b872dd14610351578063313ce56714610370575f80fd5b806306fdde031461022b578063095ea7b31461025557806310d5de53146102845780631694505e146102b2575f80fd5b3661022757005b5f80fd5b348015610236575f80fd5b5061023f61070d565b60405161024c9190611a01565b60405180910390f35b348015610260575f80fd5b5061027461026f366004611a61565b61079d565b604051901515815260200161024c565b34801561028f575f80fd5b5061027461029e366004611a8b565b60106020525f908152604090205460ff1681565b3480156102bd575f80fd5b506102e57f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b03909116815260200161024c565b348015610308575f80fd5b506002545b60405190815260200161024c565b348015610326575f80fd5b5061030d600e5481565b34801561033b575f80fd5b5061034f61034a366004611aa6565b6107b3565b005b34801561035c575f80fd5b5061027461036b366004611abd565b610899565b34801561037b575f80fd5b506040516012815260200161024c565b348015610396575f80fd5b506102e57f0000000000000000000000003f1304bf635942dff5ca0ef431da5926e9b1fdea81565b3480156103c9575f80fd5b50600b546102749060ff1681565b3480156103e2575f80fd5b506102746103f1366004611a8b565b6001600160a01b03165f908152600f602052604090205460ff1690565b348015610419575f80fd5b50600b546102749062010000900460ff1681565b348015610438575f80fd5b5061030d610447366004611a8b565b6001600160a01b03165f9081526020819052604090205490565b34801561046c575f80fd5b5061034f610941565b348015610480575f80fd5b5061034f61048f366004611aa6565b610976565b34801561049f575f80fd5b50610274610a11565b3480156104b3575f80fd5b5061034f6104c2366004611b0a565b610a4d565b3480156104d2575f80fd5b506006546102e5906001600160a01b031681565b3480156104f1575f80fd5b5061030d600c5481565b348015610506575f80fd5b5061034f610aa1565b34801561051a575f80fd5b506005546001600160a01b03166102e5565b348015610537575f80fd5b506007546102e5906001600160a01b031681565b348015610556575f80fd5b5061030d600d5481565b34801561056b575f80fd5b5061034f61057a366004611b3d565b610ade565b34801561058a575f80fd5b5061023f610b24565b34801561059e575f80fd5b506102746105ad366004611a61565b610b33565b3480156105bd575f80fd5b5061034f6105cc366004611a8b565b610b3f565b3480156105dc575f80fd5b50600b5461027490610100900460ff1681565b3480156105fa575f80fd5b5061034f610609366004611b0a565b610bc5565b348015610619575f80fd5b5061034f610628366004611aa6565b610c4d565b348015610638575f80fd5b5061030d60085481565b34801561064d575f80fd5b5061027461065c366004611aa6565b610d1e565b34801561066c575f80fd5b5061030d61067b366004611b56565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b3480156106b0575f80fd5b5061030d60095481565b3480156106c5575f80fd5b5061034f6106d4366004611aa6565b610e74565b3480156106e4575f80fd5b5061034f6106f3366004611a8b565b610eb8565b348015610703575f80fd5b5061030d600a5481565b60606003805461071c90611b8d565b80601f016020809104026020016040519081016040528092919081815260200182805461074890611b8d565b80156107935780601f1061076a57610100808354040283529160200191610793565b820191905f5260205f20905b81548152906001019060200180831161077657829003601f168201915b5050505050905090565b5f6107a9338484610f50565b5060015b92915050565b6005546001600160a01b031633146107e65760405162461bcd60e51b81526004016107dd90611bbf565b60405180910390fd5b670de0b6b3a76400006103e86107fb60025490565b610806906001611c08565b6108109190611c1f565b61081a9190611c1f565b8110156108815760405162461bcd60e51b815260206004820152602f60248201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060448201526e6c6f776572207468616e20302e312560881b60648201526084016107dd565b61089381670de0b6b3a7640000611c08565b60085550565b5f6108a5848484611073565b6001600160a01b0384165f908152600160209081526040808320338452909152902054828110156109295760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084016107dd565b6109368533858403610f50565b506001949350505050565b6005546001600160a01b0316331461096b5760405162461bcd60e51b81526004016107dd90611bbf565b6109745f61162c565b565b6005546001600160a01b031633146109a05760405162461bcd60e51b81526004016107dd90611bbf565b600c819055600e54601e906109c0906109ba84606461167d565b9061168f565b1115610a0e5760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420333025206f72206c65737300000060448201526064016107dd565b50565b6005545f906001600160a01b03163314610a3d5760405162461bcd60e51b81526004016107dd90611bbf565b50600b805460ff19169055600190565b6005546001600160a01b03163314610a775760405162461bcd60e51b81526004016107dd90611bbf565b6001600160a01b03919091165f908152601060205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610acb5760405162461bcd60e51b81526004016107dd90611bbf565b600b805462ffff00191662010100179055565b6005546001600160a01b03163314610b085760405162461bcd60e51b81526004016107dd90611bbf565b600b8054911515620100000262ff000019909216919091179055565b60606004805461071c90611b8d565b5f6107a9338484611073565b6005546001600160a01b03163314610b695760405162461bcd60e51b81526004016107dd90611bbf565b6006546040516001600160a01b03918216918316907fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b05674905f90a3600680546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b03163314610bef5760405162461bcd60e51b81526004016107dd90611bbf565b6001600160a01b0382165f818152600f6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b03163314610c775760405162461bcd60e51b81526004016107dd90611bbf565b670de0b6b3a76400006103e8610c8c60025490565b610c97906005611c08565b610ca19190611c1f565b610cab9190611c1f565b811015610d065760405162461bcd60e51b8152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015263302e352560e01b60648201526084016107dd565b610d1881670de0b6b3a7640000611c08565b600a5550565b6005545f906001600160a01b03163314610d4a5760405162461bcd60e51b81526004016107dd90611bbf565b620186a0610d5760025490565b610d62906001611c08565b610d6c9190611c1f565b821015610dd95760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b60648201526084016107dd565b6103e8610de560025490565b610df0906005611c08565b610dfa9190611c1f565b821115610e665760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171a92903a37ba30b61039bab838363c9760611b60648201526084016107dd565b50600981905560015b919050565b6005546001600160a01b03163314610e9e5760405162461bcd60e51b81526004016107dd90611bbf565b600d819055600e54601e906109c0906109ba84606461167d565b6005546001600160a01b03163314610ee25760405162461bcd60e51b81526004016107dd90611bbf565b6001600160a01b038116610f475760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107dd565b610a0e8161162c565b6001600160a01b038316610fb25760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016107dd565b6001600160a01b0382166110135760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016107dd565b6001600160a01b038381165f8181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166110995760405162461bcd60e51b81526004016107dd90611c3e565b6001600160a01b0382166110bf5760405162461bcd60e51b81526004016107dd90611c83565b805f036110d6576110d183835f61169a565b505050565b600b5460ff16156113dc576005546001600160a01b0384811691161480159061110d57506005546001600160a01b03838116911614155b801561112757506007546001600160a01b03848116911614155b801561114157506007546001600160a01b03838116911614155b801561115557506001600160a01b03821615155b801561116c57506001600160a01b03821661dead14155b80156111825750600554600160a01b900460ff16155b156113dc57600b54610100900460ff16611218576001600160a01b0383165f908152600f602052604090205460ff16806111d357506001600160a01b0382165f908152600f602052604090205460ff165b6112185760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b60448201526064016107dd565b7f0000000000000000000000003f1304bf635942dff5ca0ef431da5926e9b1fdea6001600160a01b0316836001600160a01b031614801561127157506001600160a01b0382165f9081526010602052604090205460ff16155b15611354576008548111156112e65760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b60648201526084016107dd565b600a546001600160a01b0383165f9081526020819052604090205461130b9083611cc6565b111561134f5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b60448201526064016107dd565b6113dc565b6001600160a01b0382165f9081526010602052604090205460ff166113dc57600a546001600160a01b0383165f908152602081905260409020546113989083611cc6565b11156113dc5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b60448201526064016107dd565b305f90815260208190526040902054600954811080159081906114075750600b5462010000900460ff165b801561141d5750600554600160a01b900460ff16155b801561145a57507f0000000000000000000000003f1304bf635942dff5ca0ef431da5926e9b1fdea6001600160a01b0316846001600160a01b0316145b801561147e57506001600160a01b0385165f908152600f602052604090205460ff16155b80156114a257506001600160a01b0384165f908152600f602052604090205460ff16155b156114d1576005805460ff60a01b1916600160a01b1790556114c3836117ed565b6005805460ff60a01b191690555b6005546001600160a01b0386165f908152600f602052604090205460ff600160a01b90920482161591168061151d57506001600160a01b0385165f908152600f602052604090205460ff165b1561152557505f5b5f8115611618577f0000000000000000000000003f1304bf635942dff5ca0ef431da5926e9b1fdea6001600160a01b0316866001600160a01b031614801561156e57505f600d54115b156115955761158e600e546109ba600d548861167d90919063ffffffff16565b90506115fa565b7f0000000000000000000000003f1304bf635942dff5ca0ef431da5926e9b1fdea6001600160a01b0316876001600160a01b03161480156115d757505f600c54115b156115fa576115f7600e546109ba600c548861167d90919063ffffffff16565b90505b801561160b5761160b87308361169a565b6116158186611cd9565b94505b61162387878761169a565b50505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b5f6116888284611c08565b9392505050565b5f6116888284611c1f565b6001600160a01b0383166116c05760405162461bcd60e51b81526004016107dd90611c3e565b6001600160a01b0382166116e65760405162461bcd60e51b81526004016107dd90611c83565b6001600160a01b0383165f908152602081905260409020548181101561175d5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016107dd565b6001600160a01b038085165f90815260208190526040808220858503905591851681529081208054849290611793908490611cc6565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516117df91815260200190565b60405180910390a350505050565b305f9081526020819052604081205490819003611808575050565b5f611825836118208460095460286118209190611c08565b611830565b90506110d181611844565b5f81831161183e5782611688565b50919050565b6040805160028082526060820183525f9260208301908036833701905050905030815f8151811061187757611877611cec565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156118f3573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906119179190611d00565b8160018151811061192a5761192a611cec565b60200260200101906001600160a01b031690816001600160a01b031681525050611975307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84610f50565b60065460405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81169263791ac947926119d09287925f92889291909116904290600401611d1b565b5f604051808303815f87803b1580156119e7575f80fd5b505af11580156119f9573d5f803e3d5ffd5b505050505050565b5f602080835283518060208501525f5b81811015611a2d57858101830151858201604001528201611a11565b505f604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b0381168114610a0e575f80fd5b5f8060408385031215611a72575f80fd5b8235611a7d81611a4d565b946020939093013593505050565b5f60208284031215611a9b575f80fd5b813561168881611a4d565b5f60208284031215611ab6575f80fd5b5035919050565b5f805f60608486031215611acf575f80fd5b8335611ada81611a4d565b92506020840135611aea81611a4d565b929592945050506040919091013590565b80358015158114610e6f575f80fd5b5f8060408385031215611b1b575f80fd5b8235611b2681611a4d565b9150611b3460208401611afb565b90509250929050565b5f60208284031215611b4d575f80fd5b61168882611afb565b5f8060408385031215611b67575f80fd5b8235611b7281611a4d565b91506020830135611b8281611a4d565b809150509250929050565b600181811c90821680611ba157607f821691505b60208210810361183e57634e487b7160e01b5f52602260045260245ffd5b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b5f52601160045260245ffd5b80820281158282048414176107ad576107ad611bf4565b5f82611c3957634e487b7160e01b5f52601260045260245ffd5b500490565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b808201808211156107ad576107ad611bf4565b818103818111156107ad576107ad611bf4565b634e487b7160e01b5f52603260045260245ffd5b5f60208284031215611d10575f80fd5b815161168881611a4d565b5f60a08201878352602087602085015260a0604085015281875180845260c0860191506020890193505f5b81811015611d6b5784516001600160a01b031683529383019391830191600101611d46565b50506001600160a01b0396909616606085015250505060800152939250505056fea26469706673582212203b9f22d2d39fe2bbab365a21bba2052b96e087b251d13b0b42d64407945c94a964736f6c63430008170033

Deployed Bytecode Sourcemap

24944:10019:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9747:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11914:169;;;;;;;;;;-1:-1:-1;11914:169:0;;;;;:::i;:::-;;:::i;:::-;;;1188:14:1;;1181:22;1163:41;;1151:2;1136:18;11914:169:0;1023:187:1;25708:63:0;;;;;;;;;;-1:-1:-1;25708:63:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;25020:51;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;1657:32:1;;;1639:51;;1627:2;1612:18;25020:51:0;1467:229:1;10867:108:0;;;;;;;;;;-1:-1:-1;10955:12:0;;10867:108;;;1847:25:1;;;1835:2;1820:18;10867:108:0;1701:177:1;25537:22:0;;;;;;;;;;;;;;;;28711:275;;;;;;;;;;-1:-1:-1;28711:275:0;;;;;:::i;:::-;;:::i;:::-;;12565:492;;;;;;;;;;-1:-1:-1;12565:492:0;;;;;:::i;:::-;;:::i;10709:93::-;;;;;;;;;;-1:-1:-1;10709:93:0;;10792:2;2671:36:1;;2659:2;2644:18;10709:93:0;2529:184:1;25078:38:0;;;;;;;;;;;;;;;25340:33;;;;;;;;;;-1:-1:-1;25340:33:0;;;;;;;;30533:126;;;;;;;;;;-1:-1:-1;30533:126:0;;;;;:::i;:::-;-1:-1:-1;;;;;30623:28:0;30599:4;30623:28;;;:19;:28;;;;;;;;;30533:126;25420:31;;;;;;;;;;-1:-1:-1;25420:31:0;;;;;;;;;;;11038:127;;;;;;;;;;-1:-1:-1;11038:127:0;;;;;:::i;:::-;-1:-1:-1;;;;;11139:18:0;11112:7;11139:18;;;;;;;;;;;;11038:127;2982:103;;;;;;;;;;;;;:::i;29629:227::-;;;;;;;;;;-1:-1:-1;29629:227:0;;;;;:::i;:::-;;:::i;28015:121::-;;;;;;;;;;;;;:::i;29258:167::-;;;;;;;;;;-1:-1:-1;29258:167:0;;;;;:::i;:::-;;:::i;25155:30::-;;;;;;;;;;-1:-1:-1;25155:30:0;;;;-1:-1:-1;;;;;25155:30:0;;;25460;;;;;;;;;;;;;;;;27851:112;;;;;;;;;;;;;:::i;2331:87::-;;;;;;;;;;-1:-1:-1;2404:6:0;;-1:-1:-1;;;;;2404:6:0;2331:87;;25192:24;;;;;;;;;;-1:-1:-1;25192:24:0;;;;-1:-1:-1;;;;;25192:24:0;;;25497:31;;;;;;;;;;;;;;;;29521:100;;;;;;;;;;-1:-1:-1;29521:100:0;;;;;:::i;:::-;;:::i;9966:104::-;;;;;;;;;;;;;:::i;11378:175::-;;;;;;;;;;-1:-1:-1;11378:175:0;;;;;:::i;:::-;;:::i;30292:231::-;;;;;;;;;;-1:-1:-1;30292:231:0;;;;;:::i;:::-;;:::i;25380:33::-;;;;;;;;;;-1:-1:-1;25380:33:0;;;;;;;;;;;30102:182;;;;;;;;;;-1:-1:-1;30102:182:0;;;;;:::i;:::-;;:::i;28994:256::-;;;;;;;;;;-1:-1:-1;28994:256:0;;;;;:::i;:::-;;:::i;25225:35::-;;;;;;;;;;;;;;;;28206:497;;;;;;;;;;-1:-1:-1;28206:497:0;;;;;:::i;:::-;;:::i;11616:151::-;;;;;;;;;;-1:-1:-1;11616:151:0;;;;;:::i;:::-;-1:-1:-1;;;;;11732:18:0;;;11705:7;11732:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;11616:151;25267:33;;;;;;;;;;;;;;;;29864:230;;;;;;;;;;-1:-1:-1;29864:230:0;;;;;:::i;:::-;;:::i;3240:201::-;;;;;;;;;;-1:-1:-1;3240:201:0;;;;;:::i;:::-;;:::i;25307:24::-;;;;;;;;;;;;;;;;9747:100;9801:13;9834:5;9827:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9747:100;:::o;11914:169::-;11997:4;12014:39;1084:10;12037:7;12046:6;12014:8;:39::i;:::-;-1:-1:-1;12071:4:0;11914:169;;;;;:::o;28711:275::-;2404:6;;-1:-1:-1;;;;;2404:6:0;1084:10;2551:23;2543:68;;;;-1:-1:-1;;;2543:68:0;;;;;;;:::i;:::-;;;;;;;;;28848:4:::1;28840;28819:13;10955:12:::0;;;10867:108;28819:13:::1;:17;::::0;28835:1:::1;28819:17;:::i;:::-;28818:26;;;;:::i;:::-;28817:35;;;;:::i;:::-;28807:6;:45;;28785:142;;;::::0;-1:-1:-1;;;28785:142:0;;5464:2:1;28785:142:0::1;::::0;::::1;5446:21:1::0;5503:2;5483:18;;;5476:30;5542:34;5522:18;;;5515:62;-1:-1:-1;;;5593:18:1;;;5586:45;5648:19;;28785:142:0::1;5262:411:1::0;28785:142:0::1;28961:17;:6:::0;28971::::1;28961:17;:::i;:::-;28938:20;:40:::0;-1:-1:-1;28711:275:0:o;12565:492::-;12705:4;12722:36;12732:6;12740:9;12751:6;12722:9;:36::i;:::-;-1:-1:-1;;;;;12798:19:0;;12771:24;12798:19;;;:11;:19;;;;;;;;1084:10;12798:33;;;;;;;;12850:26;;;;12842:79;;;;-1:-1:-1;;;12842:79:0;;5880:2:1;12842:79:0;;;5862:21:1;5919:2;5899:18;;;5892:30;5958:34;5938:18;;;5931:62;-1:-1:-1;;;6009:18:1;;;6002:38;6057:19;;12842:79:0;5678:404:1;12842:79:0;12957:57;12966:6;1084:10;13007:6;12988:16;:25;12957:8;:57::i;:::-;-1:-1:-1;13045:4:0;;12565:492;-1:-1:-1;;;;12565:492:0:o;2982:103::-;2404:6;;-1:-1:-1;;;;;2404:6:0;1084:10;2551:23;2543:68;;;;-1:-1:-1;;;2543:68:0;;;;;;;:::i;:::-;3047:30:::1;3074:1;3047:18;:30::i;:::-;2982:103::o:0;29629:227::-;2404:6;;-1:-1:-1;;;;;2404:6:0;1084:10;2551:23;2543:68;;;;-1:-1:-1;;;2543:68:0;;;;;;;:::i;:::-;29721:15:::1;:31:::0;;;29800:7:::1;::::0;29812:2:::1;::::0;29771:37:::1;::::0;:24:::1;29739:13:::0;29791:3:::1;29771:19;:24::i;:::-;:28:::0;::::1;:37::i;:::-;:43;;29763:85;;;::::0;-1:-1:-1;;;29763:85:0;;6289:2:1;29763:85:0::1;::::0;::::1;6271:21:1::0;6328:2;6308:18;;;6301:30;6367:31;6347:18;;;6340:59;6416:18;;29763:85:0::1;6087:353:1::0;29763:85:0::1;29629:227:::0;:::o;28015:121::-;2404:6;;28067:4;;-1:-1:-1;;;;;2404:6:0;1084:10;2551:23;2543:68;;;;-1:-1:-1;;;2543:68:0;;;;;;;:::i;:::-;-1:-1:-1;28084:14:0::1;:22:::0;;-1:-1:-1;;28084:22:0::1;::::0;;;28015:121;:::o;29258:167::-;2404:6;;-1:-1:-1;;;;;2404:6:0;1084:10;2551:23;2543:68;;;;-1:-1:-1;;;2543:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;29371:39:0;;;::::1;;::::0;;;:31:::1;:39;::::0;;;;:46;;-1:-1:-1;;29371:46:0::1;::::0;::::1;;::::0;;;::::1;::::0;;29258:167::o;27851:112::-;2404:6;;-1:-1:-1;;;;;2404:6:0;1084:10;2551:23;2543:68;;;;-1:-1:-1;;;2543:68:0;;;;;;;:::i;:::-;27906:13:::1;:20:::0;;-1:-1:-1;;27937:18:0;;;;;27851:112::o;29521:100::-;2404:6;;-1:-1:-1;;;;;2404:6:0;1084:10;2551:23;2543:68;;;;-1:-1:-1;;;2543:68:0;;;;;;;:::i;:::-;29592:11:::1;:21:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;29592:21:0;;::::1;::::0;;;::::1;::::0;;29521:100::o;9966:104::-;10022:13;10055:7;10048:14;;;;;:::i;11378:175::-;11464:4;11481:42;1084:10;11505:9;11516:6;11481:9;:42::i;30292:231::-;2404:6;;-1:-1:-1;;;;;2404:6:0;1084:10;2551:23;2543:68;;;;-1:-1:-1;;;2543:68:0;;;;;;;:::i;:::-;30452:15:::1;::::0;30409:59:::1;::::0;-1:-1:-1;;;;;30452:15:0;;::::1;::::0;30409:59;::::1;::::0;::::1;::::0;30452:15:::1;::::0;30409:59:::1;30479:15;:36:::0;;-1:-1:-1;;;;;;30479:36:0::1;-1:-1:-1::0;;;;;30479:36:0;;;::::1;::::0;;;::::1;::::0;;30292:231::o;30102:182::-;2404:6;;-1:-1:-1;;;;;2404:6:0;1084:10;2551:23;2543:68;;;;-1:-1:-1;;;2543:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;30187:28:0;::::1;;::::0;;;:19:::1;:28;::::0;;;;;;;;:39;;-1:-1:-1;;30187:39:0::1;::::0;::::1;;::::0;;::::1;::::0;;;30242:34;;1163:41:1;;;30242:34:0::1;::::0;1136:18:1;30242:34:0::1;;;;;;;30102:182:::0;;:::o;28994:256::-;2404:6;;-1:-1:-1;;;;;2404:6:0;1084:10;2551:23;2543:68;;;;-1:-1:-1;;;2543:68:0;;;;;;;:::i;:::-;29134:4:::1;29126;29105:13;10955:12:::0;;;10867:108;29105:13:::1;:17;::::0;29121:1:::1;29105:17;:::i;:::-;29104:26;;;;:::i;:::-;29103:35;;;;:::i;:::-;29093:6;:45;;29071:131;;;::::0;-1:-1:-1;;;29071:131:0;;6647:2:1;29071:131:0::1;::::0;::::1;6629:21:1::0;6686:2;6666:18;;;6659:30;6725:34;6705:18;;;6698:62;-1:-1:-1;;;6776:18:1;;;6769:34;6820:19;;29071:131:0::1;6445:400:1::0;29071:131:0::1;29225:17;:6:::0;29235::::1;29225:17;:::i;:::-;29213:9;:29:::0;-1:-1:-1;28994:256:0:o;28206:497::-;2404:6;;28314:4;;-1:-1:-1;;;;;2404:6:0;1084:10;2551:23;2543:68;;;;-1:-1:-1;;;2543:68:0;;;;;;;:::i;:::-;28393:6:::1;28372:13;10955:12:::0;;;10867:108;28372:13:::1;:17;::::0;28388:1:::1;28372:17;:::i;:::-;28371:28;;;;:::i;:::-;28358:9;:41;;28336:144;;;::::0;-1:-1:-1;;;28336:144:0;;7052:2:1;28336:144:0::1;::::0;::::1;7034:21:1::0;7091:2;7071:18;;;7064:30;7130:34;7110:18;;;7103:62;-1:-1:-1;;;7181:18:1;;;7174:51;7242:19;;28336:144:0::1;6850:417:1::0;28336:144:0::1;28548:4;28527:13;10955:12:::0;;;10867:108;28527:13:::1;:17;::::0;28543:1:::1;28527:17;:::i;:::-;28526:26;;;;:::i;:::-;28513:9;:39;;28491:141;;;::::0;-1:-1:-1;;;28491:141:0;;7474:2:1;28491:141:0::1;::::0;::::1;7456:21:1::0;7513:2;7493:18;;;7486:30;7552:34;7532:18;;;7525:62;-1:-1:-1;;;7603:18:1;;;7596:50;7663:19;;28491:141:0::1;7272:416:1::0;28491:141:0::1;-1:-1:-1::0;28643:18:0::1;:30:::0;;;28691:4:::1;2622:1;28206:497:::0;;;:::o;29864:230::-;2404:6;;-1:-1:-1;;;;;2404:6:0;1084:10;2551:23;2543:68;;;;-1:-1:-1;;;2543:68:0;;;;;;;:::i;:::-;29957:16:::1;:32:::0;;;30038:7:::1;::::0;30050:2:::1;::::0;30008:38:::1;::::0;:25:::1;29976:13:::0;30029:3:::1;30008:20;:25::i;3240:201::-:0;2404:6;;-1:-1:-1;;;;;2404:6:0;1084:10;2551:23;2543:68;;;;-1:-1:-1;;;2543:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;3329:22:0;::::1;3321:73;;;::::0;-1:-1:-1;;;3321:73:0;;7895:2:1;3321:73:0::1;::::0;::::1;7877:21:1::0;7934:2;7914:18;;;7907:30;7973:34;7953:18;;;7946:62;-1:-1:-1;;;8024:18:1;;;8017:36;8070:19;;3321:73:0::1;7693:402:1::0;3321:73:0::1;3405:28;3424:8;3405:18;:28::i;15406:380::-:0;-1:-1:-1;;;;;15542:19:0;;15534:68;;;;-1:-1:-1;;;15534:68:0;;8302:2:1;15534:68:0;;;8284:21:1;8341:2;8321:18;;;8314:30;8380:34;8360:18;;;8353:62;-1:-1:-1;;;8431:18:1;;;8424:34;8475:19;;15534:68:0;8100:400:1;15534:68:0;-1:-1:-1;;;;;15621:21:0;;15613:68;;;;-1:-1:-1;;;15613:68:0;;8707:2:1;15613:68:0;;;8689:21:1;8746:2;8726:18;;;8719:30;8785:34;8765:18;;;8758:62;-1:-1:-1;;;8836:18:1;;;8829:32;8878:19;;15613:68:0;8505:398:1;15613:68:0;-1:-1:-1;;;;;15694:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;15746:32;;1847:25:1;;;15746:32:0;;1820:18:1;15746:32:0;;;;;;;15406:380;;;:::o;30667:3265::-;-1:-1:-1;;;;;30799:18:0;;30791:68;;;;-1:-1:-1;;;30791:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;30878:16:0;;30870:64;;;;-1:-1:-1;;;30870:64:0;;;;;;;:::i;:::-;30951:6;30961:1;30951:11;30947:93;;30979:28;30995:4;31001:2;31005:1;30979:15;:28::i;:::-;30667:3265;;;:::o;30947:93::-;31056:14;;;;31052:1504;;;2404:6;;-1:-1:-1;;;;;31109:15:0;;;2404:6;;31109:15;;;;:49;;-1:-1:-1;2404:6:0;;-1:-1:-1;;;;;31145:13:0;;;2404:6;;31145:13;;31109:49;:87;;;;-1:-1:-1;31187:9:0;;-1:-1:-1;;;;;31179:17:0;;;31187:9;;31179:17;;31109:87;:123;;;;-1:-1:-1;31223:9:0;;-1:-1:-1;;;;;31217:15:0;;;31223:9;;31217:15;;31109:123;:160;;;;-1:-1:-1;;;;;;31253:16:0;;;;31109:160;:202;;;;-1:-1:-1;;;;;;31290:21:0;;31304:6;31290:21;;31109:202;:232;;;;-1:-1:-1;31333:8:0;;-1:-1:-1;;;31333:8:0;;;;31332:9;31109:232;31087:1458;;;31381:13;;;;;;;31376:223;;-1:-1:-1;;;;;31453:25:0;;;;;;:19;:25;;;;;;;;;:52;;-1:-1:-1;;;;;;31482:23:0;;;;;;:19;:23;;;;;;;;31453:52;31419:160;;;;-1:-1:-1;;;31419:160:0;;9920:2:1;31419:160:0;;;9902:21:1;9959:2;9939:18;;;9932:30;-1:-1:-1;;;9978:18:1;;;9971:52;10040:18;;31419:160:0;9718:346:1;31419:160:0;31813:13;-1:-1:-1;;;;;31805:21:0;:4;-1:-1:-1;;;;;31805:21:0;;:82;;;;-1:-1:-1;;;;;;31852:35:0;;;;;;:31;:35;;;;;;;;31851:36;31805:82;31779:751;;;31974:20;;31964:6;:30;;31930:169;;;;-1:-1:-1;;;31930:169:0;;10271:2:1;31930:169:0;;;10253:21:1;10310:2;10290:18;;;10283:30;10349:34;10329:18;;;10322:62;-1:-1:-1;;;10400:18:1;;;10393:51;10461:19;;31930:169:0;10069:417:1;31930:169:0;32182:9;;-1:-1:-1;;;;;11139:18:0;;11112:7;11139:18;;;;;;;;;;;32156:22;;:6;:22;:::i;:::-;:35;;32122:140;;;;-1:-1:-1;;;32122:140:0;;10823:2:1;32122:140:0;;;10805:21:1;10862:2;10842:18;;;10835:30;-1:-1:-1;;;10881:18:1;;;10874:49;10940:18;;32122:140:0;10621:343:1;32122:140:0;31779:751;;;-1:-1:-1;;;;;32310:35:0;;;;;;:31;:35;;;;;;;;32305:225;;32430:9;;-1:-1:-1;;;;;11139:18:0;;11112:7;11139:18;;;;;;;;;;;32404:22;;:6;:22;:::i;:::-;:35;;32370:140;;;;-1:-1:-1;;;32370:140:0;;10823:2:1;32370:140:0;;;10805:21:1;10862:2;10842:18;;;10835:30;-1:-1:-1;;;10881:18:1;;;10874:49;10940:18;;32370:140:0;10621:343:1;32370:140:0;32617:4;32568:28;11139:18;;;;;;;;;;;32675;;32651:42;;;;;;;32724:35;;-1:-1:-1;32748:11:0;;;;;;;32724:35;:61;;;;-1:-1:-1;32777:8:0;;-1:-1:-1;;;32777:8:0;;;;32776:9;32724:61;:97;;;;;32808:13;-1:-1:-1;;;;;32802:19:0;:2;-1:-1:-1;;;;;32802:19:0;;32724:97;:140;;;;-1:-1:-1;;;;;;32839:25:0;;;;;;:19;:25;;;;;;;;32838:26;32724:140;:181;;;;-1:-1:-1;;;;;;32882:23:0;;;;;;:19;:23;;;;;;;;32881:24;32724:181;32706:319;;;32932:8;:15;;-1:-1:-1;;;;32932:15:0;-1:-1:-1;;;32932:15:0;;;32964:16;32973:6;32964:8;:16::i;:::-;32997:8;:16;;-1:-1:-1;;;;32997:16:0;;;32706:319;33053:8;;-1:-1:-1;;;;;33163:25:0;;33037:12;33163:25;;;:19;:25;;;;;;33053:8;-1:-1:-1;;;33053:8:0;;;;;33052:9;;33163:25;;:52;;-1:-1:-1;;;;;;33192:23:0;;;;;;:19;:23;;;;;;;;33163:52;33159:100;;;-1:-1:-1;33242:5:0;33159:100;33271:12;33376:7;33372:507;;;33434:13;-1:-1:-1;;;;;33428:19:0;:2;-1:-1:-1;;;;;33428:19:0;;:43;;;;;33470:1;33451:16;;:20;33428:43;33424:306;;;33499:41;33532:7;;33499:28;33510:16;;33499:6;:10;;:28;;;;:::i;:41::-;33492:48;;33424:306;;;33610:13;-1:-1:-1;;;;;33602:21:0;:4;-1:-1:-1;;;;;33602:21:0;;:44;;;;;33645:1;33627:15;;:19;33602:44;33598:132;;;33674:40;33706:7;;33674:27;33685:15;;33674:6;:10;;:27;;;;:::i;:40::-;33667:47;;33598:132;33750:8;;33746:91;;33779:42;33795:4;33809;33816;33779:15;:42::i;:::-;33853:14;33863:4;33853:14;;:::i;:::-;;;33372:507;33891:33;33907:4;33913:2;33917:6;33891:15;:33::i;:::-;30780:3152;;;;30667:3265;;;:::o;3601:191::-;3694:6;;;-1:-1:-1;;;;;3711:17:0;;;-1:-1:-1;;;;;;3711:17:0;;;;;;;3744:40;;3694:6;;;3711:17;3694:6;;3744:40;;3675:16;;3744:40;3664:128;3601:191;:::o;20859:98::-;20917:7;20944:5;20948:1;20944;:5;:::i;:::-;20937:12;20859:98;-1:-1:-1;;;20859:98:0:o;21258:::-;21316:7;21343:5;21347:1;21343;:5;:::i;13547:733::-;-1:-1:-1;;;;;13687:20:0;;13679:70;;;;-1:-1:-1;;;13679:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;13768:23:0;;13760:71;;;;-1:-1:-1;;;13760:71:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;13928:17:0;;13904:21;13928:17;;;;;;;;;;;13964:23;;;;13956:74;;;;-1:-1:-1;;;13956:74:0;;11304:2:1;13956:74:0;;;11286:21:1;11343:2;11323:18;;;11316:30;11382:34;11362:18;;;11355:62;-1:-1:-1;;;11433:18:1;;;11426:36;11479:19;;13956:74:0;11102:402:1;13956:74:0;-1:-1:-1;;;;;14066:17:0;;;:9;:17;;;;;;;;;;;14086:22;;;14066:42;;14130:20;;;;;;;;:30;;14102:6;;14066:9;14130:30;;14102:6;;14130:30;:::i;:::-;;;;;;;;14195:9;-1:-1:-1;;;;;14178:35:0;14187:6;-1:-1:-1;;;;;14178:35:0;;14206:6;14178:35;;;;1847:25:1;;1835:2;1820:18;;1701:177;14178:35:0;;;;;;;;13668:612;13547:733;;;:::o;34645:313::-;34742:4;34698:23;11139:18;;;;;;;;;;;;34763:20;;;34759:59;;34800:7;34645:313;:::o;34759:59::-;34830:18;34851:58;34855:6;34863:45;34867:15;34884:18;;34905:2;34884:23;;;;:::i;:::-;34863:3;:45::i;34851:58::-;34830:79;;34922:28;34939:10;34922:16;:28::i;33940:98::-;33997:7;34024:1;34022;:3;34021:9;;34029:1;34021:9;;;-1:-1:-1;34027:1:0;33940:98;-1:-1:-1;33940:98:0:o;34046:591::-;34196:16;;;34210:1;34196:16;;;;;;;;34172:21;;34196:16;;;;;;;;;;-1:-1:-1;34196:16:0;34172:40;;34241:4;34223;34228:1;34223:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;34223:23:0;;;-1:-1:-1;;;;;34223:23:0;;;;;34267:15;-1:-1:-1;;;;;34267:20:0;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;34257:4;34262:1;34257:7;;;;;;;;:::i;:::-;;;;;;:32;-1:-1:-1;;;;;34257:32:0;;;-1:-1:-1;;;;;34257:32:0;;;;;34302:62;34319:4;34334:15;34352:11;34302:8;:62::i;:::-;34573:15;;34403:226;;-1:-1:-1;;;34403:226:0;;-1:-1:-1;;;;;34403:15:0;:66;;;;;:226;;34484:11;;34510:1;;34554:4;;34573:15;;;;;34603;;34403:226;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34101:536;34046:591;:::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;1883:180::-;1942:6;1995:2;1983:9;1974:7;1970:23;1966:32;1963:52;;;2011:1;2008;2001:12;1963:52;-1:-1:-1;2034:23:1;;1883:180;-1:-1:-1;1883:180:1:o;2068:456::-;2145:6;2153;2161;2214:2;2202:9;2193:7;2189:23;2185:32;2182:52;;;2230:1;2227;2220:12;2182:52;2269:9;2256:23;2288:31;2313:5;2288:31;:::i;:::-;2338:5;-1:-1:-1;2395:2:1;2380:18;;2367:32;2408:33;2367:32;2408:33;:::i;:::-;2068:456;;2460:7;;-1:-1:-1;;;2514:2:1;2499:18;;;;2486:32;;2068:456::o;2926:160::-;2991:20;;3047:13;;3040:21;3030:32;;3020:60;;3076:1;3073;3066:12;3091:315;3156:6;3164;3217:2;3205:9;3196:7;3192:23;3188:32;3185:52;;;3233:1;3230;3223:12;3185:52;3272:9;3259:23;3291:31;3316:5;3291:31;:::i;:::-;3341:5;-1:-1:-1;3365:35:1;3396:2;3381:18;;3365:35;:::i;:::-;3355:45;;3091:315;;;;;:::o;3411:180::-;3467:6;3520:2;3508:9;3499:7;3495:23;3491:32;3488:52;;;3536:1;3533;3526:12;3488:52;3559:26;3575:9;3559:26;:::i;3596:388::-;3664:6;3672;3725:2;3713:9;3704:7;3700:23;3696:32;3693:52;;;3741:1;3738;3731:12;3693:52;3780:9;3767:23;3799:31;3824:5;3799:31;:::i;:::-;3849:5;-1:-1:-1;3906:2:1;3891:18;;3878:32;3919:33;3878:32;3919:33;:::i;:::-;3971:7;3961:17;;;3596:388;;;;;:::o;3989:380::-;4068:1;4064:12;;;;4111;;;4132:61;;4186:4;4178:6;4174:17;4164:27;;4132:61;4239:2;4231:6;4228:14;4208:18;4205:38;4202:161;;4285:10;4280:3;4276:20;4273:1;4266:31;4320:4;4317:1;4310:15;4348:4;4345:1;4338:15;4374:356;4576:2;4558:21;;;4595:18;;;4588:30;4654:34;4649:2;4634:18;;4627:62;4721:2;4706:18;;4374:356::o;4735:127::-;4796:10;4791:3;4787:20;4784:1;4777:31;4827:4;4824:1;4817:15;4851:4;4848:1;4841:15;4867:168;4940:9;;;4971;;4988:15;;;4982:22;;4968:37;4958:71;;5009:18;;:::i;5040:217::-;5080:1;5106;5096:132;;5150:10;5145:3;5141:20;5138:1;5131:31;5185:4;5182:1;5175:15;5213:4;5210:1;5203:15;5096:132;-1:-1:-1;5242:9:1;;5040:217::o;8908:401::-;9110:2;9092:21;;;9149:2;9129:18;;;9122:30;9188:34;9183:2;9168:18;;9161:62;-1:-1:-1;;;9254:2:1;9239:18;;9232:35;9299:3;9284:19;;8908:401::o;9314:399::-;9516:2;9498:21;;;9555:2;9535:18;;;9528:30;9594:34;9589:2;9574:18;;9567:62;-1:-1:-1;;;9660:2:1;9645:18;;9638:33;9703:3;9688:19;;9314:399::o;10491:125::-;10556:9;;;10577:10;;;10574:36;;;10590:18;;:::i;10969:128::-;11036:9;;;11057:11;;;11054:37;;;11071:18;;:::i;11641:127::-;11702:10;11697:3;11693:20;11690:1;11683:31;11733:4;11730:1;11723:15;11757:4;11754:1;11747:15;11773:251;11843:6;11896:2;11884:9;11875:7;11871:23;11867:32;11864:52;;;11912:1;11909;11902:12;11864:52;11944:9;11938:16;11963:31;11988:5;11963:31;:::i;12029:980::-;12291:4;12339:3;12328:9;12324:19;12370:6;12359:9;12352:25;12396:2;12434:6;12429:2;12418:9;12414:18;12407:34;12477:3;12472:2;12461:9;12457:18;12450:31;12501:6;12536;12530:13;12567:6;12559;12552:22;12605:3;12594:9;12590:19;12583:26;;12644:2;12636:6;12632:15;12618:29;;12665:1;12675:195;12689:6;12686:1;12683:13;12675:195;;;12754:13;;-1:-1:-1;;;;;12750:39:1;12738:52;;12845:15;;;;12810:12;;;;12786:1;12704:9;12675:195;;;-1:-1:-1;;;;;;;12926:32:1;;;;12921:2;12906:18;;12899:60;-1:-1:-1;;;12990:3:1;12975:19;12968:35;12887:3;12029:980;-1:-1:-1;;;12029:980:1:o

Swarm Source

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