ETH Price: $2,285.74 (-2.48%)

Token

Chadium (CH)
 

Overview

Max Total Supply

100,000,000 CH

Holders

116

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
774,863.6194030775629003 CH

Value
$0.00
0xa9eb50f7548e88708f7f212afa58d27293fc1107
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:
Chadium

Compiler Version
v0.8.19+commit.7dd6d404

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-04-20
*/

/**

Twitter: https://twitter.com/chadiumerc/
Telegram: https://t.me/chadiumerc
Website: https://chadium.net/

*/

// SPDX-License-Identifier: MIT
pragma solidity ^0.8.19;
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 Chadium is ERC20, Ownable {
    using SafeMath for uint256;

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

    bool private swapping;

    address public marketingWallet;

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

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

    uint256 public buyFee;
    uint256 public sellFee;

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

    // 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("Chadium", "CH") {
        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(
            0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
        );

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

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

        uint256 _buyFee = 0;
        uint256 _sellFee = 0;

        uint256 totalSupply = 100_000_000 * 1e18;

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

        buyFee = _buyFee;
        sellFee = _sellFee;

        marketingWallet = address(0xB2B6F09949E669e52eF9564f4cBDfF1254539D7c); // set as marketing wallet

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

        excludeFromMaxTransaction(owner(), true);
        excludeFromMaxTransaction(marketingWallet, 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;
    }

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

    function updateFees(
        uint256 _buyFee,
        uint256 _sellFee
    ) external onlyOwner {
        buyFee = _buyFee;
        sellFee = _sellFee;
        require(buyFee.div(2) <= 15, "Buy tax too high");
        require(sellFee.div(2) <= 15, "Sell tax too high");
    }

    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() &&
                to != address(0) &&
                to != address(0xdead) &&
                !swapping
            ) {
                if (!tradingActive) {
                    require(
                        _isExcludedFromFees[from] || _isExcludedFromFees[to],
                        "Trading is not active."
                    );
                }

                //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 &&
            !swapping &&
            to == uniswapV2Pair &&
            !_isExcludedFromFees[from] &&
            !_isExcludedFromFees[to]
        ) {
            swapping = true;

            swapBack();

            swapping = false;
        }

        bool takeFee = !swapping;

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

        uint256 fees = 0;
        // only take fees on buys/sells, do not take on wallet transfers
        if (takeFee) {
            // on sell
            if (to == uniswapV2Pair && sellFee > 0) {
                fees = amount.mul(sellFee).div(100);
            }
            // on buy
            else if (from == uniswapV2Pair && buyFee > 0) {
                fees = amount.mul(buyFee).div(100);
            }

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

            amount -= fees;
        }

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

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

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

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

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

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

        swapTokensForETH(contractBalance);
    }

}

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":"buyFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deadAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"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":"sellFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"_buyFee","type":"uint256"},{"internalType":"uint256","name":"_sellFee","type":"uint256"}],"name":"updateFees","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":"newAmount","type":"uint256"}],"name":"updateSwapTokensAtAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c0604052600a805461ffff191660011790553480156200001f57600080fd5b50604051806040016040528060078152602001664368616469756d60c81b81525060405180604001604052806002815260200161086960f31b81525081600390816200006c91906200068f565b5060046200007b82826200068f565b50505062000098620000926200038760201b60201c565b6200038b565b737a250d5630b4cf539739df2c5dacb4c659f2488d620000ba816001620003dd565b6001600160a01b03811660808190526040805163c45a015560e01b8152905163c45a0155916004808201926020929091908290030181865afa15801562000105573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200012b91906200075b565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000179573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200019f91906200075b565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af1158015620001ed573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200021391906200075b565b6001600160a01b031660a08190526200022e906001620003dd565b6000806a52b7d2dcc80cd2e400000060646200024c826002620007a3565b620002589190620007c3565b60075560646200026a826002620007a3565b620002769190620007c3565b600955620186a06200028a826028620007a3565b620002969190620007c3565b600855600b839055600c829055600680546001600160a01b03191673b2b6f09949e669e52ef9564f4cbdff1254539d7c179055620002e8620002e06005546001600160a01b031690565b600162000457565b60065462000301906001600160a01b0316600162000457565b6200030e30600162000457565b6200031d61dead600162000457565b6200033c620003346005546001600160a01b031690565b6001620003dd565b60065462000355906001600160a01b03166001620003dd565b62000362306001620003dd565b6200037161dead6001620003dd565b6200037d338262000501565b50505050620007fc565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6005546001600160a01b031633146200042c5760405162461bcd60e51b815260206004820181905260248201526000805160206200254183398151915260448201526064015b60405180910390fd5b6001600160a01b03919091166000908152600e60205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314620004a25760405162461bcd60e51b8152602060048201819052602482015260008051602062002541833981519152604482015260640162000423565b6001600160a01b0382166000818152600d6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6001600160a01b038216620005595760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640162000423565b80600260008282546200056d9190620007e6565b90915550506001600160a01b038216600090815260208190526040812080548392906200059c908490620007e6565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b505050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200061657607f821691505b6020821081036200063757634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620005e657600081815260208120601f850160051c81016020861015620006665750805b601f850160051c820191505b81811015620006875782815560010162000672565b505050505050565b81516001600160401b03811115620006ab57620006ab620005eb565b620006c381620006bc845462000601565b846200063d565b602080601f831160018114620006fb5760008415620006e25750858301515b600019600386901b1c1916600185901b17855562000687565b600085815260208120601f198616915b828110156200072c578886015182559484019460019091019084016200070b565b50858210156200074b5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6000602082840312156200076e57600080fd5b81516001600160a01b03811681146200078657600080fd5b9392505050565b634e487b7160e01b600052601160045260246000fd5b8082028115828204841417620007bd57620007bd6200078d565b92915050565b600082620007e157634e487b7160e01b600052601260045260246000fd5b500490565b80820180821115620007bd57620007bd6200078d565b60805160a051611cee62000853600039600081816103b10152818161112f0152818161132c0152818161143901526114a80152600081816102a6015281816117a40152818161185d015261189c0152611cee6000f3fe6080604052600436106101fd5760003560e01c8063751039fc1161010d578063bbc0c742116100a0578063d257b34f1161006f578063d257b34f146105e3578063dd62ed3e14610603578063e2f4560514610649578063f2fde38b1461065f578063f8b45b051461067f57600080fd5b8063bbc0c7421461056e578063c02466681461058d578063c18bc195146105ad578063c8c8ebe4146105cd57600080fd5b80638da5cb5b116100dc5780638da5cb5b146104fb57806395d89b4114610519578063a9059cbb1461052e578063aacebbe31461054e57600080fd5b8063751039fc146104915780637571336a146104a657806375f0a874146104c65780638a8c523c146104e657600080fd5b80632b14ca56116101905780634a62bb651161015f5780634a62bb65146103d35780634fbee193146103ed5780636db794371461042657806370a0823114610446578063715018a61461047c57600080fd5b80632b14ca5614610357578063313ce5671461036d578063470624021461038957806349bd5a5e1461039f57600080fd5b806318160ddd116101cc57806318160ddd146102e0578063203e727e146102ff57806323b872dd1461032157806327c8f8351461034157600080fd5b806306fdde0314610209578063095ea7b31461023457806310d5de53146102645780631694505e1461029457600080fd5b3661020457005b600080fd5b34801561021557600080fd5b5061021e610695565b60405161022b9190611914565b60405180910390f35b34801561024057600080fd5b5061025461024f366004611977565b610727565b604051901515815260200161022b565b34801561027057600080fd5b5061025461027f3660046119a3565b600e6020526000908152604090205460ff1681565b3480156102a057600080fd5b506102c87f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b03909116815260200161022b565b3480156102ec57600080fd5b506002545b60405190815260200161022b565b34801561030b57600080fd5b5061031f61031a3660046119c0565b61073e565b005b34801561032d57600080fd5b5061025461033c3660046119d9565b610824565b34801561034d57600080fd5b506102c861dead81565b34801561036357600080fd5b506102f1600c5481565b34801561037957600080fd5b506040516012815260200161022b565b34801561039557600080fd5b506102f1600b5481565b3480156103ab57600080fd5b506102c87f000000000000000000000000000000000000000000000000000000000000000081565b3480156103df57600080fd5b50600a546102549060ff1681565b3480156103f957600080fd5b506102546104083660046119a3565b6001600160a01b03166000908152600d602052604090205460ff1690565b34801561043257600080fd5b5061031f610441366004611a1a565b6108ce565b34801561045257600080fd5b506102f16104613660046119a3565b6001600160a01b031660009081526020819052604090205490565b34801561048857600080fd5b5061031f6109a7565b34801561049d57600080fd5b506102546109dd565b3480156104b257600080fd5b5061031f6104c1366004611a3c565b610a1a565b3480156104d257600080fd5b506006546102c8906001600160a01b031681565b3480156104f257600080fd5b5061031f610a6f565b34801561050757600080fd5b506005546001600160a01b03166102c8565b34801561052557600080fd5b5061021e610aaa565b34801561053a57600080fd5b50610254610549366004611977565b610ab9565b34801561055a57600080fd5b5061031f6105693660046119a3565b610ac6565b34801561057a57600080fd5b50600a5461025490610100900460ff1681565b34801561059957600080fd5b5061031f6105a8366004611a3c565b610b4d565b3480156105b957600080fd5b5061031f6105c83660046119c0565b610bd6565b3480156105d957600080fd5b506102f160075481565b3480156105ef57600080fd5b506102546105fe3660046119c0565b610ca7565b34801561060f57600080fd5b506102f161061e366004611a7a565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b34801561065557600080fd5b506102f160085481565b34801561066b57600080fd5b5061031f61067a3660046119a3565b610df9565b34801561068b57600080fd5b506102f160095481565b6060600380546106a490611aa8565b80601f01602080910402602001604051908101604052809291908181526020018280546106d090611aa8565b801561071d5780601f106106f25761010080835404028352916020019161071d565b820191906000526020600020905b81548152906001019060200180831161070057829003601f168201915b5050505050905090565b6000610734338484610e94565b5060015b92915050565b6005546001600160a01b031633146107715760405162461bcd60e51b815260040161076890611ae2565b60405180910390fd5b670de0b6b3a76400006103e861078660025490565b610791906001611b2d565b61079b9190611b44565b6107a59190611b44565b81101561080c5760405162461bcd60e51b815260206004820152602f60248201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060448201526e6c6f776572207468616e20302e312560881b6064820152608401610768565b61081e81670de0b6b3a7640000611b2d565b60075550565b6000610831848484610fb8565b6001600160a01b0384166000908152600160209081526040808320338452909152902054828110156108b65760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b6064820152608401610768565b6108c38533858403610e94565b506001949350505050565b6005546001600160a01b031633146108f85760405162461bcd60e51b815260040161076890611ae2565b600b829055600c819055600f61090f83600261153d565b11156109505760405162461bcd60e51b815260206004820152601060248201526f084eaf240e8c2f040e8dede40d0d2ced60831b6044820152606401610768565b600c54600f9061096190600261153d565b11156109a35760405162461bcd60e51b81526020600482015260116024820152700a6cad8d840e8c2f040e8dede40d0d2ced607b1b6044820152606401610768565b5050565b6005546001600160a01b031633146109d15760405162461bcd60e51b815260040161076890611ae2565b6109db6000611550565b565b6005546000906001600160a01b03163314610a0a5760405162461bcd60e51b815260040161076890611ae2565b50600a805460ff19169055600190565b6005546001600160a01b03163314610a445760405162461bcd60e51b815260040161076890611ae2565b6001600160a01b03919091166000908152600e60205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610a995760405162461bcd60e51b815260040161076890611ae2565b600a805461ff001916610100179055565b6060600480546106a490611aa8565b6000610734338484610fb8565b6005546001600160a01b03163314610af05760405162461bcd60e51b815260040161076890611ae2565b6006546040516001600160a01b03918216918316907fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567490600090a3600680546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b03163314610b775760405162461bcd60e51b815260040161076890611ae2565b6001600160a01b0382166000818152600d6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b03163314610c005760405162461bcd60e51b815260040161076890611ae2565b670de0b6b3a76400006103e8610c1560025490565b610c20906005611b2d565b610c2a9190611b44565b610c349190611b44565b811015610c8f5760405162461bcd60e51b8152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015263302e352560e01b6064820152608401610768565b610ca181670de0b6b3a7640000611b2d565b60095550565b6005546000906001600160a01b03163314610cd45760405162461bcd60e51b815260040161076890611ae2565b620186a0610ce160025490565b610cec906001611b2d565b610cf69190611b44565b821015610d635760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b6064820152608401610768565b6103e8610d6f60025490565b610d7a906005611b2d565b610d849190611b44565b821115610df05760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171a92903a37ba30b61039bab838363c9760611b6064820152608401610768565b50600855600190565b6005546001600160a01b03163314610e235760405162461bcd60e51b815260040161076890611ae2565b6001600160a01b038116610e885760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610768565b610e9181611550565b50565b6001600160a01b038316610ef65760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610768565b6001600160a01b038216610f575760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610768565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038316610fde5760405162461bcd60e51b815260040161076890611b66565b6001600160a01b0382166110045760405162461bcd60e51b815260040161076890611bab565b8060000361101d57611018838360006115a2565b505050565b600a5460ff16156112f5576005546001600160a01b0384811691161480159061105457506005546001600160a01b03838116911614155b801561106857506001600160a01b03821615155b801561107f57506001600160a01b03821661dead14155b80156110955750600554600160a01b900460ff16155b156112f557600a54610100900460ff1661112d576001600160a01b0383166000908152600d602052604090205460ff16806110e857506001600160a01b0382166000908152600d602052604090205460ff165b61112d5760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b6044820152606401610768565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316836001600160a01b031614801561118757506001600160a01b0382166000908152600e602052604090205460ff16155b1561126b576007548111156111fc5760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b6064820152608401610768565b6009546001600160a01b0383166000908152602081905260409020546112229083611bee565b11156112665760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610768565b6112f5565b6001600160a01b0382166000908152600e602052604090205460ff166112f5576009546001600160a01b0383166000908152602081905260409020546112b19083611bee565b11156112f55760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610768565b30600090815260208190526040902054600854811080159081906113235750600554600160a01b900460ff16155b801561136057507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316846001600160a01b0316145b801561138557506001600160a01b0385166000908152600d602052604090205460ff16155b80156113aa57506001600160a01b0384166000908152600d602052604090205460ff16155b156113d8576005805460ff60a01b1916600160a01b1790556113ca6116f7565b6005805460ff60a01b191690555b6005546001600160a01b0386166000908152600d602052604090205460ff600160a01b90920482161591168061142657506001600160a01b0385166000908152600d602052604090205460ff165b1561142f575060005b60008115611529577f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316866001600160a01b031614801561147a57506000600c54115b156114a65761149f6064611499600c548861174190919063ffffffff16565b9061153d565b905061150b565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316876001600160a01b03161480156114e957506000600b54115b1561150b576115086064611499600b548861174190919063ffffffff16565b90505b801561151c5761151c8730836115a2565b6115268186611c01565b94505b6115348787876115a2565b50505050505050565b60006115498284611b44565b9392505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0383166115c85760405162461bcd60e51b815260040161076890611b66565b6001600160a01b0382166115ee5760405162461bcd60e51b815260040161076890611bab565b6001600160a01b038316600090815260208190526040902054818110156116665760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610768565b6001600160a01b0380851660009081526020819052604080822085850390559185168152908120805484929061169d908490611bee565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516116e991815260200190565b60405180910390a350505050565b30600090815260208190526040812054908190036117125750565b600854611720906014611b2d565b81111561173857600854611735906014611b2d565b90505b610e918161174d565b60006115498284611b2d565b604080516002808252606082018352600092602083019080368337019050509050308160008151811061178257611782611c14565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611800573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118249190611c2a565b8160018151811061183757611837611c14565b60200260200101906001600160a01b031690816001600160a01b031681525050611882307f000000000000000000000000000000000000000000000000000000000000000084610e94565b60065460405163791ac94760e01b81526001600160a01b037f000000000000000000000000000000000000000000000000000000000000000081169263791ac947926118de928792600092889291909116904290600401611c47565b600060405180830381600087803b1580156118f857600080fd5b505af115801561190c573d6000803e3d6000fd5b505050505050565b600060208083528351808285015260005b8181101561194157858101830151858201604001528201611925565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b0381168114610e9157600080fd5b6000806040838503121561198a57600080fd5b823561199581611962565b946020939093013593505050565b6000602082840312156119b557600080fd5b813561154981611962565b6000602082840312156119d257600080fd5b5035919050565b6000806000606084860312156119ee57600080fd5b83356119f981611962565b92506020840135611a0981611962565b929592945050506040919091013590565b60008060408385031215611a2d57600080fd5b50508035926020909101359150565b60008060408385031215611a4f57600080fd5b8235611a5a81611962565b915060208301358015158114611a6f57600080fd5b809150509250929050565b60008060408385031215611a8d57600080fd5b8235611a9881611962565b91506020830135611a6f81611962565b600181811c90821680611abc57607f821691505b602082108103611adc57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b808202811582820484141761073857610738611b17565b600082611b6157634e487b7160e01b600052601260045260246000fd5b500490565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b8082018082111561073857610738611b17565b8181038181111561073857610738611b17565b634e487b7160e01b600052603260045260246000fd5b600060208284031215611c3c57600080fd5b815161154981611962565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015611c975784516001600160a01b031683529383019391830191600101611c72565b50506001600160a01b0396909616606085015250505060800152939250505056fea2646970667358221220af7deda95bcd1cc2049ac3514d4fe37b38db751459f1adbffb50c9d14dc28fd664736f6c634300081300334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572

Deployed Bytecode

0x6080604052600436106101fd5760003560e01c8063751039fc1161010d578063bbc0c742116100a0578063d257b34f1161006f578063d257b34f146105e3578063dd62ed3e14610603578063e2f4560514610649578063f2fde38b1461065f578063f8b45b051461067f57600080fd5b8063bbc0c7421461056e578063c02466681461058d578063c18bc195146105ad578063c8c8ebe4146105cd57600080fd5b80638da5cb5b116100dc5780638da5cb5b146104fb57806395d89b4114610519578063a9059cbb1461052e578063aacebbe31461054e57600080fd5b8063751039fc146104915780637571336a146104a657806375f0a874146104c65780638a8c523c146104e657600080fd5b80632b14ca56116101905780634a62bb651161015f5780634a62bb65146103d35780634fbee193146103ed5780636db794371461042657806370a0823114610446578063715018a61461047c57600080fd5b80632b14ca5614610357578063313ce5671461036d578063470624021461038957806349bd5a5e1461039f57600080fd5b806318160ddd116101cc57806318160ddd146102e0578063203e727e146102ff57806323b872dd1461032157806327c8f8351461034157600080fd5b806306fdde0314610209578063095ea7b31461023457806310d5de53146102645780631694505e1461029457600080fd5b3661020457005b600080fd5b34801561021557600080fd5b5061021e610695565b60405161022b9190611914565b60405180910390f35b34801561024057600080fd5b5061025461024f366004611977565b610727565b604051901515815260200161022b565b34801561027057600080fd5b5061025461027f3660046119a3565b600e6020526000908152604090205460ff1681565b3480156102a057600080fd5b506102c87f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b03909116815260200161022b565b3480156102ec57600080fd5b506002545b60405190815260200161022b565b34801561030b57600080fd5b5061031f61031a3660046119c0565b61073e565b005b34801561032d57600080fd5b5061025461033c3660046119d9565b610824565b34801561034d57600080fd5b506102c861dead81565b34801561036357600080fd5b506102f1600c5481565b34801561037957600080fd5b506040516012815260200161022b565b34801561039557600080fd5b506102f1600b5481565b3480156103ab57600080fd5b506102c87f00000000000000000000000095b0bd8f399f8b3b0fe79d1950a8812d77395e6d81565b3480156103df57600080fd5b50600a546102549060ff1681565b3480156103f957600080fd5b506102546104083660046119a3565b6001600160a01b03166000908152600d602052604090205460ff1690565b34801561043257600080fd5b5061031f610441366004611a1a565b6108ce565b34801561045257600080fd5b506102f16104613660046119a3565b6001600160a01b031660009081526020819052604090205490565b34801561048857600080fd5b5061031f6109a7565b34801561049d57600080fd5b506102546109dd565b3480156104b257600080fd5b5061031f6104c1366004611a3c565b610a1a565b3480156104d257600080fd5b506006546102c8906001600160a01b031681565b3480156104f257600080fd5b5061031f610a6f565b34801561050757600080fd5b506005546001600160a01b03166102c8565b34801561052557600080fd5b5061021e610aaa565b34801561053a57600080fd5b50610254610549366004611977565b610ab9565b34801561055a57600080fd5b5061031f6105693660046119a3565b610ac6565b34801561057a57600080fd5b50600a5461025490610100900460ff1681565b34801561059957600080fd5b5061031f6105a8366004611a3c565b610b4d565b3480156105b957600080fd5b5061031f6105c83660046119c0565b610bd6565b3480156105d957600080fd5b506102f160075481565b3480156105ef57600080fd5b506102546105fe3660046119c0565b610ca7565b34801561060f57600080fd5b506102f161061e366004611a7a565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b34801561065557600080fd5b506102f160085481565b34801561066b57600080fd5b5061031f61067a3660046119a3565b610df9565b34801561068b57600080fd5b506102f160095481565b6060600380546106a490611aa8565b80601f01602080910402602001604051908101604052809291908181526020018280546106d090611aa8565b801561071d5780601f106106f25761010080835404028352916020019161071d565b820191906000526020600020905b81548152906001019060200180831161070057829003601f168201915b5050505050905090565b6000610734338484610e94565b5060015b92915050565b6005546001600160a01b031633146107715760405162461bcd60e51b815260040161076890611ae2565b60405180910390fd5b670de0b6b3a76400006103e861078660025490565b610791906001611b2d565b61079b9190611b44565b6107a59190611b44565b81101561080c5760405162461bcd60e51b815260206004820152602f60248201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060448201526e6c6f776572207468616e20302e312560881b6064820152608401610768565b61081e81670de0b6b3a7640000611b2d565b60075550565b6000610831848484610fb8565b6001600160a01b0384166000908152600160209081526040808320338452909152902054828110156108b65760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b6064820152608401610768565b6108c38533858403610e94565b506001949350505050565b6005546001600160a01b031633146108f85760405162461bcd60e51b815260040161076890611ae2565b600b829055600c819055600f61090f83600261153d565b11156109505760405162461bcd60e51b815260206004820152601060248201526f084eaf240e8c2f040e8dede40d0d2ced60831b6044820152606401610768565b600c54600f9061096190600261153d565b11156109a35760405162461bcd60e51b81526020600482015260116024820152700a6cad8d840e8c2f040e8dede40d0d2ced607b1b6044820152606401610768565b5050565b6005546001600160a01b031633146109d15760405162461bcd60e51b815260040161076890611ae2565b6109db6000611550565b565b6005546000906001600160a01b03163314610a0a5760405162461bcd60e51b815260040161076890611ae2565b50600a805460ff19169055600190565b6005546001600160a01b03163314610a445760405162461bcd60e51b815260040161076890611ae2565b6001600160a01b03919091166000908152600e60205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610a995760405162461bcd60e51b815260040161076890611ae2565b600a805461ff001916610100179055565b6060600480546106a490611aa8565b6000610734338484610fb8565b6005546001600160a01b03163314610af05760405162461bcd60e51b815260040161076890611ae2565b6006546040516001600160a01b03918216918316907fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567490600090a3600680546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b03163314610b775760405162461bcd60e51b815260040161076890611ae2565b6001600160a01b0382166000818152600d6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b03163314610c005760405162461bcd60e51b815260040161076890611ae2565b670de0b6b3a76400006103e8610c1560025490565b610c20906005611b2d565b610c2a9190611b44565b610c349190611b44565b811015610c8f5760405162461bcd60e51b8152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015263302e352560e01b6064820152608401610768565b610ca181670de0b6b3a7640000611b2d565b60095550565b6005546000906001600160a01b03163314610cd45760405162461bcd60e51b815260040161076890611ae2565b620186a0610ce160025490565b610cec906001611b2d565b610cf69190611b44565b821015610d635760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b6064820152608401610768565b6103e8610d6f60025490565b610d7a906005611b2d565b610d849190611b44565b821115610df05760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171a92903a37ba30b61039bab838363c9760611b6064820152608401610768565b50600855600190565b6005546001600160a01b03163314610e235760405162461bcd60e51b815260040161076890611ae2565b6001600160a01b038116610e885760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610768565b610e9181611550565b50565b6001600160a01b038316610ef65760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610768565b6001600160a01b038216610f575760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610768565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038316610fde5760405162461bcd60e51b815260040161076890611b66565b6001600160a01b0382166110045760405162461bcd60e51b815260040161076890611bab565b8060000361101d57611018838360006115a2565b505050565b600a5460ff16156112f5576005546001600160a01b0384811691161480159061105457506005546001600160a01b03838116911614155b801561106857506001600160a01b03821615155b801561107f57506001600160a01b03821661dead14155b80156110955750600554600160a01b900460ff16155b156112f557600a54610100900460ff1661112d576001600160a01b0383166000908152600d602052604090205460ff16806110e857506001600160a01b0382166000908152600d602052604090205460ff165b61112d5760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b6044820152606401610768565b7f00000000000000000000000095b0bd8f399f8b3b0fe79d1950a8812d77395e6d6001600160a01b0316836001600160a01b031614801561118757506001600160a01b0382166000908152600e602052604090205460ff16155b1561126b576007548111156111fc5760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b6064820152608401610768565b6009546001600160a01b0383166000908152602081905260409020546112229083611bee565b11156112665760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610768565b6112f5565b6001600160a01b0382166000908152600e602052604090205460ff166112f5576009546001600160a01b0383166000908152602081905260409020546112b19083611bee565b11156112f55760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610768565b30600090815260208190526040902054600854811080159081906113235750600554600160a01b900460ff16155b801561136057507f00000000000000000000000095b0bd8f399f8b3b0fe79d1950a8812d77395e6d6001600160a01b0316846001600160a01b0316145b801561138557506001600160a01b0385166000908152600d602052604090205460ff16155b80156113aa57506001600160a01b0384166000908152600d602052604090205460ff16155b156113d8576005805460ff60a01b1916600160a01b1790556113ca6116f7565b6005805460ff60a01b191690555b6005546001600160a01b0386166000908152600d602052604090205460ff600160a01b90920482161591168061142657506001600160a01b0385166000908152600d602052604090205460ff165b1561142f575060005b60008115611529577f00000000000000000000000095b0bd8f399f8b3b0fe79d1950a8812d77395e6d6001600160a01b0316866001600160a01b031614801561147a57506000600c54115b156114a65761149f6064611499600c548861174190919063ffffffff16565b9061153d565b905061150b565b7f00000000000000000000000095b0bd8f399f8b3b0fe79d1950a8812d77395e6d6001600160a01b0316876001600160a01b03161480156114e957506000600b54115b1561150b576115086064611499600b548861174190919063ffffffff16565b90505b801561151c5761151c8730836115a2565b6115268186611c01565b94505b6115348787876115a2565b50505050505050565b60006115498284611b44565b9392505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0383166115c85760405162461bcd60e51b815260040161076890611b66565b6001600160a01b0382166115ee5760405162461bcd60e51b815260040161076890611bab565b6001600160a01b038316600090815260208190526040902054818110156116665760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610768565b6001600160a01b0380851660009081526020819052604080822085850390559185168152908120805484929061169d908490611bee565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516116e991815260200190565b60405180910390a350505050565b30600090815260208190526040812054908190036117125750565b600854611720906014611b2d565b81111561173857600854611735906014611b2d565b90505b610e918161174d565b60006115498284611b2d565b604080516002808252606082018352600092602083019080368337019050509050308160008151811061178257611782611c14565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611800573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118249190611c2a565b8160018151811061183757611837611c14565b60200260200101906001600160a01b031690816001600160a01b031681525050611882307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84610e94565b60065460405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81169263791ac947926118de928792600092889291909116904290600401611c47565b600060405180830381600087803b1580156118f857600080fd5b505af115801561190c573d6000803e3d6000fd5b505050505050565b600060208083528351808285015260005b8181101561194157858101830151858201604001528201611925565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b0381168114610e9157600080fd5b6000806040838503121561198a57600080fd5b823561199581611962565b946020939093013593505050565b6000602082840312156119b557600080fd5b813561154981611962565b6000602082840312156119d257600080fd5b5035919050565b6000806000606084860312156119ee57600080fd5b83356119f981611962565b92506020840135611a0981611962565b929592945050506040919091013590565b60008060408385031215611a2d57600080fd5b50508035926020909101359150565b60008060408385031215611a4f57600080fd5b8235611a5a81611962565b915060208301358015158114611a6f57600080fd5b809150509250929050565b60008060408385031215611a8d57600080fd5b8235611a9881611962565b91506020830135611a6f81611962565b600181811c90821680611abc57607f821691505b602082108103611adc57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b808202811582820484141761073857610738611b17565b600082611b6157634e487b7160e01b600052601260045260246000fd5b500490565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b8082018082111561073857610738611b17565b8181038181111561073857610738611b17565b634e487b7160e01b600052603260045260246000fd5b600060208284031215611c3c57600080fd5b815161154981611962565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015611c975784516001600160a01b031683529383019391830191600101611c72565b50506001600160a01b0396909616606085015250505060800152939250505056fea2646970667358221220af7deda95bcd1cc2049ac3514d4fe37b38db751459f1adbffb50c9d14dc28fd664736f6c63430008130033

Deployed Bytecode Sourcemap

24851:9128:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9654:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11821:169;;;;;;;;;;-1:-1:-1;11821:169:0;;;;;:::i;:::-;;:::i;:::-;;;1188:14:1;;1181:22;1163:41;;1151:2;1136:18;11821:169:0;1023:187:1;25558:63:0;;;;;;;;;;-1:-1:-1;25558:63:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;24928:51;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;1657:32:1;;;1639:51;;1627:2;1612:18;24928:51:0;1467:229:1;10774:108:0;;;;;;;;;;-1:-1:-1;10862:12:0;;10774:108;;;1847:25:1;;;1835:2;1820:18;10774:108:0;1701:177:1;28471:275:0;;;;;;;;;;-1:-1:-1;28471:275:0;;;;;:::i;:::-;;:::i;:::-;;12472:492;;;;;;;;;;-1:-1:-1;12472:492:0;;;;;:::i;:::-;;:::i;25031:53::-;;;;;;;;;;;;25077:6;25031:53;;25387:22;;;;;;;;;;;;;;;;10616:93;;;;;;;;;;-1:-1:-1;10616:93:0;;10699:2;2879:36:1;;2867:2;2852:18;10616:93:0;2737:184:1;25359:21:0;;;;;;;;;;;;;;;;24986:38;;;;;;;;;;;;;;;25277:33;;;;;;;;;;-1:-1:-1;25277:33:0;;;;;;;;29913:126;;;;;;;;;;-1:-1:-1;29913:126:0;;;;;:::i;:::-;-1:-1:-1;;;;;30003:28:0;29979:4;30003:28;;;:19;:28;;;;;;;;;29913:126;29193:283;;;;;;;;;;-1:-1:-1;29193:283:0;;;;;:::i;:::-;;:::i;10945:127::-;;;;;;;;;;-1:-1:-1;10945:127:0;;;;;:::i;:::-;-1:-1:-1;;;;;11046:18:0;11019:7;11046:18;;;;;;;;;;;;10945:127;2889:103;;;;;;;;;;;;;:::i;27775:121::-;;;;;;;;;;;;;:::i;29018:167::-;;;;;;;;;;-1:-1:-1;29018:167:0;;;;;:::i;:::-;;:::i;25123:30::-;;;;;;;;;;-1:-1:-1;25123:30:0;;;;-1:-1:-1;;;;;25123:30:0;;;27640:83;;;;;;;;;;;;;:::i;2238:87::-;;;;;;;;;;-1:-1:-1;2311:6:0;;-1:-1:-1;;;;;2311:6:0;2238:87;;9873:104;;;;;;;;;;;;;:::i;11285:175::-;;;;;;;;;;-1:-1:-1;11285:175:0;;;;;:::i;:::-;;:::i;29674:231::-;;;;;;;;;;-1:-1:-1;29674:231:0;;;;;:::i;:::-;;:::i;25317:33::-;;;;;;;;;;-1:-1:-1;25317:33:0;;;;;;;;;;;29484:182;;;;;;;;;;-1:-1:-1;29484:182:0;;;;;:::i;:::-;;:::i;28754:256::-;;;;;;;;;;-1:-1:-1;28754:256:0;;;;;:::i;:::-;;:::i;25162:35::-;;;;;;;;;;;;;;;;27966:497;;;;;;;;;;-1:-1:-1;27966:497:0;;;;;:::i;:::-;;:::i;11523:151::-;;;;;;;;;;-1:-1:-1;11523:151:0;;;;;:::i;:::-;-1:-1:-1;;;;;11639:18:0;;;11612:7;11639:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;11523:151;25204:33;;;;;;;;;;;;;;;;3147:201;;;;;;;;;;-1:-1:-1;3147:201:0;;;;;:::i;:::-;;:::i;25244:24::-;;;;;;;;;;;;;;;;9654:100;9708:13;9741:5;9734:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9654:100;:::o;11821:169::-;11904:4;11921:39;991:10;11944:7;11953:6;11921:8;:39::i;:::-;-1:-1:-1;11978:4:0;11821:169;;;;;:::o;28471:275::-;2311:6;;-1:-1:-1;;;;;2311:6:0;991:10;2458:23;2450:68;;;;-1:-1:-1;;;2450:68:0;;;;;;;:::i;:::-;;;;;;;;;28608:4:::1;28600;28579:13;10862:12:::0;;;10774:108;28579:13:::1;:17;::::0;28595:1:::1;28579:17;:::i;:::-;28578:26;;;;:::i;:::-;28577:35;;;;:::i;:::-;28567:6;:45;;28545:142;;;::::0;-1:-1:-1;;;28545:142:0;;5468:2:1;28545:142:0::1;::::0;::::1;5450:21:1::0;5507:2;5487:18;;;5480:30;5546:34;5526:18;;;5519:62;-1:-1:-1;;;5597:18:1;;;5590:45;5652:19;;28545:142:0::1;5266:411:1::0;28545:142:0::1;28721:17;:6:::0;28731::::1;28721:17;:::i;:::-;28698:20;:40:::0;-1:-1:-1;28471:275:0:o;12472:492::-;12612:4;12629:36;12639:6;12647:9;12658:6;12629:9;:36::i;:::-;-1:-1:-1;;;;;12705:19:0;;12678:24;12705:19;;;:11;:19;;;;;;;;991:10;12705:33;;;;;;;;12757:26;;;;12749:79;;;;-1:-1:-1;;;12749:79:0;;5884:2:1;12749:79:0;;;5866:21:1;5923:2;5903:18;;;5896:30;5962:34;5942:18;;;5935:62;-1:-1:-1;;;6013:18:1;;;6006:38;6061:19;;12749:79:0;5682:404:1;12749:79:0;12864:57;12873:6;991:10;12914:6;12895:16;:25;12864:8;:57::i;:::-;-1:-1:-1;12952:4:0;;12472:492;-1:-1:-1;;;;12472:492:0:o;29193:283::-;2311:6;;-1:-1:-1;;;;;2311:6:0;991:10;2458:23;2450:68;;;;-1:-1:-1;;;2450:68:0;;;;;;;:::i;:::-;29303:6:::1;:16:::0;;;29330:7:::1;:18:::0;;;29384:2:::1;29367:13;29312:7:::0;29378:1:::1;29367:10;:13::i;:::-;:19;;29359:48;;;::::0;-1:-1:-1;;;29359:48:0;;6293:2:1;29359:48:0::1;::::0;::::1;6275:21:1::0;6332:2;6312:18;;;6305:30;-1:-1:-1;;;6351:18:1;;;6344:46;6407:18;;29359:48:0::1;6091:340:1::0;29359:48:0::1;29426:7;::::0;29444:2:::1;::::0;29426:14:::1;::::0;29438:1:::1;29426:11;:14::i;:::-;:20;;29418:50;;;::::0;-1:-1:-1;;;29418:50:0;;6638:2:1;29418:50:0::1;::::0;::::1;6620:21:1::0;6677:2;6657:18;;;6650:30;-1:-1:-1;;;6696:18:1;;;6689:47;6753:18;;29418:50:0::1;6436:341:1::0;29418:50:0::1;29193:283:::0;;:::o;2889:103::-;2311:6;;-1:-1:-1;;;;;2311:6:0;991:10;2458:23;2450:68;;;;-1:-1:-1;;;2450:68:0;;;;;;;:::i;:::-;2954:30:::1;2981:1;2954:18;:30::i;:::-;2889:103::o:0;27775:121::-;2311:6;;27827:4;;-1:-1:-1;;;;;2311:6:0;991:10;2458:23;2450:68;;;;-1:-1:-1;;;2450:68:0;;;;;;;:::i;:::-;-1:-1:-1;27844:14:0::1;:22:::0;;-1:-1:-1;;27844:22:0::1;::::0;;;27775:121;:::o;29018:167::-;2311:6;;-1:-1:-1;;;;;2311:6:0;991:10;2458:23;2450:68;;;;-1:-1:-1;;;2450:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;29131:39:0;;;::::1;;::::0;;;:31:::1;:39;::::0;;;;:46;;-1:-1:-1;;29131:46:0::1;::::0;::::1;;::::0;;;::::1;::::0;;29018:167::o;27640:83::-;2311:6;;-1:-1:-1;;;;;2311:6:0;991:10;2458:23;2450:68;;;;-1:-1:-1;;;2450:68:0;;;;;;;:::i;:::-;27695:13:::1;:20:::0;;-1:-1:-1;;27695:20:0::1;;;::::0;;27640:83::o;9873:104::-;9929:13;9962:7;9955:14;;;;;:::i;11285:175::-;11371:4;11388:42;991:10;11412:9;11423:6;11388:9;:42::i;29674:231::-;2311:6;;-1:-1:-1;;;;;2311:6:0;991:10;2458:23;2450:68;;;;-1:-1:-1;;;2450:68:0;;;;;;;:::i;:::-;29834:15:::1;::::0;29791:59:::1;::::0;-1:-1:-1;;;;;29834:15:0;;::::1;::::0;29791:59;::::1;::::0;::::1;::::0;29834:15:::1;::::0;29791:59:::1;29861:15;:36:::0;;-1:-1:-1;;;;;;29861:36:0::1;-1:-1:-1::0;;;;;29861:36:0;;;::::1;::::0;;;::::1;::::0;;29674:231::o;29484:182::-;2311:6;;-1:-1:-1;;;;;2311:6:0;991:10;2458:23;2450:68;;;;-1:-1:-1;;;2450:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;29569:28:0;::::1;;::::0;;;:19:::1;:28;::::0;;;;;;;;:39;;-1:-1:-1;;29569:39:0::1;::::0;::::1;;::::0;;::::1;::::0;;;29624:34;;1163:41:1;;;29624:34:0::1;::::0;1136:18:1;29624:34:0::1;;;;;;;29484:182:::0;;:::o;28754:256::-;2311:6;;-1:-1:-1;;;;;2311:6:0;991:10;2458:23;2450:68;;;;-1:-1:-1;;;2450:68:0;;;;;;;:::i;:::-;28894:4:::1;28886;28865:13;10862:12:::0;;;10774:108;28865:13:::1;:17;::::0;28881:1:::1;28865:17;:::i;:::-;28864:26;;;;:::i;:::-;28863:35;;;;:::i;:::-;28853:6;:45;;28831:131;;;::::0;-1:-1:-1;;;28831:131:0;;6984:2:1;28831:131:0::1;::::0;::::1;6966:21:1::0;7023:2;7003:18;;;6996:30;7062:34;7042:18;;;7035:62;-1:-1:-1;;;7113:18:1;;;7106:34;7157:19;;28831:131:0::1;6782:400:1::0;28831:131:0::1;28985:17;:6:::0;28995::::1;28985:17;:::i;:::-;28973:9;:29:::0;-1:-1:-1;28754:256:0:o;27966:497::-;2311:6;;28074:4;;-1:-1:-1;;;;;2311:6:0;991:10;2458:23;2450:68;;;;-1:-1:-1;;;2450:68:0;;;;;;;:::i;:::-;28153:6:::1;28132:13;10862:12:::0;;;10774:108;28132:13:::1;:17;::::0;28148:1:::1;28132:17;:::i;:::-;28131:28;;;;:::i;:::-;28118:9;:41;;28096:144;;;::::0;-1:-1:-1;;;28096:144:0;;7389:2:1;28096:144:0::1;::::0;::::1;7371:21:1::0;7428:2;7408:18;;;7401:30;7467:34;7447:18;;;7440:62;-1:-1:-1;;;7518:18:1;;;7511:51;7579:19;;28096:144:0::1;7187:417:1::0;28096:144:0::1;28308:4;28287:13;10862:12:::0;;;10774:108;28287:13:::1;:17;::::0;28303:1:::1;28287:17;:::i;:::-;28286:26;;;;:::i;:::-;28273:9;:39;;28251:141;;;::::0;-1:-1:-1;;;28251:141:0;;7811:2:1;28251:141:0::1;::::0;::::1;7793:21:1::0;7850:2;7830:18;;;7823:30;7889:34;7869:18;;;7862:62;-1:-1:-1;;;7940:18:1;;;7933:50;8000:19;;28251:141:0::1;7609:416:1::0;28251:141:0::1;-1:-1:-1::0;28403:18:0::1;:30:::0;28451:4:::1;::::0;27966:497::o;3147:201::-;2311:6;;-1:-1:-1;;;;;2311:6:0;991:10;2458:23;2450:68;;;;-1:-1:-1;;;2450:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;3236:22:0;::::1;3228:73;;;::::0;-1:-1:-1;;;3228:73:0;;8232:2:1;3228:73:0::1;::::0;::::1;8214:21:1::0;8271:2;8251:18;;;8244:30;8310:34;8290:18;;;8283:62;-1:-1:-1;;;8361:18:1;;;8354:36;8407:19;;3228:73:0::1;8030:402:1::0;3228:73:0::1;3312:28;3331:8;3312:18;:28::i;:::-;3147:201:::0;:::o;15313:380::-;-1:-1:-1;;;;;15449:19:0;;15441:68;;;;-1:-1:-1;;;15441:68:0;;8639:2:1;15441:68:0;;;8621:21:1;8678:2;8658:18;;;8651:30;8717:34;8697:18;;;8690:62;-1:-1:-1;;;8768:18:1;;;8761:34;8812:19;;15441:68:0;8437:400:1;15441:68:0;-1:-1:-1;;;;;15528:21:0;;15520:68;;;;-1:-1:-1;;;15520:68:0;;9044:2:1;15520:68:0;;;9026:21:1;9083:2;9063:18;;;9056:30;9122:34;9102:18;;;9095:62;-1:-1:-1;;;9173:18:1;;;9166:32;9215:19;;15520:68:0;8842:398:1;15520:68:0;-1:-1:-1;;;;;15601:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;15653:32;;1847:25:1;;;15653:32:0;;1820:18:1;15653:32:0;;;;;;;15313:380;;;:::o;30047:2981::-;-1:-1:-1;;;;;30179:18:0;;30171:68;;;;-1:-1:-1;;;30171:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;30258:16:0;;30250:64;;;;-1:-1:-1;;;30250:64:0;;;;;;;:::i;:::-;30331:6;30341:1;30331:11;30327:93;;30359:28;30375:4;30381:2;30385:1;30359:15;:28::i;:::-;30047:2981;;;:::o;30327:93::-;30436:14;;;;30432:1298;;;2311:6;;-1:-1:-1;;;;;30489:15:0;;;2311:6;;30489:15;;;;:49;;-1:-1:-1;2311:6:0;;-1:-1:-1;;;;;30525:13:0;;;2311:6;;30525:13;;30489:49;:86;;;;-1:-1:-1;;;;;;30559:16:0;;;;30489:86;:128;;;;-1:-1:-1;;;;;;30596:21:0;;30610:6;30596:21;;30489:128;:158;;;;-1:-1:-1;30639:8:0;;-1:-1:-1;;;30639:8:0;;;;30638:9;30489:158;30467:1252;;;30687:13;;;;;;;30682:223;;-1:-1:-1;;;;;30759:25:0;;;;;;:19;:25;;;;;;;;;:52;;-1:-1:-1;;;;;;30788:23:0;;;;;;:19;:23;;;;;;;;30759:52;30725:160;;;;-1:-1:-1;;;30725:160:0;;10257:2:1;30725:160:0;;;10239:21:1;10296:2;10276:18;;;10269:30;-1:-1:-1;;;10315:18:1;;;10308:52;10377:18;;30725:160:0;10055:346:1;30725:160:0;30987:13;-1:-1:-1;;;;;30979:21:0;:4;-1:-1:-1;;;;;30979:21:0;;:82;;;;-1:-1:-1;;;;;;31026:35:0;;;;;;:31;:35;;;;;;;;31025:36;30979:82;30953:751;;;31148:20;;31138:6;:30;;31104:169;;;;-1:-1:-1;;;31104:169:0;;10608:2:1;31104:169:0;;;10590:21:1;10647:2;10627:18;;;10620:30;10686:34;10666:18;;;10659:62;-1:-1:-1;;;10737:18:1;;;10730:51;10798:19;;31104:169:0;10406:417:1;31104:169:0;31356:9;;-1:-1:-1;;;;;11046:18:0;;11019:7;11046:18;;;;;;;;;;;31330:22;;:6;:22;:::i;:::-;:35;;31296:140;;;;-1:-1:-1;;;31296:140:0;;11160:2:1;31296:140:0;;;11142:21:1;11199:2;11179:18;;;11172:30;-1:-1:-1;;;11218:18:1;;;11211:49;11277:18;;31296:140:0;10958:343:1;31296:140:0;30953:751;;;-1:-1:-1;;;;;31484:35:0;;;;;;:31;:35;;;;;;;;31479:225;;31604:9;;-1:-1:-1;;;;;11046:18:0;;11019:7;11046:18;;;;;;;;;;;31578:22;;:6;:22;:::i;:::-;:35;;31544:140;;;;-1:-1:-1;;;31544:140:0;;11160:2:1;31544:140:0;;;11142:21:1;11199:2;11179:18;;;11172:30;-1:-1:-1;;;11218:18:1;;;11211:49;11277:18;;31544:140:0;10958:343:1;31544:140:0;31791:4;31742:28;11046:18;;;;;;;;;;;31849;;31825:42;;;;;;;31898:33;;-1:-1:-1;31923:8:0;;-1:-1:-1;;;31923:8:0;;;;31922:9;31898:33;:69;;;;;31954:13;-1:-1:-1;;;;;31948:19:0;:2;-1:-1:-1;;;;;31948:19:0;;31898:69;:112;;;;-1:-1:-1;;;;;;31985:25:0;;;;;;:19;:25;;;;;;;;31984:26;31898:112;:153;;;;-1:-1:-1;;;;;;32028:23:0;;;;;;:19;:23;;;;;;;;32027:24;31898:153;31880:285;;;32078:8;:15;;-1:-1:-1;;;;32078:15:0;-1:-1:-1;;;32078:15:0;;;32110:10;:8;:10::i;:::-;32137:8;:16;;-1:-1:-1;;;;32137:16:0;;;31880:285;32193:8;;-1:-1:-1;;;;;32303:25:0;;32177:12;32303:25;;;:19;:25;;;;;;32193:8;-1:-1:-1;;;32193:8:0;;;;;32192:9;;32303:25;;:52;;-1:-1:-1;;;;;;32332:23:0;;;;;;:19;:23;;;;;;;;32303:52;32299:100;;;-1:-1:-1;32382:5:0;32299:100;32411:12;32516:7;32512:463;;;32574:13;-1:-1:-1;;;;;32568:19:0;:2;-1:-1:-1;;;;;32568:19:0;;:34;;;;;32601:1;32591:7;;:11;32568:34;32564:262;;;32630:28;32654:3;32630:19;32641:7;;32630:6;:10;;:19;;;;:::i;:::-;:23;;:28::i;:::-;32623:35;;32564:262;;;32728:13;-1:-1:-1;;;;;32720:21:0;:4;-1:-1:-1;;;;;32720:21:0;;:35;;;;;32754:1;32745:6;;:10;32720:35;32716:110;;;32783:27;32806:3;32783:18;32794:6;;32783;:10;;:18;;;;:::i;:27::-;32776:34;;32716:110;32846:8;;32842:91;;32875:42;32891:4;32905;32912;32875:15;:42::i;:::-;32949:14;32959:4;32949:14;;:::i;:::-;;;32512:463;32987:33;33003:4;33009:2;33013:6;32987:15;:33::i;:::-;30160:2868;;;;30047:2981;;;:::o;21165:98::-;21223:7;21250:5;21254:1;21250;:5;:::i;:::-;21243:12;21165:98;-1:-1:-1;;;21165:98:0:o;3508:191::-;3601:6;;;-1:-1:-1;;;;;3618:17:0;;;-1:-1:-1;;;;;;3618:17:0;;;;;;;3651:40;;3601:6;;;3618:17;3601:6;;3651:40;;3582:16;;3651:40;3571:128;3508:191;:::o;13454:733::-;-1:-1:-1;;;;;13594:20:0;;13586:70;;;;-1:-1:-1;;;13586:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;13675:23:0;;13667:71;;;;-1:-1:-1;;;13667:71:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;13835:17:0;;13811:21;13835:17;;;;;;;;;;;13871:23;;;;13863:74;;;;-1:-1:-1;;;13863:74:0;;11641:2:1;13863:74:0;;;11623:21:1;11680:2;11660:18;;;11653:30;11719:34;11699:18;;;11692:62;-1:-1:-1;;;11770:18:1;;;11763:36;11816:19;;13863:74:0;11439:402:1;13863:74:0;-1:-1:-1;;;;;13973:17:0;;;:9;:17;;;;;;;;;;;13993:22;;;13973:42;;14037:20;;;;;;;;:30;;14009:6;;13973:9;14037:30;;14009:6;;14037:30;:::i;:::-;;;;;;;;14102:9;-1:-1:-1;;;;;14085:35:0;14094:6;-1:-1:-1;;;;;14085:35:0;;14113:6;14085:35;;;;1847:25:1;;1835:2;1820:18;;1701:177;14085:35:0;;;;;;;;13575:612;13454:733;;;:::o;33635:339::-;33718:4;33674:23;11046:18;;;;;;;;;;;;33739:20;;;33735:59;;33776:7;33635:339::o;33735:59::-;33828:18;;:23;;33849:2;33828:23;:::i;:::-;33810:15;:41;33806:115;;;33886:18;;:23;;33907:2;33886:23;:::i;:::-;33868:41;;33806:115;33933:33;33950:15;33933:16;:33::i;20766:98::-;20824:7;20851:5;20855:1;20851;:5;:::i;33036:591::-;33186:16;;;33200:1;33186:16;;;;;;;;33162:21;;33186:16;;;;;;;;;;-1:-1:-1;33186:16:0;33162:40;;33231:4;33213;33218:1;33213:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;33213:23:0;;;-1:-1:-1;;;;;33213:23:0;;;;;33257:15;-1:-1:-1;;;;;33257:20:0;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;33247:4;33252:1;33247:7;;;;;;;;:::i;:::-;;;;;;:32;-1:-1:-1;;;;;33247:32:0;;;-1:-1:-1;;;;;33247:32:0;;;;;33292:62;33309:4;33324:15;33342:11;33292:8;:62::i;:::-;33563:15;;33393:226;;-1:-1:-1;;;33393:226:0;;-1:-1:-1;;;;;33393:15:0;:66;;;;;:226;;33474:11;;33500:1;;33544:4;;33563:15;;;;;33593;;33393:226;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33091:536;33036: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:248::-;2994:6;3002;3055:2;3043:9;3034:7;3030:23;3026:32;3023:52;;;3071:1;3068;3061:12;3023:52;-1:-1:-1;;3094:23:1;;;3164:2;3149:18;;;3136:32;;-1:-1:-1;2926:248:1:o;3179:416::-;3244:6;3252;3305:2;3293:9;3284:7;3280:23;3276:32;3273:52;;;3321:1;3318;3311:12;3273:52;3360:9;3347:23;3379:31;3404:5;3379:31;:::i;:::-;3429:5;-1:-1:-1;3486:2:1;3471:18;;3458:32;3528:15;;3521:23;3509:36;;3499:64;;3559:1;3556;3549:12;3499:64;3582:7;3572:17;;;3179:416;;;;;:::o;3600:388::-;3668:6;3676;3729:2;3717:9;3708:7;3704:23;3700:32;3697:52;;;3745:1;3742;3735:12;3697:52;3784:9;3771:23;3803:31;3828:5;3803:31;:::i;:::-;3853:5;-1:-1:-1;3910:2:1;3895:18;;3882:32;3923:33;3882:32;3923:33;:::i;3993:380::-;4072:1;4068:12;;;;4115;;;4136:61;;4190:4;4182:6;4178:17;4168:27;;4136:61;4243:2;4235:6;4232:14;4212:18;4209:38;4206:161;;4289:10;4284:3;4280:20;4277:1;4270:31;4324:4;4321:1;4314:15;4352:4;4349:1;4342:15;4206:161;;3993:380;;;:::o;4378:356::-;4580:2;4562:21;;;4599:18;;;4592:30;4658:34;4653:2;4638:18;;4631:62;4725:2;4710:18;;4378:356::o;4739:127::-;4800:10;4795:3;4791:20;4788:1;4781:31;4831:4;4828:1;4821:15;4855:4;4852:1;4845:15;4871:168;4944:9;;;4975;;4992:15;;;4986:22;;4972:37;4962:71;;5013:18;;:::i;5044:217::-;5084:1;5110;5100:132;;5154:10;5149:3;5145:20;5142:1;5135:31;5189:4;5186:1;5179:15;5217:4;5214:1;5207:15;5100:132;-1:-1:-1;5246:9:1;;5044:217::o;9245:401::-;9447:2;9429:21;;;9486:2;9466:18;;;9459:30;9525:34;9520:2;9505:18;;9498:62;-1:-1:-1;;;9591:2:1;9576:18;;9569:35;9636:3;9621:19;;9245:401::o;9651:399::-;9853:2;9835:21;;;9892:2;9872:18;;;9865:30;9931:34;9926:2;9911:18;;9904:62;-1:-1:-1;;;9997:2:1;9982:18;;9975:33;10040:3;10025:19;;9651:399::o;10828:125::-;10893:9;;;10914:10;;;10911:36;;;10927:18;;:::i;11306:128::-;11373:9;;;11394:11;;;11391:37;;;11408:18;;:::i;11978:127::-;12039:10;12034:3;12030:20;12027:1;12020:31;12070:4;12067:1;12060:15;12094:4;12091:1;12084:15;12110:251;12180:6;12233:2;12221:9;12212:7;12208:23;12204:32;12201:52;;;12249:1;12246;12239:12;12201:52;12281:9;12275:16;12300:31;12325:5;12300:31;:::i;12366:980::-;12628:4;12676:3;12665:9;12661:19;12707:6;12696:9;12689:25;12733:2;12771:6;12766:2;12755:9;12751:18;12744:34;12814:3;12809:2;12798:9;12794:18;12787:31;12838:6;12873;12867:13;12904:6;12896;12889:22;12942:3;12931:9;12927:19;12920:26;;12981:2;12973:6;12969:15;12955:29;;13002:1;13012:195;13026:6;13023:1;13020:13;13012:195;;;13091:13;;-1:-1:-1;;;;;13087:39:1;13075:52;;13182:15;;;;13147:12;;;;13123:1;13041:9;13012:195;;;-1:-1:-1;;;;;;;13263:32:1;;;;13258:2;13243:18;;13236:60;-1:-1:-1;;;13327:3:1;13312:19;13305:35;13224:3;12366:980;-1:-1:-1;;;12366:980:1:o

Swarm Source

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