ETH Price: $2,400.16 (-0.22%)

Contract

0x6804de181763E5Ea442557D5Ce2630BCE41A0Cf7
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Token Holdings

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Sacrifice RB178400032023-08-04 7:02:11398 days ago1691132531IN
0x6804de18...CE41A0Cf7
0 ETH0.0365828314.19877553
Sacrifice AT177749742023-07-26 4:49:23407 days ago1690346963IN
0x6804de18...CE41A0Cf7
0 ETH0.0016139515.34772545
Set RB Reward176995312023-07-15 15:01:11418 days ago1689433271IN
0x6804de18...CE41A0Cf7
0 ETH0.0004006413.8236143
Set AT Reward176995302023-07-15 15:00:59418 days ago1689433259IN
0x6804de18...CE41A0Cf7
0 ETH0.0004076914.05607258
Sacrifice AT176910072023-07-14 10:07:59419 days ago1689329279IN
0x6804de18...CE41A0Cf7
0 ETH0.0062249423.69448581
Sacrifice AT176909522023-07-14 9:56:59419 days ago1689328619IN
0x6804de18...CE41A0Cf7
0 ETH0.0052788316.35854558
Sacrifice AT176908352023-07-14 9:33:35419 days ago1689327215IN
0x6804de18...CE41A0Cf7
0 ETH0.0103737418.70757226
Sacrifice AT176906572023-07-14 8:57:23419 days ago1689325043IN
0x6804de18...CE41A0Cf7
0 ETH0.0013644815.4950913
Sacrifice AT176890762023-07-14 3:36:23419 days ago1689305783IN
0x6804de18...CE41A0Cf7
0 ETH0.0019498918.48940382
Sacrifice AT176834812023-07-13 8:44:35420 days ago1689237875IN
0x6804de18...CE41A0Cf7
0 ETH0.0018298117.35083928
Sacrifice AT176823692023-07-13 4:59:11420 days ago1689224351IN
0x6804de18...CE41A0Cf7
0 ETH0.0012645414.36025647
Sacrifice AT176796622023-07-12 19:50:35421 days ago1689191435IN
0x6804de18...CE41A0Cf7
0 ETH0.0065353732.16115962
Sacrifice AT176786212023-07-12 16:19:35421 days ago1689178775IN
0x6804de18...CE41A0Cf7
0 ETH0.0041788837.83301887
Set RB Reward176782992023-07-12 15:14:11421 days ago1689174851IN
0x6804de18...CE41A0Cf7
0 ETH0.0016578357.20025631
Set AT Reward176782972023-07-12 15:13:47421 days ago1689174827IN
0x6804de18...CE41A0Cf7
0 ETH0.0017190959.2688025
Sacrifice AT176742662023-07-12 1:36:35422 days ago1689125795IN
0x6804de18...CE41A0Cf7
0 ETH0.0058391825.80158951
Sacrifice AT176678012023-07-11 3:48:11422 days ago1689047291IN
0x6804de18...CE41A0Cf7
0 ETH0.0023614416.9487978
Sacrifice AT176674832023-07-11 2:43:59423 days ago1689043439IN
0x6804de18...CE41A0Cf7
0 ETH0.0016436313.37812449
Sacrifice AT176673312023-07-11 2:12:59423 days ago1689041579IN
0x6804de18...CE41A0Cf7
0 ETH0.001552514.72129659
Sacrifice AT176671092023-07-11 1:27:47423 days ago1689038867IN
0x6804de18...CE41A0Cf7
0 ETH0.0013498915.329446
Sacrifice AT176670672023-07-11 1:19:11423 days ago1689038351IN
0x6804de18...CE41A0Cf7
0 ETH0.0013218615.01114428
Sacrifice RB176624882023-07-10 9:51:35423 days ago1688982695IN
0x6804de18...CE41A0Cf7
0 ETH0.0013226715.02924434
Sacrifice AT176613262023-07-10 5:55:59423 days ago1688968559IN
0x6804de18...CE41A0Cf7
0 ETH0.0042455211.72021908
Sacrifice AT176608362023-07-10 4:16:59423 days ago1688962619IN
0x6804de18...CE41A0Cf7
0 ETH0.0062891412.88196505
Sacrifice RB176584852023-07-09 20:21:11424 days ago1688934071IN
0x6804de18...CE41A0Cf7
0 ETH0.0034888716.2514407
View all transactions

View more zero value Internal Transactions in Advanced View mode

Advanced mode:
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
AswangTribeSacrifice

Compiler Version
v0.8.18+commit.87f61d96

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 5 : AswangTribeSacrifice.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.9;

import "@openzeppelin/contracts/access/Ownable.sol";
import "./IERC721A.sol";
import "./IERC20.sol";

contract AswangTribeSacrifice is Ownable {
    uint public ATReward;
    uint public RBReward;
    address public ATAddy;
    address public RBAddy;
    address public DugoAddy;
    address burnAddy;
    IERC721A public ATContract;
    IERC721A public RBContract;
    IERC20 public DugoContract;

    event ATSacrificed(uint[] tokenIds);
    event RBSacrificed(uint[] tokenIds); 

    constructor() {
        ATReward = 600 ether;
        RBReward = 10 ether;
        ATAddy = 0xb189789434a4728F45B88B009BeE5f4b339e3e88;
        RBAddy = 0xa462127735352B1F03dA8Ab92a87803d05cc6a7B;
        DugoAddy = 0xc6FDa51Da94bc7dDE0e8a5Ff3C45906AcD6ddC03;
        burnAddy = 0x000000000000000000000000000000000000dEaD;
        ATContract = IERC721A(ATAddy);
        RBContract = IERC721A(RBAddy);
        DugoContract = IERC20(DugoAddy);
    }

    function setATReward(uint newReward) external onlyOwner {
        ATReward = newReward;
    }

    function setRBReward(uint newReward) external onlyOwner {
        RBReward = newReward;
    }

    function burnCount() external view returns (uint) {
        return ATContract.balanceOf(burnAddy);
    }

    function dugoBalance() external view returns (uint) {
        return DugoContract.balanceOf(address(this));
    }
    
    /* SACRIFICE ASWANG TRIBE IN EXCHANGE FOR DUGO*/
    function sacrificeAT(uint256[] calldata tokenIds) external {
         uint256 balance = DugoContract.balanceOf(address(this));
        require(balance >= ATReward * tokenIds.length, "Insufficient Dugo Balance");
         for (uint256 i; i < tokenIds.length;) {
            uint256 tokenId = tokenIds[i];

            require(ATContract.ownerOf(tokenId) == msg.sender, "You don't own the token you are trying to burn");
            //BURN TOKEN
            (bool burnSuccess, ) = ATAddy.call(abi.encodeWithSelector(ATContract.transferFrom.selector, msg.sender, burnAddy, tokenId));
            require(burnSuccess, "Please approve contract to manage tokenId");
            
            //TRANSFER DUGO
            unchecked { ++i; }
        }
        // (bool transferSuccess, ) = DugoAddy.call(abi.encodeWithSelector(DugoContract.transferFrom.selector, address(this), msg.sender, ATReward * tokenIds.length));
        (bool transferSuccess, ) = DugoAddy.call(abi.encodeWithSelector(DugoContract.transfer.selector, msg.sender, ATReward * tokenIds.length));
        require(transferSuccess, "Reward transfer failed");
        emit ATSacrificed(tokenIds);
    }

    /* SACRIFICE RADIOACTIVE BALUT IN EXCHANGE FOR DUGO*/
    function sacrificeRB(uint256[] calldata tokenIds) external {
         uint256 balance = DugoContract.balanceOf(address(this));
        require(balance >= RBReward * tokenIds.length, "Insufficient Dugo Balance");
         for (uint256 i; i < tokenIds.length;) {
            uint256 tokenId = tokenIds[i];

            require(RBContract.ownerOf(tokenId) == msg.sender, "You don't own the token you are trying to burn");
            //BURN TOKEN
            (bool burnSuccess, ) = RBAddy.call(abi.encodeWithSelector(RBContract.transferFrom.selector, msg.sender, burnAddy, tokenId));
            require(burnSuccess, "Please approve contract to manage tokenId");
            
            //TRANSFER DUGO
            unchecked { ++i; }
        }
        // (bool transferSuccess, ) = DugoAddy.call(abi.encodeWithSelector(DugoContract.transferFrom.selector, address(this), msg.sender, ATReward * tokenIds.length));
        (bool transferSuccess, ) = DugoAddy.call(abi.encodeWithSelector(DugoContract.transfer.selector, msg.sender, RBReward * tokenIds.length));
        require(transferSuccess, "Reward transfer failed");
        emit RBSacrificed(tokenIds);
    }

    

}

File 2 of 5 : IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

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

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

File 3 of 5 : IERC721A.sol
// SPDX-License-Identifier: MIT
// ERC721A Contracts v4.0.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;

/**
 * @dev Interface of an ERC721A compliant contract.
 */
interface IERC721A {
    /**
     * The caller must own the token or be an approved operator.
     */
    error ApprovalCallerNotOwnerNorApproved();

    /**
     * The token does not exist.
     */
    error ApprovalQueryForNonexistentToken();

    /**
     * The caller cannot approve to their own address.
     */
    error ApproveToCaller();

    /**
     * The caller cannot approve to the current owner.
     */
    error ApprovalToCurrentOwner();

    /**
     * Cannot query the balance for the zero address.
     */
    error BalanceQueryForZeroAddress();

    /**
     * Cannot mint to the zero address.
     */
    error MintToZeroAddress();

    /**
     * The quantity of tokens minted must be more than zero.
     */
    error MintZeroQuantity();

    /**
     * The token does not exist.
     */
    error OwnerQueryForNonexistentToken();

    /**
     * The caller must own the token or be an approved operator.
     */
    error TransferCallerNotOwnerNorApproved();

    /**
     * The token must be owned by `from`.
     */
    error TransferFromIncorrectOwner();

    /**
     * Cannot safely transfer to a contract that does not implement the ERC721Receiver interface.
     */
    error TransferToNonERC721ReceiverImplementer();

    /**
     * Cannot transfer to the zero address.
     */
    error TransferToZeroAddress();

    /**
     * The token does not exist.
     */
    error URIQueryForNonexistentToken();

    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Keeps track of the start time of ownership with minimal overhead for tokenomics.
        uint64 startTimestamp;
        // Whether the token has been burned.
        bool burned;
    }

    /**
     * @dev Returns the total amount of tokens stored by the contract.
     *
     * Burned tokens are calculated here, use `_totalMinted()` if you want to count just minted tokens.
     */
    function totalSupply() external view returns (uint256);

    // ==============================
    //            IERC165
    // ==============================

    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);

    // ==============================
    //            IERC721
    // ==============================

    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.
     */
    event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.
     */
    event ApprovalForAll(address indexed owner, address indexed operator, bool approved);

    /**
     * @dev Returns the number of tokens in ``owner``'s account.
     */
    function balanceOf(address owner) external view returns (uint256 balance);

    /**
     * @dev Returns the owner of the `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function ownerOf(uint256 tokenId) external view returns (address owner);

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes calldata data
    ) external;

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Transfers `tokenId` token from `from` to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Gives permission to `to` to transfer `tokenId` token to another account.
     * The approval is cleared when the token is transferred.
     *
     * Only a single account can be approved at a time, so approving the zero address clears previous approvals.
     *
     * Requirements:
     *
     * - The caller must own the token or be an approved operator.
     * - `tokenId` must exist.
     *
     * Emits an {Approval} event.
     */
    function approve(address to, uint256 tokenId) external;

    /**
     * @dev Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool _approved) external;

    /**
     * @dev Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

    /**
     * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.
     *
     * See {setApprovalForAll}
     */
    function isApprovedForAll(address owner, address operator) external view returns (bool);

    // ==============================
    //        IERC721Metadata
    // ==============================

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

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

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    function tokenURI(uint256 tokenId) external view returns (string memory);
}

File 4 of 5 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.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 anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing 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 5 of 5 : 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;
    }
}

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"}],"name":"ATSacrificed","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":false,"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"}],"name":"RBSacrificed","type":"event"},{"inputs":[],"name":"ATAddy","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ATContract","outputs":[{"internalType":"contract IERC721A","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ATReward","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DugoAddy","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DugoContract","outputs":[{"internalType":"contract IERC20","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"RBAddy","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"RBContract","outputs":[{"internalType":"contract IERC721A","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"RBReward","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"burnCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"dugoBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"}],"name":"sacrificeAT","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"}],"name":"sacrificeRB","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newReward","type":"uint256"}],"name":"setATReward","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newReward","type":"uint256"}],"name":"setRBReward","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405234801561001057600080fd5b5061002d6100226102bc60201b60201c565b6102c460201b60201c565b682086ac351052600000600181905550678ac7230489e8000060028190555073b189789434a4728f45b88b009bee5f4b339e3e88600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073a462127735352b1f03da8ab92a87803d05cc6a7b600460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073c6fda51da94bc7dde0e8a5ff3c45906acd6ddc03600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555061dead600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550610388565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611a80806103976000396000f3fe608060405234801561001057600080fd5b506004361061010b5760003560e01c806359826521116100a25780638da5cb5b116100715780638da5cb5b1461026057806398026a681461027e578063e670b1391461029a578063eb640c77146102b6578063f2fde38b146102d45761010b565b806359826521146101fe57806367c1a1a01461021a578063715018a6146102385780638045484d146102425761010b565b80631fcba69e116100de5780631fcba69e146101885780634fa8a7df146101a657806351a12518146101c2578063524773ce146101e05761010b565b806302eded95146101105780630f5fdaa11461012e57806313cae2921461014c5780631ecb0fa41461016a575b600080fd5b6101186102f0565b604051610125919061125f565b60405180910390f35b610136610316565b604051610143919061129b565b60405180910390f35b61015461033c565b60405161016191906112d7565b60405180910390f35b610172610362565b60405161017f919061130b565b60405180910390f35b610190610405565b60405161019d91906112d7565b60405180910390f35b6101c060048036038101906101bb919061135c565b61042b565b005b6101ca61043d565b6040516101d7919061125f565b60405180910390f35b6101e8610463565b6040516101f5919061130b565b60405180910390f35b6102186004803603810190610213919061135c565b610528565b005b61022261053a565b60405161022f919061130b565b60405180910390f35b610240610540565b005b61024a610554565b604051610257919061130b565b60405180910390f35b61026861055a565b60405161027591906112d7565b60405180910390f35b610298600480360381019061029391906113ee565b610583565b005b6102b460048036038101906102af91906113ee565b610ab8565b005b6102be610fed565b6040516102cb91906112d7565b60405180910390f35b6102ee60048036038101906102e99190611467565b611013565b005b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016103bf91906112d7565b602060405180830381865afa1580156103dc573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061040091906114a9565b905090565b600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610433611096565b8060018190555050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166040518263ffffffff1660e01b81526004016104e291906112d7565b602060405180830381865afa1580156104ff573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061052391906114a9565b905090565b610530611096565b8060028190555050565b60025481565b610548611096565b6105526000611114565b565b60015481565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016105e091906112d7565b602060405180830381865afa1580156105fd573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061062191906114a9565b9050828290506002546106349190611505565b811015610676576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161066d906115a4565b60405180910390fd5b60005b83839050811015610922576000848483818110610699576106986115c4565b5b9050602002013590503373ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16636352211e836040518263ffffffff1660e01b8152600401610714919061130b565b602060405180830381865afa158015610731573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107559190611608565b73ffffffffffffffffffffffffffffffffffffffff16146107ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107a2906116a7565b60405180910390fd5b6000600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166323b872dd60e01b33600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1685604051602401610825939291906116c7565b604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff838183161783525050505060405161088f919061176f565b6000604051808303816000865af19150503d80600081146108cc576040519150601f19603f3d011682016040523d82523d6000602084013e6108d1565b606091505b5050905080610915576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161090c906117f8565b60405180910390fd5b8260010192505050610679565b506000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb60e01b33868690506002546109789190611505565b604051602401610989929190611818565b604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff83818316178352505050506040516109f3919061176f565b6000604051808303816000865af19150503d8060008114610a30576040519150601f19603f3d011682016040523d82523d6000602084013e610a35565b606091505b5050905080610a79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a709061188d565b60405180910390fd5b7f991af1bbbe2e2036ec264bc9ef746d920eb2e38cdc8b3eefbc7509979247d3098484604051610aaa929190611928565b60405180910390a150505050565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401610b1591906112d7565b602060405180830381865afa158015610b32573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b5691906114a9565b905082829050600154610b699190611505565b811015610bab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ba2906115a4565b60405180910390fd5b60005b83839050811015610e57576000848483818110610bce57610bcd6115c4565b5b9050602002013590503373ffffffffffffffffffffffffffffffffffffffff16600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16636352211e836040518263ffffffff1660e01b8152600401610c49919061130b565b602060405180830381865afa158015610c66573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c8a9190611608565b73ffffffffffffffffffffffffffffffffffffffff1614610ce0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cd7906116a7565b60405180910390fd5b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166323b872dd60e01b33600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1685604051602401610d5a939291906116c7565b604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050604051610dc4919061176f565b6000604051808303816000865af19150503d8060008114610e01576040519150601f19603f3d011682016040523d82523d6000602084013e610e06565b606091505b5050905080610e4a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e41906117f8565b60405180910390fd5b8260010192505050610bae565b506000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb60e01b3386869050600154610ead9190611505565b604051602401610ebe929190611818565b604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050604051610f28919061176f565b6000604051808303816000865af19150503d8060008114610f65576040519150601f19603f3d011682016040523d82523d6000602084013e610f6a565b606091505b5050905080610fae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fa59061188d565b60405180910390fd5b7f72c6fe66bdf59219a709fbd1f926fd2dccd696f9b4de651939128e95545139fb8484604051610fdf929190611928565b60405180910390a150505050565b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b61101b611096565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361108a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611081906119be565b60405180910390fd5b61109381611114565b50565b61109e6111d8565b73ffffffffffffffffffffffffffffffffffffffff166110bc61055a565b73ffffffffffffffffffffffffffffffffffffffff1614611112576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110990611a2a565b60405180910390fd5b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600061122561122061121b846111e0565b611200565b6111e0565b9050919050565b60006112378261120a565b9050919050565b60006112498261122c565b9050919050565b6112598161123e565b82525050565b60006020820190506112746000830184611250565b92915050565b60006112858261122c565b9050919050565b6112958161127a565b82525050565b60006020820190506112b0600083018461128c565b92915050565b60006112c1826111e0565b9050919050565b6112d1816112b6565b82525050565b60006020820190506112ec60008301846112c8565b92915050565b6000819050919050565b611305816112f2565b82525050565b600060208201905061132060008301846112fc565b92915050565b600080fd5b600080fd5b611339816112f2565b811461134457600080fd5b50565b60008135905061135681611330565b92915050565b60006020828403121561137257611371611326565b5b600061138084828501611347565b91505092915050565b600080fd5b600080fd5b600080fd5b60008083601f8401126113ae576113ad611389565b5b8235905067ffffffffffffffff8111156113cb576113ca61138e565b5b6020830191508360208202830111156113e7576113e6611393565b5b9250929050565b6000806020838503121561140557611404611326565b5b600083013567ffffffffffffffff8111156114235761142261132b565b5b61142f85828601611398565b92509250509250929050565b611444816112b6565b811461144f57600080fd5b50565b6000813590506114618161143b565b92915050565b60006020828403121561147d5761147c611326565b5b600061148b84828501611452565b91505092915050565b6000815190506114a381611330565b92915050565b6000602082840312156114bf576114be611326565b5b60006114cd84828501611494565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000611510826112f2565b915061151b836112f2565b9250828202611529816112f2565b915082820484148315176115405761153f6114d6565b5b5092915050565b600082825260208201905092915050565b7f496e73756666696369656e74204475676f2042616c616e636500000000000000600082015250565b600061158e601983611547565b915061159982611558565b602082019050919050565b600060208201905081810360008301526115bd81611581565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000815190506116028161143b565b92915050565b60006020828403121561161e5761161d611326565b5b600061162c848285016115f3565b91505092915050565b7f596f7520646f6e2774206f776e2074686520746f6b656e20796f75206172652060008201527f747279696e6720746f206275726e000000000000000000000000000000000000602082015250565b6000611691602e83611547565b915061169c82611635565b604082019050919050565b600060208201905081810360008301526116c081611684565b9050919050565b60006060820190506116dc60008301866112c8565b6116e960208301856112c8565b6116f660408301846112fc565b949350505050565b600081519050919050565b600081905092915050565b60005b83811015611732578082015181840152602081019050611717565b60008484015250505050565b6000611749826116fe565b6117538185611709565b9350611763818560208601611714565b80840191505092915050565b600061177b828461173e565b915081905092915050565b7f506c6561736520617070726f766520636f6e747261637420746f206d616e616760008201527f6520746f6b656e49640000000000000000000000000000000000000000000000602082015250565b60006117e2602983611547565b91506117ed82611786565b604082019050919050565b60006020820190508181036000830152611811816117d5565b9050919050565b600060408201905061182d60008301856112c8565b61183a60208301846112fc565b9392505050565b7f526577617264207472616e73666572206661696c656400000000000000000000600082015250565b6000611877601683611547565b915061188282611841565b602082019050919050565b600060208201905081810360008301526118a68161186a565b9050919050565b600082825260208201905092915050565b600080fd5b82818337505050565b60006118d883856118ad565b93507f07ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff83111561190b5761190a6118be565b5b60208302925061191c8385846118c3565b82840190509392505050565b600060208201905081810360008301526119438184866118cc565b90509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006119a8602683611547565b91506119b38261194c565b604082019050919050565b600060208201905081810360008301526119d78161199b565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611a14602083611547565b9150611a1f826119de565b602082019050919050565b60006020820190508181036000830152611a4381611a07565b905091905056fea2646970667358221220f7acaa401151e72a5206d3694e366a46c0c4389c79018d9b5467252457d3f76164736f6c63430008120033

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061010b5760003560e01c806359826521116100a25780638da5cb5b116100715780638da5cb5b1461026057806398026a681461027e578063e670b1391461029a578063eb640c77146102b6578063f2fde38b146102d45761010b565b806359826521146101fe57806367c1a1a01461021a578063715018a6146102385780638045484d146102425761010b565b80631fcba69e116100de5780631fcba69e146101885780634fa8a7df146101a657806351a12518146101c2578063524773ce146101e05761010b565b806302eded95146101105780630f5fdaa11461012e57806313cae2921461014c5780631ecb0fa41461016a575b600080fd5b6101186102f0565b604051610125919061125f565b60405180910390f35b610136610316565b604051610143919061129b565b60405180910390f35b61015461033c565b60405161016191906112d7565b60405180910390f35b610172610362565b60405161017f919061130b565b60405180910390f35b610190610405565b60405161019d91906112d7565b60405180910390f35b6101c060048036038101906101bb919061135c565b61042b565b005b6101ca61043d565b6040516101d7919061125f565b60405180910390f35b6101e8610463565b6040516101f5919061130b565b60405180910390f35b6102186004803603810190610213919061135c565b610528565b005b61022261053a565b60405161022f919061130b565b60405180910390f35b610240610540565b005b61024a610554565b604051610257919061130b565b60405180910390f35b61026861055a565b60405161027591906112d7565b60405180910390f35b610298600480360381019061029391906113ee565b610583565b005b6102b460048036038101906102af91906113ee565b610ab8565b005b6102be610fed565b6040516102cb91906112d7565b60405180910390f35b6102ee60048036038101906102e99190611467565b611013565b005b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016103bf91906112d7565b602060405180830381865afa1580156103dc573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061040091906114a9565b905090565b600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610433611096565b8060018190555050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166040518263ffffffff1660e01b81526004016104e291906112d7565b602060405180830381865afa1580156104ff573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061052391906114a9565b905090565b610530611096565b8060028190555050565b60025481565b610548611096565b6105526000611114565b565b60015481565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016105e091906112d7565b602060405180830381865afa1580156105fd573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061062191906114a9565b9050828290506002546106349190611505565b811015610676576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161066d906115a4565b60405180910390fd5b60005b83839050811015610922576000848483818110610699576106986115c4565b5b9050602002013590503373ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16636352211e836040518263ffffffff1660e01b8152600401610714919061130b565b602060405180830381865afa158015610731573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107559190611608565b73ffffffffffffffffffffffffffffffffffffffff16146107ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107a2906116a7565b60405180910390fd5b6000600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166323b872dd60e01b33600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1685604051602401610825939291906116c7565b604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff838183161783525050505060405161088f919061176f565b6000604051808303816000865af19150503d80600081146108cc576040519150601f19603f3d011682016040523d82523d6000602084013e6108d1565b606091505b5050905080610915576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161090c906117f8565b60405180910390fd5b8260010192505050610679565b506000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb60e01b33868690506002546109789190611505565b604051602401610989929190611818565b604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff83818316178352505050506040516109f3919061176f565b6000604051808303816000865af19150503d8060008114610a30576040519150601f19603f3d011682016040523d82523d6000602084013e610a35565b606091505b5050905080610a79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a709061188d565b60405180910390fd5b7f991af1bbbe2e2036ec264bc9ef746d920eb2e38cdc8b3eefbc7509979247d3098484604051610aaa929190611928565b60405180910390a150505050565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401610b1591906112d7565b602060405180830381865afa158015610b32573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b5691906114a9565b905082829050600154610b699190611505565b811015610bab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ba2906115a4565b60405180910390fd5b60005b83839050811015610e57576000848483818110610bce57610bcd6115c4565b5b9050602002013590503373ffffffffffffffffffffffffffffffffffffffff16600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16636352211e836040518263ffffffff1660e01b8152600401610c49919061130b565b602060405180830381865afa158015610c66573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c8a9190611608565b73ffffffffffffffffffffffffffffffffffffffff1614610ce0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cd7906116a7565b60405180910390fd5b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166323b872dd60e01b33600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1685604051602401610d5a939291906116c7565b604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050604051610dc4919061176f565b6000604051808303816000865af19150503d8060008114610e01576040519150601f19603f3d011682016040523d82523d6000602084013e610e06565b606091505b5050905080610e4a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e41906117f8565b60405180910390fd5b8260010192505050610bae565b506000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb60e01b3386869050600154610ead9190611505565b604051602401610ebe929190611818565b604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050604051610f28919061176f565b6000604051808303816000865af19150503d8060008114610f65576040519150601f19603f3d011682016040523d82523d6000602084013e610f6a565b606091505b5050905080610fae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fa59061188d565b60405180910390fd5b7f72c6fe66bdf59219a709fbd1f926fd2dccd696f9b4de651939128e95545139fb8484604051610fdf929190611928565b60405180910390a150505050565b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b61101b611096565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361108a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611081906119be565b60405180910390fd5b61109381611114565b50565b61109e6111d8565b73ffffffffffffffffffffffffffffffffffffffff166110bc61055a565b73ffffffffffffffffffffffffffffffffffffffff1614611112576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110990611a2a565b60405180910390fd5b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600061122561122061121b846111e0565b611200565b6111e0565b9050919050565b60006112378261120a565b9050919050565b60006112498261122c565b9050919050565b6112598161123e565b82525050565b60006020820190506112746000830184611250565b92915050565b60006112858261122c565b9050919050565b6112958161127a565b82525050565b60006020820190506112b0600083018461128c565b92915050565b60006112c1826111e0565b9050919050565b6112d1816112b6565b82525050565b60006020820190506112ec60008301846112c8565b92915050565b6000819050919050565b611305816112f2565b82525050565b600060208201905061132060008301846112fc565b92915050565b600080fd5b600080fd5b611339816112f2565b811461134457600080fd5b50565b60008135905061135681611330565b92915050565b60006020828403121561137257611371611326565b5b600061138084828501611347565b91505092915050565b600080fd5b600080fd5b600080fd5b60008083601f8401126113ae576113ad611389565b5b8235905067ffffffffffffffff8111156113cb576113ca61138e565b5b6020830191508360208202830111156113e7576113e6611393565b5b9250929050565b6000806020838503121561140557611404611326565b5b600083013567ffffffffffffffff8111156114235761142261132b565b5b61142f85828601611398565b92509250509250929050565b611444816112b6565b811461144f57600080fd5b50565b6000813590506114618161143b565b92915050565b60006020828403121561147d5761147c611326565b5b600061148b84828501611452565b91505092915050565b6000815190506114a381611330565b92915050565b6000602082840312156114bf576114be611326565b5b60006114cd84828501611494565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000611510826112f2565b915061151b836112f2565b9250828202611529816112f2565b915082820484148315176115405761153f6114d6565b5b5092915050565b600082825260208201905092915050565b7f496e73756666696369656e74204475676f2042616c616e636500000000000000600082015250565b600061158e601983611547565b915061159982611558565b602082019050919050565b600060208201905081810360008301526115bd81611581565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000815190506116028161143b565b92915050565b60006020828403121561161e5761161d611326565b5b600061162c848285016115f3565b91505092915050565b7f596f7520646f6e2774206f776e2074686520746f6b656e20796f75206172652060008201527f747279696e6720746f206275726e000000000000000000000000000000000000602082015250565b6000611691602e83611547565b915061169c82611635565b604082019050919050565b600060208201905081810360008301526116c081611684565b9050919050565b60006060820190506116dc60008301866112c8565b6116e960208301856112c8565b6116f660408301846112fc565b949350505050565b600081519050919050565b600081905092915050565b60005b83811015611732578082015181840152602081019050611717565b60008484015250505050565b6000611749826116fe565b6117538185611709565b9350611763818560208601611714565b80840191505092915050565b600061177b828461173e565b915081905092915050565b7f506c6561736520617070726f766520636f6e747261637420746f206d616e616760008201527f6520746f6b656e49640000000000000000000000000000000000000000000000602082015250565b60006117e2602983611547565b91506117ed82611786565b604082019050919050565b60006020820190508181036000830152611811816117d5565b9050919050565b600060408201905061182d60008301856112c8565b61183a60208301846112fc565b9392505050565b7f526577617264207472616e73666572206661696c656400000000000000000000600082015250565b6000611877601683611547565b915061188282611841565b602082019050919050565b600060208201905081810360008301526118a68161186a565b9050919050565b600082825260208201905092915050565b600080fd5b82818337505050565b60006118d883856118ad565b93507f07ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff83111561190b5761190a6118be565b5b60208302925061191c8385846118c3565b82840190509392505050565b600060208201905081810360008301526119438184866118cc565b90509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006119a8602683611547565b91506119b38261194c565b604082019050919050565b600060208201905081810360008301526119d78161199b565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611a14602083611547565b9150611a1f826119de565b602082019050919050565b60006020820190508181036000830152611a4381611a07565b905091905056fea2646970667358221220f7acaa401151e72a5206d3694e366a46c0c4389c79018d9b5467252457d3f76164736f6c63430008120033

Block Transaction Difficulty 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
Loading...
Loading
[ 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.