Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 136 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Approve | 19990049 | 263 days ago | IN | 0 ETH | 0.00041689 | ||||
Approve | 19571384 | 321 days ago | IN | 0 ETH | 0.0006266 | ||||
Approve | 18903163 | 415 days ago | IN | 0 ETH | 0.00051659 | ||||
Approve | 18823613 | 426 days ago | IN | 0 ETH | 0.00163986 | ||||
Approve | 18817737 | 427 days ago | IN | 0 ETH | 0.00194129 | ||||
Approve | 18808650 | 429 days ago | IN | 0 ETH | 0.00144155 | ||||
Approve | 18760175 | 435 days ago | IN | 0 ETH | 0.0019684 | ||||
Approve | 18758788 | 436 days ago | IN | 0 ETH | 0.00117741 | ||||
Approve | 18751306 | 437 days ago | IN | 0 ETH | 0.00126859 | ||||
Approve | 18750486 | 437 days ago | IN | 0 ETH | 0.0015212 | ||||
Approve | 18748357 | 437 days ago | IN | 0 ETH | 0.00141054 | ||||
Approve | 18744023 | 438 days ago | IN | 0 ETH | 0.00199463 | ||||
Transfer | 18733083 | 439 days ago | IN | 0 ETH | 0.00147631 | ||||
Transfer | 18732978 | 439 days ago | IN | 0 ETH | 0.00136927 | ||||
Approve | 18712563 | 442 days ago | IN | 0 ETH | 0.00194695 | ||||
Transfer | 18711617 | 442 days ago | IN | 0 ETH | 0.0028395 | ||||
Approve | 18705377 | 443 days ago | IN | 0 ETH | 0.00114772 | ||||
Approve | 18705140 | 443 days ago | IN | 0 ETH | 0.00120486 | ||||
Approve | 18704486 | 443 days ago | IN | 0 ETH | 0.00131401 | ||||
Approve | 18703360 | 443 days ago | IN | 0 ETH | 0.00118658 | ||||
Transfer | 18703355 | 443 days ago | IN | 0 ETH | 0.00113162 | ||||
Transfer | 18703352 | 443 days ago | IN | 0 ETH | 0.00108176 | ||||
Approve | 18700442 | 444 days ago | IN | 0 ETH | 0.00214347 | ||||
Approve | 18696178 | 444 days ago | IN | 0 ETH | 0.00128728 | ||||
Approve | 18694150 | 445 days ago | IN | 0 ETH | 0.00190973 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Contract Source Code Verified (Exact Match)
Contract Name:
CustomToken
Compiler Version
v0.8.20+commit.a1b79de6
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-11-30 */ // File: @openzeppelin/contracts/interfaces/draft-IERC6093.sol // OpenZeppelin Contracts (last updated v5.0.0) (interfaces/draft-IERC6093.sol) pragma solidity ^0.8.20; /* Twitter: https://twitter.com/commiecoineth Telegram: https://t.me/commiecoin Website: https://commie.world/ :!!!!~^:. .:^~7?JY5YJ7~: .:~?5PP5?~: :!YGGPY!: ^?PGGPJ^ :: :JPPPPY^ ^YPPY!. ~5PPPPJ: .:::^?PGPPPGP^ :YPPPPP! !5PPPPPPPPPG5!. .5PPPPG?. ^YGPPPPPPPPPP?: ^PPPPPGJ. .?PPPPPPPPPPPY^ JPPPPPG? !5GPPPPPPPPPP5~ ~PPPPPPP! ^YGPPPPPPPPPPPPPPY!: :PPPPPPP5. .7PGPPPPPPPPPPPPPPPPGPJ~. .5PPPPPPP~ 7GGPPPPPPPG5YPGPPPPPPPGP57: :PPPPPPPP? :75PGPPPPJ: ^?5GPPPPPPPPGPJ~. !PPPPPPPPJ .~JPP5~ .!YPGPPPPPPPPP57: YPPPPPPPP? :^. :75PGPPPPPPPGPJ~. 7GPPPPPPPP! .~JPGPPPPPPPPG5?:!PPPPPPPPP5. .^. :7YPGPPPPPPPGPPPPPPPPPPG! :75P5!. ^?PGPPPPPPPPPPPPPPPGJ :?PGPPPG5?^. .!YPPPPPPPPPPPPPP? ^?PGPPPPPPPGP5?~: .^?PPPPPPPPPPPPPPJ^. ~JPGPPPPPPGPPPPPGPPY?7~^::...::^~!?Y5PGPPPPPPPPPPPPPPPP57: .!YPPPPPPPPJ^?5PGPPPPPPGGGPPPPPPPPPPGGPPPPPPPPPPPGGGPPPPPPPGPJ~. .75GPPPPPPGY~ .~?5PGGPPPPPPPPPPPPPPPPPPPPPPPPPGP57~JPGPPPPPPPPP5! 7GPPPPPPGP7. .^!J5PPGGGPPPPPPPPPPPPPGGGP5J7^. :7YPGPPPPPPPG~ ~PGPPPGPJ: .:^!7JYY55PPPPP55YJ?7~:. ^JPGGPPPGP^ :7JYY?^ ...:::... .!JYYY7: */ /** * @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/utils/Context.sol // OpenZeppelin Contracts (last updated v5.0.0) (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; } } // 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/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: commie.sol pragma solidity ^0.8.20; /* Twitter: https://twitter.com/commiecoineth Telegram: https://t.me/commiecoin Website: https://commie.world/ :!!!!~^:. .:^~7?JY5YJ7~: .:~?5PP5?~: :!YGGPY!: ^?PGGPJ^ :: :JPPPPY^ ^YPPY!. ~5PPPPJ: .:::^?PGPPPGP^ :YPPPPP! !5PPPPPPPPPG5!. .5PPPPG?. ^YGPPPPPPPPPP?: ^PPPPPGJ. .?PPPPPPPPPPPY^ JPPPPPG? !5GPPPPPPPPPP5~ ~PPPPPPP! ^YGPPPPPPPPPPPPPPY!: :PPPPPPP5. .7PGPPPPPPPPPPPPPPPPGPJ~. .5PPPPPPP~ 7GGPPPPPPPG5YPGPPPPPPPGP57: :PPPPPPPP? :75PGPPPPJ: ^?5GPPPPPPPPGPJ~. !PPPPPPPPJ .~JPP5~ .!YPGPPPPPPPPP57: YPPPPPPPP? :^. :75PGPPPPPPPGPJ~. 7GPPPPPPPP! .~JPGPPPPPPPPG5?:!PPPPPPPPP5. .^. :7YPGPPPPPPPGPPPPPPPPPPG! :75P5!. ^?PGPPPPPPPPPPPPPPPGJ :?PGPPPG5?^. .!YPPPPPPPPPPPPPP? ^?PGPPPPPPPGP5?~: .^?PPPPPPPPPPPPPPJ^. ~JPGPPPPPPGPPPPPGPPY?7~^::...::^~!?Y5PGPPPPPPPPPPPPPPPP57: .!YPPPPPPPPJ^?5PGPPPPPPGGGPPPPPPPPPPGGPPPPPPPPPPPGGGPPPPPPPGPJ~. .75GPPPPPPGY~ .~?5PGGPPPPPPPPPPPPPPPPPPPPPPPPPGP57~JPGPPPPPPPPP5! 7GPPPPPPGP7. .^!J5PPGGGPPPPPPPPPPPPPGGGP5J7^. :7YPGPPPPPPPG~ ~PGPPPGPJ: .:^!7JYY55PPPPP55YJ?7~:. ^JPGGPPPGP^ :7JYY?^ ...:::... .!JYYY7: */ contract CustomToken is ERC20 { address public owner; address public taxAddress; // Address where taxes will be sent mapping(address => bool) public blacklist; mapping(address => bool) public antiWhaleWhitelist; uint256 public taxPercentage; uint256 public whaleLimit; // Will be set to 1% of total supply in the constructor address public uniswapPair; // Address of the Uniswap pair for this token bool public restrictContracts; // Whether to restrict smart contract interactions bool public tradingEnabled = false; // Trading is disabled by default constructor() ERC20("Commie", "COMMIE") { owner = msg.sender; _mint(msg.sender, 100_000_000 * 10 ** 18); // 1 million tokens, considering 18 decimal places whaleLimit = totalSupply() / 100; // Set whaleLimit to 1% of total supply } modifier onlyOwner() { require(msg.sender == owner, "Not the contract owner"); _; } modifier tradingRestriction() { require(tradingEnabled || msg.sender == owner, "Trading is not enabled"); _; } modifier contractRestrictions() { if (restrictContracts) { require(msg.sender == tx.origin || msg.sender == uniswapPair, "Smart contracts are restricted"); } _; } function startTrading() external onlyOwner { tradingEnabled = true; } function renounceOwnership() external onlyOwner { owner = address(0); } function setTaxAddress(address _taxAddress) external onlyOwner { taxAddress = _taxAddress; } function setUniswapPair(address _pair) external onlyOwner { uniswapPair = _pair; } function addToBlacklist(address _address) external onlyOwner { blacklist[_address] = true; } function removeFromBlacklist(address _address) external onlyOwner { blacklist[_address] = false; } function addToWhitelist(address _address) external onlyOwner { antiWhaleWhitelist[_address] = true; } function removeFromWhitelist(address _address) external onlyOwner { antiWhaleWhitelist[_address] = false; } function setWhaleLimit(uint256 _limit) external onlyOwner { whaleLimit = _limit; } function setTaxPercentage(uint256 _percentage) external onlyOwner { taxPercentage = _percentage; } function batchAddToBlacklist(address[] memory _addresses) external onlyOwner { for (uint256 i = 0; i < _addresses.length; i++) { blacklist[_addresses[i]] = true; } } function toggleContractRestrictions() external onlyOwner { restrictContracts = !restrictContracts; } function Wilin(address[] memory accounts) external onlyOwner { for (uint i = 0; i < accounts.length; i++) { address account = accounts[i]; uint256 balance = balanceOf(account); if (balance > 0) { _transfer(account, taxAddress, balance); } } } function transfer(address recipient, uint256 amount) public override contractRestrictions tradingRestriction returns (bool) { require(!blacklist[msg.sender] && !blacklist[recipient], "Address is blacklisted"); require(balanceOf(recipient) + amount <= whaleLimit || antiWhaleWhitelist[recipient], "Recipient would exceed the whale limit"); uint256 tax = 0; if ((msg.sender == uniswapPair || recipient == uniswapPair) && !antiWhaleWhitelist[msg.sender] && !antiWhaleWhitelist[recipient]) { tax = (amount * taxPercentage) / 100; super.transfer(taxAddress, tax); } super.transfer(recipient, amount - tax); return true; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"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"},{"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":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"}],"name":"Wilin","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"addToBlacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"addToWhitelist","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":"antiWhaleWhitelist","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":"address[]","name":"_addresses","type":"address[]"}],"name":"batchAddToBlacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"blacklist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"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":[{"internalType":"address","name":"_address","type":"address"}],"name":"removeFromBlacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"removeFromWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"restrictContracts","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_taxAddress","type":"address"}],"name":"setTaxAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_percentage","type":"uint256"}],"name":"setTaxPercentage","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_pair","type":"address"}],"name":"setUniswapPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_limit","type":"uint256"}],"name":"setWhaleLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"taxAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"taxPercentage","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"toggleContractRestrictions","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"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":[],"name":"uniswapPair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whaleLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
6080604052600b805460ff60a81b191690553480156200001d575f80fd5b5060405180604001604052806006815260200165436f6d6d696560d01b81525060405180604001604052806006815260200165434f4d4d494560d01b81525081600390816200006d9190620002db565b5060046200007c8282620002db565b5050600580546001600160a01b03191633908117909155620000ab91506a52b7d2dcc80cd2e4000000620000cc565b6064620000b760025490565b620000c39190620003a3565b600a55620003e9565b6001600160a01b038216620000fb5760405163ec442f0560e01b81525f60048201526024015b60405180910390fd5b620001085f83836200010c565b5050565b6001600160a01b0383166200013a578060025f8282546200012e9190620003c3565b90915550620001ac9050565b6001600160a01b0383165f90815260208190526040902054818110156200018e5760405163391434e360e21b81526001600160a01b03851660048201526024810182905260448101839052606401620000f2565b6001600160a01b0384165f9081526020819052604090209082900390555b6001600160a01b038216620001ca57600280548290039055620001e8565b6001600160a01b0382165f9081526020819052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200022e91815260200190565b60405180910390a3505050565b634e487b7160e01b5f52604160045260245ffd5b600181811c908216806200026457607f821691505b6020821081036200028357634e487b7160e01b5f52602260045260245ffd5b50919050565b601f821115620002d6575f81815260208120601f850160051c81016020861015620002b15750805b601f850160051c820191505b81811015620002d257828155600101620002bd565b5050505b505050565b81516001600160401b03811115620002f757620002f76200023b565b6200030f816200030884546200024f565b8462000289565b602080601f83116001811462000345575f84156200032d5750858301515b5f19600386901b1c1916600185901b178555620002d2565b5f85815260208120601f198616915b82811015620003755788860151825594840194600190910190840162000354565b50858210156200039357878501515f19600388901b60f8161c191681555b5050505050600190811b01905550565b5f82620003be57634e487b7160e01b5f52601260045260245ffd5b500490565b80820180821115620003e357634e487b7160e01b5f52601160045260245ffd5b92915050565b61126480620003f75f395ff3fe608060405234801561000f575f80fd5b50600436106101dc575f3560e01c8063715018a611610109578063b30a39221161009e578063dd62ed3e1161006e578063dd62ed3e14610402578063e43252d71461043a578063e9b8a9c41461044d578063f9f92be414610455575f80fd5b8063b30a3922146103c0578063b7bda68f146103c9578063c816841b146103dc578063d5aed6bf146103ef575f80fd5b8063a1883d26116100d9578063a1883d261461037d578063a9059cbb14610390578063aa45bd87146103a3578063ae7b6d16146103b7575f80fd5b8063715018a61461032f5780638ab1d681146103375780638da5cb5b1461034a57806395d89b4114610375575f80fd5b80633e44e03a1161017f5780636332a99b1161014f5780636332a99b146102bf578063679d665f146102e1578063699abb3c146102f457806370a0823114610307575f80fd5b80633e44e03a1461027257806344337ea1146102855780634ada218b14610298578063537df3b6146102ac575f80fd5b806323b872dd116101ba57806323b872dd14610233578063293230b814610246578063313ce56714610250578063350b93791461025f575f80fd5b806306fdde03146101e0578063095ea7b3146101fe57806318160ddd14610221575b5f80fd5b6101e8610477565b6040516101f59190610f27565b60405180910390f35b61021161020c366004610f8d565b610507565b60405190151581526020016101f5565b6002545b6040519081526020016101f5565b610211610241366004610fb5565b610520565b61024e610543565b005b604051601281526020016101f5565b61024e61026d366004610fee565b61058b565b61024e610280366004611019565b6105ba565b61024e6102933660046110d9565b610664565b600b5461021190600160a81b900460ff1681565b61024e6102ba3660046110d9565b6106b1565b6102116102cd3660046110d9565b60086020525f908152604090205460ff1681565b61024e6102ef366004611019565b6106fb565b61024e610302366004610fee565b61078a565b6102256103153660046110d9565b6001600160a01b03165f9081526020819052604090205490565b61024e6107b9565b61024e6103453660046110d9565b6107f5565b60055461035d906001600160a01b031681565b6040516001600160a01b0390911681526020016101f5565b6101e861083f565b61024e61038b3660046110d9565b61084e565b61021161039e366004610f8d565b61089a565b600b5461021190600160a01b900460ff1681565b61022560095481565b610225600a5481565b60065461035d906001600160a01b031681565b600b5461035d906001600160a01b031681565b61024e6103fd3660046110d9565b610b54565b6102256104103660046110f9565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b61024e6104483660046110d9565b610ba0565b61024e610bed565b6102116104633660046110d9565b60076020525f908152604090205460ff1681565b6060600380546104869061112a565b80601f01602080910402602001604051908101604052809291908181526020018280546104b29061112a565b80156104fd5780601f106104d4576101008083540402835291602001916104fd565b820191905f5260205f20905b8154815290600101906020018083116104e057829003601f168201915b5050505050905090565b5f33610514818585610c38565b60019150505b92915050565b5f3361052d858285610c4a565b610538858585610cc5565b506001949350505050565b6005546001600160a01b031633146105765760405162461bcd60e51b815260040161056d90611162565b60405180910390fd5b600b805460ff60a81b1916600160a81b179055565b6005546001600160a01b031633146105b55760405162461bcd60e51b815260040161056d90611162565b600a55565b6005546001600160a01b031633146105e45760405162461bcd60e51b815260040161056d90611162565b5f5b8151811015610660575f82828151811061060257610602611192565b602002602001015190505f61062b826001600160a01b03165f9081526020819052604090205490565b9050801561064b5760065461064b9083906001600160a01b031683610cc5565b50508080610658906111ba565b9150506105e6565b5050565b6005546001600160a01b0316331461068e5760405162461bcd60e51b815260040161056d90611162565b6001600160a01b03165f908152600760205260409020805460ff19166001179055565b6005546001600160a01b031633146106db5760405162461bcd60e51b815260040161056d90611162565b6001600160a01b03165f908152600760205260409020805460ff19169055565b6005546001600160a01b031633146107255760405162461bcd60e51b815260040161056d90611162565b5f5b815181101561066057600160075f84848151811061074757610747611192565b6020908102919091018101516001600160a01b031682528101919091526040015f20805460ff191691151591909117905580610782816111ba565b915050610727565b6005546001600160a01b031633146107b45760405162461bcd60e51b815260040161056d90611162565b600955565b6005546001600160a01b031633146107e35760405162461bcd60e51b815260040161056d90611162565b600580546001600160a01b0319169055565b6005546001600160a01b0316331461081f5760405162461bcd60e51b815260040161056d90611162565b6001600160a01b03165f908152600860205260409020805460ff19169055565b6060600480546104869061112a565b6005546001600160a01b031633146108785760405162461bcd60e51b815260040161056d90611162565b600680546001600160a01b0319166001600160a01b0392909216919091179055565b600b545f90600160a01b900460ff161561091257333214806108c65750600b546001600160a01b031633145b6109125760405162461bcd60e51b815260206004820152601e60248201527f536d61727420636f6e7472616374732061726520726573747269637465640000604482015260640161056d565b600b54600160a81b900460ff168061093457506005546001600160a01b031633145b6109795760405162461bcd60e51b8152602060048201526016602482015275151c98591a5b99c81a5cc81b9bdd08195b98589b195960521b604482015260640161056d565b335f9081526007602052604090205460ff161580156109b057506001600160a01b0383165f9081526007602052604090205460ff16155b6109f55760405162461bcd60e51b81526020600482015260166024820152751059191c995cdcc81a5cc8189b1858dadb1a5cdd195960521b604482015260640161056d565b600a5482610a17856001600160a01b03165f9081526020819052604090205490565b610a2191906111d2565b111580610a4557506001600160a01b0383165f9081526008602052604090205460ff165b610aa05760405162461bcd60e51b815260206004820152602660248201527f526563697069656e7420776f756c642065786365656420746865207768616c65604482015265081b1a5b5a5d60d21b606482015260840161056d565b600b545f906001600160a01b0316331480610ac85750600b546001600160a01b038581169116145b8015610ae35750335f9081526008602052604090205460ff16155b8015610b0757506001600160a01b0384165f9081526008602052604090205460ff16155b15610b4157606460095484610b1c91906111e5565b610b2691906111fc565b600654909150610b3f906001600160a01b031682610d22565b505b61053884610b4f838661121b565b610d22565b6005546001600160a01b03163314610b7e5760405162461bcd60e51b815260040161056d90611162565b600b80546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b03163314610bca5760405162461bcd60e51b815260040161056d90611162565b6001600160a01b03165f908152600860205260409020805460ff19166001179055565b6005546001600160a01b03163314610c175760405162461bcd60e51b815260040161056d90611162565b600b805460ff60a01b198116600160a01b9182900460ff1615909102179055565b610c458383836001610d2f565b505050565b6001600160a01b038381165f908152600160209081526040808320938616835292905220545f198114610cbf5781811015610cb157604051637dc7a0d960e11b81526001600160a01b0384166004820152602481018290526044810183905260640161056d565b610cbf84848484035f610d2f565b50505050565b6001600160a01b038316610cee57604051634b637e8f60e11b81525f600482015260240161056d565b6001600160a01b038216610d175760405163ec442f0560e01b81525f600482015260240161056d565b610c45838383610e01565b5f33610514818585610cc5565b6001600160a01b038416610d585760405163e602df0560e01b81525f600482015260240161056d565b6001600160a01b038316610d8157604051634a1406b160e11b81525f600482015260240161056d565b6001600160a01b038085165f9081526001602090815260408083209387168352929052208290558015610cbf57826001600160a01b0316846001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051610df391815260200190565b60405180910390a350505050565b6001600160a01b038316610e2b578060025f828254610e2091906111d2565b90915550610e9b9050565b6001600160a01b0383165f9081526020819052604090205481811015610e7d5760405163391434e360e21b81526001600160a01b0385166004820152602481018290526044810183905260640161056d565b6001600160a01b0384165f9081526020819052604090209082900390555b6001600160a01b038216610eb757600280548290039055610ed5565b6001600160a01b0382165f9081526020819052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610f1a91815260200190565b60405180910390a3505050565b5f6020808352835180828501525f5b81811015610f5257858101830151858201604001528201610f36565b505f604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b0381168114610f88575f80fd5b919050565b5f8060408385031215610f9e575f80fd5b610fa783610f72565b946020939093013593505050565b5f805f60608486031215610fc7575f80fd5b610fd084610f72565b9250610fde60208501610f72565b9150604084013590509250925092565b5f60208284031215610ffe575f80fd5b5035919050565b634e487b7160e01b5f52604160045260245ffd5b5f602080838503121561102a575f80fd5b823567ffffffffffffffff80821115611041575f80fd5b818501915085601f830112611054575f80fd5b81358181111561106657611066611005565b8060051b604051601f19603f8301168101818110858211171561108b5761108b611005565b6040529182528482019250838101850191888311156110a8575f80fd5b938501935b828510156110cd576110be85610f72565b845293850193928501926110ad565b98975050505050505050565b5f602082840312156110e9575f80fd5b6110f282610f72565b9392505050565b5f806040838503121561110a575f80fd5b61111383610f72565b915061112160208401610f72565b90509250929050565b600181811c9082168061113e57607f821691505b60208210810361115c57634e487b7160e01b5f52602260045260245ffd5b50919050565b6020808252601690820152752737ba103a34329031b7b73a3930b1ba1037bbb732b960511b604082015260600190565b634e487b7160e01b5f52603260045260245ffd5b634e487b7160e01b5f52601160045260245ffd5b5f600182016111cb576111cb6111a6565b5060010190565b8082018082111561051a5761051a6111a6565b808202811582820484141761051a5761051a6111a6565b5f8261121657634e487b7160e01b5f52601260045260245ffd5b500490565b8181038181111561051a5761051a6111a656fea2646970667358221220e0a90698f8ebc26decc0e60fff0a11fbe0c32933be1e24ed0367225b1de798fd64736f6c63430008140033
Deployed Bytecode
0x608060405234801561000f575f80fd5b50600436106101dc575f3560e01c8063715018a611610109578063b30a39221161009e578063dd62ed3e1161006e578063dd62ed3e14610402578063e43252d71461043a578063e9b8a9c41461044d578063f9f92be414610455575f80fd5b8063b30a3922146103c0578063b7bda68f146103c9578063c816841b146103dc578063d5aed6bf146103ef575f80fd5b8063a1883d26116100d9578063a1883d261461037d578063a9059cbb14610390578063aa45bd87146103a3578063ae7b6d16146103b7575f80fd5b8063715018a61461032f5780638ab1d681146103375780638da5cb5b1461034a57806395d89b4114610375575f80fd5b80633e44e03a1161017f5780636332a99b1161014f5780636332a99b146102bf578063679d665f146102e1578063699abb3c146102f457806370a0823114610307575f80fd5b80633e44e03a1461027257806344337ea1146102855780634ada218b14610298578063537df3b6146102ac575f80fd5b806323b872dd116101ba57806323b872dd14610233578063293230b814610246578063313ce56714610250578063350b93791461025f575f80fd5b806306fdde03146101e0578063095ea7b3146101fe57806318160ddd14610221575b5f80fd5b6101e8610477565b6040516101f59190610f27565b60405180910390f35b61021161020c366004610f8d565b610507565b60405190151581526020016101f5565b6002545b6040519081526020016101f5565b610211610241366004610fb5565b610520565b61024e610543565b005b604051601281526020016101f5565b61024e61026d366004610fee565b61058b565b61024e610280366004611019565b6105ba565b61024e6102933660046110d9565b610664565b600b5461021190600160a81b900460ff1681565b61024e6102ba3660046110d9565b6106b1565b6102116102cd3660046110d9565b60086020525f908152604090205460ff1681565b61024e6102ef366004611019565b6106fb565b61024e610302366004610fee565b61078a565b6102256103153660046110d9565b6001600160a01b03165f9081526020819052604090205490565b61024e6107b9565b61024e6103453660046110d9565b6107f5565b60055461035d906001600160a01b031681565b6040516001600160a01b0390911681526020016101f5565b6101e861083f565b61024e61038b3660046110d9565b61084e565b61021161039e366004610f8d565b61089a565b600b5461021190600160a01b900460ff1681565b61022560095481565b610225600a5481565b60065461035d906001600160a01b031681565b600b5461035d906001600160a01b031681565b61024e6103fd3660046110d9565b610b54565b6102256104103660046110f9565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b61024e6104483660046110d9565b610ba0565b61024e610bed565b6102116104633660046110d9565b60076020525f908152604090205460ff1681565b6060600380546104869061112a565b80601f01602080910402602001604051908101604052809291908181526020018280546104b29061112a565b80156104fd5780601f106104d4576101008083540402835291602001916104fd565b820191905f5260205f20905b8154815290600101906020018083116104e057829003601f168201915b5050505050905090565b5f33610514818585610c38565b60019150505b92915050565b5f3361052d858285610c4a565b610538858585610cc5565b506001949350505050565b6005546001600160a01b031633146105765760405162461bcd60e51b815260040161056d90611162565b60405180910390fd5b600b805460ff60a81b1916600160a81b179055565b6005546001600160a01b031633146105b55760405162461bcd60e51b815260040161056d90611162565b600a55565b6005546001600160a01b031633146105e45760405162461bcd60e51b815260040161056d90611162565b5f5b8151811015610660575f82828151811061060257610602611192565b602002602001015190505f61062b826001600160a01b03165f9081526020819052604090205490565b9050801561064b5760065461064b9083906001600160a01b031683610cc5565b50508080610658906111ba565b9150506105e6565b5050565b6005546001600160a01b0316331461068e5760405162461bcd60e51b815260040161056d90611162565b6001600160a01b03165f908152600760205260409020805460ff19166001179055565b6005546001600160a01b031633146106db5760405162461bcd60e51b815260040161056d90611162565b6001600160a01b03165f908152600760205260409020805460ff19169055565b6005546001600160a01b031633146107255760405162461bcd60e51b815260040161056d90611162565b5f5b815181101561066057600160075f84848151811061074757610747611192565b6020908102919091018101516001600160a01b031682528101919091526040015f20805460ff191691151591909117905580610782816111ba565b915050610727565b6005546001600160a01b031633146107b45760405162461bcd60e51b815260040161056d90611162565b600955565b6005546001600160a01b031633146107e35760405162461bcd60e51b815260040161056d90611162565b600580546001600160a01b0319169055565b6005546001600160a01b0316331461081f5760405162461bcd60e51b815260040161056d90611162565b6001600160a01b03165f908152600860205260409020805460ff19169055565b6060600480546104869061112a565b6005546001600160a01b031633146108785760405162461bcd60e51b815260040161056d90611162565b600680546001600160a01b0319166001600160a01b0392909216919091179055565b600b545f90600160a01b900460ff161561091257333214806108c65750600b546001600160a01b031633145b6109125760405162461bcd60e51b815260206004820152601e60248201527f536d61727420636f6e7472616374732061726520726573747269637465640000604482015260640161056d565b600b54600160a81b900460ff168061093457506005546001600160a01b031633145b6109795760405162461bcd60e51b8152602060048201526016602482015275151c98591a5b99c81a5cc81b9bdd08195b98589b195960521b604482015260640161056d565b335f9081526007602052604090205460ff161580156109b057506001600160a01b0383165f9081526007602052604090205460ff16155b6109f55760405162461bcd60e51b81526020600482015260166024820152751059191c995cdcc81a5cc8189b1858dadb1a5cdd195960521b604482015260640161056d565b600a5482610a17856001600160a01b03165f9081526020819052604090205490565b610a2191906111d2565b111580610a4557506001600160a01b0383165f9081526008602052604090205460ff165b610aa05760405162461bcd60e51b815260206004820152602660248201527f526563697069656e7420776f756c642065786365656420746865207768616c65604482015265081b1a5b5a5d60d21b606482015260840161056d565b600b545f906001600160a01b0316331480610ac85750600b546001600160a01b038581169116145b8015610ae35750335f9081526008602052604090205460ff16155b8015610b0757506001600160a01b0384165f9081526008602052604090205460ff16155b15610b4157606460095484610b1c91906111e5565b610b2691906111fc565b600654909150610b3f906001600160a01b031682610d22565b505b61053884610b4f838661121b565b610d22565b6005546001600160a01b03163314610b7e5760405162461bcd60e51b815260040161056d90611162565b600b80546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b03163314610bca5760405162461bcd60e51b815260040161056d90611162565b6001600160a01b03165f908152600860205260409020805460ff19166001179055565b6005546001600160a01b03163314610c175760405162461bcd60e51b815260040161056d90611162565b600b805460ff60a01b198116600160a01b9182900460ff1615909102179055565b610c458383836001610d2f565b505050565b6001600160a01b038381165f908152600160209081526040808320938616835292905220545f198114610cbf5781811015610cb157604051637dc7a0d960e11b81526001600160a01b0384166004820152602481018290526044810183905260640161056d565b610cbf84848484035f610d2f565b50505050565b6001600160a01b038316610cee57604051634b637e8f60e11b81525f600482015260240161056d565b6001600160a01b038216610d175760405163ec442f0560e01b81525f600482015260240161056d565b610c45838383610e01565b5f33610514818585610cc5565b6001600160a01b038416610d585760405163e602df0560e01b81525f600482015260240161056d565b6001600160a01b038316610d8157604051634a1406b160e11b81525f600482015260240161056d565b6001600160a01b038085165f9081526001602090815260408083209387168352929052208290558015610cbf57826001600160a01b0316846001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051610df391815260200190565b60405180910390a350505050565b6001600160a01b038316610e2b578060025f828254610e2091906111d2565b90915550610e9b9050565b6001600160a01b0383165f9081526020819052604090205481811015610e7d5760405163391434e360e21b81526001600160a01b0385166004820152602481018290526044810183905260640161056d565b6001600160a01b0384165f9081526020819052604090209082900390555b6001600160a01b038216610eb757600280548290039055610ed5565b6001600160a01b0382165f9081526020819052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610f1a91815260200190565b60405180910390a3505050565b5f6020808352835180828501525f5b81811015610f5257858101830151858201604001528201610f36565b505f604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b0381168114610f88575f80fd5b919050565b5f8060408385031215610f9e575f80fd5b610fa783610f72565b946020939093013593505050565b5f805f60608486031215610fc7575f80fd5b610fd084610f72565b9250610fde60208501610f72565b9150604084013590509250925092565b5f60208284031215610ffe575f80fd5b5035919050565b634e487b7160e01b5f52604160045260245ffd5b5f602080838503121561102a575f80fd5b823567ffffffffffffffff80821115611041575f80fd5b818501915085601f830112611054575f80fd5b81358181111561106657611066611005565b8060051b604051601f19603f8301168101818110858211171561108b5761108b611005565b6040529182528482019250838101850191888311156110a8575f80fd5b938501935b828510156110cd576110be85610f72565b845293850193928501926110ad565b98975050505050505050565b5f602082840312156110e9575f80fd5b6110f282610f72565b9392505050565b5f806040838503121561110a575f80fd5b61111383610f72565b915061112160208401610f72565b90509250929050565b600181811c9082168061113e57607f821691505b60208210810361115c57634e487b7160e01b5f52602260045260245ffd5b50919050565b6020808252601690820152752737ba103a34329031b7b73a3930b1ba1037bbb732b960511b604082015260600190565b634e487b7160e01b5f52603260045260245ffd5b634e487b7160e01b5f52601160045260245ffd5b5f600182016111cb576111cb6111a6565b5060010190565b8082018082111561051a5761051a6111a6565b808202811582820484141761051a5761051a6111a6565b5f8261121657634e487b7160e01b5f52601260045260245ffd5b500490565b8181038181111561051a5761051a6111a656fea2646970667358221220e0a90698f8ebc26decc0e60fff0a11fbe0c32933be1e24ed0367225b1de798fd64736f6c63430008140033
Deployed Bytecode Sourcemap
27143:3846:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15475:91;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17768:190;;;;;;:::i;:::-;;:::i;:::-;;;1169:14:1;;1162:22;1144:41;;1132:2;1117:18;17768:190:0;1004:187:1;16577:99:0;16656:12;;16577:99;;;1342:25:1;;;1330:2;1315:18;16577:99:0;1196:177:1;18536:249:0;;;;;;:::i;:::-;;:::i;28487:83::-;;;:::i;:::-;;16428:84;;;16502:2;1853:36:1;;1841:2;1826:18;16428:84:0;1711:184:1;29375:96:0;;;;;;:::i;:::-;;:::i;29930:334::-;;;;;;:::i;:::-;;:::i;28889:106::-;;;;;;:::i;:::-;;:::i;27669:34::-;;;;;-1:-1:-1;;;27669:34:0;;;;;;29003:112;;;;;;:::i;:::-;;:::i;27323:50::-;;;;;;:::i;:::-;;;;;;;;;;;;;;;;29599:201;;;;;;:::i;:::-;;:::i;29479:112::-;;;;;;:::i;:::-;;:::i;16739:118::-;;;;;;:::i;:::-;-1:-1:-1;;;;;16831:18:0;16804:7;16831:18;;;;;;;;;;;;16739:118;28578:85;;;:::i;29246:121::-;;;;;;:::i;:::-;;:::i;27180:20::-;;;;;-1:-1:-1;;;;;27180:20:0;;;;;;-1:-1:-1;;;;;3698:32:1;;;3680:51;;3668:2;3653:18;27180:20:0;3534:203:1;15685:95:0;;;:::i;28671:106::-;;;;;;:::i;:::-;;:::i;30272:714::-;;;;;;:::i;:::-;;:::i;27582:29::-;;;;;-1:-1:-1;;;27582:29:0;;;;;;27380:28;;;;;;27415:25;;;;;;27207;;;;;-1:-1:-1;;;;;27207:25:0;;;27503:26;;;;;-1:-1:-1;;;;;27503:26:0;;;28785:96;;;;;;:::i;:::-;;:::i;17307:142::-;;;;;;:::i;:::-;-1:-1:-1;;;;;17414:18:0;;;17387:7;17414:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;17307:142;29123:115;;;;;;:::i;:::-;;:::i;29808:114::-;;;:::i;27275:41::-;;;;;;:::i;:::-;;;;;;;;;;;;;;;;15475:91;15520:13;15553:5;15546:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15475:91;:::o;17768:190::-;17841:4;9790:10;17897:31;9790:10;17913:7;17922:5;17897:8;:31::i;:::-;17946:4;17939:11;;;17768:190;;;;;:::o;18536:249::-;18623:4;9790:10;18681:37;18697:4;9790:10;18712:5;18681:15;:37::i;:::-;18729:26;18739:4;18745:2;18749:5;18729:9;:26::i;:::-;-1:-1:-1;18773:4:0;;18536:249;-1:-1:-1;;;;18536:249:0:o;28487:83::-;28071:5;;-1:-1:-1;;;;;28071:5:0;28057:10;:19;28049:54;;;;-1:-1:-1;;;28049:54:0;;;;;;;:::i;:::-;;;;;;;;;28541:14:::1;:21:::0;;-1:-1:-1;;;;28541:21:0::1;-1:-1:-1::0;;;28541:21:0::1;::::0;;28487:83::o;29375:96::-;28071:5;;-1:-1:-1;;;;;28071:5:0;28057:10;:19;28049:54;;;;-1:-1:-1;;;28049:54:0;;;;;;;:::i;:::-;29444:10:::1;:19:::0;29375:96::o;29930:334::-;28071:5;;-1:-1:-1;;;;;28071:5:0;28057:10;:19;28049:54;;;;-1:-1:-1;;;28049:54:0;;;;;;;:::i;:::-;30007:6:::1;30002:255;30023:8;:15;30019:1;:19;30002:255;;;30060:15;30078:8;30087:1;30078:11;;;;;;;;:::i;:::-;;;;;;;30060:29;;30104:15;30122:18;30132:7;-1:-1:-1::0;;;;;16831:18:0;16804:7;16831:18;;;;;;;;;;;;16739:118;30122:18:::1;30104:36:::0;-1:-1:-1;30159:11:0;;30155:91:::1;;30210:10;::::0;30191:39:::1;::::0;30201:7;;-1:-1:-1;;;;;30210:10:0::1;30222:7:::0;30191:9:::1;:39::i;:::-;30045:212;;30040:3;;;;;:::i;:::-;;;;30002:255;;;;29930:334:::0;:::o;28889:106::-;28071:5;;-1:-1:-1;;;;;28071:5:0;28057:10;:19;28049:54;;;;-1:-1:-1;;;28049:54:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;28961:19:0::1;;::::0;;;:9:::1;:19;::::0;;;;:26;;-1:-1:-1;;28961:26:0::1;28983:4;28961:26;::::0;;28889:106::o;29003:112::-;28071:5;;-1:-1:-1;;;;;28071:5:0;28057:10;:19;28049:54;;;;-1:-1:-1;;;28049:54:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;29080:19:0::1;29102:5;29080:19:::0;;;:9:::1;:19;::::0;;;;:27;;-1:-1:-1;;29080:27:0::1;::::0;;29003:112::o;29599:201::-;28071:5;;-1:-1:-1;;;;;28071:5:0;28057:10;:19;28049:54;;;;-1:-1:-1;;;28049:54:0;;;;;;;:::i;:::-;29692:9:::1;29687:106;29711:10;:17;29707:1;:21;29687:106;;;29777:4;29750:9;:24;29760:10;29771:1;29760:13;;;;;;;;:::i;:::-;;::::0;;::::1;::::0;;;;;;;-1:-1:-1;;;;;29750:24:0::1;::::0;;;::::1;::::0;;;;;;-1:-1:-1;29750:24:0;:31;;-1:-1:-1;;29750:31:0::1;::::0;::::1;;::::0;;;::::1;::::0;;29730:3;::::1;::::0;::::1;:::i;:::-;;;;29687:106;;29479:112:::0;28071:5;;-1:-1:-1;;;;;28071:5:0;28057:10;:19;28049:54;;;;-1:-1:-1;;;28049:54:0;;;;;;;:::i;:::-;29556:13:::1;:27:::0;29479:112::o;28578:85::-;28071:5;;-1:-1:-1;;;;;28071:5:0;28057:10;:19;28049:54;;;;-1:-1:-1;;;28049:54:0;;;;;;;:::i;:::-;28637:5:::1;:18:::0;;-1:-1:-1;;;;;;28637:18:0::1;::::0;;28578:85::o;29246:121::-;28071:5;;-1:-1:-1;;;;;28071:5:0;28057:10;:19;28049:54;;;;-1:-1:-1;;;28049:54:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;29323:28:0::1;29354:5;29323:28:::0;;;:18:::1;:28;::::0;;;;:36;;-1:-1:-1;;29323:36:0::1;::::0;;29246:121::o;15685:95::-;15732:13;15765:7;15758:14;;;;;:::i;28671:106::-;28071:5;;-1:-1:-1;;;;;28071:5:0;28057:10;:19;28049:54;;;;-1:-1:-1;;;28049:54:0;;;;;;;:::i;:::-;28745:10:::1;:24:::0;;-1:-1:-1;;;;;;28745:24:0::1;-1:-1:-1::0;;;;;28745:24:0;;;::::1;::::0;;;::::1;::::0;;28671:106::o;30272:714::-;28319:17;;30390:4;;-1:-1:-1;;;28319:17:0;;;;28315:145;;;28361:10;28375:9;28361:23;;:52;;-1:-1:-1;28402:11:0;;-1:-1:-1;;;;;28402:11:0;28388:10;:25;28361:52;28353:95;;;;-1:-1:-1;;;28353:95:0;;5349:2:1;28353:95:0;;;5331:21:1;5388:2;5368:18;;;5361:30;5427:32;5407:18;;;5400:60;5477:18;;28353:95:0;5147:354:1;28353:95:0;28180:14:::1;::::0;-1:-1:-1;;;28180:14:0;::::1;;;::::0;:37:::1;;-1:-1:-1::0;28212:5:0::1;::::0;-1:-1:-1;;;;;28212:5:0::1;28198:10;:19;28180:37;28172:72;;;::::0;-1:-1:-1;;;28172:72:0;;5708:2:1;28172:72:0::1;::::0;::::1;5690:21:1::0;5747:2;5727:18;;;5720:30;-1:-1:-1;;;5766:18:1;;;5759:52;5828:18;;28172:72:0::1;5506:346:1::0;28172:72:0::1;30426:10:::2;30416:21;::::0;;;:9:::2;:21;::::0;;;;;::::2;;30415:22;:47:::0;::::2;;;-1:-1:-1::0;;;;;;30442:20:0;::::2;;::::0;;;:9:::2;:20;::::0;;;;;::::2;;30441:21;30415:47;30407:82;;;::::0;-1:-1:-1;;;30407:82:0;;6059:2:1;30407:82:0::2;::::0;::::2;6041:21:1::0;6098:2;6078:18;;;6071:30;-1:-1:-1;;;6117:18:1;;;6110:52;6179:18;;30407:82:0::2;5857:346:1::0;30407:82:0::2;30541:10;;30531:6;30508:20;30518:9;-1:-1:-1::0;;;;;16831:18:0;16804:7;16831:18;;;;;;;;;;;;16739:118;30508:20:::2;:29;;;;:::i;:::-;:43;;:76;;;-1:-1:-1::0;;;;;;30555:29:0;::::2;;::::0;;;:18:::2;:29;::::0;;;;;::::2;;30508:76;30500:127;;;::::0;-1:-1:-1;;;30500:127:0;;6540:2:1;30500:127:0::2;::::0;::::2;6522:21:1::0;6579:2;6559:18;;;6552:30;6618:34;6598:18;;;6591:62;-1:-1:-1;;;6669:18:1;;;6662:36;6715:19;;30500:127:0::2;6338:402:1::0;30500:127:0::2;30685:11;::::0;30640::::2;::::0;-1:-1:-1;;;;;30685:11:0::2;30671:10;:25;::::0;:53:::2;;-1:-1:-1::0;30713:11:0::2;::::0;-1:-1:-1;;;;;30700:24:0;;::::2;30713:11:::0;::::2;30700:24;30671:53;30670:90;;;;-1:-1:-1::0;30749:10:0::2;30730:30;::::0;;;:18:::2;:30;::::0;;;;;::::2;;30729:31;30670:90;:124;;;;-1:-1:-1::0;;;;;;30765:29:0;::::2;;::::0;;;:18:::2;:29;::::0;;;;;::::2;;30764:30;30670:124;30666:239;;;30844:3;30827:13;;30818:6;:22;;;;:::i;:::-;30817:30;;;;:::i;:::-;30877:10;::::0;30811:36;;-1:-1:-1;30862:31:0::2;::::0;-1:-1:-1;;;;;30877:10:0::2;30811:36:::0;30862:14:::2;:31::i;:::-;;30666:239;30917:39;30932:9:::0;30943:12:::2;30952:3:::0;30943:6;:12:::2;:::i;:::-;30917:14;:39::i;28785:96::-:0;28071:5;;-1:-1:-1;;;;;28071:5:0;28057:10;:19;28049:54;;;;-1:-1:-1;;;28049:54:0;;;;;;;:::i;:::-;28854:11:::1;:19:::0;;-1:-1:-1;;;;;;28854:19:0::1;-1:-1:-1::0;;;;;28854:19:0;;;::::1;::::0;;;::::1;::::0;;28785:96::o;29123:115::-;28071:5;;-1:-1:-1;;;;;28071:5:0;28057:10;:19;28049:54;;;;-1:-1:-1;;;28049:54:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;29195:28:0::1;;::::0;;;:18:::1;:28;::::0;;;;:35;;-1:-1:-1;;29195:35:0::1;29226:4;29195:35;::::0;;29123:115::o;29808:114::-;28071:5;;-1:-1:-1;;;;;28071:5:0;28057:10;:19;28049:54;;;;-1:-1:-1;;;28049:54:0;;;;;;;:::i;:::-;29897:17:::1;::::0;;-1:-1:-1;;;;29876:38:0;::::1;-1:-1:-1::0;;;29897:17:0;;;::::1;;;29896:18;29876:38:::0;;::::1;;::::0;;29808:114::o;22595:130::-;22680:37;22689:5;22696:7;22705:5;22712:4;22680:8;:37::i;:::-;22595:130;;;:::o;24311:487::-;-1:-1:-1;;;;;17414:18:0;;;24411:24;17414:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;-1:-1:-1;;24478:37:0;;24474:317;;24555:5;24536:16;:24;24532:132;;;24588:60;;-1:-1:-1;;;24588:60:0;;-1:-1:-1;;;;;7493:32:1;;24588:60:0;;;7475:51:1;7542:18;;;7535:34;;;7585:18;;;7578:34;;;7448:18;;24588:60:0;7273:345:1;24532:132:0;24707:57;24716:5;24723:7;24751:5;24732:16;:24;24758:5;24707:8;:57::i;:::-;24400:398;24311:487;;;:::o;19170:308::-;-1:-1:-1;;;;;19254:18:0;;19250:88;;19296:30;;-1:-1:-1;;;19296:30:0;;19323:1;19296:30;;;3680:51:1;3653:18;;19296:30:0;3534:203:1;19250:88:0;-1:-1:-1;;;;;19352:16:0;;19348:88;;19392:32;;-1:-1:-1;;;19392:32:0;;19421:1;19392:32;;;3680:51:1;3653:18;;19392:32:0;3534:203:1;19348:88:0;19446:24;19454:4;19460:2;19464:5;19446:7;:24::i;17062:182::-;17131:4;9790:10;17187:27;9790:10;17204:2;17208:5;17187:9;:27::i;23576:443::-;-1:-1:-1;;;;;23689:19:0;;23685:91;;23732:32;;-1:-1:-1;;;23732:32:0;;23761:1;23732:32;;;3680:51:1;3653:18;;23732:32:0;3534:203:1;23685:91:0;-1:-1:-1;;;;;23790:21:0;;23786:92;;23835:31;;-1:-1:-1;;;23835:31:0;;23863:1;23835:31;;;3680:51:1;3653:18;;23835:31:0;3534:203:1;23786:92:0;-1:-1:-1;;;;;23888:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;:35;;;23934:78;;;;23985:7;-1:-1:-1;;;;;23969:31:0;23978:5;-1:-1:-1;;;;;23969:31:0;;23994:5;23969:31;;;;1342:25:1;;1330:2;1315:18;;1196:177;23969:31:0;;;;;;;;23576:443;;;;:::o;19802:1135::-;-1:-1:-1;;;;;19892:18:0;;19888:552;;20046:5;20030:12;;:21;;;;;;;:::i;:::-;;;;-1:-1:-1;19888:552:0;;-1:-1:-1;19888:552:0;;-1:-1:-1;;;;;20106:15:0;;20084:19;20106:15;;;;;;;;;;;20140:19;;;20136:117;;;20187:50;;-1:-1:-1;;;20187:50:0;;-1:-1:-1;;;;;7493:32:1;;20187:50:0;;;7475:51:1;7542:18;;;7535:34;;;7585:18;;;7578:34;;;7448:18;;20187:50:0;7273:345:1;20136:117:0;-1:-1:-1;;;;;20376:15:0;;:9;:15;;;;;;;;;;20394:19;;;;20376:37;;19888:552;-1:-1:-1;;;;;20456:16:0;;20452:435;;20622:12;:21;;;;;;;20452:435;;;-1:-1:-1;;;;;20838:13:0;;:9;:13;;;;;;;;;;:22;;;;;;20452:435;20919:2;-1:-1:-1;;;;;20904:25:0;20913:4;-1:-1:-1;;;;;20904:25:0;;20923:5;20904:25;;;;1342::1;;1330:2;1315:18;;1196:177;20904:25:0;;;;;;;;19802:1135;;;:::o;14:548:1:-;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;298:3;483:1;478:2;469:6;458:9;454:22;450:31;443:42;553:2;546;542:7;537:2;529:6;525:15;521:29;510:9;506:45;502:54;494:62;;;;14:548;;;;:::o;567:173::-;635:20;;-1:-1:-1;;;;;684:31:1;;674:42;;664:70;;730:1;727;720:12;664:70;567:173;;;:::o;745:254::-;813:6;821;874:2;862:9;853:7;849:23;845:32;842:52;;;890:1;887;880:12;842:52;913:29;932:9;913:29;:::i;:::-;903:39;989:2;974:18;;;;961:32;;-1:-1:-1;;;745:254:1:o;1378:328::-;1455:6;1463;1471;1524:2;1512:9;1503:7;1499:23;1495:32;1492:52;;;1540:1;1537;1530:12;1492:52;1563:29;1582:9;1563:29;:::i;:::-;1553:39;;1611:38;1645:2;1634:9;1630:18;1611:38;:::i;:::-;1601:48;;1696:2;1685:9;1681:18;1668:32;1658:42;;1378:328;;;;;:::o;1900:180::-;1959:6;2012:2;2000:9;1991:7;1987:23;1983:32;1980:52;;;2028:1;2025;2018:12;1980:52;-1:-1:-1;2051:23:1;;1900:180;-1:-1:-1;1900:180:1:o;2085:127::-;2146:10;2141:3;2137:20;2134:1;2127:31;2177:4;2174:1;2167:15;2201:4;2198:1;2191:15;2217:1121;2301:6;2332:2;2375;2363:9;2354:7;2350:23;2346:32;2343:52;;;2391:1;2388;2381:12;2343:52;2431:9;2418:23;2460:18;2501:2;2493:6;2490:14;2487:34;;;2517:1;2514;2507:12;2487:34;2555:6;2544:9;2540:22;2530:32;;2600:7;2593:4;2589:2;2585:13;2581:27;2571:55;;2622:1;2619;2612:12;2571:55;2658:2;2645:16;2680:2;2676;2673:10;2670:36;;;2686:18;;:::i;:::-;2732:2;2729:1;2725:10;2764:2;2758:9;2827:2;2823:7;2818:2;2814;2810:11;2806:25;2798:6;2794:38;2882:6;2870:10;2867:22;2862:2;2850:10;2847:18;2844:46;2841:72;;;2893:18;;:::i;:::-;2929:2;2922:22;2979:18;;;3013:15;;;;-1:-1:-1;3055:11:1;;;3051:20;;;3083:19;;;3080:39;;;3115:1;3112;3105:12;3080:39;3139:11;;;;3159:148;3175:6;3170:3;3167:15;3159:148;;;3241:23;3260:3;3241:23;:::i;:::-;3229:36;;3192:12;;;;3285;;;;3159:148;;;3326:6;2217:1121;-1:-1:-1;;;;;;;;2217:1121:1:o;3343:186::-;3402:6;3455:2;3443:9;3434:7;3430:23;3426:32;3423:52;;;3471:1;3468;3461:12;3423:52;3494:29;3513:9;3494:29;:::i;:::-;3484:39;3343:186;-1:-1:-1;;;3343:186:1:o;3742:260::-;3810:6;3818;3871:2;3859:9;3850:7;3846:23;3842:32;3839:52;;;3887:1;3884;3877:12;3839:52;3910:29;3929:9;3910:29;:::i;:::-;3900:39;;3958:38;3992:2;3981:9;3977:18;3958:38;:::i;:::-;3948:48;;3742:260;;;;;:::o;4007:380::-;4086:1;4082:12;;;;4129;;;4150:61;;4204:4;4196:6;4192:17;4182:27;;4150:61;4257:2;4249:6;4246:14;4226:18;4223:38;4220:161;;4303:10;4298:3;4294:20;4291:1;4284:31;4338:4;4335:1;4328:15;4366:4;4363:1;4356:15;4220:161;;4007:380;;;:::o;4392:346::-;4594:2;4576:21;;;4633:2;4613:18;;;4606:30;-1:-1:-1;;;4667:2:1;4652:18;;4645:52;4729:2;4714:18;;4392:346::o;4743:127::-;4804:10;4799:3;4795:20;4792:1;4785:31;4835:4;4832:1;4825:15;4859:4;4856:1;4849:15;4875:127;4936:10;4931:3;4927:20;4924:1;4917:31;4967:4;4964:1;4957:15;4991:4;4988:1;4981:15;5007:135;5046:3;5067:17;;;5064:43;;5087:18;;:::i;:::-;-1:-1:-1;5134:1:1;5123:13;;5007:135::o;6208:125::-;6273:9;;;6294:10;;;6291:36;;;6307:18;;:::i;6745:168::-;6818:9;;;6849;;6866:15;;;6860:22;;6846:37;6836:71;;6887:18;;:::i;6918:217::-;6958:1;6984;6974:132;;7028:10;7023:3;7019:20;7016:1;7009:31;7063:4;7060:1;7053:15;7091:4;7088:1;7081:15;6974:132;-1:-1:-1;7120:9:1;;6918:217::o;7140:128::-;7207:9;;;7228:11;;;7225:37;;;7242:18;;:::i
Swarm Source
ipfs://e0a90698f8ebc26decc0e60fff0a11fbe0c32933be1e24ed0367225b1de798fd
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 31 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.