POL Price: $0.370921 (+0.38%)
Gas: 31 GWei
 

Overview

POL Balance

Polygon PoS Chain LogoPolygon PoS Chain LogoPolygon PoS Chain Logo0 POL

POL Value

$0.00

Sponsored

Transaction Hash
Method
Block
From
To
Sale629150562024-10-11 17:55:142 days ago1728669314IN
0x722B1917...CbA7bdbEa
0 POL0.0029831130.00000007
Sale628669992024-10-10 13:27:033 days ago1728566823IN
0x722B1917...CbA7bdbEa
0 POL0.0029831130.00000043
Sale627826022024-10-08 11:28:055 days ago1728386885IN
0x722B1917...CbA7bdbEa
0 POL0.0060353960.69568624
Sale627824352024-10-08 11:22:115 days ago1728386531IN
0x722B1917...CbA7bdbEa
0 POL0.0065035565.40374198
Sale627820422024-10-08 11:08:155 days ago1728385695IN
0x722B1917...CbA7bdbEa
0 POL0.0078686579.13208178
Sale625078612024-10-01 16:34:5012 days ago1727800490IN
0x722B1917...CbA7bdbEa
0 POL0.0034961130.00008028
Sale621441892024-09-22 16:43:5421 days ago1727023434IN
0x722B1917...CbA7bdbEa
0 POL0.0029827530.00000012
Sale621409372024-09-22 14:47:0021 days ago1727016420IN
0x722B1917...CbA7bdbEa
0 POL0.0029827530.00000003
Sale621408372024-09-22 14:43:2821 days ago1727016208IN
0x722B1917...CbA7bdbEa
0 POL0.0029827530.00000003
Sale621407172024-09-22 14:39:1221 days ago1727015952IN
0x722B1917...CbA7bdbEa
0 POL0.0029827530.00000002
Sale621401402024-09-22 14:18:4621 days ago1727014726IN
0x722B1917...CbA7bdbEa
0 POL0.0029827530.00000002
Sale621392262024-09-22 13:46:2421 days ago1727012784IN
0x722B1917...CbA7bdbEa
0 POL0.0029827530.00000004
Sale621391872024-09-22 13:45:0221 days ago1727012702IN
0x722B1917...CbA7bdbEa
0 POL0.0029827530.00000004
Sale621390742024-09-22 13:41:0021 days ago1727012460IN
0x722B1917...CbA7bdbEa
0 POL0.0029827530.00000005
Sale621351572024-09-22 11:22:1121 days ago1727004131IN
0x722B1917...CbA7bdbEa
0 POL0.0029831130.00000003
Sale621349362024-09-22 11:14:2121 days ago1727003661IN
0x722B1917...CbA7bdbEa
0 POL0.0029827530.00000003
Sale621347802024-09-22 11:08:4921 days ago1727003329IN
0x722B1917...CbA7bdbEa
0 POL0.0029827530.00000005
Sale621337582024-09-22 10:32:3521 days ago1727001155IN
0x722B1917...CbA7bdbEa
0 POL0.0029831130.00000776
Sale619624342024-09-18 4:58:5925 days ago1726635539IN
0x722B1917...CbA7bdbEa
0 POL0.0034964730.00000003
Sale619211952024-09-17 4:24:5527 days ago1726547095IN
0x722B1917...CbA7bdbEa
0 POL0.0032084730.00000002
Sale617639822024-09-13 6:21:1230 days ago1726208472IN
0x722B1917...CbA7bdbEa
0 POL0.0033662830.12685859
Sale616618802024-09-10 17:13:1933 days ago1725988399IN
0x722B1917...CbA7bdbEa
0 POL0.0033521130.00000012
Sale615461682024-09-07 20:06:5836 days ago1725739618IN
0x722B1917...CbA7bdbEa
0 POL0.0035611530.555
Sale614836802024-09-06 6:35:2037 days ago1725604520IN
0x722B1917...CbA7bdbEa
0 POL0.0033524730.00000004
Sale614752062024-09-06 1:29:0538 days ago1725586145IN
0x722B1917...CbA7bdbEa
0 POL0.0029305330.97000004
View all transactions

Parent Transaction Hash Block From To
View All Internal Transactions
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
PresaleXPOL

Compiler Version
v0.8.21+commit.d9974bed

Optimization Enabled:
Yes with 50 runs

Other Settings:
byzantium EvmVersion
File 1 of 6 : PresaleXPOL.sol
// SPDX-License-Identifier: MIT
pragma solidity >=0.8.1;

import "./CryptopoliumToken.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/security/Pausable.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";

///This wallet was already added!
error WalletAdded(address wallet);

contract PresaleXPOL is Ownable, Pausable, ReentrancyGuard {
    
    uint256 private price = 100;
    uint256 private indexB;
    uint256 private indexP;
     uint256 public totalUsd;
    uint256 public totalXpol;

    mapping(address => mapping(uint256 => address)) private myRef;
    mapping(address => address) private myPart;
    mapping(address => bool) private hasPart;
    mapping(address => bool) public partners;
    mapping(address => bool) public buyers;
    mapping(address => uint256) public count;
    mapping(uint256 => address) private allPartners;
    mapping(uint256 => address) private allBuyers;
    
    

    CryptopoliumToken public tXPOL;
    address public usdt = 0xc2132D05D31c914a87C6611C10748AEb04B58e8F;

    constructor(CryptopoliumToken _tPol) payable {
        tXPOL = _tPol;
       
    }

    receive() external payable {}

    modifier onlyBuyers() {
        require(
            buyers[msg.sender],
            "Your wallet is not listed for this private sale!"
        );
        _;
    }

    modifier onlyPartners() {
        require(partners[msg.sender], "Caller is not a partner!");
        _;
    }

    function pauseContract() external onlyOwner {
        _pause();
    }

    function unpauseContract() external onlyOwner {
        _unpause();
    }

    function sale(uint256 _a) external whenNotPaused nonReentrant {
        saleXpol((_a));
    }

    function saleXpol(uint256 _amount) private {
        require(_amount <= tXPOL.balanceOf(address(this)), "The XPOL balance is too low!");

        uint256 payment = (_amount * price) / 10 ** 5;
        payment = payment / 10 ** 12;
        uint256 bonus = _amount / 20;

        require(
            payment <= IERC20(usdt).balanceOf(msg.sender),
            "Your USDT balance is too low!!"
        );
        address partner = myPart[msg.sender];
        if (hasPart[msg.sender]) {
            uint256 forP = payment / 10;
            uint256 forO = forP * 9;
            IERC20(usdt).transferFrom(msg.sender, owner(), forO);
            IERC20(usdt).transferFrom(msg.sender, partner, forP);
        } else {
            IERC20(usdt).transferFrom(msg.sender, owner(), payment);
        }

        totalUsd += payment;

        tXPOL.transfer(msg.sender, _amount);
        totalXpol += _amount;
        if (buyers[msg.sender]) tXPOL.transferFrom(owner(), msg.sender, bonus);
    }

    function withdraw(uint256 _amount) external onlyOwner {
        require(
            _amount <= IERC20(usdt).balanceOf(address(this)),
            "Not enough USDT"
        );
        IERC20(usdt).transferFrom(address(this), owner(), _amount);
    }

    function withdrawP(uint256 _amount) external onlyOwner {
        require(_amount <= tXPOL.balanceOf(address(this)), "The XPOL balance is too low!");
        tXPOL.transfer(owner(), _amount);
    }

    function addPartners(address[] memory a) external onlyOwner {
        uint256 l = a.length;
        uint256 x = indexP;
        for (uint i = 0; i < l; i++) {
            require(a[i] != address(0), "Not a valid address");
            if(partners[a[i]])
            revert WalletAdded({
                wallet: a[i]
            });
            partners[a[i]] = true;
            allPartners[x] = a[i];
            x++;
        }
        indexP = x;
    }

    function addMyBuyers(address[] memory a) external onlyPartners {
        add(a, msg.sender);
    }

    function addBuyersFP(address[] memory a, address p) external onlyOwner {
        require(partners[p], "Wallet is not a partners!");
        if(!partners[p])
            revert WalletAdded({
                wallet: p
            });
        add(a, p);
    }

    function add(address[] memory a, address p) private {
        uint256 l = a.length;
        uint256 c = count[p];
        uint256 x = indexB;
        for (uint i = 0; i < l; i++) {
            require(a[i] != address(0), "Not a valid address");
            if(buyers[a[i]])
            revert WalletAdded({
                wallet: a[i]
            });
            buyers[a[i]] = true;
            myRef[p][c] = a[i];
            myPart[a[i]] = p;
            hasPart[a[i]] = true;
            allBuyers[x] = a[i];
            c++;
            x++;
        }
        count[p] = c;
        indexB = x;
    }

    function addBuyers(address[] memory a) external onlyOwner {
        uint256 l = a.length;
        uint256 x = indexB;
        for (uint i = 0; i < l; i++) {
            require(a[i] != address(0), "Not a valid address");
            if(buyers[a[i]])
            revert WalletAdded({
                wallet: a[i]
            });
            buyers[a[i]] = true;
            allBuyers[x] = a[i];
            x++;
        }
        indexB = x;
    }

    function setPrice(uint256 _amount) external onlyOwner {
        price = _amount;
    }

    function getPrice() external view returns (uint256) {
        return price * 10 ** 13;
    }

    function getIndexB() external view onlyOwner returns (uint256)  {
        return indexB;
    }

    function getIndexP() external view onlyOwner returns (uint256)  {
        return indexP;
    }

    function getPartners(uint256 x) external view onlyOwner returns (address) {
        return allPartners[x];
    }

    function getBuyers(uint256 x) external view onlyOwner returns (address) {
        return allBuyers[x];
    }

    function getMyRef(uint256 x) external view onlyPartners returns (address) {
        return myRef[msg.sender][x];
    }

    function getMyPart(address _a) external view onlyOwner returns (address) {
        return myPart[_a];
    }
}

File 2 of 6 : CryptopoliumToken.sol
// SPDX-License-Identifier: MIT
pragma solidity >= 0.8.17;

interface IERC20 {

    function totalSupply() external view returns (uint256);
    function balanceOf(address account) external view returns (uint256);
    function allowance(address owner, address spender) external view returns (uint256);

    function transfer(address recipient, uint256 amount) external returns (bool);
    function approve(address spender, uint256 amount) external returns (bool);
    function transferFrom(address sender, address recipient, uint256 amount) external returns (bool);


    event Transfer(address indexed from, address indexed to, uint256 value);
    event Approval(address indexed owner, address indexed spender, uint256 value);
}


contract CryptopoliumToken is IERC20 {
    
    string public constant name = "Cryptopolium";
    string public constant symbol = "XPOL";
    uint8 public constant decimals = 18;

    mapping(address => uint256) balances;
    mapping(address => mapping (address => uint256)) allowed;

    uint256 totalSupply_ = 12000000000000000000000000000;

    constructor() {
        balances[msg.sender] = totalSupply_;
    }

    function totalSupply() public override view returns (uint256) {
        return totalSupply_;
    }

    function balanceOf(address tokenOwner) public override view returns (uint256) {
        return balances[tokenOwner];
    }

    function transfer(address receiver, uint256 numTokens) public override returns (bool) {
        require(numTokens <= balances[msg.sender]);
        balances[msg.sender] -= numTokens;
        balances[receiver] += numTokens;
        emit Transfer(msg.sender, receiver, numTokens);
        return true;
    }

    function approve(address delegate, uint256 numTokens) public override returns (bool) {
        allowed[msg.sender][delegate] = numTokens;
        emit Approval(msg.sender, delegate, numTokens);
        return true;
    }

    function allowance(address owner, address delegate) public override view returns (uint) {
        return allowed[owner][delegate];
    }

    function transferFrom(address owner, address buyer, uint256 numTokens) public override returns (bool) {
        require(numTokens <= balances[owner]);
        require(numTokens <= allowed[owner][msg.sender]);

        balances[owner] -= numTokens;
        allowed[owner][msg.sender] -= numTokens;
        balances[buyer] += numTokens;
        emit Transfer(owner, buyer, numTokens);
        return true;
    }
}

File 3 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 4 of 6 : ReentrancyGuard.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and making it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        _nonReentrantBefore();
        _;
        _nonReentrantAfter();
    }

    function _nonReentrantBefore() private {
        // On the first call to nonReentrant, _status will be _NOT_ENTERED
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;
    }

    function _nonReentrantAfter() private {
        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Returns true if the reentrancy guard is currently set to "entered", which indicates there is a
     * `nonReentrant` function in the call stack.
     */
    function _reentrancyGuardEntered() internal view returns (bool) {
        return _status == _ENTERED;
    }
}

File 5 of 6 : Pausable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (security/Pausable.sol)

pragma solidity ^0.8.0;

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

/**
 * @dev Contract module which allows children to implement an emergency stop
 * mechanism that can be triggered by an authorized account.
 *
 * This module is used through inheritance. It will make available the
 * modifiers `whenNotPaused` and `whenPaused`, which can be applied to
 * the functions of your contract. Note that they will not be pausable by
 * simply including this module, only once the modifiers are put in place.
 */
abstract contract Pausable is Context {
    /**
     * @dev Emitted when the pause is triggered by `account`.
     */
    event Paused(address account);

    /**
     * @dev Emitted when the pause is lifted by `account`.
     */
    event Unpaused(address account);

    bool private _paused;

    /**
     * @dev Initializes the contract in unpaused state.
     */
    constructor() {
        _paused = false;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is not paused.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    modifier whenNotPaused() {
        _requireNotPaused();
        _;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is paused.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    modifier whenPaused() {
        _requirePaused();
        _;
    }

    /**
     * @dev Returns true if the contract is paused, and false otherwise.
     */
    function paused() public view virtual returns (bool) {
        return _paused;
    }

    /**
     * @dev Throws if the contract is paused.
     */
    function _requireNotPaused() internal view virtual {
        require(!paused(), "Pausable: paused");
    }

    /**
     * @dev Throws if the contract is not paused.
     */
    function _requirePaused() internal view virtual {
        require(paused(), "Pausable: not paused");
    }

    /**
     * @dev Triggers stopped state.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    function _pause() internal virtual whenNotPaused {
        _paused = true;
        emit Paused(_msgSender());
    }

    /**
     * @dev Returns to normal state.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    function _unpause() internal virtual whenPaused {
        _paused = false;
        emit Unpaused(_msgSender());
    }
}

File 6 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);
    }
}

Settings
{
  "remappings": [],
  "optimizer": {
    "enabled": true,
    "runs": 50
  },
  "evmVersion": "byzantium",
  "libraries": {},
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"contract CryptopoliumToken","name":"_tPol","type":"address"}],"stateMutability":"payable","type":"constructor"},{"inputs":[{"internalType":"address","name":"wallet","type":"address"}],"name":"WalletAdded","type":"error"},{"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":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[{"internalType":"address[]","name":"a","type":"address[]"}],"name":"addBuyers","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"a","type":"address[]"},{"internalType":"address","name":"p","type":"address"}],"name":"addBuyersFP","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"a","type":"address[]"}],"name":"addMyBuyers","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"a","type":"address[]"}],"name":"addPartners","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"buyers","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"count","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"x","type":"uint256"}],"name":"getBuyers","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getIndexB","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getIndexP","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_a","type":"address"}],"name":"getMyPart","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"x","type":"uint256"}],"name":"getMyRef","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"x","type":"uint256"}],"name":"getPartners","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"partners","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pauseContract","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_a","type":"uint256"}],"name":"sale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"tXPOL","outputs":[{"internalType":"contract CryptopoliumToken","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalUsd","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalXpol","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpauseContract","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"usdt","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"withdrawP","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60806040819052606460025560108054600160a060020a03191673c2132d05d31c914a87c6611c10748aeb04b58e8f17905562001c1038819003908190833981016040819052620000509162000104565b6200007662000067640100000000620000b0810204565b640100000000620000b4810204565b6000805460a060020a60ff021916905560018055600f8054600160a060020a031916600160a060020a039290921691909117905562000136565b3390565b60008054600160a060020a03838116600160a060020a0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6000602082840312156200011757600080fd5b8151600160a060020a03811681146200012f57600080fd5b9392505050565b611aca80620001466000396000f3fe60806040526004361061015f5760003560e060020a900480638da5cb5b116100c05780638da5cb5b1461032a57806391b7f5ed1461033f578063923deb0c1461035f57806393a34b291461037f57806395c336521461039f57806396032702146103cf57806397a993aa146103ef57806398d5fdca1461041f578063a451fd0314610434578063a8cbf23814610449578063aa5b3f5514610469578063b33712c514610489578063e97265591461049e578063f2fde38b146104be57600080fd5b806305d85eda1461016b5780632e1a7d4d146101ab5780632f48ab7d146101cd57806339301139146101fa578063425c4e6f1461021a578063439766ce1461023a578063527913b11461024f578063542802a8146102655780635905fe7d146102855780635c975abb1461029b57806360382b81146102c0578063715018a6146102e05780637feafd20146102f55780638a38a4e41461031557600080fd5b3661016657005b600080fd5b34801561017757600080fd5b5061019861018636600461173f565b600c6020526000908152604090205481565b6040519081526020015b60405180910390f35b3480156101b757600080fd5b506101cb6101c6366004611761565b6104de565b005b3480156101d957600080fd5b506010546101ed90600160a060020a031681565b6040516101a2919061177a565b34801561020657600080fd5b506101cb610215366004611761565b610634565b34801561022657600080fd5b506101cb610235366004611849565b61070c565b34801561024657600080fd5b506101cb6108b4565b34801561025b57600080fd5b5061019860055481565b34801561027157600080fd5b506101cb610280366004611849565b6108c6565b34801561029157600080fd5b5061019860065481565b3480156102a757600080fd5b506102b0610a49565b60405190151581526020016101a2565b3480156102cc57600080fd5b506101cb6102db366004611886565b610a59565b3480156102ec57600080fd5b506101cb610b14565b34801561030157600080fd5b506101ed610310366004611761565b610b26565b34801561032157600080fd5b50610198610b4f565b34801561033657600080fd5b506101ed610b60565b34801561034b57600080fd5b506101cb61035a366004611761565b610b6f565b34801561036b57600080fd5b50600f546101ed90600160a060020a031681565b34801561038b57600080fd5b506101ed61039a366004611761565b610b7c565b3480156103ab57600080fd5b506102b06103ba36600461173f565b600a6020526000908152604090205460ff1681565b3480156103db57600080fd5b506101cb6103ea366004611761565b610bd5565b3480156103fb57600080fd5b506102b061040a36600461173f565b600b6020526000908152604090205460ff1681565b34801561042b57600080fd5b50610198610bfa565b34801561044057600080fd5b50610198610c15565b34801561045557600080fd5b506101ed610464366004611761565b610c26565b34801561047557600080fd5b506101cb610484366004611849565b610c4c565b34801561049557600080fd5b506101cb610c88565b3480156104aa57600080fd5b506101ed6104b936600461173f565b610c98565b3480156104ca57600080fd5b506101cb6104d936600461173f565b610cc1565b6104e6610d51565b60105460405160e060020a6370a08231028152600160a060020a03909116906370a082319061051990309060040161177a565b602060405180830381865afa158015610536573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061055a91906118d4565b8111156105b15760405160e560020a62461bcd02815260206004820152600f60248201527f4e6f7420656e6f7567682055534454000000000000000000000000000000000060448201526064015b60405180910390fd5b601054600160a060020a03166323b872dd306105cb610b60565b846040518463ffffffff1660e060020a0281526004016105ed939291906118ed565b6020604051808303816000875af115801561060c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106309190611911565b5050565b61063c610d51565b600f5460405160e060020a6370a08231028152600160a060020a03909116906370a082319061066f90309060040161177a565b602060405180830381865afa15801561068c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106b091906118d4565b8111156106d25760405160e560020a62461bcd0281526004016105a890611933565b600f54600160a060020a031663a9059cbb6106eb610b60565b836040518363ffffffff1660e060020a0281526004016105ed92919061196a565b610714610d51565b805160035460005b828110156108ac576000600160a060020a031684828151811061074157610741611983565b6020026020010151600160a060020a0316036107725760405160e560020a62461bcd0281526004016105a89061199d565b600b600085838151811061078857610788611983565b602090810291909101810151600160a060020a031682528101919091526040016000205460ff16156107eb578381815181106107c6576107c6611983565b602002602001015160405160e460020a6309ae14270281526004016105a8919061177a565b6001600b600086848151811061080357610803611983565b6020026020010151600160a060020a0316600160a060020a0316815260200190815260200160002060006101000a81548160ff02191690831515021790555083818151811061085457610854611983565b6020908102919091018101516000848152600e90925260409091208054600160a060020a031916600160a060020a0390921691909117905581610896816119ee565b92505080806108a4906119ee565b91505061071c565b506003555050565b6108bc610d51565b6108c4610db3565b565b6108ce610d51565b805160045460005b82811015610a41576000600160a060020a03168482815181106108fb576108fb611983565b6020026020010151600160a060020a03160361092c5760405160e560020a62461bcd0281526004016105a89061199d565b600a600085838151811061094257610942611983565b602090810291909101810151600160a060020a031682528101919091526040016000205460ff1615610980578381815181106107c6576107c6611983565b6001600a600086848151811061099857610998611983565b6020026020010151600160a060020a0316600160a060020a0316815260200190815260200160002060006101000a81548160ff0219169083151502179055508381815181106109e9576109e9611983565b6020908102919091018101516000848152600d90925260409091208054600160a060020a031916600160a060020a0390921691909117905581610a2b816119ee565b9250508080610a39906119ee565b9150506108d6565b506004555050565b60005460a060020a900460ff1690565b610a61610d51565b600160a060020a0381166000908152600a602052604090205460ff16610acc5760405160e560020a62461bcd02815260206004820152601960248201527f57616c6c6574206973206e6f74206120706172746e657273210000000000000060448201526064016105a8565b600160a060020a0381166000908152600a602052604090205460ff16610b0a578060405160e460020a6309ae14270281526004016105a8919061177a565b6106308282610e10565b610b1c610d51565b6108c460006110db565b6000610b30610d51565b506000818152600e6020526040902054600160a060020a03165b919050565b6000610b59610d51565b5060035490565b600054600160a060020a031690565b610b77610d51565b600255565b336000908152600a602052604081205460ff16610bae5760405160e560020a62461bcd0281526004016105a890611a07565b503360009081526007602090815260408083209383529290522054600160a060020a031690565b610bdd61112b565b610be5611183565b610bee816111df565b610bf760018055565b50565b60006002546509184e72a000610c109190611a3e565b905090565b6000610c1f610d51565b5060045490565b6000610c30610d51565b506000908152600d6020526040902054600160a060020a031690565b336000908152600a602052604090205460ff16610c7e5760405160e560020a62461bcd0281526004016105a890611a07565b610bf78133610e10565b610c90610d51565b6108c4611692565b6000610ca2610d51565b50600160a060020a039081166000908152600860205260409020541690565b610cc9610d51565b600160a060020a038116610d485760405160e560020a62461bcd02815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f646472657373000000000000000000000000000000000000000000000000000060648201526084016105a8565b610bf7816110db565b33610d5a610b60565b600160a060020a0316146108c45760405160e560020a62461bcd02815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016105a8565b610dbb61112b565b6000805460a060020a60ff02191660a060020a1790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258610df93390565b604051610e06919061177a565b60405180910390a1565b8151600160a060020a0382166000908152600c602052604081205460035490915b838110156110b9576000600160a060020a0316868281518110610e5657610e56611983565b6020026020010151600160a060020a031603610e875760405160e560020a62461bcd0281526004016105a89061199d565b600b6000878381518110610e9d57610e9d611983565b602090810291909101810151600160a060020a031682528101919091526040016000205460ff1615610edb578581815181106107c6576107c6611983565b6001600b6000888481518110610ef357610ef3611983565b6020026020010151600160a060020a0316600160a060020a0316815260200190815260200160002060006101000a81548160ff021916908315150217905550858181518110610f4457610f44611983565b602090810291909101810151600160a060020a0387811660009081526007845260408082208883529094529283208054600160a060020a0319169190921617905586518691600891899085908110610f9e57610f9e611983565b6020026020010151600160a060020a0316600160a060020a0316815260200190815260200160002060006101000a815481600160a060020a030219169083600160a060020a0316021790555060016009600088848151811061100257611002611983565b6020026020010151600160a060020a0316600160a060020a0316815260200190815260200160002060006101000a81548160ff02191690831515021790555085818151811061105357611053611983565b6020908102919091018101516000848152600e90925260409091208054600160a060020a031916600160a060020a0390921691909117905582611095816119ee565b93505081806110a3906119ee565b92505080806110b1906119ee565b915050610e31565b50600160a060020a039093166000908152600c60205260409020555060035550565b60008054600160a060020a03838116600160a060020a0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b611133610a49565b156108c45760405160e560020a62461bcd02815260206004820152601060248201527f5061757361626c653a207061757365640000000000000000000000000000000060448201526064016105a8565b6002600154036111d85760405160e560020a62461bcd02815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016105a8565b6002600155565b600f5460405160e060020a6370a08231028152600160a060020a03909116906370a082319061121290309060040161177a565b602060405180830381865afa15801561122f573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061125391906118d4565b8111156112755760405160e560020a62461bcd0281526004016105a890611933565b6000620186a0600254836112899190611a3e565b6112939190611a5b565b90506112a464e8d4a5100082611a5b565b905060006112b3601484611a5b565b60105460405160e060020a6370a08231028152919250600160a060020a0316906370a08231906112e790339060040161177a565b602060405180830381865afa158015611304573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061132891906118d4565b82111561137a5760405160e560020a62461bcd02815260206004820152601e60248201527f596f757220555344542062616c616e636520697320746f6f206c6f772121000060448201526064016105a8565b33600090815260086020908152604080832054600990925290912054600160a060020a039091169060ff16156114cb5760006113b7600a85611a5b565b905060006113c6826009611a3e565b601054909150600160a060020a03166323b872dd336113e3610b60565b846040518463ffffffff1660e060020a028152600401611405939291906118ed565b6020604051808303816000875af1158015611424573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114489190611911565b5060105460405160e060020a6323b872dd028152600160a060020a03909116906323b872dd90611480903390879087906004016118ed565b6020604051808303816000875af115801561149f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114c39190611911565b50505061154c565b601054600160a060020a03166323b872dd336114e5610b60565b866040518463ffffffff1660e060020a028152600401611507939291906118ed565b6020604051808303816000875af1158015611526573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061154a9190611911565b505b826005600082825461155e9190611a81565b9091555050600f5460405160e060020a63a9059cbb028152600160a060020a039091169063a9059cbb90611598903390889060040161196a565b6020604051808303816000875af11580156115b7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115db9190611911565b5083600660008282546115ee9190611a81565b9091555050336000908152600b602052604090205460ff161561168c57600f54600160a060020a03166323b872dd611624610b60565b33856040518463ffffffff1660e060020a028152600401611647939291906118ed565b6020604051808303816000875af1158015611666573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061168a9190611911565b505b50505050565b61169a6116d1565b6000805460a060020a60ff02191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa33610df9565b6116d9610a49565b6108c45760405160e560020a62461bcd02815260206004820152601460248201527f5061757361626c653a206e6f742070617573656400000000000000000000000060448201526064016105a8565b8035600160a060020a0381168114610b4a57600080fd5b60006020828403121561175157600080fd5b61175a82611728565b9392505050565b60006020828403121561177357600080fd5b5035919050565b600160a060020a0391909116815260200190565b60e060020a634e487b710260009081526041600452602490fd5b600082601f8301126117b957600080fd5b8135602067ffffffffffffffff808311156117d6576117d661178e565b818302604051601f19603f830116810181811084821117156117fa576117fa61178e565b60405293845285810183019383810192508785111561181857600080fd5b83870191505b8482101561183e5761182f82611728565b8352918301919083019061181e565b979650505050505050565b60006020828403121561185b57600080fd5b813567ffffffffffffffff81111561187257600080fd5b61187e848285016117a8565b949350505050565b6000806040838503121561189957600080fd5b823567ffffffffffffffff8111156118b057600080fd5b6118bc858286016117a8565b9250506118cb60208401611728565b90509250929050565b6000602082840312156118e657600080fd5b5051919050565b600160a060020a039384168152919092166020820152604081019190915260600190565b60006020828403121561192357600080fd5b8151801515811461175a57600080fd5b6020808252601c908201527f5468652058504f4c2062616c616e636520697320746f6f206c6f772100000000604082015260600190565b600160a060020a03929092168252602082015260400190565b60e060020a634e487b710260009081526032600452602490fd5b60208082526013908201527f4e6f7420612076616c6964206164647265737300000000000000000000000000604082015260600190565b60e060020a634e487b710260009081526011600452602490fd5b600060018201611a0057611a006119d4565b5060010190565b60208082526018908201527f43616c6c6572206973206e6f74206120706172746e6572210000000000000000604082015260600190565b8082028115828204841417611a5557611a556119d4565b92915050565b600082611a7c5760e060020a634e487b710260009081526012600452602490fd5b500490565b80820180821115611a5557611a556119d456fea264697066735822122021c5313d5e40921cd3350b37a4bd5a0fbdd2c563ae8ae664fd3d087089ade95864736f6c6343000815003300000000000000000000000078347fdd530dc08b176353e3daad8a5823c39665

Deployed Bytecode

0x60806040526004361061015f5760003560e060020a900480638da5cb5b116100c05780638da5cb5b1461032a57806391b7f5ed1461033f578063923deb0c1461035f57806393a34b291461037f57806395c336521461039f57806396032702146103cf57806397a993aa146103ef57806398d5fdca1461041f578063a451fd0314610434578063a8cbf23814610449578063aa5b3f5514610469578063b33712c514610489578063e97265591461049e578063f2fde38b146104be57600080fd5b806305d85eda1461016b5780632e1a7d4d146101ab5780632f48ab7d146101cd57806339301139146101fa578063425c4e6f1461021a578063439766ce1461023a578063527913b11461024f578063542802a8146102655780635905fe7d146102855780635c975abb1461029b57806360382b81146102c0578063715018a6146102e05780637feafd20146102f55780638a38a4e41461031557600080fd5b3661016657005b600080fd5b34801561017757600080fd5b5061019861018636600461173f565b600c6020526000908152604090205481565b6040519081526020015b60405180910390f35b3480156101b757600080fd5b506101cb6101c6366004611761565b6104de565b005b3480156101d957600080fd5b506010546101ed90600160a060020a031681565b6040516101a2919061177a565b34801561020657600080fd5b506101cb610215366004611761565b610634565b34801561022657600080fd5b506101cb610235366004611849565b61070c565b34801561024657600080fd5b506101cb6108b4565b34801561025b57600080fd5b5061019860055481565b34801561027157600080fd5b506101cb610280366004611849565b6108c6565b34801561029157600080fd5b5061019860065481565b3480156102a757600080fd5b506102b0610a49565b60405190151581526020016101a2565b3480156102cc57600080fd5b506101cb6102db366004611886565b610a59565b3480156102ec57600080fd5b506101cb610b14565b34801561030157600080fd5b506101ed610310366004611761565b610b26565b34801561032157600080fd5b50610198610b4f565b34801561033657600080fd5b506101ed610b60565b34801561034b57600080fd5b506101cb61035a366004611761565b610b6f565b34801561036b57600080fd5b50600f546101ed90600160a060020a031681565b34801561038b57600080fd5b506101ed61039a366004611761565b610b7c565b3480156103ab57600080fd5b506102b06103ba36600461173f565b600a6020526000908152604090205460ff1681565b3480156103db57600080fd5b506101cb6103ea366004611761565b610bd5565b3480156103fb57600080fd5b506102b061040a36600461173f565b600b6020526000908152604090205460ff1681565b34801561042b57600080fd5b50610198610bfa565b34801561044057600080fd5b50610198610c15565b34801561045557600080fd5b506101ed610464366004611761565b610c26565b34801561047557600080fd5b506101cb610484366004611849565b610c4c565b34801561049557600080fd5b506101cb610c88565b3480156104aa57600080fd5b506101ed6104b936600461173f565b610c98565b3480156104ca57600080fd5b506101cb6104d936600461173f565b610cc1565b6104e6610d51565b60105460405160e060020a6370a08231028152600160a060020a03909116906370a082319061051990309060040161177a565b602060405180830381865afa158015610536573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061055a91906118d4565b8111156105b15760405160e560020a62461bcd02815260206004820152600f60248201527f4e6f7420656e6f7567682055534454000000000000000000000000000000000060448201526064015b60405180910390fd5b601054600160a060020a03166323b872dd306105cb610b60565b846040518463ffffffff1660e060020a0281526004016105ed939291906118ed565b6020604051808303816000875af115801561060c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106309190611911565b5050565b61063c610d51565b600f5460405160e060020a6370a08231028152600160a060020a03909116906370a082319061066f90309060040161177a565b602060405180830381865afa15801561068c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106b091906118d4565b8111156106d25760405160e560020a62461bcd0281526004016105a890611933565b600f54600160a060020a031663a9059cbb6106eb610b60565b836040518363ffffffff1660e060020a0281526004016105ed92919061196a565b610714610d51565b805160035460005b828110156108ac576000600160a060020a031684828151811061074157610741611983565b6020026020010151600160a060020a0316036107725760405160e560020a62461bcd0281526004016105a89061199d565b600b600085838151811061078857610788611983565b602090810291909101810151600160a060020a031682528101919091526040016000205460ff16156107eb578381815181106107c6576107c6611983565b602002602001015160405160e460020a6309ae14270281526004016105a8919061177a565b6001600b600086848151811061080357610803611983565b6020026020010151600160a060020a0316600160a060020a0316815260200190815260200160002060006101000a81548160ff02191690831515021790555083818151811061085457610854611983565b6020908102919091018101516000848152600e90925260409091208054600160a060020a031916600160a060020a0390921691909117905581610896816119ee565b92505080806108a4906119ee565b91505061071c565b506003555050565b6108bc610d51565b6108c4610db3565b565b6108ce610d51565b805160045460005b82811015610a41576000600160a060020a03168482815181106108fb576108fb611983565b6020026020010151600160a060020a03160361092c5760405160e560020a62461bcd0281526004016105a89061199d565b600a600085838151811061094257610942611983565b602090810291909101810151600160a060020a031682528101919091526040016000205460ff1615610980578381815181106107c6576107c6611983565b6001600a600086848151811061099857610998611983565b6020026020010151600160a060020a0316600160a060020a0316815260200190815260200160002060006101000a81548160ff0219169083151502179055508381815181106109e9576109e9611983565b6020908102919091018101516000848152600d90925260409091208054600160a060020a031916600160a060020a0390921691909117905581610a2b816119ee565b9250508080610a39906119ee565b9150506108d6565b506004555050565b60005460a060020a900460ff1690565b610a61610d51565b600160a060020a0381166000908152600a602052604090205460ff16610acc5760405160e560020a62461bcd02815260206004820152601960248201527f57616c6c6574206973206e6f74206120706172746e657273210000000000000060448201526064016105a8565b600160a060020a0381166000908152600a602052604090205460ff16610b0a578060405160e460020a6309ae14270281526004016105a8919061177a565b6106308282610e10565b610b1c610d51565b6108c460006110db565b6000610b30610d51565b506000818152600e6020526040902054600160a060020a03165b919050565b6000610b59610d51565b5060035490565b600054600160a060020a031690565b610b77610d51565b600255565b336000908152600a602052604081205460ff16610bae5760405160e560020a62461bcd0281526004016105a890611a07565b503360009081526007602090815260408083209383529290522054600160a060020a031690565b610bdd61112b565b610be5611183565b610bee816111df565b610bf760018055565b50565b60006002546509184e72a000610c109190611a3e565b905090565b6000610c1f610d51565b5060045490565b6000610c30610d51565b506000908152600d6020526040902054600160a060020a031690565b336000908152600a602052604090205460ff16610c7e5760405160e560020a62461bcd0281526004016105a890611a07565b610bf78133610e10565b610c90610d51565b6108c4611692565b6000610ca2610d51565b50600160a060020a039081166000908152600860205260409020541690565b610cc9610d51565b600160a060020a038116610d485760405160e560020a62461bcd02815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f646472657373000000000000000000000000000000000000000000000000000060648201526084016105a8565b610bf7816110db565b33610d5a610b60565b600160a060020a0316146108c45760405160e560020a62461bcd02815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016105a8565b610dbb61112b565b6000805460a060020a60ff02191660a060020a1790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258610df93390565b604051610e06919061177a565b60405180910390a1565b8151600160a060020a0382166000908152600c602052604081205460035490915b838110156110b9576000600160a060020a0316868281518110610e5657610e56611983565b6020026020010151600160a060020a031603610e875760405160e560020a62461bcd0281526004016105a89061199d565b600b6000878381518110610e9d57610e9d611983565b602090810291909101810151600160a060020a031682528101919091526040016000205460ff1615610edb578581815181106107c6576107c6611983565b6001600b6000888481518110610ef357610ef3611983565b6020026020010151600160a060020a0316600160a060020a0316815260200190815260200160002060006101000a81548160ff021916908315150217905550858181518110610f4457610f44611983565b602090810291909101810151600160a060020a0387811660009081526007845260408082208883529094529283208054600160a060020a0319169190921617905586518691600891899085908110610f9e57610f9e611983565b6020026020010151600160a060020a0316600160a060020a0316815260200190815260200160002060006101000a815481600160a060020a030219169083600160a060020a0316021790555060016009600088848151811061100257611002611983565b6020026020010151600160a060020a0316600160a060020a0316815260200190815260200160002060006101000a81548160ff02191690831515021790555085818151811061105357611053611983565b6020908102919091018101516000848152600e90925260409091208054600160a060020a031916600160a060020a0390921691909117905582611095816119ee565b93505081806110a3906119ee565b92505080806110b1906119ee565b915050610e31565b50600160a060020a039093166000908152600c60205260409020555060035550565b60008054600160a060020a03838116600160a060020a0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b611133610a49565b156108c45760405160e560020a62461bcd02815260206004820152601060248201527f5061757361626c653a207061757365640000000000000000000000000000000060448201526064016105a8565b6002600154036111d85760405160e560020a62461bcd02815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016105a8565b6002600155565b600f5460405160e060020a6370a08231028152600160a060020a03909116906370a082319061121290309060040161177a565b602060405180830381865afa15801561122f573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061125391906118d4565b8111156112755760405160e560020a62461bcd0281526004016105a890611933565b6000620186a0600254836112899190611a3e565b6112939190611a5b565b90506112a464e8d4a5100082611a5b565b905060006112b3601484611a5b565b60105460405160e060020a6370a08231028152919250600160a060020a0316906370a08231906112e790339060040161177a565b602060405180830381865afa158015611304573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061132891906118d4565b82111561137a5760405160e560020a62461bcd02815260206004820152601e60248201527f596f757220555344542062616c616e636520697320746f6f206c6f772121000060448201526064016105a8565b33600090815260086020908152604080832054600990925290912054600160a060020a039091169060ff16156114cb5760006113b7600a85611a5b565b905060006113c6826009611a3e565b601054909150600160a060020a03166323b872dd336113e3610b60565b846040518463ffffffff1660e060020a028152600401611405939291906118ed565b6020604051808303816000875af1158015611424573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114489190611911565b5060105460405160e060020a6323b872dd028152600160a060020a03909116906323b872dd90611480903390879087906004016118ed565b6020604051808303816000875af115801561149f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114c39190611911565b50505061154c565b601054600160a060020a03166323b872dd336114e5610b60565b866040518463ffffffff1660e060020a028152600401611507939291906118ed565b6020604051808303816000875af1158015611526573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061154a9190611911565b505b826005600082825461155e9190611a81565b9091555050600f5460405160e060020a63a9059cbb028152600160a060020a039091169063a9059cbb90611598903390889060040161196a565b6020604051808303816000875af11580156115b7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115db9190611911565b5083600660008282546115ee9190611a81565b9091555050336000908152600b602052604090205460ff161561168c57600f54600160a060020a03166323b872dd611624610b60565b33856040518463ffffffff1660e060020a028152600401611647939291906118ed565b6020604051808303816000875af1158015611666573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061168a9190611911565b505b50505050565b61169a6116d1565b6000805460a060020a60ff02191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa33610df9565b6116d9610a49565b6108c45760405160e560020a62461bcd02815260206004820152601460248201527f5061757361626c653a206e6f742070617573656400000000000000000000000060448201526064016105a8565b8035600160a060020a0381168114610b4a57600080fd5b60006020828403121561175157600080fd5b61175a82611728565b9392505050565b60006020828403121561177357600080fd5b5035919050565b600160a060020a0391909116815260200190565b60e060020a634e487b710260009081526041600452602490fd5b600082601f8301126117b957600080fd5b8135602067ffffffffffffffff808311156117d6576117d661178e565b818302604051601f19603f830116810181811084821117156117fa576117fa61178e565b60405293845285810183019383810192508785111561181857600080fd5b83870191505b8482101561183e5761182f82611728565b8352918301919083019061181e565b979650505050505050565b60006020828403121561185b57600080fd5b813567ffffffffffffffff81111561187257600080fd5b61187e848285016117a8565b949350505050565b6000806040838503121561189957600080fd5b823567ffffffffffffffff8111156118b057600080fd5b6118bc858286016117a8565b9250506118cb60208401611728565b90509250929050565b6000602082840312156118e657600080fd5b5051919050565b600160a060020a039384168152919092166020820152604081019190915260600190565b60006020828403121561192357600080fd5b8151801515811461175a57600080fd5b6020808252601c908201527f5468652058504f4c2062616c616e636520697320746f6f206c6f772100000000604082015260600190565b600160a060020a03929092168252602082015260400190565b60e060020a634e487b710260009081526032600452602490fd5b60208082526013908201527f4e6f7420612076616c6964206164647265737300000000000000000000000000604082015260600190565b60e060020a634e487b710260009081526011600452602490fd5b600060018201611a0057611a006119d4565b5060010190565b60208082526018908201527f43616c6c6572206973206e6f74206120706172746e6572210000000000000000604082015260600190565b8082028115828204841417611a5557611a556119d4565b92915050565b600082611a7c5760e060020a634e487b710260009081526012600452602490fd5b500490565b80820180821115611a5557611a556119d456fea264697066735822122021c5313d5e40921cd3350b37a4bd5a0fbdd2c563ae8ae664fd3d087089ade95864736f6c63430008150033

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

00000000000000000000000078347fdd530dc08b176353e3daad8a5823c39665

-----Decoded View---------------
Arg [0] : _tPol (address): 0x78347FDD530dc08B176353E3Daad8A5823C39665

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 00000000000000000000000078347fdd530dc08b176353e3daad8a5823c39665


Block Transaction Gas Used Reward
view all blocks produced

Block Uncle Number Difficulty Gas Used Reward
View All Uncles
Loading...
Loading
Loading...
Loading

Validator Index Block Amount
View All Withdrawals

Transaction Hash Block Value Eth2 PubKey Valid
View All Deposits
[ Download: CSV Export  ]

A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.