ETH Price: $3,408.50 (+2.19%)

Token

VeniVidiVici (VVV)
 

Overview

Max Total Supply

500,000,000,000,000 VVV

Holders

17

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
0.000059096280298913 VVV

Value
$0.00
0x753469f9191469bc9196ebd8f716ba5eeb4dae49
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:
VeniVidiVici

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 7 : vvv.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.17;

import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/math/SafeMath.sol";

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

    address public devTeam;
    address public marketingAddress;
    uint256 public constant MAX_SUPPLY = 500000000000000 * 10**18;
    uint256 private constant DEV_FEE_PERCENTAGE = 2;
    uint256 private constant MARKETING_FEE_PERCENTAGE = 1;
    uint256 private totalDevFeeEarned;
    uint256 private totalMarketingFeeEarned;
    uint256 private totalDevFeeClaimed;
    uint256 private totalMarketingFeeClaimed;
    bool public isOwnershipRenounced;

    event Burn(address indexed burner, uint256 value);
    event OwnershipRenounced(address indexed previousOwner);
    event DevTeamAddressUpdated(address indexed previousDevTeam, address indexed newDevTeam);
    event MarketingAddressUpdated(address indexed previousMarketingAddress, address indexed newMarketingAddress);

    constructor(address _devTeam, address _marketingAddress) ERC20("VeniVidiVici", "VVV") {
        devTeam = _devTeam;
        marketingAddress = _marketingAddress;
        _mint(address(this), MAX_SUPPLY);
        _transfer(address(this), msg.sender, MAX_SUPPLY);
    }

    function transfer(address recipient, uint256 amount) public override returns (bool) {
        uint256 devFeeAmount = amount.mul(DEV_FEE_PERCENTAGE).div(100);
        uint256 marketingFeeAmount = amount.mul(MARKETING_FEE_PERCENTAGE).div(100);
        uint256 transferAmount = amount.sub(devFeeAmount).sub(marketingFeeAmount);

        _transfer(_msgSender(), recipient, transferAmount);
        if (devFeeAmount > 0) {
            totalDevFeeEarned = totalDevFeeEarned.add(devFeeAmount);
            _transfer(_msgSender(), devTeam, devFeeAmount);
        }
        if (marketingFeeAmount > 0) {
            totalMarketingFeeEarned = totalMarketingFeeEarned.add(marketingFeeAmount);
            _transfer(_msgSender(), marketingAddress, marketingFeeAmount);
        }

        return true;
    }

    function burn(uint256 amount) public {
        _burn(msg.sender, amount);
        emit Burn(msg.sender, amount);
    }

    function renounceOwnership() public override onlyOwner {
        isOwnershipRenounced = true;
        emit OwnershipRenounced(owner());
        super.renounceOwnership();
    }

    function updateDevTeamAddress(address newDevTeam) public onlyOwner {
        require(newDevTeam != address(0), "Invalid address");
        emit DevTeamAddressUpdated(devTeam, newDevTeam);
        devTeam = newDevTeam;
    }

    function updateMarketingAddress(address newMarketingAddress) public onlyOwner {
        require(newMarketingAddress != address(0), "Invalid address");
        emit MarketingAddressUpdated(marketingAddress, newMarketingAddress);
        marketingAddress = newMarketingAddress;
    }

    function getTotalDevFeeEarned() public view returns (uint256) {
        require(msg.sender == devTeam, "Unauthorized");
        return totalDevFeeEarned;
    }

    function getTotalMarketingFeeEarned() public view returns (uint256) {
        require(msg.sender == marketingAddress, "Unauthorized");
        return totalMarketingFeeEarned;
    }

    function getTotalDevFeeClaimed() public view returns (uint256) {
        require(msg.sender == devTeam, "Unauthorized");
        return totalDevFeeClaimed;
    }

    function getTotalMarketingFeeClaimed() public view returns (uint256) {
        require(msg.sender == marketingAddress, "Unauthorized");
        return totalMarketingFeeClaimed;
    }

    function claimDevFee(uint256 amount) public {
        require(msg.sender == devTeam, "Unauthorized");
        require(amount <= totalDevFeeEarned.sub(totalDevFeeClaimed), "Insufficient available dev fee");
        totalDevFeeClaimed = totalDevFeeClaimed.add(amount);
        _transfer(devTeam, address(0), amount);
    }

    function claimMarketingFee(uint256 amount) public {
        require(msg.sender == marketingAddress, "Unauthorized");
        require(amount <= totalMarketingFeeEarned.sub(totalMarketingFeeClaimed), "Insufficient available marketing fee");
        totalMarketingFeeClaimed = totalMarketingFeeClaimed.add(amount);
        _transfer(marketingAddress, address(0), amount);
    }
}

File 2 of 7 : SafeMath.sol
// SPDX-License-Identifier: MIT
// 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 3 of 7 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol)

pragma solidity ^0.8.0;

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

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

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

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

    /**
     * @dev 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 4 of 7 : ERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;

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

/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.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 5 of 7 : Context.sol
// SPDX-License-Identifier: MIT
// 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 6 of 7 : IERC20Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;

import "../IERC20.sol";

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

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

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

File 7 of 7 : IERC20.sol
// SPDX-License-Identifier: MIT
// 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);
}

Settings
{
  "optimizer": {
    "enabled": false,
    "runs": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_devTeam","type":"address"},{"internalType":"address","name":"_marketingAddress","type":"address"}],"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":"burner","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Burn","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousDevTeam","type":"address"},{"indexed":true,"internalType":"address","name":"newDevTeam","type":"address"}],"name":"DevTeamAddressUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousMarketingAddress","type":"address"},{"indexed":true,"internalType":"address","name":"newMarketingAddress","type":"address"}],"name":"MarketingAddressUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"}],"name":"OwnershipRenounced","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":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"claimDevFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"claimMarketingFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"devTeam","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getTotalDevFeeClaimed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getTotalDevFeeEarned","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getTotalMarketingFeeClaimed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getTotalMarketingFeeEarned","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"isOwnershipRenounced","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":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","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":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"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":[{"internalType":"address","name":"newDevTeam","type":"address"}],"name":"updateDevTeamAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newMarketingAddress","type":"address"}],"name":"updateMarketingAddress","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b506040516200357e3803806200357e8339818101604052810190620000379190620006f4565b6040518060400160405280600c81526020017f56656e69566964695669636900000000000000000000000000000000000000008152506040518060400160405280600381526020017f56565600000000000000000000000000000000000000000000000000000000008152508160039081620000b49190620009b5565b508060049081620000c69190620009b5565b505050620000e9620000dd620001b460201b60201c565b620001bc60201b60201c565b81600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506200018b306d18a6e32246c99c60ad85000000006200028260201b60201c565b620001ac30336d18a6e32246c99c60ad8500000000620003ef60201b60201c565b505062000d7f565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620002f4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002eb9062000afd565b60405180910390fd5b62000308600083836200068060201b60201c565b80600260008282546200031c919062000b4e565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620003cf919062000b9a565b60405180910390a3620003eb600083836200068560201b60201c565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160362000461576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004589062000c2d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620004d3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004ca9062000cc5565b60405180910390fd5b620004e68383836200068060201b60201c565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156200056f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620005669062000d5d565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516200065f919062000b9a565b60405180910390a36200067a8484846200068560201b60201c565b50505050565b505050565b505050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000620006bc826200068f565b9050919050565b620006ce81620006af565b8114620006da57600080fd5b50565b600081519050620006ee81620006c3565b92915050565b600080604083850312156200070e576200070d6200068a565b5b60006200071e85828601620006dd565b92505060206200073185828601620006dd565b9150509250929050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620007bd57607f821691505b602082108103620007d357620007d262000775565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026200083d7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620007fe565b620008498683620007fe565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b600062000896620008906200088a8462000861565b6200086b565b62000861565b9050919050565b6000819050919050565b620008b28362000875565b620008ca620008c1826200089d565b8484546200080b565b825550505050565b600090565b620008e1620008d2565b620008ee818484620008a7565b505050565b5b8181101562000916576200090a600082620008d7565b600181019050620008f4565b5050565b601f82111562000965576200092f81620007d9565b6200093a84620007ee565b810160208510156200094a578190505b620009626200095985620007ee565b830182620008f3565b50505b505050565b600082821c905092915050565b60006200098a600019846008026200096a565b1980831691505092915050565b6000620009a5838362000977565b9150826002028217905092915050565b620009c0826200073b565b67ffffffffffffffff811115620009dc57620009db62000746565b5b620009e88254620007a4565b620009f58282856200091a565b600060209050601f83116001811462000a2d576000841562000a18578287015190505b62000a24858262000997565b86555062000a94565b601f19841662000a3d86620007d9565b60005b8281101562000a675784890151825560018201915060208501945060208101905062000a40565b8683101562000a87578489015162000a83601f89168262000977565b8355505b6001600288020188555050505b505050505050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000ae5601f8362000a9c565b915062000af28262000aad565b602082019050919050565b6000602082019050818103600083015262000b188162000ad6565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000b5b8262000861565b915062000b688362000861565b925082820190508082111562000b835762000b8262000b1f565b5b92915050565b62000b948162000861565b82525050565b600060208201905062000bb1600083018462000b89565b92915050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600062000c1560258362000a9c565b915062000c228262000bb7565b604082019050919050565b6000602082019050818103600083015262000c488162000c06565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600062000cad60238362000a9c565b915062000cba8262000c4f565b604082019050919050565b6000602082019050818103600083015262000ce08162000c9e565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b600062000d4560268362000a9c565b915062000d528262000ce7565b604082019050919050565b6000602082019050818103600083015262000d788162000d36565b9050919050565b6127ef8062000d8f6000396000f3fe608060405234801561001057600080fd5b50600436106101a95760003560e01c80638b966342116100f9578063c4ed6a2811610097578063d8e32b3e11610071578063d8e32b3e146104b0578063dd62ed3e146104ce578063e30cf812146104fe578063f2fde38b1461051a576101a9565b8063c4ed6a2814610458578063d3dcc17514610476578063d4b03ba714610494576101a9565b80639f023eb6116100d35780639f023eb6146103bc578063a457c2d7146103da578063a5ece9411461040a578063a9059cbb14610428576101a9565b80638b966342146103625780638da5cb5b1461038057806395d89b411461039e576101a9565b806332cb6b0c1161016657806342966c681161014057806342966c68146102ee5780635a8a92fb1461030a57806370a0823114610328578063715018a614610358576101a9565b806332cb6b0c1461028457806339509351146102a257806340805bb9146102d2576101a9565b806306fdde03146101ae578063095ea7b3146101cc57806318160ddd146101fc5780632369bf831461021a57806323b872dd14610236578063313ce56714610266575b600080fd5b6101b6610536565b6040516101c39190611ba7565b60405180910390f35b6101e660048036038101906101e19190611c62565b6105c8565b6040516101f39190611cbd565b60405180910390f35b6102046105eb565b6040516102119190611ce7565b60405180910390f35b610234600480360381019061022f9190611d02565b6105f5565b005b610250600480360381019061024b9190611d2f565b61072c565b60405161025d9190611cbd565b60405180910390f35b61026e61075b565b60405161027b9190611d9e565b60405180910390f35b61028c610764565b6040516102999190611ce7565b60405180910390f35b6102bc60048036038101906102b79190611c62565b610776565b6040516102c99190611cbd565b60405180910390f35b6102ec60048036038101906102e79190611db9565b6107ad565b005b61030860048036038101906103039190611db9565b6108e2565b005b61031261093d565b60405161031f9190611ce7565b60405180910390f35b610342600480360381019061033d9190611d02565b6109d7565b60405161034f9190611ce7565b60405180910390f35b610360610a1f565b005b61036a610a96565b6040516103779190611ce7565b60405180910390f35b610388610b30565b6040516103959190611df5565b60405180910390f35b6103a6610b5a565b6040516103b39190611ba7565b60405180910390f35b6103c4610bec565b6040516103d19190611cbd565b60405180910390f35b6103f460048036038101906103ef9190611c62565b610bff565b6040516104019190611cbd565b60405180910390f35b610412610c76565b60405161041f9190611df5565b60405180910390f35b610442600480360381019061043d9190611c62565b610c9c565b60405161044f9190611cbd565b60405180910390f35b610460610ded565b60405161046d9190611ce7565b60405180910390f35b61047e610e87565b60405161048b9190611df5565b60405180910390f35b6104ae60048036038101906104a99190611db9565b610ead565b005b6104b8610fe2565b6040516104c59190611ce7565b60405180910390f35b6104e860048036038101906104e39190611e10565b61107c565b6040516104f59190611ce7565b60405180910390f35b61051860048036038101906105139190611d02565b611103565b005b610534600480360381019061052f9190611d02565b61123a565b005b60606003805461054590611e7f565b80601f016020809104026020016040519081016040528092919081815260200182805461057190611e7f565b80156105be5780601f10610593576101008083540402835291602001916105be565b820191906000526020600020905b8154815290600101906020018083116105a157829003601f168201915b5050505050905090565b6000806105d36112bd565b90506105e08185856112c5565b600191505092915050565b6000600254905090565b6105fd61148e565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361066c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161066390611efc565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167fa8efc72ed34f90017df79620d1972d42b8e3b17eb0077fc5fc46cbf1a19ed9a960405160405180910390a380600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000806107376112bd565b905061074485828561150c565b61074f858585611598565b60019150509392505050565b60006012905090565b6d18a6e32246c99c60ad850000000081565b6000806107816112bd565b90506107a2818585610793858961107c565b61079d9190611f4b565b6112c5565b600191505092915050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461083d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161083490611fcb565b60405180910390fd5b610854600b5460095461180e90919063ffffffff16565b811115610896576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161088d9061205d565b60405180910390fd5b6108ab81600b5461182490919063ffffffff16565b600b819055506108df600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600083611598565b50565b6108ec338261183a565b3373ffffffffffffffffffffffffffffffffffffffff167fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca5826040516109329190611ce7565b60405180910390a250565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146109cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109c690611fcb565b60405180910390fd5b600a54905090565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610a2761148e565b6001600c60006101000a81548160ff021916908315150217905550610a4a610b30565b73ffffffffffffffffffffffffffffffffffffffff167ff8df31144d9c2f0f6b59d69b8b98abd5459d07f2742c4df920b25aae33c6482060405160405180910390a2610a94611a07565b565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610b28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b1f90611fcb565b60405180910390fd5b600854905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054610b6990611e7f565b80601f0160208091040260200160405190810160405280929190818152602001828054610b9590611e7f565b8015610be25780601f10610bb757610100808354040283529160200191610be2565b820191906000526020600020905b815481529060010190602001808311610bc557829003601f168201915b5050505050905090565b600c60009054906101000a900460ff1681565b600080610c0a6112bd565b90506000610c18828661107c565b905083811015610c5d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c54906120ef565b60405180910390fd5b610c6a82868684036112c5565b60019250505092915050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600080610cc66064610cb8600286611a1b90919063ffffffff16565b611a3190919063ffffffff16565b90506000610cf16064610ce3600187611a1b90919063ffffffff16565b611a3190919063ffffffff16565b90506000610d1a82610d0c858861180e90919063ffffffff16565b61180e90919063ffffffff16565b9050610d2e610d276112bd565b8783611598565b6000831115610d8757610d4c8360085461182490919063ffffffff16565b600881905550610d86610d5d6112bd565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1685611598565b5b6000821115610de057610da58260095461182490919063ffffffff16565b600981905550610ddf610db66112bd565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1684611598565b5b6001935050505092915050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610e7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7690611fcb565b60405180910390fd5b600b54905090565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610f3d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3490611fcb565b60405180910390fd5b610f54600a5460085461180e90919063ffffffff16565b811115610f96576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8d9061215b565b60405180910390fd5b610fab81600a5461182490919063ffffffff16565b600a81905550610fdf600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600083611598565b50565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611074576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106b90611fcb565b60405180910390fd5b600954905090565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b61110b61148e565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361117a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117190611efc565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f3f62cf2bc385408b648da22e8b4ec7ebf2a32a9d49bec265a75e579e4bec032c60405160405180910390a380600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b61124261148e565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036112b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112a8906121ed565b60405180910390fd5b6112ba81611a47565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611334576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132b9061227f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036113a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139a90612311565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516114819190611ce7565b60405180910390a3505050565b6114966112bd565b73ffffffffffffffffffffffffffffffffffffffff166114b4610b30565b73ffffffffffffffffffffffffffffffffffffffff161461150a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115019061237d565b60405180910390fd5b565b6000611518848461107c565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146115925781811015611584576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157b906123e9565b60405180910390fd5b61159184848484036112c5565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611607576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115fe9061247b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611676576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166d9061250d565b60405180910390fd5b611681838383611b0d565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611707576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116fe9061259f565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516117f59190611ce7565b60405180910390a3611808848484611b12565b50505050565b6000818361181c91906125bf565b905092915050565b600081836118329190611f4b565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036118a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118a090612665565b60405180910390fd5b6118b582600083611b0d565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561193b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611932906126f7565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516119ee9190611ce7565b60405180910390a3611a0283600084611b12565b505050565b611a0f61148e565b611a196000611a47565b565b60008183611a299190612717565b905092915050565b60008183611a3f9190612788565b905092915050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611b51578082015181840152602081019050611b36565b60008484015250505050565b6000601f19601f8301169050919050565b6000611b7982611b17565b611b838185611b22565b9350611b93818560208601611b33565b611b9c81611b5d565b840191505092915050565b60006020820190508181036000830152611bc18184611b6e565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611bf982611bce565b9050919050565b611c0981611bee565b8114611c1457600080fd5b50565b600081359050611c2681611c00565b92915050565b6000819050919050565b611c3f81611c2c565b8114611c4a57600080fd5b50565b600081359050611c5c81611c36565b92915050565b60008060408385031215611c7957611c78611bc9565b5b6000611c8785828601611c17565b9250506020611c9885828601611c4d565b9150509250929050565b60008115159050919050565b611cb781611ca2565b82525050565b6000602082019050611cd26000830184611cae565b92915050565b611ce181611c2c565b82525050565b6000602082019050611cfc6000830184611cd8565b92915050565b600060208284031215611d1857611d17611bc9565b5b6000611d2684828501611c17565b91505092915050565b600080600060608486031215611d4857611d47611bc9565b5b6000611d5686828701611c17565b9350506020611d6786828701611c17565b9250506040611d7886828701611c4d565b9150509250925092565b600060ff82169050919050565b611d9881611d82565b82525050565b6000602082019050611db36000830184611d8f565b92915050565b600060208284031215611dcf57611dce611bc9565b5b6000611ddd84828501611c4d565b91505092915050565b611def81611bee565b82525050565b6000602082019050611e0a6000830184611de6565b92915050565b60008060408385031215611e2757611e26611bc9565b5b6000611e3585828601611c17565b9250506020611e4685828601611c17565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680611e9757607f821691505b602082108103611eaa57611ea9611e50565b5b50919050565b7f496e76616c696420616464726573730000000000000000000000000000000000600082015250565b6000611ee6600f83611b22565b9150611ef182611eb0565b602082019050919050565b60006020820190508181036000830152611f1581611ed9565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000611f5682611c2c565b9150611f6183611c2c565b9250828201905080821115611f7957611f78611f1c565b5b92915050565b7f556e617574686f72697a65640000000000000000000000000000000000000000600082015250565b6000611fb5600c83611b22565b9150611fc082611f7f565b602082019050919050565b60006020820190508181036000830152611fe481611fa8565b9050919050565b7f496e73756666696369656e7420617661696c61626c65206d61726b6574696e6760008201527f2066656500000000000000000000000000000000000000000000000000000000602082015250565b6000612047602483611b22565b915061205282611feb565b604082019050919050565b600060208201905081810360008301526120768161203a565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006120d9602583611b22565b91506120e48261207d565b604082019050919050565b60006020820190508181036000830152612108816120cc565b9050919050565b7f496e73756666696369656e7420617661696c61626c6520646576206665650000600082015250565b6000612145601e83611b22565b91506121508261210f565b602082019050919050565b6000602082019050818103600083015261217481612138565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006121d7602683611b22565b91506121e28261217b565b604082019050919050565b60006020820190508181036000830152612206816121ca565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000612269602483611b22565b91506122748261220d565b604082019050919050565b600060208201905081810360008301526122988161225c565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006122fb602283611b22565b91506123068261229f565b604082019050919050565b6000602082019050818103600083015261232a816122ee565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612367602083611b22565b915061237282612331565b602082019050919050565b600060208201905081810360008301526123968161235a565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b60006123d3601d83611b22565b91506123de8261239d565b602082019050919050565b60006020820190508181036000830152612402816123c6565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000612465602583611b22565b915061247082612409565b604082019050919050565b6000602082019050818103600083015261249481612458565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006124f7602383611b22565b91506125028261249b565b604082019050919050565b60006020820190508181036000830152612526816124ea565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000612589602683611b22565b91506125948261252d565b604082019050919050565b600060208201905081810360008301526125b88161257c565b9050919050565b60006125ca82611c2c565b91506125d583611c2c565b92508282039050818111156125ed576125ec611f1c565b5b92915050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b600061264f602183611b22565b915061265a826125f3565b604082019050919050565b6000602082019050818103600083015261267e81612642565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b60006126e1602283611b22565b91506126ec82612685565b604082019050919050565b60006020820190508181036000830152612710816126d4565b9050919050565b600061272282611c2c565b915061272d83611c2c565b925082820261273b81611c2c565b9150828204841483151761275257612751611f1c565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061279382611c2c565b915061279e83611c2c565b9250826127ae576127ad612759565b5b82820490509291505056fea26469706673582212208854385f721146bb816dee9ce07acacb4b8d053b3e43c5c432bed7fa0220895c64736f6c63430008110033000000000000000000000000ffd1f31643b71c8154c5710cc468fe906b6b3d5d000000000000000000000000fdaf70c4da00ee78a4bbea08d22fb709798e8707

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101a95760003560e01c80638b966342116100f9578063c4ed6a2811610097578063d8e32b3e11610071578063d8e32b3e146104b0578063dd62ed3e146104ce578063e30cf812146104fe578063f2fde38b1461051a576101a9565b8063c4ed6a2814610458578063d3dcc17514610476578063d4b03ba714610494576101a9565b80639f023eb6116100d35780639f023eb6146103bc578063a457c2d7146103da578063a5ece9411461040a578063a9059cbb14610428576101a9565b80638b966342146103625780638da5cb5b1461038057806395d89b411461039e576101a9565b806332cb6b0c1161016657806342966c681161014057806342966c68146102ee5780635a8a92fb1461030a57806370a0823114610328578063715018a614610358576101a9565b806332cb6b0c1461028457806339509351146102a257806340805bb9146102d2576101a9565b806306fdde03146101ae578063095ea7b3146101cc57806318160ddd146101fc5780632369bf831461021a57806323b872dd14610236578063313ce56714610266575b600080fd5b6101b6610536565b6040516101c39190611ba7565b60405180910390f35b6101e660048036038101906101e19190611c62565b6105c8565b6040516101f39190611cbd565b60405180910390f35b6102046105eb565b6040516102119190611ce7565b60405180910390f35b610234600480360381019061022f9190611d02565b6105f5565b005b610250600480360381019061024b9190611d2f565b61072c565b60405161025d9190611cbd565b60405180910390f35b61026e61075b565b60405161027b9190611d9e565b60405180910390f35b61028c610764565b6040516102999190611ce7565b60405180910390f35b6102bc60048036038101906102b79190611c62565b610776565b6040516102c99190611cbd565b60405180910390f35b6102ec60048036038101906102e79190611db9565b6107ad565b005b61030860048036038101906103039190611db9565b6108e2565b005b61031261093d565b60405161031f9190611ce7565b60405180910390f35b610342600480360381019061033d9190611d02565b6109d7565b60405161034f9190611ce7565b60405180910390f35b610360610a1f565b005b61036a610a96565b6040516103779190611ce7565b60405180910390f35b610388610b30565b6040516103959190611df5565b60405180910390f35b6103a6610b5a565b6040516103b39190611ba7565b60405180910390f35b6103c4610bec565b6040516103d19190611cbd565b60405180910390f35b6103f460048036038101906103ef9190611c62565b610bff565b6040516104019190611cbd565b60405180910390f35b610412610c76565b60405161041f9190611df5565b60405180910390f35b610442600480360381019061043d9190611c62565b610c9c565b60405161044f9190611cbd565b60405180910390f35b610460610ded565b60405161046d9190611ce7565b60405180910390f35b61047e610e87565b60405161048b9190611df5565b60405180910390f35b6104ae60048036038101906104a99190611db9565b610ead565b005b6104b8610fe2565b6040516104c59190611ce7565b60405180910390f35b6104e860048036038101906104e39190611e10565b61107c565b6040516104f59190611ce7565b60405180910390f35b61051860048036038101906105139190611d02565b611103565b005b610534600480360381019061052f9190611d02565b61123a565b005b60606003805461054590611e7f565b80601f016020809104026020016040519081016040528092919081815260200182805461057190611e7f565b80156105be5780601f10610593576101008083540402835291602001916105be565b820191906000526020600020905b8154815290600101906020018083116105a157829003601f168201915b5050505050905090565b6000806105d36112bd565b90506105e08185856112c5565b600191505092915050565b6000600254905090565b6105fd61148e565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361066c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161066390611efc565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167fa8efc72ed34f90017df79620d1972d42b8e3b17eb0077fc5fc46cbf1a19ed9a960405160405180910390a380600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000806107376112bd565b905061074485828561150c565b61074f858585611598565b60019150509392505050565b60006012905090565b6d18a6e32246c99c60ad850000000081565b6000806107816112bd565b90506107a2818585610793858961107c565b61079d9190611f4b565b6112c5565b600191505092915050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461083d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161083490611fcb565b60405180910390fd5b610854600b5460095461180e90919063ffffffff16565b811115610896576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161088d9061205d565b60405180910390fd5b6108ab81600b5461182490919063ffffffff16565b600b819055506108df600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600083611598565b50565b6108ec338261183a565b3373ffffffffffffffffffffffffffffffffffffffff167fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca5826040516109329190611ce7565b60405180910390a250565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146109cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109c690611fcb565b60405180910390fd5b600a54905090565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610a2761148e565b6001600c60006101000a81548160ff021916908315150217905550610a4a610b30565b73ffffffffffffffffffffffffffffffffffffffff167ff8df31144d9c2f0f6b59d69b8b98abd5459d07f2742c4df920b25aae33c6482060405160405180910390a2610a94611a07565b565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610b28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b1f90611fcb565b60405180910390fd5b600854905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054610b6990611e7f565b80601f0160208091040260200160405190810160405280929190818152602001828054610b9590611e7f565b8015610be25780601f10610bb757610100808354040283529160200191610be2565b820191906000526020600020905b815481529060010190602001808311610bc557829003601f168201915b5050505050905090565b600c60009054906101000a900460ff1681565b600080610c0a6112bd565b90506000610c18828661107c565b905083811015610c5d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c54906120ef565b60405180910390fd5b610c6a82868684036112c5565b60019250505092915050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600080610cc66064610cb8600286611a1b90919063ffffffff16565b611a3190919063ffffffff16565b90506000610cf16064610ce3600187611a1b90919063ffffffff16565b611a3190919063ffffffff16565b90506000610d1a82610d0c858861180e90919063ffffffff16565b61180e90919063ffffffff16565b9050610d2e610d276112bd565b8783611598565b6000831115610d8757610d4c8360085461182490919063ffffffff16565b600881905550610d86610d5d6112bd565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1685611598565b5b6000821115610de057610da58260095461182490919063ffffffff16565b600981905550610ddf610db66112bd565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1684611598565b5b6001935050505092915050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610e7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7690611fcb565b60405180910390fd5b600b54905090565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610f3d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3490611fcb565b60405180910390fd5b610f54600a5460085461180e90919063ffffffff16565b811115610f96576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8d9061215b565b60405180910390fd5b610fab81600a5461182490919063ffffffff16565b600a81905550610fdf600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600083611598565b50565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611074576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106b90611fcb565b60405180910390fd5b600954905090565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b61110b61148e565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361117a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117190611efc565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f3f62cf2bc385408b648da22e8b4ec7ebf2a32a9d49bec265a75e579e4bec032c60405160405180910390a380600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b61124261148e565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036112b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112a8906121ed565b60405180910390fd5b6112ba81611a47565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611334576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132b9061227f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036113a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139a90612311565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516114819190611ce7565b60405180910390a3505050565b6114966112bd565b73ffffffffffffffffffffffffffffffffffffffff166114b4610b30565b73ffffffffffffffffffffffffffffffffffffffff161461150a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115019061237d565b60405180910390fd5b565b6000611518848461107c565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146115925781811015611584576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157b906123e9565b60405180910390fd5b61159184848484036112c5565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611607576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115fe9061247b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611676576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166d9061250d565b60405180910390fd5b611681838383611b0d565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611707576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116fe9061259f565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516117f59190611ce7565b60405180910390a3611808848484611b12565b50505050565b6000818361181c91906125bf565b905092915050565b600081836118329190611f4b565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036118a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118a090612665565b60405180910390fd5b6118b582600083611b0d565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561193b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611932906126f7565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516119ee9190611ce7565b60405180910390a3611a0283600084611b12565b505050565b611a0f61148e565b611a196000611a47565b565b60008183611a299190612717565b905092915050565b60008183611a3f9190612788565b905092915050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611b51578082015181840152602081019050611b36565b60008484015250505050565b6000601f19601f8301169050919050565b6000611b7982611b17565b611b838185611b22565b9350611b93818560208601611b33565b611b9c81611b5d565b840191505092915050565b60006020820190508181036000830152611bc18184611b6e565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611bf982611bce565b9050919050565b611c0981611bee565b8114611c1457600080fd5b50565b600081359050611c2681611c00565b92915050565b6000819050919050565b611c3f81611c2c565b8114611c4a57600080fd5b50565b600081359050611c5c81611c36565b92915050565b60008060408385031215611c7957611c78611bc9565b5b6000611c8785828601611c17565b9250506020611c9885828601611c4d565b9150509250929050565b60008115159050919050565b611cb781611ca2565b82525050565b6000602082019050611cd26000830184611cae565b92915050565b611ce181611c2c565b82525050565b6000602082019050611cfc6000830184611cd8565b92915050565b600060208284031215611d1857611d17611bc9565b5b6000611d2684828501611c17565b91505092915050565b600080600060608486031215611d4857611d47611bc9565b5b6000611d5686828701611c17565b9350506020611d6786828701611c17565b9250506040611d7886828701611c4d565b9150509250925092565b600060ff82169050919050565b611d9881611d82565b82525050565b6000602082019050611db36000830184611d8f565b92915050565b600060208284031215611dcf57611dce611bc9565b5b6000611ddd84828501611c4d565b91505092915050565b611def81611bee565b82525050565b6000602082019050611e0a6000830184611de6565b92915050565b60008060408385031215611e2757611e26611bc9565b5b6000611e3585828601611c17565b9250506020611e4685828601611c17565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680611e9757607f821691505b602082108103611eaa57611ea9611e50565b5b50919050565b7f496e76616c696420616464726573730000000000000000000000000000000000600082015250565b6000611ee6600f83611b22565b9150611ef182611eb0565b602082019050919050565b60006020820190508181036000830152611f1581611ed9565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000611f5682611c2c565b9150611f6183611c2c565b9250828201905080821115611f7957611f78611f1c565b5b92915050565b7f556e617574686f72697a65640000000000000000000000000000000000000000600082015250565b6000611fb5600c83611b22565b9150611fc082611f7f565b602082019050919050565b60006020820190508181036000830152611fe481611fa8565b9050919050565b7f496e73756666696369656e7420617661696c61626c65206d61726b6574696e6760008201527f2066656500000000000000000000000000000000000000000000000000000000602082015250565b6000612047602483611b22565b915061205282611feb565b604082019050919050565b600060208201905081810360008301526120768161203a565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006120d9602583611b22565b91506120e48261207d565b604082019050919050565b60006020820190508181036000830152612108816120cc565b9050919050565b7f496e73756666696369656e7420617661696c61626c6520646576206665650000600082015250565b6000612145601e83611b22565b91506121508261210f565b602082019050919050565b6000602082019050818103600083015261217481612138565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006121d7602683611b22565b91506121e28261217b565b604082019050919050565b60006020820190508181036000830152612206816121ca565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000612269602483611b22565b91506122748261220d565b604082019050919050565b600060208201905081810360008301526122988161225c565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006122fb602283611b22565b91506123068261229f565b604082019050919050565b6000602082019050818103600083015261232a816122ee565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612367602083611b22565b915061237282612331565b602082019050919050565b600060208201905081810360008301526123968161235a565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b60006123d3601d83611b22565b91506123de8261239d565b602082019050919050565b60006020820190508181036000830152612402816123c6565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000612465602583611b22565b915061247082612409565b604082019050919050565b6000602082019050818103600083015261249481612458565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006124f7602383611b22565b91506125028261249b565b604082019050919050565b60006020820190508181036000830152612526816124ea565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000612589602683611b22565b91506125948261252d565b604082019050919050565b600060208201905081810360008301526125b88161257c565b9050919050565b60006125ca82611c2c565b91506125d583611c2c565b92508282039050818111156125ed576125ec611f1c565b5b92915050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b600061264f602183611b22565b915061265a826125f3565b604082019050919050565b6000602082019050818103600083015261267e81612642565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b60006126e1602283611b22565b91506126ec82612685565b604082019050919050565b60006020820190508181036000830152612710816126d4565b9050919050565b600061272282611c2c565b915061272d83611c2c565b925082820261273b81611c2c565b9150828204841483151761275257612751611f1c565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061279382611c2c565b915061279e83611c2c565b9250826127ae576127ad612759565b5b82820490509291505056fea26469706673582212208854385f721146bb816dee9ce07acacb4b8d053b3e43c5c432bed7fa0220895c64736f6c63430008110033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

000000000000000000000000ffd1f31643b71c8154c5710cc468fe906b6b3d5d000000000000000000000000fdaf70c4da00ee78a4bbea08d22fb709798e8707

-----Decoded View---------------
Arg [0] : _devTeam (address): 0xfFD1F31643b71C8154c5710CC468FE906b6B3D5D
Arg [1] : _marketingAddress (address): 0xFDAf70c4dA00eE78A4bbea08D22fb709798e8707

-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 000000000000000000000000ffd1f31643b71c8154c5710cc468fe906b6b3d5d
Arg [1] : 000000000000000000000000fdaf70c4da00ee78a4bbea08d22fb709798e8707


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.