ERC-20
Overview
Max Total Supply
972,733 CRADLE
Holders
239
Total Transfers
-
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
Cradle
Compiler Version
v0.8.25+commit.b61c2a91
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2024-12-08 */ // File: @openzeppelin/contracts/token/ERC20/IERC20.sol // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.20; /** * @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 value of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the value of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves a `value` amount of tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 value) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets a `value` amount of tokens as the allowance of `spender` over the * caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 value) external returns (bool); /** * @dev Moves a `value` amount of tokens from `from` to `to` using the * allowance mechanism. `value` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom(address from, address to, uint256 value) external returns (bool); } // File: @openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.20; /** * @dev Interface for the optional metadata functions from the ERC20 standard. */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); } // File: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts (last updated v5.0.1) (utils/Context.sol) pragma solidity ^0.8.20; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } function _contextSuffixLength() internal view virtual returns (uint256) { return 0; } } // File: @openzeppelin/contracts/interfaces/draft-IERC6093.sol // OpenZeppelin Contracts (last updated v5.0.0) (interfaces/draft-IERC6093.sol) pragma solidity ^0.8.20; /** * @dev Standard ERC20 Errors * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC20 tokens. */ interface IERC20Errors { /** * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. * @param balance Current balance for the interacting account. * @param needed Minimum amount required to perform a transfer. */ error ERC20InsufficientBalance(address sender, uint256 balance, uint256 needed); /** * @dev Indicates a failure with the token `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. */ error ERC20InvalidSender(address sender); /** * @dev Indicates a failure with the token `receiver`. Used in transfers. * @param receiver Address to which tokens are being transferred. */ error ERC20InvalidReceiver(address receiver); /** * @dev Indicates a failure with the `spender`’s `allowance`. Used in transfers. * @param spender Address that may be allowed to operate on tokens without being their owner. * @param allowance Amount of tokens a `spender` is allowed to operate with. * @param needed Minimum amount required to perform a transfer. */ error ERC20InsufficientAllowance(address spender, uint256 allowance, uint256 needed); /** * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals. * @param approver Address initiating an approval operation. */ error ERC20InvalidApprover(address approver); /** * @dev Indicates a failure with the `spender` to be approved. Used in approvals. * @param spender Address that may be allowed to operate on tokens without being their owner. */ error ERC20InvalidSpender(address spender); } /** * @dev Standard ERC721 Errors * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC721 tokens. */ interface IERC721Errors { /** * @dev Indicates that an address can't be an owner. For example, `address(0)` is a forbidden owner in EIP-20. * Used in balance queries. * @param owner Address of the current owner of a token. */ error ERC721InvalidOwner(address owner); /** * @dev Indicates a `tokenId` whose `owner` is the zero address. * @param tokenId Identifier number of a token. */ error ERC721NonexistentToken(uint256 tokenId); /** * @dev Indicates an error related to the ownership over a particular token. Used in transfers. * @param sender Address whose tokens are being transferred. * @param tokenId Identifier number of a token. * @param owner Address of the current owner of a token. */ error ERC721IncorrectOwner(address sender, uint256 tokenId, address owner); /** * @dev Indicates a failure with the token `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. */ error ERC721InvalidSender(address sender); /** * @dev Indicates a failure with the token `receiver`. Used in transfers. * @param receiver Address to which tokens are being transferred. */ error ERC721InvalidReceiver(address receiver); /** * @dev Indicates a failure with the `operator`’s approval. Used in transfers. * @param operator Address that may be allowed to operate on tokens without being their owner. * @param tokenId Identifier number of a token. */ error ERC721InsufficientApproval(address operator, uint256 tokenId); /** * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals. * @param approver Address initiating an approval operation. */ error ERC721InvalidApprover(address approver); /** * @dev Indicates a failure with the `operator` to be approved. Used in approvals. * @param operator Address that may be allowed to operate on tokens without being their owner. */ error ERC721InvalidOperator(address operator); } /** * @dev Standard ERC1155 Errors * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC1155 tokens. */ interface IERC1155Errors { /** * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. * @param balance Current balance for the interacting account. * @param needed Minimum amount required to perform a transfer. * @param tokenId Identifier number of a token. */ error ERC1155InsufficientBalance(address sender, uint256 balance, uint256 needed, uint256 tokenId); /** * @dev Indicates a failure with the token `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. */ error ERC1155InvalidSender(address sender); /** * @dev Indicates a failure with the token `receiver`. Used in transfers. * @param receiver Address to which tokens are being transferred. */ error ERC1155InvalidReceiver(address receiver); /** * @dev Indicates a failure with the `operator`’s approval. Used in transfers. * @param operator Address that may be allowed to operate on tokens without being their owner. * @param owner Address of the current owner of a token. */ error ERC1155MissingApprovalForAll(address operator, address owner); /** * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals. * @param approver Address initiating an approval operation. */ error ERC1155InvalidApprover(address approver); /** * @dev Indicates a failure with the `operator` to be approved. Used in approvals. * @param operator Address that may be allowed to operate on tokens without being their owner. */ error ERC1155InvalidOperator(address operator); /** * @dev Indicates an array length mismatch between ids and values in a safeBatchTransferFrom operation. * Used in batch transfers. * @param idsLength Length of the array of token identifiers * @param valuesLength Length of the array of token amounts */ error ERC1155InvalidArrayLength(uint256 idsLength, uint256 valuesLength); } // File: @openzeppelin/contracts/token/ERC20/ERC20.sol // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/ERC20.sol) pragma solidity ^0.8.20; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * * TIP: For a detailed writeup see our guide * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * The default value of {decimals} is 18. To change this, you should override * this function so it returns a different value. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of 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. */ abstract contract ERC20 is Context, IERC20, IERC20Metadata, IERC20Errors { mapping(address account => uint256) private _balances; mapping(address account => mapping(address spender => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the default value returned by this function, unless * it's overridden. * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `to` cannot be the zero address. * - the caller must have a balance of at least `value`. */ function transfer(address to, uint256 value) public virtual returns (bool) { address owner = _msgSender(); _transfer(owner, to, value); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * NOTE: If `value` is the maximum `uint256`, the allowance is not updated on * `transferFrom`. This is semantically equivalent to an infinite approval. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 value) public virtual returns (bool) { address owner = _msgSender(); _approve(owner, spender, value); return true; } /** * @dev See {IERC20-transferFrom}. * * 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 `value`. * - the caller must have allowance for ``from``'s tokens of at least * `value`. */ function transferFrom(address from, address to, uint256 value) public virtual returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, value); _transfer(from, to, value); return true; } /** * @dev Moves a `value` amount of tokens from `from` to `to`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * NOTE: This function is not virtual, {_update} should be overridden instead. */ function _transfer(address from, address to, uint256 value) internal { if (from == address(0)) { revert ERC20InvalidSender(address(0)); } if (to == address(0)) { revert ERC20InvalidReceiver(address(0)); } _update(from, to, value); } /** * @dev Transfers a `value` amount of tokens from `from` to `to`, or alternatively mints (or burns) if `from` * (or `to`) is the zero address. All customizations to transfers, mints, and burns should be done by overriding * this function. * * Emits a {Transfer} event. */ function _update(address from, address to, uint256 value) internal virtual { if (from == address(0)) { // Overflow check required: The rest of the code assumes that totalSupply never overflows _totalSupply += value; } else { uint256 fromBalance = _balances[from]; if (fromBalance < value) { revert ERC20InsufficientBalance(from, fromBalance, value); } unchecked { // Overflow not possible: value <= fromBalance <= totalSupply. _balances[from] = fromBalance - value; } } if (to == address(0)) { unchecked { // Overflow not possible: value <= totalSupply or value <= fromBalance <= totalSupply. _totalSupply -= value; } } else { unchecked { // Overflow not possible: balance + value is at most totalSupply, which we know fits into a uint256. _balances[to] += value; } } emit Transfer(from, to, value); } /** * @dev Creates a `value` amount of tokens and assigns them to `account`, by transferring it from address(0). * Relies on the `_update` mechanism * * Emits a {Transfer} event with `from` set to the zero address. * * NOTE: This function is not virtual, {_update} should be overridden instead. */ function _mint(address account, uint256 value) internal { if (account == address(0)) { revert ERC20InvalidReceiver(address(0)); } _update(address(0), account, value); } /** * @dev Destroys a `value` amount of tokens from `account`, lowering the total supply. * Relies on the `_update` mechanism. * * Emits a {Transfer} event with `to` set to the zero address. * * NOTE: This function is not virtual, {_update} should be overridden instead */ function _burn(address account, uint256 value) internal { if (account == address(0)) { revert ERC20InvalidSender(address(0)); } _update(account, address(0), value); } /** * @dev Sets `value` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. * * Overrides to this logic should be done to the variant with an additional `bool emitEvent` argument. */ function _approve(address owner, address spender, uint256 value) internal { _approve(owner, spender, value, true); } /** * @dev Variant of {_approve} with an optional flag to enable or disable the {Approval} event. * * By default (when calling {_approve}) the flag is set to true. On the other hand, approval changes made by * `_spendAllowance` during the `transferFrom` operation set the flag to false. This saves gas by not emitting any * `Approval` event during `transferFrom` operations. * * Anyone who wishes to continue emitting `Approval` events on the`transferFrom` operation can force the flag to * true using the following override: * ``` * function _approve(address owner, address spender, uint256 value, bool) internal virtual override { * super._approve(owner, spender, value, true); * } * ``` * * Requirements are the same as {_approve}. */ function _approve(address owner, address spender, uint256 value, bool emitEvent) internal virtual { if (owner == address(0)) { revert ERC20InvalidApprover(address(0)); } if (spender == address(0)) { revert ERC20InvalidSpender(address(0)); } _allowances[owner][spender] = value; if (emitEvent) { emit Approval(owner, spender, value); } } /** * @dev Updates `owner` s allowance for `spender` based on spent `value`. * * Does not update the allowance value in case of infinite allowance. * Revert if not enough allowance is available. * * Does not emit an {Approval} event. */ function _spendAllowance(address owner, address spender, uint256 value) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { if (currentAllowance < value) { revert ERC20InsufficientAllowance(spender, currentAllowance, value); } unchecked { _approve(owner, spender, currentAllowance - value, false); } } } } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts (last updated v5.0.0) (access/Ownable.sol) pragma solidity ^0.8.20; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * The initial owner is set to the address provided by the deployer. This can * later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; /** * @dev The caller account is not authorized to perform an operation. */ error OwnableUnauthorizedAccount(address account); /** * @dev The owner is not a valid owner account. (eg. `address(0)`) */ error OwnableInvalidOwner(address owner); event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the address provided by the deployer as the initial owner. */ constructor(address initialOwner) { if (initialOwner == address(0)) { revert OwnableInvalidOwner(address(0)); } _transferOwnership(initialOwner); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { if (owner() != _msgSender()) { revert OwnableUnauthorizedAccount(_msgSender()); } } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby disabling any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { if (newOwner == address(0)) { revert OwnableInvalidOwner(address(0)); } _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: Cradle.sol pragma solidity 0.8.25; // Written by: @krakovia - https://krakovia.net /** █████████████████████████████████████████████████████████████████████████████ ████████████████████▒▒░░░░░░░░▒▒▒▓▒▒▒███▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▓████████████████████ █████████████████▓░░░░░░░░░░░░░░░░░▒█████▒░░░░░░░░░░░░░░░░▒▓█████████████████ █████████████████▒░░░▒▓▓▓▓▓▓▓▒░░░░▒███████▒░░░▒▒▓▓███▓▓▓▒▒▒▒▓████████████████ █████████████████▒░▒████████████▒▒████████▓▒▓████████████▒▒▒▒████████████████ ████████████████▒░░▒████████████▓▒█████████▒█████████████▒▒▒▓████████████████ █████████████████▓░░▓███████████▓▒█████████▒▓███████████▓▒▒██████████████████ ███████████████████▒░▒████████████████████████████████▓▒▒▓███████████████████ ██████████████████████▒░▓███████████████████████████▓▒▓██████████████████████ █████████████████████████▒▒██████████████████████▓▒▒█████████████████████████ ███████████████████████████▓▒▒█████████████████▒▒████████████████████████████ ██████████████████████████████▓▒▓███████████▓▒▓██████████████████████████████ ████████████████████████████████▓▒▓███████▓▓█████████████████████████████████ ███████████████████████████████████▓▓██▓▓▓███████████████████████████████████ █████████████████████████████████████▒▒▓█████████████████████████████████████ ███████████████████████████████████▓▓██▓▓▓███████████████████████████████████ ██████████████████████▓▒▒▓███████▓▒▓█████▓▓████████▓▒▓███████████████████████ ██████████████████▓▒▒▒▒▒▒▓██████▓▒▓███████▓▒▓██████▓▓▓▓▓▓▓███████████████████ ████████████████▓▒▒▒▒▒▒▒▒▒█████▓▒▒▓███████▓▒▒▓█████▓▓▓▓▓▓▓▓▓▓████████████████ ███████████████▒▒▒▒▒▒▒▒▒▒▒▒████▒▒▓████████▓▓▓▓████▓▓▓▓▓▓▓▓▓▓▓▓███████████████ ██████████████▓▒▒▒▒▒▒▓███▓▒▓██▓▒▒▓█████████▓▓▓███▓▓█████▓▓▓▓▓▓▓██████████████ ██████████████▓▒▒▒▒▓███████▓▓█▓▒▒▓█████████▓▓▓██▓█████████▓▓▓▓▓██████████████ █████████████▓▒▒▒▒▒████████████▓▓▓▓███████▓▓▓▓████████████▓▓▓▓▓██████████████ █████████████▓▒▒▒▒▓████████████▓▓▓▓▓█████▓▓▓▓█████████████▓▓▓▓▓██████████████ ██████████████▓▒▒▒▒▓▓███████████▓▓▓▓▓▓▓▓▓▓▓▓█████████████▓▓▓▓▓▓██████████████ ███████████████▓▒▒▒▓▓▓▓▓▓███████▓▓▓▓▓▓▓▓▓▓▓▓▓████████▓▓▓▓▓▓▓▓▓███████████████ ████████████████▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓█████████████████ ████████████████████▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓█▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓█████████████████████ █████████████████████████████████████████████████████████████████████████████ */ contract Cradle is ERC20, Ownable { bool public isTradingEnabled; bool public isTransferEnabled; bool public feeEnabled; uint public sellFee; mapping(address => bool) public isExcludedFromFees; mapping(address => bool) public isExcludedFromLimits; mapping(address => bool) public ammContracts; error TransferDisabled(); error TradingDisabled(); error SellFeeTooHigh(); error NoAmountToTransfer(); error AirdropListMismatch(); error FeeDisabled(); event FeeIsDisabled(); event TradingEnabled(bool state); event TransferEnabled(bool state); event SellFeeSet(uint newFee); event AmmPoolSet(address pool, bool enabled); event ExcludedFromFees(address account, bool excluded); event ExcludedFromLimits(address account, bool excluded); event ClaimedTokens(address to, uint amount); event FeeCollected(address from, uint amount); constructor() ERC20("Cradle", "CRADLE") Ownable(msg.sender) { isExcludedFromFees[msg.sender] = true; isExcludedFromLimits[msg.sender] = true; isExcludedFromLimits[address(this)] = true; sellFee = 40; feeEnabled = true; _mint(msg.sender, 972_733 * 1e18); } function disableFee() external onlyOwner { sellFee = 0; feeEnabled = false; emit FeeIsDisabled(); } function setTradingEnabled(bool enabled) external onlyOwner { isTradingEnabled = enabled; emit TradingEnabled(enabled); } function setTransferEnabled(bool enabled) external onlyOwner { isTransferEnabled = enabled; emit TransferEnabled(enabled); } function setAmmPool(address pool, bool enabled) external onlyOwner { ammContracts[pool] = enabled; emit AmmPoolSet(pool, enabled); } function setSellFee(uint fee) external onlyOwner { if(!feeEnabled) revert FeeDisabled(); if(fee > 100) revert SellFeeTooHigh(); sellFee = fee; emit SellFeeSet(fee); } function claimTokens(address to, uint amount) external onlyOwner { _update(address(this), to, amount); emit ClaimedTokens(to, amount); } function excludeFromFees(address account, bool excluded) external onlyOwner { isExcludedFromFees[account] = excluded; emit ExcludedFromFees(account, excluded); } function excludeFromLimits(address account, bool excluded) external onlyOwner { isExcludedFromLimits[account] = excluded; emit ExcludedFromLimits(account, excluded); } function _update(address from, address to, uint256 amount) internal override { bool isSell = ammContracts[to]; bool isBuy = ammContracts[from]; uint _sellFee = sellFee; if (// if transfer is disabled !isTransferEnabled // and neither from nor to is excluded from limits && !isExcludedFromLimits[from] && !isExcludedFromLimits[to] ) revert TransferDisabled(); if (// if from or to is an AMM contract (isSell || isBuy) && // and trading is disabled !isTradingEnabled && // and neither from nor to is excluded from limits !isExcludedFromLimits[from] && !isExcludedFromLimits[to] ) revert TradingDisabled(); if (isSell && _sellFee > 0 && !isExcludedFromFees[from]) { uint fee = amount * _sellFee / 1000; super._update(from, address(this), fee); amount -= fee; emit FeeCollected(from, fee); } super._update(from, to, amount); } // notice: onlyOwner because it could be used to bypass fees if active function airdrop(address[] calldata recipients, uint256[] calldata amounts) external onlyOwner { if(recipients.length != amounts.length) revert AirdropListMismatch(); for (uint i = 0; i < recipients.length; i++) { super._update(msg.sender, recipients[i], amounts[i]); } } function burn(uint256 amount) external { _burn(msg.sender, amount); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"AirdropListMismatch","type":"error"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"allowance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientAllowance","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint256","name":"balance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientBalance","type":"error"},{"inputs":[{"internalType":"address","name":"approver","type":"address"}],"name":"ERC20InvalidApprover","type":"error"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"ERC20InvalidReceiver","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"ERC20InvalidSender","type":"error"},{"inputs":[{"internalType":"address","name":"spender","type":"address"}],"name":"ERC20InvalidSpender","type":"error"},{"inputs":[],"name":"FeeDisabled","type":"error"},{"inputs":[],"name":"NoAmountToTransfer","type":"error"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"OwnableInvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"OwnableUnauthorizedAccount","type":"error"},{"inputs":[],"name":"SellFeeTooHigh","type":"error"},{"inputs":[],"name":"TradingDisabled","type":"error"},{"inputs":[],"name":"TransferDisabled","type":"error"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"pool","type":"address"},{"indexed":false,"internalType":"bool","name":"enabled","type":"bool"}],"name":"AmmPoolSet","type":"event"},{"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":false,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"ClaimedTokens","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"excluded","type":"bool"}],"name":"ExcludedFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"excluded","type":"bool"}],"name":"ExcludedFromLimits","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"from","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"FeeCollected","type":"event"},{"anonymous":false,"inputs":[],"name":"FeeIsDisabled","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":false,"internalType":"uint256","name":"newFee","type":"uint256"}],"name":"SellFeeSet","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"state","type":"bool"}],"name":"TradingEnabled","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"state","type":"bool"}],"name":"TransferEnabled","type":"event"},{"inputs":[{"internalType":"address[]","name":"recipients","type":"address[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"}],"name":"airdrop","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":"","type":"address"}],"name":"ammContracts","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"claimTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"disableFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"feeEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isExcludedFromLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isTradingEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isTransferEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"sellFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"pool","type":"address"},{"internalType":"bool","name":"enabled","type":"bool"}],"name":"setAmmPool","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"fee","type":"uint256"}],"name":"setSellFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"setTradingEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"setTransferEnabled","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":"value","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
608060405234801561000f575f80fd5b503360405180604001604052806006815260200165437261646c6560d01b81525060405180604001604052806006815260200165435241444c4560d01b815250816003908161005e9190610543565b50600461006b8282610543565b5050506001600160a01b03811661009c57604051631e4fbdf760e01b81525f60048201526024015b60405180910390fd5b6100a581610117565b50335f818152600760209081526040808320805460ff1990811660019081179092556008909352818420805484168217905530845292208054909116909117905560286006556005805460ff60b01b1916600160b01b1790556101129069cdfbf62aebaf90d40000610168565b610674565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6001600160a01b0382166101915760405163ec442f0560e01b81525f6004820152602401610093565b61019c5f83836101a0565b5050565b6001600160a01b038083165f9081526009602052604080822054928616825290205460065460055460ff9384169392831692600160a81b9091041615801561020057506001600160a01b0386165f9081526008602052604090205460ff16155b801561022457506001600160a01b0385165f9081526008602052604090205460ff16155b156102425760405163a24e573d60e01b815260040160405180910390fd5b828061024b5750815b80156102615750600554600160a01b900460ff16155b801561028557506001600160a01b0386165f9081526008602052604090205460ff16155b80156102a957506001600160a01b0385165f9081526008602052604090205460ff16155b156102c75760405163bcb8b8fb60e01b815260040160405180910390fd5b8280156102d357505f81115b80156102f757506001600160a01b0386165f9081526007602052604090205460ff16155b15610372575f6103e861030a8387610612565b610314919061062f565b9050610321873083610385565b61032b818661064e565b604080516001600160a01b038a168152602081018490529196507f06c5efeff5c320943d265dc4e5f1af95ad523555ce0c1957e367dda5514572df910160405180910390a1505b61037d868686610385565b505050505050565b6001600160a01b0383166103af578060025f8282546103a49190610661565b9091555061041f9050565b6001600160a01b0383165f90815260208190526040902054818110156104015760405163391434e360e21b81526001600160a01b03851660048201526024810182905260448101839052606401610093565b6001600160a01b0384165f9081526020819052604090209082900390555b6001600160a01b03821661043b57600280548290039055610459565b6001600160a01b0382165f9081526020819052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161049e91815260200190565b60405180910390a3505050565b634e487b7160e01b5f52604160045260245ffd5b600181811c908216806104d357607f821691505b6020821081036104f157634e487b7160e01b5f52602260045260245ffd5b50919050565b601f82111561053e57805f5260205f20601f840160051c8101602085101561051c5750805b601f840160051c820191505b8181101561053b575f8155600101610528565b50505b505050565b81516001600160401b0381111561055c5761055c6104ab565b6105708161056a84546104bf565b846104f7565b602080601f8311600181146105a3575f841561058c5750858301515b5f19600386901b1c1916600185901b17855561037d565b5f85815260208120601f198616915b828110156105d1578886015182559484019460019091019084016105b2565b50858210156105ee57878501515f19600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b5f52601160045260245ffd5b8082028115828204841417610629576106296105fe565b92915050565b5f8261064957634e487b7160e01b5f52601260045260245ffd5b500490565b81810381811115610629576106296105fe565b80820180821115610629576106296105fe565b6111a5806106815f395ff3fe608060405234801561000f575f80fd5b50600436106101c6575f3560e01c806386d55557116100fe578063a9ba9fd01161009e578063cca5dcb61161006e578063cca5dcb6146103da578063dd62ed3e146103ee578063f2fde38b14610426578063fe417fa514610439575f80fd5b8063a9ba9fd01461038e578063c0246668146103a1578063c0a904a2146103b4578063c2e5ec04146103c7575f80fd5b806395d89b41116100d957806395d89b411461034c5780639fe9f62314610354578063a771ebc714610367578063a9059cbb1461037b575f80fd5b806386d55557146103165780638b4cee081461031e5780638da5cb5b14610331575f80fd5b806333e62f1b116101695780635cce86cd116101445780635cce86cd146102b157806367243482146102d357806370a08231146102e6578063715018a61461030e575f80fd5b806333e62f1b1461025857806342966c681461027a5780634fbee1931461028f575f80fd5b806318160ddd116101a457806318160ddd1461021b57806323b872dd1461022d5780632b14ca5614610240578063313ce56714610249575f80fd5b8063064a59d0146101ca57806306fdde03146101f3578063095ea7b314610208575b5f80fd5b6005546101de90600160a01b900460ff1681565b60405190151581526020015b60405180910390f35b6101fb61044c565b6040516101ea9190610e9b565b6101de610216366004610eeb565b6104dc565b6002545b6040519081526020016101ea565b6101de61023b366004610f13565b6104f5565b61021f60065481565b604051601281526020016101ea565b6101de610266366004610f4c565b60096020525f908152604090205460ff1681565b61028d610288366004610f6c565b610518565b005b6101de61029d366004610f4c565b60076020525f908152604090205460ff1681565b6101de6102bf366004610f4c565b60086020525f908152604090205460ff1681565b61028d6102e1366004610fcb565b610525565b61021f6102f4366004610f4c565b6001600160a01b03165f9081526020819052604090205490565b61028d6105af565b61028d6105c2565b61028d61032c366004610f6c565b610606565b6005546040516001600160a01b0390911681526020016101ea565b6101fb610696565b61028d610362366004611041565b6106a5565b6005546101de90600160b01b900460ff1681565b6101de610389366004610eeb565b6106fa565b61028d61039c36600461105a565b610707565b61028d6103af36600461105a565b610772565b61028d6103c236600461105a565b6107d5565b61028d6103d5366004611041565b610838565b6005546101de90600160a81b900460ff1681565b61021f6103fc36600461108b565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b61028d610434366004610f4c565b61088d565b61028d610447366004610eeb565b6108cc565b60606003805461045b906110b3565b80601f0160208091040260200160405190810160405280929190818152602001828054610487906110b3565b80156104d25780601f106104a9576101008083540402835291602001916104d2565b820191905f5260205f20905b8154815290600101906020018083116104b557829003601f168201915b5050505050905090565b5f336104e981858561091e565b60019150505b92915050565b5f33610502858285610930565b61050d8585856109ab565b506001949350505050565b6105223382610a08565b50565b61052d610a40565b82811461054d576040516305bd686f60e21b815260040160405180910390fd5b5f5b838110156105a8576105a03386868481811061056d5761056d6110eb565b90506020020160208101906105829190610f4c565b858585818110610594576105946110eb565b90506020020135610a6d565b60010161054f565b5050505050565b6105b7610a40565b6105c05f610b93565b565b6105ca610a40565b5f60068190556005805460ff60b01b191690556040517f5cb623dd028308cc1bb26525dfa5f2565bd9795faa13fa6acb4e322153cde81a9190a1565b61060e610a40565b600554600160b01b900460ff16610638576040516336a8541b60e01b815260040160405180910390fd5b606481111561065a57604051636a412e1d60e11b815260040160405180910390fd5b60068190556040518181527fbdd53c1e50cc0dad3489ad7198c3c87b0072e45d38d413e3ea17d980e0f1c9a4906020015b60405180910390a150565b60606004805461045b906110b3565b6106ad610a40565b60058054821515600160a81b0260ff60a81b199091161790556040517fa410c62368e64b86d7722fd28e698d03bd00719ba95a861b50ceb65efdc6ca449061068b90831515815260200190565b5f336104e98185856109ab565b61070f610a40565b6001600160a01b0382165f81815260096020908152604091829020805460ff19168515159081179091558251938452908301527f06ec5a5ab383c96a6d0cb0f7921142da03f3afd943b6bf8e410a3fc47a8738a291015b60405180910390a15050565b61077a610a40565b6001600160a01b0382165f81815260076020908152604091829020805460ff19168515159081179091558251938452908301527f3499bfcf9673677ba552f3fe2ea274ec7e6246da31c3c87e115b45a9b0db2efb9101610766565b6107dd610a40565b6001600160a01b0382165f81815260086020908152604091829020805460ff19168515159081179091558251938452908301527f74392251b09500cc108c71712e5e7e0392be9075a74a24f1494551cfa8e068709101610766565b610840610a40565b60058054821515600160a01b0260ff60a01b199091161790556040517fbeda7dca7bc1b3e80b871f4818129ec73b771581f803d553aeb3484098e5f65a9061068b90831515815260200190565b610895610a40565b6001600160a01b0381166108c357604051631e4fbdf760e01b81525f60048201526024015b60405180910390fd5b61052281610b93565b6108d4610a40565b6108df308383610be4565b604080516001600160a01b0384168152602081018390527fe9aa550fd75d0d28e07fa9dd67d3ae705678776f6c4a75abd09534f93e7d79079101610766565b61092b8383836001610dc9565b505050565b6001600160a01b038381165f908152600160209081526040808320938616835292905220545f1981146109a5578181101561099757604051637dc7a0d960e11b81526001600160a01b038416600482015260248101829052604481018390526064016108ba565b6109a584848484035f610dc9565b50505050565b6001600160a01b0383166109d457604051634b637e8f60e11b81525f60048201526024016108ba565b6001600160a01b0382166109fd5760405163ec442f0560e01b81525f60048201526024016108ba565b61092b838383610be4565b6001600160a01b038216610a3157604051634b637e8f60e11b81525f60048201526024016108ba565b610a3c825f83610be4565b5050565b6005546001600160a01b031633146105c05760405163118cdaa760e01b81523360048201526024016108ba565b6001600160a01b038316610a97578060025f828254610a8c9190611113565b90915550610b079050565b6001600160a01b0383165f9081526020819052604090205481811015610ae95760405163391434e360e21b81526001600160a01b038516600482015260248101829052604481018390526064016108ba565b6001600160a01b0384165f9081526020819052604090209082900390555b6001600160a01b038216610b2357600280548290039055610b41565b6001600160a01b0382165f9081526020819052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610b8691815260200190565b60405180910390a3505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6001600160a01b038083165f9081526009602052604080822054928616825290205460065460055460ff9384169392831692600160a81b90910416158015610c4457506001600160a01b0386165f9081526008602052604090205460ff16155b8015610c6857506001600160a01b0385165f9081526008602052604090205460ff16155b15610c865760405163a24e573d60e01b815260040160405180910390fd5b8280610c8f5750815b8015610ca55750600554600160a01b900460ff16155b8015610cc957506001600160a01b0386165f9081526008602052604090205460ff16155b8015610ced57506001600160a01b0385165f9081526008602052604090205460ff16155b15610d0b5760405163bcb8b8fb60e01b815260040160405180910390fd5b828015610d1757505f81115b8015610d3b57506001600160a01b0386165f9081526007602052604090205460ff16155b15610db6575f6103e8610d4e8387611126565b610d58919061113d565b9050610d65873083610a6d565b610d6f818661115c565b604080516001600160a01b038a168152602081018490529196507f06c5efeff5c320943d265dc4e5f1af95ad523555ce0c1957e367dda5514572df910160405180910390a1505b610dc1868686610a6d565b505050505050565b6001600160a01b038416610df25760405163e602df0560e01b81525f60048201526024016108ba565b6001600160a01b038316610e1b57604051634a1406b160e11b81525f60048201526024016108ba565b6001600160a01b038085165f90815260016020908152604080832093871683529290522082905580156109a557826001600160a01b0316846001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051610e8d91815260200190565b60405180910390a350505050565b602081525f82518060208401528060208501604085015e5f604082850101526040601f19601f83011684010191505092915050565b80356001600160a01b0381168114610ee6575f80fd5b919050565b5f8060408385031215610efc575f80fd5b610f0583610ed0565b946020939093013593505050565b5f805f60608486031215610f25575f80fd5b610f2e84610ed0565b9250610f3c60208501610ed0565b9150604084013590509250925092565b5f60208284031215610f5c575f80fd5b610f6582610ed0565b9392505050565b5f60208284031215610f7c575f80fd5b5035919050565b5f8083601f840112610f93575f80fd5b50813567ffffffffffffffff811115610faa575f80fd5b6020830191508360208260051b8501011115610fc4575f80fd5b9250929050565b5f805f8060408587031215610fde575f80fd5b843567ffffffffffffffff80821115610ff5575f80fd5b61100188838901610f83565b90965094506020870135915080821115611019575f80fd5b5061102687828801610f83565b95989497509550505050565b80358015158114610ee6575f80fd5b5f60208284031215611051575f80fd5b610f6582611032565b5f806040838503121561106b575f80fd5b61107483610ed0565b915061108260208401611032565b90509250929050565b5f806040838503121561109c575f80fd5b6110a583610ed0565b915061108260208401610ed0565b600181811c908216806110c757607f821691505b6020821081036110e557634e487b7160e01b5f52602260045260245ffd5b50919050565b634e487b7160e01b5f52603260045260245ffd5b634e487b7160e01b5f52601160045260245ffd5b808201808211156104ef576104ef6110ff565b80820281158282048414176104ef576104ef6110ff565b5f8261115757634e487b7160e01b5f52601260045260245ffd5b500490565b818103818111156104ef576104ef6110ff56fea2646970667358221220674e5e6efe3bd9b2b8a030c415ad4ac3e52db2156a9784948c194d80b385270464736f6c63430008190033
Deployed Bytecode
0x608060405234801561000f575f80fd5b50600436106101c6575f3560e01c806386d55557116100fe578063a9ba9fd01161009e578063cca5dcb61161006e578063cca5dcb6146103da578063dd62ed3e146103ee578063f2fde38b14610426578063fe417fa514610439575f80fd5b8063a9ba9fd01461038e578063c0246668146103a1578063c0a904a2146103b4578063c2e5ec04146103c7575f80fd5b806395d89b41116100d957806395d89b411461034c5780639fe9f62314610354578063a771ebc714610367578063a9059cbb1461037b575f80fd5b806386d55557146103165780638b4cee081461031e5780638da5cb5b14610331575f80fd5b806333e62f1b116101695780635cce86cd116101445780635cce86cd146102b157806367243482146102d357806370a08231146102e6578063715018a61461030e575f80fd5b806333e62f1b1461025857806342966c681461027a5780634fbee1931461028f575f80fd5b806318160ddd116101a457806318160ddd1461021b57806323b872dd1461022d5780632b14ca5614610240578063313ce56714610249575f80fd5b8063064a59d0146101ca57806306fdde03146101f3578063095ea7b314610208575b5f80fd5b6005546101de90600160a01b900460ff1681565b60405190151581526020015b60405180910390f35b6101fb61044c565b6040516101ea9190610e9b565b6101de610216366004610eeb565b6104dc565b6002545b6040519081526020016101ea565b6101de61023b366004610f13565b6104f5565b61021f60065481565b604051601281526020016101ea565b6101de610266366004610f4c565b60096020525f908152604090205460ff1681565b61028d610288366004610f6c565b610518565b005b6101de61029d366004610f4c565b60076020525f908152604090205460ff1681565b6101de6102bf366004610f4c565b60086020525f908152604090205460ff1681565b61028d6102e1366004610fcb565b610525565b61021f6102f4366004610f4c565b6001600160a01b03165f9081526020819052604090205490565b61028d6105af565b61028d6105c2565b61028d61032c366004610f6c565b610606565b6005546040516001600160a01b0390911681526020016101ea565b6101fb610696565b61028d610362366004611041565b6106a5565b6005546101de90600160b01b900460ff1681565b6101de610389366004610eeb565b6106fa565b61028d61039c36600461105a565b610707565b61028d6103af36600461105a565b610772565b61028d6103c236600461105a565b6107d5565b61028d6103d5366004611041565b610838565b6005546101de90600160a81b900460ff1681565b61021f6103fc36600461108b565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b61028d610434366004610f4c565b61088d565b61028d610447366004610eeb565b6108cc565b60606003805461045b906110b3565b80601f0160208091040260200160405190810160405280929190818152602001828054610487906110b3565b80156104d25780601f106104a9576101008083540402835291602001916104d2565b820191905f5260205f20905b8154815290600101906020018083116104b557829003601f168201915b5050505050905090565b5f336104e981858561091e565b60019150505b92915050565b5f33610502858285610930565b61050d8585856109ab565b506001949350505050565b6105223382610a08565b50565b61052d610a40565b82811461054d576040516305bd686f60e21b815260040160405180910390fd5b5f5b838110156105a8576105a03386868481811061056d5761056d6110eb565b90506020020160208101906105829190610f4c565b858585818110610594576105946110eb565b90506020020135610a6d565b60010161054f565b5050505050565b6105b7610a40565b6105c05f610b93565b565b6105ca610a40565b5f60068190556005805460ff60b01b191690556040517f5cb623dd028308cc1bb26525dfa5f2565bd9795faa13fa6acb4e322153cde81a9190a1565b61060e610a40565b600554600160b01b900460ff16610638576040516336a8541b60e01b815260040160405180910390fd5b606481111561065a57604051636a412e1d60e11b815260040160405180910390fd5b60068190556040518181527fbdd53c1e50cc0dad3489ad7198c3c87b0072e45d38d413e3ea17d980e0f1c9a4906020015b60405180910390a150565b60606004805461045b906110b3565b6106ad610a40565b60058054821515600160a81b0260ff60a81b199091161790556040517fa410c62368e64b86d7722fd28e698d03bd00719ba95a861b50ceb65efdc6ca449061068b90831515815260200190565b5f336104e98185856109ab565b61070f610a40565b6001600160a01b0382165f81815260096020908152604091829020805460ff19168515159081179091558251938452908301527f06ec5a5ab383c96a6d0cb0f7921142da03f3afd943b6bf8e410a3fc47a8738a291015b60405180910390a15050565b61077a610a40565b6001600160a01b0382165f81815260076020908152604091829020805460ff19168515159081179091558251938452908301527f3499bfcf9673677ba552f3fe2ea274ec7e6246da31c3c87e115b45a9b0db2efb9101610766565b6107dd610a40565b6001600160a01b0382165f81815260086020908152604091829020805460ff19168515159081179091558251938452908301527f74392251b09500cc108c71712e5e7e0392be9075a74a24f1494551cfa8e068709101610766565b610840610a40565b60058054821515600160a01b0260ff60a01b199091161790556040517fbeda7dca7bc1b3e80b871f4818129ec73b771581f803d553aeb3484098e5f65a9061068b90831515815260200190565b610895610a40565b6001600160a01b0381166108c357604051631e4fbdf760e01b81525f60048201526024015b60405180910390fd5b61052281610b93565b6108d4610a40565b6108df308383610be4565b604080516001600160a01b0384168152602081018390527fe9aa550fd75d0d28e07fa9dd67d3ae705678776f6c4a75abd09534f93e7d79079101610766565b61092b8383836001610dc9565b505050565b6001600160a01b038381165f908152600160209081526040808320938616835292905220545f1981146109a5578181101561099757604051637dc7a0d960e11b81526001600160a01b038416600482015260248101829052604481018390526064016108ba565b6109a584848484035f610dc9565b50505050565b6001600160a01b0383166109d457604051634b637e8f60e11b81525f60048201526024016108ba565b6001600160a01b0382166109fd5760405163ec442f0560e01b81525f60048201526024016108ba565b61092b838383610be4565b6001600160a01b038216610a3157604051634b637e8f60e11b81525f60048201526024016108ba565b610a3c825f83610be4565b5050565b6005546001600160a01b031633146105c05760405163118cdaa760e01b81523360048201526024016108ba565b6001600160a01b038316610a97578060025f828254610a8c9190611113565b90915550610b079050565b6001600160a01b0383165f9081526020819052604090205481811015610ae95760405163391434e360e21b81526001600160a01b038516600482015260248101829052604481018390526064016108ba565b6001600160a01b0384165f9081526020819052604090209082900390555b6001600160a01b038216610b2357600280548290039055610b41565b6001600160a01b0382165f9081526020819052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610b8691815260200190565b60405180910390a3505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6001600160a01b038083165f9081526009602052604080822054928616825290205460065460055460ff9384169392831692600160a81b90910416158015610c4457506001600160a01b0386165f9081526008602052604090205460ff16155b8015610c6857506001600160a01b0385165f9081526008602052604090205460ff16155b15610c865760405163a24e573d60e01b815260040160405180910390fd5b8280610c8f5750815b8015610ca55750600554600160a01b900460ff16155b8015610cc957506001600160a01b0386165f9081526008602052604090205460ff16155b8015610ced57506001600160a01b0385165f9081526008602052604090205460ff16155b15610d0b5760405163bcb8b8fb60e01b815260040160405180910390fd5b828015610d1757505f81115b8015610d3b57506001600160a01b0386165f9081526007602052604090205460ff16155b15610db6575f6103e8610d4e8387611126565b610d58919061113d565b9050610d65873083610a6d565b610d6f818661115c565b604080516001600160a01b038a168152602081018490529196507f06c5efeff5c320943d265dc4e5f1af95ad523555ce0c1957e367dda5514572df910160405180910390a1505b610dc1868686610a6d565b505050505050565b6001600160a01b038416610df25760405163e602df0560e01b81525f60048201526024016108ba565b6001600160a01b038316610e1b57604051634a1406b160e11b81525f60048201526024016108ba565b6001600160a01b038085165f90815260016020908152604080832093871683529290522082905580156109a557826001600160a01b0316846001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051610e8d91815260200190565b60405180910390a350505050565b602081525f82518060208401528060208501604085015e5f604082850101526040601f19601f83011684010191505092915050565b80356001600160a01b0381168114610ee6575f80fd5b919050565b5f8060408385031215610efc575f80fd5b610f0583610ed0565b946020939093013593505050565b5f805f60608486031215610f25575f80fd5b610f2e84610ed0565b9250610f3c60208501610ed0565b9150604084013590509250925092565b5f60208284031215610f5c575f80fd5b610f6582610ed0565b9392505050565b5f60208284031215610f7c575f80fd5b5035919050565b5f8083601f840112610f93575f80fd5b50813567ffffffffffffffff811115610faa575f80fd5b6020830191508360208260051b8501011115610fc4575f80fd5b9250929050565b5f805f8060408587031215610fde575f80fd5b843567ffffffffffffffff80821115610ff5575f80fd5b61100188838901610f83565b90965094506020870135915080821115611019575f80fd5b5061102687828801610f83565b95989497509550505050565b80358015158114610ee6575f80fd5b5f60208284031215611051575f80fd5b610f6582611032565b5f806040838503121561106b575f80fd5b61107483610ed0565b915061108260208401611032565b90509250929050565b5f806040838503121561109c575f80fd5b6110a583610ed0565b915061108260208401610ed0565b600181811c908216806110c757607f821691505b6020821081036110e557634e487b7160e01b5f52602260045260245ffd5b50919050565b634e487b7160e01b5f52603260045260245ffd5b634e487b7160e01b5f52601160045260245ffd5b808201808211156104ef576104ef6110ff565b80820281158282048414176104ef576104ef6110ff565b5f8261115757634e487b7160e01b5f52601260045260245ffd5b500490565b818103818111156104ef576104ef6110ff56fea2646970667358221220674e5e6efe3bd9b2b8a030c415ad4ac3e52db2156a9784948c194d80b385270464736f6c63430008190033
Deployed Bytecode Sourcemap
32681:4278:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32722:28;;;;;-1:-1:-1;;;32722:28:0;;;;;;;;;179:14:1;;172:22;154:41;;142:2;127:18;32722:28:0;;;;;;;;13297:91;;;:::i;:::-;;;;;;;:::i;15590:190::-;;;;;;:::i;:::-;;:::i;14399:99::-;14478:12;;14399:99;;;1212:25:1;;;1200:2;1185:18;14399:99:0;1066:177:1;16358:249:0;;;;;;:::i;:::-;;:::i;32822:19::-;;;;;;14250:84;;;14324:2;1723:36:1;;1711:2;1696:18;14250:84:0;1581:184:1;32966:44:0;;;;;;:::i;:::-;;;;;;;;;;;;;;;;36873:83;;;;;;:::i;:::-;;:::i;:::-;;32850:50;;;;;;:::i;:::-;;;;;;;;;;;;;;;;32907:52;;;;;;:::i;:::-;;;;;;;;;;;;;;;;36549:316;;;;;;:::i;:::-;;:::i;14561:118::-;;;;;;:::i;:::-;-1:-1:-1;;;;;14653:18:0;14626:7;14653:18;;;;;;;;;;;;14561:118;24972:103;;;:::i;33960:134::-;;;:::i;34576:208::-;;;;;;:::i;:::-;;:::i;24297:87::-;24370:6;;24297:87;;-1:-1:-1;;;;;24370:6:0;;;3442:51:1;;3430:2;3415:18;24297:87:0;3296:203:1;13507:95:0;;;:::i;34258:147::-;;;;;;:::i;:::-;;:::i;32793:22::-;;;;;-1:-1:-1;;;32793:22:0;;;;;;14884:182;;;;;;:::i;:::-;;:::i;34413:155::-;;;;;;:::i;:::-;;:::i;34959:184::-;;;;;;:::i;:::-;;:::i;35151:190::-;;;;;;:::i;:::-;;:::i;34102:144::-;;;;;;:::i;:::-;;:::i;32757:29::-;;;;;-1:-1:-1;;;32757:29:0;;;;;;15129:142;;;;;;:::i;:::-;-1:-1:-1;;;;;15236:18:0;;;15209:7;15236:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;15129:142;25230:220;;;;;;:::i;:::-;;:::i;34792:159::-;;;;;;:::i;:::-;;:::i;13297:91::-;13342:13;13375:5;13368:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13297:91;:::o;15590:190::-;15663:4;4382:10;15719:31;4382:10;15735:7;15744:5;15719:8;:31::i;:::-;15768:4;15761:11;;;15590:190;;;;;:::o;16358:249::-;16445:4;4382:10;16503:37;16519:4;4382:10;16534:5;16503:15;:37::i;:::-;16551:26;16561:4;16567:2;16571:5;16551:9;:26::i;:::-;-1:-1:-1;16595:4:0;;16358:249;-1:-1:-1;;;;16358:249:0:o;36873:83::-;36923:25;36929:10;36941:6;36923:5;:25::i;:::-;36873:83;:::o;36549:316::-;24183:13;:11;:13::i;:::-;36658:35;;::::1;36655:68;;36702:21;;-1:-1:-1::0;;;36702:21:0::1;;;;;;;;;;;36655:68;36739:6;36734:124;36751:21:::0;;::::1;36734:124;;;36794:52;36808:10;36820;;36831:1;36820:13;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;36835:7;;36843:1;36835:10;;;;;;;:::i;:::-;;;;;;;36794:13;:52::i;:::-;36774:3;;36734:124;;;;36549:316:::0;;;;:::o;24972:103::-;24183:13;:11;:13::i;:::-;25037:30:::1;25064:1;25037:18;:30::i;:::-;24972:103::o:0;33960:134::-;24183:13;:11;:13::i;:::-;34025:1:::1;34012:7;:14:::0;;;34037:10:::1;:18:::0;;-1:-1:-1;;;;34037:18:0::1;::::0;;34071:15:::1;::::0;::::1;::::0;34025:1;34071:15:::1;33960:134::o:0;34576:208::-;24183:13;:11;:13::i;:::-;34640:10:::1;::::0;-1:-1:-1;;;34640:10:0;::::1;;;34636:36;;34659:13;;-1:-1:-1::0;;;34659:13:0::1;;;;;;;;;;;34636:36;34692:3;34686;:9;34683:38;;;34705:16;;-1:-1:-1::0;;;34705:16:0::1;;;;;;;;;;;34683:38;34732:7;:13:::0;;;34761:15:::1;::::0;1212:25:1;;;34761:15:0::1;::::0;1200:2:1;1185:18;34761:15:0::1;;;;;;;;34576:208:::0;:::o;13507:95::-;13554:13;13587:7;13580:14;;;;;:::i;34258:147::-;24183:13;:11;:13::i;:::-;34330:17:::1;:27:::0;;;::::1;;-1:-1:-1::0;;;34330:27:0::1;-1:-1:-1::0;;;;34330:27:0;;::::1;;::::0;;34373:24:::1;::::0;::::1;::::0;::::1;::::0;34350:7;179:14:1;172:22;154:41;;142:2;127:18;;14:187;14884:182:0;14953:4;4382:10;15009:27;4382:10;15026:2;15030:5;15009:9;:27::i;34413:155::-;24183:13;:11;:13::i;:::-;-1:-1:-1;;;;;34491:18:0;::::1;;::::0;;;:12:::1;:18;::::0;;;;;;;;:28;;-1:-1:-1;;34491:28:0::1;::::0;::::1;;::::0;;::::1;::::0;;;34535:25;;5063:51:1;;;5130:18;;;5123:50;34535:25:0::1;::::0;5036:18:1;34535:25:0::1;;;;;;;;34413:155:::0;;:::o;34959:184::-;24183:13;:11;:13::i;:::-;-1:-1:-1;;;;;35046:27:0;::::1;;::::0;;;:18:::1;:27;::::0;;;;;;;;:38;;-1:-1:-1;;35046:38:0::1;::::0;::::1;;::::0;;::::1;::::0;;;35100:35;;5063:51:1;;;5130:18;;;5123:50;35100:35:0::1;::::0;5036:18:1;35100:35:0::1;4895:284:1::0;35151:190:0;24183:13;:11;:13::i;:::-;-1:-1:-1;;;;;35240:29:0;::::1;;::::0;;;:20:::1;:29;::::0;;;;;;;;:40;;-1:-1:-1;;35240:40:0::1;::::0;::::1;;::::0;;::::1;::::0;;;35296:37;;5063:51:1;;;5130:18;;;5123:50;35296:37:0::1;::::0;5036:18:1;35296:37:0::1;4895:284:1::0;34102:144:0;24183:13;:11;:13::i;:::-;34173:16:::1;:26:::0;;;::::1;;-1:-1:-1::0;;;34173:26:0::1;-1:-1:-1::0;;;;34173:26:0;;::::1;;::::0;;34215:23:::1;::::0;::::1;::::0;::::1;::::0;34192:7;179:14:1;172:22;154:41;;142:2;127:18;;14:187;25230:220:0;24183:13;:11;:13::i;:::-;-1:-1:-1;;;;;25315:22:0;::::1;25311:93;;25361:31;::::0;-1:-1:-1;;;25361:31:0;;25389:1:::1;25361:31;::::0;::::1;3442:51:1::0;3415:18;;25361:31:0::1;;;;;;;;25311:93;25414:28;25433:8;25414:18;:28::i;34792:159::-:0;24183:13;:11;:13::i;:::-;34868:34:::1;34884:4;34891:2;34895:6;34868:7;:34::i;:::-;34918:25;::::0;;-1:-1:-1;;;;;5376:32:1;;5358:51;;5440:2;5425:18;;5418:34;;;34918:25:0::1;::::0;5331:18:1;34918:25:0::1;5184:274:1::0;20417:130:0;20502:37;20511:5;20518:7;20527:5;20534:4;20502:8;:37::i;:::-;20417:130;;;:::o;22133:487::-;-1:-1:-1;;;;;15236:18:0;;;22233:24;15236:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;-1:-1:-1;;22300:37:0;;22296:317;;22377:5;22358:16;:24;22354:132;;;22410:60;;-1:-1:-1;;;22410:60:0;;-1:-1:-1;;;;;5683:32:1;;22410:60:0;;;5665:51:1;5732:18;;;5725:34;;;5775:18;;;5768:34;;;5638:18;;22410:60:0;5463:345:1;22354:132:0;22529:57;22538:5;22545:7;22573:5;22554:16;:24;22580:5;22529:8;:57::i;:::-;22222:398;22133:487;;;:::o;16992:308::-;-1:-1:-1;;;;;17076:18:0;;17072:88;;17118:30;;-1:-1:-1;;;17118:30:0;;17145:1;17118:30;;;3442:51:1;3415:18;;17118:30:0;3296:203:1;17072:88:0;-1:-1:-1;;;;;17174:16:0;;17170:88;;17214:32;;-1:-1:-1;;;17214:32:0;;17243:1;17214:32;;;3442:51:1;3415:18;;17214:32:0;3296:203:1;17170:88:0;17268:24;17276:4;17282:2;17286:5;17268:7;:24::i;19653:211::-;-1:-1:-1;;;;;19724:21:0;;19720:91;;19769:30;;-1:-1:-1;;;19769:30:0;;19796:1;19769:30;;;3442:51:1;3415:18;;19769:30:0;3296:203:1;19720:91:0;19821:35;19829:7;19846:1;19850:5;19821:7;:35::i;:::-;19653:211;;:::o;24462:166::-;24370:6;;-1:-1:-1;;;;;24370:6:0;4382:10;24522:23;24518:103;;24569:40;;-1:-1:-1;;;24569:40:0;;4382:10;24569:40;;;3442:51:1;3415:18;;24569:40:0;3296:203:1;17624:1135:0;-1:-1:-1;;;;;17714:18:0;;17710:552;;17868:5;17852:12;;:21;;;;;;;:::i;:::-;;;;-1:-1:-1;17710:552:0;;-1:-1:-1;17710:552:0;;-1:-1:-1;;;;;17928:15:0;;17906:19;17928:15;;;;;;;;;;;17962:19;;;17958:117;;;18009:50;;-1:-1:-1;;;18009:50:0;;-1:-1:-1;;;;;5683:32:1;;18009:50:0;;;5665:51:1;5732:18;;;5725:34;;;5775:18;;;5768:34;;;5638:18;;18009:50:0;5463:345:1;17958:117:0;-1:-1:-1;;;;;18198:15:0;;:9;:15;;;;;;;;;;18216:19;;;;18198:37;;17710:552;-1:-1:-1;;;;;18278:16:0;;18274:435;;18444:12;:21;;;;;;;18274:435;;;-1:-1:-1;;;;;18660:13:0;;:9;:13;;;;;;;;;;:22;;;;;;18274:435;18741:2;-1:-1:-1;;;;;18726:25:0;18735:4;-1:-1:-1;;;;;18726:25:0;;18745:5;18726:25;;;;1212::1;;1200:2;1185:18;;1066:177;18726:25:0;;;;;;;;17624:1135;;;:::o;25610:191::-;25703:6;;;-1:-1:-1;;;;;25720:17:0;;;-1:-1:-1;;;;;;25720:17:0;;;;;;;25753:40;;25703:6;;;25720:17;25703:6;;25753:40;;25684:16;;25753:40;25673:128;25610:191;:::o;35349:1116::-;-1:-1:-1;;;;;35453:16:0;;;35437:11;35453:16;;;:12;:16;;;;;;;35496:18;;;;;;;;35541:7;;35608:17;;35453:16;;;;;35496:18;;;;-1:-1:-1;;;35608:17:0;;;;35607:18;:130;;;;-1:-1:-1;;;;;;35711:26:0;;;;;;:20;:26;;;;;;;;35710:27;35607:130;:159;;;;-1:-1:-1;;;;;;35742:24:0;;;;;;:20;:24;;;;;;;;35741:25;35607:159;35559:248;;;35789:18;;-1:-1:-1;;;35789:18:0;;;;;;;;;;;35559:248;35876:6;:15;;;;35886:5;35876:15;35875:95;;;;-1:-1:-1;35954:16:0;;-1:-1:-1;;;35954:16:0;;;;35953:17;35875:95;:207;;;;-1:-1:-1;;;;;;36056:26:0;;;;;;:20;:26;;;;;;;;36055:27;35875:207;:236;;;;-1:-1:-1;;;;;;36087:24:0;;;;;;:20;:24;;;;;;;;36086:25;35875:236;35818:333;;;36134:17;;-1:-1:-1;;;36134:17:0;;;;;;;;;;;35818:333;36176:6;:22;;;;;36197:1;36186:8;:12;36176:22;:51;;;;-1:-1:-1;;;;;;36203:24:0;;;;;;:18;:24;;;;;;;;36202:25;36176:51;36172:244;;;36244:8;36275:4;36255:17;36264:8;36255:6;:17;:::i;:::-;:24;;;;:::i;:::-;36244:35;;36294:39;36308:4;36322;36329:3;36294:13;:39::i;:::-;36348:13;36358:3;36348:13;;:::i;:::-;36381:23;;;-1:-1:-1;;;;;5376:32:1;;5358:51;;5440:2;5425:18;;5418:34;;;36348:13:0;;-1:-1:-1;36381:23:0;;5331:18:1;36381:23:0;;;;;;;36229:187;36172:244;36426:31;36440:4;36446:2;36450:6;36426:13;:31::i;:::-;35426:1039;;;35349:1116;;;:::o;21398:443::-;-1:-1:-1;;;;;21511:19:0;;21507:91;;21554:32;;-1:-1:-1;;;21554:32:0;;21583:1;21554:32;;;3442:51:1;3415:18;;21554:32:0;3296:203:1;21507:91:0;-1:-1:-1;;;;;21612:21:0;;21608:92;;21657:31;;-1:-1:-1;;;21657:31:0;;21685:1;21657:31;;;3442:51:1;3415:18;;21657:31:0;3296:203:1;21608:92:0;-1:-1:-1;;;;;21710:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;:35;;;21756:78;;;;21807:7;-1:-1:-1;;;;;21791:31:0;21800:5;-1:-1:-1;;;;;21791:31:0;;21816:5;21791:31;;;;1212:25:1;;1200:2;1185:18;;1066:177;21791:31:0;;;;;;;;21398:443;;;;:::o;206:418:1:-;355:2;344:9;337:21;318:4;387:6;381:13;430:6;425:2;414:9;410:18;403:34;489:6;484:2;476:6;472:15;467:2;456:9;452:18;446:50;545:1;540:2;531:6;520:9;516:22;512:31;505:42;615:2;608;604:7;599:2;591:6;587:15;583:29;572:9;568:45;564:54;556:62;;;206:418;;;;:::o;629:173::-;697:20;;-1:-1:-1;;;;;746:31:1;;736:42;;726:70;;792:1;789;782:12;726:70;629:173;;;:::o;807:254::-;875:6;883;936:2;924:9;915:7;911:23;907:32;904:52;;;952:1;949;942:12;904:52;975:29;994:9;975:29;:::i;:::-;965:39;1051:2;1036:18;;;;1023:32;;-1:-1:-1;;;807:254:1:o;1248:328::-;1325:6;1333;1341;1394:2;1382:9;1373:7;1369:23;1365:32;1362:52;;;1410:1;1407;1400:12;1362:52;1433:29;1452:9;1433:29;:::i;:::-;1423:39;;1481:38;1515:2;1504:9;1500:18;1481:38;:::i;:::-;1471:48;;1566:2;1555:9;1551:18;1538:32;1528:42;;1248:328;;;;;:::o;1770:186::-;1829:6;1882:2;1870:9;1861:7;1857:23;1853:32;1850:52;;;1898:1;1895;1888:12;1850:52;1921:29;1940:9;1921:29;:::i;:::-;1911:39;1770:186;-1:-1:-1;;;1770:186:1:o;1961:180::-;2020:6;2073:2;2061:9;2052:7;2048:23;2044:32;2041:52;;;2089:1;2086;2079:12;2041:52;-1:-1:-1;2112:23:1;;1961:180;-1:-1:-1;1961:180:1:o;2146:367::-;2209:8;2219:6;2273:3;2266:4;2258:6;2254:17;2250:27;2240:55;;2291:1;2288;2281:12;2240:55;-1:-1:-1;2314:20:1;;2357:18;2346:30;;2343:50;;;2389:1;2386;2379:12;2343:50;2426:4;2418:6;2414:17;2402:29;;2486:3;2479:4;2469:6;2466:1;2462:14;2454:6;2450:27;2446:38;2443:47;2440:67;;;2503:1;2500;2493:12;2440:67;2146:367;;;;;:::o;2518:773::-;2640:6;2648;2656;2664;2717:2;2705:9;2696:7;2692:23;2688:32;2685:52;;;2733:1;2730;2723:12;2685:52;2773:9;2760:23;2802:18;2843:2;2835:6;2832:14;2829:34;;;2859:1;2856;2849:12;2829:34;2898:70;2960:7;2951:6;2940:9;2936:22;2898:70;:::i;:::-;2987:8;;-1:-1:-1;2872:96:1;-1:-1:-1;3075:2:1;3060:18;;3047:32;;-1:-1:-1;3091:16:1;;;3088:36;;;3120:1;3117;3110:12;3088:36;;3159:72;3223:7;3212:8;3201:9;3197:24;3159:72;:::i;:::-;2518:773;;;;-1:-1:-1;3250:8:1;-1:-1:-1;;;;2518:773:1:o;3504:160::-;3569:20;;3625:13;;3618:21;3608:32;;3598:60;;3654:1;3651;3644:12;3669:180;3725:6;3778:2;3766:9;3757:7;3753:23;3749:32;3746:52;;;3794:1;3791;3784:12;3746:52;3817:26;3833:9;3817:26;:::i;3854:254::-;3919:6;3927;3980:2;3968:9;3959:7;3955:23;3951:32;3948:52;;;3996:1;3993;3986:12;3948:52;4019:29;4038:9;4019:29;:::i;:::-;4009:39;;4067:35;4098:2;4087:9;4083:18;4067:35;:::i;:::-;4057:45;;3854:254;;;;;:::o;4113:260::-;4181:6;4189;4242:2;4230:9;4221:7;4217:23;4213:32;4210:52;;;4258:1;4255;4248:12;4210:52;4281:29;4300:9;4281:29;:::i;:::-;4271:39;;4329:38;4363:2;4352:9;4348:18;4329:38;:::i;4378:380::-;4457:1;4453:12;;;;4500;;;4521:61;;4575:4;4567:6;4563:17;4553:27;;4521:61;4628:2;4620:6;4617:14;4597:18;4594:38;4591:161;;4674:10;4669:3;4665:20;4662:1;4655:31;4709:4;4706:1;4699:15;4737:4;4734:1;4727:15;4591:161;;4378:380;;;:::o;4763:127::-;4824:10;4819:3;4815:20;4812:1;4805:31;4855:4;4852:1;4845:15;4879:4;4876:1;4869:15;5813:127;5874:10;5869:3;5865:20;5862:1;5855:31;5905:4;5902:1;5895:15;5929:4;5926:1;5919:15;5945:125;6010:9;;;6031:10;;;6028:36;;;6044:18;;:::i;6075:168::-;6148:9;;;6179;;6196:15;;;6190:22;;6176:37;6166:71;;6217:18;;:::i;6248:217::-;6288:1;6314;6304:132;;6358:10;6353:3;6349:20;6346:1;6339:31;6393:4;6390:1;6383:15;6421:4;6418:1;6411:15;6304:132;-1:-1:-1;6450:9:1;;6248:217::o;6470:128::-;6537:9;;;6558:11;;;6555:37;;;6572:18;;:::i
Swarm Source
ipfs://674e5e6efe3bd9b2b8a030c415ad4ac3e52db2156a9784948c194d80b3852704
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.