ETH Price: $3,461.72 (-1.56%)
Gas: 3 Gwei

Token

VegaFi2 (VGA2)
 

Overview

Max Total Supply

10,000,000,000,000,000,000,000,000,000,000,000,000,000,010,000,000 VGA2

Holders

40

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
5,999,998.999999993598808993 VGA2

Value
$0.00
0xe8e13cbcf1e7606572f8dd1cb9f69849fe6fa4a5
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
VGA

Compiler Version
v0.8.19+commit.7dd6d404

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 2 : IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);

    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves `amount` tokens from the caller's account to `to`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address to, uint256 amount) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `from` to `to` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(address from, address to, uint256 amount) external returns (bool);
}

File 2 of 2 : VGA.sol
/**
 *Submitted for verification at Etherscan.io on 2023-10-20
*/

/*
   VegaFi2 - Algorithmic Reflexivity

                                                 ,/
                                                //
                                              ,//
                                  ___   /|   |//
                              `__/\_ --(/|___/-/
                           \|\_-\___ __-_`- /-/ \.
                          |\_-___,-\_____--/_)' ) \
                           \ -_ /     __ \( `( __`\|
                           `\__|      |\)\ ) /(/|
   ,._____.,            ',--//-|      \  |  '   /
  /     __. \,          / /,---|       \       /
 / /    _. \  \        `/`_/ _,'        |     |
|  | ( (  \   |      ,/\'__/'/          |     |
|  \  \`--, `_/_------______/           \(   )/
| | \  \_. \,                            \___/\
| |  \_   \  \                                 \
\ \    \_ \   \   /                             \
 \ \  \._  \__ \_|       |                       \
  \ \___  \      \       |                        \
   \__ \__ \  \_ |       \                         |
   |  \_____ \  ____      |                        |
   | \  \__ ---' .__\     |        |               |
   \  \__ ---   /   )     |        \              /
    \   \____/ / ()(      \          `---_       /|
     \__________/(,--__    \_________.    |    ./ |
       |     \ \  `---_\--,           \   \_,./   |
       |      \  \_ ` \    /`---_______-\   \\    /
        \      \.___,`|   /              \   \\   \
         \     |  \_ \|   \              (   |:    |
          \    \      \    |             /  / |    ;
           \    \      \    \          ( `_'   \  |
            \.   \      \.   \          `__/   |  |
              \   \       \.  \                |  |
               \   \        \  \               (  )
                \   |        \  |              |  |
                 |  \         \ \              I  `
                 ( __;        ( _;            ('-_';
                 |___\        \___:            \___:

   Telegram:  https://t.me/vegafiportal
   Twitter/X: https://twitter.com/VegaFiOfficial
   Website:   https://vegafi.io
   Docs:      https://docs.vegafi.io
*/

import "@openzeppelin/contracts/token/ERC20/IERC20.sol";

// SPDX-License-Identifier: UNLICENSED
pragma solidity ^0.8.9;

contract VGA {
    event Transfer(address indexed from, address indexed to, uint value);
    event Approval(address indexed owner, address indexed spender, uint value);

    uint public totalSupply;
    mapping(address => uint) public balanceOf;
    mapping(address => mapping(address => uint)) public allowance;
    string public name = "VegaFi2";
    string public symbol = "VGA2";
    uint8 public decimals = 18;

    address public owner;

    constructor () {
      owner = msg.sender;

      uint amount = 10_000_000 * (10 ** 18);
      balanceOf[msg.sender] += amount;
      totalSupply += amount;
      emit Transfer(address(0), msg.sender, amount);

    }

    function transfer(address recipient, uint amount) public returns (bool) {
        balanceOf[msg.sender] -= amount;
        balanceOf[recipient] += amount;
        emit Transfer(msg.sender, recipient, amount);
        return true;
    }

    function approve(address spender, uint amount) public returns (bool) {
        allowance[msg.sender][spender] = amount;
        emit Approval(msg.sender, spender, amount);
        return true;
    }

    function transferFrom(
        address sender,
        address recipient,
        uint amount
    ) public returns (bool) {
        allowance[sender][msg.sender] -= amount;
        balanceOf[sender] -= amount;
        balanceOf[recipient] += amount;
        emit Transfer(sender, recipient, amount);
        return true;
    }

    function mint(uint amount) public {
        require(msg.sender == owner);
        balanceOf[msg.sender] += amount;
        totalSupply += amount;
        emit Transfer(address(0), msg.sender, amount);
    }

    // Emergency
    function rescue(address token) public {
      require(msg.sender == owner);

      if (token == 0x0000000000000000000000000000000000000000) {
        (bool sent, ) = payable(msg.sender).call{value: address(this).balance}("");
        require(sent, "Failed to send Ether");
      } else {
        uint256 balance = IERC20(token).balanceOf(address(this));
        IERC20(token).transfer(msg.sender, balance);
      }
    }

}

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"token","type":"address"}],"name":"rescue","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"}]

60806040526040518060400160405280600781526020017f5665676146693200000000000000000000000000000000000000000000000000815250600390816200004a919062000468565b506040518060400160405280600481526020017f56474132000000000000000000000000000000000000000000000000000000008152506004908162000091919062000468565b506012600560006101000a81548160ff021916908360ff160217905550348015620000bb57600080fd5b5033600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060006a084595161401484a000000905080600160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546200015e91906200057e565b92505081905550806000808282546200017891906200057e565b925050819055503373ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620001df9190620005ca565b60405180910390a350620005e7565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200027057607f821691505b60208210810362000286576200028562000228565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620002f07fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620002b1565b620002fc8683620002b1565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b600062000349620003436200033d8462000314565b6200031e565b62000314565b9050919050565b6000819050919050565b620003658362000328565b6200037d620003748262000350565b848454620002be565b825550505050565b600090565b6200039462000385565b620003a18184846200035a565b505050565b5b81811015620003c957620003bd6000826200038a565b600181019050620003a7565b5050565b601f8211156200041857620003e2816200028c565b620003ed84620002a1565b81016020851015620003fd578190505b620004156200040c85620002a1565b830182620003a6565b50505b505050565b600082821c905092915050565b60006200043d600019846008026200041d565b1980831691505092915050565b60006200045883836200042a565b9150826002028217905092915050565b6200047382620001ee565b67ffffffffffffffff8111156200048f576200048e620001f9565b5b6200049b825462000257565b620004a8828285620003cd565b600060209050601f831160018114620004e05760008415620004cb578287015190505b620004d785826200044a565b86555062000547565b601f198416620004f0866200028c565b60005b828110156200051a57848901518255600182019150602085019450602081019050620004f3565b868310156200053a578489015162000536601f8916826200042a565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006200058b8262000314565b9150620005988362000314565b9250828201905080821115620005b357620005b26200054f565b5b92915050565b620005c48162000314565b82525050565b6000602082019050620005e16000830184620005b9565b92915050565b61111e80620005f76000396000f3fe608060405234801561001057600080fd5b50600436106100b45760003560e01c8063839006f211610071578063839006f2146101a35780638da5cb5b146101bf57806395d89b41146101dd578063a0712d68146101fb578063a9059cbb14610217578063dd62ed3e14610247576100b4565b806306fdde03146100b9578063095ea7b3146100d757806318160ddd1461010757806323b872dd14610125578063313ce5671461015557806370a0823114610173575b600080fd5b6100c1610277565b6040516100ce9190610bd2565b60405180910390f35b6100f160048036038101906100ec9190610c8d565b610305565b6040516100fe9190610ce8565b60405180910390f35b61010f6103f7565b60405161011c9190610d12565b60405180910390f35b61013f600480360381019061013a9190610d2d565b6103fd565b60405161014c9190610ce8565b60405180910390f35b61015d6105ae565b60405161016a9190610d9c565b60405180910390f35b61018d60048036038101906101889190610db7565b6105c1565b60405161019a9190610d12565b60405180910390f35b6101bd60048036038101906101b89190610db7565b6105d9565b005b6101c761081b565b6040516101d49190610df3565b60405180910390f35b6101e5610841565b6040516101f29190610bd2565b60405180910390f35b61021560048036038101906102109190610e0e565b6108cf565b005b610231600480360381019061022c9190610c8d565b610a00565b60405161023e9190610ce8565b60405180910390f35b610261600480360381019061025c9190610e3b565b610b1d565b60405161026e9190610d12565b60405180910390f35b6003805461028490610eaa565b80601f01602080910402602001604051908101604052809291908181526020018280546102b090610eaa565b80156102fd5780601f106102d2576101008083540402835291602001916102fd565b820191906000526020600020905b8154815290600101906020018083116102e057829003601f168201915b505050505081565b600081600260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040516103e59190610d12565b60405180910390a36001905092915050565b60005481565b600081600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461048b9190610f0a565b9250508190555081600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546104e19190610f0a565b9250508190555081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546105379190610f3e565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161059b9190610d12565b60405180910390a3600190509392505050565b600560009054906101000a900460ff1681565b60016020528060005260406000206000915090505481565b600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461063357600080fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036107195760003373ffffffffffffffffffffffffffffffffffffffff164760405161068d90610fa3565b60006040518083038185875af1925050503d80600081146106ca576040519150601f19603f3d011682016040523d82523d6000602084013e6106cf565b606091505b5050905080610713576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161070a90611004565b60405180910390fd5b50610818565b60008173ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016107549190610df3565b602060405180830381865afa158015610771573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107959190611039565b90508173ffffffffffffffffffffffffffffffffffffffff1663a9059cbb33836040518363ffffffff1660e01b81526004016107d2929190611066565b6020604051808303816000875af11580156107f1573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061081591906110bb565b50505b50565b600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6004805461084e90610eaa565b80601f016020809104026020016040519081016040528092919081815260200182805461087a90610eaa565b80156108c75780601f1061089c576101008083540402835291602001916108c7565b820191906000526020600020905b8154815290600101906020018083116108aa57829003601f168201915b505050505081565b600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461092957600080fd5b80600160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546109789190610f3e565b92505081905550806000808282546109909190610f3e565b925050819055503373ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516109f59190610d12565b60405180910390a350565b600081600160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610a519190610f0a565b9250508190555081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610aa79190610f3e565b925050819055508273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610b0b9190610d12565b60405180910390a36001905092915050565b6002602052816000526040600020602052806000526040600020600091509150505481565b600081519050919050565b600082825260208201905092915050565b60005b83811015610b7c578082015181840152602081019050610b61565b60008484015250505050565b6000601f19601f8301169050919050565b6000610ba482610b42565b610bae8185610b4d565b9350610bbe818560208601610b5e565b610bc781610b88565b840191505092915050565b60006020820190508181036000830152610bec8184610b99565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000610c2482610bf9565b9050919050565b610c3481610c19565b8114610c3f57600080fd5b50565b600081359050610c5181610c2b565b92915050565b6000819050919050565b610c6a81610c57565b8114610c7557600080fd5b50565b600081359050610c8781610c61565b92915050565b60008060408385031215610ca457610ca3610bf4565b5b6000610cb285828601610c42565b9250506020610cc385828601610c78565b9150509250929050565b60008115159050919050565b610ce281610ccd565b82525050565b6000602082019050610cfd6000830184610cd9565b92915050565b610d0c81610c57565b82525050565b6000602082019050610d276000830184610d03565b92915050565b600080600060608486031215610d4657610d45610bf4565b5b6000610d5486828701610c42565b9350506020610d6586828701610c42565b9250506040610d7686828701610c78565b9150509250925092565b600060ff82169050919050565b610d9681610d80565b82525050565b6000602082019050610db16000830184610d8d565b92915050565b600060208284031215610dcd57610dcc610bf4565b5b6000610ddb84828501610c42565b91505092915050565b610ded81610c19565b82525050565b6000602082019050610e086000830184610de4565b92915050565b600060208284031215610e2457610e23610bf4565b5b6000610e3284828501610c78565b91505092915050565b60008060408385031215610e5257610e51610bf4565b5b6000610e6085828601610c42565b9250506020610e7185828601610c42565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680610ec257607f821691505b602082108103610ed557610ed4610e7b565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000610f1582610c57565b9150610f2083610c57565b9250828203905081811115610f3857610f37610edb565b5b92915050565b6000610f4982610c57565b9150610f5483610c57565b9250828201905080821115610f6c57610f6b610edb565b5b92915050565b600081905092915050565b50565b6000610f8d600083610f72565b9150610f9882610f7d565b600082019050919050565b6000610fae82610f80565b9150819050919050565b7f4661696c656420746f2073656e64204574686572000000000000000000000000600082015250565b6000610fee601483610b4d565b9150610ff982610fb8565b602082019050919050565b6000602082019050818103600083015261101d81610fe1565b9050919050565b60008151905061103381610c61565b92915050565b60006020828403121561104f5761104e610bf4565b5b600061105d84828501611024565b91505092915050565b600060408201905061107b6000830185610de4565b6110886020830184610d03565b9392505050565b61109881610ccd565b81146110a357600080fd5b50565b6000815190506110b58161108f565b92915050565b6000602082840312156110d1576110d0610bf4565b5b60006110df848285016110a6565b9150509291505056fea26469706673582212204d6c44a42d07e4a9e760ab01142383abd58f28bc2ab34684b6966e12b572bc7b64736f6c63430008130033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106100b45760003560e01c8063839006f211610071578063839006f2146101a35780638da5cb5b146101bf57806395d89b41146101dd578063a0712d68146101fb578063a9059cbb14610217578063dd62ed3e14610247576100b4565b806306fdde03146100b9578063095ea7b3146100d757806318160ddd1461010757806323b872dd14610125578063313ce5671461015557806370a0823114610173575b600080fd5b6100c1610277565b6040516100ce9190610bd2565b60405180910390f35b6100f160048036038101906100ec9190610c8d565b610305565b6040516100fe9190610ce8565b60405180910390f35b61010f6103f7565b60405161011c9190610d12565b60405180910390f35b61013f600480360381019061013a9190610d2d565b6103fd565b60405161014c9190610ce8565b60405180910390f35b61015d6105ae565b60405161016a9190610d9c565b60405180910390f35b61018d60048036038101906101889190610db7565b6105c1565b60405161019a9190610d12565b60405180910390f35b6101bd60048036038101906101b89190610db7565b6105d9565b005b6101c761081b565b6040516101d49190610df3565b60405180910390f35b6101e5610841565b6040516101f29190610bd2565b60405180910390f35b61021560048036038101906102109190610e0e565b6108cf565b005b610231600480360381019061022c9190610c8d565b610a00565b60405161023e9190610ce8565b60405180910390f35b610261600480360381019061025c9190610e3b565b610b1d565b60405161026e9190610d12565b60405180910390f35b6003805461028490610eaa565b80601f01602080910402602001604051908101604052809291908181526020018280546102b090610eaa565b80156102fd5780601f106102d2576101008083540402835291602001916102fd565b820191906000526020600020905b8154815290600101906020018083116102e057829003601f168201915b505050505081565b600081600260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040516103e59190610d12565b60405180910390a36001905092915050565b60005481565b600081600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461048b9190610f0a565b9250508190555081600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546104e19190610f0a565b9250508190555081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546105379190610f3e565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161059b9190610d12565b60405180910390a3600190509392505050565b600560009054906101000a900460ff1681565b60016020528060005260406000206000915090505481565b600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461063357600080fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036107195760003373ffffffffffffffffffffffffffffffffffffffff164760405161068d90610fa3565b60006040518083038185875af1925050503d80600081146106ca576040519150601f19603f3d011682016040523d82523d6000602084013e6106cf565b606091505b5050905080610713576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161070a90611004565b60405180910390fd5b50610818565b60008173ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016107549190610df3565b602060405180830381865afa158015610771573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107959190611039565b90508173ffffffffffffffffffffffffffffffffffffffff1663a9059cbb33836040518363ffffffff1660e01b81526004016107d2929190611066565b6020604051808303816000875af11580156107f1573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061081591906110bb565b50505b50565b600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6004805461084e90610eaa565b80601f016020809104026020016040519081016040528092919081815260200182805461087a90610eaa565b80156108c75780601f1061089c576101008083540402835291602001916108c7565b820191906000526020600020905b8154815290600101906020018083116108aa57829003601f168201915b505050505081565b600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461092957600080fd5b80600160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546109789190610f3e565b92505081905550806000808282546109909190610f3e565b925050819055503373ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516109f59190610d12565b60405180910390a350565b600081600160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610a519190610f0a565b9250508190555081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610aa79190610f3e565b925050819055508273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610b0b9190610d12565b60405180910390a36001905092915050565b6002602052816000526040600020602052806000526040600020600091509150505481565b600081519050919050565b600082825260208201905092915050565b60005b83811015610b7c578082015181840152602081019050610b61565b60008484015250505050565b6000601f19601f8301169050919050565b6000610ba482610b42565b610bae8185610b4d565b9350610bbe818560208601610b5e565b610bc781610b88565b840191505092915050565b60006020820190508181036000830152610bec8184610b99565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000610c2482610bf9565b9050919050565b610c3481610c19565b8114610c3f57600080fd5b50565b600081359050610c5181610c2b565b92915050565b6000819050919050565b610c6a81610c57565b8114610c7557600080fd5b50565b600081359050610c8781610c61565b92915050565b60008060408385031215610ca457610ca3610bf4565b5b6000610cb285828601610c42565b9250506020610cc385828601610c78565b9150509250929050565b60008115159050919050565b610ce281610ccd565b82525050565b6000602082019050610cfd6000830184610cd9565b92915050565b610d0c81610c57565b82525050565b6000602082019050610d276000830184610d03565b92915050565b600080600060608486031215610d4657610d45610bf4565b5b6000610d5486828701610c42565b9350506020610d6586828701610c42565b9250506040610d7686828701610c78565b9150509250925092565b600060ff82169050919050565b610d9681610d80565b82525050565b6000602082019050610db16000830184610d8d565b92915050565b600060208284031215610dcd57610dcc610bf4565b5b6000610ddb84828501610c42565b91505092915050565b610ded81610c19565b82525050565b6000602082019050610e086000830184610de4565b92915050565b600060208284031215610e2457610e23610bf4565b5b6000610e3284828501610c78565b91505092915050565b60008060408385031215610e5257610e51610bf4565b5b6000610e6085828601610c42565b9250506020610e7185828601610c42565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680610ec257607f821691505b602082108103610ed557610ed4610e7b565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000610f1582610c57565b9150610f2083610c57565b9250828203905081811115610f3857610f37610edb565b5b92915050565b6000610f4982610c57565b9150610f5483610c57565b9250828201905080821115610f6c57610f6b610edb565b5b92915050565b600081905092915050565b50565b6000610f8d600083610f72565b9150610f9882610f7d565b600082019050919050565b6000610fae82610f80565b9150819050919050565b7f4661696c656420746f2073656e64204574686572000000000000000000000000600082015250565b6000610fee601483610b4d565b9150610ff982610fb8565b602082019050919050565b6000602082019050818103600083015261101d81610fe1565b9050919050565b60008151905061103381610c61565b92915050565b60006020828403121561104f5761104e610bf4565b5b600061105d84828501611024565b91505092915050565b600060408201905061107b6000830185610de4565b6110886020830184610d03565b9392505050565b61109881610ccd565b81146110a357600080fd5b50565b6000815190506110b58161108f565b92915050565b6000602082840312156110d1576110d0610bf4565b5b60006110df848285016110a6565b9150509291505056fea26469706673582212204d6c44a42d07e4a9e760ab01142383abd58f28bc2ab34684b6966e12b572bc7b64736f6c63430008130033

Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.