ERC-20
Overview
Max Total Supply
100,000,000 HUNT
Holders
2
Total Transfers
-
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
HUNT
Compiler Version
v0.8.26+commit.8a97fa7a
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2025-01-10 */ // SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/IERC20.sol) /* Hunt AI empowers traders with real-time automation, helping you act on influencer recommendations and market trends instantly. Never miss out on profit opportunities again! Find out more at https://hunt.ai */ 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/IERC20Metadata.sol // 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/utils/Context.sol // 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/token/ERC20/ERC20.sol // OpenZeppelin Contracts (last updated v4.9.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]. * * 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. * * 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}. * * 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 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 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: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts (last updated v4.9.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. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby disabling any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { 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/security/ReentrancyGuard.sol // OpenZeppelin Contracts (last updated v4.9.0) (security/ReentrancyGuard.sol) pragma solidity ^0.8.0; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and making it call a * `private` function that does the actual work. */ modifier nonReentrant() { _nonReentrantBefore(); _; _nonReentrantAfter(); } function _nonReentrantBefore() private { // On the first call to nonReentrant, _status will be _NOT_ENTERED require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; } function _nonReentrantAfter() private { // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } /** * @dev Returns true if the reentrancy guard is currently set to "entered", which indicates there is a * `nonReentrant` function in the call stack. */ function _reentrancyGuardEntered() internal view returns (bool) { return _status == _ENTERED; } } // File: Hunt/token.sol pragma solidity ^0.8.19; contract HUNT is ERC20, Ownable, ReentrancyGuard { bool public tradingEnabled; mapping(address => bool) public isException; constructor() ERC20("Hunt AI", "HUNT") { _mint(address(msg.sender), 100 * 1e6 * 1e18); tradingEnabled = false; isException[msg.sender] = true; } function setExceptionStatus(address account, bool status) external onlyOwner { require(account != address(0), "Invalid address"); isException[account] = status; } function enableTrading() external onlyOwner { tradingEnabled = true; } function _beforeTokenTransfer( address from, address to, uint256 amount ) internal virtual override { super._beforeTokenTransfer(from, to, amount); require( tradingEnabled || from == address(0) || // minting to == address(0) || // burning isException[from] || // sender is exception isException[to] || // receiver is exception from == owner() || // from owner to == owner(), // to owner "Trading is not enabled" ); } }
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":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isException","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"status","type":"bool"}],"name":"setExceptionStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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
608060405234801561000f575f80fd5b506040518060400160405280600781526020016648756e7420414960c81b815250604051806040016040528060048152602001631215539560e21b815250816003908161005c919061036e565b506004610069828261036e565b50505061008261007d6100c660201b60201c565b6100ca565b600160065561009c336a52b7d2dcc80cd2e400000061011b565b6007805460ff19908116909155335f9081526008602052604090208054909116600117905561044d565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6001600160a01b0382166101765760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064015b60405180910390fd5b6101815f83836101e8565b8060025f8282546101929190610428565b90915550506001600160a01b0382165f81815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b60075460ff168061020057506001600160a01b038316155b8061021257506001600160a01b038216155b8061023457506001600160a01b0383165f9081526008602052604090205460ff165b8061025657506001600160a01b0382165f9081526008602052604090205460ff165b8061026e57506005546001600160a01b038481169116145b8061028657506005546001600160a01b038381169116145b6102d25760405162461bcd60e51b815260206004820152601660248201527f54726164696e67206973206e6f7420656e61626c656400000000000000000000604482015260640161016d565b505050565b634e487b7160e01b5f52604160045260245ffd5b600181811c908216806102ff57607f821691505b60208210810361031d57634e487b7160e01b5f52602260045260245ffd5b50919050565b601f8211156102d257805f5260205f20601f840160051c810160208510156103485750805b601f840160051c820191505b81811015610367575f8155600101610354565b5050505050565b81516001600160401b03811115610387576103876102d7565b61039b8161039584546102eb565b84610323565b6020601f8211600181146103cd575f83156103b65750848201515b5f19600385901b1c1916600184901b178455610367565b5f84815260208120601f198516915b828110156103fc57878501518255602094850194600190920191016103dc565b508482101561041957868401515f19600387901b60f8161c191681555b50505050600190811b01905550565b8082018082111561044757634e487b7160e01b5f52601160045260245ffd5b92915050565b610bfb8061045a5f395ff3fe608060405234801561000f575f80fd5b5060043610610111575f3560e01c80638a8c523c1161009e578063a457c2d71161006e578063a457c2d714610229578063a9059cbb1461023c578063dd62ed3e1461024f578063debfedc814610262578063f2fde38b14610275575f80fd5b80638a8c523c146101dc5780638da5cb5b146101e457806395d89b41146101ff57806398636f3214610207575f80fd5b8063313ce567116100e4578063313ce5671461017b578063395093511461018a5780634ada218b1461019d57806370a08231146101aa578063715018a6146101d2575f80fd5b806306fdde0314610115578063095ea7b31461013357806318160ddd1461015657806323b872dd14610168575b5f80fd5b61011d610288565b60405161012a9190610a32565b60405180910390f35b610146610141366004610a82565b610318565b604051901515815260200161012a565b6002545b60405190815260200161012a565b610146610176366004610aaa565b610331565b6040516012815260200161012a565b610146610198366004610a82565b610354565b6007546101469060ff1681565b61015a6101b8366004610ae4565b6001600160a01b03165f9081526020819052604090205490565b6101da610375565b005b6101da610388565b6005546040516001600160a01b03909116815260200161012a565b61011d61039f565b610146610215366004610ae4565b60086020525f908152604090205460ff1681565b610146610237366004610a82565b6103ae565b61014661024a366004610a82565b61042d565b61015a61025d366004610b04565b61043a565b6101da610270366004610b35565b610464565b6101da610283366004610ae4565b6104de565b60606003805461029790610b6e565b80601f01602080910402602001604051908101604052809291908181526020018280546102c390610b6e565b801561030e5780601f106102e55761010080835404028352916020019161030e565b820191905f5260205f20905b8154815290600101906020018083116102f157829003601f168201915b5050505050905090565b5f33610325818585610557565b60019150505b92915050565b5f3361033e85828561067a565b6103498585856106f2565b506001949350505050565b5f33610325818585610366838361043a565b6103709190610ba6565b610557565b61037d61089f565b6103865f6108f9565b565b61039061089f565b6007805460ff19166001179055565b60606004805461029790610b6e565b5f33816103bb828661043a565b9050838110156104205760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084015b60405180910390fd5b6103498286868403610557565b5f336103258185856106f2565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b61046c61089f565b6001600160a01b0382166104b45760405162461bcd60e51b815260206004820152600f60248201526e496e76616c6964206164647265737360881b6044820152606401610417565b6001600160a01b03919091165f908152600860205260409020805460ff1916911515919091179055565b6104e661089f565b6001600160a01b03811661054b5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610417565b610554816108f9565b50565b6001600160a01b0383166105b95760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610417565b6001600160a01b03821661061a5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610417565b6001600160a01b038381165f8181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b5f610685848461043a565b90505f1981146106ec57818110156106df5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610417565b6106ec8484848403610557565b50505050565b6001600160a01b0383166107565760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610417565b6001600160a01b0382166107b85760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610417565b6107c383838361094a565b6001600160a01b0383165f908152602081905260409020548181101561083a5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610417565b6001600160a01b038481165f81815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a36106ec565b6005546001600160a01b031633146103865760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610417565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b60075460ff168061096257506001600160a01b038316155b8061097457506001600160a01b038216155b8061099657506001600160a01b0383165f9081526008602052604090205460ff165b806109b857506001600160a01b0382165f9081526008602052604090205460ff165b806109d057506005546001600160a01b038481169116145b806109e857506005546001600160a01b038381169116145b610a2d5760405162461bcd60e51b8152602060048201526016602482015275151c98591a5b99c81a5cc81b9bdd08195b98589b195960521b6044820152606401610417565b505050565b602081525f82518060208401528060208501604085015e5f604082850101526040601f19601f83011684010191505092915050565b80356001600160a01b0381168114610a7d575f80fd5b919050565b5f8060408385031215610a93575f80fd5b610a9c83610a67565b946020939093013593505050565b5f805f60608486031215610abc575f80fd5b610ac584610a67565b9250610ad360208501610a67565b929592945050506040919091013590565b5f60208284031215610af4575f80fd5b610afd82610a67565b9392505050565b5f8060408385031215610b15575f80fd5b610b1e83610a67565b9150610b2c60208401610a67565b90509250929050565b5f8060408385031215610b46575f80fd5b610b4f83610a67565b915060208301358015158114610b63575f80fd5b809150509250929050565b600181811c90821680610b8257607f821691505b602082108103610ba057634e487b7160e01b5f52602260045260245ffd5b50919050565b8082018082111561032b57634e487b7160e01b5f52601160045260245ffdfea2646970667358221220ae40059aad91b8384da81bacad9452af6e63a1ff97c17c9a6c5d2b6784a795a364736f6c634300081a0033
Deployed Bytecode
0x608060405234801561000f575f80fd5b5060043610610111575f3560e01c80638a8c523c1161009e578063a457c2d71161006e578063a457c2d714610229578063a9059cbb1461023c578063dd62ed3e1461024f578063debfedc814610262578063f2fde38b14610275575f80fd5b80638a8c523c146101dc5780638da5cb5b146101e457806395d89b41146101ff57806398636f3214610207575f80fd5b8063313ce567116100e4578063313ce5671461017b578063395093511461018a5780634ada218b1461019d57806370a08231146101aa578063715018a6146101d2575f80fd5b806306fdde0314610115578063095ea7b31461013357806318160ddd1461015657806323b872dd14610168575b5f80fd5b61011d610288565b60405161012a9190610a32565b60405180910390f35b610146610141366004610a82565b610318565b604051901515815260200161012a565b6002545b60405190815260200161012a565b610146610176366004610aaa565b610331565b6040516012815260200161012a565b610146610198366004610a82565b610354565b6007546101469060ff1681565b61015a6101b8366004610ae4565b6001600160a01b03165f9081526020819052604090205490565b6101da610375565b005b6101da610388565b6005546040516001600160a01b03909116815260200161012a565b61011d61039f565b610146610215366004610ae4565b60086020525f908152604090205460ff1681565b610146610237366004610a82565b6103ae565b61014661024a366004610a82565b61042d565b61015a61025d366004610b04565b61043a565b6101da610270366004610b35565b610464565b6101da610283366004610ae4565b6104de565b60606003805461029790610b6e565b80601f01602080910402602001604051908101604052809291908181526020018280546102c390610b6e565b801561030e5780601f106102e55761010080835404028352916020019161030e565b820191905f5260205f20905b8154815290600101906020018083116102f157829003601f168201915b5050505050905090565b5f33610325818585610557565b60019150505b92915050565b5f3361033e85828561067a565b6103498585856106f2565b506001949350505050565b5f33610325818585610366838361043a565b6103709190610ba6565b610557565b61037d61089f565b6103865f6108f9565b565b61039061089f565b6007805460ff19166001179055565b60606004805461029790610b6e565b5f33816103bb828661043a565b9050838110156104205760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084015b60405180910390fd5b6103498286868403610557565b5f336103258185856106f2565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b61046c61089f565b6001600160a01b0382166104b45760405162461bcd60e51b815260206004820152600f60248201526e496e76616c6964206164647265737360881b6044820152606401610417565b6001600160a01b03919091165f908152600860205260409020805460ff1916911515919091179055565b6104e661089f565b6001600160a01b03811661054b5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610417565b610554816108f9565b50565b6001600160a01b0383166105b95760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610417565b6001600160a01b03821661061a5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610417565b6001600160a01b038381165f8181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b5f610685848461043a565b90505f1981146106ec57818110156106df5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610417565b6106ec8484848403610557565b50505050565b6001600160a01b0383166107565760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610417565b6001600160a01b0382166107b85760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610417565b6107c383838361094a565b6001600160a01b0383165f908152602081905260409020548181101561083a5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610417565b6001600160a01b038481165f81815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a36106ec565b6005546001600160a01b031633146103865760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610417565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b60075460ff168061096257506001600160a01b038316155b8061097457506001600160a01b038216155b8061099657506001600160a01b0383165f9081526008602052604090205460ff165b806109b857506001600160a01b0382165f9081526008602052604090205460ff165b806109d057506005546001600160a01b038481169116145b806109e857506005546001600160a01b038381169116145b610a2d5760405162461bcd60e51b8152602060048201526016602482015275151c98591a5b99c81a5cc81b9bdd08195b98589b195960521b6044820152606401610417565b505050565b602081525f82518060208401528060208501604085015e5f604082850101526040601f19601f83011684010191505092915050565b80356001600160a01b0381168114610a7d575f80fd5b919050565b5f8060408385031215610a93575f80fd5b610a9c83610a67565b946020939093013593505050565b5f805f60608486031215610abc575f80fd5b610ac584610a67565b9250610ad360208501610a67565b929592945050506040919091013590565b5f60208284031215610af4575f80fd5b610afd82610a67565b9392505050565b5f8060408385031215610b15575f80fd5b610b1e83610a67565b9150610b2c60208401610a67565b90509250929050565b5f8060408385031215610b46575f80fd5b610b4f83610a67565b915060208301358015158114610b63575f80fd5b809150509250929050565b600181811c90821680610b8257607f821691505b602082108103610ba057634e487b7160e01b5f52602260045260245ffd5b50919050565b8082018082111561032b57634e487b7160e01b5f52601160045260245ffdfea2646970667358221220ae40059aad91b8384da81bacad9452af6e63a1ff97c17c9a6c5d2b6784a795a364736f6c634300081a0033
Deployed Bytecode Sourcemap
23803:1207:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6816:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9176:201;;;;;;:::i;:::-;;:::i;:::-;;;1085:14:1;;1078:22;1060:41;;1048:2;1033:18;9176:201:0;920:187:1;7945:108:0;8033:12;;7945:108;;;1258:25:1;;;1246:2;1231:18;7945:108:0;1112:177:1;9957:261:0;;;;;;:::i;:::-;;:::i;7787:93::-;;;7870:2;1815:36:1;;1803:2;1788:18;7787:93:0;1673:184:1;10627:238:0;;;;;;:::i;:::-;;:::i;23859:26::-;;;;;;;;;8116:127;;;;;;:::i;:::-;-1:-1:-1;;;;;8217:18:0;8190:7;8217:18;;;;;;;;;;;;8116:127;19685:103;;;:::i;:::-;;24321:84;;;:::i;19044:87::-;19117:6;;19044:87;;-1:-1:-1;;;;;19117:6:0;;;2199:51:1;;2187:2;2172:18;19044:87:0;2053:203:1;7035:104:0;;;:::i;23892:43::-;;;;;;:::i;:::-;;;;;;;;;;;;;;;;11368:436;;;;;;:::i;:::-;;:::i;8449:193::-;;;;;;:::i;:::-;;:::i;8705:151::-;;;;;;:::i;:::-;;:::i;24128:185::-;;;;;;:::i;:::-;;:::i;19943:201::-;;;;;;:::i;:::-;;:::i;6816:100::-;6870:13;6903:5;6896:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6816:100;:::o;9176:201::-;9259:4;4534:10;9315:32;4534:10;9331:7;9340:6;9315:8;:32::i;:::-;9365:4;9358:11;;;9176:201;;;;;:::o;9957:261::-;10054:4;4534:10;10112:38;10128:4;4534:10;10143:6;10112:15;:38::i;:::-;10161:27;10171:4;10177:2;10181:6;10161:9;:27::i;:::-;-1:-1:-1;10206:4:0;;9957:261;-1:-1:-1;;;;9957:261:0:o;10627:238::-;10715:4;4534:10;10771:64;4534:10;10787:7;10824:10;10796:25;4534:10;10787:7;10796:9;:25::i;:::-;:38;;;;:::i;:::-;10771:8;:64::i;19685:103::-;18930:13;:11;:13::i;:::-;19750:30:::1;19777:1;19750:18;:30::i;:::-;19685:103::o:0;24321:84::-;18930:13;:11;:13::i;:::-;24376:14:::1;:21:::0;;-1:-1:-1;;24376:21:0::1;24393:4;24376:21;::::0;;24321:84::o;7035:104::-;7091:13;7124:7;7117:14;;;;;:::i;11368:436::-;11461:4;4534:10;11461:4;11544:25;4534:10;11561:7;11544:9;:25::i;:::-;11517:52;;11608:15;11588:16;:35;;11580:85;;;;-1:-1:-1;;;11580:85:0;;3692:2:1;11580:85:0;;;3674:21:1;3731:2;3711:18;;;3704:30;3770:34;3750:18;;;3743:62;-1:-1:-1;;;3821:18:1;;;3814:35;3866:19;;11580:85:0;;;;;;;;;11701:60;11710:5;11717:7;11745:15;11726:16;:34;11701:8;:60::i;8449:193::-;8528:4;4534:10;8584:28;4534:10;8601:2;8605:6;8584:9;:28::i;8705:151::-;-1:-1:-1;;;;;8821:18:0;;;8794:7;8821:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;8705:151::o;24128:185::-;18930:13;:11;:13::i;:::-;-1:-1:-1;;;;;24224:21:0;::::1;24216:49;;;::::0;-1:-1:-1;;;24216:49:0;;4098:2:1;24216:49:0::1;::::0;::::1;4080:21:1::0;4137:2;4117:18;;;4110:30;-1:-1:-1;;;4156:18:1;;;4149:45;4211:18;;24216:49:0::1;3896:339:1::0;24216:49:0::1;-1:-1:-1::0;;;;;24276:20:0;;;::::1;;::::0;;;:11:::1;:20;::::0;;;;:29;;-1:-1:-1;;24276:29:0::1;::::0;::::1;;::::0;;;::::1;::::0;;24128:185::o;19943:201::-;18930:13;:11;:13::i;:::-;-1:-1:-1;;;;;20032:22:0;::::1;20024:73;;;::::0;-1:-1:-1;;;20024:73:0;;4442:2:1;20024:73:0::1;::::0;::::1;4424:21:1::0;4481:2;4461:18;;;4454:30;4520:34;4500:18;;;4493:62;-1:-1:-1;;;4571:18:1;;;4564:36;4617:19;;20024:73:0::1;4240:402:1::0;20024:73:0::1;20108:28;20127:8;20108:18;:28::i;:::-;19943:201:::0;:::o;15361:346::-;-1:-1:-1;;;;;15463:19:0;;15455:68;;;;-1:-1:-1;;;15455:68:0;;4849:2:1;15455:68:0;;;4831:21:1;4888:2;4868:18;;;4861:30;4927:34;4907:18;;;4900:62;-1:-1:-1;;;4978:18:1;;;4971:34;5022:19;;15455:68:0;4647:400:1;15455:68:0;-1:-1:-1;;;;;15542:21:0;;15534:68;;;;-1:-1:-1;;;15534:68:0;;5254:2:1;15534:68:0;;;5236:21:1;5293:2;5273:18;;;5266:30;5332:34;5312:18;;;5305:62;-1:-1:-1;;;5383:18:1;;;5376:32;5425:19;;15534:68:0;5052:398:1;15534:68:0;-1:-1:-1;;;;;15615:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;15667:32;;1258:25:1;;;15667:32:0;;1231:18:1;15667:32:0;;;;;;;15361:346;;;:::o;15998:419::-;16099:24;16126:25;16136:5;16143:7;16126:9;:25::i;:::-;16099:52;;-1:-1:-1;;16166:16:0;:37;16162:248;;16248:6;16228:16;:26;;16220:68;;;;-1:-1:-1;;;16220:68:0;;5657:2:1;16220:68:0;;;5639:21:1;5696:2;5676:18;;;5669:30;5735:31;5715:18;;;5708:59;5784:18;;16220:68:0;5455:353:1;16220:68:0;16332:51;16341:5;16348:7;16376:6;16357:16;:25;16332:8;:51::i;:::-;16088:329;15998:419;;;:::o;12274:806::-;-1:-1:-1;;;;;12371:18:0;;12363:68;;;;-1:-1:-1;;;12363:68:0;;6015:2:1;12363:68:0;;;5997:21:1;6054:2;6034:18;;;6027:30;6093:34;6073:18;;;6066:62;-1:-1:-1;;;6144:18:1;;;6137:35;6189:19;;12363:68:0;5813:401:1;12363:68:0;-1:-1:-1;;;;;12450:16:0;;12442:64;;;;-1:-1:-1;;;12442:64:0;;6421:2:1;12442:64:0;;;6403:21:1;6460:2;6440:18;;;6433:30;6499:34;6479:18;;;6472:62;-1:-1:-1;;;6550:18:1;;;6543:33;6593:19;;12442:64:0;6219:399:1;12442:64:0;12519:38;12540:4;12546:2;12550:6;12519:20;:38::i;:::-;-1:-1:-1;;;;;12592:15:0;;12570:19;12592:15;;;;;;;;;;;12626:21;;;;12618:72;;;;-1:-1:-1;;;12618:72:0;;6825:2:1;12618:72:0;;;6807:21:1;6864:2;6844:18;;;6837:30;6903:34;6883:18;;;6876:62;-1:-1:-1;;;6954:18:1;;;6947:36;7000:19;;12618:72:0;6623:402:1;12618:72:0;-1:-1:-1;;;;;12726:15:0;;;:9;:15;;;;;;;;;;;12744:20;;;12726:38;;12944:13;;;;;;;;;;:23;;;;;;12996:26;;1258:25:1;;;12944:13:0;;12996:26;;1231:18:1;12996:26:0;;;;;;;13035:37;24413:594;19209:132;19117:6;;-1:-1:-1;;;;;19117:6:0;4534:10;19273:23;19265:68;;;;-1:-1:-1;;;19265:68:0;;7232:2:1;19265:68:0;;;7214:21:1;;;7251:18;;;7244:30;7310:34;7290:18;;;7283:62;7362:18;;19265:68:0;7030:356:1;20304:191:0;20397:6;;;-1:-1:-1;;;;;20414:17:0;;;-1:-1:-1;;;;;;20414:17:0;;;;;;;20447:40;;20397:6;;;20414:17;20397:6;;20447:40;;20378:16;;20447:40;20367:128;20304:191;:::o;24413:594::-;24643:14;;;;;:49;;-1:-1:-1;;;;;;24674:18:0;;;24643:49;:93;;;-1:-1:-1;;;;;;24720:16:0;;;24643:93;:138;;;-1:-1:-1;;;;;;24764:17:0;;;;;;:11;:17;;;;;;;;24643:138;:193;;;-1:-1:-1;;;;;;24821:15:0;;;;;;:11;:15;;;;;;;;24643:193;:250;;;-1:-1:-1;19117:6:0;;-1:-1:-1;;;;;24878:15:0;;;19117:6;;24878:15;24643:250;:294;;;-1:-1:-1;19117:6:0;;-1:-1:-1;;;;;24924:13:0;;;19117:6;;24924:13;24643:294;24621:378;;;;-1:-1:-1;;;24621:378:0;;7593:2:1;24621:378:0;;;7575:21:1;7632:2;7612:18;;;7605:30;-1:-1:-1;;;7651:18:1;;;7644:52;7713:18;;24621:378:0;7391:346:1;24621:378:0;24413:594;;;:::o;14:418:1:-;163:2;152:9;145:21;126:4;195:6;189:13;238:6;233:2;222:9;218:18;211:34;297:6;292:2;284:6;280:15;275:2;264:9;260:18;254:50;353:1;348:2;339:6;328:9;324:22;320:31;313:42;423:2;416;412:7;407:2;399:6;395:15;391:29;380:9;376:45;372:54;364:62;;;14:418;;;;:::o;437:173::-;505:20;;-1:-1:-1;;;;;554:31:1;;544:42;;534:70;;600:1;597;590:12;534:70;437:173;;;:::o;615:300::-;683:6;691;744:2;732:9;723:7;719:23;715:32;712:52;;;760:1;757;750:12;712:52;783:29;802:9;783:29;:::i;:::-;773:39;881:2;866:18;;;;853:32;;-1:-1:-1;;;615:300:1:o;1294:374::-;1371:6;1379;1387;1440:2;1428:9;1419:7;1415:23;1411:32;1408:52;;;1456:1;1453;1446:12;1408:52;1479:29;1498:9;1479:29;:::i;:::-;1469:39;;1527:38;1561:2;1550:9;1546:18;1527:38;:::i;:::-;1294:374;;1517:48;;-1:-1:-1;;;1634:2:1;1619:18;;;;1606:32;;1294:374::o;1862:186::-;1921:6;1974:2;1962:9;1953:7;1949:23;1945:32;1942:52;;;1990:1;1987;1980:12;1942:52;2013:29;2032:9;2013:29;:::i;:::-;2003:39;1862:186;-1:-1:-1;;;1862:186:1:o;2261:260::-;2329:6;2337;2390:2;2378:9;2369:7;2365:23;2361:32;2358:52;;;2406:1;2403;2396:12;2358:52;2429:29;2448:9;2429:29;:::i;:::-;2419:39;;2477:38;2511:2;2500:9;2496:18;2477:38;:::i;:::-;2467:48;;2261:260;;;;;:::o;2526:347::-;2591:6;2599;2652:2;2640:9;2631:7;2627:23;2623:32;2620:52;;;2668:1;2665;2658:12;2620:52;2691:29;2710:9;2691:29;:::i;:::-;2681:39;;2770:2;2759:9;2755:18;2742:32;2817:5;2810:13;2803:21;2796:5;2793:32;2783:60;;2839:1;2836;2829:12;2783:60;2862:5;2852:15;;;2526:347;;;;;:::o;2878:380::-;2957:1;2953:12;;;;3000;;;3021:61;;3075:4;3067:6;3063:17;3053:27;;3021:61;3128:2;3120:6;3117:14;3097:18;3094:38;3091:161;;3174:10;3169:3;3165:20;3162:1;3155:31;3209:4;3206:1;3199:15;3237:4;3234:1;3227:15;3091:161;;2878:380;;;:::o;3263:222::-;3328:9;;;3349:10;;;3346:133;;;3401:10;3396:3;3392:20;3389:1;3382:31;3436:4;3433:1;3426:15;3464:4;3461:1;3454:15
Swarm Source
ipfs://ae40059aad91b8384da81bacad9452af6e63a1ff97c17c9a6c5d2b6784a795a3
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.