ETH Price: $1,884.84 (+1.00%)
 

Overview

Max Total Supply

10,000,000 XCIVIC

Holders

37

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
96,636.390278000053955678 XCIVIC

Value
$0.00
0xda4642311978d23db208b7666753b4ec37b8e0e9
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:
XCivic

Compiler Version
v0.8.18+commit.87f61d96

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-07-26
*/

// File: @openzeppelin\contracts\utils\math\SafeMath.sol

// OpenZeppelin Contracts (last updated v4.9.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 subtraction 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;
        }
    }
}

// File: @openzeppelin\contracts\utils\structs\EnumerableSet.sol

// OpenZeppelin Contracts (last updated v4.9.0) (utils/structs/EnumerableSet.sol)
// This file was procedurally generated from scripts/generate/templates/EnumerableSet.js.

pragma solidity ^0.8.0;

/**
 * @dev Library for managing
 * https://en.wikipedia.org/wiki/Set_(abstract_data_type)[sets] of primitive
 * types.
 *
 * Sets have the following properties:
 *
 * - Elements are added, removed, and checked for existence in constant time
 * (O(1)).
 * - Elements are enumerated in O(n). No guarantees are made on the ordering.
 *
 * ```solidity
 * contract Example {
 *     // Add the library methods
 *     using EnumerableSet for EnumerableSet.AddressSet;
 *
 *     // Declare a set state variable
 *     EnumerableSet.AddressSet private mySet;
 * }
 * ```
 *
 * As of v3.3.0, sets of type `bytes32` (`Bytes32Set`), `address` (`AddressSet`)
 * and `uint256` (`UintSet`) are supported.
 *
 * [WARNING]
 * ====
 * Trying to delete such a structure from storage will likely result in data corruption, rendering the structure
 * unusable.
 * See https://github.com/ethereum/solidity/pull/11843[ethereum/solidity#11843] for more info.
 *
 * In order to clean an EnumerableSet, you can either remove all elements one by one or create a fresh instance using an
 * array of EnumerableSet.
 * ====
 */
library EnumerableSet {
    // To implement this library for multiple types with as little code
    // repetition as possible, we write it in terms of a generic Set type with
    // bytes32 values.
    // The Set implementation uses private functions, and user-facing
    // implementations (such as AddressSet) are just wrappers around the
    // underlying Set.
    // This means that we can only create new EnumerableSets for types that fit
    // in bytes32.

    struct Set {
        // Storage of set values
        bytes32[] _values;
        // Position of the value in the `values` array, plus 1 because index 0
        // means a value is not in the set.
        mapping(bytes32 => uint256) _indexes;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function _add(Set storage set, bytes32 value) private returns (bool) {
        if (!_contains(set, value)) {
            set._values.push(value);
            // The value is stored at length-1, but we add 1 to all indexes
            // and use 0 as a sentinel value
            set._indexes[value] = set._values.length;
            return true;
        } else {
            return false;
        }
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function _remove(Set storage set, bytes32 value) private returns (bool) {
        // We read and store the value's index to prevent multiple reads from the same storage slot
        uint256 valueIndex = set._indexes[value];

        if (valueIndex != 0) {
            // Equivalent to contains(set, value)
            // To delete an element from the _values array in O(1), we swap the element to delete with the last one in
            // the array, and then remove the last element (sometimes called as 'swap and pop').
            // This modifies the order of the array, as noted in {at}.

            uint256 toDeleteIndex = valueIndex - 1;
            uint256 lastIndex = set._values.length - 1;

            if (lastIndex != toDeleteIndex) {
                bytes32 lastValue = set._values[lastIndex];

                // Move the last value to the index where the value to delete is
                set._values[toDeleteIndex] = lastValue;
                // Update the index for the moved value
                set._indexes[lastValue] = valueIndex; // Replace lastValue's index to valueIndex
            }

            // Delete the slot where the moved value was stored
            set._values.pop();

            // Delete the index for the deleted slot
            delete set._indexes[value];

            return true;
        } else {
            return false;
        }
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function _contains(Set storage set, bytes32 value) private view returns (bool) {
        return set._indexes[value] != 0;
    }

    /**
     * @dev Returns the number of values on the set. O(1).
     */
    function _length(Set storage set) private view returns (uint256) {
        return set._values.length;
    }

    /**
     * @dev Returns the value stored at position `index` in the set. O(1).
     *
     * Note that there are no guarantees on the ordering of values inside the
     * array, and it may change when more values are added or removed.
     *
     * Requirements:
     *
     * - `index` must be strictly less than {length}.
     */
    function _at(Set storage set, uint256 index) private view returns (bytes32) {
        return set._values[index];
    }

    /**
     * @dev Return the entire set in an array
     *
     * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed
     * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that
     * this function has an unbounded cost, and using it as part of a state-changing function may render the function
     * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block.
     */
    function _values(Set storage set) private view returns (bytes32[] memory) {
        return set._values;
    }

    // Bytes32Set

    struct Bytes32Set {
        Set _inner;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function add(Bytes32Set storage set, bytes32 value) internal returns (bool) {
        return _add(set._inner, value);
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function remove(Bytes32Set storage set, bytes32 value) internal returns (bool) {
        return _remove(set._inner, value);
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function contains(Bytes32Set storage set, bytes32 value) internal view returns (bool) {
        return _contains(set._inner, value);
    }

    /**
     * @dev Returns the number of values in the set. O(1).
     */
    function length(Bytes32Set storage set) internal view returns (uint256) {
        return _length(set._inner);
    }

    /**
     * @dev Returns the value stored at position `index` in the set. O(1).
     *
     * Note that there are no guarantees on the ordering of values inside the
     * array, and it may change when more values are added or removed.
     *
     * Requirements:
     *
     * - `index` must be strictly less than {length}.
     */
    function at(Bytes32Set storage set, uint256 index) internal view returns (bytes32) {
        return _at(set._inner, index);
    }

    /**
     * @dev Return the entire set in an array
     *
     * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed
     * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that
     * this function has an unbounded cost, and using it as part of a state-changing function may render the function
     * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block.
     */
    function values(Bytes32Set storage set) internal view returns (bytes32[] memory) {
        bytes32[] memory store = _values(set._inner);
        bytes32[] memory result;

        /// @solidity memory-safe-assembly
        assembly {
            result := store
        }

        return result;
    }

    // AddressSet

    struct AddressSet {
        Set _inner;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function add(AddressSet storage set, address value) internal returns (bool) {
        return _add(set._inner, bytes32(uint256(uint160(value))));
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function remove(AddressSet storage set, address value) internal returns (bool) {
        return _remove(set._inner, bytes32(uint256(uint160(value))));
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function contains(AddressSet storage set, address value) internal view returns (bool) {
        return _contains(set._inner, bytes32(uint256(uint160(value))));
    }

    /**
     * @dev Returns the number of values in the set. O(1).
     */
    function length(AddressSet storage set) internal view returns (uint256) {
        return _length(set._inner);
    }

    /**
     * @dev Returns the value stored at position `index` in the set. O(1).
     *
     * Note that there are no guarantees on the ordering of values inside the
     * array, and it may change when more values are added or removed.
     *
     * Requirements:
     *
     * - `index` must be strictly less than {length}.
     */
    function at(AddressSet storage set, uint256 index) internal view returns (address) {
        return address(uint160(uint256(_at(set._inner, index))));
    }

    /**
     * @dev Return the entire set in an array
     *
     * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed
     * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that
     * this function has an unbounded cost, and using it as part of a state-changing function may render the function
     * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block.
     */
    function values(AddressSet storage set) internal view returns (address[] memory) {
        bytes32[] memory store = _values(set._inner);
        address[] memory result;

        /// @solidity memory-safe-assembly
        assembly {
            result := store
        }

        return result;
    }

    // UintSet

    struct UintSet {
        Set _inner;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function add(UintSet storage set, uint256 value) internal returns (bool) {
        return _add(set._inner, bytes32(value));
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function remove(UintSet storage set, uint256 value) internal returns (bool) {
        return _remove(set._inner, bytes32(value));
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function contains(UintSet storage set, uint256 value) internal view returns (bool) {
        return _contains(set._inner, bytes32(value));
    }

    /**
     * @dev Returns the number of values in the set. O(1).
     */
    function length(UintSet storage set) internal view returns (uint256) {
        return _length(set._inner);
    }

    /**
     * @dev Returns the value stored at position `index` in the set. O(1).
     *
     * Note that there are no guarantees on the ordering of values inside the
     * array, and it may change when more values are added or removed.
     *
     * Requirements:
     *
     * - `index` must be strictly less than {length}.
     */
    function at(UintSet storage set, uint256 index) internal view returns (uint256) {
        return uint256(_at(set._inner, index));
    }

    /**
     * @dev Return the entire set in an array
     *
     * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed
     * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that
     * this function has an unbounded cost, and using it as part of a state-changing function may render the function
     * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block.
     */
    function values(UintSet storage set) internal view returns (uint256[] memory) {
        bytes32[] memory store = _values(set._inner);
        uint256[] memory result;

        /// @solidity memory-safe-assembly
        assembly {
            result := store
        }

        return result;
    }
}

// File: @openzeppelin\contracts\token\ERC20\IERC20.sol

// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @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);

    /**
     * @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 `to`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address to, 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 `from` to `to` 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 from, address to, uint256 amount) external returns (bool);
}

// File: @openzeppelin\contracts\token\ERC20\extensions\IERC20Metadata.sol

// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;

/**
 * @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);
}

// File: @openzeppelin\contracts\utils\Context.sol

// OpenZeppelin Contracts v4.4.1 (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;
    }
}

// File: @openzeppelin\contracts\token\ERC20\ERC20.sol

// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;



/**
 * @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.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * The default value of {decimals} is 18. To change this, you should override
 * this function so it returns a different value.
 *
 * 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}.
     *
     * 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 default value returned by this function, unless
     * it's 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:
     *
     * - `to` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address to, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _transfer(owner, to, 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}.
     *
     * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on
     * `transferFrom`. This is semantically equivalent to an infinite approval.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _approve(owner, 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}.
     *
     * NOTE: Does not update the allowance if the current allowance
     * is the maximum `uint256`.
     *
     * Requirements:
     *
     * - `from` and `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `amount`.
     */
    function transferFrom(address from, address to, uint256 amount) public virtual override returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, amount);
        _transfer(from, to, amount);
        return true;
    }

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

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

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `from` to `to`.
     *
     * 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:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     */
    function _transfer(address from, address to, uint256 amount) internal virtual {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(from, to, amount);

        uint256 fromBalance = _balances[from];
        require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[from] = fromBalance - amount;
            // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by
            // decrementing then incrementing.
            _balances[to] += amount;
        }

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, 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;
        unchecked {
            // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above.
            _balances[account] += amount;
        }
        emit Transfer(address(0), account, amount);

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

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

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

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
            // Overflow not possible: amount <= accountBalance <= totalSupply.
            _totalSupply -= amount;
        }

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

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

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

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

    /**
     * @dev Updates `owner` s allowance for `spender` based on spent `amount`.
     *
     * Does not update the allowance amount in case of infinite allowance.
     * Revert if not enough allowance is available.
     *
     * Might emit an {Approval} event.
     */
    function _spendAllowance(address owner, address spender, uint256 amount) internal virtual {
        uint256 currentAllowance = allowance(owner, spender);
        if (currentAllowance != type(uint256).max) {
            require(currentAllowance >= amount, "ERC20: insufficient allowance");
            unchecked {
                _approve(owner, spender, currentAllowance - 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 {}
}

// File: @openzeppelin\contracts\access\Ownable.sol

// OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol)

pragma solidity ^0.8.0;

/**
 * @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 Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby disabling 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);
    }
}

// File: contracts\IUniswapV2Router01.sol

pragma solidity >=0.6.2;

interface IUniswapV2Router01 {
    function factory() external pure returns (address);
    function WETH() external pure returns (address);

    function addLiquidity(
        address tokenA,
        address tokenB,
        uint amountADesired,
        uint amountBDesired,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline
    ) external returns (uint amountA, uint amountB, uint liquidity);
    function addLiquidityETH(
        address token,
        uint amountTokenDesired,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external payable returns (uint amountToken, uint amountETH, uint liquidity);
    function removeLiquidity(
        address tokenA,
        address tokenB,
        uint liquidity,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline
    ) external returns (uint amountA, uint amountB);
    function removeLiquidityETH(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external returns (uint amountToken, uint amountETH);
    function removeLiquidityWithPermit(
        address tokenA,
        address tokenB,
        uint liquidity,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountA, uint amountB);
    function removeLiquidityETHWithPermit(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountToken, uint amountETH);
    function swapExactTokensForTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);
    function swapTokensForExactTokens(
        uint amountOut,
        uint amountInMax,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);
    function swapExactETHForTokens(uint amountOutMin, address[] calldata path, address to, uint deadline)
        external
        payable
        returns (uint[] memory amounts);
    function swapTokensForExactETH(uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline)
        external
        returns (uint[] memory amounts);
    function swapExactTokensForETH(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline)
        external
        returns (uint[] memory amounts);
    function swapETHForExactTokens(uint amountOut, address[] calldata path, address to, uint deadline)
        external
        payable
        returns (uint[] memory amounts);

    function quote(uint amountA, uint reserveA, uint reserveB) external pure returns (uint amountB);
    function getAmountOut(uint amountIn, uint reserveIn, uint reserveOut) external pure returns (uint amountOut);
    function getAmountIn(uint amountOut, uint reserveIn, uint reserveOut) external pure returns (uint amountIn);
    function getAmountsOut(uint amountIn, address[] calldata path) external view returns (uint[] memory amounts);
    function getAmountsIn(uint amountOut, address[] calldata path) external view returns (uint[] memory amounts);
}

// File: contracts\IUniswapV2Router02.sol

pragma solidity >=0.6.2;
interface IUniswapV2Router02 is IUniswapV2Router01 {
    function removeLiquidityETHSupportingFeeOnTransferTokens(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external returns (uint amountETH);
    function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountETH);

    function swapExactTokensForTokensSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;
    function swapExactETHForTokensSupportingFeeOnTransferTokens(
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external payable;
    function swapExactTokensForETHSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;
}

// File: contracts\IUniswapV2Factory.sol

pragma solidity >=0.5.0;

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

    function feeTo() external view returns (address);
    function feeToSetter() external view returns (address);

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

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

    function setFeeTo(address) external;
    function setFeeToSetter(address) external;
}

// File: contracts\IUniswapV2Pair.sol

pragma solidity >=0.5.0;

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

    function name() external pure returns (string memory);
    function symbol() external pure returns (string memory);
    function decimals() external pure returns (uint8);
    function totalSupply() external view returns (uint);
    function balanceOf(address owner) external view returns (uint);
    function allowance(address owner, address spender) external view returns (uint);

    function approve(address spender, uint value) external returns (bool);
    function transfer(address to, uint value) external returns (bool);
    function transferFrom(address from, address to, uint value) external returns (bool);

    function DOMAIN_SEPARATOR() external view returns (bytes32);
    function PERMIT_TYPEHASH() external pure returns (bytes32);
    function nonces(address owner) external view returns (uint);

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

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

    function MINIMUM_LIQUIDITY() external pure returns (uint);
    function factory() external view returns (address);
    function token0() external view returns (address);
    function token1() external view returns (address);
    function getReserves() external view returns (uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast);
    function price0CumulativeLast() external view returns (uint);
    function price1CumulativeLast() external view returns (uint);
    function kLast() external view returns (uint);

    function mint(address to) external returns (uint liquidity);
    function burn(address to) external returns (uint amount0, uint amount1);
    function swap(uint amount0Out, uint amount1Out, address to, bytes calldata data) external;
    function skim(address to) external;
    function sync() external;

    function initialize(address, address) external;
}

// File: contracts\XCivic.sol

// SPDX-License-Identifier: UNLICENSED
pragma solidity ^0.8.0;
contract XCivic is Ownable, ERC20 {
    using SafeMath for uint256;
    using EnumerableSet for EnumerableSet.AddressSet;

    uint256 public totalMint = 10_000_000 * 1e18;

    IUniswapV2Router02 public uniswapV2Router;
    IUniswapV2Factory public factory;
    EnumerableSet.AddressSet private _pairs;
    address public marketingAddress;

    uint256 public buyTax = 3;
    uint256 public sellTax = 3;
    bool isSwaping = false;

    mapping(address => bool) public isExcludedFromFee;
    uint256 public amountBot = 150000 * 1e18;
    uint256 public numTokensAutoSwapToETH = 5000 * 1e18;
    uint256 public maxTokenAutoSwapToETH = 150000 * 1e18;

    uint256 public antiBotTime = 26; //2 block
    uint256 public antiBotStart;
    bool public tradingEnabled;

    constructor() ERC20("X Civic", "XCIVIC") {
        _mint(_msgSender(), totalMint);
        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);
        uniswapV2Router = _uniswapV2Router;
        factory = IUniswapV2Factory(_uniswapV2Router.factory());
        marketingAddress = address(0xD5cA0D796314141d43D43C3692316A7C8907Bc9e);
        isExcludedFromFee[_msgSender()] = true;
        isExcludedFromFee[marketingAddress] = true;
        tradingEnabled = false;
        address pair = factory.createPair(uniswapV2Router.WETH(), address(this));
        _pairs.add(pair);
    }

    modifier lockTheSwap() {
        isSwaping = true;
        _;
        isSwaping = false;
    }

    function burn(uint256 amount) public {
        _burn(_msgSender(), amount);
    }

    function enableTrading() external onlyOwner{
        require(!tradingEnabled, "Trading already enabled.");
        tradingEnabled = true;
        antiBotStart = block.timestamp + antiBotTime;
    }

    function _transfer(
        address sender,
        address recipient,
        uint256 amount
    ) internal virtual override {
        uint256 transferFee;
        //fill transfer fee
        require(tradingEnabled || isExcludedFromFee[sender] || isExcludedFromFee[recipient], "Trading not yet enabled!");
        if(!isExcludedFromFee[sender] && isPair(recipient)) {
            transferFee = sellTax;
        } else if(!isExcludedFromFee[recipient] && isPair(sender)) {
            transferFee = buyTax;
        }

        if (isSwaping) {
            super._transfer(sender, recipient, amount);
            return;
        }

        if (
            antiBotStart > block.timestamp &&
            amount > amountBot &&
            sender != address(this) &&
            recipient != address(this) &&
            isPair(sender)
        ) {
            transferFee = 80;
        }

        if (transferFee > 0 && sender != address(this) && recipient != address(this)) {
            uint256 _fee = amount.mul(transferFee).div(100);
            super._transfer(sender, address(this), _fee);
            amount = amount.sub(_fee);
        } else {
            callToMarketing();
        }

        super._transfer(sender, recipient, amount);
    }

    function callToMarketing() internal lockTheSwap {
        uint256 balanceThis = balanceOf(address(this)) > maxTokenAutoSwapToETH ? maxTokenAutoSwapToETH : balanceOf(address(this));

        if (balanceThis > numTokensAutoSwapToETH) {
            swapTokensForETH(balanceThis);
        }
    }

    function swapTokensForETH(uint256 tokenAmount) private {
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = uniswapV2Router.WETH();

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

        uniswapV2Router.swapExactTokensForETH(tokenAmount, 0, path, marketingAddress, block.timestamp);
    }

    function setExcludeFromFee(address _address, bool _status) external onlyOwner {
        require(_address != address(0), "0x is not accepted here");
        require(isExcludedFromFee[_address] != _status, "Status was set");
        isExcludedFromFee[_address] = _status;
    }

    function changeMarketingAddress(address _marketingAddress) external {
        require(_msgSender() == marketingAddress, "Only Marketing Wallet!");
        require(_marketingAddress != address(0), "0x is not accepted here");

        marketingAddress = _marketingAddress;
    }


    function changeNumTokensAutoSwapToETH(uint256 _numTokensAutoSwapToETH) external onlyOwner {
        require(_numTokensAutoSwapToETH != 0, "_numTokensAutoSwapToETH !=0");
        numTokensAutoSwapToETH = _numTokensAutoSwapToETH;
    }

    function isPair(address account) public view returns (bool) {
        return _pairs.contains(account);
    }

    function addPair(address pair) public onlyOwner returns (bool) {
        require(pair != address(0), "pair is the zero address");
        return _pairs.add(pair);
    }

    function removePair(address pair) public onlyOwner returns (bool) {
        require(pair != address(0), "pair is the zero address");
        return _pairs.remove(pair);
    }

    function getMinterLength() public view returns (uint256) {
        return _pairs.length();
    }

    function getPair(uint256 index) public view returns (address) {
        require(index <= _pairs.length() - 1, "index out of bounds");
        return _pairs.at(index);
    }

    receive() external payable {}

}

Contract Security Audit

Contract ABI

API
[{"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":"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"},{"inputs":[{"internalType":"address","name":"pair","type":"address"}],"name":"addPair","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","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":[],"name":"amountBot","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"antiBotStart","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"antiBotTime","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":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"buyTax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_marketingAddress","type":"address"}],"name":"changeMarketingAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_numTokensAutoSwapToETH","type":"uint256"}],"name":"changeNumTokensAutoSwapToETH","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"factory","outputs":[{"internalType":"contract IUniswapV2Factory","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getMinterLength","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"getPair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isExcludedFromFee","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isPair","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTokenAutoSwapToETH","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":"numTokensAutoSwapToETH","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"}],"name":"removePair","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellTax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"bool","name":"_status","type":"bool"}],"name":"setExcludeFromFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","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":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]

60806040526a084595161401484a0000006006556003600c819055600d55600e805460ff19169055691fc3842bd1f071c00000601081905569010f0cf064dd59200000601155601255601a6013553480156200005a57600080fd5b50604051806040016040528060078152602001665820436976696360c81b8152506040518060400160405280600681526020016558434956494360d01b815250620000b4620000ae6200032060201b60201c565b62000324565b6004620000c2838262000557565b506005620000d1828262000557565b505050620000f1620000e86200032060201b60201c565b60065462000374565b600780546001600160a01b031916737a250d5630b4cf539739df2c5dacb4c659f2488d9081179091556040805163c45a015560e01b81529051829163c45a01559160048083019260209291908290030181865afa15801562000157573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200017d919062000623565b600880546001600160a01b03929092166001600160a01b0319928316179055600b805490911673d5ca0d796314141d43d43c3692316a7c8907bc9e1790556001600f6000620001c93390565b6001600160a01b03908116825260208083019390935260409182016000908120805495151560ff19968716179055600b5482168152600f84528281208054861660011790556015805490951690945560085460075483516315ab88c960e31b815293519183169463c9c6539694919093169263ad5c4648926004808401938290030181865afa15801562000261573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000287919062000623565b6040516001600160e01b031960e084901b1681526001600160a01b0390911660048201523060248201526044016020604051808303816000875af1158015620002d4573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002fa919062000623565b9050620003178160096200043c60201b62000cc71790919060201c565b50505062000677565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b038216620003cf5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b8060036000828254620003e3919062000655565b90915550506001600160a01b0382166000818152600160209081526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b600062000453836001600160a01b03841662000461565b90505b92915050565b505050565b6000818152600183016020526040812054620004aa5750815460018181018455600084815260208082209093018490558454848252828601909352604090209190915562000456565b50600062000456565b634e487b7160e01b600052604160045260246000fd5b600181811c90821680620004de57607f821691505b602082108103620004ff57634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200045c57600081815260208120601f850160051c810160208610156200052e5750805b601f850160051c820191505b818110156200054f578281556001016200053a565b505050505050565b81516001600160401b03811115620005735762000573620004b3565b6200058b81620005848454620004c9565b8462000505565b602080601f831160018114620005c35760008415620005aa5750858301515b600019600386901b1c1916600185901b1785556200054f565b600085815260208120601f198616915b82811015620005f457888601518255948401946001909101908401620005d3565b5085821015620006135787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6000602082840312156200063657600080fd5b81516001600160a01b03811681146200064e57600080fd5b9392505050565b808201808211156200045657634e487b7160e01b600052601160045260246000fd5b611b9f80620006876000396000f3fe60806040526004361061021d5760003560e01c8063599b54d211610123578063a9059cbb116100ab578063c45a01551161006f578063c45a015514610605578063cc1776d314610625578063dd62ed3e1461063b578063e5e31b131461065b578063f2fde38b1461067b57600080fd5b8063a9059cbb14610565578063af6c9c1d14610585578063af9549e0146105a5578063bdf391cc146105c5578063c2b7bbb6146105e557600080fd5b80638a8c523c116100f25780638a8c523c146104dd5780638da5cb5b146104f257806395d89b4114610510578063a457c2d714610525578063a5ece9411461054557600080fd5b8063599b54d21461046657806359a7715a1461047c57806370a0823114610492578063715018a6146104c857600080fd5b80632e41842f116101a65780634ada218b116101755780634ada218b146103da5780634f7041a5146103f45780634fab2bbb1461040a5780635342acb414610420578063596ea8c51461045057600080fd5b80632e41842f1461035e578063313ce5671461037e578063395093511461039a57806342966c68146103ba57600080fd5b80630789fdf7116101ed5780630789fdf7146102ab578063095ea7b3146102c15780631694505e146102f157806318160ddd1461032957806323b872dd1461033e57600080fd5b8062306fdd146102295780630323aac714610252578063048dec381461026757806306fdde031461028957600080fd5b3661022457005b600080fd5b34801561023557600080fd5b5061023f60115481565b6040519081526020015b60405180910390f35b34801561025e57600080fd5b5061023f61069b565b34801561027357600080fd5b506102876102823660046117cf565b6106ac565b005b34801561029557600080fd5b5061029e61077f565b60405161024991906117ec565b3480156102b757600080fd5b5061023f60145481565b3480156102cd57600080fd5b506102e16102dc36600461183a565b610811565b6040519015158152602001610249565b3480156102fd57600080fd5b50600754610311906001600160a01b031681565b6040516001600160a01b039091168152602001610249565b34801561033557600080fd5b5060035461023f565b34801561034a57600080fd5b506102e1610359366004611866565b61082b565b34801561036a57600080fd5b506102876103793660046118a7565b61084f565b34801561038a57600080fd5b5060405160128152602001610249565b3480156103a657600080fd5b506102e16103b536600461183a565b6108ac565b3480156103c657600080fd5b506102876103d53660046118a7565b6108ce565b3480156103e657600080fd5b506015546102e19060ff1681565b34801561040057600080fd5b5061023f600c5481565b34801561041657600080fd5b5061023f60135481565b34801561042c57600080fd5b506102e161043b3660046117cf565b600f6020526000908152604090205460ff1681565b34801561045c57600080fd5b5061023f60105481565b34801561047257600080fd5b5061023f60125481565b34801561048857600080fd5b5061023f60065481565b34801561049e57600080fd5b5061023f6104ad3660046117cf565b6001600160a01b031660009081526001602052604090205490565b3480156104d457600080fd5b506102876108db565b3480156104e957600080fd5b506102876108ef565b3480156104fe57600080fd5b506000546001600160a01b0316610311565b34801561051c57600080fd5b5061029e610969565b34801561053157600080fd5b506102e161054036600461183a565b610978565b34801561055157600080fd5b50600b54610311906001600160a01b031681565b34801561057157600080fd5b506102e161058036600461183a565b6109f3565b34801561059157600080fd5b506102e16105a03660046117cf565b610a01565b3480156105b157600080fd5b506102876105c03660046118c0565b610a67565b3480156105d157600080fd5b506103116105e03660046118a7565b610b4b565b3480156105f157600080fd5b506102e16106003660046117cf565b610bb3565b34801561061157600080fd5b50600854610311906001600160a01b031681565b34801561063157600080fd5b5061023f600d5481565b34801561064757600080fd5b5061023f6106563660046118fe565b610c19565b34801561066757600080fd5b506102e16106763660046117cf565b610c44565b34801561068757600080fd5b506102876106963660046117cf565b610c51565b60006106a76009610ce3565b905090565b600b546001600160a01b0316336001600160a01b03161461070d5760405162461bcd60e51b81526020600482015260166024820152754f6e6c79204d61726b6574696e672057616c6c65742160501b60448201526064015b60405180910390fd5b6001600160a01b03811661075d5760405162461bcd60e51b81526020600482015260176024820152763078206973206e6f74206163636570746564206865726560481b6044820152606401610704565b600b80546001600160a01b0319166001600160a01b0392909216919091179055565b60606004805461078e9061192c565b80601f01602080910402602001604051908101604052809291908181526020018280546107ba9061192c565b80156108075780601f106107dc57610100808354040283529160200191610807565b820191906000526020600020905b8154815290600101906020018083116107ea57829003601f168201915b5050505050905090565b60003361081f818585610ced565b60019150505b92915050565b600033610839858285610e12565b610844858585610e8c565b506001949350505050565b610857611080565b806000036108a75760405162461bcd60e51b815260206004820152601b60248201527f5f6e756d546f6b656e734175746f53776170546f45544820213d3000000000006044820152606401610704565b601155565b60003361081f8185856108bf8383610c19565b6108c9919061197c565b610ced565b6108d833826110da565b50565b6108e3611080565b6108ed600061120b565b565b6108f7611080565b60155460ff161561094a5760405162461bcd60e51b815260206004820152601860248201527f54726164696e6720616c726561647920656e61626c65642e00000000000000006044820152606401610704565b6015805460ff19166001179055601354610964904261197c565b601455565b60606005805461078e9061192c565b600033816109868286610c19565b9050838110156109e65760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610704565b6108448286868403610ced565b60003361081f818585610e8c565b6000610a0b611080565b6001600160a01b038216610a5c5760405162461bcd60e51b81526020600482015260186024820152777061697220697320746865207a65726f206164647265737360401b6044820152606401610704565b61082560098361125b565b610a6f611080565b6001600160a01b038216610abf5760405162461bcd60e51b81526020600482015260176024820152763078206973206e6f74206163636570746564206865726560481b6044820152606401610704565b6001600160a01b0382166000908152600f602052604090205481151560ff909116151503610b205760405162461bcd60e51b815260206004820152600e60248201526d14dd185d1d5cc81dd85cc81cd95d60921b6044820152606401610704565b6001600160a01b03919091166000908152600f60205260409020805460ff1916911515919091179055565b60006001610b596009610ce3565b610b63919061198f565b821115610ba85760405162461bcd60e51b8152602060048201526013602482015272696e646578206f7574206f6620626f756e647360681b6044820152606401610704565b610825600983611270565b6000610bbd611080565b6001600160a01b038216610c0e5760405162461bcd60e51b81526020600482015260186024820152777061697220697320746865207a65726f206164647265737360401b6044820152606401610704565b610825600983610cc7565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b600061082560098361127c565b610c59611080565b6001600160a01b038116610cbe5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610704565b6108d88161120b565b6000610cdc836001600160a01b03841661129e565b9392505050565b6000610825825490565b6001600160a01b038316610d4f5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610704565b6001600160a01b038216610db05760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610704565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6000610e1e8484610c19565b90506000198114610e865781811015610e795760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610704565b610e868484848403610ced565b50505050565b60155460009060ff1680610eb857506001600160a01b0384166000908152600f602052604090205460ff165b80610edb57506001600160a01b0383166000908152600f602052604090205460ff165b610f275760405162461bcd60e51b815260206004820152601860248201527f54726164696e67206e6f742079657420656e61626c65642100000000000000006044820152606401610704565b6001600160a01b0384166000908152600f602052604090205460ff16158015610f545750610f5483610c44565b15610f625750600d54610f99565b6001600160a01b0383166000908152600f602052604090205460ff16158015610f8f5750610f8f84610c44565b15610f995750600c545b600e5460ff1615610faf57610e868484846112ed565b42601454118015610fc1575060105482115b8015610fd657506001600160a01b0384163014155b8015610feb57506001600160a01b0383163014155b8015610ffb5750610ffb84610c44565b15611004575060505b60008111801561101d57506001600160a01b0384163014155b801561103257506001600160a01b0383163014155b1561106d57600061104e60646110488585611498565b906114a4565b905061105b8530836112ed565b61106583826114b0565b925050611075565b6110756114bc565b610e868484846112ed565b6000546001600160a01b031633146108ed5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610704565b6001600160a01b03821661113a5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610704565b6001600160a01b038216600090815260016020526040902054818110156111ae5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610704565b6001600160a01b03831660008181526001602090815260408083208686039055600380548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9101610e05565b505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6000610cdc836001600160a01b03841661152e565b6000610cdc8383611621565b6001600160a01b03811660009081526001830160205260408120541515610cdc565b60008181526001830160205260408120546112e557508154600181810184556000848152602080822090930184905584548482528286019093526040902091909155610825565b506000610825565b6001600160a01b0383166113515760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610704565b6001600160a01b0382166113b35760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610704565b6001600160a01b0383166000908152600160205260409020548181101561142b5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610704565b6001600160a01b0380851660008181526001602052604080822086860390559286168082529083902080548601905591517fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9061148b9086815260200190565b60405180910390a3610e86565b6000610cdc82846119a2565b6000610cdc82846119b9565b6000610cdc828461198f565b600e805460ff191660011790556012546000906114ee306001600160a01b031660009081526001602052604090205490565b11611508573060009081526001602052604090205461150c565b6012545b9050601154811115611521576115218161164b565b50600e805460ff19169055565b6000818152600183016020526040812054801561161757600061155260018361198f565b85549091506000906115669060019061198f565b90508181146115cb576000866000018281548110611586576115866119db565b90600052602060002001549050808760000184815481106115a9576115a96119db565b6000918252602080832090910192909255918252600188019052604090208390555b85548690806115dc576115dc6119f1565b600190038181906000526020600020016000905590558560010160008681526020019081526020016000206000905560019350505050610825565b6000915050610825565b6000826000018281548110611638576116386119db565b9060005260206000200154905092915050565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110611680576116806119db565b6001600160a01b03928316602091820292909201810191909152600754604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa1580156116d9573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116fd9190611a1d565b81600181518110611710576117106119db565b6001600160a01b0392831660209182029290920101526007546117369130911684610ced565b600754600b546040516318cbafe560e01b81526001600160a01b03928316926318cbafe59261177392879260009288929116904290600401611a3a565b6000604051808303816000875af1158015611792573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526112069190810190611aab565b6001600160a01b03811681146108d857600080fd5b6000602082840312156117e157600080fd5b8135610cdc816117ba565b600060208083528351808285015260005b81811015611819578581018301518582016040015282016117fd565b506000604082860101526040601f19601f8301168501019250505092915050565b6000806040838503121561184d57600080fd5b8235611858816117ba565b946020939093013593505050565b60008060006060848603121561187b57600080fd5b8335611886816117ba565b92506020840135611896816117ba565b929592945050506040919091013590565b6000602082840312156118b957600080fd5b5035919050565b600080604083850312156118d357600080fd5b82356118de816117ba565b9150602083013580151581146118f357600080fd5b809150509250929050565b6000806040838503121561191157600080fd5b823561191c816117ba565b915060208301356118f3816117ba565b600181811c9082168061194057607f821691505b60208210810361196057634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b8082018082111561082557610825611966565b8181038181111561082557610825611966565b808202811582820484141761082557610825611966565b6000826119d657634e487b7160e01b600052601260045260246000fd5b500490565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052604160045260246000fd5b600060208284031215611a2f57600080fd5b8151610cdc816117ba565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015611a8a5784516001600160a01b031683529383019391830191600101611a65565b50506001600160a01b03969096166060850152505050608001529392505050565b60006020808385031215611abe57600080fd5b825167ffffffffffffffff80821115611ad657600080fd5b818501915085601f830112611aea57600080fd5b815181811115611afc57611afc611a07565b8060051b604051601f19603f83011681018181108582111715611b2157611b21611a07565b604052918252848201925083810185019188831115611b3f57600080fd5b938501935b82851015611b5d57845184529385019392850192611b44565b9897505050505050505056fea26469706673582212207564ee2ad03bbc497073c0fffef129c5f59a7b3d875fa206dbf0fac5fc6584ae64736f6c63430008120033

Deployed Bytecode

0x60806040526004361061021d5760003560e01c8063599b54d211610123578063a9059cbb116100ab578063c45a01551161006f578063c45a015514610605578063cc1776d314610625578063dd62ed3e1461063b578063e5e31b131461065b578063f2fde38b1461067b57600080fd5b8063a9059cbb14610565578063af6c9c1d14610585578063af9549e0146105a5578063bdf391cc146105c5578063c2b7bbb6146105e557600080fd5b80638a8c523c116100f25780638a8c523c146104dd5780638da5cb5b146104f257806395d89b4114610510578063a457c2d714610525578063a5ece9411461054557600080fd5b8063599b54d21461046657806359a7715a1461047c57806370a0823114610492578063715018a6146104c857600080fd5b80632e41842f116101a65780634ada218b116101755780634ada218b146103da5780634f7041a5146103f45780634fab2bbb1461040a5780635342acb414610420578063596ea8c51461045057600080fd5b80632e41842f1461035e578063313ce5671461037e578063395093511461039a57806342966c68146103ba57600080fd5b80630789fdf7116101ed5780630789fdf7146102ab578063095ea7b3146102c15780631694505e146102f157806318160ddd1461032957806323b872dd1461033e57600080fd5b8062306fdd146102295780630323aac714610252578063048dec381461026757806306fdde031461028957600080fd5b3661022457005b600080fd5b34801561023557600080fd5b5061023f60115481565b6040519081526020015b60405180910390f35b34801561025e57600080fd5b5061023f61069b565b34801561027357600080fd5b506102876102823660046117cf565b6106ac565b005b34801561029557600080fd5b5061029e61077f565b60405161024991906117ec565b3480156102b757600080fd5b5061023f60145481565b3480156102cd57600080fd5b506102e16102dc36600461183a565b610811565b6040519015158152602001610249565b3480156102fd57600080fd5b50600754610311906001600160a01b031681565b6040516001600160a01b039091168152602001610249565b34801561033557600080fd5b5060035461023f565b34801561034a57600080fd5b506102e1610359366004611866565b61082b565b34801561036a57600080fd5b506102876103793660046118a7565b61084f565b34801561038a57600080fd5b5060405160128152602001610249565b3480156103a657600080fd5b506102e16103b536600461183a565b6108ac565b3480156103c657600080fd5b506102876103d53660046118a7565b6108ce565b3480156103e657600080fd5b506015546102e19060ff1681565b34801561040057600080fd5b5061023f600c5481565b34801561041657600080fd5b5061023f60135481565b34801561042c57600080fd5b506102e161043b3660046117cf565b600f6020526000908152604090205460ff1681565b34801561045c57600080fd5b5061023f60105481565b34801561047257600080fd5b5061023f60125481565b34801561048857600080fd5b5061023f60065481565b34801561049e57600080fd5b5061023f6104ad3660046117cf565b6001600160a01b031660009081526001602052604090205490565b3480156104d457600080fd5b506102876108db565b3480156104e957600080fd5b506102876108ef565b3480156104fe57600080fd5b506000546001600160a01b0316610311565b34801561051c57600080fd5b5061029e610969565b34801561053157600080fd5b506102e161054036600461183a565b610978565b34801561055157600080fd5b50600b54610311906001600160a01b031681565b34801561057157600080fd5b506102e161058036600461183a565b6109f3565b34801561059157600080fd5b506102e16105a03660046117cf565b610a01565b3480156105b157600080fd5b506102876105c03660046118c0565b610a67565b3480156105d157600080fd5b506103116105e03660046118a7565b610b4b565b3480156105f157600080fd5b506102e16106003660046117cf565b610bb3565b34801561061157600080fd5b50600854610311906001600160a01b031681565b34801561063157600080fd5b5061023f600d5481565b34801561064757600080fd5b5061023f6106563660046118fe565b610c19565b34801561066757600080fd5b506102e16106763660046117cf565b610c44565b34801561068757600080fd5b506102876106963660046117cf565b610c51565b60006106a76009610ce3565b905090565b600b546001600160a01b0316336001600160a01b03161461070d5760405162461bcd60e51b81526020600482015260166024820152754f6e6c79204d61726b6574696e672057616c6c65742160501b60448201526064015b60405180910390fd5b6001600160a01b03811661075d5760405162461bcd60e51b81526020600482015260176024820152763078206973206e6f74206163636570746564206865726560481b6044820152606401610704565b600b80546001600160a01b0319166001600160a01b0392909216919091179055565b60606004805461078e9061192c565b80601f01602080910402602001604051908101604052809291908181526020018280546107ba9061192c565b80156108075780601f106107dc57610100808354040283529160200191610807565b820191906000526020600020905b8154815290600101906020018083116107ea57829003601f168201915b5050505050905090565b60003361081f818585610ced565b60019150505b92915050565b600033610839858285610e12565b610844858585610e8c565b506001949350505050565b610857611080565b806000036108a75760405162461bcd60e51b815260206004820152601b60248201527f5f6e756d546f6b656e734175746f53776170546f45544820213d3000000000006044820152606401610704565b601155565b60003361081f8185856108bf8383610c19565b6108c9919061197c565b610ced565b6108d833826110da565b50565b6108e3611080565b6108ed600061120b565b565b6108f7611080565b60155460ff161561094a5760405162461bcd60e51b815260206004820152601860248201527f54726164696e6720616c726561647920656e61626c65642e00000000000000006044820152606401610704565b6015805460ff19166001179055601354610964904261197c565b601455565b60606005805461078e9061192c565b600033816109868286610c19565b9050838110156109e65760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610704565b6108448286868403610ced565b60003361081f818585610e8c565b6000610a0b611080565b6001600160a01b038216610a5c5760405162461bcd60e51b81526020600482015260186024820152777061697220697320746865207a65726f206164647265737360401b6044820152606401610704565b61082560098361125b565b610a6f611080565b6001600160a01b038216610abf5760405162461bcd60e51b81526020600482015260176024820152763078206973206e6f74206163636570746564206865726560481b6044820152606401610704565b6001600160a01b0382166000908152600f602052604090205481151560ff909116151503610b205760405162461bcd60e51b815260206004820152600e60248201526d14dd185d1d5cc81dd85cc81cd95d60921b6044820152606401610704565b6001600160a01b03919091166000908152600f60205260409020805460ff1916911515919091179055565b60006001610b596009610ce3565b610b63919061198f565b821115610ba85760405162461bcd60e51b8152602060048201526013602482015272696e646578206f7574206f6620626f756e647360681b6044820152606401610704565b610825600983611270565b6000610bbd611080565b6001600160a01b038216610c0e5760405162461bcd60e51b81526020600482015260186024820152777061697220697320746865207a65726f206164647265737360401b6044820152606401610704565b610825600983610cc7565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b600061082560098361127c565b610c59611080565b6001600160a01b038116610cbe5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610704565b6108d88161120b565b6000610cdc836001600160a01b03841661129e565b9392505050565b6000610825825490565b6001600160a01b038316610d4f5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610704565b6001600160a01b038216610db05760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610704565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6000610e1e8484610c19565b90506000198114610e865781811015610e795760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610704565b610e868484848403610ced565b50505050565b60155460009060ff1680610eb857506001600160a01b0384166000908152600f602052604090205460ff165b80610edb57506001600160a01b0383166000908152600f602052604090205460ff165b610f275760405162461bcd60e51b815260206004820152601860248201527f54726164696e67206e6f742079657420656e61626c65642100000000000000006044820152606401610704565b6001600160a01b0384166000908152600f602052604090205460ff16158015610f545750610f5483610c44565b15610f625750600d54610f99565b6001600160a01b0383166000908152600f602052604090205460ff16158015610f8f5750610f8f84610c44565b15610f995750600c545b600e5460ff1615610faf57610e868484846112ed565b42601454118015610fc1575060105482115b8015610fd657506001600160a01b0384163014155b8015610feb57506001600160a01b0383163014155b8015610ffb5750610ffb84610c44565b15611004575060505b60008111801561101d57506001600160a01b0384163014155b801561103257506001600160a01b0383163014155b1561106d57600061104e60646110488585611498565b906114a4565b905061105b8530836112ed565b61106583826114b0565b925050611075565b6110756114bc565b610e868484846112ed565b6000546001600160a01b031633146108ed5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610704565b6001600160a01b03821661113a5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610704565b6001600160a01b038216600090815260016020526040902054818110156111ae5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610704565b6001600160a01b03831660008181526001602090815260408083208686039055600380548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9101610e05565b505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6000610cdc836001600160a01b03841661152e565b6000610cdc8383611621565b6001600160a01b03811660009081526001830160205260408120541515610cdc565b60008181526001830160205260408120546112e557508154600181810184556000848152602080822090930184905584548482528286019093526040902091909155610825565b506000610825565b6001600160a01b0383166113515760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610704565b6001600160a01b0382166113b35760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610704565b6001600160a01b0383166000908152600160205260409020548181101561142b5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610704565b6001600160a01b0380851660008181526001602052604080822086860390559286168082529083902080548601905591517fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9061148b9086815260200190565b60405180910390a3610e86565b6000610cdc82846119a2565b6000610cdc82846119b9565b6000610cdc828461198f565b600e805460ff191660011790556012546000906114ee306001600160a01b031660009081526001602052604090205490565b11611508573060009081526001602052604090205461150c565b6012545b9050601154811115611521576115218161164b565b50600e805460ff19169055565b6000818152600183016020526040812054801561161757600061155260018361198f565b85549091506000906115669060019061198f565b90508181146115cb576000866000018281548110611586576115866119db565b90600052602060002001549050808760000184815481106115a9576115a96119db565b6000918252602080832090910192909255918252600188019052604090208390555b85548690806115dc576115dc6119f1565b600190038181906000526020600020016000905590558560010160008681526020019081526020016000206000905560019350505050610825565b6000915050610825565b6000826000018281548110611638576116386119db565b9060005260206000200154905092915050565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110611680576116806119db565b6001600160a01b03928316602091820292909201810191909152600754604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa1580156116d9573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116fd9190611a1d565b81600181518110611710576117106119db565b6001600160a01b0392831660209182029290920101526007546117369130911684610ced565b600754600b546040516318cbafe560e01b81526001600160a01b03928316926318cbafe59261177392879260009288929116904290600401611a3a565b6000604051808303816000875af1158015611792573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526112069190810190611aab565b6001600160a01b03811681146108d857600080fd5b6000602082840312156117e157600080fd5b8135610cdc816117ba565b600060208083528351808285015260005b81811015611819578581018301518582016040015282016117fd565b506000604082860101526040601f19601f8301168501019250505092915050565b6000806040838503121561184d57600080fd5b8235611858816117ba565b946020939093013593505050565b60008060006060848603121561187b57600080fd5b8335611886816117ba565b92506020840135611896816117ba565b929592945050506040919091013590565b6000602082840312156118b957600080fd5b5035919050565b600080604083850312156118d357600080fd5b82356118de816117ba565b9150602083013580151581146118f357600080fd5b809150509250929050565b6000806040838503121561191157600080fd5b823561191c816117ba565b915060208301356118f3816117ba565b600181811c9082168061194057607f821691505b60208210810361196057634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b8082018082111561082557610825611966565b8181038181111561082557610825611966565b808202811582820484141761082557610825611966565b6000826119d657634e487b7160e01b600052601260045260246000fd5b500490565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052604160045260246000fd5b600060208284031215611a2f57600080fd5b8151610cdc816117ba565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015611a8a5784516001600160a01b031683529383019391830191600101611a65565b50506001600160a01b03969096166060850152505050608001529392505050565b60006020808385031215611abe57600080fd5b825167ffffffffffffffff80821115611ad657600080fd5b818501915085601f830112611aea57600080fd5b815181811115611afc57611afc611a07565b8060051b604051601f19603f83011681018181108582111715611b2157611b21611a07565b604052918252848201925083810185019188831115611b3f57600080fd5b938501935b82851015611b5d57845184529385019392850192611b44565b9897505050505050505056fea26469706673582212207564ee2ad03bbc497073c0fffef129c5f59a7b3d875fa206dbf0fac5fc6584ae64736f6c63430008120033

Deployed Bytecode Sourcemap

48949:5450:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49505:51;;;;;;;;;;;;;;;;;;;160:25:1;;;148:2;133:18;49505:51:0;;;;;;;;54076:98;;;;;;;;;;;;;:::i;53059:281::-;;;;;;;;;;-1:-1:-1;53059:281:0;;;;;:::i;:::-;;:::i;:::-;;26921:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;49672:27::-;;;;;;;;;;;;;;;;29281:201;;;;;;;;;;-1:-1:-1;29281:201:0;;;;;:::i;:::-;;:::i;:::-;;;1622:14:1;;1615:22;1597:41;;1585:2;1570:18;29281:201:0;1457:187:1;49133:41:0;;;;;;;;;;-1:-1:-1;49133:41:0;;;;-1:-1:-1;;;;;49133:41:0;;;;;;-1:-1:-1;;;;;1840:32:1;;;1822:51;;1810:2;1795:18;49133:41:0;1649:230:1;28050:108:0;;;;;;;;;;-1:-1:-1;28138:12:0;;28050:108;;30062:261;;;;;;;;;;-1:-1:-1;30062:261:0;;;;;:::i;:::-;;:::i;53350:236::-;;;;;;;;;;-1:-1:-1;53350:236:0;;;;;:::i;:::-;;:::i;27892:93::-;;;;;;;;;;-1:-1:-1;27892:93:0;;27975:2;2672:36:1;;2660:2;2645:18;27892:93:0;2530:184:1;30732:238:0;;;;;;;;;;-1:-1:-1;30732:238:0;;;;;:::i;:::-;;:::i;50493:83::-;;;;;;;;;;-1:-1:-1;50493:83:0;;;;;:::i;:::-;;:::i;49706:26::-;;;;;;;;;;-1:-1:-1;49706:26:0;;;;;;;;49306:25;;;;;;;;;;;;;;;;49624:31;;;;;;;;;;;;;;;;49402:49;;;;;;;;;;-1:-1:-1;49402:49:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;49458:40;;;;;;;;;;;;;;;;49563:52;;;;;;;;;;;;;;;;49080:44;;;;;;;;;;;;;;;;28221:127;;;;;;;;;;-1:-1:-1;28221:127:0;;;;;:::i;:::-;-1:-1:-1;;;;;28322:18:0;28295:7;28322:18;;;:9;:18;;;;;;;28221:127;39786:103;;;;;;;;;;;;;:::i;50584:201::-;;;;;;;;;;;;;:::i;39145:87::-;;;;;;;;;;-1:-1:-1;39191:7:0;39218:6;-1:-1:-1;;;;;39218:6:0;39145:87;;27140:104;;;;;;;;;;;;;:::i;31473:436::-;;;;;;;;;;-1:-1:-1;31473:436:0;;;;;:::i;:::-;;:::i;49266:31::-;;;;;;;;;;-1:-1:-1;49266:31:0;;;;-1:-1:-1;;;;;49266:31:0;;;28554:193;;;;;;;;;;-1:-1:-1;28554:193:0;;;;;:::i;:::-;;:::i;53891:177::-;;;;;;;;;;-1:-1:-1;53891:177:0;;;;;:::i;:::-;;:::i;52772:279::-;;;;;;;;;;-1:-1:-1;52772:279:0;;;;;:::i;:::-;;:::i;54182:175::-;;;;;;;;;;-1:-1:-1;54182:175:0;;;;;:::i;:::-;;:::i;53712:171::-;;;;;;;;;;-1:-1:-1;53712:171:0;;;;;:::i;:::-;;:::i;49181:32::-;;;;;;;;;;-1:-1:-1;49181:32:0;;;;-1:-1:-1;;;;;49181:32:0;;;49338:26;;;;;;;;;;;;;;;;28810:151;;;;;;;;;;-1:-1:-1;28810:151:0;;;;;:::i;:::-;;:::i;53594:110::-;;;;;;;;;;-1:-1:-1;53594:110:0;;;;;:::i;:::-;;:::i;40044:201::-;;;;;;;;;;-1:-1:-1;40044:201:0;;;;;:::i;:::-;;:::i;54076:98::-;54124:7;54151:15;:6;:13;:15::i;:::-;54144:22;;54076:98;:::o;53059:281::-;53162:16;;-1:-1:-1;;;;;53162:16:0;24643:10;-1:-1:-1;;;;;53146:32:0;;53138:67;;;;-1:-1:-1;;;53138:67:0;;4177:2:1;53138:67:0;;;4159:21:1;4216:2;4196:18;;;4189:30;-1:-1:-1;;;4235:18:1;;;4228:52;4297:18;;53138:67:0;;;;;;;;;-1:-1:-1;;;;;53224:31:0;;53216:67;;;;-1:-1:-1;;;53216:67:0;;4528:2:1;53216:67:0;;;4510:21:1;4567:2;4547:18;;;4540:30;-1:-1:-1;;;4586:18:1;;;4579:53;4649:18;;53216:67:0;4326:347:1;53216:67:0;53296:16;:36;;-1:-1:-1;;;;;;53296:36:0;-1:-1:-1;;;;;53296:36:0;;;;;;;;;;53059:281::o;26921:100::-;26975:13;27008:5;27001:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26921:100;:::o;29281:201::-;29364:4;24643:10;29420:32;24643:10;29436:7;29445:6;29420:8;:32::i;:::-;29470:4;29463:11;;;29281:201;;;;;:::o;30062:261::-;30159:4;24643:10;30217:38;30233:4;24643:10;30248:6;30217:15;:38::i;:::-;30266:27;30276:4;30282:2;30286:6;30266:9;:27::i;:::-;-1:-1:-1;30311:4:0;;30062:261;-1:-1:-1;;;;30062:261:0:o;53350:236::-;39031:13;:11;:13::i;:::-;53459:23:::1;53486:1;53459:28:::0;53451:68:::1;;;::::0;-1:-1:-1;;;53451:68:0;;5265:2:1;53451:68:0::1;::::0;::::1;5247:21:1::0;5304:2;5284:18;;;5277:30;5343:29;5323:18;;;5316:57;5390:18;;53451:68:0::1;5063:351:1::0;53451:68:0::1;53530:22;:48:::0;53350:236::o;30732:238::-;30820:4;24643:10;30876:64;24643:10;30892:7;30929:10;30901:25;24643:10;30892:7;30901:9;:25::i;:::-;:38;;;;:::i;:::-;30876:8;:64::i;50493:83::-;50541:27;24643:10;50561:6;50541:5;:27::i;:::-;50493:83;:::o;39786:103::-;39031:13;:11;:13::i;:::-;39851:30:::1;39878:1;39851:18;:30::i;:::-;39786:103::o:0;50584:201::-;39031:13;:11;:13::i;:::-;50647:14:::1;::::0;::::1;;50646:15;50638:52;;;::::0;-1:-1:-1;;;50638:52:0;;5883:2:1;50638:52:0::1;::::0;::::1;5865:21:1::0;5922:2;5902:18;;;5895:30;5961:26;5941:18;;;5934:54;6005:18;;50638:52:0::1;5681:348:1::0;50638:52:0::1;50701:14;:21:::0;;-1:-1:-1;;50701:21:0::1;50718:4;50701:21;::::0;;50766:11:::1;::::0;50748:29:::1;::::0;:15:::1;:29;:::i;:::-;50733:12;:44:::0;50584:201::o;27140:104::-;27196:13;27229:7;27222:14;;;;;:::i;31473:436::-;31566:4;24643:10;31566:4;31649:25;24643:10;31666:7;31649:9;:25::i;:::-;31622:52;;31713:15;31693:16;:35;;31685:85;;;;-1:-1:-1;;;31685:85:0;;6236:2:1;31685:85:0;;;6218:21:1;6275:2;6255:18;;;6248:30;6314:34;6294:18;;;6287:62;-1:-1:-1;;;6365:18:1;;;6358:35;6410:19;;31685:85:0;6034:401:1;31685:85:0;31806:60;31815:5;31822:7;31850:15;31831:16;:34;31806:8;:60::i;28554:193::-;28633:4;24643:10;28689:28;24643:10;28706:2;28710:6;28689:9;:28::i;53891:177::-;53951:4;39031:13;:11;:13::i;:::-;-1:-1:-1;;;;;53976:18:0;::::1;53968:55;;;::::0;-1:-1:-1;;;53968:55:0;;6642:2:1;53968:55:0::1;::::0;::::1;6624:21:1::0;6681:2;6661:18;;;6654:30;-1:-1:-1;;;6700:18:1;;;6693:54;6764:18;;53968:55:0::1;6440:348:1::0;53968:55:0::1;54041:19;:6;54055:4:::0;54041:13:::1;:19::i;52772:279::-:0;39031:13;:11;:13::i;:::-;-1:-1:-1;;;;;52869:22:0;::::1;52861:58;;;::::0;-1:-1:-1;;;52861:58:0;;4528:2:1;52861:58:0::1;::::0;::::1;4510:21:1::0;4567:2;4547:18;;;4540:30;-1:-1:-1;;;4586:18:1;;;4579:53;4649:18;;52861:58:0::1;4326:347:1::0;52861:58:0::1;-1:-1:-1::0;;;;;52938:27:0;::::1;;::::0;;;:17:::1;:27;::::0;;;;;:38;::::1;;:27;::::0;;::::1;:38;;::::0;52930:65:::1;;;::::0;-1:-1:-1;;;52930:65:0;;6995:2:1;52930:65:0::1;::::0;::::1;6977:21:1::0;7034:2;7014:18;;;7007:30;-1:-1:-1;;;7053:18:1;;;7046:44;7107:18;;52930:65:0::1;6793:338:1::0;52930:65:0::1;-1:-1:-1::0;;;;;53006:27:0;;;::::1;;::::0;;;:17:::1;:27;::::0;;;;:37;;-1:-1:-1;;53006:37:0::1;::::0;::::1;;::::0;;;::::1;::::0;;52772:279::o;54182:175::-;54235:7;54290:1;54272:15;:6;:13;:15::i;:::-;:19;;;;:::i;:::-;54263:5;:28;;54255:60;;;;-1:-1:-1;;;54255:60:0;;7471:2:1;54255:60:0;;;7453:21:1;7510:2;7490:18;;;7483:30;-1:-1:-1;;;7529:18:1;;;7522:49;7588:18;;54255:60:0;7269:343:1;54255:60:0;54333:16;:6;54343:5;54333:9;:16::i;53712:171::-;53769:4;39031:13;:11;:13::i;:::-;-1:-1:-1;;;;;53794:18:0;::::1;53786:55;;;::::0;-1:-1:-1;;;53786:55:0;;6642:2:1;53786:55:0::1;::::0;::::1;6624:21:1::0;6681:2;6661:18;;;6654:30;-1:-1:-1;;;6700:18:1;;;6693:54;6764:18;;53786:55:0::1;6440:348:1::0;53786:55:0::1;53859:16;:6;53870:4:::0;53859:10:::1;:16::i;28810:151::-:0;-1:-1:-1;;;;;28926:18:0;;;28899:7;28926:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;28810:151::o;53594:110::-;53648:4;53672:24;:6;53688:7;53672:15;:24::i;40044:201::-;39031:13;:11;:13::i;:::-;-1:-1:-1;;;;;40133:22:0;::::1;40125:73;;;::::0;-1:-1:-1;;;40125:73:0;;7819:2:1;40125:73:0::1;::::0;::::1;7801:21:1::0;7858:2;7838:18;;;7831:30;7897:34;7877:18;;;7870:62;-1:-1:-1;;;7948:18:1;;;7941:36;7994:19;;40125:73:0::1;7617:402:1::0;40125:73:0::1;40209:28;40228:8;40209:18;:28::i;15519:152::-:0;15589:4;15613:50;15618:3;-1:-1:-1;;;;;15638:23:0;;15613:4;:50::i;:::-;15606:57;15519:152;-1:-1:-1;;;15519:152:0:o;16344:117::-;16407:7;16434:19;16442:3;11644:18;;11561:109;35466:346;-1:-1:-1;;;;;35568:19:0;;35560:68;;;;-1:-1:-1;;;35560:68:0;;8226:2:1;35560:68:0;;;8208:21:1;8265:2;8245:18;;;8238:30;8304:34;8284:18;;;8277:62;-1:-1:-1;;;8355:18:1;;;8348:34;8399:19;;35560:68:0;8024:400:1;35560:68:0;-1:-1:-1;;;;;35647:21:0;;35639:68;;;;-1:-1:-1;;;35639:68:0;;8631:2:1;35639:68:0;;;8613:21:1;8670:2;8650:18;;;8643:30;8709:34;8689:18;;;8682:62;-1:-1:-1;;;8760:18:1;;;8753:32;8802:19;;35639:68:0;8429:398:1;35639:68:0;-1:-1:-1;;;;;35720:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;35772:32;;160:25:1;;;35772:32:0;;133:18:1;35772:32:0;;;;;;;;35466:346;;;:::o;36103:419::-;36204:24;36231:25;36241:5;36248:7;36231:9;:25::i;:::-;36204:52;;-1:-1:-1;;36271:16:0;:37;36267:248;;36353:6;36333:16;:26;;36325:68;;;;-1:-1:-1;;;36325:68:0;;9034:2:1;36325:68:0;;;9016:21:1;9073:2;9053:18;;;9046:30;9112:31;9092:18;;;9085:59;9161:18;;36325:68:0;8832:353:1;36325:68:0;36437:51;36446:5;36453:7;36481:6;36462:16;:25;36437:8;:51::i;:::-;36193:329;36103:419;;;:::o;50793:1284::-;51001:14;;50934:19;;51001:14;;;:43;;-1:-1:-1;;;;;;51019:25:0;;;;;;:17;:25;;;;;;;;51001:43;:75;;;-1:-1:-1;;;;;;51048:28:0;;;;;;:17;:28;;;;;;;;51001:75;50993:112;;;;-1:-1:-1;;;50993:112:0;;9392:2:1;50993:112:0;;;9374:21:1;9431:2;9411:18;;;9404:30;9470:26;9450:18;;;9443:54;9514:18;;50993:112:0;9190:348:1;50993:112:0;-1:-1:-1;;;;;51120:25:0;;;;;;:17;:25;;;;;;;;51119:26;:47;;;;;51149:17;51156:9;51149:6;:17::i;:::-;51116:205;;;-1:-1:-1;51197:7:0;;51116:205;;;-1:-1:-1;;;;;51226:28:0;;;;;;:17;:28;;;;;;;;51225:29;:47;;;;;51258:14;51265:6;51258;:14::i;:::-;51222:99;;;-1:-1:-1;51303:6:0;;51222:99;51337:9;;;;51333:105;;;51363:42;51379:6;51387:9;51398:6;51363:15;:42::i;51333:105::-;51483:15;51468:12;;:30;:65;;;;;51524:9;;51515:6;:18;51468:65;:105;;;;-1:-1:-1;;;;;;51550:23:0;;51568:4;51550:23;;51468:105;:148;;;;-1:-1:-1;;;;;;51590:26:0;;51611:4;51590:26;;51468:148;:179;;;;;51633:14;51640:6;51633;:14::i;:::-;51450:252;;;-1:-1:-1;51688:2:0;51450:252;51732:1;51718:11;:15;:42;;;;-1:-1:-1;;;;;;51737:23:0;;51755:4;51737:23;;51718:42;:72;;;;-1:-1:-1;;;;;;51764:26:0;;51785:4;51764:26;;51718:72;51714:301;;;51807:12;51822:32;51850:3;51822:23;:6;51833:11;51822:10;:23::i;:::-;:27;;:32::i;:::-;51807:47;;51869:44;51885:6;51901:4;51908;51869:15;:44::i;:::-;51937:16;:6;51948:4;51937:10;:16::i;:::-;51928:25;;51792:173;51714:301;;;51986:17;:15;:17::i;:::-;52027:42;52043:6;52051:9;52062:6;52027:15;:42::i;39310:132::-;39191:7;39218:6;-1:-1:-1;;;;;39218:6:0;24643:10;39374:23;39366:68;;;;-1:-1:-1;;;39366:68:0;;9745:2:1;39366:68:0;;;9727:21:1;;;9764:18;;;9757:30;9823:34;9803:18;;;9796:62;9875:18;;39366:68:0;9543:356:1;34353:675:0;-1:-1:-1;;;;;34437:21:0;;34429:67;;;;-1:-1:-1;;;34429:67:0;;10106:2:1;34429:67:0;;;10088:21:1;10145:2;10125:18;;;10118:30;10184:34;10164:18;;;10157:62;-1:-1:-1;;;10235:18:1;;;10228:31;10276:19;;34429:67:0;9904:397:1;34429:67:0;-1:-1:-1;;;;;34596:18:0;;34571:22;34596:18;;;:9;:18;;;;;;34633:24;;;;34625:71;;;;-1:-1:-1;;;34625:71:0;;10508:2:1;34625:71:0;;;10490:21:1;10547:2;10527:18;;;10520:30;10586:34;10566:18;;;10559:62;-1:-1:-1;;;10637:18:1;;;10630:32;10679:19;;34625:71:0;10306:398:1;34625:71:0;-1:-1:-1;;;;;34732:18:0;;;;;;:9;:18;;;;;;;;34753:23;;;34732:44;;34871:12;:22;;;;;;;34922:37;160:25:1;;;34732:18:0;;;34922:37;;133:18:1;34922:37:0;14:177:1;34972:48:0;34418:610;34353:675;;:::o;40405:191::-;40479:16;40498:6;;-1:-1:-1;;;;;40515:17:0;;;-1:-1:-1;;;;;;40515:17:0;;;;;;40548:40;;40498:6;;;;;;;40548:40;;40479:16;40548:40;40468:128;40405:191;:::o;15847:158::-;15920:4;15944:53;15952:3;-1:-1:-1;;;;;15972:23:0;;15944:7;:53::i;16815:158::-;16889:7;16940:22;16944:3;16956:5;16940:3;:22::i;16091:167::-;-1:-1:-1;;;;;16225:23:0;;16171:4;11443:19;;;:12;;;:19;;;;;;:24;;16195:55;11346:129;9250:414;9313:4;11443:19;;;:12;;;:19;;;;;;9330:327;;-1:-1:-1;9373:23:0;;;;;;;;:11;:23;;;;;;;;;;;;;9556:18;;9534:19;;;:12;;;:19;;;;;;:40;;;;9589:11;;9330:327;-1:-1:-1;9640:5:0;9633:12;;32379:806;-1:-1:-1;;;;;32476:18:0;;32468:68;;;;-1:-1:-1;;;32468:68:0;;10911:2:1;32468:68:0;;;10893:21:1;10950:2;10930:18;;;10923:30;10989:34;10969:18;;;10962:62;-1:-1:-1;;;11040:18:1;;;11033:35;11085:19;;32468:68:0;10709:401:1;32468:68:0;-1:-1:-1;;;;;32555:16:0;;32547:64;;;;-1:-1:-1;;;32547:64:0;;11317:2:1;32547:64:0;;;11299:21:1;11356:2;11336:18;;;11329:30;11395:34;11375:18;;;11368:62;-1:-1:-1;;;11446:18:1;;;11439:33;11489:19;;32547:64:0;11115:399:1;32547:64:0;-1:-1:-1;;;;;32697:15:0;;32675:19;32697:15;;;:9;:15;;;;;;32731:21;;;;32723:72;;;;-1:-1:-1;;;32723:72:0;;11721:2:1;32723:72:0;;;11703:21:1;11760:2;11740:18;;;11733:30;11799:34;11779:18;;;11772:62;-1:-1:-1;;;11850:18:1;;;11843:36;11896:19;;32723:72:0;11519:402:1;32723:72:0;-1:-1:-1;;;;;32831:15:0;;;;;;;:9;:15;;;;;;32849:20;;;32831:38;;33049:13;;;;;;;;;;:23;;;;;;33101:26;;;;;;32863:6;160:25:1;;148:2;133:18;;14:177;33101:26:0;;;;;;;;33140:37;34353:675;3612:98;3670:7;3697:5;3701:1;3697;:5;:::i;4011:98::-;4069:7;4096:5;4100:1;4096;:5;:::i;3255:98::-;3313:7;3340:5;3344:1;3340;:5;:::i;52085:298::-;50421:9;:16;;-1:-1:-1;;50421:16:0;50433:4;50421:16;;;52193:21:::1;::::0;50421:9;;52166:24:::1;52184:4;-1:-1:-1::0;;;;;28322:18:0;28295:7;28322:18;;;:9;:18;;;;;;;28221:127;52166:24:::1;:48;:99;;52259:4;28295:7:::0;28322:18;;;:9;:18;;;;;;52166:99:::1;;;52217:21;;52166:99;52144:121;;52296:22;;52282:11;:36;52278:98;;;52335:29;52352:11;52335:16;:29::i;:::-;-1:-1:-1::0;50460:9:0;:17;;-1:-1:-1;;50460:17:0;;;52085:298::o;9840:1420::-;9906:4;10045:19;;;:12;;;:19;;;;;;10081:15;;10077:1176;;10456:21;10480:14;10493:1;10480:10;:14;:::i;:::-;10529:18;;10456:38;;-1:-1:-1;10509:17:0;;10529:22;;10550:1;;10529:22;:::i;:::-;10509:42;;10585:13;10572:9;:26;10568:405;;10619:17;10639:3;:11;;10651:9;10639:22;;;;;;;;:::i;:::-;;;;;;;;;10619:42;;10793:9;10764:3;:11;;10776:13;10764:26;;;;;;;;:::i;:::-;;;;;;;;;;;;:38;;;;10878:23;;;:12;;;:23;;;;;:36;;;10568:405;11054:17;;:3;;:17;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;11149:3;:12;;:19;11162:5;11149:19;;;;;;;;;;;11142:26;;;11192:4;11185:11;;;;;;;10077:1176;11236:5;11229:12;;;;;12024:120;12091:7;12118:3;:11;;12130:5;12118:18;;;;;;;;:::i;:::-;;;;;;;;;12111:25;;12024:120;;;;:::o;52391:373::-;52481:16;;;52495:1;52481:16;;;;;;;;52457:21;;52481:16;;;;;;;;;;-1:-1:-1;52481:16:0;52457:40;;52526:4;52508;52513:1;52508:7;;;;;;;;:::i;:::-;-1:-1:-1;;;;;52508:23:0;;;:7;;;;;;;;;;:23;;;;52552:15;;:22;;;-1:-1:-1;;;52552:22:0;;;;:15;;;;;:20;;:22;;;;;52508:7;;52552:22;;;;;:15;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;52542:4;52547:1;52542:7;;;;;;;;:::i;:::-;-1:-1:-1;;;;;52542:32:0;;;:7;;;;;;;;;:32;52619:15;;52587:62;;52604:4;;52619:15;52637:11;52587:8;:62::i;:::-;52662:15;;52722:16;;52662:94;;-1:-1:-1;;;52662:94:0;;-1:-1:-1;;;;;52662:15:0;;;;:37;;:94;;52700:11;;52662:15;;52716:4;;52722:16;;;52740:15;;52662:94;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;52662:94:0;;;;;;;;;;;;:::i;196:131:1:-;-1:-1:-1;;;;;271:31:1;;261:42;;251:70;;317:1;314;307:12;332:247;391:6;444:2;432:9;423:7;419:23;415:32;412:52;;;460:1;457;450:12;412:52;499:9;486:23;518:31;543:5;518:31;:::i;584:548::-;696:4;725:2;754;743:9;736:21;786:6;780:13;829:6;824:2;813:9;809:18;802:34;854:1;864:140;878:6;875:1;872:13;864:140;;;973:14;;;969:23;;963:30;939:17;;;958:2;935:26;928:66;893:10;;864:140;;;868:3;1053:1;1048:2;1039:6;1028:9;1024:22;1020:31;1013:42;1123:2;1116;1112:7;1107:2;1099:6;1095:15;1091:29;1080:9;1076:45;1072:54;1064:62;;;;584:548;;;;:::o;1137:315::-;1205:6;1213;1266:2;1254:9;1245:7;1241:23;1237:32;1234:52;;;1282:1;1279;1272:12;1234:52;1321:9;1308:23;1340:31;1365:5;1340:31;:::i;:::-;1390:5;1442:2;1427:18;;;;1414:32;;-1:-1:-1;;;1137:315:1:o;1884:456::-;1961:6;1969;1977;2030:2;2018:9;2009:7;2005:23;2001:32;1998:52;;;2046:1;2043;2036:12;1998:52;2085:9;2072:23;2104:31;2129:5;2104:31;:::i;:::-;2154:5;-1:-1:-1;2211:2:1;2196:18;;2183:32;2224:33;2183:32;2224:33;:::i;:::-;1884:456;;2276:7;;-1:-1:-1;;;2330:2:1;2315:18;;;;2302:32;;1884:456::o;2345:180::-;2404:6;2457:2;2445:9;2436:7;2432:23;2428:32;2425:52;;;2473:1;2470;2463:12;2425:52;-1:-1:-1;2496:23:1;;2345:180;-1:-1:-1;2345:180:1:o;2927:416::-;2992:6;3000;3053:2;3041:9;3032:7;3028:23;3024:32;3021:52;;;3069:1;3066;3059:12;3021:52;3108:9;3095:23;3127:31;3152:5;3127:31;:::i;:::-;3177:5;-1:-1:-1;3234:2:1;3219:18;;3206:32;3276:15;;3269:23;3257:36;;3247:64;;3307:1;3304;3297:12;3247:64;3330:7;3320:17;;;2927:416;;;;;:::o;3582:388::-;3650:6;3658;3711:2;3699:9;3690:7;3686:23;3682:32;3679:52;;;3727:1;3724;3717:12;3679:52;3766:9;3753:23;3785:31;3810:5;3785:31;:::i;:::-;3835:5;-1:-1:-1;3892:2:1;3877:18;;3864:32;3905:33;3864:32;3905:33;:::i;4678:380::-;4757:1;4753:12;;;;4800;;;4821:61;;4875:4;4867:6;4863:17;4853:27;;4821:61;4928:2;4920:6;4917:14;4897:18;4894:38;4891:161;;4974:10;4969:3;4965:20;4962:1;4955:31;5009:4;5006:1;4999:15;5037:4;5034:1;5027:15;4891:161;;4678:380;;;:::o;5419:127::-;5480:10;5475:3;5471:20;5468:1;5461:31;5511:4;5508:1;5501:15;5535:4;5532:1;5525:15;5551:125;5616:9;;;5637:10;;;5634:36;;;5650:18;;:::i;7136:128::-;7203:9;;;7224:11;;;7221:37;;;7238:18;;:::i;11926:168::-;11999:9;;;12030;;12047:15;;;12041:22;;12027:37;12017:71;;12068:18;;:::i;12099:217::-;12139:1;12165;12155:132;;12209:10;12204:3;12200:20;12197:1;12190:31;12244:4;12241:1;12234:15;12272:4;12269:1;12262:15;12155:132;-1:-1:-1;12301:9:1;;12099:217::o;12321:127::-;12382:10;12377:3;12373:20;12370:1;12363:31;12413:4;12410:1;12403:15;12437:4;12434:1;12427:15;12453:127;12514:10;12509:3;12505:20;12502:1;12495:31;12545:4;12542:1;12535:15;12569:4;12566:1;12559:15;12585:127;12646:10;12641:3;12637:20;12634:1;12627:31;12677:4;12674:1;12667:15;12701:4;12698:1;12691:15;12717:251;12787:6;12840:2;12828:9;12819:7;12815:23;12811:32;12808:52;;;12856:1;12853;12846:12;12808:52;12888:9;12882:16;12907:31;12932:5;12907:31;:::i;12973:980::-;13235:4;13283:3;13272:9;13268:19;13314:6;13303:9;13296:25;13340:2;13378:6;13373:2;13362:9;13358:18;13351:34;13421:3;13416:2;13405:9;13401:18;13394:31;13445:6;13480;13474:13;13511:6;13503;13496:22;13549:3;13538:9;13534:19;13527:26;;13588:2;13580:6;13576:15;13562:29;;13609:1;13619:195;13633:6;13630:1;13627:13;13619:195;;;13698:13;;-1:-1:-1;;;;;13694:39:1;13682:52;;13789:15;;;;13754:12;;;;13730:1;13648:9;13619:195;;;-1:-1:-1;;;;;;;13870:32:1;;;;13865:2;13850:18;;13843:60;-1:-1:-1;;;13934:3:1;13919:19;13912:35;13831:3;12973:980;-1:-1:-1;;;12973:980:1:o;13958:1105::-;14053:6;14084:2;14127;14115:9;14106:7;14102:23;14098:32;14095:52;;;14143:1;14140;14133:12;14095:52;14176:9;14170:16;14205:18;14246:2;14238:6;14235:14;14232:34;;;14262:1;14259;14252:12;14232:34;14300:6;14289:9;14285:22;14275:32;;14345:7;14338:4;14334:2;14330:13;14326:27;14316:55;;14367:1;14364;14357:12;14316:55;14396:2;14390:9;14418:2;14414;14411:10;14408:36;;;14424:18;;:::i;:::-;14470:2;14467:1;14463:10;14502:2;14496:9;14565:2;14561:7;14556:2;14552;14548:11;14544:25;14536:6;14532:38;14620:6;14608:10;14605:22;14600:2;14588:10;14585:18;14582:46;14579:72;;;14631:18;;:::i;:::-;14667:2;14660:22;14717:18;;;14751:15;;;;-1:-1:-1;14793:11:1;;;14789:20;;;14821:19;;;14818:39;;;14853:1;14850;14843:12;14818:39;14877:11;;;;14897:135;14913:6;14908:3;14905:15;14897:135;;;14979:10;;14967:23;;14930:12;;;;15010;;;;14897:135;;;15051:6;13958:1105;-1:-1:-1;;;;;;;;13958:1105:1:o

Swarm Source

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