ETH Price: $2,616.86 (+0.95%)

Token

Monczka Token (MONT)
 

Overview

Max Total Supply

1,000,000 MONT

Holders

7

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
960 MONT

Value
$0.00
0x59b61b49f766d08617b762ffe89a03955f5d2926
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:
MonczkaContract

Compiler Version
v0.8.18+commit.87f61d96

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 6 : ponzai_test.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.18;

// Importing required contracts from OpenZeppelin library.
import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import "@openzeppelin/contracts/access/Ownable.sol";

// Defining the custom token contract.
contract MonczkaContract is ERC20, Ownable {
    // Addresses for the reward and development pools.
    address public rewardPool;
    address public developmentPool;

    // Total totalSupply
    uint256 public totalSupplyAmount = 1000000;

    // Tax percentage on buy/sell transactions.
    uint256 public taxPercentage = 4;

    // Maximum amount for buy/sell transactions.
    uint256 public maxTxAmount = totalSupplyAmount * 2 / 100;

    // Constructor function to initialize the contract with required details.
    constructor(address _rewardPool, address _developmentPool) ERC20("Monczka Token", "MONT") {
        // Minting initial total supply to the contract deployer.
        _mint(msg.sender, totalSupplyAmount * 10 ** decimals());

        // Setting reward and development pool addresses.
        rewardPool = _rewardPool;
        developmentPool = _developmentPool;
    }

    // Overriding the ERC20 transfer function to include tax and maxTxAmount logic.
    function transfer(address recipient, uint256 amount) public override returns (bool) {
        // Ensuring the transfer amount doesn't exceed maxTxAmount.
        require(amount <= maxTxAmount, "Transfer amount exceeds maxTxAmount");

        // Calling the internal _transferTokens function to handle tax and transfer.
        _transferTokens(msg.sender, recipient, amount);

        return true;
    }

    // Overriding the ERC20 transferFrom function to include tax and maxTxAmount logic.
    function transferFrom(address sender, address recipient, uint256 amount) public override returns (bool) {
        // Ensuring the transfer amount doesn't exceed maxTxAmount.
        require(amount <= maxTxAmount, "Transfer amount exceeds maxTxAmount");

        // Calling the internal _transferTokens function to handle tax and transfer.
        _transferTokens(sender, recipient, amount);

        // Decreasing the allowance by the transfer amount.
        uint256 currentAllowance = allowance(sender, _msgSender());
        require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance");
        _approve(sender, _msgSender(), currentAllowance - amount);

        return true;
    }

    // Internal function to handle tax deduction and token transfer.
    function _transferTokens(address sender, address recipient, uint256 amount) internal {
        // Calculating tax amount.
        uint256 taxAmount = calculateTax(amount);
        uint256 sendAmount = amount - taxAmount;

        // Transferring tax to the respective pools.
        super._transfer(sender, rewardPool, taxAmount / 2);
        super._transfer(sender, developmentPool, taxAmount / 2);

        // Transferring the remaining amount to the recipient.
        super._transfer(sender, recipient, sendAmount);
    }

    // Function to transfer tokens without tax and without a maxTxAmount limit
    function transferNoTax(address recipient, uint256 amount) public returns (bool) {
        // Using parent class's transfer function directly
        super._transfer(msg.sender, recipient, amount);
        return true;
    }

    // Function to transfer tokens from one address to another without tax and without a maxTxAmount limit
    function transferFromNoTax(address sender, address recipient, uint256 amount) public returns (bool) {
        // Ensure the transfer amount is allowed
        uint256 currentAllowance = allowance(sender, _msgSender());
        require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance");

        // Directly using the parent class's transfer function
        super._transfer(sender, recipient, amount);

        // Decreasing the allowance by the transfer amount
        _approve(sender, _msgSender(), currentAllowance - amount);

        return true;
    }

    // Function to calculate tax based on the tax percentage.
    function calculateTax(uint256 _amount) internal view returns (uint256) {
        return (_amount * taxPercentage) / 100;
    }

    // Function to update the tax percentage, only callable by the contract owner.
    function setTaxPercentage(uint256 _taxPercentage) public onlyOwner {
        taxPercentage = _taxPercentage;
    }

    // Function to update the maximum transaction amount, only callable by the contract owner.
    function setMaxTxAmount(uint256 _maxTxAmount) public onlyOwner {
        maxTxAmount = _maxTxAmount;
    }

    // Set new receiver address for rewardPool
    function setRewardPool(address newRewardPool) public onlyOwner {
        require(newRewardPool != address(0), "Invalid address");
        rewardPool = newRewardPool;
    }

    // Set new receiver address for developmentPool
    function setDevelopmentPool(address newDevelopmentPool) public onlyOwner {
        require(newDevelopmentPool != address(0), "Invalid address");
        developmentPool = newDevelopmentPool;
    }
}

File 2 of 6 : 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 3 of 6 : 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 4 of 6 : 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 5 of 6 : 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 6 of 6 : 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":"_rewardPool","type":"address"},{"internalType":"address","name":"_developmentPool","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":"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":"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":"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":"developmentPool","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":"maxTxAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"rewardPool","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newDevelopmentPool","type":"address"}],"name":"setDevelopmentPool","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxTxAmount","type":"uint256"}],"name":"setMaxTxAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newRewardPool","type":"address"}],"name":"setRewardPool","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_taxPercentage","type":"uint256"}],"name":"setTaxPercentage","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"taxPercentage","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupplyAmount","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":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFromNoTax","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferNoTax","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052620f424060085560046009556064600260085462000023919062000466565b6200002f9190620004e0565b600a553480156200003f57600080fd5b506040516200297638038062002976833981810160405281019062000065919062000582565b6040518060400160405280600d81526020017f4d6f6e637a6b6120546f6b656e000000000000000000000000000000000000008152506040518060400160405280600481526020017f4d4f4e54000000000000000000000000000000000000000000000000000000008152508160039081620000e2919062000839565b508060049081620000f4919062000839565b505050620001176200010b620001df60201b60201c565b620001e760201b60201c565b62000155336200012c620002ad60201b60201c565b600a6200013a919062000a81565b60085462000149919062000466565b620002b660201b60201c565b81600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550505062000bbe565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006012905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000328576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200031f9062000b33565b60405180910390fd5b6200033c600083836200042360201b60201c565b806002600082825462000350919062000b55565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000403919062000ba1565b60405180910390a36200041f600083836200042860201b60201c565b5050565b505050565b505050565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000473826200042d565b915062000480836200042d565b925082820262000490816200042d565b91508282048414831517620004aa57620004a962000437565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000620004ed826200042d565b9150620004fa836200042d565b9250826200050d576200050c620004b1565b5b828204905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006200054a826200051d565b9050919050565b6200055c816200053d565b81146200056857600080fd5b50565b6000815190506200057c8162000551565b92915050565b600080604083850312156200059c576200059b62000518565b5b6000620005ac858286016200056b565b9250506020620005bf858286016200056b565b9150509250929050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200064b57607f821691505b60208210810362000661576200066062000603565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620006cb7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826200068c565b620006d786836200068c565b95508019841693508086168417925050509392505050565b6000819050919050565b60006200071a620007146200070e846200042d565b620006ef565b6200042d565b9050919050565b6000819050919050565b6200073683620006f9565b6200074e620007458262000721565b84845462000699565b825550505050565b600090565b6200076562000756565b620007728184846200072b565b505050565b5b818110156200079a576200078e6000826200075b565b60018101905062000778565b5050565b601f821115620007e957620007b38162000667565b620007be846200067c565b81016020851015620007ce578190505b620007e6620007dd856200067c565b83018262000777565b50505b505050565b600082821c905092915050565b60006200080e60001984600802620007ee565b1980831691505092915050565b6000620008298383620007fb565b9150826002028217905092915050565b6200084482620005c9565b67ffffffffffffffff81111562000860576200085f620005d4565b5b6200086c825462000632565b620008798282856200079e565b600060209050601f831160018114620008b157600084156200089c578287015190505b620008a885826200081b565b86555062000918565b601f198416620008c18662000667565b60005b82811015620008eb57848901518255600182019150602085019450602081019050620008c4565b868310156200090b578489015162000907601f891682620007fb565b8355505b6001600288020188555050505b505050505050565b60008160011c9050919050565b6000808291508390505b60018511156200097f5780860481111562000957576200095662000437565b5b6001851615620009675780820291505b8081029050620009778562000920565b945062000937565b94509492505050565b6000826200099a576001905062000a6d565b81620009aa576000905062000a6d565b8160018114620009c35760028114620009ce5762000a04565b600191505062000a6d565b60ff841115620009e357620009e262000437565b5b8360020a915084821115620009fd57620009fc62000437565b5b5062000a6d565b5060208310610133831016604e8410600b841016171562000a3e5782820a90508381111562000a385762000a3762000437565b5b62000a6d565b62000a4d84848460016200092d565b9250905081840481111562000a675762000a6662000437565b5b81810290505b9392505050565b600060ff82169050919050565b600062000a8e826200042d565b915062000a9b8362000a74565b925062000aca7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848462000988565b905092915050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000b1b601f8362000ad2565b915062000b288262000ae3565b602082019050919050565b6000602082019050818103600083015262000b4e8162000b0c565b9050919050565b600062000b62826200042d565b915062000b6f836200042d565b925082820190508082111562000b8a5762000b8962000437565b5b92915050565b62000b9b816200042d565b82525050565b600060208201905062000bb8600083018462000b90565b92915050565b611da88062000bce6000396000f3fe608060405234801561001057600080fd5b50600436106101735760003560e01c806378238c37116100de578063a9059cbb11610097578063e221b22c11610071578063e221b22c14610464578063ec28438a14610494578063f2fde38b146104b0578063f828f50b146104cc57610173565b8063a9059cbb146103e6578063ae7b6d1614610416578063dd62ed3e1461043457610173565b806378238c3714610322578063811be7791461033e5780638c0b5e221461035c5780638da5cb5b1461037a57806395d89b4114610398578063a457c2d7146103b657610173565b80635c13155c116101305780635c13155c1461026257806366666aa914610292578063699abb3c146102b057806370a08231146102cc578063715018a6146102fc57806374f6f4761461030657610173565b806306fdde0314610178578063095ea7b31461019657806318160ddd146101c657806323b872dd146101e4578063313ce567146102145780633950935114610232575b600080fd5b6101806104ea565b60405161018d9190611336565b60405180910390f35b6101b060048036038101906101ab91906113f1565b61057c565b6040516101bd919061144c565b60405180910390f35b6101ce61059f565b6040516101db9190611476565b60405180910390f35b6101fe60048036038101906101f99190611491565b6105a9565b60405161020b919061144c565b60405180910390f35b61021c61067c565b6040516102299190611500565b60405180910390f35b61024c600480360381019061024791906113f1565b610685565b604051610259919061144c565b60405180910390f35b61027c600480360381019061027791906113f1565b6106bc565b604051610289919061144c565b60405180910390f35b61029a6106d3565b6040516102a7919061152a565b60405180910390f35b6102ca60048036038101906102c59190611545565b6106f9565b005b6102e660048036038101906102e19190611572565b61070b565b6040516102f39190611476565b60405180910390f35b610304610753565b005b610320600480360381019061031b9190611572565b610767565b005b61033c60048036038101906103379190611572565b610822565b005b6103466108dd565b604051610353919061152a565b60405180910390f35b610364610903565b6040516103719190611476565b60405180910390f35b610382610909565b60405161038f919061152a565b60405180910390f35b6103a0610933565b6040516103ad9190611336565b60405180910390f35b6103d060048036038101906103cb91906113f1565b6109c5565b6040516103dd919061144c565b60405180910390f35b61040060048036038101906103fb91906113f1565b610a3c565b60405161040d919061144c565b60405180910390f35b61041e610a98565b60405161042b9190611476565b60405180910390f35b61044e6004803603810190610449919061159f565b610a9e565b60405161045b9190611476565b60405180910390f35b61047e60048036038101906104799190611491565b610b25565b60405161048b919061144c565b60405180910390f35b6104ae60048036038101906104a99190611545565b610bb2565b005b6104ca60048036038101906104c59190611572565b610bc4565b005b6104d4610c47565b6040516104e19190611476565b60405180910390f35b6060600380546104f99061160e565b80601f01602080910402602001604051908101604052809291908181526020018280546105259061160e565b80156105725780601f1061054757610100808354040283529160200191610572565b820191906000526020600020905b81548152906001019060200180831161055557829003601f168201915b5050505050905090565b600080610587610c4d565b9050610594818585610c55565b600191505092915050565b6000600254905090565b6000600a548211156105f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105e7906116b1565b60405180910390fd5b6105fb848484610e1e565b600061060e85610609610c4d565b610a9e565b905082811015610653576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161064a90611743565b60405180910390fd5b6106708561065f610c4d565b858461066b9190611792565b610c55565b60019150509392505050565b60006012905090565b600080610690610c4d565b90506106b18185856106a28589610a9e565b6106ac91906117c6565b610c55565b600191505092915050565b60006106c9338484610ebf565b6001905092915050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610701611135565b8060098190555050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61075b611135565b61076560006111b3565b565b61076f611135565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036107de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107d590611846565b60405180910390fd5b80600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b61082a611135565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610899576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161089090611846565b60405180910390fd5b80600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600a5481565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546109429061160e565b80601f016020809104026020016040519081016040528092919081815260200182805461096e9061160e565b80156109bb5780601f10610990576101008083540402835291602001916109bb565b820191906000526020600020905b81548152906001019060200180831161099e57829003601f168201915b5050505050905090565b6000806109d0610c4d565b905060006109de8286610a9e565b905083811015610a23576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1a906118d8565b60405180910390fd5b610a308286868403610c55565b60019250505092915050565b6000600a54821115610a83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a7a906116b1565b60405180910390fd5b610a8e338484610e1e565b6001905092915050565b60095481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600080610b3985610b34610c4d565b610a9e565b905082811015610b7e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7590611743565b60405180910390fd5b610b89858585610ebf565b610ba685610b95610c4d565b8584610ba19190611792565b610c55565b60019150509392505050565b610bba611135565b80600a8190555050565b610bcc611135565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610c3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c329061196a565b60405180910390fd5b610c44816111b3565b50565b60085481565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610cc4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cbb906119fc565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610d33576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2a90611a8e565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610e119190611476565b60405180910390a3505050565b6000610e2982611279565b905060008183610e399190611792565b9050610e7485600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600285610e6f9190611add565b610ebf565b610ead85600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600285610ea89190611add565b610ebf565b610eb8858583610ebf565b5050505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610f2e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2590611b80565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f9d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9490611c12565b60405180910390fd5b610fa883838361129c565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561102e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102590611ca4565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161111c9190611476565b60405180910390a361112f8484846112a1565b50505050565b61113d610c4d565b73ffffffffffffffffffffffffffffffffffffffff1661115b610909565b73ffffffffffffffffffffffffffffffffffffffff16146111b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111a890611d10565b60405180910390fd5b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600060646009548361128b9190611d30565b6112959190611add565b9050919050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b838110156112e05780820151818401526020810190506112c5565b60008484015250505050565b6000601f19601f8301169050919050565b6000611308826112a6565b61131281856112b1565b93506113228185602086016112c2565b61132b816112ec565b840191505092915050565b6000602082019050818103600083015261135081846112fd565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006113888261135d565b9050919050565b6113988161137d565b81146113a357600080fd5b50565b6000813590506113b58161138f565b92915050565b6000819050919050565b6113ce816113bb565b81146113d957600080fd5b50565b6000813590506113eb816113c5565b92915050565b6000806040838503121561140857611407611358565b5b6000611416858286016113a6565b9250506020611427858286016113dc565b9150509250929050565b60008115159050919050565b61144681611431565b82525050565b6000602082019050611461600083018461143d565b92915050565b611470816113bb565b82525050565b600060208201905061148b6000830184611467565b92915050565b6000806000606084860312156114aa576114a9611358565b5b60006114b8868287016113a6565b93505060206114c9868287016113a6565b92505060406114da868287016113dc565b9150509250925092565b600060ff82169050919050565b6114fa816114e4565b82525050565b600060208201905061151560008301846114f1565b92915050565b6115248161137d565b82525050565b600060208201905061153f600083018461151b565b92915050565b60006020828403121561155b5761155a611358565b5b6000611569848285016113dc565b91505092915050565b60006020828403121561158857611587611358565b5b6000611596848285016113a6565b91505092915050565b600080604083850312156115b6576115b5611358565b5b60006115c4858286016113a6565b92505060206115d5858286016113a6565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061162657607f821691505b602082108103611639576116386115df565b5b50919050565b7f5472616e7366657220616d6f756e742065786365656473206d61785478416d6f60008201527f756e740000000000000000000000000000000000000000000000000000000000602082015250565b600061169b6023836112b1565b91506116a68261163f565b604082019050919050565b600060208201905081810360008301526116ca8161168e565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b600061172d6028836112b1565b9150611738826116d1565b604082019050919050565b6000602082019050818103600083015261175c81611720565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061179d826113bb565b91506117a8836113bb565b92508282039050818111156117c0576117bf611763565b5b92915050565b60006117d1826113bb565b91506117dc836113bb565b92508282019050808211156117f4576117f3611763565b5b92915050565b7f496e76616c696420616464726573730000000000000000000000000000000000600082015250565b6000611830600f836112b1565b915061183b826117fa565b602082019050919050565b6000602082019050818103600083015261185f81611823565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006118c26025836112b1565b91506118cd82611866565b604082019050919050565b600060208201905081810360008301526118f1816118b5565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006119546026836112b1565b915061195f826118f8565b604082019050919050565b6000602082019050818103600083015261198381611947565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006119e66024836112b1565b91506119f18261198a565b604082019050919050565b60006020820190508181036000830152611a15816119d9565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611a786022836112b1565b9150611a8382611a1c565b604082019050919050565b60006020820190508181036000830152611aa781611a6b565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000611ae8826113bb565b9150611af3836113bb565b925082611b0357611b02611aae565b5b828204905092915050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611b6a6025836112b1565b9150611b7582611b0e565b604082019050919050565b60006020820190508181036000830152611b9981611b5d565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611bfc6023836112b1565b9150611c0782611ba0565b604082019050919050565b60006020820190508181036000830152611c2b81611bef565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611c8e6026836112b1565b9150611c9982611c32565b604082019050919050565b60006020820190508181036000830152611cbd81611c81565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611cfa6020836112b1565b9150611d0582611cc4565b602082019050919050565b60006020820190508181036000830152611d2981611ced565b9050919050565b6000611d3b826113bb565b9150611d46836113bb565b9250828202611d54816113bb565b91508282048414831517611d6b57611d6a611763565b5b509291505056fea26469706673582212208cf992bf028d5e1605143b1d7b974dd2f401862e0121a485e466e93538a9880b64736f6c6343000812003300000000000000000000000032b6fe5f1e651d874f5a0b5b20bcea0bacbda1210000000000000000000000003d17c25e80ca0474aa31e38f90becdaf29f902e9

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101735760003560e01c806378238c37116100de578063a9059cbb11610097578063e221b22c11610071578063e221b22c14610464578063ec28438a14610494578063f2fde38b146104b0578063f828f50b146104cc57610173565b8063a9059cbb146103e6578063ae7b6d1614610416578063dd62ed3e1461043457610173565b806378238c3714610322578063811be7791461033e5780638c0b5e221461035c5780638da5cb5b1461037a57806395d89b4114610398578063a457c2d7146103b657610173565b80635c13155c116101305780635c13155c1461026257806366666aa914610292578063699abb3c146102b057806370a08231146102cc578063715018a6146102fc57806374f6f4761461030657610173565b806306fdde0314610178578063095ea7b31461019657806318160ddd146101c657806323b872dd146101e4578063313ce567146102145780633950935114610232575b600080fd5b6101806104ea565b60405161018d9190611336565b60405180910390f35b6101b060048036038101906101ab91906113f1565b61057c565b6040516101bd919061144c565b60405180910390f35b6101ce61059f565b6040516101db9190611476565b60405180910390f35b6101fe60048036038101906101f99190611491565b6105a9565b60405161020b919061144c565b60405180910390f35b61021c61067c565b6040516102299190611500565b60405180910390f35b61024c600480360381019061024791906113f1565b610685565b604051610259919061144c565b60405180910390f35b61027c600480360381019061027791906113f1565b6106bc565b604051610289919061144c565b60405180910390f35b61029a6106d3565b6040516102a7919061152a565b60405180910390f35b6102ca60048036038101906102c59190611545565b6106f9565b005b6102e660048036038101906102e19190611572565b61070b565b6040516102f39190611476565b60405180910390f35b610304610753565b005b610320600480360381019061031b9190611572565b610767565b005b61033c60048036038101906103379190611572565b610822565b005b6103466108dd565b604051610353919061152a565b60405180910390f35b610364610903565b6040516103719190611476565b60405180910390f35b610382610909565b60405161038f919061152a565b60405180910390f35b6103a0610933565b6040516103ad9190611336565b60405180910390f35b6103d060048036038101906103cb91906113f1565b6109c5565b6040516103dd919061144c565b60405180910390f35b61040060048036038101906103fb91906113f1565b610a3c565b60405161040d919061144c565b60405180910390f35b61041e610a98565b60405161042b9190611476565b60405180910390f35b61044e6004803603810190610449919061159f565b610a9e565b60405161045b9190611476565b60405180910390f35b61047e60048036038101906104799190611491565b610b25565b60405161048b919061144c565b60405180910390f35b6104ae60048036038101906104a99190611545565b610bb2565b005b6104ca60048036038101906104c59190611572565b610bc4565b005b6104d4610c47565b6040516104e19190611476565b60405180910390f35b6060600380546104f99061160e565b80601f01602080910402602001604051908101604052809291908181526020018280546105259061160e565b80156105725780601f1061054757610100808354040283529160200191610572565b820191906000526020600020905b81548152906001019060200180831161055557829003601f168201915b5050505050905090565b600080610587610c4d565b9050610594818585610c55565b600191505092915050565b6000600254905090565b6000600a548211156105f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105e7906116b1565b60405180910390fd5b6105fb848484610e1e565b600061060e85610609610c4d565b610a9e565b905082811015610653576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161064a90611743565b60405180910390fd5b6106708561065f610c4d565b858461066b9190611792565b610c55565b60019150509392505050565b60006012905090565b600080610690610c4d565b90506106b18185856106a28589610a9e565b6106ac91906117c6565b610c55565b600191505092915050565b60006106c9338484610ebf565b6001905092915050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610701611135565b8060098190555050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61075b611135565b61076560006111b3565b565b61076f611135565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036107de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107d590611846565b60405180910390fd5b80600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b61082a611135565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610899576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161089090611846565b60405180910390fd5b80600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600a5481565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546109429061160e565b80601f016020809104026020016040519081016040528092919081815260200182805461096e9061160e565b80156109bb5780601f10610990576101008083540402835291602001916109bb565b820191906000526020600020905b81548152906001019060200180831161099e57829003601f168201915b5050505050905090565b6000806109d0610c4d565b905060006109de8286610a9e565b905083811015610a23576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1a906118d8565b60405180910390fd5b610a308286868403610c55565b60019250505092915050565b6000600a54821115610a83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a7a906116b1565b60405180910390fd5b610a8e338484610e1e565b6001905092915050565b60095481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600080610b3985610b34610c4d565b610a9e565b905082811015610b7e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7590611743565b60405180910390fd5b610b89858585610ebf565b610ba685610b95610c4d565b8584610ba19190611792565b610c55565b60019150509392505050565b610bba611135565b80600a8190555050565b610bcc611135565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610c3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c329061196a565b60405180910390fd5b610c44816111b3565b50565b60085481565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610cc4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cbb906119fc565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610d33576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2a90611a8e565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610e119190611476565b60405180910390a3505050565b6000610e2982611279565b905060008183610e399190611792565b9050610e7485600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600285610e6f9190611add565b610ebf565b610ead85600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600285610ea89190611add565b610ebf565b610eb8858583610ebf565b5050505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610f2e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2590611b80565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f9d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9490611c12565b60405180910390fd5b610fa883838361129c565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561102e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102590611ca4565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161111c9190611476565b60405180910390a361112f8484846112a1565b50505050565b61113d610c4d565b73ffffffffffffffffffffffffffffffffffffffff1661115b610909565b73ffffffffffffffffffffffffffffffffffffffff16146111b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111a890611d10565b60405180910390fd5b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600060646009548361128b9190611d30565b6112959190611add565b9050919050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b838110156112e05780820151818401526020810190506112c5565b60008484015250505050565b6000601f19601f8301169050919050565b6000611308826112a6565b61131281856112b1565b93506113228185602086016112c2565b61132b816112ec565b840191505092915050565b6000602082019050818103600083015261135081846112fd565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006113888261135d565b9050919050565b6113988161137d565b81146113a357600080fd5b50565b6000813590506113b58161138f565b92915050565b6000819050919050565b6113ce816113bb565b81146113d957600080fd5b50565b6000813590506113eb816113c5565b92915050565b6000806040838503121561140857611407611358565b5b6000611416858286016113a6565b9250506020611427858286016113dc565b9150509250929050565b60008115159050919050565b61144681611431565b82525050565b6000602082019050611461600083018461143d565b92915050565b611470816113bb565b82525050565b600060208201905061148b6000830184611467565b92915050565b6000806000606084860312156114aa576114a9611358565b5b60006114b8868287016113a6565b93505060206114c9868287016113a6565b92505060406114da868287016113dc565b9150509250925092565b600060ff82169050919050565b6114fa816114e4565b82525050565b600060208201905061151560008301846114f1565b92915050565b6115248161137d565b82525050565b600060208201905061153f600083018461151b565b92915050565b60006020828403121561155b5761155a611358565b5b6000611569848285016113dc565b91505092915050565b60006020828403121561158857611587611358565b5b6000611596848285016113a6565b91505092915050565b600080604083850312156115b6576115b5611358565b5b60006115c4858286016113a6565b92505060206115d5858286016113a6565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061162657607f821691505b602082108103611639576116386115df565b5b50919050565b7f5472616e7366657220616d6f756e742065786365656473206d61785478416d6f60008201527f756e740000000000000000000000000000000000000000000000000000000000602082015250565b600061169b6023836112b1565b91506116a68261163f565b604082019050919050565b600060208201905081810360008301526116ca8161168e565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b600061172d6028836112b1565b9150611738826116d1565b604082019050919050565b6000602082019050818103600083015261175c81611720565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061179d826113bb565b91506117a8836113bb565b92508282039050818111156117c0576117bf611763565b5b92915050565b60006117d1826113bb565b91506117dc836113bb565b92508282019050808211156117f4576117f3611763565b5b92915050565b7f496e76616c696420616464726573730000000000000000000000000000000000600082015250565b6000611830600f836112b1565b915061183b826117fa565b602082019050919050565b6000602082019050818103600083015261185f81611823565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006118c26025836112b1565b91506118cd82611866565b604082019050919050565b600060208201905081810360008301526118f1816118b5565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006119546026836112b1565b915061195f826118f8565b604082019050919050565b6000602082019050818103600083015261198381611947565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006119e66024836112b1565b91506119f18261198a565b604082019050919050565b60006020820190508181036000830152611a15816119d9565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611a786022836112b1565b9150611a8382611a1c565b604082019050919050565b60006020820190508181036000830152611aa781611a6b565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000611ae8826113bb565b9150611af3836113bb565b925082611b0357611b02611aae565b5b828204905092915050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611b6a6025836112b1565b9150611b7582611b0e565b604082019050919050565b60006020820190508181036000830152611b9981611b5d565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611bfc6023836112b1565b9150611c0782611ba0565b604082019050919050565b60006020820190508181036000830152611c2b81611bef565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611c8e6026836112b1565b9150611c9982611c32565b604082019050919050565b60006020820190508181036000830152611cbd81611c81565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611cfa6020836112b1565b9150611d0582611cc4565b602082019050919050565b60006020820190508181036000830152611d2981611ced565b9050919050565b6000611d3b826113bb565b9150611d46836113bb565b9250828202611d54816113bb565b91508282048414831517611d6b57611d6a611763565b5b509291505056fea26469706673582212208cf992bf028d5e1605143b1d7b974dd2f401862e0121a485e466e93538a9880b64736f6c63430008120033

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

00000000000000000000000032b6fe5f1e651d874f5a0b5b20bcea0bacbda1210000000000000000000000003d17c25e80ca0474aa31e38f90becdaf29f902e9

-----Decoded View---------------
Arg [0] : _rewardPool (address): 0x32b6fE5f1E651D874F5A0B5B20BCEA0baCbda121
Arg [1] : _developmentPool (address): 0x3D17c25e80Ca0474Aa31E38f90bECDaf29f902E9

-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 00000000000000000000000032b6fe5f1e651d874f5a0b5b20bcea0bacbda121
Arg [1] : 0000000000000000000000003d17c25e80ca0474aa31e38f90becdaf29f902e9


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.