ERC-20
Source Code
Overview
Max Total Supply
979,000,000 AW3
Holders
166
Transfers
-
0
Market
Onchain Market Cap
-
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Loading...
Loading
Loading...
Loading
Loading...
Loading
| # | Exchange | Pair | Price | 24H Volume | % Volume |
|---|
Contract Name:
AnonWeb3Token
Compiler Version
v0.8.20+commit.a1b79de6
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT
pragma solidity >=0.8.2 <0.9.0;
import "@openzeppelin/contracts/utils/Context.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import "@openzeppelin/contracts/utils/math/SafeMath.sol";
import "@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol";
contract AnonWeb3Token is IERC20, IERC20Metadata, Context, Ownable {
using SafeMath for uint256;
string private _name;
string private _symbol;
uint8 private _decimals;
uint256 private _totalSupply;
uint256 private _maxPercentage;
address private _teamOneWallet;
address private _teamTwoWallet;
address private _communityWallet;
mapping(address => bool) private _routers;
mapping(address => uint256) private _balances;
mapping(address => mapping(address => uint256)) private _allowances;
constructor() {
_name = "Anon Web3 Token";
_symbol = "AW3";
_decimals = 18;
_totalSupply = 1000000000 * 10**uint256(_decimals);
_maxPercentage = 1;
_teamOneWallet = 0xD727c5B0038baf8d7dBfDfC5341EEDaeE03BFB07;
_teamTwoWallet = 0x57158CEb8DfAAc2082220CA00ec45BF1728EC14B;
_communityWallet = 0x0D96891ef3cE7d26D2005231e83ECDE2269c9933;
_balances[_msgSender()] = _totalSupply;
emit Transfer(address(0), _msgSender(), _totalSupply);
}
// Returns the token name
function name() public view override returns (string memory) {
return _name;
}
// Returns the token symbol
function symbol() public view override returns (string memory) {
return _symbol;
}
// Returns the number of decimals used in the token
function decimals() public view override returns (uint8) {
return _decimals;
}
// Returns the total supply of the token
function totalSupply() public view override returns (uint256) {
return _totalSupply;
}
// Returns the balance of a specific account
function balanceOf(address account) public view override returns (uint256) {
return _balances[account];
}
// Transfers tokens from the sender to the recipient
function transfer(address recipient, uint256 amount) public override returns (bool) {
_transfer(_msgSender(), recipient, amount);
return true;
}
// Returns the amount of tokens that the spender is allowed to spend on behalf of the owner
function allowance(address owner, address spender) public view override returns (uint256) {
return _allowances[owner][spender];
}
// Approves the spender to spend a certain amount of tokens on behalf of the sender
function approve(address spender, uint256 amount) public override returns (bool) {
_approve(_msgSender(), spender, amount);
return true;
}
// Transfers tokens from one address to another with the sender's approval
function transferFrom(address sender, address recipient, uint256 amount) public override returns (bool) {
_transfer(sender, recipient, amount);
_approve(
sender,
_msgSender(),
_allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance")
);
return true;
}
// Increases the allowance granted to a spender
function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
_approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(addedValue));
return true;
}
// Decreases the allowance granted to a spender
function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
_approve(
_msgSender(),
spender,
_allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero")
);
return true;
}
// Burns a specific amount of tokens, reducing the total supply
function burn(uint256 amount) public returns (bool) {
require(amount > 0, "ERC20: burn amount must be greater than zero");
require(_balances[msg.sender] >= amount, "ERC20: burn amount exceeds balance");
_balances[msg.sender] = _balances[msg.sender].sub(amount);
_totalSupply = _totalSupply.sub(amount);
emit Transfer(msg.sender, address(0), amount);
return true;
}
// Internal function for transferring tokens
function _transfer(address sender, address recipient, uint256 amount) internal {
// Verify balances
uint256 senderBalance = _balances[sender];
require(sender != address(0), "ERC20: transfer from the zero address");
require(recipient != address(0), "ERC20: transfer to the zero address");
require(senderBalance >= amount, "ERC20: transfer amount exceeds balance");
// Verify if it's a swap transaction
bool isBuyTransaction = false;
bool isSellTransaction = false;
if (_routers[sender] && sender != owner()) {
isBuyTransaction = true;
}
if (_routers[recipient] && sender != owner()) {
isSellTransaction = true;
}
if (isBuyTransaction) {
// Calculate the maximum amount allowed for the recipient based on _maxPercentage
uint256 maxAmountAllowed = _totalSupply.mul(_maxPercentage).div(100);
// Ensure the recipient's balance won't exceed the max allowed amount
require(
_balances[recipient].add(amount) <= maxAmountAllowed,
"ERC20: recipient's balance would exceed the maximum allowed percentage"
);
}
// Send tax if needed
uint256 taxAmount = (isSellTransaction || isBuyTransaction) ? calculateTax(amount) : 0;
if (taxAmount > 0) {
uint256 teamShare = taxAmount.mul(2).div(5);
uint256 marketingShare = taxAmount.mul(2).div(5);
uint256 communityShare = taxAmount.sub(teamShare).sub(marketingShare);
_balances[_teamOneWallet] = _balances[_teamOneWallet].add(teamShare);
_balances[_teamTwoWallet] = _balances[_teamTwoWallet].add(marketingShare);
_balances[_communityWallet] = _balances[_communityWallet].add(communityShare);
emit Transfer(sender, _teamOneWallet, teamShare);
emit Transfer(sender, _teamTwoWallet, marketingShare);
emit Transfer(sender, _communityWallet, communityShare);
}
// Send transfer
uint256 transferAmount = amount.sub(taxAmount);
_balances[sender] = senderBalance.sub(amount, "ERC20: transfer amount exceeds balance");
_balances[recipient] = _balances[recipient].add(transferAmount);
emit Transfer(sender, recipient, transferAmount);
}
// Internal function for approving spending
function _approve(address owner, address spender, uint256 amount) internal {
require(owner != address(0), "ERC20: approve from the zero address");
require(spender != address(0), "ERC20: approve to the zero address");
_allowances[owner][spender] = amount;
emit Approval(owner, spender, amount);
}
// Calculate the tax amount (4% of the transaction amount)
function calculateTax(uint256 amount) internal pure returns (uint256) {
return amount.mul(4).div(100);
}
// Function to set the maximum percentage allowed in a single transaction (only callable by the owner)
function setMaxPercentage(uint256 percentage) public onlyOwner {
require(percentage <= 100, "Max percentage cannot exceed 100%");
_maxPercentage = percentage;
}
// Function to add a router address (only callable by the owner)
function addRouter(address router) public onlyOwner {
require(router != address(0), "ERC20: router address cannot be zero");
_routers[router] = true;
}
// Function to delete a router address (only callable by the owner)
function deleteRouter(address router) public onlyOwner {
require(router != address(0), "ERC20: router address cannot be zero");
require(_routers[router], "ERC20: router address not found");
_routers[router] = false;
}
// Function to get _routers
function isRouter(address addr) public view returns (bool) {
return _routers[addr];
}
// Function to change the _teamOneWallet address (only callable by the owner)
function changeTeamOneWallet(address newWallet) public onlyOwner {
require(newWallet != address(0), "ERC20: new wallet address cannot be zero");
_teamOneWallet = newWallet;
}
// Function to change the _teamTwoWallet wallet address (only callable by the owner)
function changeTeamTwoWallet(address newWallet) public onlyOwner {
require(newWallet != address(0), "ERC20: new wallet address cannot be zero");
_teamTwoWallet = newWallet;
}
// Function to change the _communityWallet address (only callable by the owner)
function changeCommunityWallet(address newWallet) public onlyOwner {
require(newWallet != address(0), "ERC20: new wallet address cannot be zero");
_communityWallet = newWallet;
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)
pragma solidity ^0.8.0;
import "../IERC20.sol";
/**
* @dev Interface for the optional metadata functions from the ERC20 standard.
*
* _Available since v4.1._
*/
interface IERC20Metadata is IERC20 {
/**
* @dev Returns the name of the token.
*/
function name() external view returns (string memory);
/**
* @dev Returns the symbol of the token.
*/
function symbol() external view returns (string memory);
/**
* @dev Returns the decimals places of the token.
*/
function decimals() external view returns (uint8);
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (utils/math/SafeMath.sol)
pragma solidity ^0.8.0;
// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.
/**
* @dev Wrappers over Solidity's arithmetic operations.
*
* NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler
* now has built in overflow checking.
*/
library SafeMath {
/**
* @dev Returns the addition of two unsigned integers, with an overflow flag.
*
* _Available since v3.4._
*/
function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
unchecked {
uint256 c = a + b;
if (c < a) return (false, 0);
return (true, c);
}
}
/**
* @dev Returns the subtraction of two unsigned integers, with an overflow flag.
*
* _Available since v3.4._
*/
function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
unchecked {
if (b > a) return (false, 0);
return (true, a - b);
}
}
/**
* @dev Returns the multiplication of two unsigned integers, with an overflow flag.
*
* _Available since v3.4._
*/
function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
unchecked {
// Gas optimization: this is cheaper than requiring 'a' not being zero, but the
// benefit is lost if 'b' is also tested.
// See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
if (a == 0) return (true, 0);
uint256 c = a * b;
if (c / a != b) return (false, 0);
return (true, c);
}
}
/**
* @dev Returns the division of two unsigned integers, with a division by zero flag.
*
* _Available since v3.4._
*/
function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
unchecked {
if (b == 0) return (false, 0);
return (true, a / b);
}
}
/**
* @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
*
* _Available since v3.4._
*/
function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
unchecked {
if (b == 0) return (false, 0);
return (true, a % b);
}
}
/**
* @dev Returns the addition of two unsigned integers, reverting on
* overflow.
*
* Counterpart to Solidity's `+` operator.
*
* Requirements:
*
* - Addition cannot overflow.
*/
function add(uint256 a, uint256 b) internal pure returns (uint256) {
return a + b;
}
/**
* @dev Returns the subtraction of two unsigned integers, reverting on
* overflow (when the result is negative).
*
* Counterpart to Solidity's `-` operator.
*
* Requirements:
*
* - Subtraction cannot overflow.
*/
function sub(uint256 a, uint256 b) internal pure returns (uint256) {
return a - b;
}
/**
* @dev Returns the multiplication of two unsigned integers, reverting on
* overflow.
*
* Counterpart to Solidity's `*` operator.
*
* Requirements:
*
* - Multiplication cannot overflow.
*/
function mul(uint256 a, uint256 b) internal pure returns (uint256) {
return a * b;
}
/**
* @dev Returns the integer division of two unsigned integers, reverting on
* division by zero. The result is rounded towards zero.
*
* Counterpart to Solidity's `/` operator.
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function div(uint256 a, uint256 b) internal pure returns (uint256) {
return a / b;
}
/**
* @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
* reverting when dividing by zero.
*
* Counterpart to Solidity's `%` operator. This function uses a `revert`
* opcode (which leaves remaining gas untouched) while Solidity uses an
* invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function mod(uint256 a, uint256 b) internal pure returns (uint256) {
return a % b;
}
/**
* @dev Returns the subtraction of two unsigned integers, reverting with custom message on
* overflow (when the result is negative).
*
* CAUTION: This function is deprecated because it requires allocating memory for the error
* message unnecessarily. For custom revert reasons use {trySub}.
*
* Counterpart to Solidity's `-` operator.
*
* Requirements:
*
* - Subtraction cannot overflow.
*/
function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
unchecked {
require(b <= a, errorMessage);
return a - b;
}
}
/**
* @dev Returns the integer division of two unsigned integers, reverting with custom message on
* division by zero. The result is rounded towards zero.
*
* Counterpart to Solidity's `/` operator. Note: this function uses a
* `revert` opcode (which leaves remaining gas untouched) while Solidity
* uses an invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
unchecked {
require(b > 0, errorMessage);
return a / b;
}
}
/**
* @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
* reverting with custom message when dividing by zero.
*
* CAUTION: This function is deprecated because it requires allocating memory for the error
* message unnecessarily. For custom revert reasons use {tryMod}.
*
* Counterpart to Solidity's `%` operator. This function uses a `revert`
* opcode (which leaves remaining gas untouched) while Solidity uses an
* invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
unchecked {
require(b > 0, errorMessage);
return a % b;
}
}
}// 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);
}// 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);
}
}// 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;
}
}{
"optimizer": {
"enabled": false,
"runs": 200
},
"outputSelection": {
"*": {
"*": [
"evm.bytecode",
"evm.deployedBytecode",
"devdoc",
"userdoc",
"metadata",
"abi"
]
}
}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"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":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"router","type":"address"}],"name":"addRouter","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"changeCommunityWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"changeTeamOneWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"changeTeamTwoWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"router","type":"address"}],"name":"deleteRouter","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"isRouter","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"percentage","type":"uint256"}],"name":"setMaxPercentage","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"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]Contract Creation Code
608060405234801562000010575f80fd5b506200003162000025620002e660201b60201c565b620002ed60201b60201c565b6040518060400160405280600f81526020017f416e6f6e205765623320546f6b656e00000000000000000000000000000000008152506001908162000077919062000612565b506040518060400160405280600381526020017f415733000000000000000000000000000000000000000000000000000000000081525060029081620000be919062000612565b50601260035f6101000a81548160ff021916908360ff16021790555060035f9054906101000a900460ff1660ff16600a620000fa919062000873565b633b9aca006200010b9190620008c3565b600481905550600160058190555073d727c5b0038baf8d7dbfdfc5341eedaee03bfb0760065f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507357158ceb8dfaac2082220ca00ec45bf1728ec14b60075f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550730d96891ef3ce7d26d2005231e83ecde2269c993360085f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600454600a5f6200022b620002e660201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f208190555062000278620002e660201b60201c565b73ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600454604051620002d891906200091e565b60405180910390a362000939565b5f33905090565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050815f806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806200042a57607f821691505b60208210810362000440576200043f620003e5565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f60088302620004a47fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000467565b620004b0868362000467565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f620004fa620004f4620004ee84620004c8565b620004d1565b620004c8565b9050919050565b5f819050919050565b6200051583620004da565b6200052d620005248262000501565b84845462000473565b825550505050565b5f90565b6200054362000535565b620005508184846200050a565b505050565b5b8181101562000577576200056b5f8262000539565b60018101905062000556565b5050565b601f821115620005c657620005908162000446565b6200059b8462000458565b81016020851015620005ab578190505b620005c3620005ba8562000458565b83018262000555565b50505b505050565b5f82821c905092915050565b5f620005e85f1984600802620005cb565b1980831691505092915050565b5f620006028383620005d7565b9150826002028217905092915050565b6200061d82620003ae565b67ffffffffffffffff811115620006395762000638620003b8565b5b62000645825462000412565b620006528282856200057b565b5f60209050601f83116001811462000688575f841562000673578287015190505b6200067f8582620005f5565b865550620006ee565b601f198416620006988662000446565b5f5b82811015620006c1578489015182556001820191506020850194506020810190506200069a565b86831015620006e15784890151620006dd601f891682620005d7565b8355505b6001600288020188555050505b505050505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f8160011c9050919050565b5f808291508390505b60018511156200078057808604811115620007585762000757620006f6565b5b6001851615620007685780820291505b8081029050620007788562000723565b945062000738565b94509492505050565b5f826200079a57600190506200086c565b81620007a9575f90506200086c565b8160018114620007c25760028114620007cd5762000803565b60019150506200086c565b60ff841115620007e257620007e1620006f6565b5b8360020a915084821115620007fc57620007fb620006f6565b5b506200086c565b5060208310610133831016604e8410600b84101617156200083d5782820a905083811115620008375762000836620006f6565b5b6200086c565b6200084c84848460016200072f565b92509050818404811115620008665762000865620006f6565b5b81810290505b9392505050565b5f6200087f82620004c8565b91506200088c83620004c8565b9250620008bb7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848462000789565b905092915050565b5f620008cf82620004c8565b9150620008dc83620004c8565b9250828202620008ec81620004c8565b91508282048414831517620009065762000905620006f6565b5b5092915050565b6200091881620004c8565b82525050565b5f602082019050620009335f8301846200090d565b92915050565b612ac180620009475f395ff3fe608060405234801561000f575f80fd5b5060043610610140575f3560e01c80638da5cb5b116100b6578063a9059cbb1161007a578063a9059cbb14610374578063b5f5fa61146103a4578063c53930e4146103c0578063dd62ed3e146103dc578063f2fde38b1461040c578063f3d7d2821461042857610140565b80638da5cb5b146102d057806394ab5382146102ee57806395d89b411461030a578063a1df307314610328578063a457c2d71461034457610140565b806324ca984e1161010857806324ca984e146101fc578063313ce56714610218578063395093511461023657806342966c681461026657806370a0823114610296578063715018a6146102c657610140565b806306fdde0314610144578063095ea7b3146101625780630c1a26761461019257806318160ddd146101ae57806323b872dd146101cc575b5f80fd5b61014c610458565b6040516101599190611e62565b60405180910390f35b61017c60048036038101906101779190611f13565b6104e8565b6040516101899190611f6b565b60405180910390f35b6101ac60048036038101906101a79190611f84565b610505565b005b6101b661065b565b6040516101c39190611fbe565b60405180910390f35b6101e660048036038101906101e19190611fd7565b610664565b6040516101f39190611f6b565b60405180910390f35b61021660048036038101906102119190611f84565b610738565b005b610220610806565b60405161022d9190612042565b60405180910390f35b610250600480360381019061024b9190611f13565b61081b565b60405161025d9190611f6b565b60405180910390f35b610280600480360381019061027b919061205b565b6108c9565b60405161028d9190611f6b565b60405180910390f35b6102b060048036038101906102ab9190611f84565b610aa6565b6040516102bd9190611fbe565b60405180910390f35b6102ce610aec565b005b6102d8610aff565b6040516102e59190612095565b60405180910390f35b6103086004803603810190610303919061205b565b610b26565b005b610312610b7c565b60405161031f9190611e62565b60405180910390f35b610342600480360381019061033d9190611f84565b610c0c565b005b61035e60048036038101906103599190611f13565b610cc5565b60405161036b9190611f6b565b60405180910390f35b61038e60048036038101906103899190611f13565b610d8d565b60405161039b9190611f6b565b60405180910390f35b6103be60048036038101906103b99190611f84565b610daa565b005b6103da60048036038101906103d59190611f84565b610e63565b005b6103f660048036038101906103f191906120ae565b610f1c565b6040516104039190611fbe565b60405180910390f35b61042660048036038101906104219190611f84565b610f9e565b005b610442600480360381019061043d9190611f84565b611020565b60405161044f9190611f6b565b60405180910390f35b60606001805461046790612119565b80601f016020809104026020016040519081016040528092919081815260200182805461049390612119565b80156104de5780601f106104b5576101008083540402835291602001916104de565b820191905f5260205f20905b8154815290600101906020018083116104c157829003601f168201915b5050505050905090565b5f6104fb6104f4611072565b8484611079565b6001905092915050565b61050d61123c565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361057b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610572906121b9565b60405180910390fd5b60095f8273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16610604576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105fb90612221565b60405180910390fd5b5f60095f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff02191690831515021790555050565b5f600454905090565b5f6106708484846112ba565b61072d8461067c611072565b61072885604051806060016040528060288152602001612a3f60289139600b5f8b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6106df611072565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054611c409092919063ffffffff16565b611079565b600190509392505050565b61074061123c565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036107ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107a5906121b9565b60405180910390fd5b600160095f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff02191690831515021790555050565b5f60035f9054906101000a900460ff16905090565b5f6108bf610827611072565b846108ba85600b5f610837611072565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054611c9490919063ffffffff16565b611079565b6001905092915050565b5f80821161090c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610903906122af565b60405180910390fd5b81600a5f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054101561098c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109839061233d565b60405180910390fd5b6109dc82600a5f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054611ca990919063ffffffff16565b600a5f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550610a3282600454611ca990919063ffffffff16565b6004819055505f73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610a959190611fbe565b60405180910390a360019050919050565b5f600a5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b610af461123c565b610afd5f611cbe565b565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610b2e61123c565b6064811115610b72576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b69906123cb565b60405180910390fd5b8060058190555050565b606060028054610b8b90612119565b80601f0160208091040260200160405190810160405280929190818152602001828054610bb790612119565b8015610c025780601f10610bd957610100808354040283529160200191610c02565b820191905f5260205f20905b815481529060010190602001808311610be557829003601f168201915b5050505050905090565b610c1461123c565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610c82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7990612459565b60405180910390fd5b8060085f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b5f610d83610cd1611072565b84610d7e85604051806060016040528060258152602001612a6760259139600b5f610cfa611072565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054611c409092919063ffffffff16565b611079565b6001905092915050565b5f610da0610d99611072565b84846112ba565b6001905092915050565b610db261123c565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610e20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1790612459565b60405180910390fd5b8060075f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b610e6b61123c565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610ed9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ed090612459565b60405180910390fd5b8060065f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b5f600b5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b610fa661123c565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611014576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100b906124e7565b60405180910390fd5b61101d81611cbe565b50565b5f60095f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff169050919050565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036110e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110de90612575565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611155576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114c90612603565b60405180910390fd5b80600b5f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161122f9190611fbe565b60405180910390a3505050565b611244611072565b73ffffffffffffffffffffffffffffffffffffffff16611262610aff565b73ffffffffffffffffffffffffffffffffffffffff16146112b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112af9061266b565b60405180910390fd5b565b5f600a5f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205490505f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611369576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611360906126f9565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036113d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ce90612787565b60405180910390fd5b8181101561141a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141190612815565b60405180910390fd5b5f8060095f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1680156114a55750611475610aff565b73ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff1614155b156114af57600191505b60095f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1680156115385750611508610aff565b73ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff1614155b1561154257600190505b8115611609575f6115736064611565600554600454611d7f90919063ffffffff16565b611d9490919063ffffffff16565b9050806115c686600a5f8a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054611c9490919063ffffffff16565b1115611607576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115fe906128c9565b60405180910390fd5b505b5f81806116135750825b61161d575f611627565b61162685611da9565b5b90505f811115611abc575f611659600561164b600285611d7f90919063ffffffff16565b611d9490919063ffffffff16565b90505f6116836005611675600286611d7f90919063ffffffff16565b611d9490919063ffffffff16565b90505f6116ab8261169d8587611ca990919063ffffffff16565b611ca990919063ffffffff16565b905061171e83600a5f60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054611c9490919063ffffffff16565b600a5f60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055506117f182600a5f60075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054611c9490919063ffffffff16565b600a5f60075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055506118c481600a5f60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054611c9490919063ffffffff16565b600a5f60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f208190555060065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168a73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040516119a49190611fbe565b60405180910390a360075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168a73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611a2a9190611fbe565b60405180910390a360085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168a73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051611ab09190611fbe565b60405180910390a35050505b5f611ad08287611ca990919063ffffffff16565b9050611aff86604051806060016040528060268152602001612a196026913987611c409092919063ffffffff16565b600a5f8a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550611b9081600a5f8a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054611c9490919063ffffffff16565b600a5f8973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508673ffffffffffffffffffffffffffffffffffffffff168873ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051611c2e9190611fbe565b60405180910390a35050505050505050565b5f838311158290611c87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c7e9190611e62565b60405180910390fd5b5082840390509392505050565b5f8183611ca19190612914565b905092915050565b5f8183611cb69190612947565b905092915050565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050815f806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f8183611d8c919061297a565b905092915050565b5f8183611da191906129e8565b905092915050565b5f611dd16064611dc3600485611d7f90919063ffffffff16565b611d9490919063ffffffff16565b9050919050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015611e0f578082015181840152602081019050611df4565b5f8484015250505050565b5f601f19601f8301169050919050565b5f611e3482611dd8565b611e3e8185611de2565b9350611e4e818560208601611df2565b611e5781611e1a565b840191505092915050565b5f6020820190508181035f830152611e7a8184611e2a565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f611eaf82611e86565b9050919050565b611ebf81611ea5565b8114611ec9575f80fd5b50565b5f81359050611eda81611eb6565b92915050565b5f819050919050565b611ef281611ee0565b8114611efc575f80fd5b50565b5f81359050611f0d81611ee9565b92915050565b5f8060408385031215611f2957611f28611e82565b5b5f611f3685828601611ecc565b9250506020611f4785828601611eff565b9150509250929050565b5f8115159050919050565b611f6581611f51565b82525050565b5f602082019050611f7e5f830184611f5c565b92915050565b5f60208284031215611f9957611f98611e82565b5b5f611fa684828501611ecc565b91505092915050565b611fb881611ee0565b82525050565b5f602082019050611fd15f830184611faf565b92915050565b5f805f60608486031215611fee57611fed611e82565b5b5f611ffb86828701611ecc565b935050602061200c86828701611ecc565b925050604061201d86828701611eff565b9150509250925092565b5f60ff82169050919050565b61203c81612027565b82525050565b5f6020820190506120555f830184612033565b92915050565b5f602082840312156120705761206f611e82565b5b5f61207d84828501611eff565b91505092915050565b61208f81611ea5565b82525050565b5f6020820190506120a85f830184612086565b92915050565b5f80604083850312156120c4576120c3611e82565b5b5f6120d185828601611ecc565b92505060206120e285828601611ecc565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061213057607f821691505b602082108103612143576121426120ec565b5b50919050565b7f45524332303a20726f7574657220616464726573732063616e6e6f74206265205f8201527f7a65726f00000000000000000000000000000000000000000000000000000000602082015250565b5f6121a3602483611de2565b91506121ae82612149565b604082019050919050565b5f6020820190508181035f8301526121d081612197565b9050919050565b7f45524332303a20726f757465722061646472657373206e6f7420666f756e64005f82015250565b5f61220b601f83611de2565b9150612216826121d7565b602082019050919050565b5f6020820190508181035f830152612238816121ff565b9050919050565b7f45524332303a206275726e20616d6f756e74206d7573742062652067726561745f8201527f6572207468616e207a65726f0000000000000000000000000000000000000000602082015250565b5f612299602c83611de2565b91506122a48261223f565b604082019050919050565b5f6020820190508181035f8301526122c68161228d565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e5f8201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b5f612327602283611de2565b9150612332826122cd565b604082019050919050565b5f6020820190508181035f8301526123548161231b565b9050919050565b7f4d61782070657263656e746167652063616e6e6f7420657863656564203130305f8201527f2500000000000000000000000000000000000000000000000000000000000000602082015250565b5f6123b5602183611de2565b91506123c08261235b565b604082019050919050565b5f6020820190508181035f8301526123e2816123a9565b9050919050565b7f45524332303a206e65772077616c6c657420616464726573732063616e6e6f745f8201527f206265207a65726f000000000000000000000000000000000000000000000000602082015250565b5f612443602883611de2565b915061244e826123e9565b604082019050919050565b5f6020820190508181035f83015261247081612437565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f6124d1602683611de2565b91506124dc82612477565b604082019050919050565b5f6020820190508181035f8301526124fe816124c5565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f61255f602483611de2565b915061256a82612505565b604082019050919050565b5f6020820190508181035f83015261258c81612553565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f6125ed602283611de2565b91506125f882612593565b604082019050919050565b5f6020820190508181035f83015261261a816125e1565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f612655602083611de2565b915061266082612621565b602082019050919050565b5f6020820190508181035f83015261268281612649565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f6126e3602583611de2565b91506126ee82612689565b604082019050919050565b5f6020820190508181035f830152612710816126d7565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f612771602383611de2565b915061277c82612717565b604082019050919050565b5f6020820190508181035f83015261279e81612765565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f6127ff602683611de2565b915061280a826127a5565b604082019050919050565b5f6020820190508181035f83015261282c816127f3565b9050919050565b7f45524332303a20726563697069656e7427732062616c616e636520776f756c645f8201527f2065786365656420746865206d6178696d756d20616c6c6f776564207065726360208201527f656e746167650000000000000000000000000000000000000000000000000000604082015250565b5f6128b3604683611de2565b91506128be82612833565b606082019050919050565b5f6020820190508181035f8301526128e0816128a7565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f61291e82611ee0565b915061292983611ee0565b9250828201905080821115612941576129406128e7565b5b92915050565b5f61295182611ee0565b915061295c83611ee0565b9250828203905081811115612974576129736128e7565b5b92915050565b5f61298482611ee0565b915061298f83611ee0565b925082820261299d81611ee0565b915082820484148315176129b4576129b36128e7565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f6129f282611ee0565b91506129fd83611ee0565b925082612a0d57612a0c6129bb565b5b82820490509291505056fe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa264697066735822122045f20361b72767667d679d74c84fa1d791a2e9303055f9a7fa825f67a39d941664736f6c63430008140033
Deployed Bytecode
0x608060405234801561000f575f80fd5b5060043610610140575f3560e01c80638da5cb5b116100b6578063a9059cbb1161007a578063a9059cbb14610374578063b5f5fa61146103a4578063c53930e4146103c0578063dd62ed3e146103dc578063f2fde38b1461040c578063f3d7d2821461042857610140565b80638da5cb5b146102d057806394ab5382146102ee57806395d89b411461030a578063a1df307314610328578063a457c2d71461034457610140565b806324ca984e1161010857806324ca984e146101fc578063313ce56714610218578063395093511461023657806342966c681461026657806370a0823114610296578063715018a6146102c657610140565b806306fdde0314610144578063095ea7b3146101625780630c1a26761461019257806318160ddd146101ae57806323b872dd146101cc575b5f80fd5b61014c610458565b6040516101599190611e62565b60405180910390f35b61017c60048036038101906101779190611f13565b6104e8565b6040516101899190611f6b565b60405180910390f35b6101ac60048036038101906101a79190611f84565b610505565b005b6101b661065b565b6040516101c39190611fbe565b60405180910390f35b6101e660048036038101906101e19190611fd7565b610664565b6040516101f39190611f6b565b60405180910390f35b61021660048036038101906102119190611f84565b610738565b005b610220610806565b60405161022d9190612042565b60405180910390f35b610250600480360381019061024b9190611f13565b61081b565b60405161025d9190611f6b565b60405180910390f35b610280600480360381019061027b919061205b565b6108c9565b60405161028d9190611f6b565b60405180910390f35b6102b060048036038101906102ab9190611f84565b610aa6565b6040516102bd9190611fbe565b60405180910390f35b6102ce610aec565b005b6102d8610aff565b6040516102e59190612095565b60405180910390f35b6103086004803603810190610303919061205b565b610b26565b005b610312610b7c565b60405161031f9190611e62565b60405180910390f35b610342600480360381019061033d9190611f84565b610c0c565b005b61035e60048036038101906103599190611f13565b610cc5565b60405161036b9190611f6b565b60405180910390f35b61038e60048036038101906103899190611f13565b610d8d565b60405161039b9190611f6b565b60405180910390f35b6103be60048036038101906103b99190611f84565b610daa565b005b6103da60048036038101906103d59190611f84565b610e63565b005b6103f660048036038101906103f191906120ae565b610f1c565b6040516104039190611fbe565b60405180910390f35b61042660048036038101906104219190611f84565b610f9e565b005b610442600480360381019061043d9190611f84565b611020565b60405161044f9190611f6b565b60405180910390f35b60606001805461046790612119565b80601f016020809104026020016040519081016040528092919081815260200182805461049390612119565b80156104de5780601f106104b5576101008083540402835291602001916104de565b820191905f5260205f20905b8154815290600101906020018083116104c157829003601f168201915b5050505050905090565b5f6104fb6104f4611072565b8484611079565b6001905092915050565b61050d61123c565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361057b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610572906121b9565b60405180910390fd5b60095f8273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16610604576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105fb90612221565b60405180910390fd5b5f60095f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff02191690831515021790555050565b5f600454905090565b5f6106708484846112ba565b61072d8461067c611072565b61072885604051806060016040528060288152602001612a3f60289139600b5f8b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6106df611072565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054611c409092919063ffffffff16565b611079565b600190509392505050565b61074061123c565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036107ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107a5906121b9565b60405180910390fd5b600160095f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff02191690831515021790555050565b5f60035f9054906101000a900460ff16905090565b5f6108bf610827611072565b846108ba85600b5f610837611072565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054611c9490919063ffffffff16565b611079565b6001905092915050565b5f80821161090c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610903906122af565b60405180910390fd5b81600a5f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054101561098c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109839061233d565b60405180910390fd5b6109dc82600a5f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054611ca990919063ffffffff16565b600a5f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550610a3282600454611ca990919063ffffffff16565b6004819055505f73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610a959190611fbe565b60405180910390a360019050919050565b5f600a5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b610af461123c565b610afd5f611cbe565b565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610b2e61123c565b6064811115610b72576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b69906123cb565b60405180910390fd5b8060058190555050565b606060028054610b8b90612119565b80601f0160208091040260200160405190810160405280929190818152602001828054610bb790612119565b8015610c025780601f10610bd957610100808354040283529160200191610c02565b820191905f5260205f20905b815481529060010190602001808311610be557829003601f168201915b5050505050905090565b610c1461123c565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610c82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7990612459565b60405180910390fd5b8060085f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b5f610d83610cd1611072565b84610d7e85604051806060016040528060258152602001612a6760259139600b5f610cfa611072565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054611c409092919063ffffffff16565b611079565b6001905092915050565b5f610da0610d99611072565b84846112ba565b6001905092915050565b610db261123c565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610e20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1790612459565b60405180910390fd5b8060075f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b610e6b61123c565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610ed9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ed090612459565b60405180910390fd5b8060065f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b5f600b5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b610fa661123c565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611014576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100b906124e7565b60405180910390fd5b61101d81611cbe565b50565b5f60095f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff169050919050565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036110e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110de90612575565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611155576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114c90612603565b60405180910390fd5b80600b5f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161122f9190611fbe565b60405180910390a3505050565b611244611072565b73ffffffffffffffffffffffffffffffffffffffff16611262610aff565b73ffffffffffffffffffffffffffffffffffffffff16146112b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112af9061266b565b60405180910390fd5b565b5f600a5f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205490505f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611369576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611360906126f9565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036113d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ce90612787565b60405180910390fd5b8181101561141a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141190612815565b60405180910390fd5b5f8060095f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1680156114a55750611475610aff565b73ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff1614155b156114af57600191505b60095f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1680156115385750611508610aff565b73ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff1614155b1561154257600190505b8115611609575f6115736064611565600554600454611d7f90919063ffffffff16565b611d9490919063ffffffff16565b9050806115c686600a5f8a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054611c9490919063ffffffff16565b1115611607576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115fe906128c9565b60405180910390fd5b505b5f81806116135750825b61161d575f611627565b61162685611da9565b5b90505f811115611abc575f611659600561164b600285611d7f90919063ffffffff16565b611d9490919063ffffffff16565b90505f6116836005611675600286611d7f90919063ffffffff16565b611d9490919063ffffffff16565b90505f6116ab8261169d8587611ca990919063ffffffff16565b611ca990919063ffffffff16565b905061171e83600a5f60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054611c9490919063ffffffff16565b600a5f60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055506117f182600a5f60075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054611c9490919063ffffffff16565b600a5f60075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055506118c481600a5f60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054611c9490919063ffffffff16565b600a5f60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f208190555060065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168a73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040516119a49190611fbe565b60405180910390a360075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168a73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611a2a9190611fbe565b60405180910390a360085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168a73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051611ab09190611fbe565b60405180910390a35050505b5f611ad08287611ca990919063ffffffff16565b9050611aff86604051806060016040528060268152602001612a196026913987611c409092919063ffffffff16565b600a5f8a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550611b9081600a5f8a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054611c9490919063ffffffff16565b600a5f8973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508673ffffffffffffffffffffffffffffffffffffffff168873ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051611c2e9190611fbe565b60405180910390a35050505050505050565b5f838311158290611c87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c7e9190611e62565b60405180910390fd5b5082840390509392505050565b5f8183611ca19190612914565b905092915050565b5f8183611cb69190612947565b905092915050565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050815f806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f8183611d8c919061297a565b905092915050565b5f8183611da191906129e8565b905092915050565b5f611dd16064611dc3600485611d7f90919063ffffffff16565b611d9490919063ffffffff16565b9050919050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015611e0f578082015181840152602081019050611df4565b5f8484015250505050565b5f601f19601f8301169050919050565b5f611e3482611dd8565b611e3e8185611de2565b9350611e4e818560208601611df2565b611e5781611e1a565b840191505092915050565b5f6020820190508181035f830152611e7a8184611e2a565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f611eaf82611e86565b9050919050565b611ebf81611ea5565b8114611ec9575f80fd5b50565b5f81359050611eda81611eb6565b92915050565b5f819050919050565b611ef281611ee0565b8114611efc575f80fd5b50565b5f81359050611f0d81611ee9565b92915050565b5f8060408385031215611f2957611f28611e82565b5b5f611f3685828601611ecc565b9250506020611f4785828601611eff565b9150509250929050565b5f8115159050919050565b611f6581611f51565b82525050565b5f602082019050611f7e5f830184611f5c565b92915050565b5f60208284031215611f9957611f98611e82565b5b5f611fa684828501611ecc565b91505092915050565b611fb881611ee0565b82525050565b5f602082019050611fd15f830184611faf565b92915050565b5f805f60608486031215611fee57611fed611e82565b5b5f611ffb86828701611ecc565b935050602061200c86828701611ecc565b925050604061201d86828701611eff565b9150509250925092565b5f60ff82169050919050565b61203c81612027565b82525050565b5f6020820190506120555f830184612033565b92915050565b5f602082840312156120705761206f611e82565b5b5f61207d84828501611eff565b91505092915050565b61208f81611ea5565b82525050565b5f6020820190506120a85f830184612086565b92915050565b5f80604083850312156120c4576120c3611e82565b5b5f6120d185828601611ecc565b92505060206120e285828601611ecc565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061213057607f821691505b602082108103612143576121426120ec565b5b50919050565b7f45524332303a20726f7574657220616464726573732063616e6e6f74206265205f8201527f7a65726f00000000000000000000000000000000000000000000000000000000602082015250565b5f6121a3602483611de2565b91506121ae82612149565b604082019050919050565b5f6020820190508181035f8301526121d081612197565b9050919050565b7f45524332303a20726f757465722061646472657373206e6f7420666f756e64005f82015250565b5f61220b601f83611de2565b9150612216826121d7565b602082019050919050565b5f6020820190508181035f830152612238816121ff565b9050919050565b7f45524332303a206275726e20616d6f756e74206d7573742062652067726561745f8201527f6572207468616e207a65726f0000000000000000000000000000000000000000602082015250565b5f612299602c83611de2565b91506122a48261223f565b604082019050919050565b5f6020820190508181035f8301526122c68161228d565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e5f8201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b5f612327602283611de2565b9150612332826122cd565b604082019050919050565b5f6020820190508181035f8301526123548161231b565b9050919050565b7f4d61782070657263656e746167652063616e6e6f7420657863656564203130305f8201527f2500000000000000000000000000000000000000000000000000000000000000602082015250565b5f6123b5602183611de2565b91506123c08261235b565b604082019050919050565b5f6020820190508181035f8301526123e2816123a9565b9050919050565b7f45524332303a206e65772077616c6c657420616464726573732063616e6e6f745f8201527f206265207a65726f000000000000000000000000000000000000000000000000602082015250565b5f612443602883611de2565b915061244e826123e9565b604082019050919050565b5f6020820190508181035f83015261247081612437565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f6124d1602683611de2565b91506124dc82612477565b604082019050919050565b5f6020820190508181035f8301526124fe816124c5565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f61255f602483611de2565b915061256a82612505565b604082019050919050565b5f6020820190508181035f83015261258c81612553565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f6125ed602283611de2565b91506125f882612593565b604082019050919050565b5f6020820190508181035f83015261261a816125e1565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f612655602083611de2565b915061266082612621565b602082019050919050565b5f6020820190508181035f83015261268281612649565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f6126e3602583611de2565b91506126ee82612689565b604082019050919050565b5f6020820190508181035f830152612710816126d7565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f612771602383611de2565b915061277c82612717565b604082019050919050565b5f6020820190508181035f83015261279e81612765565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f6127ff602683611de2565b915061280a826127a5565b604082019050919050565b5f6020820190508181035f83015261282c816127f3565b9050919050565b7f45524332303a20726563697069656e7427732062616c616e636520776f756c645f8201527f2065786365656420746865206d6178696d756d20616c6c6f776564207065726360208201527f656e746167650000000000000000000000000000000000000000000000000000604082015250565b5f6128b3604683611de2565b91506128be82612833565b606082019050919050565b5f6020820190508181035f8301526128e0816128a7565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f61291e82611ee0565b915061292983611ee0565b9250828201905080821115612941576129406128e7565b5b92915050565b5f61295182611ee0565b915061295c83611ee0565b9250828203905081811115612974576129736128e7565b5b92915050565b5f61298482611ee0565b915061298f83611ee0565b925082820261299d81611ee0565b915082820484148315176129b4576129b36128e7565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f6129f282611ee0565b91506129fd83611ee0565b925082612a0d57612a0c6129bb565b5b82820490509291505056fe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa264697066735822122045f20361b72767667d679d74c84fa1d791a2e9303055f9a7fa825f67a39d941664736f6c63430008140033
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.
Add Token to MetaMask (Web3)