ERC-20
Overview
Max Total Supply
10,000,000,000 TRENDING
Holders
27
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
115,406,691.566613240949537775 TRENDINGValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
Trending
Compiler Version
v0.8.19+commit.7dd6d404
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-05-07 */ /* ██╗ ██╗ ████████╗██████╗ ███████╗███╗ ██╗██████╗ ██╗███╗ ██╗ ██████╗ ████████╗╚══██╔══╝██╔══██╗██╔════╝████╗ ██║██╔══██╗██║████╗ ██║██╔════╝ ╚██╔═██╔╝ ██║ ██████╔╝█████╗ ██╔██╗ ██║██║ ██║██║██╔██╗ ██║██║ ███╗ ████████╗ ██║ ██╔══██╗██╔══╝ ██║╚██╗██║██║ ██║██║██║╚██╗██║██║ ██║ ╚██╔═██╔╝ ██║ ██║ ██║███████╗██║ ╚████║██████╔╝██║██║ ╚████║╚██████╔╝ ╚═╝ ╚═╝ ╚═╝ ╚═╝ ╚═╝╚══════╝╚═╝ ╚═══╝╚═════╝ ╚═╝╚═╝ ╚═══╝ ╚═════╝ $Trending is a social experiment conceived by ChatGPT to trend a token purely on the name. With no socials, marketing, team, or launch influencers, it’s only dependent on #trending 10,000,000,000 supply 0 marketing wallet 0 team wallet 0 taxes Liquidity locked Contract revoked Let’s get #trending */ // SPDX-License-Identifier: MIT // File @openzeppelin/contracts/utils/[email protected] // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File @openzeppelin/contracts/access/[email protected] // OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File @openzeppelin/contracts/token/ERC20/[email protected] // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `from` to `to` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 amount ) external returns (bool); } // File @openzeppelin/contracts/token/ERC20/extensions/[email protected] // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.0; /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); } // File @openzeppelin/contracts/token/ERC20/[email protected] // OpenZeppelin Contracts (last updated v4.8.0) (token/ERC20/ERC20.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of ERC20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * The default value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless this function is * overridden; * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `to` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address to, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _transfer(owner, to, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on * `transferFrom`. This is semantically equivalent to an infinite approval. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _approve(owner, spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * NOTE: Does not update the allowance if the current allowance * is the maximum `uint256`. * * Requirements: * * - `from` and `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. * - the caller must have allowance for ``from``'s tokens of at least * `amount`. */ function transferFrom( address from, address to, uint256 amount ) public virtual override returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, amount); _transfer(from, to, amount); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { address owner = _msgSender(); _approve(owner, spender, allowance(owner, spender) + addedValue); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { address owner = _msgSender(); uint256 currentAllowance = allowance(owner, spender); require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(owner, spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `from` to `to`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. */ function _transfer( address from, address to, uint256 amount ) internal virtual { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(from, to, amount); uint256 fromBalance = _balances[from]; require(fromBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[from] = fromBalance - amount; // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by // decrementing then incrementing. _balances[to] += amount; } emit Transfer(from, to, amount); _afterTokenTransfer(from, to, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; unchecked { // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above. _balances[account] += amount; } emit Transfer(address(0), account, amount); _afterTokenTransfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account] = accountBalance - amount; // Overflow not possible: amount <= accountBalance <= totalSupply. _totalSupply -= amount; } emit Transfer(account, address(0), amount); _afterTokenTransfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve( address owner, address spender, uint256 amount ) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Updates `owner` s allowance for `spender` based on spent `amount`. * * Does not update the allowance amount in case of infinite allowance. * Revert if not enough allowance is available. * * Might emit an {Approval} event. */ function _spendAllowance( address owner, address spender, uint256 amount ) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { require(currentAllowance >= amount, "ERC20: insufficient allowance"); unchecked { _approve(owner, spender, currentAllowance - amount); } } } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 amount ) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * has been transferred to `to`. * - when `from` is zero, `amount` tokens have been minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens have been burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 amount ) internal virtual {} } // File contracts/Trending.sol pragma solidity ^0.8.0; /* ██╗ ██╗ ████████╗██████╗ ███████╗███╗ ██╗██████╗ ██╗███╗ ██╗ ██████╗ ████████╗╚══██╔══╝██╔══██╗██╔════╝████╗ ██║██╔══██╗██║████╗ ██║██╔════╝ ╚██╔═██╔╝ ██║ ██████╔╝█████╗ ██╔██╗ ██║██║ ██║██║██╔██╗ ██║██║ ███╗ ████████╗ ██║ ██╔══██╗██╔══╝ ██║╚██╗██║██║ ██║██║██║╚██╗██║██║ ██║ ╚██╔═██╔╝ ██║ ██║ ██║███████╗██║ ╚████║██████╔╝██║██║ ╚████║╚██████╔╝ ╚═╝ ╚═╝ ╚═╝ ╚═╝ ╚═╝╚══════╝╚═╝ ╚═══╝╚═════╝ ╚═╝╚═╝ ╚═══╝ ╚═════╝ $Trending is a social experiment conceived by ChatGPT to trend a token purely on the name. With no socials, marketing, team, or launch influencers, it’s only dependent on #trending 10,000,000,000 supply 0 marketing wallet 0 team wallet 0 taxes Liquidity locked Contract revoked Let’s get #trending */ contract Trending is ERC20, Ownable { uint256 private _totalSupply = 10 * 1e9 * 10**18; bool private antiMEV = true; mapping (address => bool) private isContractExempt; constructor() ERC20("Trending", "TRENDING") { isContractExempt[address(this)] = true; _mint(msg.sender, _totalSupply); } function toggleAntiMEV(bool toggle) external onlyOwner { antiMEV = toggle; } function isContract(address account) private view returns (bool) { uint256 size; assembly { size := extcodesize(account) } return size > 0; } function _beforeTokenTransfer( address from, address to, uint256 amount ) override internal virtual { // Anti MEV if(antiMEV && !isContractExempt[from] && !isContractExempt[to]){ require(!isContract(to) || !isContract(from)); } } function burn(uint256 value) external { _burn(msg.sender, value); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"value","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"toggle","type":"bool"}],"name":"toggleAntiMEV","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040526b204fce5e3e250261100000006006556007805460ff191660011790553480156200002e57600080fd5b50604051806040016040528060088152602001675472656e64696e6760c01b815250604051806040016040528060088152602001675452454e44494e4760c01b815250816003908162000082919062000321565b50600462000091828262000321565b505050620000ae620000a8620000de60201b60201c565b620000e2565b306000908152600860205260409020805460ff19166001179055600654620000d890339062000134565b62000415565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0382166200018f5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b6200019d6000838362000208565b8060026000828254620001b19190620003ed565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b60075460ff1680156200023457506001600160a01b03831660009081526008602052604090205460ff16155b80156200025a57506001600160a01b03821660009081526008602052604090205460ff16155b156200027857813b15806200026e5750823b155b6200027857600080fd5b505050565b634e487b7160e01b600052604160045260246000fd5b600181811c90821680620002a857607f821691505b602082108103620002c957634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200027857600081815260208120601f850160051c81016020861015620002f85750805b601f850160051c820191505b81811015620003195782815560010162000304565b505050505050565b81516001600160401b038111156200033d576200033d6200027d565b62000355816200034e845462000293565b84620002cf565b602080601f8311600181146200038d5760008415620003745750858301515b600019600386901b1c1916600185901b17855562000319565b600085815260208120601f198616915b82811015620003be578886015182559484019460019091019084016200039d565b5085821015620003dd5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b808201808211156200040f57634e487b7160e01b600052601160045260246000fd5b92915050565b610d9480620004256000396000f3fe608060405234801561001057600080fd5b50600436106101005760003560e01c806370a0823111610097578063a457c2d711610066578063a457c2d714610209578063a9059cbb1461021c578063dd62ed3e1461022f578063f2fde38b1461026857600080fd5b806370a08231146101b5578063715018a6146101de5780638da5cb5b146101e657806395d89b411461020157600080fd5b806323b872dd116100d357806323b872dd1461016d578063313ce56714610180578063395093511461018f57806342966c68146101a257600080fd5b806306fdde0314610105578063095ea7b31461012357806309fb56391461014657806318160ddd1461015b575b600080fd5b61010d61027b565b60405161011a9190610ba3565b60405180910390f35b610136610131366004610c0d565b61030d565b604051901515815260200161011a565b610159610154366004610c37565b610327565b005b6002545b60405190815260200161011a565b61013661017b366004610c60565b610342565b6040516012815260200161011a565b61013661019d366004610c0d565b610366565b6101596101b0366004610c9c565b6103a5565b61015f6101c3366004610cb5565b6001600160a01b031660009081526020819052604090205490565b6101596103b2565b6005546040516001600160a01b03909116815260200161011a565b61010d6103c6565b610136610217366004610c0d565b6103d5565b61013661022a366004610c0d565b610484565b61015f61023d366004610cd0565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b610159610276366004610cb5565b610492565b60606003805461028a90610d03565b80601f01602080910402602001604051908101604052809291908181526020018280546102b690610d03565b80156103035780601f106102d857610100808354040283529160200191610303565b820191906000526020600020905b8154815290600101906020018083116102e657829003601f168201915b5050505050905090565b60003361031b81858561051f565b60019150505b92915050565b61032f610678565b6007805460ff1916911515919091179055565b6000336103508582856106d2565b61035b858585610764565b506001949350505050565b3360008181526001602090815260408083206001600160a01b038716845290915281205490919061031b90829086906103a0908790610d3d565b61051f565b6103af338261095c565b50565b6103ba610678565b6103c46000610ace565b565b60606004805461028a90610d03565b3360008181526001602090815260408083206001600160a01b0387168452909152812054909190838110156104775760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760448201527f207a65726f00000000000000000000000000000000000000000000000000000060648201526084015b60405180910390fd5b61035b828686840361051f565b60003361031b818585610764565b61049a610678565b6001600160a01b0381166105165760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f6464726573730000000000000000000000000000000000000000000000000000606482015260840161046e565b6103af81610ace565b6001600160a01b03831661059a5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f7265737300000000000000000000000000000000000000000000000000000000606482015260840161046e565b6001600160a01b0382166106165760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f7373000000000000000000000000000000000000000000000000000000000000606482015260840161046e565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6005546001600160a01b031633146103c45760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161046e565b6001600160a01b03838116600090815260016020908152604080832093861683529290522054600019811461075e57818110156107515760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000604482015260640161046e565b61075e848484840361051f565b50505050565b6001600160a01b0383166107e05760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f6472657373000000000000000000000000000000000000000000000000000000606482015260840161046e565b6001600160a01b03821661085c5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f6573730000000000000000000000000000000000000000000000000000000000606482015260840161046e565b610867838383610b38565b6001600160a01b038316600090815260208190526040902054818110156108f65760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260448201527f616c616e63650000000000000000000000000000000000000000000000000000606482015260840161046e565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a361075e565b6001600160a01b0382166109d85760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360448201527f7300000000000000000000000000000000000000000000000000000000000000606482015260840161046e565b6109e482600083610b38565b6001600160a01b03821660009081526020819052604090205481811015610a735760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60448201527f6365000000000000000000000000000000000000000000000000000000000000606482015260840161046e565b6001600160a01b0383166000818152602081815260408083208686039055600280548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910161066b565b505050565b600580546001600160a01b038381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60075460ff168015610b6357506001600160a01b03831660009081526008602052604090205460ff16155b8015610b8857506001600160a01b03821660009081526008602052604090205460ff16155b15610ac957813b1580610b9a5750823b155b610ac957600080fd5b600060208083528351808285015260005b81811015610bd057858101830151858201604001528201610bb4565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b0381168114610c0857600080fd5b919050565b60008060408385031215610c2057600080fd5b610c2983610bf1565b946020939093013593505050565b600060208284031215610c4957600080fd5b81358015158114610c5957600080fd5b9392505050565b600080600060608486031215610c7557600080fd5b610c7e84610bf1565b9250610c8c60208501610bf1565b9150604084013590509250925092565b600060208284031215610cae57600080fd5b5035919050565b600060208284031215610cc757600080fd5b610c5982610bf1565b60008060408385031215610ce357600080fd5b610cec83610bf1565b9150610cfa60208401610bf1565b90509250929050565b600181811c90821680610d1757607f821691505b602082108103610d3757634e487b7160e01b600052602260045260246000fd5b50919050565b8082018082111561032157634e487b7160e01b600052601160045260246000fdfea2646970667358221220ccbcce25e83993545d481dd8c2be7d8868101a1305b430db25f04fa1fd7903f164736f6c63430008130033
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101005760003560e01c806370a0823111610097578063a457c2d711610066578063a457c2d714610209578063a9059cbb1461021c578063dd62ed3e1461022f578063f2fde38b1461026857600080fd5b806370a08231146101b5578063715018a6146101de5780638da5cb5b146101e657806395d89b411461020157600080fd5b806323b872dd116100d357806323b872dd1461016d578063313ce56714610180578063395093511461018f57806342966c68146101a257600080fd5b806306fdde0314610105578063095ea7b31461012357806309fb56391461014657806318160ddd1461015b575b600080fd5b61010d61027b565b60405161011a9190610ba3565b60405180910390f35b610136610131366004610c0d565b61030d565b604051901515815260200161011a565b610159610154366004610c37565b610327565b005b6002545b60405190815260200161011a565b61013661017b366004610c60565b610342565b6040516012815260200161011a565b61013661019d366004610c0d565b610366565b6101596101b0366004610c9c565b6103a5565b61015f6101c3366004610cb5565b6001600160a01b031660009081526020819052604090205490565b6101596103b2565b6005546040516001600160a01b03909116815260200161011a565b61010d6103c6565b610136610217366004610c0d565b6103d5565b61013661022a366004610c0d565b610484565b61015f61023d366004610cd0565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b610159610276366004610cb5565b610492565b60606003805461028a90610d03565b80601f01602080910402602001604051908101604052809291908181526020018280546102b690610d03565b80156103035780601f106102d857610100808354040283529160200191610303565b820191906000526020600020905b8154815290600101906020018083116102e657829003601f168201915b5050505050905090565b60003361031b81858561051f565b60019150505b92915050565b61032f610678565b6007805460ff1916911515919091179055565b6000336103508582856106d2565b61035b858585610764565b506001949350505050565b3360008181526001602090815260408083206001600160a01b038716845290915281205490919061031b90829086906103a0908790610d3d565b61051f565b6103af338261095c565b50565b6103ba610678565b6103c46000610ace565b565b60606004805461028a90610d03565b3360008181526001602090815260408083206001600160a01b0387168452909152812054909190838110156104775760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760448201527f207a65726f00000000000000000000000000000000000000000000000000000060648201526084015b60405180910390fd5b61035b828686840361051f565b60003361031b818585610764565b61049a610678565b6001600160a01b0381166105165760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f6464726573730000000000000000000000000000000000000000000000000000606482015260840161046e565b6103af81610ace565b6001600160a01b03831661059a5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f7265737300000000000000000000000000000000000000000000000000000000606482015260840161046e565b6001600160a01b0382166106165760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f7373000000000000000000000000000000000000000000000000000000000000606482015260840161046e565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6005546001600160a01b031633146103c45760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161046e565b6001600160a01b03838116600090815260016020908152604080832093861683529290522054600019811461075e57818110156107515760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000604482015260640161046e565b61075e848484840361051f565b50505050565b6001600160a01b0383166107e05760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f6472657373000000000000000000000000000000000000000000000000000000606482015260840161046e565b6001600160a01b03821661085c5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f6573730000000000000000000000000000000000000000000000000000000000606482015260840161046e565b610867838383610b38565b6001600160a01b038316600090815260208190526040902054818110156108f65760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260448201527f616c616e63650000000000000000000000000000000000000000000000000000606482015260840161046e565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a361075e565b6001600160a01b0382166109d85760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360448201527f7300000000000000000000000000000000000000000000000000000000000000606482015260840161046e565b6109e482600083610b38565b6001600160a01b03821660009081526020819052604090205481811015610a735760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60448201527f6365000000000000000000000000000000000000000000000000000000000000606482015260840161046e565b6001600160a01b0383166000818152602081815260408083208686039055600280548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910161066b565b505050565b600580546001600160a01b038381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60075460ff168015610b6357506001600160a01b03831660009081526008602052604090205460ff16155b8015610b8857506001600160a01b03821660009081526008602052604090205460ff16155b15610ac957813b1580610b9a5750823b155b610ac957600080fd5b600060208083528351808285015260005b81811015610bd057858101830151858201604001528201610bb4565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b0381168114610c0857600080fd5b919050565b60008060408385031215610c2057600080fd5b610c2983610bf1565b946020939093013593505050565b600060208284031215610c4957600080fd5b81358015158114610c5957600080fd5b9392505050565b600080600060608486031215610c7557600080fd5b610c7e84610bf1565b9250610c8c60208501610bf1565b9150604084013590509250925092565b600060208284031215610cae57600080fd5b5035919050565b600060208284031215610cc757600080fd5b610c5982610bf1565b60008060408385031215610ce357600080fd5b610cec83610bf1565b9150610cfa60208401610bf1565b90509250929050565b600181811c90821680610d1757607f821691505b602082108103610d3757634e487b7160e01b600052602260045260246000fd5b50919050565b8082018082111561032157634e487b7160e01b600052601160045260246000fdfea2646970667358221220ccbcce25e83993545d481dd8c2be7d8868101a1305b430db25f04fa1fd7903f164736f6c63430008130033
Deployed Bytecode Sourcemap
23753:1071:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10958:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13309:201;;;;;;:::i;:::-;;:::i;:::-;;;1192:14:1;;1185:22;1167:41;;1155:2;1140:18;13309:201:0;1027:187:1;24097:90:0;;;;;;:::i;:::-;;:::i;:::-;;12078:108;12166:12;;12078:108;;;1643:25:1;;;1631:2;1616:18;12078:108:0;1497:177:1;14090:295:0;;;;;;:::i;:::-;;:::i;11920:93::-;;;12003:2;2154:36:1;;2142:2;2127:18;11920:93:0;2012:184:1;14794:238:0;;;;;;:::i;:::-;;:::i;24736:81::-;;;;;;:::i;:::-;;:::i;12249:127::-;;;;;;:::i;:::-;-1:-1:-1;;;;;12350:18:0;12323:7;12350:18;;;;;;;;;;;;12249:127;4363:103;;;:::i;3715:87::-;3788:6;;3715:87;;-1:-1:-1;;;;;3788:6:0;;;2723:74:1;;2711:2;2696:18;3715:87:0;2577:226:1;11177:104:0;;;:::i;15535:436::-;;;;;;:::i;:::-;;:::i;12582:193::-;;;;;;:::i;:::-;;:::i;12838:151::-;;;;;;:::i;:::-;-1:-1:-1;;;;;12954:18:0;;;12927:7;12954:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;12838:151;4621:201;;;;;;:::i;:::-;;:::i;10958:100::-;11012:13;11045:5;11038:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10958:100;:::o;13309:201::-;13392:4;2340:10;13448:32;2340:10;13464:7;13473:6;13448:8;:32::i;:::-;13498:4;13491:11;;;13309:201;;;;;:::o;24097:90::-;3601:13;:11;:13::i;:::-;24163:7:::1;:16:::0;;-1:-1:-1;;24163:16:0::1;::::0;::::1;;::::0;;;::::1;::::0;;24097:90::o;14090:295::-;14221:4;2340:10;14279:38;14295:4;2340:10;14310:6;14279:15;:38::i;:::-;14328:27;14338:4;14344:2;14348:6;14328:9;:27::i;:::-;-1:-1:-1;14373:4:0;;14090:295;-1:-1:-1;;;;14090:295:0:o;14794:238::-;2340:10;14882:4;12954:18;;;:11;:18;;;;;;;;-1:-1:-1;;;;;12954:27:0;;;;;;;;;;14882:4;;2340:10;14938:64;;2340:10;;12954:27;;14963:38;;14991:10;;14963:38;:::i;:::-;14938:8;:64::i;24736:81::-;24785:24;24791:10;24803:5;24785;:24::i;:::-;24736:81;:::o;4363:103::-;3601:13;:11;:13::i;:::-;4428:30:::1;4455:1;4428:18;:30::i;:::-;4363:103::o:0;11177:104::-;11233:13;11266:7;11259:14;;;;;:::i;15535:436::-;2340:10;15628:4;12954:18;;;:11;:18;;;;;;;;-1:-1:-1;;;;;12954:27:0;;;;;;;;;;15628:4;;2340:10;15775:15;15755:16;:35;;15747:85;;;;-1:-1:-1;;;15747:85:0;;4001:2:1;15747:85:0;;;3983:21:1;4040:2;4020:18;;;4013:30;4079:34;4059:18;;;4052:62;4150:7;4130:18;;;4123:35;4175:19;;15747:85:0;;;;;;;;;15868:60;15877:5;15884:7;15912:15;15893:16;:34;15868:8;:60::i;12582:193::-;12661:4;2340:10;12717:28;2340:10;12734:2;12738:6;12717:9;:28::i;4621:201::-;3601:13;:11;:13::i;:::-;-1:-1:-1;;;;;4710:22:0;::::1;4702:73;;;::::0;-1:-1:-1;;;4702:73:0;;4407:2:1;4702:73:0::1;::::0;::::1;4389:21:1::0;4446:2;4426:18;;;4419:30;4485:34;4465:18;;;4458:62;4556:8;4536:18;;;4529:36;4582:19;;4702:73:0::1;4205:402:1::0;4702:73:0::1;4786:28;4805:8;4786:18;:28::i;19562:380::-:0;-1:-1:-1;;;;;19698:19:0;;19690:68;;;;-1:-1:-1;;;19690:68:0;;4814:2:1;19690:68:0;;;4796:21:1;4853:2;4833:18;;;4826:30;4892:34;4872:18;;;4865:62;4963:6;4943:18;;;4936:34;4987:19;;19690:68:0;4612:400:1;19690:68:0;-1:-1:-1;;;;;19777:21:0;;19769:68;;;;-1:-1:-1;;;19769:68:0;;5219:2:1;19769:68:0;;;5201:21:1;5258:2;5238:18;;;5231:30;5297:34;5277:18;;;5270:62;5368:4;5348:18;;;5341:32;5390:19;;19769:68:0;5017:398:1;19769:68:0;-1:-1:-1;;;;;19850:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;19902:32;;1643:25:1;;;19902:32:0;;1616:18:1;19902:32:0;;;;;;;;19562:380;;;:::o;3880:132::-;3788:6;;-1:-1:-1;;;;;3788:6:0;2340:10;3944:23;3936:68;;;;-1:-1:-1;;;3936:68:0;;5622:2:1;3936:68:0;;;5604:21:1;;;5641:18;;;5634:30;5700:34;5680:18;;;5673:62;5752:18;;3936:68:0;5420:356:1;20233:453:0;-1:-1:-1;;;;;12954:18:0;;;20368:24;12954:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;-1:-1:-1;;20435:37:0;;20431:248;;20517:6;20497:16;:26;;20489:68;;;;-1:-1:-1;;;20489:68:0;;5983:2:1;20489:68:0;;;5965:21:1;6022:2;6002:18;;;5995:30;6061:31;6041:18;;;6034:59;6110:18;;20489:68:0;5781:353:1;20489:68:0;20601:51;20610:5;20617:7;20645:6;20626:16;:25;20601:8;:51::i;:::-;20357:329;20233:453;;;:::o;16441:840::-;-1:-1:-1;;;;;16572:18:0;;16564:68;;;;-1:-1:-1;;;16564:68:0;;6341:2:1;16564:68:0;;;6323:21:1;6380:2;6360:18;;;6353:30;6419:34;6399:18;;;6392:62;6490:7;6470:18;;;6463:35;6515:19;;16564:68:0;6139:401:1;16564:68:0;-1:-1:-1;;;;;16651:16:0;;16643:64;;;;-1:-1:-1;;;16643:64:0;;6747:2:1;16643:64:0;;;6729:21:1;6786:2;6766:18;;;6759:30;6825:34;6805:18;;;6798:62;6896:5;6876:18;;;6869:33;6919:19;;16643:64:0;6545:399:1;16643:64:0;16720:38;16741:4;16747:2;16751:6;16720:20;:38::i;:::-;-1:-1:-1;;;;;16793:15:0;;16771:19;16793:15;;;;;;;;;;;16827:21;;;;16819:72;;;;-1:-1:-1;;;16819:72:0;;7151:2:1;16819:72:0;;;7133:21:1;7190:2;7170:18;;;7163:30;7229:34;7209:18;;;7202:62;7300:8;7280:18;;;7273:36;7326:19;;16819:72:0;6949:402:1;16819:72:0;-1:-1:-1;;;;;16927:15:0;;;:9;:15;;;;;;;;;;;16945:20;;;16927:38;;17145:13;;;;;;;;;;:23;;;;;;17197:26;;1643:25:1;;;17145:13:0;;17197:26;;1616:18:1;17197:26:0;;;;;;;17236:37;18449:675;;-1:-1:-1;;;;;18533:21:0;;18525:67;;;;-1:-1:-1;;;18525:67:0;;7558:2:1;18525:67:0;;;7540:21:1;7597:2;7577:18;;;7570:30;7636:34;7616:18;;;7609:62;7707:3;7687:18;;;7680:31;7728:19;;18525:67:0;7356:397:1;18525:67:0;18605:49;18626:7;18643:1;18647:6;18605:20;:49::i;:::-;-1:-1:-1;;;;;18692:18:0;;18667:22;18692:18;;;;;;;;;;;18729:24;;;;18721:71;;;;-1:-1:-1;;;18721:71:0;;7960:2:1;18721:71:0;;;7942:21:1;7999:2;7979:18;;;7972:30;8038:34;8018:18;;;8011:62;8109:4;8089:18;;;8082:32;8131:19;;18721:71:0;7758:398:1;18721:71:0;-1:-1:-1;;;;;18828:18:0;;:9;:18;;;;;;;;;;;18849:23;;;18828:44;;18967:12;:22;;;;;;;19018:37;1643:25:1;;;18828:9:0;;:18;19018:37;;1616:18:1;19018:37:0;1497:177:1;19068:48:0;18514:610;18449:675;;:::o;4982:191::-;5075:6;;;-1:-1:-1;;;;;5092:17:0;;;;;;;;;;;5125:40;;5075:6;;;5092:17;5075:6;;5125:40;;5056:16;;5125:40;5045:128;4982:191;:::o;24408:320::-;24587:7;;;;:34;;;;-1:-1:-1;;;;;;24599:22:0;;;;;;:16;:22;;;;;;;;24598:23;24587:34;:59;;;;-1:-1:-1;;;;;;24626:20:0;;;;;;:16;:20;;;;;;;;24625:21;24587:59;24584:135;;;24326:20;;24384:8;;24670:36;;-1:-1:-1;24326:20:0;;24384:8;24670:36;24662:45;;;;;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:196::-;635:20;;-1:-1:-1;;;;;684:54:1;;674:65;;664:93;;753:1;750;743:12;664:93;567:196;;;:::o;768:254::-;836:6;844;897:2;885:9;876:7;872:23;868:32;865:52;;;913:1;910;903:12;865:52;936:29;955:9;936:29;:::i;:::-;926:39;1012:2;997:18;;;;984:32;;-1:-1:-1;;;768:254:1:o;1219:273::-;1275:6;1328:2;1316:9;1307:7;1303:23;1299:32;1296:52;;;1344:1;1341;1334:12;1296:52;1383:9;1370:23;1436:5;1429:13;1422:21;1415:5;1412:32;1402:60;;1458:1;1455;1448:12;1402:60;1481:5;1219:273;-1:-1:-1;;;1219:273:1:o;1679:328::-;1756:6;1764;1772;1825:2;1813:9;1804:7;1800:23;1796:32;1793:52;;;1841:1;1838;1831:12;1793:52;1864:29;1883:9;1864:29;:::i;:::-;1854:39;;1912:38;1946:2;1935:9;1931:18;1912:38;:::i;:::-;1902:48;;1997:2;1986:9;1982:18;1969:32;1959:42;;1679:328;;;;;:::o;2201:180::-;2260:6;2313:2;2301:9;2292:7;2288:23;2284:32;2281:52;;;2329:1;2326;2319:12;2281:52;-1:-1:-1;2352:23:1;;2201:180;-1:-1:-1;2201:180:1:o;2386:186::-;2445:6;2498:2;2486:9;2477:7;2473:23;2469:32;2466:52;;;2514:1;2511;2504:12;2466:52;2537:29;2556:9;2537:29;:::i;2808:260::-;2876:6;2884;2937:2;2925:9;2916:7;2912:23;2908:32;2905:52;;;2953:1;2950;2943:12;2905:52;2976:29;2995:9;2976:29;:::i;:::-;2966:39;;3024:38;3058:2;3047:9;3043:18;3024:38;:::i;:::-;3014:48;;2808:260;;;;;:::o;3073:437::-;3152:1;3148:12;;;;3195;;;3216:61;;3270:4;3262:6;3258:17;3248:27;;3216:61;3323:2;3315:6;3312:14;3292:18;3289:38;3286:218;;-1:-1:-1;;;3357:1:1;3350:88;3461:4;3458:1;3451:15;3489:4;3486:1;3479:15;3286:218;;3073:437;;;:::o;3515:279::-;3580:9;;;3601:10;;;3598:190;;;-1:-1:-1;;;3641:1:1;3634:88;3745:4;3742:1;3735:15;3773:4;3770:1;3763:15
Swarm Source
ipfs://ccbcce25e83993545d481dd8c2be7d8868101a1305b430db25f04fa1fd7903f1
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.