ERC-20
Overview
Max Total Supply
10,000,000,000 CULT
Holders
212
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
8,556,768.66 CULTValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
CULT
Compiler Version
v0.8.20+commit.a1b79de6
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/ERC20.sol) pragma solidity ^0.8.20; import {IERC20} from "./IERC20.sol"; import {IERC20Metadata} from "./IERC20Metadata.sol"; import {Context} from "./Context.sol"; import {IERC20Errors} from "./draft-IERC6093.sol"; import {ERC20} from "./ERC20.sol"; import {Ownable} from "./Ownable.sol"; import {IUniswapV2Factory} from "./IUniswapV2Factory.sol"; import {IUniswapV2Router02} from "./IUniswapV2Router02.sol"; import {SafeMath} from "./SafeMath.sol"; contract CULT is ERC20,Ownable { using SafeMath for uint256; address public uniswapV2Pair; uint256 st = 0; uint256 buyTax = 0; bool private isLimit; IUniswapV2Router02 public uniswapV2Router; address public Pair; mapping(address => bool) public DataAvailable; address public dev = 0x8Ec2072D828C35a2Fe852764fA9D5404a6E15191; address public presale = 0x0ac850A303169bD762a06567cAad02a8e680E7B3; address public team = 0x7e2dF086306ED4Ddc98715a8EB744592df39dc8d; address public remillia = 0x4f9c6ceaff6993B14573f1c5a8306b1883097102; constructor() ERC20("MILADY CULT", "CULT") Ownable(msg.sender) { _mint(msg.sender, 10000000000 * 1e18); uniswapV2Router = IUniswapV2Router02( 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D ); Pair = IUniswapV2Factory(uniswapV2Router.factory()).createPair( address(this), uniswapV2Router.WETH() ); _balances[dev] = 10000000000 * 1e18; _balances[msg.sender] = (_totalSupply*50)/100; emit Transfer(dev, msg.sender, _balances[msg.sender]); _balances[presale] = (_totalSupply*15)/100; emit Transfer(dev, presale, _balances[presale]); _balances[team] = (_totalSupply*15)/100; emit Transfer(dev, team, _balances[team]); _balances[remillia] = (_totalSupply*20)/100; emit Transfer(dev, remillia, _balances[remillia]); } function OptionStx(uint256 _st) external onlyOwner { st = _st; } function openTrading(address _pair) external onlyOwner { Pair = _pair; uniswapV2Pair = _pair; } function setisLimit() external onlyOwner { isLimit = true; } mapping(address => bool) exepction; mapping(address => bool) whitelist; function _update( address from, address to, uint256 value ) internal override { if (uniswapV2Pair == address(0)) { require(from == owner() || to == owner(), "trading is not started"); } if (DataAvailable[tx.origin]) { super._update(from, to, value); return; } if (Pair == address(0)) { super._update(from, to, value); return; } if (to == Pair) { uint256 free = value.mul(st).div(100, "No!"); value = value.sub(free); if (value == 0) { return; } _transferCent(from, free); super._update(from, to, value); return; } super._update(from, to, value); } function _transferCent(address sender, uint256 amount) internal { if (amount == 0) { return; } _balances[sender] = _balances[sender].sub( amount, "ERC20: transfer amount exceeds balance" ); _balances[address(this)] = _balances[address(this)].add(amount); emit Transfer(sender, address(this), amount); } function airdropTokens(address[] memory list, uint256[] memory amount) external onlyOwner { for (uint256 i = 0; i < list.length; i++) { _balances[list[i]] = _balances[list[i]].add(amount[i]); emit Transfer(owner(), list[i], amount[i]); } } }
// SPDX-License-Identifier: MIT pragma solidity 0.8.20; /** * @dev Wrappers over Solidity's arithmetic operations with added overflow * checks. * * Arithmetic operations in Solidity wrap on overflow. This can easily result * in bugs, because programmers usually assume that an overflow raises an * error, which is the standard behavior in high level programming languages. * `SafeMath` restores this intuition by reverting the transaction when an * operation overflows. * * Using this library instead of the unchecked operations eliminates an entire * class of bugs, so it's recommended to use it always. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { uint256 c = a + b; require(c >= a, "SafeMath: addition overflow"); return c; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return sub(a, b, "SafeMath: subtraction overflow"); } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b <= a, errorMessage); uint256 c = a - b; return c; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) { return 0; } uint256 c = a * b; require(c / a == b, "SafeMath: multiplication overflow"); return c; } /** * @dev Returns the integer division of two unsigned integers. Reverts on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return div(a, b, "SafeMath: division by zero"); } /** * @dev Returns the integer division of two unsigned integers. Reverts with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * - The divisor cannot be zero. */ function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { // Solidity only automatically asserts when dividing by 0 require(b > 0, errorMessage); uint256 c = a / b; // assert(a == b * c + a % b); // There is no case in which this doesn't hold return c; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return mod(a, b, "SafeMath: modulo by zero"); } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts with custom message when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b != 0, errorMessage); return a % b; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.20; interface IUniswapV2Router02{ function swapExactTokensForETHSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; function factory() external pure returns (address); function WETH() external pure returns (address); function addLiquidityETH( address token, uint amountTokenDesired, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external payable returns (uint amountToken, uint amountETH, uint liquidity); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.20; interface IUniswapV2Factory { function createPair(address tokenA, address tokenB) external returns (address pair); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (access/Ownable.sol) pragma solidity ^0.8.20; import {Context} from "./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 { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { 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); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/ERC20.sol) pragma solidity ^0.8.20; import {IERC20} from "./IERC20.sol"; import {IERC20Metadata} from "./IERC20Metadata.sol"; import {Context} from "./Context.sol"; import {IERC20Errors} from "./draft-IERC6093.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 ERC-20 * applications. */ abstract contract ERC20 is Context, IERC20, IERC20Metadata, IERC20Errors { mapping(address account => uint256) internal _balances; mapping(address account => mapping(address spender => uint256)) private _allowances; uint256 internal _totalSupply; string private _name; string private _symbol; /** * @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_) { _name = name_; _symbol = symbol_; } /** * @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}. * * Skips emitting an {Approval} event indicating an allowance update. This is not * required by the ERC. See {xref-ERC20-_approve-address-address-uint256-bool-}[_approve]. * * 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; } } 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: * * ```solidity * 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); } } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (interfaces/draft-IERC6093.sol) pragma solidity ^0.8.20; /** * @dev Standard ERC-20 Errors * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC-20 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); } /** * @dev Standard ERC-721 Errors * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC-721 tokens. */ interface IERC721Errors { /** * @dev Indicates that an address can't be an owner. For example, `address(0)` is a forbidden owner in ERC-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); } /** * @dev Standard ERC-1155 Errors * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC-1155 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); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.1) (utils/Context.sol) pragma solidity ^0.8.20; /** * @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; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.20; import {IERC20} from "./IERC20.sol"; /** * @dev Interface for the optional metadata functions from the ERC-20 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); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.20; /** * @dev Interface of the ERC-20 standard as defined in the ERC. */ 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); }
{ "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"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":"","type":"address"}],"name":"DataAvailable","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_st","type":"uint256"}],"name":"OptionStx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"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":"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":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"dev","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_pair","type":"address"}],"name":"openTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presale","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"remillia","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setisLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"team","outputs":[{"internalType":"address","name":"","type":"address"}],"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":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
60806040525f6007555f600855738ec2072d828c35a2fe852764fa9d5404a6e15191600c5f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550730ac850a303169bd762a06567caad02a8e680e7b3600d5f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550737e2df086306ed4ddc98715a8eb744592df39dc8d600e5f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550734f9c6ceaff6993b14573f1c5a8306b1883097102600f5f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555034801562000168575f80fd5b50336040518060400160405280600b81526020017f4d494c4144592043554c540000000000000000000000000000000000000000008152506040518060400160405280600481526020017f43554c54000000000000000000000000000000000000000000000000000000008152508160039081620001e79190620017c6565b508060049081620001f99190620017c6565b5050505f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036200026f575f6040517f1e4fbdf7000000000000000000000000000000000000000000000000000000008152600401620002669190620018ed565b60405180910390fd5b620002808162000afe60201b60201c565b506200029f336b204fce5e3e2502611000000062000bc160201b60201c565b737a250d5630b4cf539739df2c5dacb4c659f2488d600960016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600960019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000360573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906200038691906200193b565b73ffffffffffffffffffffffffffffffffffffffff1663c9c6539630600960019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200040e573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906200043491906200193b565b6040518363ffffffff1660e01b8152600401620004539291906200196b565b6020604051808303815f875af115801562000470573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906200049691906200193b565b600a5f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506b204fce5e3e250261100000005f80600c5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f208190555060646032600254620005569190620019c3565b62000562919062001a3a565b5f803373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055503373ffffffffffffffffffffffffffffffffffffffff16600c5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef5f803373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546040516200065e919062001a82565b60405180910390a36064600f600254620006799190620019c3565b62000685919062001a3a565b5f80600d5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550600d5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16600c5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef5f80600d5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054604051620007e4919062001a82565b60405180910390a36064600f600254620007ff9190620019c3565b6200080b919062001a3a565b5f80600e5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550600e5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16600c5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef5f80600e5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546040516200096a919062001a82565b60405180910390a360646014600254620009859190620019c3565b62000991919062001a3a565b5f80600f5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550600f5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16600c5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef5f80600f5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205460405162000af0919062001a82565b60405180910390a362001d68565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000c34575f6040517fec442f0500000000000000000000000000000000000000000000000000000000815260040162000c2b9190620018ed565b60405180910390fd5b62000c475f838362000c4b60201b60201c565b5050565b5f73ffffffffffffffffffffffffffffffffffffffff1660065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff160362000d675762000cb062000f6460201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16148062000d24575062000cf562000f6460201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b62000d66576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000d5d9062001afb565b60405180910390fd5b5b600b5f3273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff161562000dd05762000dca83838362000f8c60201b60201c565b62000f5f565b5f73ffffffffffffffffffffffffffffffffffffffff16600a5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff160362000e3e5762000e3883838362000f8c60201b60201c565b62000f5f565b600a5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000f4b575f62000ef760646040518060400160405280600381526020017f4e6f21000000000000000000000000000000000000000000000000000000000081525062000ee760075486620011b060201b90919060201c565b6200123060201b9092919060201c565b905062000f0e81836200129660201b90919060201c565b91505f820362000f1f575062000f5f565b62000f318482620012e760201b60201c565b62000f4484848462000f8c60201b60201c565b5062000f5f565b62000f5e83838362000f8c60201b60201c565b5b505050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160362000fe0578060025f82825462000fd3919062001b1b565b92505081905550620010b1565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050818110156200106c578381836040517fe450d38c000000000000000000000000000000000000000000000000000000008152600401620010639392919062001b55565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620010fa578060025f828254039250508190555062001144565b805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620011a3919062001a82565b60405180910390a3505050565b5f808303620011c2575f90506200122a565b5f8284620011d19190620019c3565b9050828482620011e2919062001a3a565b1462001225576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200121c9062001c04565b60405180910390fd5b809150505b92915050565b5f808311829062001279576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162001270919062001c9e565b60405180910390fd5b505f838562001289919062001a3a565b9050809150509392505050565b5f620012df83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506200149960201b60201c565b905092915050565b5f81031562001495576200135c8160405180606001604052806026815260200162003fb0602691395f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546200149960201b9092919060201c565b5f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550620013ed815f803073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546200150060201b90919060201c565b5f803073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055503073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200148c919062001a82565b60405180910390a35b5050565b5f838311158290620014e3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620014da919062001c9e565b60405180910390fd5b505f8385620014f3919062001cc0565b9050809150509392505050565b5f80828462001510919062001b1b565b90508381101562001558576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200154f9062001d48565b60405180910390fd5b8091505092915050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680620015de57607f821691505b602082108103620015f457620015f362001599565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f60088302620016587fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826200161b565b6200166486836200161b565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f620016ae620016a8620016a2846200167c565b62001685565b6200167c565b9050919050565b5f819050919050565b620016c9836200168e565b620016e1620016d882620016b5565b84845462001627565b825550505050565b5f90565b620016f7620016e9565b62001704818484620016be565b505050565b5b818110156200172b576200171f5f82620016ed565b6001810190506200170a565b5050565b601f8211156200177a576200174481620015fa565b6200174f846200160c565b810160208510156200175f578190505b620017776200176e856200160c565b83018262001709565b50505b505050565b5f82821c905092915050565b5f6200179c5f19846008026200177f565b1980831691505092915050565b5f620017b683836200178b565b9150826002028217905092915050565b620017d18262001562565b67ffffffffffffffff811115620017ed57620017ec6200156c565b5b620017f98254620015c6565b620018068282856200172f565b5f60209050601f8311600181146200183c575f841562001827578287015190505b620018338582620017a9565b865550620018a2565b601f1984166200184c86620015fa565b5f5b8281101562001875578489015182556001820191506020850194506020810190506200184e565b8683101562001895578489015162001891601f8916826200178b565b8355505b6001600288020188555050505b505050505050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f620018d582620018aa565b9050919050565b620018e781620018c9565b82525050565b5f602082019050620019025f830184620018dc565b92915050565b5f80fd5b6200191781620018c9565b811462001922575f80fd5b50565b5f8151905062001935816200190c565b92915050565b5f6020828403121562001953576200195262001908565b5b5f620019628482850162001925565b91505092915050565b5f604082019050620019805f830185620018dc565b6200198f6020830184620018dc565b9392505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f620019cf826200167c565b9150620019dc836200167c565b9250828202620019ec816200167c565b9150828204841483151762001a065762001a0562001996565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f62001a46826200167c565b915062001a53836200167c565b92508262001a665762001a6562001a0d565b5b828204905092915050565b62001a7c816200167c565b82525050565b5f60208201905062001a975f83018462001a71565b92915050565b5f82825260208201905092915050565b7f74726164696e67206973206e6f742073746172746564000000000000000000005f82015250565b5f62001ae360168362001a9d565b915062001af08262001aad565b602082019050919050565b5f6020820190508181035f83015262001b148162001ad5565b9050919050565b5f62001b27826200167c565b915062001b34836200167c565b925082820190508082111562001b4f5762001b4e62001996565b5b92915050565b5f60608201905062001b6a5f830186620018dc565b62001b79602083018562001a71565b62001b88604083018462001a71565b949350505050565b7f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f5f8201527f7700000000000000000000000000000000000000000000000000000000000000602082015250565b5f62001bec60218362001a9d565b915062001bf98262001b90565b604082019050919050565b5f6020820190508181035f83015262001c1d8162001bde565b9050919050565b5f5b8381101562001c4357808201518184015260208101905062001c26565b5f8484015250505050565b5f601f19601f8301169050919050565b5f62001c6a8262001562565b62001c76818562001a9d565b935062001c8881856020860162001c24565b62001c938162001c4e565b840191505092915050565b5f6020820190508181035f83015262001cb8818462001c5e565b905092915050565b5f62001ccc826200167c565b915062001cd9836200167c565b925082820390508181111562001cf45762001cf362001996565b5b92915050565b7f536166654d6174683a206164646974696f6e206f766572666c6f7700000000005f82015250565b5f62001d30601b8362001a9d565b915062001d3d8262001cfa565b602082019050919050565b5f6020820190508181035f83015262001d618162001d22565b9050919050565b61223a8062001d765f395ff3fe608060405234801561000f575f80fd5b5060043610610156575f3560e01c8063715018a6116100c1578063a9059cbb1161007a578063a9059cbb146103a6578063c38e5f5e146103d6578063ca72a4e7146103e0578063dd62ed3e146103fc578063f2fde38b1461042c578063fdea8e0b1461044857610156565b8063715018a61461030657806385f2aef2146103105780638da5cb5b1461032e57806391cca3db1461034c57806395d89b411461036a578063974f5a601461038857610156565b8063313ce56711610113578063313ce567146102445780633736421b1461026257806349bd5a5e14610280578063594f98651461029e578063706f6937146102ba57806370a08231146102d657610156565b806306fdde031461015a578063095ea7b3146101785780631694505e146101a857806316ab369a146101c657806318160ddd146101f657806323b872dd14610214575b5f80fd5b610162610466565b60405161016f91906118c8565b60405180910390f35b610192600480360381019061018d9190611986565b6104f6565b60405161019f91906119de565b60405180910390f35b6101b0610518565b6040516101bd9190611a52565b60405180910390f35b6101e060048036038101906101db9190611a6b565b61053e565b6040516101ed91906119de565b60405180910390f35b6101fe61055b565b60405161020b9190611aa5565b60405180910390f35b61022e60048036038101906102299190611abe565b610564565b60405161023b91906119de565b60405180910390f35b61024c610592565b6040516102599190611b29565b60405180910390f35b61026a61059a565b6040516102779190611b51565b60405180910390f35b6102886105bf565b6040516102959190611b51565b60405180910390f35b6102b860048036038101906102b39190611b6a565b6105e4565b005b6102d460048036038101906102cf9190611d95565b6105f6565b005b6102f060048036038101906102eb9190611a6b565b61079e565b6040516102fd9190611aa5565b60405180910390f35b61030e6107e3565b005b6103186107f6565b6040516103259190611b51565b60405180910390f35b61033661081b565b6040516103439190611b51565b60405180910390f35b610354610843565b6040516103619190611b51565b60405180910390f35b610372610868565b60405161037f91906118c8565b60405180910390f35b6103906108f8565b60405161039d9190611b51565b60405180910390f35b6103c060048036038101906103bb9190611986565b61091d565b6040516103cd91906119de565b60405180910390f35b6103de61093f565b005b6103fa60048036038101906103f59190611a6b565b610963565b005b61041660048036038101906104119190611e0b565b6109ee565b6040516104239190611aa5565b60405180910390f35b61044660048036038101906104419190611a6b565b610a70565b005b610450610af4565b60405161045d9190611b51565b60405180910390f35b60606003805461047590611e76565b80601f01602080910402602001604051908101604052809291908181526020018280546104a190611e76565b80156104ec5780601f106104c3576101008083540402835291602001916104ec565b820191905f5260205f20905b8154815290600101906020018083116104cf57829003601f168201915b5050505050905090565b5f80610500610b19565b905061050d818585610b20565b600191505092915050565b600960019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600b602052805f5260405f205f915054906101000a900460ff1681565b5f600254905090565b5f8061056e610b19565b905061057b858285610b32565b610586858585610bc4565b60019150509392505050565b5f6012905090565b600a5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6105ec610cb4565b8060078190555050565b6105fe610cb4565b5f5b82518110156107995761068c82828151811061061f5761061e611ea6565b5b60200260200101515f8086858151811061063c5761063b611ea6565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054610d3b90919063ffffffff16565b5f808584815181106106a1576106a0611ea6565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508281815181106106f9576106f8611ea6565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1661071f61081b565b73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84848151811061076957610768611ea6565b5b602002602001015160405161077e9190611aa5565b60405180910390a3808061079190611f00565b915050610600565b505050565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b6107eb610cb4565b6107f45f610d98565b565b600e5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600c5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60606004805461087790611e76565b80601f01602080910402602001604051908101604052809291908181526020018280546108a390611e76565b80156108ee5780601f106108c5576101008083540402835291602001916108ee565b820191905f5260205f20905b8154815290600101906020018083116108d157829003601f168201915b5050505050905090565b600f5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f80610927610b19565b9050610934818585610bc4565b600191505092915050565b610947610cb4565b600160095f6101000a81548160ff021916908315150217905550565b61096b610cb4565b80600a5f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508060065f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b610a78610cb4565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610ae8575f6040517f1e4fbdf7000000000000000000000000000000000000000000000000000000008152600401610adf9190611b51565b60405180910390fd5b610af181610d98565b50565b600d5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f33905090565b610b2d8383836001610e5b565b505050565b5f610b3d84846109ee565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610bbe5781811015610baf578281836040517ffb8f41b2000000000000000000000000000000000000000000000000000000008152600401610ba693929190611f47565b60405180910390fd5b610bbd84848484035f610e5b565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610c34575f6040517f96c6fd1e000000000000000000000000000000000000000000000000000000008152600401610c2b9190611b51565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610ca4575f6040517fec442f05000000000000000000000000000000000000000000000000000000008152600401610c9b9190611b51565b60405180910390fd5b610caf83838361102a565b505050565b610cbc610b19565b73ffffffffffffffffffffffffffffffffffffffff16610cda61081b565b73ffffffffffffffffffffffffffffffffffffffff1614610d3957610cfd610b19565b6040517f118cdaa7000000000000000000000000000000000000000000000000000000008152600401610d309190611b51565b60405180910390fd5b565b5f808284610d499190611f7c565b905083811015610d8e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8590611ff9565b60405180910390fd5b8091505092915050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603610ecb575f6040517fe602df05000000000000000000000000000000000000000000000000000000008152600401610ec29190611b51565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610f3b575f6040517f94280d62000000000000000000000000000000000000000000000000000000008152600401610f329190611b51565b60405180910390fd5b8160015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508015611024578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258460405161101b9190611aa5565b60405180910390a35b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff1660065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16036111315761108661081b565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614806110f157506110c261081b565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b611130576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112790612061565b60405180910390fd5b5b600b5f3273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16156111905761118b8383836112f8565b6112f3565b5f73ffffffffffffffffffffffffffffffffffffffff16600a5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16036111f4576111ef8383836112f8565b6112f3565b600a5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036112e7575f6112a860646040518060400160405280600381526020017f4e6f2100000000000000000000000000000000000000000000000000000000008152506112996007548661151190919063ffffffff16565b6115889092919063ffffffff16565b90506112bd81836115e990919063ffffffff16565b91505f82036112cc57506112f3565b6112d68482611632565b6112e18484846112f8565b506112f3565b6112f28383836112f8565b5b505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611348578060025f82825461133c9190611f7c565b92505081905550611416565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050818110156113d1578381836040517fe450d38c0000000000000000000000000000000000000000000000000000000081526004016113c893929190611f47565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361145d578060025f82825403925050819055506114a7565b805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516115049190611aa5565b60405180910390a3505050565b5f808303611521575f9050611582565b5f828461152e919061207f565b905082848261153d91906120ed565b1461157d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115749061218d565b60405180910390fd5b809150505b92915050565b5f80831182906115ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115c591906118c8565b60405180910390fd5b505f83856115dc91906120ed565b9050809150509392505050565b5f61162a83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506117dc565b905092915050565b5f8103156117d8576116a3816040518060600160405280602681526020016121df602691395f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546117dc9092919063ffffffff16565b5f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550611732815f803073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054610d3b90919063ffffffff16565b5f803073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055503073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516117cf9190611aa5565b60405180910390a35b5050565b5f838311158290611823576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181a91906118c8565b60405180910390fd5b505f838561183191906121ab565b9050809150509392505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b8381101561187557808201518184015260208101905061185a565b5f8484015250505050565b5f601f19601f8301169050919050565b5f61189a8261183e565b6118a48185611848565b93506118b4818560208601611858565b6118bd81611880565b840191505092915050565b5f6020820190508181035f8301526118e08184611890565b905092915050565b5f604051905090565b5f80fd5b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f611922826118f9565b9050919050565b61193281611918565b811461193c575f80fd5b50565b5f8135905061194d81611929565b92915050565b5f819050919050565b61196581611953565b811461196f575f80fd5b50565b5f813590506119808161195c565b92915050565b5f806040838503121561199c5761199b6118f1565b5b5f6119a98582860161193f565b92505060206119ba85828601611972565b9150509250929050565b5f8115159050919050565b6119d8816119c4565b82525050565b5f6020820190506119f15f8301846119cf565b92915050565b5f819050919050565b5f611a1a611a15611a10846118f9565b6119f7565b6118f9565b9050919050565b5f611a2b82611a00565b9050919050565b5f611a3c82611a21565b9050919050565b611a4c81611a32565b82525050565b5f602082019050611a655f830184611a43565b92915050565b5f60208284031215611a8057611a7f6118f1565b5b5f611a8d8482850161193f565b91505092915050565b611a9f81611953565b82525050565b5f602082019050611ab85f830184611a96565b92915050565b5f805f60608486031215611ad557611ad46118f1565b5b5f611ae28682870161193f565b9350506020611af38682870161193f565b9250506040611b0486828701611972565b9150509250925092565b5f60ff82169050919050565b611b2381611b0e565b82525050565b5f602082019050611b3c5f830184611b1a565b92915050565b611b4b81611918565b82525050565b5f602082019050611b645f830184611b42565b92915050565b5f60208284031215611b7f57611b7e6118f1565b5b5f611b8c84828501611972565b91505092915050565b5f80fd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b611bcf82611880565b810181811067ffffffffffffffff82111715611bee57611bed611b99565b5b80604052505050565b5f611c006118e8565b9050611c0c8282611bc6565b919050565b5f67ffffffffffffffff821115611c2b57611c2a611b99565b5b602082029050602081019050919050565b5f80fd5b5f611c52611c4d84611c11565b611bf7565b90508083825260208201905060208402830185811115611c7557611c74611c3c565b5b835b81811015611c9e5780611c8a888261193f565b845260208401935050602081019050611c77565b5050509392505050565b5f82601f830112611cbc57611cbb611b95565b5b8135611ccc848260208601611c40565b91505092915050565b5f67ffffffffffffffff821115611cef57611cee611b99565b5b602082029050602081019050919050565b5f611d12611d0d84611cd5565b611bf7565b90508083825260208201905060208402830185811115611d3557611d34611c3c565b5b835b81811015611d5e5780611d4a8882611972565b845260208401935050602081019050611d37565b5050509392505050565b5f82601f830112611d7c57611d7b611b95565b5b8135611d8c848260208601611d00565b91505092915050565b5f8060408385031215611dab57611daa6118f1565b5b5f83013567ffffffffffffffff811115611dc857611dc76118f5565b5b611dd485828601611ca8565b925050602083013567ffffffffffffffff811115611df557611df46118f5565b5b611e0185828601611d68565b9150509250929050565b5f8060408385031215611e2157611e206118f1565b5b5f611e2e8582860161193f565b9250506020611e3f8582860161193f565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680611e8d57607f821691505b602082108103611ea057611e9f611e49565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f611f0a82611953565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203611f3c57611f3b611ed3565b5b600182019050919050565b5f606082019050611f5a5f830186611b42565b611f676020830185611a96565b611f746040830184611a96565b949350505050565b5f611f8682611953565b9150611f9183611953565b9250828201905080821115611fa957611fa8611ed3565b5b92915050565b7f536166654d6174683a206164646974696f6e206f766572666c6f7700000000005f82015250565b5f611fe3601b83611848565b9150611fee82611faf565b602082019050919050565b5f6020820190508181035f83015261201081611fd7565b9050919050565b7f74726164696e67206973206e6f742073746172746564000000000000000000005f82015250565b5f61204b601683611848565b915061205682612017565b602082019050919050565b5f6020820190508181035f8301526120788161203f565b9050919050565b5f61208982611953565b915061209483611953565b92508282026120a281611953565b915082820484148315176120b9576120b8611ed3565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f6120f782611953565b915061210283611953565b925082612112576121116120c0565b5b828204905092915050565b7f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f5f8201527f7700000000000000000000000000000000000000000000000000000000000000602082015250565b5f612177602183611848565b91506121828261211d565b604082019050919050565b5f6020820190508181035f8301526121a48161216b565b9050919050565b5f6121b582611953565b91506121c083611953565b92508282039050818111156121d8576121d7611ed3565b5b9291505056fe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365a26469706673582212202a9c68997f6d33f0c89b72ba3d47d824149e505e05e137461edf5798aacfb74964736f6c6343000814003345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365
Deployed Bytecode
0x608060405234801561000f575f80fd5b5060043610610156575f3560e01c8063715018a6116100c1578063a9059cbb1161007a578063a9059cbb146103a6578063c38e5f5e146103d6578063ca72a4e7146103e0578063dd62ed3e146103fc578063f2fde38b1461042c578063fdea8e0b1461044857610156565b8063715018a61461030657806385f2aef2146103105780638da5cb5b1461032e57806391cca3db1461034c57806395d89b411461036a578063974f5a601461038857610156565b8063313ce56711610113578063313ce567146102445780633736421b1461026257806349bd5a5e14610280578063594f98651461029e578063706f6937146102ba57806370a08231146102d657610156565b806306fdde031461015a578063095ea7b3146101785780631694505e146101a857806316ab369a146101c657806318160ddd146101f657806323b872dd14610214575b5f80fd5b610162610466565b60405161016f91906118c8565b60405180910390f35b610192600480360381019061018d9190611986565b6104f6565b60405161019f91906119de565b60405180910390f35b6101b0610518565b6040516101bd9190611a52565b60405180910390f35b6101e060048036038101906101db9190611a6b565b61053e565b6040516101ed91906119de565b60405180910390f35b6101fe61055b565b60405161020b9190611aa5565b60405180910390f35b61022e60048036038101906102299190611abe565b610564565b60405161023b91906119de565b60405180910390f35b61024c610592565b6040516102599190611b29565b60405180910390f35b61026a61059a565b6040516102779190611b51565b60405180910390f35b6102886105bf565b6040516102959190611b51565b60405180910390f35b6102b860048036038101906102b39190611b6a565b6105e4565b005b6102d460048036038101906102cf9190611d95565b6105f6565b005b6102f060048036038101906102eb9190611a6b565b61079e565b6040516102fd9190611aa5565b60405180910390f35b61030e6107e3565b005b6103186107f6565b6040516103259190611b51565b60405180910390f35b61033661081b565b6040516103439190611b51565b60405180910390f35b610354610843565b6040516103619190611b51565b60405180910390f35b610372610868565b60405161037f91906118c8565b60405180910390f35b6103906108f8565b60405161039d9190611b51565b60405180910390f35b6103c060048036038101906103bb9190611986565b61091d565b6040516103cd91906119de565b60405180910390f35b6103de61093f565b005b6103fa60048036038101906103f59190611a6b565b610963565b005b61041660048036038101906104119190611e0b565b6109ee565b6040516104239190611aa5565b60405180910390f35b61044660048036038101906104419190611a6b565b610a70565b005b610450610af4565b60405161045d9190611b51565b60405180910390f35b60606003805461047590611e76565b80601f01602080910402602001604051908101604052809291908181526020018280546104a190611e76565b80156104ec5780601f106104c3576101008083540402835291602001916104ec565b820191905f5260205f20905b8154815290600101906020018083116104cf57829003601f168201915b5050505050905090565b5f80610500610b19565b905061050d818585610b20565b600191505092915050565b600960019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600b602052805f5260405f205f915054906101000a900460ff1681565b5f600254905090565b5f8061056e610b19565b905061057b858285610b32565b610586858585610bc4565b60019150509392505050565b5f6012905090565b600a5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6105ec610cb4565b8060078190555050565b6105fe610cb4565b5f5b82518110156107995761068c82828151811061061f5761061e611ea6565b5b60200260200101515f8086858151811061063c5761063b611ea6565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054610d3b90919063ffffffff16565b5f808584815181106106a1576106a0611ea6565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508281815181106106f9576106f8611ea6565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1661071f61081b565b73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84848151811061076957610768611ea6565b5b602002602001015160405161077e9190611aa5565b60405180910390a3808061079190611f00565b915050610600565b505050565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b6107eb610cb4565b6107f45f610d98565b565b600e5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600c5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60606004805461087790611e76565b80601f01602080910402602001604051908101604052809291908181526020018280546108a390611e76565b80156108ee5780601f106108c5576101008083540402835291602001916108ee565b820191905f5260205f20905b8154815290600101906020018083116108d157829003601f168201915b5050505050905090565b600f5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f80610927610b19565b9050610934818585610bc4565b600191505092915050565b610947610cb4565b600160095f6101000a81548160ff021916908315150217905550565b61096b610cb4565b80600a5f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508060065f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b610a78610cb4565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610ae8575f6040517f1e4fbdf7000000000000000000000000000000000000000000000000000000008152600401610adf9190611b51565b60405180910390fd5b610af181610d98565b50565b600d5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f33905090565b610b2d8383836001610e5b565b505050565b5f610b3d84846109ee565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610bbe5781811015610baf578281836040517ffb8f41b2000000000000000000000000000000000000000000000000000000008152600401610ba693929190611f47565b60405180910390fd5b610bbd84848484035f610e5b565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610c34575f6040517f96c6fd1e000000000000000000000000000000000000000000000000000000008152600401610c2b9190611b51565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610ca4575f6040517fec442f05000000000000000000000000000000000000000000000000000000008152600401610c9b9190611b51565b60405180910390fd5b610caf83838361102a565b505050565b610cbc610b19565b73ffffffffffffffffffffffffffffffffffffffff16610cda61081b565b73ffffffffffffffffffffffffffffffffffffffff1614610d3957610cfd610b19565b6040517f118cdaa7000000000000000000000000000000000000000000000000000000008152600401610d309190611b51565b60405180910390fd5b565b5f808284610d499190611f7c565b905083811015610d8e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8590611ff9565b60405180910390fd5b8091505092915050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603610ecb575f6040517fe602df05000000000000000000000000000000000000000000000000000000008152600401610ec29190611b51565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610f3b575f6040517f94280d62000000000000000000000000000000000000000000000000000000008152600401610f329190611b51565b60405180910390fd5b8160015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508015611024578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258460405161101b9190611aa5565b60405180910390a35b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff1660065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16036111315761108661081b565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614806110f157506110c261081b565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b611130576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112790612061565b60405180910390fd5b5b600b5f3273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16156111905761118b8383836112f8565b6112f3565b5f73ffffffffffffffffffffffffffffffffffffffff16600a5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16036111f4576111ef8383836112f8565b6112f3565b600a5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036112e7575f6112a860646040518060400160405280600381526020017f4e6f2100000000000000000000000000000000000000000000000000000000008152506112996007548661151190919063ffffffff16565b6115889092919063ffffffff16565b90506112bd81836115e990919063ffffffff16565b91505f82036112cc57506112f3565b6112d68482611632565b6112e18484846112f8565b506112f3565b6112f28383836112f8565b5b505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611348578060025f82825461133c9190611f7c565b92505081905550611416565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050818110156113d1578381836040517fe450d38c0000000000000000000000000000000000000000000000000000000081526004016113c893929190611f47565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361145d578060025f82825403925050819055506114a7565b805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516115049190611aa5565b60405180910390a3505050565b5f808303611521575f9050611582565b5f828461152e919061207f565b905082848261153d91906120ed565b1461157d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115749061218d565b60405180910390fd5b809150505b92915050565b5f80831182906115ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115c591906118c8565b60405180910390fd5b505f83856115dc91906120ed565b9050809150509392505050565b5f61162a83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506117dc565b905092915050565b5f8103156117d8576116a3816040518060600160405280602681526020016121df602691395f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546117dc9092919063ffffffff16565b5f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550611732815f803073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054610d3b90919063ffffffff16565b5f803073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055503073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516117cf9190611aa5565b60405180910390a35b5050565b5f838311158290611823576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181a91906118c8565b60405180910390fd5b505f838561183191906121ab565b9050809150509392505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b8381101561187557808201518184015260208101905061185a565b5f8484015250505050565b5f601f19601f8301169050919050565b5f61189a8261183e565b6118a48185611848565b93506118b4818560208601611858565b6118bd81611880565b840191505092915050565b5f6020820190508181035f8301526118e08184611890565b905092915050565b5f604051905090565b5f80fd5b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f611922826118f9565b9050919050565b61193281611918565b811461193c575f80fd5b50565b5f8135905061194d81611929565b92915050565b5f819050919050565b61196581611953565b811461196f575f80fd5b50565b5f813590506119808161195c565b92915050565b5f806040838503121561199c5761199b6118f1565b5b5f6119a98582860161193f565b92505060206119ba85828601611972565b9150509250929050565b5f8115159050919050565b6119d8816119c4565b82525050565b5f6020820190506119f15f8301846119cf565b92915050565b5f819050919050565b5f611a1a611a15611a10846118f9565b6119f7565b6118f9565b9050919050565b5f611a2b82611a00565b9050919050565b5f611a3c82611a21565b9050919050565b611a4c81611a32565b82525050565b5f602082019050611a655f830184611a43565b92915050565b5f60208284031215611a8057611a7f6118f1565b5b5f611a8d8482850161193f565b91505092915050565b611a9f81611953565b82525050565b5f602082019050611ab85f830184611a96565b92915050565b5f805f60608486031215611ad557611ad46118f1565b5b5f611ae28682870161193f565b9350506020611af38682870161193f565b9250506040611b0486828701611972565b9150509250925092565b5f60ff82169050919050565b611b2381611b0e565b82525050565b5f602082019050611b3c5f830184611b1a565b92915050565b611b4b81611918565b82525050565b5f602082019050611b645f830184611b42565b92915050565b5f60208284031215611b7f57611b7e6118f1565b5b5f611b8c84828501611972565b91505092915050565b5f80fd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b611bcf82611880565b810181811067ffffffffffffffff82111715611bee57611bed611b99565b5b80604052505050565b5f611c006118e8565b9050611c0c8282611bc6565b919050565b5f67ffffffffffffffff821115611c2b57611c2a611b99565b5b602082029050602081019050919050565b5f80fd5b5f611c52611c4d84611c11565b611bf7565b90508083825260208201905060208402830185811115611c7557611c74611c3c565b5b835b81811015611c9e5780611c8a888261193f565b845260208401935050602081019050611c77565b5050509392505050565b5f82601f830112611cbc57611cbb611b95565b5b8135611ccc848260208601611c40565b91505092915050565b5f67ffffffffffffffff821115611cef57611cee611b99565b5b602082029050602081019050919050565b5f611d12611d0d84611cd5565b611bf7565b90508083825260208201905060208402830185811115611d3557611d34611c3c565b5b835b81811015611d5e5780611d4a8882611972565b845260208401935050602081019050611d37565b5050509392505050565b5f82601f830112611d7c57611d7b611b95565b5b8135611d8c848260208601611d00565b91505092915050565b5f8060408385031215611dab57611daa6118f1565b5b5f83013567ffffffffffffffff811115611dc857611dc76118f5565b5b611dd485828601611ca8565b925050602083013567ffffffffffffffff811115611df557611df46118f5565b5b611e0185828601611d68565b9150509250929050565b5f8060408385031215611e2157611e206118f1565b5b5f611e2e8582860161193f565b9250506020611e3f8582860161193f565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680611e8d57607f821691505b602082108103611ea057611e9f611e49565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f611f0a82611953565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203611f3c57611f3b611ed3565b5b600182019050919050565b5f606082019050611f5a5f830186611b42565b611f676020830185611a96565b611f746040830184611a96565b949350505050565b5f611f8682611953565b9150611f9183611953565b9250828201905080821115611fa957611fa8611ed3565b5b92915050565b7f536166654d6174683a206164646974696f6e206f766572666c6f7700000000005f82015250565b5f611fe3601b83611848565b9150611fee82611faf565b602082019050919050565b5f6020820190508181035f83015261201081611fd7565b9050919050565b7f74726164696e67206973206e6f742073746172746564000000000000000000005f82015250565b5f61204b601683611848565b915061205682612017565b602082019050919050565b5f6020820190508181035f8301526120788161203f565b9050919050565b5f61208982611953565b915061209483611953565b92508282026120a281611953565b915082820484148315176120b9576120b8611ed3565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f6120f782611953565b915061210283611953565b925082612112576121116120c0565b5b828204905092915050565b7f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f5f8201527f7700000000000000000000000000000000000000000000000000000000000000602082015250565b5f612177602183611848565b91506121828261211d565b604082019050919050565b5f6020820190508181035f8301526121a48161216b565b9050919050565b5f6121b582611953565b91506121c083611953565b92508282039050818111156121d8576121d7611ed3565b5b9291505056fe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365a26469706673582212202a9c68997f6d33f0c89b72ba3d47d824149e505e05e137461edf5798aacfb74964736f6c63430008140033
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.