Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Contract Source Code Verified (Exact Match)
Contract Name:
InsideOut2
Compiler Version
v0.8.25+commit.b61c2a91
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2024-06-13 */ // SPDX-License-Identifier: MIT /* .-') _ .-') _ .-') _ ('-. .-') _ ( OO ) ) ( OO ). ( ( OO) ) _( OO) ( OO) ) ,-.-') ,--./ ,--,' (_)---\_) ,-.-') \ .'_ (,------. .-'),-----. ,--. ,--. / '._ .-----. | |OO) | \ | |\ / _ | | |OO) ,`'--..._) | .---' ( OO' .-. ' | | | | |'--...__) / ,-. \ | | \ | \| | ) \ :` `. | | \ | | \ ' | | / | | | | | | | .-') '--. .--' '-' | | | |(_/ | . |/ '..`''.) | |(_/ | | ' | (| '--. \_) | |\| | | |_|( OO ) | | .' / ,| |_.' | |\ | .-._) \ ,| |_.' | | / : | .--' \ | | | | | | | `-' / | | .' /__ (_| | | | \ | \ / (_| | | '--' / | `---. `' '-' '(' '-'(_.-' | | | | `--' `--' `--' `-----' `--' `-------' `------' `-----' `-----' `--' `-------' */ // https://disney.fandom.com/wiki/Inside_Out_2 pragma solidity ^0.8.25; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address sender, address recipient, uint256 amount ) external returns (bool); /** * @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); } // File @openzeppelin/contracts/token/ERC20/extensions/[email protected] // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol) /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); } // File @openzeppelin/contracts/utils/[email protected] // 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; } } // File @openzeppelin/contracts/access/[email protected] // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); constructor (address initOwner) { _owner = initOwner; emit OwnershipTransferred(address(0), _owner); } function owner() public view returns (address) {return _owner;} modifier onlyOwner() { require(_owner == _msgSender(), "Ownable: caller is not the owner"); _; } function renounceOwnership() public virtual onlyOwner { emit OwnershipTransferred(_owner, address(0)); _owner = address(0); } } // File @openzeppelin/contracts/token/ERC20/[email protected] // OpenZeppelin Contracts v4.4.1 (token/ERC20/ERC20.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}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of ERC20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract InsideOut2 is Context, IERC20, IERC20Metadata, Ownable { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint8 private _decimals; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * The default value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_, uint8 decimals_, uint256 totalSupply_, address _owner, address _supplier) Ownable(_owner) { _name = name_; _symbol = symbol_; _decimals = decimals_; _totalSupply = totalSupply_ * 10 ** _decimals; _balances[_supplier] = _totalSupply; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override 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 value {ERC20} uses, unless this function is * 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 override returns (uint8) { return _decimals; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address recipient, uint256 amount) public virtual override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { _approve(_msgSender(), spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * Requirements: * * - `sender` and `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. * - the caller must have allowance for ``sender``'s tokens of at least * `amount`. */ function transferFrom( address sender, address recipient, uint256 amount ) public virtual override returns (bool) { _transfer(sender, recipient, amount); uint256 currentAllowance = _allowances[sender][_msgSender()]; require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance"); unchecked { _approve(sender, _msgSender(), currentAllowance - amount); } return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender] + addedValue); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { uint256 currentAllowance = _allowances[_msgSender()][spender]; require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(_msgSender(), spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `sender` to `recipient`. * * 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. * * Requirements: * * - `sender` cannot be the zero address. * - `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. */ function _transfer( address sender, address recipient, uint256 amount ) internal virtual { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(sender, recipient, amount); uint256 senderBalance = _balances[sender]; require(senderBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[sender] = senderBalance - amount; } _balances[recipient] += amount; emit Transfer(sender, recipient, amount); _afterTokenTransfer(sender, recipient, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account] = accountBalance - amount; } _totalSupply -= amount; emit Transfer(account, address(0), amount); _afterTokenTransfer(account, address(0), amount); } /** * @dev Sets `amount` 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. */ function _approve( address owner, address spender, uint256 amount ) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 amount ) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * has been transferred to `to`. * - when `from` is zero, `amount` tokens have been minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens have been burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 amount ) internal virtual {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"},{"internalType":"uint8","name":"decimals_","type":"uint8"},{"internalType":"uint256","name":"totalSupply_","type":"uint256"},{"internalType":"address","name":"_owner","type":"address"},{"internalType":"address","name":"_supplier","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"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":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"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"}]
Contract Creation Code
608060405234801561000f575f80fd5b50604051610e18380380610e1883398101604081905261002e91610197565b5f80546001600160a01b0319166001600160a01b03841690811782556040518492907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350600561008287826102ba565b50600661008f86826102ba565b506003805460ff191660ff86169081179091556100ad90600a61046f565b6100b79084610484565b60048190556001600160a01b039091165f908152600160205260409020555061049b9350505050565b634e487b7160e01b5f52604160045260245ffd5b5f82601f830112610103575f80fd5b81516001600160401b038082111561011d5761011d6100e0565b604051601f8301601f19908116603f01168101908282118183101715610145576101456100e0565b8160405283815286602085880101111561015d575f80fd5b8360208701602083015e5f602085830101528094505050505092915050565b80516001600160a01b0381168114610192575f80fd5b919050565b5f805f805f8060c087890312156101ac575f80fd5b86516001600160401b03808211156101c2575f80fd5b6101ce8a838b016100f4565b975060208901519150808211156101e3575f80fd5b506101f089828a016100f4565b955050604087015160ff81168114610206575f80fd5b6060880151909450925061021c6080880161017c565b915061022a60a0880161017c565b90509295509295509295565b600181811c9082168061024a57607f821691505b60208210810361026857634e487b7160e01b5f52602260045260245ffd5b50919050565b601f8211156102b557805f5260205f20601f840160051c810160208510156102935750805b601f840160051c820191505b818110156102b2575f815560010161029f565b50505b505050565b81516001600160401b038111156102d3576102d36100e0565b6102e7816102e18454610236565b8461026e565b602080601f83116001811461031a575f84156103035750858301515b5f19600386901b1c1916600185901b178555610371565b5f85815260208120601f198616915b8281101561034857888601518255948401946001909101908401610329565b508582101561036557878501515f19600388901b60f8161c191681555b505060018460011b0185555b505050505050565b634e487b7160e01b5f52601160045260245ffd5b600181815b808511156103c757815f19048211156103ad576103ad610379565b808516156103ba57918102915b93841c9390800290610392565b509250929050565b5f826103dd57506001610469565b816103e957505f610469565b81600181146103ff576002811461040957610425565b6001915050610469565b60ff84111561041a5761041a610379565b50506001821b610469565b5060208310610133831016604e8410600b8410161715610448575081810a610469565b610452838361038d565b805f190482111561046557610465610379565b0290505b92915050565b5f61047d60ff8416836103cf565b9392505050565b808202811582820484141761046957610469610379565b610970806104a85f395ff3fe608060405234801561000f575f80fd5b50600436106100cb575f3560e01c806370a082311161008857806395d89b411161006357806395d89b41146101a9578063a457c2d7146101b1578063a9059cbb146101c4578063dd62ed3e146101d7575f80fd5b806370a082311461015d578063715018a6146101855780638da5cb5b1461018f575f80fd5b806306fdde03146100cf578063095ea7b3146100ed57806318160ddd1461011057806323b872dd14610122578063313ce56714610135578063395093511461014a575b5f80fd5b6100d761020f565b6040516100e491906107e1565b60405180910390f35b6101006100fb366004610831565b61029f565b60405190151581526020016100e4565b6004545b6040519081526020016100e4565b610100610130366004610859565b6102b5565b60035460405160ff90911681526020016100e4565b610100610158366004610831565b610362565b61011461016b366004610892565b6001600160a01b03165f9081526001602052604090205490565b61018d61039d565b005b5f546040516001600160a01b0390911681526020016100e4565b6100d761043e565b6101006101bf366004610831565b61044d565b6101006101d2366004610831565b6104e5565b6101146101e53660046108b2565b6001600160a01b039182165f90815260026020908152604080832093909416825291909152205490565b60606005805461021e906108e3565b80601f016020809104026020016040519081016040528092919081815260200182805461024a906108e3565b80156102955780601f1061026c57610100808354040283529160200191610295565b820191905f5260205f20905b81548152906001019060200180831161027857829003601f168201915b5050505050905090565b5f6102ab3384846104f1565b5060015b92915050565b5f6102c1848484610614565b6001600160a01b0384165f9081526002602090815260408083203384529091529020548281101561034a5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b61035785338584036104f1565b506001949350505050565b335f8181526002602090815260408083206001600160a01b038716845290915281205490916102ab91859061039890869061091b565b6104f1565b5f546001600160a01b031633146103f65760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610341565b5f80546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a35f80546001600160a01b0319169055565b60606006805461021e906108e3565b335f9081526002602090815260408083206001600160a01b0386168452909152812054828110156104ce5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610341565b6104db33858584036104f1565b5060019392505050565b5f6102ab338484610614565b6001600160a01b0383166105535760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610341565b6001600160a01b0382166105b45760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610341565b6001600160a01b038381165f8181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166106785760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610341565b6001600160a01b0382166106da5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610341565b6001600160a01b0383165f90815260016020526040902054818110156107515760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610341565b6001600160a01b038085165f9081526001602052604080822085850390559185168152908120805484929061078790849061091b565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516107d391815260200190565b60405180910390a350505050565b602081525f82518060208401528060208501604085015e5f604082850101526040601f19601f83011684010191505092915050565b80356001600160a01b038116811461082c575f80fd5b919050565b5f8060408385031215610842575f80fd5b61084b83610816565b946020939093013593505050565b5f805f6060848603121561086b575f80fd5b61087484610816565b925061088260208501610816565b9150604084013590509250925092565b5f602082840312156108a2575f80fd5b6108ab82610816565b9392505050565b5f80604083850312156108c3575f80fd5b6108cc83610816565b91506108da60208401610816565b90509250929050565b600181811c908216806108f757607f821691505b60208210810361091557634e487b7160e01b5f52602260045260245ffd5b50919050565b808201808211156102af57634e487b7160e01b5f52601160045260245ffdfea264697066735822122058e1825d948daad8ab2a7f24be22314e0139d9dc5d17771b77e80481d4c41a5964736f6c6343000819003300000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000000000000134d8e60000000000000000000000000000000000000000000000000000000000000000000000000000000000000000d937080a1af64bcddbd964a470446aaf8d988331000000000000000000000000000000000000000000000000000000000000000c496e73696465204f7574203200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003494f320000000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x608060405234801561000f575f80fd5b50600436106100cb575f3560e01c806370a082311161008857806395d89b411161006357806395d89b41146101a9578063a457c2d7146101b1578063a9059cbb146101c4578063dd62ed3e146101d7575f80fd5b806370a082311461015d578063715018a6146101855780638da5cb5b1461018f575f80fd5b806306fdde03146100cf578063095ea7b3146100ed57806318160ddd1461011057806323b872dd14610122578063313ce56714610135578063395093511461014a575b5f80fd5b6100d761020f565b6040516100e491906107e1565b60405180910390f35b6101006100fb366004610831565b61029f565b60405190151581526020016100e4565b6004545b6040519081526020016100e4565b610100610130366004610859565b6102b5565b60035460405160ff90911681526020016100e4565b610100610158366004610831565b610362565b61011461016b366004610892565b6001600160a01b03165f9081526001602052604090205490565b61018d61039d565b005b5f546040516001600160a01b0390911681526020016100e4565b6100d761043e565b6101006101bf366004610831565b61044d565b6101006101d2366004610831565b6104e5565b6101146101e53660046108b2565b6001600160a01b039182165f90815260026020908152604080832093909416825291909152205490565b60606005805461021e906108e3565b80601f016020809104026020016040519081016040528092919081815260200182805461024a906108e3565b80156102955780601f1061026c57610100808354040283529160200191610295565b820191905f5260205f20905b81548152906001019060200180831161027857829003601f168201915b5050505050905090565b5f6102ab3384846104f1565b5060015b92915050565b5f6102c1848484610614565b6001600160a01b0384165f9081526002602090815260408083203384529091529020548281101561034a5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b61035785338584036104f1565b506001949350505050565b335f8181526002602090815260408083206001600160a01b038716845290915281205490916102ab91859061039890869061091b565b6104f1565b5f546001600160a01b031633146103f65760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610341565b5f80546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a35f80546001600160a01b0319169055565b60606006805461021e906108e3565b335f9081526002602090815260408083206001600160a01b0386168452909152812054828110156104ce5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610341565b6104db33858584036104f1565b5060019392505050565b5f6102ab338484610614565b6001600160a01b0383166105535760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610341565b6001600160a01b0382166105b45760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610341565b6001600160a01b038381165f8181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166106785760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610341565b6001600160a01b0382166106da5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610341565b6001600160a01b0383165f90815260016020526040902054818110156107515760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610341565b6001600160a01b038085165f9081526001602052604080822085850390559185168152908120805484929061078790849061091b565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516107d391815260200190565b60405180910390a350505050565b602081525f82518060208401528060208501604085015e5f604082850101526040601f19601f83011684010191505092915050565b80356001600160a01b038116811461082c575f80fd5b919050565b5f8060408385031215610842575f80fd5b61084b83610816565b946020939093013593505050565b5f805f6060848603121561086b575f80fd5b61087484610816565b925061088260208501610816565b9150604084013590509250925092565b5f602082840312156108a2575f80fd5b6108ab82610816565b9392505050565b5f80604083850312156108c3575f80fd5b6108cc83610816565b91506108da60208401610816565b90509250929050565b600181811c908216806108f757607f821691505b60208210810361091557634e487b7160e01b5f52602260045260245ffd5b50919050565b808201808211156102af57634e487b7160e01b5f52601160045260245ffdfea264697066735822122058e1825d948daad8ab2a7f24be22314e0139d9dc5d17771b77e80481d4c41a5964736f6c63430008190033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000000000000134d8e60000000000000000000000000000000000000000000000000000000000000000000000000000000000000000d937080a1af64bcddbd964a470446aaf8d988331000000000000000000000000000000000000000000000000000000000000000c496e73696465204f7574203200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003494f320000000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : name_ (string): Inside Out 2
Arg [1] : symbol_ (string): IO2
Arg [2] : decimals_ (uint8): 18
Arg [3] : totalSupply_ (uint256): 20240614
Arg [4] : _owner (address): 0x0000000000000000000000000000000000000000
Arg [5] : _supplier (address): 0xd937080a1af64bCddbD964a470446aAF8d988331
-----Encoded View---------------
10 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000012
Arg [3] : 000000000000000000000000000000000000000000000000000000000134d8e6
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [5] : 000000000000000000000000d937080a1af64bcddbd964a470446aaf8d988331
Arg [6] : 000000000000000000000000000000000000000000000000000000000000000c
Arg [7] : 496e73696465204f757420320000000000000000000000000000000000000000
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [9] : 494f320000000000000000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
7622:10326:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8670:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10844:169;;;;;;:::i;:::-;;:::i;:::-;;;1039:14:1;;1032:22;1014:41;;1002:2;987:18;10844:169:0;874:187:1;9797:108:0;9885:12;;9797:108;;;1212:25:1;;;1200:2;1185:18;9797:108:0;1066:177:1;11495:492:0;;;;;;:::i;:::-;;:::i;9632:100::-;9715:9;;9632:100;;9715:9;;;;1723:36:1;;1711:2;1696:18;9632:100:0;1581:184:1;12396:215:0;;;;;;:::i;:::-;;:::i;9968:127::-;;;;;;:::i;:::-;-1:-1:-1;;;;;10069:18:0;10042:7;10069:18;;;:9;:18;;;;;;;9968:127;6145:148;;;:::i;:::-;;5951:63;5989:7;6006:6;5951:63;;-1:-1:-1;;;;;6006:6:0;;;2107:51:1;;2095:2;2080:18;5951:63:0;1961:203:1;8889:104:0;;;:::i;13114:413::-;;;;;;:::i;:::-;;:::i;10308:175::-;;;;;;:::i;:::-;;:::i;10546:151::-;;;;;;:::i;:::-;-1:-1:-1;;;;;10662:18:0;;;10635:7;10662:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;10546:151;8670:100;8724:13;8757:5;8750:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8670:100;:::o;10844:169::-;10927:4;10944:39;5414:10;10967:7;10976:6;10944:8;:39::i;:::-;-1:-1:-1;11001:4:0;10844:169;;;;;:::o;11495:492::-;11635:4;11652:36;11662:6;11670:9;11681:6;11652:9;:36::i;:::-;-1:-1:-1;;;;;11728:19:0;;11701:24;11728:19;;;:11;:19;;;;;;;;5414:10;11728:33;;;;;;;;11780:26;;;;11772:79;;;;-1:-1:-1;;;11772:79:0;;3021:2:1;11772:79:0;;;3003:21:1;3060:2;3040:18;;;3033:30;3099:34;3079:18;;;3072:62;-1:-1:-1;;;3150:18:1;;;3143:38;3198:19;;11772:79:0;;;;;;;;;11887:57;11896:6;5414:10;11937:6;11918:16;:25;11887:8;:57::i;:::-;-1:-1:-1;11975:4:0;;11495:492;-1:-1:-1;;;;11495:492:0:o;12396:215::-;5414:10;12484:4;12533:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;12533:34:0;;;;;;;;;;12484:4;;12501:80;;12524:7;;12533:47;;12570:10;;12533:47;:::i;:::-;12501:8;:80::i;6145:148::-;6060:6;;-1:-1:-1;;;;;6060:6:0;5414:10;6060:22;6052:67;;;;-1:-1:-1;;;6052:67:0;;3657:2:1;6052:67:0;;;3639:21:1;;;3676:18;;;3669:30;3735:34;3715:18;;;3708:62;3787:18;;6052:67:0;3455:356:1;6052:67:0;6252:1:::1;6236:6:::0;;6215:40:::1;::::0;-1:-1:-1;;;;;6236:6:0;;::::1;::::0;6215:40:::1;::::0;6252:1;;6215:40:::1;6283:1;6266:19:::0;;-1:-1:-1;;;;;;6266:19:0::1;::::0;;6145:148::o;8889:104::-;8945:13;8978:7;8971:14;;;;;:::i;13114:413::-;5414:10;13207:4;13251:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;13251:34:0;;;;;;;;;;13304:35;;;;13296:85;;;;-1:-1:-1;;;13296:85:0;;4018:2:1;13296:85:0;;;4000:21:1;4057:2;4037:18;;;4030:30;4096:34;4076:18;;;4069:62;-1:-1:-1;;;4147:18:1;;;4140:35;4192:19;;13296:85:0;3816:401:1;13296:85:0;13417:67;5414:10;13440:7;13468:15;13449:16;:34;13417:8;:67::i;:::-;-1:-1:-1;13515:4:0;;13114:413;-1:-1:-1;;;13114:413:0:o;10308:175::-;10394:4;10411:42;5414:10;10435:9;10446:6;10411:9;:42::i;16112:380::-;-1:-1:-1;;;;;16248:19:0;;16240:68;;;;-1:-1:-1;;;16240:68:0;;4424:2:1;16240:68:0;;;4406:21:1;4463:2;4443:18;;;4436:30;4502:34;4482:18;;;4475:62;-1:-1:-1;;;4553:18:1;;;4546:34;4597:19;;16240:68:0;4222:400:1;16240:68:0;-1:-1:-1;;;;;16327:21:0;;16319:68;;;;-1:-1:-1;;;16319:68:0;;4829:2:1;16319:68:0;;;4811:21:1;4868:2;4848:18;;;4841:30;4907:34;4887:18;;;4880:62;-1:-1:-1;;;4958:18:1;;;4951:32;5000:19;;16319:68:0;4627:398:1;16319:68:0;-1:-1:-1;;;;;16400:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;16452:32;;1212:25:1;;;16452:32:0;;1185:18:1;16452:32:0;;;;;;;16112:380;;;:::o;14017:733::-;-1:-1:-1;;;;;14157:20:0;;14149:70;;;;-1:-1:-1;;;14149:70:0;;5232:2:1;14149:70:0;;;5214:21:1;5271:2;5251:18;;;5244:30;5310:34;5290:18;;;5283:62;-1:-1:-1;;;5361:18:1;;;5354:35;5406:19;;14149:70:0;5030:401:1;14149:70:0;-1:-1:-1;;;;;14238:23:0;;14230:71;;;;-1:-1:-1;;;14230:71:0;;5638:2:1;14230:71:0;;;5620:21:1;5677:2;5657:18;;;5650:30;5716:34;5696:18;;;5689:62;-1:-1:-1;;;5767:18:1;;;5760:33;5810:19;;14230:71:0;5436:399:1;14230:71:0;-1:-1:-1;;;;;14398:17:0;;14374:21;14398:17;;;:9;:17;;;;;;14434:23;;;;14426:74;;;;-1:-1:-1;;;14426:74:0;;6042:2:1;14426:74:0;;;6024:21:1;6081:2;6061:18;;;6054:30;6120:34;6100:18;;;6093:62;-1:-1:-1;;;6171:18:1;;;6164:36;6217:19;;14426:74:0;5840:402:1;14426:74:0;-1:-1:-1;;;;;14536:17:0;;;;;;;:9;:17;;;;;;14556:22;;;14536:42;;14600:20;;;;;;;;:30;;14572:6;;14536:17;14600:30;;14572:6;;14600:30;:::i;:::-;;;;;;;;14665:9;-1:-1:-1;;;;;14648:35:0;14657:6;-1:-1:-1;;;;;14648:35:0;;14676:6;14648:35;;;;1212:25:1;;1200:2;1185:18;;1066:177;14648:35:0;;;;;;;;14138:612;14017:733;;;:::o;14:418:1:-;163:2;152:9;145:21;126:4;195:6;189:13;238:6;233:2;222:9;218:18;211:34;297:6;292:2;284:6;280:15;275:2;264:9;260:18;254:50;353:1;348:2;339:6;328:9;324:22;320:31;313:42;423:2;416;412:7;407:2;399:6;395:15;391:29;380:9;376:45;372:54;364:62;;;14:418;;;;:::o;437:173::-;505:20;;-1:-1:-1;;;;;554:31:1;;544:42;;534:70;;600:1;597;590:12;534:70;437:173;;;:::o;615:254::-;683:6;691;744:2;732:9;723:7;719:23;715:32;712:52;;;760:1;757;750:12;712:52;783:29;802:9;783:29;:::i;:::-;773:39;859:2;844:18;;;;831:32;;-1:-1:-1;;;615:254:1:o;1248:328::-;1325:6;1333;1341;1394:2;1382:9;1373:7;1369:23;1365:32;1362:52;;;1410:1;1407;1400:12;1362:52;1433:29;1452:9;1433:29;:::i;:::-;1423:39;;1481:38;1515:2;1504:9;1500:18;1481:38;:::i;:::-;1471:48;;1566:2;1555:9;1551:18;1538:32;1528:42;;1248:328;;;;;:::o;1770:186::-;1829:6;1882:2;1870:9;1861:7;1857:23;1853:32;1850:52;;;1898:1;1895;1888:12;1850:52;1921:29;1940:9;1921:29;:::i;:::-;1911:39;1770:186;-1:-1:-1;;;1770:186:1:o;2169:260::-;2237:6;2245;2298:2;2286:9;2277:7;2273:23;2269:32;2266:52;;;2314:1;2311;2304:12;2266:52;2337:29;2356:9;2337:29;:::i;:::-;2327:39;;2385:38;2419:2;2408:9;2404:18;2385:38;:::i;:::-;2375:48;;2169:260;;;;;:::o;2434:380::-;2513:1;2509:12;;;;2556;;;2577:61;;2631:4;2623:6;2619:17;2609:27;;2577:61;2684:2;2676:6;2673:14;2653:18;2650:38;2647:161;;2730:10;2725:3;2721:20;2718:1;2711:31;2765:4;2762:1;2755:15;2793:4;2790:1;2783:15;2647:161;;2434:380;;;:::o;3228:222::-;3293:9;;;3314:10;;;3311:133;;;3366:10;3361:3;3357:20;3354:1;3347:31;3401:4;3398:1;3391:15;3429:4;3426:1;3419:15
Swarm Source
ipfs://58e1825d948daad8ab2a7f24be22314e0139d9dc5d17771b77e80481d4c41a59
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.