ETH Price: $1,959.91 (+7.45%)
 

Overview

Max Total Supply

1,000,000,000,000 DOGR

Holders

17

Total Transfers

-

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

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:
DogRace

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

//  _______    ______    ______   _______    ______    ______   ________       ______    ______  
// /       \  /      \  /      \ /       \  /      \  /      \ /        |     /      \  /      \ 
// $$$$$$$  |/$$$$$$  |/$$$$$$  |$$$$$$$  |/$$$$$$  |/$$$$$$  |$$$$$$$$/     /$$$$$$  |/$$$$$$  |
// $$ |  $$ |$$ |  $$ |$$ | _$$/ $$ |__$$ |$$ |__$$ |$$ |  $$/ $$ |__        $$ | _$$/ $$ | _$$/ 
// $$ |  $$ |$$ |  $$ |$$ |/    |$$    $$< $$    $$ |$$ |      $$    |       $$ |/    |$$ |/    |
// $$ |  $$ |$$ |  $$ |$$ |$$$$ |$$$$$$$  |$$$$$$$$ |$$ |   __ $$$$$/        $$ |$$$$ |$$ |$$$$ |
// $$ |__$$ |$$ \__$$ |$$ \__$$ |$$ |  $$ |$$ |  $$ |$$ \__/  |$$ |_____  __ $$ \__$$ |$$ \__$$ |
// $$    $$/ $$    $$/ $$    $$/ $$ |  $$ |$$ |  $$ |$$    $$/ $$       |/  |$$    $$/ $$    $$/ 
// $$$$$$$/   $$$$$$/   $$$$$$/  $$/   $$/ $$/   $$/  $$$$$$/  $$$$$$$$/ $$/  $$$$$$/   $$$$$$/  
                                                                                              
                                                                                              
                                                                                              

// 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\DogRace.sol

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

    uint256 public initToken = 1000_000_000_000 * 1e18;

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

    uint256 public buyFee = 3;
    uint256 public sellFee = 3;
    bool inSwap = false;

    mapping(address => bool) public isExcludedFromFee;
    uint256 public botTokenAmount = 18_000_000_000 * 1e18;
    uint256 public numTokensSellToAddToETH = 360_000_000 * 1e18;
    uint256 public maxTokenSellToAddToETH = 27_000_000_000 * 1e18;

    uint256 public blockBotDuration = 30;
    uint256 public blockBotTime;
    bool public tradingEnabled;

    constructor() ERC20("DogRace", "DOGR") {
        _mint(_msgSender(), initToken);
        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);
        uniswapV2Router = _uniswapV2Router;
        factory = IUniswapV2Factory(_uniswapV2Router.factory());
        marketingAddress = address(0xcCe9E912c5b47fe7Fd179bD680B6De567c485B35);
        isExcludedFromFee[_msgSender()] = true;
        isExcludedFromFee[marketingAddress] = true;
        tradingEnabled = false;
        address pair = factory.createPair(uniswapV2Router.WETH(), address(this));
        _pairs.add(pair);
    }

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

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

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

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

        //fee swap bot
        if (
            blockBotTime > block.timestamp &&
            amount > botTokenAmount &&
            sender != address(this) &&
            recipient != address(this) &&
            isPair(sender)
        ) {
            transferFee = 80;
        }

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

        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)) > maxTokenSellToAddToETH ? maxTokenSellToAddToETH : balanceOf(address(this));

        if (balanceThis > numTokensSellToAddToETH) {
            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 changeNumTokensSellToAddToETH(uint256 _numTokensSellToAddToETH) external onlyOwner {
        require(_numTokensSellToAddToETH != 0, "_numTokensSellToAddToETH !=0");
        numTokensSellToAddToETH = _numTokensSellToAddToETH;
    }

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

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

    function delPair(address pair) public onlyOwner returns (bool) {
        require(pair != address(0), "DOGRACE: 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, "DOGRACE: index out of bounds");
        return _pairs.at(index);
    }

    // receive eth
    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":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"blockBotDuration","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"blockBotTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"botTokenAmount","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":"buyFee","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":"_numTokensSellToAddToETH","type":"uint256"}],"name":"changeNumTokensSellToAddToETH","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":[{"internalType":"address","name":"pair","type":"address"}],"name":"delPair","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":[],"name":"initToken","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"maxTokenSellToAddToETH","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":"numTokensSellToAddToETH","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellFee","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":"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"}]

60806040526c0c9f2c9cd04674edea400000006006556003600c819055600d55600e805460ff191690556b3a2940433ca90448500000006010556b0129c8f71ad02e2a680000006011556b573de064dafd866c78000000601255601e6013553480156200006b57600080fd5b5060405180604001604052806007815260200166446f675261636560c81b815250604051806040016040528060048152602001632227a3a960e11b815250620000c3620000bd6200032f60201b60201c565b62000333565b6004620000d1838262000566565b506005620000e0828262000566565b50505062000100620000f76200032f60201b60201c565b60065462000383565b600780546001600160a01b031916737a250d5630b4cf539739df2c5dacb4c659f2488d9081179091556040805163c45a015560e01b81529051829163c45a01559160048083019260209291908290030181865afa15801562000166573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200018c919062000632565b600880546001600160a01b03929092166001600160a01b0319928316179055600b805490911673cce9e912c5b47fe7fd179bd680b6de567c485b351790556001600f6000620001d83390565b6001600160a01b03908116825260208083019390935260409182016000908120805495151560ff19968716179055600b5482168152600f84528281208054861660011790556015805490951690945560085460075483516315ab88c960e31b815293519183169463c9c6539694919093169263ad5c4648926004808401938290030181865afa15801562000270573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000296919062000632565b6040516001600160e01b031960e084901b1681526001600160a01b0390911660048201523060248201526044016020604051808303816000875af1158015620002e3573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000309919062000632565b9050620003268160096200044b60201b62000c7c1790919060201c565b50505062000686565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b038216620003de5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b8060036000828254620003f2919062000664565b90915550506001600160a01b0382166000818152600160209081526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b600062000462836001600160a01b03841662000470565b90505b92915050565b505050565b6000818152600183016020526040812054620004b95750815460018181018455600084815260208082209093018490558454848252828601909352604090209190915562000465565b50600062000465565b634e487b7160e01b600052604160045260246000fd5b600181811c90821680620004ed57607f821691505b6020821081036200050e57634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200046b57600081815260208120601f850160051c810160208610156200053d5750805b601f850160051c820191505b818110156200055e5782815560010162000549565b505050505050565b81516001600160401b03811115620005825762000582620004c2565b6200059a81620005938454620004d8565b8462000514565b602080601f831160018114620005d25760008415620005b95750858301515b600019600386901b1c1916600185901b1785556200055e565b600085815260208120601f198616915b828110156200060357888601518255948401946001909101908401620005e2565b5085821015620006225787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6000602082840312156200064557600080fd5b81516001600160a01b03811681146200065d57600080fd5b9392505050565b808201808211156200046557634e487b7160e01b600052601160045260246000fd5b611b9580620006966000396000f3fe60806040526004361061021e5760003560e01c80638a8c523c11610123578063ad16a0cf116100ab578063cb09c97c1161006f578063cb09c97c14610610578063dd62ed3e14610626578063e5e31b1314610646578063e66738cd14610666578063f2fde38b1461067c57600080fd5b8063ad16a0cf1461057a578063af9549e014610590578063bdf391cc146105b0578063c2b7bbb6146105d0578063c45a0155146105f057600080fd5b8063a457c2d7116100f2578063a457c2d7146104e4578063a5bc508514610504578063a5ece94114610524578063a9059cbb14610544578063a9b66df61461056457600080fd5b80638a8c523c1461047c5780638da5cb5b1461049157806395d89b41146104af578063a39a1450146104c457600080fd5b80632f16d18d116101a6578063470624021161017557806347062402146103d15780634ada218b146103e75780635342acb41461040157806370a0823114610431578063715018a61461046757600080fd5b80632f16d18d1461035f578063313ce56714610375578063395093511461039157806342966c68146103b157600080fd5b80631694505e116101ed5780631694505e146102c657806318160ddd146102fe57806323b872dd146103135780632b14ca56146103335780632c1c13e11461034957600080fd5b80630323aac71461022a578063048dec381461025257806306fdde0314610274578063095ea7b31461029657600080fd5b3661022557005b600080fd5b34801561023657600080fd5b5061023f61069c565b6040519081526020015b60405180910390f35b34801561025e57600080fd5b5061027261026d366004611784565b6106ad565b005b34801561028057600080fd5b50610289610780565b60405161024991906117a1565b3480156102a257600080fd5b506102b66102b13660046117ef565b610812565b6040519015158152602001610249565b3480156102d257600080fd5b506007546102e6906001600160a01b031681565b6040516001600160a01b039091168152602001610249565b34801561030a57600080fd5b5060035461023f565b34801561031f57600080fd5b506102b661032e36600461181b565b61082c565b34801561033f57600080fd5b5061023f600d5481565b34801561035557600080fd5b5061023f60135481565b34801561036b57600080fd5b5061023f60105481565b34801561038157600080fd5b5060405160128152602001610249565b34801561039d57600080fd5b506102b66103ac3660046117ef565b610850565b3480156103bd57600080fd5b506102726103cc36600461185c565b610872565b3480156103dd57600080fd5b5061023f600c5481565b3480156103f357600080fd5b506015546102b69060ff1681565b34801561040d57600080fd5b506102b661041c366004611784565b600f6020526000908152604090205460ff1681565b34801561043d57600080fd5b5061023f61044c366004611784565b6001600160a01b031660009081526001602052604090205490565b34801561047357600080fd5b5061027261087f565b34801561048857600080fd5b50610272610893565b34801561049d57600080fd5b506000546001600160a01b03166102e6565b3480156104bb57600080fd5b5061028961090d565b3480156104d057600080fd5b506102726104df36600461185c565b61091c565b3480156104f057600080fd5b506102b66104ff3660046117ef565b610979565b34801561051057600080fd5b506102b661051f366004611784565b6109f4565b34801561053057600080fd5b50600b546102e6906001600160a01b031681565b34801561055057600080fd5b506102b661055f3660046117ef565b610a2f565b34801561057057600080fd5b5061023f60125481565b34801561058657600080fd5b5061023f60115481565b34801561059c57600080fd5b506102726105ab366004611875565b610a3d565b3480156105bc57600080fd5b506102e66105cb36600461185c565b610b21565b3480156105dc57600080fd5b506102b66105eb366004611784565b610b93565b3480156105fc57600080fd5b506008546102e6906001600160a01b031681565b34801561061c57600080fd5b5061023f60145481565b34801561063257600080fd5b5061023f6106413660046118b3565b610bce565b34801561065257600080fd5b506102b6610661366004611784565b610bf9565b34801561067257600080fd5b5061023f60065481565b34801561068857600080fd5b50610272610697366004611784565b610c06565b60006106a86009610c98565b905090565b600b546001600160a01b0316336001600160a01b03161461070e5760405162461bcd60e51b81526020600482015260166024820152754f6e6c79204d61726b6574696e672057616c6c65742160501b60448201526064015b60405180910390fd5b6001600160a01b03811661075e5760405162461bcd60e51b81526020600482015260176024820152763078206973206e6f74206163636570746564206865726560481b6044820152606401610705565b600b80546001600160a01b0319166001600160a01b0392909216919091179055565b60606004805461078f906118e1565b80601f01602080910402602001604051908101604052809291908181526020018280546107bb906118e1565b80156108085780601f106107dd57610100808354040283529160200191610808565b820191906000526020600020905b8154815290600101906020018083116107eb57829003601f168201915b5050505050905090565b600033610820818585610ca2565b60019150505b92915050565b60003361083a858285610dc7565b610845858585610e41565b506001949350505050565b6000336108208185856108638383610bce565b61086d9190611931565b610ca2565b61087c3382611035565b50565b610887611166565b61089160006111c0565b565b61089b611166565b60155460ff16156108ee5760405162461bcd60e51b815260206004820152601860248201527f54726164696e6720616c726561647920656e61626c65642e00000000000000006044820152606401610705565b6015805460ff191660011790556013546109089042611931565b601455565b60606005805461078f906118e1565b610924611166565b806000036109745760405162461bcd60e51b815260206004820152601c60248201527f5f6e756d546f6b656e7353656c6c546f416464546f45544820213d30000000006044820152606401610705565b601155565b600033816109878286610bce565b9050838110156109e75760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610705565b6108458286868403610ca2565b60006109fe611166565b6001600160a01b038216610a245760405162461bcd60e51b815260040161070590611944565b610826600983611210565b600033610820818585610e41565b610a45611166565b6001600160a01b038216610a955760405162461bcd60e51b81526020600482015260176024820152763078206973206e6f74206163636570746564206865726560481b6044820152606401610705565b6001600160a01b0382166000908152600f602052604090205481151560ff909116151503610af65760405162461bcd60e51b815260206004820152600e60248201526d14dd185d1d5cc81dd85cc81cd95d60921b6044820152606401610705565b6001600160a01b03919091166000908152600f60205260409020805460ff1916911515919091179055565b60006001610b2f6009610c98565b610b399190611985565b821115610b885760405162461bcd60e51b815260206004820152601c60248201527f444f47524143453a20696e646578206f7574206f6620626f756e6473000000006044820152606401610705565b610826600983611225565b6000610b9d611166565b6001600160a01b038216610bc35760405162461bcd60e51b815260040161070590611944565b610826600983610c7c565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b6000610826600983611231565b610c0e611166565b6001600160a01b038116610c735760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610705565b61087c816111c0565b6000610c91836001600160a01b038416611253565b9392505050565b6000610826825490565b6001600160a01b038316610d045760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610705565b6001600160a01b038216610d655760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610705565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6000610dd38484610bce565b90506000198114610e3b5781811015610e2e5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610705565b610e3b8484848403610ca2565b50505050565b60155460009060ff1680610e6d57506001600160a01b0384166000908152600f602052604090205460ff165b80610e9057506001600160a01b0383166000908152600f602052604090205460ff165b610edc5760405162461bcd60e51b815260206004820152601860248201527f54726164696e67206e6f742079657420656e61626c65642100000000000000006044820152606401610705565b6001600160a01b0384166000908152600f602052604090205460ff16158015610f095750610f0983610bf9565b15610f175750600d54610f4e565b6001600160a01b0383166000908152600f602052604090205460ff16158015610f445750610f4484610bf9565b15610f4e5750600c545b42601454118015610f60575060105482115b8015610f7557506001600160a01b0384163014155b8015610f8a57506001600160a01b0383163014155b8015610f9a5750610f9a84610bf9565b15610fa3575060505b600e5460ff1615610fb957610e3b8484846112a2565b600081118015610fd257506001600160a01b0384163014155b8015610fe757506001600160a01b0383163014155b156110225760006110036064610ffd858561144d565b90611459565b90506110108530836112a2565b61101a8382611465565b92505061102a565b61102a611471565b610e3b8484846112a2565b6001600160a01b0382166110955760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610705565b6001600160a01b038216600090815260016020526040902054818110156111095760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610705565b6001600160a01b03831660008181526001602090815260408083208686039055600380548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9101610dba565b505050565b6000546001600160a01b031633146108915760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610705565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6000610c91836001600160a01b0384166114e3565b6000610c9183836115d6565b6001600160a01b03811660009081526001830160205260408120541515610c91565b600081815260018301602052604081205461129a57508154600181810184556000848152602080822090930184905584548482528286019093526040902091909155610826565b506000610826565b6001600160a01b0383166113065760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610705565b6001600160a01b0382166113685760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610705565b6001600160a01b038316600090815260016020526040902054818110156113e05760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610705565b6001600160a01b0380851660008181526001602052604080822086860390559286168082529083902080548601905591517fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906114409086815260200190565b60405180910390a3610e3b565b6000610c918284611998565b6000610c9182846119af565b6000610c918284611985565b600e805460ff191660011790556012546000906114a3306001600160a01b031660009081526001602052604090205490565b116114bd57306000908152600160205260409020546114c1565b6012545b90506011548111156114d6576114d681611600565b50600e805460ff19169055565b600081815260018301602052604081205480156115cc576000611507600183611985565b855490915060009061151b90600190611985565b905081811461158057600086600001828154811061153b5761153b6119d1565b906000526020600020015490508087600001848154811061155e5761155e6119d1565b6000918252602080832090910192909255918252600188019052604090208390555b8554869080611591576115916119e7565b600190038181906000526020600020016000905590558560010160008681526020019081526020016000206000905560019350505050610826565b6000915050610826565b60008260000182815481106115ed576115ed6119d1565b9060005260206000200154905092915050565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110611635576116356119d1565b6001600160a01b03928316602091820292909201810191909152600754604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa15801561168e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116b29190611a13565b816001815181106116c5576116c56119d1565b6001600160a01b0392831660209182029290920101526007546116eb9130911684610ca2565b600754600b546040516318cbafe560e01b81526001600160a01b03928316926318cbafe59261172892879260009288929116904290600401611a30565b6000604051808303816000875af1158015611747573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526111619190810190611aa1565b6001600160a01b038116811461087c57600080fd5b60006020828403121561179657600080fd5b8135610c918161176f565b600060208083528351808285015260005b818110156117ce578581018301518582016040015282016117b2565b506000604082860101526040601f19601f8301168501019250505092915050565b6000806040838503121561180257600080fd5b823561180d8161176f565b946020939093013593505050565b60008060006060848603121561183057600080fd5b833561183b8161176f565b9250602084013561184b8161176f565b929592945050506040919091013590565b60006020828403121561186e57600080fd5b5035919050565b6000806040838503121561188857600080fd5b82356118938161176f565b9150602083013580151581146118a857600080fd5b809150509250929050565b600080604083850312156118c657600080fd5b82356118d18161176f565b915060208301356118a88161176f565b600181811c908216806118f557607f821691505b60208210810361191557634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b808201808211156108265761082661191b565b60208082526021908201527f444f47524143453a207061697220697320746865207a65726f206164647265736040820152607360f81b606082015260800190565b818103818111156108265761082661191b565b80820281158282048414176108265761082661191b565b6000826119cc57634e487b7160e01b600052601260045260246000fd5b500490565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052604160045260246000fd5b600060208284031215611a2557600080fd5b8151610c918161176f565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015611a805784516001600160a01b031683529383019391830191600101611a5b565b50506001600160a01b03969096166060850152505050608001529392505050565b60006020808385031215611ab457600080fd5b825167ffffffffffffffff80821115611acc57600080fd5b818501915085601f830112611ae057600080fd5b815181811115611af257611af26119fd565b8060051b604051601f19603f83011681018181108582111715611b1757611b176119fd565b604052918252848201925083810185019188831115611b3557600080fd5b938501935b82851015611b5357845184529385019392850192611b3a565b9897505050505050505056fea2646970667358221220fcd3201eb0b18752d854bd76a3a0c82151dc00b4362f8bb0ebec156018436b0364736f6c63430008120033

Deployed Bytecode

0x60806040526004361061021e5760003560e01c80638a8c523c11610123578063ad16a0cf116100ab578063cb09c97c1161006f578063cb09c97c14610610578063dd62ed3e14610626578063e5e31b1314610646578063e66738cd14610666578063f2fde38b1461067c57600080fd5b8063ad16a0cf1461057a578063af9549e014610590578063bdf391cc146105b0578063c2b7bbb6146105d0578063c45a0155146105f057600080fd5b8063a457c2d7116100f2578063a457c2d7146104e4578063a5bc508514610504578063a5ece94114610524578063a9059cbb14610544578063a9b66df61461056457600080fd5b80638a8c523c1461047c5780638da5cb5b1461049157806395d89b41146104af578063a39a1450146104c457600080fd5b80632f16d18d116101a6578063470624021161017557806347062402146103d15780634ada218b146103e75780635342acb41461040157806370a0823114610431578063715018a61461046757600080fd5b80632f16d18d1461035f578063313ce56714610375578063395093511461039157806342966c68146103b157600080fd5b80631694505e116101ed5780631694505e146102c657806318160ddd146102fe57806323b872dd146103135780632b14ca56146103335780632c1c13e11461034957600080fd5b80630323aac71461022a578063048dec381461025257806306fdde0314610274578063095ea7b31461029657600080fd5b3661022557005b600080fd5b34801561023657600080fd5b5061023f61069c565b6040519081526020015b60405180910390f35b34801561025e57600080fd5b5061027261026d366004611784565b6106ad565b005b34801561028057600080fd5b50610289610780565b60405161024991906117a1565b3480156102a257600080fd5b506102b66102b13660046117ef565b610812565b6040519015158152602001610249565b3480156102d257600080fd5b506007546102e6906001600160a01b031681565b6040516001600160a01b039091168152602001610249565b34801561030a57600080fd5b5060035461023f565b34801561031f57600080fd5b506102b661032e36600461181b565b61082c565b34801561033f57600080fd5b5061023f600d5481565b34801561035557600080fd5b5061023f60135481565b34801561036b57600080fd5b5061023f60105481565b34801561038157600080fd5b5060405160128152602001610249565b34801561039d57600080fd5b506102b66103ac3660046117ef565b610850565b3480156103bd57600080fd5b506102726103cc36600461185c565b610872565b3480156103dd57600080fd5b5061023f600c5481565b3480156103f357600080fd5b506015546102b69060ff1681565b34801561040d57600080fd5b506102b661041c366004611784565b600f6020526000908152604090205460ff1681565b34801561043d57600080fd5b5061023f61044c366004611784565b6001600160a01b031660009081526001602052604090205490565b34801561047357600080fd5b5061027261087f565b34801561048857600080fd5b50610272610893565b34801561049d57600080fd5b506000546001600160a01b03166102e6565b3480156104bb57600080fd5b5061028961090d565b3480156104d057600080fd5b506102726104df36600461185c565b61091c565b3480156104f057600080fd5b506102b66104ff3660046117ef565b610979565b34801561051057600080fd5b506102b661051f366004611784565b6109f4565b34801561053057600080fd5b50600b546102e6906001600160a01b031681565b34801561055057600080fd5b506102b661055f3660046117ef565b610a2f565b34801561057057600080fd5b5061023f60125481565b34801561058657600080fd5b5061023f60115481565b34801561059c57600080fd5b506102726105ab366004611875565b610a3d565b3480156105bc57600080fd5b506102e66105cb36600461185c565b610b21565b3480156105dc57600080fd5b506102b66105eb366004611784565b610b93565b3480156105fc57600080fd5b506008546102e6906001600160a01b031681565b34801561061c57600080fd5b5061023f60145481565b34801561063257600080fd5b5061023f6106413660046118b3565b610bce565b34801561065257600080fd5b506102b6610661366004611784565b610bf9565b34801561067257600080fd5b5061023f60065481565b34801561068857600080fd5b50610272610697366004611784565b610c06565b60006106a86009610c98565b905090565b600b546001600160a01b0316336001600160a01b03161461070e5760405162461bcd60e51b81526020600482015260166024820152754f6e6c79204d61726b6574696e672057616c6c65742160501b60448201526064015b60405180910390fd5b6001600160a01b03811661075e5760405162461bcd60e51b81526020600482015260176024820152763078206973206e6f74206163636570746564206865726560481b6044820152606401610705565b600b80546001600160a01b0319166001600160a01b0392909216919091179055565b60606004805461078f906118e1565b80601f01602080910402602001604051908101604052809291908181526020018280546107bb906118e1565b80156108085780601f106107dd57610100808354040283529160200191610808565b820191906000526020600020905b8154815290600101906020018083116107eb57829003601f168201915b5050505050905090565b600033610820818585610ca2565b60019150505b92915050565b60003361083a858285610dc7565b610845858585610e41565b506001949350505050565b6000336108208185856108638383610bce565b61086d9190611931565b610ca2565b61087c3382611035565b50565b610887611166565b61089160006111c0565b565b61089b611166565b60155460ff16156108ee5760405162461bcd60e51b815260206004820152601860248201527f54726164696e6720616c726561647920656e61626c65642e00000000000000006044820152606401610705565b6015805460ff191660011790556013546109089042611931565b601455565b60606005805461078f906118e1565b610924611166565b806000036109745760405162461bcd60e51b815260206004820152601c60248201527f5f6e756d546f6b656e7353656c6c546f416464546f45544820213d30000000006044820152606401610705565b601155565b600033816109878286610bce565b9050838110156109e75760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610705565b6108458286868403610ca2565b60006109fe611166565b6001600160a01b038216610a245760405162461bcd60e51b815260040161070590611944565b610826600983611210565b600033610820818585610e41565b610a45611166565b6001600160a01b038216610a955760405162461bcd60e51b81526020600482015260176024820152763078206973206e6f74206163636570746564206865726560481b6044820152606401610705565b6001600160a01b0382166000908152600f602052604090205481151560ff909116151503610af65760405162461bcd60e51b815260206004820152600e60248201526d14dd185d1d5cc81dd85cc81cd95d60921b6044820152606401610705565b6001600160a01b03919091166000908152600f60205260409020805460ff1916911515919091179055565b60006001610b2f6009610c98565b610b399190611985565b821115610b885760405162461bcd60e51b815260206004820152601c60248201527f444f47524143453a20696e646578206f7574206f6620626f756e6473000000006044820152606401610705565b610826600983611225565b6000610b9d611166565b6001600160a01b038216610bc35760405162461bcd60e51b815260040161070590611944565b610826600983610c7c565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b6000610826600983611231565b610c0e611166565b6001600160a01b038116610c735760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610705565b61087c816111c0565b6000610c91836001600160a01b038416611253565b9392505050565b6000610826825490565b6001600160a01b038316610d045760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610705565b6001600160a01b038216610d655760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610705565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6000610dd38484610bce565b90506000198114610e3b5781811015610e2e5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610705565b610e3b8484848403610ca2565b50505050565b60155460009060ff1680610e6d57506001600160a01b0384166000908152600f602052604090205460ff165b80610e9057506001600160a01b0383166000908152600f602052604090205460ff165b610edc5760405162461bcd60e51b815260206004820152601860248201527f54726164696e67206e6f742079657420656e61626c65642100000000000000006044820152606401610705565b6001600160a01b0384166000908152600f602052604090205460ff16158015610f095750610f0983610bf9565b15610f175750600d54610f4e565b6001600160a01b0383166000908152600f602052604090205460ff16158015610f445750610f4484610bf9565b15610f4e5750600c545b42601454118015610f60575060105482115b8015610f7557506001600160a01b0384163014155b8015610f8a57506001600160a01b0383163014155b8015610f9a5750610f9a84610bf9565b15610fa3575060505b600e5460ff1615610fb957610e3b8484846112a2565b600081118015610fd257506001600160a01b0384163014155b8015610fe757506001600160a01b0383163014155b156110225760006110036064610ffd858561144d565b90611459565b90506110108530836112a2565b61101a8382611465565b92505061102a565b61102a611471565b610e3b8484846112a2565b6001600160a01b0382166110955760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610705565b6001600160a01b038216600090815260016020526040902054818110156111095760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610705565b6001600160a01b03831660008181526001602090815260408083208686039055600380548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9101610dba565b505050565b6000546001600160a01b031633146108915760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610705565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6000610c91836001600160a01b0384166114e3565b6000610c9183836115d6565b6001600160a01b03811660009081526001830160205260408120541515610c91565b600081815260018301602052604081205461129a57508154600181810184556000848152602080822090930184905584548482528286019093526040902091909155610826565b506000610826565b6001600160a01b0383166113065760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610705565b6001600160a01b0382166113685760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610705565b6001600160a01b038316600090815260016020526040902054818110156113e05760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610705565b6001600160a01b0380851660008181526001602052604080822086860390559286168082529083902080548601905591517fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906114409086815260200190565b60405180910390a3610e3b565b6000610c918284611998565b6000610c9182846119af565b6000610c918284611985565b600e805460ff191660011790556012546000906114a3306001600160a01b031660009081526001602052604090205490565b116114bd57306000908152600160205260409020546114c1565b6012545b90506011548111156114d6576114d681611600565b50600e805460ff19169055565b600081815260018301602052604081205480156115cc576000611507600183611985565b855490915060009061151b90600190611985565b905081811461158057600086600001828154811061153b5761153b6119d1565b906000526020600020015490508087600001848154811061155e5761155e6119d1565b6000918252602080832090910192909255918252600188019052604090208390555b8554869080611591576115916119e7565b600190038181906000526020600020016000905590558560010160008681526020019081526020016000206000905560019350505050610826565b6000915050610826565b60008260000182815481106115ed576115ed6119d1565b9060005260206000200154905092915050565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110611635576116356119d1565b6001600160a01b03928316602091820292909201810191909152600754604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa15801561168e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116b29190611a13565b816001815181106116c5576116c56119d1565b6001600160a01b0392831660209182029290920101526007546116eb9130911684610ca2565b600754600b546040516318cbafe560e01b81526001600160a01b03928316926318cbafe59261172892879260009288929116904290600401611a30565b6000604051808303816000875af1158015611747573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526111619190810190611aa1565b6001600160a01b038116811461087c57600080fd5b60006020828403121561179657600080fd5b8135610c918161176f565b600060208083528351808285015260005b818110156117ce578581018301518582016040015282016117b2565b506000604082860101526040601f19601f8301168501019250505092915050565b6000806040838503121561180257600080fd5b823561180d8161176f565b946020939093013593505050565b60008060006060848603121561183057600080fd5b833561183b8161176f565b9250602084013561184b8161176f565b929592945050506040919091013590565b60006020828403121561186e57600080fd5b5035919050565b6000806040838503121561188857600080fd5b82356118938161176f565b9150602083013580151581146118a857600080fd5b809150509250929050565b600080604083850312156118c657600080fd5b82356118d18161176f565b915060208301356118a88161176f565b600181811c908216806118f557607f821691505b60208210810361191557634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b808201808211156108265761082661191b565b60208082526021908201527f444f47524143453a207061697220697320746865207a65726f206164647265736040820152607360f81b606082015260800190565b818103818111156108265761082661191b565b80820281158282048414176108265761082661191b565b6000826119cc57634e487b7160e01b600052601260045260246000fd5b500490565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052604160045260246000fd5b600060208284031215611a2557600080fd5b8151610c918161176f565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015611a805784516001600160a01b031683529383019391830191600101611a5b565b50506001600160a01b03969096166060850152505050608001529392505050565b60006020808385031215611ab457600080fd5b825167ffffffffffffffff80821115611acc57600080fd5b818501915085601f830112611ae057600080fd5b815181811115611af257611af26119fd565b8060051b604051601f19603f83011681018181108582111715611b1757611b176119fd565b604052918252848201925083810185019188831115611b3557600080fd5b938501935b82851015611b5357845184529385019392850192611b3a565b9897505050505050505056fea2646970667358221220fcd3201eb0b18752d854bd76a3a0c82151dc00b4362f8bb0ebec156018436b0364736f6c63430008120033

Deployed Bytecode Sourcemap

50131:5547:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55326:98;;;;;;;;;;;;;:::i;:::-;;;160:25:1;;;148:2;133:18;55326:98:0;;;;;;;;54288:281;;;;;;;;;;-1:-1:-1;54288:281:0;;;;;:::i;:::-;;:::i;:::-;;28102:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;30462:201::-;;;;;;;;;;-1:-1:-1;30462:201:0;;;;;:::i;:::-;;:::i;:::-;;;1622:14:1;;1615:22;1597:41;;1585:2;1570:18;30462:201:0;1457:187:1;50322:41:0;;;;;;;;;;-1:-1:-1;50322:41:0;;;;-1:-1:-1;;;;;50322:41:0;;;;;;-1:-1:-1;;;;;1840:32:1;;;1822:51;;1810:2;1795:18;50322:41:0;1649:230:1;29231:108:0;;;;;;;;;;-1:-1:-1;29319:12:0;;29231:108;;31243:261;;;;;;;;;;-1:-1:-1;31243:261:0;;;;;:::i;:::-;;:::i;50527:26::-;;;;;;;;;;;;;;;;50840:36;;;;;;;;;;;;;;;;50644:53;;;;;;;;;;;;;;;;29073:93;;;;;;;;;;-1:-1:-1;29073:93:0;;29156:2;2487:36:1;;2475:2;2460:18;29073:93:0;2345:184:1;31913:238:0;;;;;;;;;;-1:-1:-1;31913:238:0;;;;;:::i;:::-;;:::i;51696:83::-;;;;;;;;;;-1:-1:-1;51696:83:0;;;;;:::i;:::-;;:::i;50495:25::-;;;;;;;;;;;;;;;;50917:26;;;;;;;;;;-1:-1:-1;50917:26:0;;;;;;;;50588:49;;;;;;;;;;-1:-1:-1;50588:49:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;29402:127;;;;;;;;;;-1:-1:-1;29402:127:0;;;;;:::i;:::-;-1:-1:-1;;;;;29503:18:0;29476:7;29503:18;;;:9;:18;;;;;;;29402:127;40967:103;;;;;;;;;;;;;:::i;51787:206::-;;;;;;;;;;;;;:::i;40326:87::-;;;;;;;;;;-1:-1:-1;40372:7:0;40399:6;-1:-1:-1;;;;;40399:6:0;40326:87;;28321:104;;;;;;;;;;;;;:::i;54579:242::-;;;;;;;;;;-1:-1:-1;54579:242:0;;;;;:::i;:::-;;:::i;32654:436::-;;;;;;;;;;-1:-1:-1;32654:436:0;;;;;:::i;:::-;;:::i;55135:183::-;;;;;;;;;;-1:-1:-1;55135:183:0;;;;;:::i;:::-;;:::i;50455:31::-;;;;;;;;;;-1:-1:-1;50455:31:0;;;;-1:-1:-1;;;;;50455:31:0;;;29735:193;;;;;;;;;;-1:-1:-1;29735:193:0;;;;;:::i;:::-;;:::i;50770:61::-;;;;;;;;;;;;;;;;50704:59;;;;;;;;;;;;;;;;54001:279;;;;;;;;;;-1:-1:-1;54001:279:0;;;;;:::i;:::-;;:::i;55432:184::-;;;;;;;;;;-1:-1:-1;55432:184:0;;;;;:::i;:::-;;:::i;54947:180::-;;;;;;;;;;-1:-1:-1;54947:180:0;;;;;:::i;:::-;;:::i;50370:32::-;;;;;;;;;;-1:-1:-1;50370:32:0;;;;-1:-1:-1;;;;;50370:32:0;;;50883:27;;;;;;;;;;;;;;;;29991:151;;;;;;;;;;-1:-1:-1;29991:151:0;;;;;:::i;:::-;;:::i;54829:110::-;;;;;;;;;;-1:-1:-1;54829:110:0;;;;;:::i;:::-;;:::i;50263:50::-;;;;;;;;;;;;;;;;41225:201;;;;;;;;;;-1:-1:-1;41225:201:0;;;;;:::i;:::-;;:::i;55326:98::-;55374:7;55401:15;:6;:13;:15::i;:::-;55394:22;;55326:98;:::o;54288:281::-;54391:16;;-1:-1:-1;;;;;54391:16:0;25824:10;-1:-1:-1;;;;;54375:32:0;;54367:67;;;;-1:-1:-1;;;54367:67:0;;4177:2:1;54367:67:0;;;4159:21:1;4216:2;4196:18;;;4189:30;-1:-1:-1;;;4235:18:1;;;4228:52;4297:18;;54367:67:0;;;;;;;;;-1:-1:-1;;;;;54453:31:0;;54445:67;;;;-1:-1:-1;;;54445:67:0;;4528:2:1;54445:67:0;;;4510:21:1;4567:2;4547:18;;;4540:30;-1:-1:-1;;;4586:18:1;;;4579:53;4649:18;;54445:67:0;4326:347:1;54445:67:0;54525:16;:36;;-1:-1:-1;;;;;;54525:36:0;-1:-1:-1;;;;;54525:36:0;;;;;;;;;;54288:281::o;28102:100::-;28156:13;28189:5;28182:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28102:100;:::o;30462:201::-;30545:4;25824:10;30601:32;25824:10;30617:7;30626:6;30601:8;:32::i;:::-;30651:4;30644:11;;;30462:201;;;;;:::o;31243:261::-;31340:4;25824:10;31398:38;31414:4;25824:10;31429:6;31398:15;:38::i;:::-;31447:27;31457:4;31463:2;31467:6;31447:9;:27::i;:::-;-1:-1:-1;31492:4:0;;31243:261;-1:-1:-1;;;;31243:261:0:o;31913:238::-;32001:4;25824:10;32057:64;25824:10;32073:7;32110:10;32082:25;25824:10;32073:7;32082:9;:25::i;:::-;:38;;;;:::i;:::-;32057:8;:64::i;51696:83::-;51744:27;25824:10;51764:6;51744:5;:27::i;:::-;51696:83;:::o;40967:103::-;40212:13;:11;:13::i;:::-;41032:30:::1;41059:1;41032:18;:30::i;:::-;40967:103::o:0;51787:206::-;40212:13;:11;:13::i;:::-;51850:14:::1;::::0;::::1;;51849:15;51841:52;;;::::0;-1:-1:-1;;;51841:52:0;;5527:2:1;51841:52:0::1;::::0;::::1;5509:21:1::0;5566:2;5546:18;;;5539:30;5605:26;5585:18;;;5578:54;5649:18;;51841:52:0::1;5325:348:1::0;51841:52:0::1;51904:14;:21:::0;;-1:-1:-1;;51904:21:0::1;51921:4;51904:21;::::0;;51969:16:::1;::::0;51951:34:::1;::::0;:15:::1;:34;:::i;:::-;51936:12;:49:::0;51787:206::o;28321:104::-;28377:13;28410:7;28403:14;;;;;:::i;54579:242::-;40212:13;:11;:13::i;:::-;54690:24:::1;54718:1;54690:29:::0;54682:70:::1;;;::::0;-1:-1:-1;;;54682:70:0;;5880:2:1;54682:70:0::1;::::0;::::1;5862:21:1::0;5919:2;5899:18;;;5892:30;5958;5938:18;;;5931:58;6006:18;;54682:70:0::1;5678:352:1::0;54682:70:0::1;54763:23;:50:::0;54579:242::o;32654:436::-;32747:4;25824:10;32747:4;32830:25;25824:10;32847:7;32830:9;:25::i;:::-;32803:52;;32894:15;32874:16;:35;;32866:85;;;;-1:-1:-1;;;32866:85:0;;6237:2:1;32866:85:0;;;6219:21:1;6276:2;6256:18;;;6249:30;6315:34;6295:18;;;6288:62;-1:-1:-1;;;6366:18:1;;;6359:35;6411:19;;32866:85:0;6035:401:1;32866:85:0;32987:60;32996:5;33003:7;33031:15;33012:16;:34;32987:8;:60::i;55135:183::-;55192:4;40212:13;:11;:13::i;:::-;-1:-1:-1;;;;;55217:18:0;::::1;55209:64;;;;-1:-1:-1::0;;;55209:64:0::1;;;;;;;:::i;:::-;55291:19;:6;55305:4:::0;55291:13:::1;:19::i;29735:193::-:0;29814:4;25824:10;29870:28;25824:10;29887:2;29891:6;29870:9;:28::i;54001:279::-;40212:13;:11;:13::i;:::-;-1:-1:-1;;;;;54098:22:0;::::1;54090:58;;;::::0;-1:-1:-1;;;54090:58:0;;4528:2:1;54090: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;;54090:58:0::1;4326:347:1::0;54090:58:0::1;-1:-1:-1::0;;;;;54167:27:0;::::1;;::::0;;;:17:::1;:27;::::0;;;;;:38;::::1;;:27;::::0;;::::1;:38;;::::0;54159:65:::1;;;::::0;-1:-1:-1;;;54159:65:0;;7045:2:1;54159:65:0::1;::::0;::::1;7027:21:1::0;7084:2;7064:18;;;7057:30;-1:-1:-1;;;7103:18:1;;;7096:44;7157:18;;54159:65:0::1;6843:338:1::0;54159:65:0::1;-1:-1:-1::0;;;;;54235:27:0;;;::::1;;::::0;;;:17:::1;:27;::::0;;;;:37;;-1:-1:-1;;54235:37:0::1;::::0;::::1;;::::0;;;::::1;::::0;;54001:279::o;55432:184::-;55485:7;55540:1;55522:15;:6;:13;:15::i;:::-;:19;;;;:::i;:::-;55513:5;:28;;55505:69;;;;-1:-1:-1;;;55505:69:0;;7521:2:1;55505:69:0;;;7503:21:1;7560:2;7540:18;;;7533:30;7599;7579:18;;;7572:58;7647:18;;55505:69:0;7319:352:1;55505:69:0;55592:16;:6;55602:5;55592:9;:16::i;54947:180::-;55004:4;40212:13;:11;:13::i;:::-;-1:-1:-1;;;;;55029:18:0;::::1;55021:64;;;;-1:-1:-1::0;;;55021:64:0::1;;;;;;;:::i;:::-;55103:16;:6;55114:4:::0;55103:10:::1;:16::i;29991:151::-:0;-1:-1:-1;;;;;30107:18:0;;;30080:7;30107:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;29991:151::o;54829:110::-;54883:4;54907:24;:6;54923:7;54907:15;:24::i;41225:201::-;40212:13;:11;:13::i;:::-;-1:-1:-1;;;;;41314:22:0;::::1;41306:73;;;::::0;-1:-1:-1;;;41306:73:0;;7878:2:1;41306:73:0::1;::::0;::::1;7860:21:1::0;7917:2;7897:18;;;7890:30;7956:34;7936:18;;;7929:62;-1:-1:-1;;;8007:18:1;;;8000:36;8053:19;;41306:73:0::1;7676:402:1::0;41306:73:0::1;41390:28;41409:8;41390:18;:28::i;16700:152::-:0;16770:4;16794:50;16799:3;-1:-1:-1;;;;;16819:23:0;;16794:4;:50::i;:::-;16787:57;16700:152;-1:-1:-1;;;16700:152:0:o;17525:117::-;17588:7;17615:19;17623:3;12825:18;;12742:109;36647:346;-1:-1:-1;;;;;36749:19:0;;36741:68;;;;-1:-1:-1;;;36741:68:0;;8285:2:1;36741:68:0;;;8267:21:1;8324:2;8304:18;;;8297:30;8363:34;8343:18;;;8336:62;-1:-1:-1;;;8414:18:1;;;8407:34;8458:19;;36741:68:0;8083:400:1;36741:68:0;-1:-1:-1;;;;;36828:21:0;;36820:68;;;;-1:-1:-1;;;36820:68:0;;8690:2:1;36820:68:0;;;8672:21:1;8729:2;8709:18;;;8702:30;8768:34;8748:18;;;8741:62;-1:-1:-1;;;8819:18:1;;;8812:32;8861:19;;36820:68:0;8488:398:1;36820:68:0;-1:-1:-1;;;;;36901:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;36953:32;;160:25:1;;;36953:32:0;;133:18:1;36953:32:0;;;;;;;;36647:346;;;:::o;37284:419::-;37385:24;37412:25;37422:5;37429:7;37412:9;:25::i;:::-;37385:52;;-1:-1:-1;;37452:16:0;:37;37448:248;;37534:6;37514:16;:26;;37506:68;;;;-1:-1:-1;;;37506:68:0;;9093:2:1;37506:68:0;;;9075:21:1;9132:2;9112:18;;;9105:30;9171:31;9151:18;;;9144:59;9220:18;;37506:68:0;8891:353:1;37506:68:0;37618:51;37627:5;37634:7;37662:6;37643:16;:25;37618:8;:51::i;:::-;37374:329;37284:419;;;:::o;52001:1302::-;52201:14;;52142:19;;52201:14;;;:43;;-1:-1:-1;;;;;;52219:25:0;;;;;;:17;:25;;;;;;;;52201:43;:75;;;-1:-1:-1;;;;;;52248:28:0;;;;;;:17;:28;;;;;;;;52201:75;52193:112;;;;-1:-1:-1;;;52193:112:0;;9451:2:1;52193:112:0;;;9433:21:1;9490:2;9470:18;;;9463:30;9529:26;9509:18;;;9502:54;9573:18;;52193:112:0;9249:348:1;52193:112:0;-1:-1:-1;;;;;52320:25:0;;;;;;:17;:25;;;;;;;;52319:26;:47;;;;;52349:17;52356:9;52349:6;:17::i;:::-;52316:205;;;-1:-1:-1;52397:7:0;;52316:205;;;-1:-1:-1;;;;;52426:28:0;;;;;;:17;:28;;;;;;;;52425:29;:47;;;;;52458:14;52465:6;52458;:14::i;:::-;52422:99;;;-1:-1:-1;52503:6:0;;52422:99;52590:15;52575:12;;:30;:70;;;;;52631:14;;52622:6;:23;52575:70;:110;;;;-1:-1:-1;;;;;;52662:23:0;;52680:4;52662:23;;52575:110;:153;;;;-1:-1:-1;;;;;;52702:26:0;;52723:4;52702:26;;52575:153;:184;;;;;52745:14;52752:6;52745;:14::i;:::-;52557:257;;;-1:-1:-1;52800:2:0;52557:257;52830:6;;;;52826:102;;;52853:42;52869:6;52877:9;52888:6;52853:15;:42::i;52826:102::-;52958:1;52944:11;:15;:42;;;;-1:-1:-1;;;;;;52963:23:0;;52981:4;52963:23;;52944:42;:72;;;;-1:-1:-1;;;;;;52990:26:0;;53011:4;52990:26;;52944:72;52940:301;;;53033:12;53048:32;53076:3;53048:23;:6;53059:11;53048:10;:23::i;:::-;:27;;:32::i;:::-;53033:47;;53095:44;53111:6;53127:4;53134;53095:15;:44::i;:::-;53163:16;:6;53174:4;53163:10;:16::i;:::-;53154:25;;53018:173;52940:301;;;53212:17;:15;:17::i;:::-;53253:42;53269:6;53277:9;53288:6;53253:15;:42::i;35534:675::-;-1:-1:-1;;;;;35618:21:0;;35610:67;;;;-1:-1:-1;;;35610:67:0;;9804:2:1;35610:67:0;;;9786:21:1;9843:2;9823:18;;;9816:30;9882:34;9862:18;;;9855:62;-1:-1:-1;;;9933:18:1;;;9926:31;9974:19;;35610:67:0;9602:397:1;35610:67:0;-1:-1:-1;;;;;35777:18:0;;35752:22;35777:18;;;:9;:18;;;;;;35814:24;;;;35806:71;;;;-1:-1:-1;;;35806:71:0;;10206:2:1;35806:71:0;;;10188:21:1;10245:2;10225:18;;;10218:30;10284:34;10264:18;;;10257:62;-1:-1:-1;;;10335:18:1;;;10328:32;10377:19;;35806:71:0;10004:398:1;35806:71:0;-1:-1:-1;;;;;35913:18:0;;;;;;:9;:18;;;;;;;;35934:23;;;35913:44;;36052:12;:22;;;;;;;36103:37;160:25:1;;;35913:18:0;;;36103:37;;133:18:1;36103:37:0;14:177:1;36153:48:0;35599:610;35534:675;;:::o;40491:132::-;40372:7;40399:6;-1:-1:-1;;;;;40399:6:0;25824:10;40555:23;40547:68;;;;-1:-1:-1;;;40547:68:0;;10609:2:1;40547:68:0;;;10591:21:1;;;10628:18;;;10621:30;10687:34;10667:18;;;10660:62;10739:18;;40547:68:0;10407:356:1;41586:191:0;41660:16;41679:6;;-1:-1:-1;;;;;41696:17:0;;;-1:-1:-1;;;;;;41696:17:0;;;;;;41729:40;;41679:6;;;;;;;41729:40;;41660:16;41729:40;41649:128;41586:191;:::o;17028:158::-;17101:4;17125:53;17133:3;-1:-1:-1;;;;;17153:23:0;;17125:7;:53::i;17996:158::-;18070:7;18121:22;18125:3;18137:5;18121:3;:22::i;17272:167::-;-1:-1:-1;;;;;17406:23:0;;17352:4;12624:19;;;:12;;;:19;;;;;;:24;;17376:55;12527:129;10431:414;10494:4;12624:19;;;:12;;;:19;;;;;;10511:327;;-1:-1:-1;10554:23:0;;;;;;;;:11;:23;;;;;;;;;;;;;10737:18;;10715:19;;;:12;;;:19;;;;;;:40;;;;10770:11;;10511:327;-1:-1:-1;10821:5:0;10814:12;;33560:806;-1:-1:-1;;;;;33657:18:0;;33649:68;;;;-1:-1:-1;;;33649:68:0;;10970:2:1;33649:68:0;;;10952:21:1;11009:2;10989:18;;;10982:30;11048:34;11028:18;;;11021:62;-1:-1:-1;;;11099:18:1;;;11092:35;11144:19;;33649:68:0;10768:401:1;33649:68:0;-1:-1:-1;;;;;33736:16:0;;33728:64;;;;-1:-1:-1;;;33728:64:0;;11376:2:1;33728:64:0;;;11358:21:1;11415:2;11395:18;;;11388:30;11454:34;11434:18;;;11427:62;-1:-1:-1;;;11505:18:1;;;11498:33;11548:19;;33728:64:0;11174:399:1;33728:64:0;-1:-1:-1;;;;;33878:15:0;;33856:19;33878:15;;;:9;:15;;;;;;33912:21;;;;33904:72;;;;-1:-1:-1;;;33904:72:0;;11780:2:1;33904:72:0;;;11762:21:1;11819:2;11799:18;;;11792:30;11858:34;11838:18;;;11831:62;-1:-1:-1;;;11909:18:1;;;11902:36;11955:19;;33904:72:0;11578:402:1;33904:72:0;-1:-1:-1;;;;;34012:15:0;;;;;;;:9;:15;;;;;;34030:20;;;34012:38;;34230:13;;;;;;;;;;:23;;;;;;34282:26;;;;;;34044:6;160:25:1;;148:2;133:18;;14:177;34282:26:0;;;;;;;;34321:37;35534:675;4793:98;4851:7;4878:5;4882:1;4878;:5;:::i;5192:98::-;5250:7;5277:5;5281:1;5277;:5;:::i;4436:98::-;4494:7;4521:5;4525:1;4521;:5;:::i;53311:301::-;51630:6;:13;;-1:-1:-1;;51630:13:0;51639:4;51630:13;;;53419:22:::1;::::0;51630:6;;53392:24:::1;53410:4;-1:-1:-1::0;;;;;29503:18:0;29476:7;29503:18;;;:9;:18;;;;;;;29402:127;53392:24:::1;:49;:101;;53487:4;29476:7:::0;29503:18;;;:9;:18;;;;;;53392:101:::1;;;53444:22;;53392:101;53370:123;;53524:23;;53510:11;:37;53506:99;;;53564:29;53581:11;53564:16;:29::i;:::-;-1:-1:-1::0;51666:6:0;:14;;-1:-1:-1;;51666:14:0;;;53311:301::o;11021:1420::-;11087:4;11226:19;;;:12;;;:19;;;;;;11262:15;;11258:1176;;11637:21;11661:14;11674:1;11661:10;:14;:::i;:::-;11710:18;;11637:38;;-1:-1:-1;11690:17:0;;11710:22;;11731:1;;11710:22;:::i;:::-;11690:42;;11766:13;11753:9;:26;11749:405;;11800:17;11820:3;:11;;11832:9;11820:22;;;;;;;;:::i;:::-;;;;;;;;;11800:42;;11974:9;11945:3;:11;;11957:13;11945:26;;;;;;;;:::i;:::-;;;;;;;;;;;;:38;;;;12059:23;;;:12;;;:23;;;;;:36;;;11749:405;12235:17;;:3;;:17;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;12330:3;:12;;:19;12343:5;12330:19;;;;;;;;;;;12323:26;;;12373:4;12366:11;;;;;;;11258:1176;12417:5;12410:12;;;;;13205:120;13272:7;13299:3;:11;;13311:5;13299:18;;;;;;;;:::i;:::-;;;;;;;;;13292:25;;13205:120;;;;:::o;53620:373::-;53710:16;;;53724:1;53710:16;;;;;;;;53686:21;;53710:16;;;;;;;;;;-1:-1:-1;53710:16:0;53686:40;;53755:4;53737;53742:1;53737:7;;;;;;;;:::i;:::-;-1:-1:-1;;;;;53737:23:0;;;:7;;;;;;;;;;:23;;;;53781:15;;:22;;;-1:-1:-1;;;53781:22:0;;;;:15;;;;;:20;;:22;;;;;53737:7;;53781:22;;;;;:15;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;53771:4;53776:1;53771:7;;;;;;;;:::i;:::-;-1:-1:-1;;;;;53771:32:0;;;:7;;;;;;;;;:32;53848:15;;53816:62;;53833:4;;53848:15;53866:11;53816:8;:62::i;:::-;53891:15;;53951:16;;53891:94;;-1:-1:-1;;;53891:94:0;;-1:-1:-1;;;;;53891:15:0;;;;:37;;:94;;53929:11;;53891:15;;53945:4;;53951:16;;;53969:15;;53891:94;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;53891: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;2534:180::-;2593:6;2646:2;2634:9;2625:7;2621:23;2617:32;2614:52;;;2662:1;2659;2652:12;2614:52;-1:-1:-1;2685:23:1;;2534:180;-1:-1:-1;2534: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;5063:127::-;5124:10;5119:3;5115:20;5112:1;5105:31;5155:4;5152:1;5145:15;5179:4;5176:1;5169:15;5195:125;5260:9;;;5281:10;;;5278:36;;;5294:18;;:::i;6441:397::-;6643:2;6625:21;;;6682:2;6662:18;;;6655:30;6721:34;6716:2;6701:18;;6694:62;-1:-1:-1;;;6787:2:1;6772:18;;6765:31;6828:3;6813:19;;6441:397::o;7186:128::-;7253:9;;;7274:11;;;7271:37;;;7288:18;;:::i;11985:168::-;12058:9;;;12089;;12106:15;;;12100:22;;12086:37;12076:71;;12127:18;;:::i;12158:217::-;12198:1;12224;12214:132;;12268:10;12263:3;12259:20;12256:1;12249:31;12303:4;12300:1;12293:15;12331:4;12328:1;12321:15;12214:132;-1:-1:-1;12360:9:1;;12158:217::o;12380:127::-;12441:10;12436:3;12432:20;12429:1;12422:31;12472:4;12469:1;12462:15;12496:4;12493:1;12486:15;12512:127;12573:10;12568:3;12564:20;12561:1;12554:31;12604:4;12601:1;12594:15;12628:4;12625:1;12618:15;12644:127;12705:10;12700:3;12696:20;12693:1;12686:31;12736:4;12733:1;12726:15;12760:4;12757:1;12750:15;12776:251;12846:6;12899:2;12887:9;12878:7;12874:23;12870:32;12867:52;;;12915:1;12912;12905:12;12867:52;12947:9;12941:16;12966:31;12991:5;12966:31;:::i;13032:980::-;13294:4;13342:3;13331:9;13327:19;13373:6;13362:9;13355:25;13399:2;13437:6;13432:2;13421:9;13417:18;13410:34;13480:3;13475:2;13464:9;13460:18;13453:31;13504:6;13539;13533:13;13570:6;13562;13555:22;13608:3;13597:9;13593:19;13586:26;;13647:2;13639:6;13635:15;13621:29;;13668:1;13678:195;13692:6;13689:1;13686:13;13678:195;;;13757:13;;-1:-1:-1;;;;;13753:39:1;13741:52;;13848:15;;;;13813:12;;;;13789:1;13707:9;13678:195;;;-1:-1:-1;;;;;;;13929:32:1;;;;13924:2;13909:18;;13902:60;-1:-1:-1;;;13993:3:1;13978:19;13971:35;13890:3;13032:980;-1:-1:-1;;;13032:980:1:o;14017:1105::-;14112:6;14143:2;14186;14174:9;14165:7;14161:23;14157:32;14154:52;;;14202:1;14199;14192:12;14154:52;14235:9;14229:16;14264:18;14305:2;14297:6;14294:14;14291:34;;;14321:1;14318;14311:12;14291:34;14359:6;14348:9;14344:22;14334:32;;14404:7;14397:4;14393:2;14389:13;14385:27;14375:55;;14426:1;14423;14416:12;14375:55;14455:2;14449:9;14477:2;14473;14470:10;14467:36;;;14483:18;;:::i;:::-;14529:2;14526:1;14522:10;14561:2;14555:9;14624:2;14620:7;14615:2;14611;14607:11;14603:25;14595:6;14591:38;14679:6;14667:10;14664:22;14659:2;14647:10;14644:18;14641:46;14638:72;;;14690:18;;:::i;:::-;14726:2;14719:22;14776:18;;;14810:15;;;;-1:-1:-1;14852:11:1;;;14848:20;;;14880:19;;;14877:39;;;14912:1;14909;14902:12;14877:39;14936:11;;;;14956:135;14972:6;14967:3;14964:15;14956:135;;;15038:10;;15026:23;;14989:12;;;;15069;;;;14956:135;;;15110:6;14017:1105;-1:-1:-1;;;;;;;;14017:1105:1:o

Swarm Source

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