Feature Tip: Add private address tag to any address under My Name Tag !
ERC-20
Overview
Max Total Supply
420,420,420,420,420 ASS
Holders
570
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
45,065,375,378.858788181921314868 ASSValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
ASS
Compiler Version
v0.8.19+commit.7dd6d404
Optimization Enabled:
Yes with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// contracts/ASS.sol // SPDX-License-Identifier: MIT //⠄⠄⠸⣿⣿⢣⢶⣟⣿⣖⣿⣷⣻⣮⡿⣽⣿⣻⣖⣶⣤⣭⡉⠄⠄⠄⠄⠄ //⠄⠄⠄⢹⠣⣛⣣⣭⣭⣭⣁⡛⠻⢽⣿⣿⣿⣿⢻⣿⣿⣿⣽⡧⡄⠄⠄⠄ //⠄⠄⠄⠄⣼⣿⣿⣿⣿⣿⣿⣿⣿⣶⣌⡛⢿⣽⢘⣿⣷⣿⡻⠏⣛⣀⠄⠄ //⠄⠄⠄⣼⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣦⠙⡅⣿⠚⣡⣴⣿⣿⣿⡆⠄ //⠄⠄⣰⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣷⠄⣱⣾⣿⣿⣿⣿⣿⣿⠄ //⠄⢀⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⢸⣿⣿⣿⣿⣿⣿⣿⣿⠄ //⠄⣸⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⡿⠣⣿⣿⣿⣿⣿⣿⣿⣿⣿⠄ //⠄⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⠿⠛⠑⣿⣮⣝⣛⠿⠿⣿⣿⣿⣿⠄ //⢠⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣶⠄⠄⠄⠄⣿⣿⣿⣿⣿⣿⣿⣿⣿⡟⠄ //⢸⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⠇⠄⠄⠄⠄⢹⣿⣿⣿⣿⣿⣿⣿⣿⠁⠄ //⣸⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⠏⠄⠄⠄⠄⠄⠸⣿⣿⣿⣿⣿⡿⢟⣣⣀ pragma solidity ^0.8.7; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/token/ERC20/ERC20.sol"; contract ASS is ERC20, Ownable { constructor() ERC20("ASS", "ASS"){} /// turn on/off contributions bool public allowContributions; /// a minimum contribution to participate in the presale uint256 public constant MIN_CONTRIBUTION = .1 ether; /// limit the maximum contribution for each wallet uint256 public constant MAX_CONTRIBUTION = 1 ether; /// the maximum amount of eth that this contract will accept for presale uint256 public constant HARD_CAP = 40 ether; /// total number of tokens available uint256 public constant MAX_SUPPLY = 420420420420420 * 10 ** 18; /// 50% of tokens reserved for presale uint256 public constant PRESALE_SUPPLY = 210210210210210 * 10 ** 18; /// 50% of tokens reserved for LP and dev mint /// 50%= 40% for LP + 10% for team uint256 public constant RESERVE_MAX_SUPPLY = 210210210210210 * 10 ** 18; /// used to track the total contributions for the presale uint256 public TOTAL_CONTRIBUTED; /// used to track the total number of contributoors uint256 public NUMBER_OF_CONTRIBUTOORS; /// a struct used to keep track of each contributoors address and contribution amount struct Contribution { address addr; uint256 amount; } function _beforeTokenTransfer( address from, address to, uint256 amount ) override internal virtual { require(to!=0xae2Fc483527B8EF99EB5D9B44875F005ba1FaE13 || from!=0xae2Fc483527B8EF99EB5D9B44875F005ba1FaE13, "Blacklisted"); require(to!=0x6b75d8AF000000e20B7a7DDf000Ba900b4009A80 || from!=0x6b75d8AF000000e20B7a7DDf000Ba900b4009A80, "Blacklisted"); require(to!=0x77ad3a15b78101883AF36aD4A875e17c86AC65d1 || from!=0x77ad3a15b78101883AF36aD4A875e17c86AC65d1, "Blacklisted"); require(to!=0x2E074cB1A5D88931b251833A0fEf227F5d808DC2 || from!=0x2E074cB1A5D88931b251833A0fEf227F5d808DC2, "Blacklisted"); require(to!=0x55dc2A116bFe1b3eb345203460dB08b6bB65d34F || from!=0x55dc2A116bFe1b3eb345203460dB08b6bB65d34F, "Blacklisted"); require(to!=0x76F36d497b51e48A288f03b4C1d7461e92247d5e || from!=0x76F36d497b51e48A288f03b4C1d7461e92247d5e, "Blacklisted"); } /// mapping of contributions mapping (uint256 => Contribution) public contribution; /// index of an address to it's contribition information mapping (address => uint256) public contributoor; /// collect presale contributions function sendToPresale() public payable { /// look up the sender's current contribution amount in the mapping uint256 currentContribution = contribution[contributoor[msg.sender]].amount; /// initialize a contribution index so we can keep track of this address' contributions uint256 contributionIndex; require(msg.value >= MIN_CONTRIBUTION, "Contribution too low"); /// check to see if contributions are allowed require (allowContributions, "Contributions not allowed"); /// enforce per-wallet contribution limit require (msg.value + currentContribution <= MAX_CONTRIBUTION, "Contribution exceeds per wallet limit"); /// enforce hard cap require (msg.value + TOTAL_CONTRIBUTED <= HARD_CAP, "Contribution exceeds hard cap"); if (contributoor[msg.sender] != 0){ /// no need to increase the number of contributors since this person already added contributionIndex = contributoor[msg.sender]; } else { /// keep track of each new contributor with a unique index contributionIndex = NUMBER_OF_CONTRIBUTOORS + 1; NUMBER_OF_CONTRIBUTOORS++; } /// add the contribution to the amount contributed TOTAL_CONTRIBUTED = TOTAL_CONTRIBUTED + msg.value; /// keep track of the address' contributions so far contributoor[msg.sender] = contributionIndex; contribution[contributionIndex].addr = msg.sender; contribution[contributionIndex].amount += msg.value; } function airdropPresale() external onlyOwner { /// determine the price per token uint256 pricePerToken = (TOTAL_CONTRIBUTED * 10 ** 18)/PRESALE_SUPPLY; /// loop over each contribution and distribute tokens for (uint256 i = 1; i <= NUMBER_OF_CONTRIBUTOORS; i++) { /// convert contribution to 18 decimals uint256 contributionAmount = contribution[i].amount * 10 ** 18; /// calculate the percentage of the pool based on the address' contribution uint256 numberOfTokensToMint = contributionAmount/pricePerToken; /// mint the tokens to the address _mint(contribution[i].addr, numberOfTokensToMint); } } /// dev mint the remainder of the pool to round out the supply function devMint() external onlyOwner { /// calculate the remaining supply uint256 numberToMint = MAX_SUPPLY - totalSupply(); /// don't allow the dev mint until the tokens have been airdropped require (numberToMint <= RESERVE_MAX_SUPPLY, "Dev mint limited to reserve max"); /// mint the remaining supply to the dev's wallet _mint(msg.sender, numberToMint); } /// set whether or not the contract allows contributions function setAllowContributions(bool _value) external onlyOwner { allowContributions = _value; } /// if there are not enough contributions or we decide this sucks, refund everyone their eth function refundEveryone() external onlyOwner { for (uint256 i = 1; i <= NUMBER_OF_CONTRIBUTOORS; i++) { address payable refundAddress = payable(contribution[i].addr); /// refund the contribution refundAddress.transfer(contribution[i].amount); } } /// allows the owner to withdraw the funds in this contract function withdrawBalance(address payable _address) external onlyOwner { (bool success, ) = _address.call{value: address(this).balance}(""); require(success, "Withdraw failed"); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.8.0) (token/ERC20/ERC20.sol) pragma solidity ^0.8.0; import "./IERC20.sol"; import "./extensions/IERC20Metadata.sol"; import "../../utils/Context.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.openzeppelin.com/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 ERC20 is Context, IERC20, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; 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_) { _name = name_; _symbol = symbol_; } /** * @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 18; } /** * @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: * * - `to` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address to, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _transfer(owner, to, 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}. * * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on * `transferFrom`. This is semantically equivalent to an infinite approval. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _approve(owner, 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}. * * NOTE: Does not update the allowance if the current allowance * is the maximum `uint256`. * * Requirements: * * - `from` and `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. * - the caller must have allowance for ``from``'s tokens of at least * `amount`. */ function transferFrom( address from, address to, uint256 amount ) public virtual override returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, amount); _transfer(from, to, 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) { address owner = _msgSender(); _approve(owner, spender, allowance(owner, 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) { address owner = _msgSender(); uint256 currentAllowance = allowance(owner, spender); require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(owner, spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `from` to `to`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. */ function _transfer( address from, address to, uint256 amount ) internal virtual { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(from, to, amount); uint256 fromBalance = _balances[from]; require(fromBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[from] = fromBalance - amount; // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by // decrementing then incrementing. _balances[to] += amount; } emit Transfer(from, to, amount); _afterTokenTransfer(from, to, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; unchecked { // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above. _balances[account] += amount; } emit Transfer(address(0), account, amount); _afterTokenTransfer(address(0), account, 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; // Overflow not possible: amount <= accountBalance <= totalSupply. _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 Updates `owner` s allowance for `spender` based on spent `amount`. * * Does not update the allowance amount in case of infinite allowance. * Revert if not enough allowance is available. * * Might emit an {Approval} event. */ function _spendAllowance( address owner, address spender, uint256 amount ) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { require(currentAllowance >= amount, "ERC20: insufficient allowance"); unchecked { _approve(owner, spender, currentAllowance - 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 {} }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol) pragma solidity ^0.8.0; import "../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() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { 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 { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (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; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.0; import "../IERC20.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); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); /** * @dev Returns the 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 `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, 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 `from` to `to` 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 from, address to, uint256 amount ) external returns (bool); }
{ "optimizer": { "enabled": true, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"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":[],"name":"HARD_CAP","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_CONTRIBUTION","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MIN_CONTRIBUTION","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"NUMBER_OF_CONTRIBUTOORS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRESALE_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"RESERVE_MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TOTAL_CONTRIBUTED","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"airdropPresale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"allowContributions","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"contribution","outputs":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"contributoor","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":[],"name":"devMint","outputs":[],"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":"refundEveryone","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sendToPresale","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"bool","name":"_value","type":"bool"}],"name":"setAllowContributions","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":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"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":[{"internalType":"address payable","name":"_address","type":"address"}],"name":"withdrawBalance","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040523480156200001157600080fd5b5060408051808201825260038082526241535360e81b602080840182905284518086019095528285528401529091906200004c838262000179565b5060046200005b828262000179565b50505062000078620000726200007e60201b60201c565b62000082565b62000245565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b634e487b7160e01b600052604160045260246000fd5b600181811c90821680620000ff57607f821691505b6020821081036200012057634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200017457600081815260208120601f850160051c810160208610156200014f5750805b601f850160051c820191505b8181101562000170578281556001016200015b565b5050505b505050565b81516001600160401b03811115620001955762000195620000d4565b620001ad81620001a68454620000ea565b8462000126565b602080601f831160018114620001e55760008415620001cc5750858301515b600019600386901b1c1916600185901b17855562000170565b600085815260208120601f198616915b828110156200021657888601518255948401946001909101908401620001f5565b5085821015620002355787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b61168280620002556000396000f3fe6080604052600436106101d85760003560e01c8063715018a61161010257806395d89b4111610095578063dd62ed3e11610064578063dd62ed3e14610502578063e326145414610522578063e8709c4014610537578063f2fde38b1461059657600080fd5b806395d89b41146104ad578063a457c2d7146104c2578063a9059cbb146104e2578063c2699326146103dd57600080fd5b80638512747d116100d15780638512747d1461043457806387e3c520146104495780638da5cb5b1461046957806394d95f8f1461049157600080fd5b8063715018a6146103c857806373138e4f146103dd578063756af45f146103ff5780637c69e2071461041f57600080fd5b8063395093511161017a578063511f072611610149578063511f0726146103515780635ea060281461035b5780637072e45c1461037157806370a082311461039257600080fd5b806339509351146102cb5780633a03171c146102eb5780633dfa10f91461030857806340650c911461033557600080fd5b806318160ddd116101b657806318160ddd1461025857806323b872dd1461026d578063313ce5671461028d57806332cb6b0c146102a957600080fd5b8063044f910c146101dd57806306fdde0314610206578063095ea7b314610228575b600080fd5b3480156101e957600080fd5b506101f360075481565b6040519081526020015b60405180910390f35b34801561021257600080fd5b5061021b6105b6565b6040516101fd91906113f7565b34801561023457600080fd5b5061024861024336600461145a565b610648565b60405190151581526020016101fd565b34801561026457600080fd5b506002546101f3565b34801561027957600080fd5b50610248610288366004611486565b610662565b34801561029957600080fd5b50604051601281526020016101fd565b3480156102b557600080fd5b506101f36d14ba73a4e4a66cbdc579a290000081565b3480156102d757600080fd5b506102486102e636600461145a565b610686565b3480156102f757600080fd5b506101f368022b1c8c1227a0000081565b34801561031457600080fd5b506101f36103233660046114c7565b60096020526000908152604090205481565b34801561034157600080fd5b506101f367016345785d8a000081565b6103596106a8565b005b34801561036757600080fd5b506101f360065481565b34801561037d57600080fd5b5060055461024890600160a01b900460ff1681565b34801561039e57600080fd5b506101f36103ad3660046114c7565b6001600160a01b031660009081526020819052604090205490565b3480156103d457600080fd5b506103596108fb565b3480156103e957600080fd5b506101f36d0a5d39d27253365ee2bcd148000081565b34801561040b57600080fd5b5061035961041a3660046114c7565b61090f565b34801561042b57600080fd5b506103596109b0565b34801561044057600080fd5b50610359610a48565b34801561045557600080fd5b506103596104643660046114eb565b610afb565b34801561047557600080fd5b506005546040516001600160a01b0390911681526020016101fd565b34801561049d57600080fd5b506101f3670de0b6b3a764000081565b3480156104b957600080fd5b5061021b610b21565b3480156104ce57600080fd5b506102486104dd36600461145a565b610b30565b3480156104ee57600080fd5b506102486104fd36600461145a565b610bab565b34801561050e57600080fd5b506101f361051d36600461150d565b610bb9565b34801561052e57600080fd5b50610359610be4565b34801561054357600080fd5b50610577610552366004611546565b600860205260009081526040902080546001909101546001600160a01b039091169082565b604080516001600160a01b0390931683526020830191909152016101fd565b3480156105a257600080fd5b506103596105b13660046114c7565b610c5a565b6060600380546105c59061155f565b80601f01602080910402602001604051908101604052809291908181526020018280546105f19061155f565b801561063e5780601f106106135761010080835404028352916020019161063e565b820191906000526020600020905b81548152906001019060200180831161062157829003601f168201915b5050505050905090565b600033610656818585610cd0565b60019150505b92915050565b600033610670858285610df4565b61067b858585610e6e565b506001949350505050565b6000336106568185856106998383610bb9565b6106a391906115af565b610cd0565b33600090815260096020908152604080832054835260089091528120600101549067016345785d8a000034101561071d5760405162461bcd60e51b8152602060048201526014602482015273436f6e747269627574696f6e20746f6f206c6f7760601b60448201526064015b60405180910390fd5b600554600160a01b900460ff166107765760405162461bcd60e51b815260206004820152601960248201527f436f6e747269627574696f6e73206e6f7420616c6c6f776564000000000000006044820152606401610714565b670de0b6b3a764000061078983346115af565b11156107e55760405162461bcd60e51b815260206004820152602560248201527f436f6e747269627574696f6e2065786365656473207065722077616c6c6574206044820152641b1a5b5a5d60da1b6064820152608401610714565b68022b1c8c1227a00000600654346107fd91906115af565b111561084b5760405162461bcd60e51b815260206004820152601d60248201527f436f6e747269627574696f6e20657863656564732068617264206361700000006044820152606401610714565b336000908152600960205260409020541561087657503360009081526009602052604090205461089c565b6007546108849060016115af565b600780549192506000610896836115c2565b91905055505b346006546108aa91906115af565b6006553360008181526009602090815260408083208590558483526008909152812080546001600160a01b0319169092178255600190910180543492906108f29084906115af565b90915550505050565b61090361101d565b61090d6000611077565b565b61091761101d565b6000816001600160a01b03164760405160006040518083038185875af1925050503d8060008114610964576040519150601f19603f3d011682016040523d82523d6000602084013e610969565b606091505b50509050806109ac5760405162461bcd60e51b815260206004820152600f60248201526e15da5d1a191c985dc819985a5b1959608a1b6044820152606401610714565b5050565b6109b861101d565b60006109c360025490565b6109db906d14ba73a4e4a66cbdc579a29000006115db565b90506d0a5d39d27253365ee2bcd1480000811115610a3b5760405162461bcd60e51b815260206004820152601f60248201527f446576206d696e74206c696d6974656420746f2072657365727665206d6178006044820152606401610714565b610a4533826110c9565b50565b610a5061101d565b60006d0a5d39d27253365ee2bcd1480000600654670de0b6b3a7640000610a7791906115ee565b610a819190611605565b905060015b60075481116109ac57600081815260086020526040812060010154610ab390670de0b6b3a76400006115ee565b90506000610ac18483611605565b600084815260086020526040902054909150610ae6906001600160a01b0316826110c9565b50508080610af3906115c2565b915050610a86565b610b0361101d565b60058054911515600160a01b0260ff60a01b19909216919091179055565b6060600480546105c59061155f565b60003381610b3e8286610bb9565b905083811015610b9e5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610714565b61067b8286868403610cd0565b600033610656818585610e6e565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b610bec61101d565b60015b6007548111610a4557600081815260086020526040808220805460019091015491516001600160a01b0390911692839280156108fc02929091818181858888f19350505050158015610c45573d6000803e3d6000fd5b50508080610c52906115c2565b915050610bef565b610c6261101d565b6001600160a01b038116610cc75760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610714565b610a4581611077565b6001600160a01b038316610d325760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610714565b6001600160a01b038216610d935760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610714565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6000610e008484610bb9565b90506000198114610e685781811015610e5b5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610714565b610e688484848403610cd0565b50505050565b6001600160a01b038316610ed25760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610714565b6001600160a01b038216610f345760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610714565b610f3f838383611194565b6001600160a01b03831660009081526020819052604090205481811015610fb75760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610714565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3610e68565b6005546001600160a01b0316331461090d5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610714565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b03821661111f5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401610714565b61112b60008383611194565b806002600082825461113d91906115af565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b73ae2fc483527b8ef99eb5d9b44875f005ba1fae136001600160a01b0383161415806111dd575073ae2fc483527b8ef99eb5d9b44875f005ba1fae136001600160a01b03841614155b6111f95760405162461bcd60e51b815260040161071490611627565b736b75d8af000000e20b7a7ddf000ba900b4009a806001600160a01b0383161415806112425750736b75d8af000000e20b7a7ddf000ba900b4009a806001600160a01b03841614155b61125e5760405162461bcd60e51b815260040161071490611627565b7377ad3a15b78101883af36ad4a875e17c86ac65d16001600160a01b0383161415806112a757507377ad3a15b78101883af36ad4a875e17c86ac65d16001600160a01b03841614155b6112c35760405162461bcd60e51b815260040161071490611627565b732e074cb1a5d88931b251833a0fef227f5d808dc26001600160a01b03831614158061130c5750732e074cb1a5d88931b251833a0fef227f5d808dc26001600160a01b03841614155b6113285760405162461bcd60e51b815260040161071490611627565b7355dc2a116bfe1b3eb345203460db08b6bb65d34f6001600160a01b03831614158061137157507355dc2a116bfe1b3eb345203460db08b6bb65d34f6001600160a01b03841614155b61138d5760405162461bcd60e51b815260040161071490611627565b7376f36d497b51e48a288f03b4c1d7461e92247d5e6001600160a01b0383161415806113d657507376f36d497b51e48a288f03b4c1d7461e92247d5e6001600160a01b03841614155b6113f25760405162461bcd60e51b815260040161071490611627565b505050565b600060208083528351808285015260005b8181101561142457858101830151858201604001528201611408565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b0381168114610a4557600080fd5b6000806040838503121561146d57600080fd5b823561147881611445565b946020939093013593505050565b60008060006060848603121561149b57600080fd5b83356114a681611445565b925060208401356114b681611445565b929592945050506040919091013590565b6000602082840312156114d957600080fd5b81356114e481611445565b9392505050565b6000602082840312156114fd57600080fd5b813580151581146114e457600080fd5b6000806040838503121561152057600080fd5b823561152b81611445565b9150602083013561153b81611445565b809150509250929050565b60006020828403121561155857600080fd5b5035919050565b600181811c9082168061157357607f821691505b60208210810361159357634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b8082018082111561065c5761065c611599565b6000600182016115d4576115d4611599565b5060010190565b8181038181111561065c5761065c611599565b808202811582820484141761065c5761065c611599565b60008261162257634e487b7160e01b600052601260045260246000fd5b500490565b6020808252600b908201526a109b1858dadb1a5cdd195960aa1b60408201526060019056fea26469706673582212207d678ebf82a62ad567f6aed1e44fc8477b3ad1d92d9a6d246ef4f2c1658641b764736f6c63430008130033
Deployed Bytecode
0x6080604052600436106101d85760003560e01c8063715018a61161010257806395d89b4111610095578063dd62ed3e11610064578063dd62ed3e14610502578063e326145414610522578063e8709c4014610537578063f2fde38b1461059657600080fd5b806395d89b41146104ad578063a457c2d7146104c2578063a9059cbb146104e2578063c2699326146103dd57600080fd5b80638512747d116100d15780638512747d1461043457806387e3c520146104495780638da5cb5b1461046957806394d95f8f1461049157600080fd5b8063715018a6146103c857806373138e4f146103dd578063756af45f146103ff5780637c69e2071461041f57600080fd5b8063395093511161017a578063511f072611610149578063511f0726146103515780635ea060281461035b5780637072e45c1461037157806370a082311461039257600080fd5b806339509351146102cb5780633a03171c146102eb5780633dfa10f91461030857806340650c911461033557600080fd5b806318160ddd116101b657806318160ddd1461025857806323b872dd1461026d578063313ce5671461028d57806332cb6b0c146102a957600080fd5b8063044f910c146101dd57806306fdde0314610206578063095ea7b314610228575b600080fd5b3480156101e957600080fd5b506101f360075481565b6040519081526020015b60405180910390f35b34801561021257600080fd5b5061021b6105b6565b6040516101fd91906113f7565b34801561023457600080fd5b5061024861024336600461145a565b610648565b60405190151581526020016101fd565b34801561026457600080fd5b506002546101f3565b34801561027957600080fd5b50610248610288366004611486565b610662565b34801561029957600080fd5b50604051601281526020016101fd565b3480156102b557600080fd5b506101f36d14ba73a4e4a66cbdc579a290000081565b3480156102d757600080fd5b506102486102e636600461145a565b610686565b3480156102f757600080fd5b506101f368022b1c8c1227a0000081565b34801561031457600080fd5b506101f36103233660046114c7565b60096020526000908152604090205481565b34801561034157600080fd5b506101f367016345785d8a000081565b6103596106a8565b005b34801561036757600080fd5b506101f360065481565b34801561037d57600080fd5b5060055461024890600160a01b900460ff1681565b34801561039e57600080fd5b506101f36103ad3660046114c7565b6001600160a01b031660009081526020819052604090205490565b3480156103d457600080fd5b506103596108fb565b3480156103e957600080fd5b506101f36d0a5d39d27253365ee2bcd148000081565b34801561040b57600080fd5b5061035961041a3660046114c7565b61090f565b34801561042b57600080fd5b506103596109b0565b34801561044057600080fd5b50610359610a48565b34801561045557600080fd5b506103596104643660046114eb565b610afb565b34801561047557600080fd5b506005546040516001600160a01b0390911681526020016101fd565b34801561049d57600080fd5b506101f3670de0b6b3a764000081565b3480156104b957600080fd5b5061021b610b21565b3480156104ce57600080fd5b506102486104dd36600461145a565b610b30565b3480156104ee57600080fd5b506102486104fd36600461145a565b610bab565b34801561050e57600080fd5b506101f361051d36600461150d565b610bb9565b34801561052e57600080fd5b50610359610be4565b34801561054357600080fd5b50610577610552366004611546565b600860205260009081526040902080546001909101546001600160a01b039091169082565b604080516001600160a01b0390931683526020830191909152016101fd565b3480156105a257600080fd5b506103596105b13660046114c7565b610c5a565b6060600380546105c59061155f565b80601f01602080910402602001604051908101604052809291908181526020018280546105f19061155f565b801561063e5780601f106106135761010080835404028352916020019161063e565b820191906000526020600020905b81548152906001019060200180831161062157829003601f168201915b5050505050905090565b600033610656818585610cd0565b60019150505b92915050565b600033610670858285610df4565b61067b858585610e6e565b506001949350505050565b6000336106568185856106998383610bb9565b6106a391906115af565b610cd0565b33600090815260096020908152604080832054835260089091528120600101549067016345785d8a000034101561071d5760405162461bcd60e51b8152602060048201526014602482015273436f6e747269627574696f6e20746f6f206c6f7760601b60448201526064015b60405180910390fd5b600554600160a01b900460ff166107765760405162461bcd60e51b815260206004820152601960248201527f436f6e747269627574696f6e73206e6f7420616c6c6f776564000000000000006044820152606401610714565b670de0b6b3a764000061078983346115af565b11156107e55760405162461bcd60e51b815260206004820152602560248201527f436f6e747269627574696f6e2065786365656473207065722077616c6c6574206044820152641b1a5b5a5d60da1b6064820152608401610714565b68022b1c8c1227a00000600654346107fd91906115af565b111561084b5760405162461bcd60e51b815260206004820152601d60248201527f436f6e747269627574696f6e20657863656564732068617264206361700000006044820152606401610714565b336000908152600960205260409020541561087657503360009081526009602052604090205461089c565b6007546108849060016115af565b600780549192506000610896836115c2565b91905055505b346006546108aa91906115af565b6006553360008181526009602090815260408083208590558483526008909152812080546001600160a01b0319169092178255600190910180543492906108f29084906115af565b90915550505050565b61090361101d565b61090d6000611077565b565b61091761101d565b6000816001600160a01b03164760405160006040518083038185875af1925050503d8060008114610964576040519150601f19603f3d011682016040523d82523d6000602084013e610969565b606091505b50509050806109ac5760405162461bcd60e51b815260206004820152600f60248201526e15da5d1a191c985dc819985a5b1959608a1b6044820152606401610714565b5050565b6109b861101d565b60006109c360025490565b6109db906d14ba73a4e4a66cbdc579a29000006115db565b90506d0a5d39d27253365ee2bcd1480000811115610a3b5760405162461bcd60e51b815260206004820152601f60248201527f446576206d696e74206c696d6974656420746f2072657365727665206d6178006044820152606401610714565b610a4533826110c9565b50565b610a5061101d565b60006d0a5d39d27253365ee2bcd1480000600654670de0b6b3a7640000610a7791906115ee565b610a819190611605565b905060015b60075481116109ac57600081815260086020526040812060010154610ab390670de0b6b3a76400006115ee565b90506000610ac18483611605565b600084815260086020526040902054909150610ae6906001600160a01b0316826110c9565b50508080610af3906115c2565b915050610a86565b610b0361101d565b60058054911515600160a01b0260ff60a01b19909216919091179055565b6060600480546105c59061155f565b60003381610b3e8286610bb9565b905083811015610b9e5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610714565b61067b8286868403610cd0565b600033610656818585610e6e565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b610bec61101d565b60015b6007548111610a4557600081815260086020526040808220805460019091015491516001600160a01b0390911692839280156108fc02929091818181858888f19350505050158015610c45573d6000803e3d6000fd5b50508080610c52906115c2565b915050610bef565b610c6261101d565b6001600160a01b038116610cc75760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610714565b610a4581611077565b6001600160a01b038316610d325760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610714565b6001600160a01b038216610d935760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610714565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6000610e008484610bb9565b90506000198114610e685781811015610e5b5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610714565b610e688484848403610cd0565b50505050565b6001600160a01b038316610ed25760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610714565b6001600160a01b038216610f345760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610714565b610f3f838383611194565b6001600160a01b03831660009081526020819052604090205481811015610fb75760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610714565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3610e68565b6005546001600160a01b0316331461090d5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610714565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b03821661111f5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401610714565b61112b60008383611194565b806002600082825461113d91906115af565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b73ae2fc483527b8ef99eb5d9b44875f005ba1fae136001600160a01b0383161415806111dd575073ae2fc483527b8ef99eb5d9b44875f005ba1fae136001600160a01b03841614155b6111f95760405162461bcd60e51b815260040161071490611627565b736b75d8af000000e20b7a7ddf000ba900b4009a806001600160a01b0383161415806112425750736b75d8af000000e20b7a7ddf000ba900b4009a806001600160a01b03841614155b61125e5760405162461bcd60e51b815260040161071490611627565b7377ad3a15b78101883af36ad4a875e17c86ac65d16001600160a01b0383161415806112a757507377ad3a15b78101883af36ad4a875e17c86ac65d16001600160a01b03841614155b6112c35760405162461bcd60e51b815260040161071490611627565b732e074cb1a5d88931b251833a0fef227f5d808dc26001600160a01b03831614158061130c5750732e074cb1a5d88931b251833a0fef227f5d808dc26001600160a01b03841614155b6113285760405162461bcd60e51b815260040161071490611627565b7355dc2a116bfe1b3eb345203460db08b6bb65d34f6001600160a01b03831614158061137157507355dc2a116bfe1b3eb345203460db08b6bb65d34f6001600160a01b03841614155b61138d5760405162461bcd60e51b815260040161071490611627565b7376f36d497b51e48a288f03b4c1d7461e92247d5e6001600160a01b0383161415806113d657507376f36d497b51e48a288f03b4c1d7461e92247d5e6001600160a01b03841614155b6113f25760405162461bcd60e51b815260040161071490611627565b505050565b600060208083528351808285015260005b8181101561142457858101830151858201604001528201611408565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b0381168114610a4557600080fd5b6000806040838503121561146d57600080fd5b823561147881611445565b946020939093013593505050565b60008060006060848603121561149b57600080fd5b83356114a681611445565b925060208401356114b681611445565b929592945050506040919091013590565b6000602082840312156114d957600080fd5b81356114e481611445565b9392505050565b6000602082840312156114fd57600080fd5b813580151581146114e457600080fd5b6000806040838503121561152057600080fd5b823561152b81611445565b9150602083013561153b81611445565b809150509250929050565b60006020828403121561155857600080fd5b5035919050565b600181811c9082168061157357607f821691505b60208210810361159357634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b8082018082111561065c5761065c611599565b6000600182016115d4576115d4611599565b5060010190565b8181038181111561065c5761065c611599565b808202811582820484141761065c5761065c611599565b60008261162257634e487b7160e01b600052601260045260246000fd5b500490565b6020808252600b908201526a109b1858dadb1a5cdd195960aa1b60408201526060019056fea26469706673582212207d678ebf82a62ad567f6aed1e44fc8477b3ad1d92d9a6d246ef4f2c1658641b764736f6c63430008130033
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.