Source Code
More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 17,943 transactions
| Transaction Hash |
|
Block
|
From
|
To
|
|||||
|---|---|---|---|---|---|---|---|---|---|
| Approve | 79738927 | 26 hrs ago | IN | 0 AVAX | 0.00000012 | ||||
| Approve | 79495918 | 4 days ago | IN | 0 AVAX | 0.00000102 | ||||
| Transfer | 79489940 | 4 days ago | IN | 0 AVAX | 0.00000276 | ||||
| Transfer | 79076932 | 9 days ago | IN | 0 AVAX | 0.00000267 | ||||
| Transfer | 78994001 | 10 days ago | IN | 0 AVAX | 0.00009168 | ||||
| Approve | 78903533 | 11 days ago | IN | 0 AVAX | 0.00000076 | ||||
| Transfer | 78899675 | 11 days ago | IN | 0 AVAX | 0.00000067 | ||||
| Transfer | 78899675 | 11 days ago | IN | 0 AVAX | 0.00000096 | ||||
| Transfer | 78871517 | 11 days ago | IN | 0 AVAX | 0.00000258 | ||||
| Approve | 77980870 | 22 days ago | IN | 0 AVAX | 0.00000292 | ||||
| Approve | 77915055 | 23 days ago | IN | 0 AVAX | 0.00007252 | ||||
| Approve | 77637248 | 26 days ago | IN | 0 AVAX | 0.00000191 | ||||
| Transfer | 77331388 | 30 days ago | IN | 0 AVAX | 0.00004037 | ||||
| Approve | 76536873 | 41 days ago | IN | 0 AVAX | 0.00012254 | ||||
| Approve | 76530256 | 41 days ago | IN | 0 AVAX | 0.00000492 | ||||
| Approve | 76424429 | 42 days ago | IN | 0 AVAX | 0.00000425 | ||||
| Approve | 76421104 | 42 days ago | IN | 0 AVAX | 0.00000284 | ||||
| Approve | 76341255 | 43 days ago | IN | 0 AVAX | 0.00000167 | ||||
| Approve | 76205164 | 45 days ago | IN | 0 AVAX | 0.00009585 | ||||
| Approve | 76204873 | 45 days ago | IN | 0 AVAX | 0.00007334 | ||||
| Approve | 76203564 | 45 days ago | IN | 0 AVAX | 0.00007229 | ||||
| Approve | 75741156 | 52 days ago | IN | 0 AVAX | 0.00012198 | ||||
| Approve | 75671615 | 53 days ago | IN | 0 AVAX | 0.00029125 | ||||
| Approve | 75350518 | 57 days ago | IN | 0 AVAX | 0.00010204 | ||||
| Transfer | 75250640 | 59 days ago | IN | 0 AVAX | 0.00007937 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Cross-Chain Transactions
Loading...
Loading
Contract Name:
MAJIN
Compiler Version
v0.8.22+commit.4fc1097e
Contract Source Code (Solidity Multiple files format)
// SPDX-License-Identifier: MIT
//
// Dear to MAJIN dear to win
// https://twitter.com/majin_token
pragma solidity ^0.8.20;
import "./ERC20.sol";
import "./Ownable.sol";
contract MAJIN is ERC20, Ownable(msg.sender) {
// Limit prevents any wallet receiving more than 1% of MAJIN in the first hours.
bool public limit = true;
address public liquidityPool;
// Mint the totalSupply (420 T) to the deployer
constructor() ERC20("MAJIN", "MAJIN") {
_mint(msg.sender, 420000000000000 * 10 ** 18);
}
// Function to set limit state
function setLimit(bool _state) external onlyOwner {
limit = _state;
}
// Define the LP address to enable trading!
function setLiquidityPool(address _liquidityPool) external onlyOwner {
liquidityPool = _liquidityPool;
}
function _update(
address from,
address to,
uint256 amount
) internal virtual override {
super._update(from, to, amount);
if(liquidityPool == address(0)) {
require(from == owner() || to == owner(), "Patience - Trading Not Started Yet!");
return;
}
if (limit && from != owner() && to != liquidityPool) {
// Require that a receiving wallet will not hold more than 1% of supply after a transfer whilst limit is in effect
require(
balanceOf(to) <= totalSupply() / 100,
"Limit of 1% of MAJIN for the first hours!"
);
}
}
// Renounce the contract.
function renounceTokenOwnership() public onlyOwner {
renounceOwnership();
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.1) (utils/Context.sol)
pragma solidity ^0.8.20;
/**
* @dev Provides information about the current execution context, including the
* sender of the transaction and its data. While these are generally available
* via msg.sender and msg.data, they should not be accessed in such a direct
* manner, since when dealing with meta-transactions the account sending and
* paying for execution may not be the actual sender (as far as an application
* is concerned).
*
* This contract is only required for intermediate, library-like contracts.
*/
abstract contract Context {
function _msgSender() internal view virtual returns (address) {
return msg.sender;
}
function _msgData() internal view virtual returns (bytes calldata) {
return msg.data;
}
function _contextSuffixLength() internal view virtual returns (uint256) {
return 0;
}
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (interfaces/draft-IERC6093.sol)
pragma solidity ^0.8.20;
/**
* @dev Standard ERC20 Errors
* Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC20 tokens.
*/
interface IERC20Errors {
/**
* @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers.
* @param sender Address whose tokens are being transferred.
* @param balance Current balance for the interacting account.
* @param needed Minimum amount required to perform a transfer.
*/
error ERC20InsufficientBalance(address sender, uint256 balance, uint256 needed);
/**
* @dev Indicates a failure with the token `sender`. Used in transfers.
* @param sender Address whose tokens are being transferred.
*/
error ERC20InvalidSender(address sender);
/**
* @dev Indicates a failure with the token `receiver`. Used in transfers.
* @param receiver Address to which tokens are being transferred.
*/
error ERC20InvalidReceiver(address receiver);
/**
* @dev Indicates a failure with the `spender`’s `allowance`. Used in transfers.
* @param spender Address that may be allowed to operate on tokens without being their owner.
* @param allowance Amount of tokens a `spender` is allowed to operate with.
* @param needed Minimum amount required to perform a transfer.
*/
error ERC20InsufficientAllowance(address spender, uint256 allowance, uint256 needed);
/**
* @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
* @param approver Address initiating an approval operation.
*/
error ERC20InvalidApprover(address approver);
/**
* @dev Indicates a failure with the `spender` to be approved. Used in approvals.
* @param spender Address that may be allowed to operate on tokens without being their owner.
*/
error ERC20InvalidSpender(address spender);
}
/**
* @dev Standard ERC721 Errors
* Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC721 tokens.
*/
interface IERC721Errors {
/**
* @dev Indicates that an address can't be an owner. For example, `address(0)` is a forbidden owner in EIP-20.
* Used in balance queries.
* @param owner Address of the current owner of a token.
*/
error ERC721InvalidOwner(address owner);
/**
* @dev Indicates a `tokenId` whose `owner` is the zero address.
* @param tokenId Identifier number of a token.
*/
error ERC721NonexistentToken(uint256 tokenId);
/**
* @dev Indicates an error related to the ownership over a particular token. Used in transfers.
* @param sender Address whose tokens are being transferred.
* @param tokenId Identifier number of a token.
* @param owner Address of the current owner of a token.
*/
error ERC721IncorrectOwner(address sender, uint256 tokenId, address owner);
/**
* @dev Indicates a failure with the token `sender`. Used in transfers.
* @param sender Address whose tokens are being transferred.
*/
error ERC721InvalidSender(address sender);
/**
* @dev Indicates a failure with the token `receiver`. Used in transfers.
* @param receiver Address to which tokens are being transferred.
*/
error ERC721InvalidReceiver(address receiver);
/**
* @dev Indicates a failure with the `operator`’s approval. Used in transfers.
* @param operator Address that may be allowed to operate on tokens without being their owner.
* @param tokenId Identifier number of a token.
*/
error ERC721InsufficientApproval(address operator, uint256 tokenId);
/**
* @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
* @param approver Address initiating an approval operation.
*/
error ERC721InvalidApprover(address approver);
/**
* @dev Indicates a failure with the `operator` to be approved. Used in approvals.
* @param operator Address that may be allowed to operate on tokens without being their owner.
*/
error ERC721InvalidOperator(address operator);
}
/**
* @dev Standard ERC1155 Errors
* Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC1155 tokens.
*/
interface IERC1155Errors {
/**
* @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers.
* @param sender Address whose tokens are being transferred.
* @param balance Current balance for the interacting account.
* @param needed Minimum amount required to perform a transfer.
* @param tokenId Identifier number of a token.
*/
error ERC1155InsufficientBalance(address sender, uint256 balance, uint256 needed, uint256 tokenId);
/**
* @dev Indicates a failure with the token `sender`. Used in transfers.
* @param sender Address whose tokens are being transferred.
*/
error ERC1155InvalidSender(address sender);
/**
* @dev Indicates a failure with the token `receiver`. Used in transfers.
* @param receiver Address to which tokens are being transferred.
*/
error ERC1155InvalidReceiver(address receiver);
/**
* @dev Indicates a failure with the `operator`’s approval. Used in transfers.
* @param operator Address that may be allowed to operate on tokens without being their owner.
* @param owner Address of the current owner of a token.
*/
error ERC1155MissingApprovalForAll(address operator, address owner);
/**
* @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
* @param approver Address initiating an approval operation.
*/
error ERC1155InvalidApprover(address approver);
/**
* @dev Indicates a failure with the `operator` to be approved. Used in approvals.
* @param operator Address that may be allowed to operate on tokens without being their owner.
*/
error ERC1155InvalidOperator(address operator);
/**
* @dev Indicates an array length mismatch between ids and values in a safeBatchTransferFrom operation.
* Used in batch transfers.
* @param idsLength Length of the array of token identifiers
* @param valuesLength Length of the array of token amounts
*/
error ERC1155InvalidArrayLength(uint256 idsLength, uint256 valuesLength);
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/ERC20.sol)
pragma solidity ^0.8.20;
import {IERC20} from "./IERC20.sol";
import {IERC20Metadata} from "./IERC20Metadata.sol";
import {Context} from "./Context.sol";
import {IERC20Errors} from "./draft-IERC6093.sol";
/**
* @dev Implementation of the {IERC20} interface.
*
* This implementation is agnostic to the way tokens are created. This means
* that a supply mechanism has to be added in a derived contract using {_mint}.
*
* TIP: For a detailed writeup see our guide
* https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How
* to implement supply mechanisms].
*
* The default value of {decimals} is 18. To change this, you should override
* this function so it returns a different value.
*
* We have followed general OpenZeppelin Contracts guidelines: functions revert
* instead returning `false` on failure. This behavior is nonetheless
* conventional and does not conflict with the expectations of ERC20
* applications.
*
* Additionally, an {Approval} event is emitted on calls to {transferFrom}.
* This allows applications to reconstruct the allowance for all accounts just
* by listening to said events. Other implementations of the EIP may not emit
* these events, as it isn't required by the specification.
*/
abstract contract ERC20 is Context, IERC20, IERC20Metadata, IERC20Errors {
mapping(address account => uint256) private _balances;
mapping(address account => mapping(address spender => uint256)) private _allowances;
uint256 private _totalSupply;
string private _name;
string private _symbol;
/**
* @dev Sets the values for {name} and {symbol}.
*
* All two of these values are immutable: they can only be set once during
* construction.
*/
constructor(string memory name_, string memory symbol_) {
_name = name_;
_symbol = symbol_;
}
/**
* @dev Returns the name of the token.
*/
function name() public view virtual returns (string memory) {
return _name;
}
/**
* @dev Returns the symbol of the token, usually a shorter version of the
* name.
*/
function symbol() public view virtual returns (string memory) {
return _symbol;
}
/**
* @dev Returns the number of decimals used to get its user representation.
* For example, if `decimals` equals `2`, a balance of `505` tokens should
* be displayed to a user as `5.05` (`505 / 10 ** 2`).
*
* Tokens usually opt for a value of 18, imitating the relationship between
* Ether and Wei. This is the default value returned by this function, unless
* it's overridden.
*
* NOTE: This information is only used for _display_ purposes: it in
* no way affects any of the arithmetic of the contract, including
* {IERC20-balanceOf} and {IERC20-transfer}.
*/
function decimals() public view virtual returns (uint8) {
return 18;
}
/**
* @dev See {IERC20-totalSupply}.
*/
function totalSupply() public view virtual returns (uint256) {
return _totalSupply;
}
/**
* @dev See {IERC20-balanceOf}.
*/
function balanceOf(address account) public view virtual returns (uint256) {
return _balances[account];
}
/**
* @dev See {IERC20-transfer}.
*
* Requirements:
*
* - `to` cannot be the zero address.
* - the caller must have a balance of at least `value`.
*/
function transfer(address to, uint256 value) public virtual returns (bool) {
address owner = _msgSender();
_transfer(owner, to, value);
return true;
}
/**
* @dev See {IERC20-allowance}.
*/
function allowance(address owner, address spender) public view virtual returns (uint256) {
return _allowances[owner][spender];
}
/**
* @dev See {IERC20-approve}.
*
* NOTE: If `value` is the maximum `uint256`, the allowance is not updated on
* `transferFrom`. This is semantically equivalent to an infinite approval.
*
* Requirements:
*
* - `spender` cannot be the zero address.
*/
function approve(address spender, uint256 value) public virtual returns (bool) {
address owner = _msgSender();
_approve(owner, spender, value);
return true;
}
/**
* @dev See {IERC20-transferFrom}.
*
* Emits an {Approval} event indicating the updated allowance. This is not
* required by the EIP. See the note at the beginning of {ERC20}.
*
* NOTE: Does not update the allowance if the current allowance
* is the maximum `uint256`.
*
* Requirements:
*
* - `from` and `to` cannot be the zero address.
* - `from` must have a balance of at least `value`.
* - the caller must have allowance for ``from``'s tokens of at least
* `value`.
*/
function transferFrom(address from, address to, uint256 value) public virtual returns (bool) {
address spender = _msgSender();
_spendAllowance(from, spender, value);
_transfer(from, to, value);
return true;
}
/**
* @dev Moves a `value` amount of tokens from `from` to `to`.
*
* This internal function is equivalent to {transfer}, and can be used to
* e.g. implement automatic token fees, slashing mechanisms, etc.
*
* Emits a {Transfer} event.
*
* NOTE: This function is not virtual, {_update} should be overridden instead.
*/
function _transfer(address from, address to, uint256 value) internal {
if (from == address(0)) {
revert ERC20InvalidSender(address(0));
}
if (to == address(0)) {
revert ERC20InvalidReceiver(address(0));
}
_update(from, to, value);
}
/**
* @dev Transfers a `value` amount of tokens from `from` to `to`, or alternatively mints (or burns) if `from`
* (or `to`) is the zero address. All customizations to transfers, mints, and burns should be done by overriding
* this function.
*
* Emits a {Transfer} event.
*/
function _update(address from, address to, uint256 value) internal virtual {
if (from == address(0)) {
// Overflow check required: The rest of the code assumes that totalSupply never overflows
_totalSupply += value;
} else {
uint256 fromBalance = _balances[from];
if (fromBalance < value) {
revert ERC20InsufficientBalance(from, fromBalance, value);
}
unchecked {
// Overflow not possible: value <= fromBalance <= totalSupply.
_balances[from] = fromBalance - value;
}
}
if (to == address(0)) {
unchecked {
// Overflow not possible: value <= totalSupply or value <= fromBalance <= totalSupply.
_totalSupply -= value;
}
} else {
unchecked {
// Overflow not possible: balance + value is at most totalSupply, which we know fits into a uint256.
_balances[to] += value;
}
}
emit Transfer(from, to, value);
}
/**
* @dev Creates a `value` amount of tokens and assigns them to `account`, by transferring it from address(0).
* Relies on the `_update` mechanism
*
* Emits a {Transfer} event with `from` set to the zero address.
*
* NOTE: This function is not virtual, {_update} should be overridden instead.
*/
function _mint(address account, uint256 value) internal {
if (account == address(0)) {
revert ERC20InvalidReceiver(address(0));
}
_update(address(0), account, value);
}
/**
* @dev Destroys a `value` amount of tokens from `account`, lowering the total supply.
* Relies on the `_update` mechanism.
*
* Emits a {Transfer} event with `to` set to the zero address.
*
* NOTE: This function is not virtual, {_update} should be overridden instead
*/
function _burn(address account, uint256 value) internal {
if (account == address(0)) {
revert ERC20InvalidSender(address(0));
}
_update(account, address(0), value);
}
/**
* @dev Sets `value` as the allowance of `spender` over the `owner` s tokens.
*
* This internal function is equivalent to `approve`, and can be used to
* e.g. set automatic allowances for certain subsystems, etc.
*
* Emits an {Approval} event.
*
* Requirements:
*
* - `owner` cannot be the zero address.
* - `spender` cannot be the zero address.
*
* Overrides to this logic should be done to the variant with an additional `bool emitEvent` argument.
*/
function _approve(address owner, address spender, uint256 value) internal {
_approve(owner, spender, value, true);
}
/**
* @dev Variant of {_approve} with an optional flag to enable or disable the {Approval} event.
*
* By default (when calling {_approve}) the flag is set to true. On the other hand, approval changes made by
* `_spendAllowance` during the `transferFrom` operation set the flag to false. This saves gas by not emitting any
* `Approval` event during `transferFrom` operations.
*
* Anyone who wishes to continue emitting `Approval` events on the`transferFrom` operation can force the flag to
* true using the following override:
* ```
* function _approve(address owner, address spender, uint256 value, bool) internal virtual override {
* super._approve(owner, spender, value, true);
* }
* ```
*
* Requirements are the same as {_approve}.
*/
function _approve(address owner, address spender, uint256 value, bool emitEvent) internal virtual {
if (owner == address(0)) {
revert ERC20InvalidApprover(address(0));
}
if (spender == address(0)) {
revert ERC20InvalidSpender(address(0));
}
_allowances[owner][spender] = value;
if (emitEvent) {
emit Approval(owner, spender, value);
}
}
/**
* @dev Updates `owner` s allowance for `spender` based on spent `value`.
*
* Does not update the allowance value in case of infinite allowance.
* Revert if not enough allowance is available.
*
* Does not emit an {Approval} event.
*/
function _spendAllowance(address owner, address spender, uint256 value) internal virtual {
uint256 currentAllowance = allowance(owner, spender);
if (currentAllowance != type(uint256).max) {
if (currentAllowance < value) {
revert ERC20InsufficientAllowance(spender, currentAllowance, value);
}
unchecked {
_approve(owner, spender, currentAllowance - value, false);
}
}
}
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/IERC20.sol)
pragma solidity ^0.8.20;
/**
* @dev Interface of the ERC20 standard as defined in the EIP.
*/
interface IERC20 {
/**
* @dev Emitted when `value` tokens are moved from one account (`from`) to
* another (`to`).
*
* Note that `value` may be zero.
*/
event Transfer(address indexed from, address indexed to, uint256 value);
/**
* @dev Emitted when the allowance of a `spender` for an `owner` is set by
* a call to {approve}. `value` is the new allowance.
*/
event Approval(address indexed owner, address indexed spender, uint256 value);
/**
* @dev Returns the value of tokens in existence.
*/
function totalSupply() external view returns (uint256);
/**
* @dev Returns the value of tokens owned by `account`.
*/
function balanceOf(address account) external view returns (uint256);
/**
* @dev Moves a `value` amount of tokens from the caller's account to `to`.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transfer(address to, uint256 value) external returns (bool);
/**
* @dev Returns the remaining number of tokens that `spender` will be
* allowed to spend on behalf of `owner` through {transferFrom}. This is
* zero by default.
*
* This value changes when {approve} or {transferFrom} are called.
*/
function allowance(address owner, address spender) external view returns (uint256);
/**
* @dev Sets a `value` amount of tokens as the allowance of `spender` over the
* caller's tokens.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* IMPORTANT: Beware that changing an allowance with this method brings the risk
* that someone may use both the old and the new allowance by unfortunate
* transaction ordering. One possible solution to mitigate this race
* condition is to first reduce the spender's allowance to 0 and set the
* desired value afterwards:
* https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
*
* Emits an {Approval} event.
*/
function approve(address spender, uint256 value) external returns (bool);
/**
* @dev Moves a `value` amount of tokens from `from` to `to` using the
* allowance mechanism. `value` is then deducted from the caller's
* allowance.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transferFrom(address from, address to, uint256 value) external returns (bool);
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/extensions/IERC20Metadata.sol)
pragma solidity ^0.8.20;
import {IERC20} from "./IERC20.sol";
/**
* @dev Interface for the optional metadata functions from the ERC20 standard.
*/
interface IERC20Metadata is IERC20 {
/**
* @dev Returns the name of the token.
*/
function name() external view returns (string memory);
/**
* @dev Returns the symbol of the token.
*/
function symbol() external view returns (string memory);
/**
* @dev Returns the decimals places of the token.
*/
function decimals() external view returns (uint8);
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (access/Ownable.sol)
pragma solidity ^0.8.20;
import {Context} from "./Context.sol";
/**
* @dev Contract module which provides a basic access control mechanism, where
* there is an account (an owner) that can be granted exclusive access to
* specific functions.
*
* The initial owner is set to the address provided by the deployer. This can
* later be changed with {transferOwnership}.
*
* This module is used through inheritance. It will make available the modifier
* `onlyOwner`, which can be applied to your functions to restrict their use to
* the owner.
*/
abstract contract Ownable is Context {
address private _owner;
/**
* @dev The caller account is not authorized to perform an operation.
*/
error OwnableUnauthorizedAccount(address account);
/**
* @dev The owner is not a valid owner account. (eg. `address(0)`)
*/
error OwnableInvalidOwner(address owner);
event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
/**
* @dev Initializes the contract setting the address provided by the deployer as the initial owner.
*/
constructor(address initialOwner) {
if (initialOwner == address(0)) {
revert OwnableInvalidOwner(address(0));
}
_transferOwnership(initialOwner);
}
/**
* @dev Throws if called by any account other than the owner.
*/
modifier onlyOwner() {
_checkOwner();
_;
}
/**
* @dev Returns the address of the current owner.
*/
function owner() public view virtual returns (address) {
return _owner;
}
/**
* @dev Throws if the sender is not the owner.
*/
function _checkOwner() internal view virtual {
if (owner() != _msgSender()) {
revert OwnableUnauthorizedAccount(_msgSender());
}
}
/**
* @dev Leaves the contract without owner. It will not be possible to call
* `onlyOwner` functions. Can only be called by the current owner.
*
* NOTE: Renouncing ownership will leave the contract without an owner,
* thereby disabling any functionality that is only available to the owner.
*/
function renounceOwnership() public virtual onlyOwner {
_transferOwnership(address(0));
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Can only be called by the current owner.
*/
function transferOwnership(address newOwner) public virtual onlyOwner {
if (newOwner == address(0)) {
revert OwnableInvalidOwner(address(0));
}
_transferOwnership(newOwner);
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Internal function without access restriction.
*/
function _transferOwnership(address newOwner) internal virtual {
address oldOwner = _owner;
_owner = newOwner;
emit OwnershipTransferred(oldOwner, newOwner);
}
}
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"allowance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientAllowance","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint256","name":"balance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientBalance","type":"error"},{"inputs":[{"internalType":"address","name":"approver","type":"address"}],"name":"ERC20InvalidApprover","type":"error"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"ERC20InvalidReceiver","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"ERC20InvalidSender","type":"error"},{"inputs":[{"internalType":"address","name":"spender","type":"address"}],"name":"ERC20InvalidSpender","type":"error"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"OwnableInvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"OwnableUnauthorizedAccount","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"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":"value","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limit","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"liquidityPool","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceTokenOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_liquidityPool","type":"address"}],"name":"setLiquidityPool","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]Contract Creation Code
60806040526001600560146101000a81548160ff0219169083151502179055503480156200002c57600080fd5b50336040518060400160405280600581526020017f4d414a494e0000000000000000000000000000000000000000000000000000008152506040518060400160405280600581526020017f4d414a494e0000000000000000000000000000000000000000000000000000008152508160039081620000ab919062000a4f565b508060049081620000bd919062000a4f565b505050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603620001355760006040517f1e4fbdf70000000000000000000000000000000000000000000000000000000081526004016200012c919062000b7b565b60405180910390fd5b62000146816200016d60201b60201c565b5062000167336d14b5253145b397d65451000000006200023360201b60201c565b62000e15565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620002a85760006040517fec442f050000000000000000000000000000000000000000000000000000000081526004016200029f919062000b7b565b60405180910390fd5b620002bc60008383620002c060201b60201c565b5050565b620002d38383836200052960201b60201c565b600073ffffffffffffffffffffffffffffffffffffffff16600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603620003f6576200033a6200075960201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161480620003ae57506200037f6200075960201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b620003f0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003e79062000c1f565b60405180910390fd5b62000524565b600560149054906101000a900460ff1680156200044e57506200041e6200075960201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b8015620004a95750600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b1562000523576064620004c16200078360201b60201c565b620004cd919062000c9f565b620004de836200078d60201b60201c565b111562000522576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620005199062000d4d565b60405180910390fd5b5b5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036200057f57806002600082825462000572919062000d6f565b9250508190555062000655565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156200060e578381836040517fe450d38c000000000000000000000000000000000000000000000000000000008152600401620006059392919062000dbb565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550505b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620006a05780600260008282540392505081905550620006ed565b806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200074c919062000df8565b60405180910390a3505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000600254905090565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200085757607f821691505b6020821081036200086d576200086c6200080f565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620008d77fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000898565b620008e3868362000898565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620009306200092a6200092484620008fb565b62000905565b620008fb565b9050919050565b6000819050919050565b6200094c836200090f565b620009646200095b8262000937565b848454620008a5565b825550505050565b600090565b6200097b6200096c565b6200098881848462000941565b505050565b5b81811015620009b057620009a460008262000971565b6001810190506200098e565b5050565b601f821115620009ff57620009c98162000873565b620009d48462000888565b81016020851015620009e4578190505b620009fc620009f38562000888565b8301826200098d565b50505b505050565b600082821c905092915050565b600062000a246000198460080262000a04565b1980831691505092915050565b600062000a3f838362000a11565b9150826002028217905092915050565b62000a5a82620007d5565b67ffffffffffffffff81111562000a765762000a75620007e0565b5b62000a8282546200083e565b62000a8f828285620009b4565b600060209050601f83116001811462000ac7576000841562000ab2578287015190505b62000abe858262000a31565b86555062000b2e565b601f19841662000ad78662000873565b60005b8281101562000b015784890151825560018201915060208501945060208101905062000ada565b8683101562000b21578489015162000b1d601f89168262000a11565b8355505b6001600288020188555050505b505050505050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000b638262000b36565b9050919050565b62000b758162000b56565b82525050565b600060208201905062000b92600083018462000b6a565b92915050565b600082825260208201905092915050565b7f50617469656e6365202d2054726164696e67204e6f742053746172746564205960008201527f6574210000000000000000000000000000000000000000000000000000000000602082015250565b600062000c0760238362000b98565b915062000c148262000ba9565b604082019050919050565b6000602082019050818103600083015262000c3a8162000bf8565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000cac82620008fb565b915062000cb983620008fb565b92508262000ccc5762000ccb62000c41565b5b828204905092915050565b7f4c696d6974206f66203125206f66204d414a494e20666f72207468652066697260008201527f737420686f757273210000000000000000000000000000000000000000000000602082015250565b600062000d3560298362000b98565b915062000d428262000cd7565b604082019050919050565b6000602082019050818103600083015262000d688162000d26565b9050919050565b600062000d7c82620008fb565b915062000d8983620008fb565b925082820190508082111562000da45762000da362000c70565b5b92915050565b62000db581620008fb565b82525050565b600060608201905062000dd2600083018662000b6a565b62000de1602083018562000daa565b62000df0604083018462000daa565b949350505050565b600060208201905062000e0f600083018462000daa565b92915050565b6116648062000e256000396000f3fe608060405234801561001057600080fd5b506004361061010b5760003560e01c8063715018a6116100a2578063a9059cbb11610071578063a9059cbb14610298578063dd62ed3e146102c8578063e14f08d5146102f8578063ecef526814610302578063f2fde38b1461031e5761010b565b8063715018a6146102345780638da5cb5b1461023e57806395d89b411461025c578063a4d66daf1461027a5761010b565b806323b872dd116100de57806323b872dd14610198578063313ce567146101c8578063665a11ca146101e657806370a08231146102045761010b565b8063018770201461011057806306fdde031461012c578063095ea7b31461014a57806318160ddd1461017a575b600080fd5b61012a600480360381019061012591906110ae565b61033a565b005b610134610386565b604051610141919061116b565b60405180910390f35b610164600480360381019061015f91906111c3565b610418565b604051610171919061121e565b60405180910390f35b61018261043b565b60405161018f9190611248565b60405180910390f35b6101b260048036038101906101ad9190611263565b610445565b6040516101bf919061121e565b60405180910390f35b6101d0610474565b6040516101dd91906112d2565b60405180910390f35b6101ee61047d565b6040516101fb91906112fc565b60405180910390f35b61021e600480360381019061021991906110ae565b6104a3565b60405161022b9190611248565b60405180910390f35b61023c6104eb565b005b6102466104ff565b60405161025391906112fc565b60405180910390f35b610264610529565b604051610271919061116b565b60405180910390f35b6102826105bb565b60405161028f919061121e565b60405180910390f35b6102b260048036038101906102ad91906111c3565b6105ce565b6040516102bf919061121e565b60405180910390f35b6102e260048036038101906102dd9190611317565b6105f1565b6040516102ef9190611248565b60405180910390f35b610300610678565b005b61031c60048036038101906103179190611383565b61068a565b005b610338600480360381019061033391906110ae565b6106af565b005b610342610735565b80600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b606060038054610395906113df565b80601f01602080910402602001604051908101604052809291908181526020018280546103c1906113df565b801561040e5780601f106103e35761010080835404028352916020019161040e565b820191906000526020600020905b8154815290600101906020018083116103f157829003601f168201915b5050505050905090565b6000806104236107bc565b90506104308185856107c4565b600191505092915050565b6000600254905090565b6000806104506107bc565b905061045d8582856107d6565b61046885858561086a565b60019150509392505050565b60006012905090565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6104f3610735565b6104fd600061095e565b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054610538906113df565b80601f0160208091040260200160405190810160405280929190818152602001828054610564906113df565b80156105b15780601f10610586576101008083540402835291602001916105b1565b820191906000526020600020905b81548152906001019060200180831161059457829003601f168201915b5050505050905090565b600560149054906101000a900460ff1681565b6000806105d96107bc565b90506105e681858561086a565b600191505092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610680610735565b6106886104eb565b565b610692610735565b80600560146101000a81548160ff02191690831515021790555050565b6106b7610735565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036107295760006040517f1e4fbdf700000000000000000000000000000000000000000000000000000000815260040161072091906112fc565b60405180910390fd5b6107328161095e565b50565b61073d6107bc565b73ffffffffffffffffffffffffffffffffffffffff1661075b6104ff565b73ffffffffffffffffffffffffffffffffffffffff16146107ba5761077e6107bc565b6040517f118cdaa70000000000000000000000000000000000000000000000000000000081526004016107b191906112fc565b60405180910390fd5b565b600033905090565b6107d18383836001610a24565b505050565b60006107e284846105f1565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146108645781811015610854578281836040517ffb8f41b200000000000000000000000000000000000000000000000000000000815260040161084b93929190611410565b60405180910390fd5b61086384848484036000610a24565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036108dc5760006040517f96c6fd1e0000000000000000000000000000000000000000000000000000000081526004016108d391906112fc565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361094e5760006040517fec442f0500000000000000000000000000000000000000000000000000000000815260040161094591906112fc565b60405180910390fd5b610959838383610bfb565b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603610a965760006040517fe602df05000000000000000000000000000000000000000000000000000000008152600401610a8d91906112fc565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610b085760006040517f94280d62000000000000000000000000000000000000000000000000000000008152600401610aff91906112fc565b60405180910390fd5b81600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508015610bf5578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051610bec9190611248565b60405180910390a35b50505050565b610c06838383610e26565b600073ffffffffffffffffffffffffffffffffffffffff16600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603610d1357610c646104ff565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161480610ccf5750610ca06104ff565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b610d0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d05906114b9565b60405180910390fd5b610e21565b600560149054906101000a900460ff168015610d625750610d326104ff565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b8015610dbc5750600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b15610e20576064610dcb61043b565b610dd59190611537565b610dde836104a3565b1115610e1f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e16906115da565b60405180910390fd5b5b5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610e78578060026000828254610e6c91906115fa565b92505081905550610f4b565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610f04578381836040517fe450d38c000000000000000000000000000000000000000000000000000000008152600401610efb93929190611410565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550505b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f945780600260008282540392505081905550610fe1565b806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161103e9190611248565b60405180910390a3505050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061107b82611050565b9050919050565b61108b81611070565b811461109657600080fd5b50565b6000813590506110a881611082565b92915050565b6000602082840312156110c4576110c361104b565b5b60006110d284828501611099565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156111155780820151818401526020810190506110fa565b60008484015250505050565b6000601f19601f8301169050919050565b600061113d826110db565b61114781856110e6565b93506111578185602086016110f7565b61116081611121565b840191505092915050565b600060208201905081810360008301526111858184611132565b905092915050565b6000819050919050565b6111a08161118d565b81146111ab57600080fd5b50565b6000813590506111bd81611197565b92915050565b600080604083850312156111da576111d961104b565b5b60006111e885828601611099565b92505060206111f9858286016111ae565b9150509250929050565b60008115159050919050565b61121881611203565b82525050565b6000602082019050611233600083018461120f565b92915050565b6112428161118d565b82525050565b600060208201905061125d6000830184611239565b92915050565b60008060006060848603121561127c5761127b61104b565b5b600061128a86828701611099565b935050602061129b86828701611099565b92505060406112ac868287016111ae565b9150509250925092565b600060ff82169050919050565b6112cc816112b6565b82525050565b60006020820190506112e760008301846112c3565b92915050565b6112f681611070565b82525050565b600060208201905061131160008301846112ed565b92915050565b6000806040838503121561132e5761132d61104b565b5b600061133c85828601611099565b925050602061134d85828601611099565b9150509250929050565b61136081611203565b811461136b57600080fd5b50565b60008135905061137d81611357565b92915050565b6000602082840312156113995761139861104b565b5b60006113a78482850161136e565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806113f757607f821691505b60208210810361140a576114096113b0565b5b50919050565b600060608201905061142560008301866112ed565b6114326020830185611239565b61143f6040830184611239565b949350505050565b7f50617469656e6365202d2054726164696e67204e6f742053746172746564205960008201527f6574210000000000000000000000000000000000000000000000000000000000602082015250565b60006114a36023836110e6565b91506114ae82611447565b604082019050919050565b600060208201905081810360008301526114d281611496565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006115428261118d565b915061154d8361118d565b92508261155d5761155c6114d9565b5b828204905092915050565b7f4c696d6974206f66203125206f66204d414a494e20666f72207468652066697260008201527f737420686f757273210000000000000000000000000000000000000000000000602082015250565b60006115c46029836110e6565b91506115cf82611568565b604082019050919050565b600060208201905081810360008301526115f3816115b7565b9050919050565b60006116058261118d565b91506116108361118d565b925082820190508082111561162857611627611508565b5b9291505056fea264697066735822122079a035013b34fbdbe2836ba8c1c2003d182e10a69c0ec92f680137d52b50197864736f6c63430008160033
Deployed Bytecode
0x608060405234801561001057600080fd5b506004361061010b5760003560e01c8063715018a6116100a2578063a9059cbb11610071578063a9059cbb14610298578063dd62ed3e146102c8578063e14f08d5146102f8578063ecef526814610302578063f2fde38b1461031e5761010b565b8063715018a6146102345780638da5cb5b1461023e57806395d89b411461025c578063a4d66daf1461027a5761010b565b806323b872dd116100de57806323b872dd14610198578063313ce567146101c8578063665a11ca146101e657806370a08231146102045761010b565b8063018770201461011057806306fdde031461012c578063095ea7b31461014a57806318160ddd1461017a575b600080fd5b61012a600480360381019061012591906110ae565b61033a565b005b610134610386565b604051610141919061116b565b60405180910390f35b610164600480360381019061015f91906111c3565b610418565b604051610171919061121e565b60405180910390f35b61018261043b565b60405161018f9190611248565b60405180910390f35b6101b260048036038101906101ad9190611263565b610445565b6040516101bf919061121e565b60405180910390f35b6101d0610474565b6040516101dd91906112d2565b60405180910390f35b6101ee61047d565b6040516101fb91906112fc565b60405180910390f35b61021e600480360381019061021991906110ae565b6104a3565b60405161022b9190611248565b60405180910390f35b61023c6104eb565b005b6102466104ff565b60405161025391906112fc565b60405180910390f35b610264610529565b604051610271919061116b565b60405180910390f35b6102826105bb565b60405161028f919061121e565b60405180910390f35b6102b260048036038101906102ad91906111c3565b6105ce565b6040516102bf919061121e565b60405180910390f35b6102e260048036038101906102dd9190611317565b6105f1565b6040516102ef9190611248565b60405180910390f35b610300610678565b005b61031c60048036038101906103179190611383565b61068a565b005b610338600480360381019061033391906110ae565b6106af565b005b610342610735565b80600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b606060038054610395906113df565b80601f01602080910402602001604051908101604052809291908181526020018280546103c1906113df565b801561040e5780601f106103e35761010080835404028352916020019161040e565b820191906000526020600020905b8154815290600101906020018083116103f157829003601f168201915b5050505050905090565b6000806104236107bc565b90506104308185856107c4565b600191505092915050565b6000600254905090565b6000806104506107bc565b905061045d8582856107d6565b61046885858561086a565b60019150509392505050565b60006012905090565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6104f3610735565b6104fd600061095e565b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054610538906113df565b80601f0160208091040260200160405190810160405280929190818152602001828054610564906113df565b80156105b15780601f10610586576101008083540402835291602001916105b1565b820191906000526020600020905b81548152906001019060200180831161059457829003601f168201915b5050505050905090565b600560149054906101000a900460ff1681565b6000806105d96107bc565b90506105e681858561086a565b600191505092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610680610735565b6106886104eb565b565b610692610735565b80600560146101000a81548160ff02191690831515021790555050565b6106b7610735565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036107295760006040517f1e4fbdf700000000000000000000000000000000000000000000000000000000815260040161072091906112fc565b60405180910390fd5b6107328161095e565b50565b61073d6107bc565b73ffffffffffffffffffffffffffffffffffffffff1661075b6104ff565b73ffffffffffffffffffffffffffffffffffffffff16146107ba5761077e6107bc565b6040517f118cdaa70000000000000000000000000000000000000000000000000000000081526004016107b191906112fc565b60405180910390fd5b565b600033905090565b6107d18383836001610a24565b505050565b60006107e284846105f1565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146108645781811015610854578281836040517ffb8f41b200000000000000000000000000000000000000000000000000000000815260040161084b93929190611410565b60405180910390fd5b61086384848484036000610a24565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036108dc5760006040517f96c6fd1e0000000000000000000000000000000000000000000000000000000081526004016108d391906112fc565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361094e5760006040517fec442f0500000000000000000000000000000000000000000000000000000000815260040161094591906112fc565b60405180910390fd5b610959838383610bfb565b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603610a965760006040517fe602df05000000000000000000000000000000000000000000000000000000008152600401610a8d91906112fc565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610b085760006040517f94280d62000000000000000000000000000000000000000000000000000000008152600401610aff91906112fc565b60405180910390fd5b81600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508015610bf5578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051610bec9190611248565b60405180910390a35b50505050565b610c06838383610e26565b600073ffffffffffffffffffffffffffffffffffffffff16600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603610d1357610c646104ff565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161480610ccf5750610ca06104ff565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b610d0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d05906114b9565b60405180910390fd5b610e21565b600560149054906101000a900460ff168015610d625750610d326104ff565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b8015610dbc5750600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b15610e20576064610dcb61043b565b610dd59190611537565b610dde836104a3565b1115610e1f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e16906115da565b60405180910390fd5b5b5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610e78578060026000828254610e6c91906115fa565b92505081905550610f4b565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610f04578381836040517fe450d38c000000000000000000000000000000000000000000000000000000008152600401610efb93929190611410565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550505b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f945780600260008282540392505081905550610fe1565b806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161103e9190611248565b60405180910390a3505050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061107b82611050565b9050919050565b61108b81611070565b811461109657600080fd5b50565b6000813590506110a881611082565b92915050565b6000602082840312156110c4576110c361104b565b5b60006110d284828501611099565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156111155780820151818401526020810190506110fa565b60008484015250505050565b6000601f19601f8301169050919050565b600061113d826110db565b61114781856110e6565b93506111578185602086016110f7565b61116081611121565b840191505092915050565b600060208201905081810360008301526111858184611132565b905092915050565b6000819050919050565b6111a08161118d565b81146111ab57600080fd5b50565b6000813590506111bd81611197565b92915050565b600080604083850312156111da576111d961104b565b5b60006111e885828601611099565b92505060206111f9858286016111ae565b9150509250929050565b60008115159050919050565b61121881611203565b82525050565b6000602082019050611233600083018461120f565b92915050565b6112428161118d565b82525050565b600060208201905061125d6000830184611239565b92915050565b60008060006060848603121561127c5761127b61104b565b5b600061128a86828701611099565b935050602061129b86828701611099565b92505060406112ac868287016111ae565b9150509250925092565b600060ff82169050919050565b6112cc816112b6565b82525050565b60006020820190506112e760008301846112c3565b92915050565b6112f681611070565b82525050565b600060208201905061131160008301846112ed565b92915050565b6000806040838503121561132e5761132d61104b565b5b600061133c85828601611099565b925050602061134d85828601611099565b9150509250929050565b61136081611203565b811461136b57600080fd5b50565b60008135905061137d81611357565b92915050565b6000602082840312156113995761139861104b565b5b60006113a78482850161136e565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806113f757607f821691505b60208210810361140a576114096113b0565b5b50919050565b600060608201905061142560008301866112ed565b6114326020830185611239565b61143f6040830184611239565b949350505050565b7f50617469656e6365202d2054726164696e67204e6f742053746172746564205960008201527f6574210000000000000000000000000000000000000000000000000000000000602082015250565b60006114a36023836110e6565b91506114ae82611447565b604082019050919050565b600060208201905081810360008301526114d281611496565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006115428261118d565b915061154d8361118d565b92508261155d5761155c6114d9565b5b828204905092915050565b7f4c696d6974206f66203125206f66204d414a494e20666f72207468652066697260008201527f737420686f757273210000000000000000000000000000000000000000000000602082015250565b60006115c46029836110e6565b91506115cf82611568565b604082019050919050565b600060208201905081810360008301526115f3816115b7565b9050919050565b60006116058261118d565b91506116108361118d565b925082820190508082111561162857611627611508565b5b9291505056fea264697066735822122079a035013b34fbdbe2836ba8c1c2003d182e10a69c0ec92f680137d52b50197864736f6c63430008160033
Deployed Bytecode Sourcemap
183:1496:6:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;728:118;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2095:91:1;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4388:190;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3197:99;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5156:249;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3048:84;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;352:28:6;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3359:118:1;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2361:103:4;;;:::i;:::-;;1686:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2305:95:1;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;321:24:6;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3682:182:1;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3927:142;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1587:89:6;;;:::i;:::-;;588:83;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2619:220:4;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;728:118:6;1572:13:4;:11;:13::i;:::-;824:14:6::1;808:13;;:30;;;;;;;;;;;;;;;;;;728:118:::0;:::o;2095:91:1:-;2140:13;2173:5;2166:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2095:91;:::o;4388:190::-;4461:4;4478:13;4494:12;:10;:12::i;:::-;4478:28;;4517:31;4526:5;4533:7;4542:5;4517:8;:31::i;:::-;4566:4;4559:11;;;4388:190;;;;:::o;3197:99::-;3249:7;3276:12;;3269:19;;3197:99;:::o;5156:249::-;5243:4;5260:15;5278:12;:10;:12::i;:::-;5260:30;;5301:37;5317:4;5323:7;5332:5;5301:15;:37::i;:::-;5349:26;5359:4;5365:2;5369:5;5349:9;:26::i;:::-;5393:4;5386:11;;;5156:249;;;;;:::o;3048:84::-;3097:5;3122:2;3115:9;;3048:84;:::o;352:28:6:-;;;;;;;;;;;;;:::o;3359:118:1:-;3424:7;3451:9;:18;3461:7;3451:18;;;;;;;;;;;;;;;;3444:25;;3359:118;;;:::o;2361:103:4:-;1572:13;:11;:13::i;:::-;2426:30:::1;2453:1;2426:18;:30::i;:::-;2361:103::o:0;1686:87::-;1732:7;1759:6;;;;;;;;;;;1752:13;;1686:87;:::o;2305:95:1:-;2352:13;2385:7;2378:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2305:95;:::o;321:24:6:-;;;;;;;;;;;;;:::o;3682:182:1:-;3751:4;3768:13;3784:12;:10;:12::i;:::-;3768:28;;3807:27;3817:5;3824:2;3828:5;3807:9;:27::i;:::-;3852:4;3845:11;;;3682:182;;;;:::o;3927:142::-;4007:7;4034:11;:18;4046:5;4034:18;;;;;;;;;;;;;;;:27;4053:7;4034:27;;;;;;;;;;;;;;;;4027:34;;3927:142;;;;:::o;1587:89:6:-;1572:13:4;:11;:13::i;:::-;1649:19:6::1;:17;:19::i;:::-;1587:89::o:0;588:83::-;1572:13:4;:11;:13::i;:::-;657:6:6::1;649:5;;:14;;;;;;;;;;;;;;;;;;588:83:::0;:::o;2619:220:4:-;1572:13;:11;:13::i;:::-;2724:1:::1;2704:22;;:8;:22;;::::0;2700:93:::1;;2778:1;2750:31;;;;;;;;;;;:::i;:::-;;;;;;;;2700:93;2803:28;2822:8;2803:18;:28::i;:::-;2619:220:::0;:::o;1851:166::-;1922:12;:10;:12::i;:::-;1911:23;;:7;:5;:7::i;:::-;:23;;;1907:103;;1985:12;:10;:12::i;:::-;1958:40;;;;;;;;;;;:::i;:::-;;;;;;;;1907:103;1851:166::o;672:98:0:-;725:7;752:10;745:17;;672:98;:::o;9215:130:1:-;9300:37;9309:5;9316:7;9325:5;9332:4;9300:8;:37::i;:::-;9215:130;;;:::o;10931:487::-;11031:24;11058:25;11068:5;11075:7;11058:9;:25::i;:::-;11031:52;;11118:17;11098:16;:37;11094:317;;11175:5;11156:16;:24;11152:132;;;11235:7;11244:16;11262:5;11208:60;;;;;;;;;;;;;:::i;:::-;;;;;;;;11152:132;11327:57;11336:5;11343:7;11371:5;11352:16;:24;11378:5;11327:8;:57::i;:::-;11094:317;11020:398;10931:487;;;:::o;5790:308::-;5890:1;5874:18;;:4;:18;;;5870:88;;5943:1;5916:30;;;;;;;;;;;:::i;:::-;;;;;;;;5870:88;5986:1;5972:16;;:2;:16;;;5968:88;;6041:1;6012:32;;;;;;;;;;;:::i;:::-;;;;;;;;5968:88;6066:24;6074:4;6080:2;6084:5;6066:7;:24::i;:::-;5790:308;;;:::o;2999:191:4:-;3073:16;3092:6;;;;;;;;;;;3073:25;;3118:8;3109:6;;:17;;;;;;;;;;;;;;;;;;3173:8;3142:40;;3163:8;3142:40;;;;;;;;;;;;3062:128;2999:191;:::o;10196:443:1:-;10326:1;10309:19;;:5;:19;;;10305:91;;10381:1;10352:32;;;;;;;;;;;:::i;:::-;;;;;;;;10305:91;10429:1;10410:21;;:7;:21;;;10406:92;;10483:1;10455:31;;;;;;;;;;;:::i;:::-;;;;;;;;10406:92;10538:5;10508:11;:18;10520:5;10508:18;;;;;;;;;;;;;;;:27;10527:7;10508:27;;;;;;;;;;;;;;;:35;;;;10558:9;10554:78;;;10605:7;10589:31;;10598:5;10589:31;;;10614:5;10589:31;;;;;;:::i;:::-;;;;;;;;10554:78;10196:443;;;;:::o;854:696:6:-;984:31;998:4;1004:2;1008:6;984:13;:31::i;:::-;1054:1;1029:27;;:13;;;;;;;;;;;:27;;;1026:160;;1089:7;:5;:7::i;:::-;1081:15;;:4;:15;;;:32;;;;1106:7;:5;:7::i;:::-;1100:13;;:2;:13;;;1081:32;1073:80;;;;;;;;;;;;:::i;:::-;;;;;;;;;1168:7;;1026:160;1200:5;;;;;;;;;;;:24;;;;;1217:7;:5;:7::i;:::-;1209:15;;:4;:15;;;;1200:24;:47;;;;;1234:13;;;;;;;;;;;1228:19;;:2;:19;;;;1200:47;1196:347;;;1451:3;1435:13;:11;:13::i;:::-;:19;;;;:::i;:::-;1418:13;1428:2;1418:9;:13::i;:::-;:36;;1392:139;;;;;;;;;;;;:::i;:::-;;;;;;;;;1196:347;854:696;;;;:::o;6422:1135:1:-;6528:1;6512:18;;:4;:18;;;6508:552;;6666:5;6650:12;;:21;;;;;;;:::i;:::-;;;;;;;;6508:552;;;6704:19;6726:9;:15;6736:4;6726:15;;;;;;;;;;;;;;;;6704:37;;6774:5;6760:11;:19;6756:117;;;6832:4;6838:11;6851:5;6807:50;;;;;;;;;;;;;:::i;:::-;;;;;;;;6756:117;7028:5;7014:11;:19;6996:9;:15;7006:4;6996:15;;;;;;;;;;;;;;;:37;;;;6689:371;6508:552;7090:1;7076:16;;:2;:16;;;7072:435;;7258:5;7242:12;;:21;;;;;;;;;;;7072:435;;;7475:5;7458:9;:13;7468:2;7458:13;;;;;;;;;;;;;;;;:22;;;;;;;;;;;7072:435;7539:2;7524:25;;7533:4;7524:25;;;7543:5;7524:25;;;;;;:::i;:::-;;;;;;;;6422:1135;;;:::o;88:117:7:-;197:1;194;187:12;334:126;371:7;411:42;404:5;400:54;389:65;;334:126;;;:::o;466:96::-;503:7;532:24;550:5;532:24;:::i;:::-;521:35;;466:96;;;:::o;568:122::-;641:24;659:5;641:24;:::i;:::-;634:5;631:35;621:63;;680:1;677;670:12;621:63;568:122;:::o;696:139::-;742:5;780:6;767:20;758:29;;796:33;823:5;796:33;:::i;:::-;696:139;;;;:::o;841:329::-;900:6;949:2;937:9;928:7;924:23;920:32;917:119;;;955:79;;:::i;:::-;917:119;1075:1;1100:53;1145:7;1136:6;1125:9;1121:22;1100:53;:::i;:::-;1090:63;;1046:117;841:329;;;;:::o;1176:99::-;1228:6;1262:5;1256:12;1246:22;;1176:99;;;:::o;1281:169::-;1365:11;1399:6;1394:3;1387:19;1439:4;1434:3;1430:14;1415:29;;1281:169;;;;:::o;1456:246::-;1537:1;1547:113;1561:6;1558:1;1555:13;1547:113;;;1646:1;1641:3;1637:11;1631:18;1627:1;1622:3;1618:11;1611:39;1583:2;1580:1;1576:10;1571:15;;1547:113;;;1694:1;1685:6;1680:3;1676:16;1669:27;1518:184;1456:246;;;:::o;1708:102::-;1749:6;1800:2;1796:7;1791:2;1784:5;1780:14;1776:28;1766:38;;1708:102;;;:::o;1816:377::-;1904:3;1932:39;1965:5;1932:39;:::i;:::-;1987:71;2051:6;2046:3;1987:71;:::i;:::-;1980:78;;2067:65;2125:6;2120:3;2113:4;2106:5;2102:16;2067:65;:::i;:::-;2157:29;2179:6;2157:29;:::i;:::-;2152:3;2148:39;2141:46;;1908:285;1816:377;;;;:::o;2199:313::-;2312:4;2350:2;2339:9;2335:18;2327:26;;2399:9;2393:4;2389:20;2385:1;2374:9;2370:17;2363:47;2427:78;2500:4;2491:6;2427:78;:::i;:::-;2419:86;;2199:313;;;;:::o;2518:77::-;2555:7;2584:5;2573:16;;2518:77;;;:::o;2601:122::-;2674:24;2692:5;2674:24;:::i;:::-;2667:5;2664:35;2654:63;;2713:1;2710;2703:12;2654:63;2601:122;:::o;2729:139::-;2775:5;2813:6;2800:20;2791:29;;2829:33;2856:5;2829:33;:::i;:::-;2729:139;;;;:::o;2874:474::-;2942:6;2950;2999:2;2987:9;2978:7;2974:23;2970:32;2967:119;;;3005:79;;:::i;:::-;2967:119;3125:1;3150:53;3195:7;3186:6;3175:9;3171:22;3150:53;:::i;:::-;3140:63;;3096:117;3252:2;3278:53;3323:7;3314:6;3303:9;3299:22;3278:53;:::i;:::-;3268:63;;3223:118;2874:474;;;;;:::o;3354:90::-;3388:7;3431:5;3424:13;3417:21;3406:32;;3354:90;;;:::o;3450:109::-;3531:21;3546:5;3531:21;:::i;:::-;3526:3;3519:34;3450:109;;:::o;3565:210::-;3652:4;3690:2;3679:9;3675:18;3667:26;;3703:65;3765:1;3754:9;3750:17;3741:6;3703:65;:::i;:::-;3565:210;;;;:::o;3781:118::-;3868:24;3886:5;3868:24;:::i;:::-;3863:3;3856:37;3781:118;;:::o;3905:222::-;3998:4;4036:2;4025:9;4021:18;4013:26;;4049:71;4117:1;4106:9;4102:17;4093:6;4049:71;:::i;:::-;3905:222;;;;:::o;4133:619::-;4210:6;4218;4226;4275:2;4263:9;4254:7;4250:23;4246:32;4243:119;;;4281:79;;:::i;:::-;4243:119;4401:1;4426:53;4471:7;4462:6;4451:9;4447:22;4426:53;:::i;:::-;4416:63;;4372:117;4528:2;4554:53;4599:7;4590:6;4579:9;4575:22;4554:53;:::i;:::-;4544:63;;4499:118;4656:2;4682:53;4727:7;4718:6;4707:9;4703:22;4682:53;:::i;:::-;4672:63;;4627:118;4133:619;;;;;:::o;4758:86::-;4793:7;4833:4;4826:5;4822:16;4811:27;;4758:86;;;:::o;4850:112::-;4933:22;4949:5;4933:22;:::i;:::-;4928:3;4921:35;4850:112;;:::o;4968:214::-;5057:4;5095:2;5084:9;5080:18;5072:26;;5108:67;5172:1;5161:9;5157:17;5148:6;5108:67;:::i;:::-;4968:214;;;;:::o;5188:118::-;5275:24;5293:5;5275:24;:::i;:::-;5270:3;5263:37;5188:118;;:::o;5312:222::-;5405:4;5443:2;5432:9;5428:18;5420:26;;5456:71;5524:1;5513:9;5509:17;5500:6;5456:71;:::i;:::-;5312:222;;;;:::o;5540:474::-;5608:6;5616;5665:2;5653:9;5644:7;5640:23;5636:32;5633:119;;;5671:79;;:::i;:::-;5633:119;5791:1;5816:53;5861:7;5852:6;5841:9;5837:22;5816:53;:::i;:::-;5806:63;;5762:117;5918:2;5944:53;5989:7;5980:6;5969:9;5965:22;5944:53;:::i;:::-;5934:63;;5889:118;5540:474;;;;;:::o;6020:116::-;6090:21;6105:5;6090:21;:::i;:::-;6083:5;6080:32;6070:60;;6126:1;6123;6116:12;6070:60;6020:116;:::o;6142:133::-;6185:5;6223:6;6210:20;6201:29;;6239:30;6263:5;6239:30;:::i;:::-;6142:133;;;;:::o;6281:323::-;6337:6;6386:2;6374:9;6365:7;6361:23;6357:32;6354:119;;;6392:79;;:::i;:::-;6354:119;6512:1;6537:50;6579:7;6570:6;6559:9;6555:22;6537:50;:::i;:::-;6527:60;;6483:114;6281:323;;;;:::o;6610:180::-;6658:77;6655:1;6648:88;6755:4;6752:1;6745:15;6779:4;6776:1;6769:15;6796:320;6840:6;6877:1;6871:4;6867:12;6857:22;;6924:1;6918:4;6914:12;6945:18;6935:81;;7001:4;6993:6;6989:17;6979:27;;6935:81;7063:2;7055:6;7052:14;7032:18;7029:38;7026:84;;7082:18;;:::i;:::-;7026:84;6847:269;6796:320;;;:::o;7122:442::-;7271:4;7309:2;7298:9;7294:18;7286:26;;7322:71;7390:1;7379:9;7375:17;7366:6;7322:71;:::i;:::-;7403:72;7471:2;7460:9;7456:18;7447:6;7403:72;:::i;:::-;7485;7553:2;7542:9;7538:18;7529:6;7485:72;:::i;:::-;7122:442;;;;;;:::o;7570:222::-;7710:34;7706:1;7698:6;7694:14;7687:58;7779:5;7774:2;7766:6;7762:15;7755:30;7570:222;:::o;7798:366::-;7940:3;7961:67;8025:2;8020:3;7961:67;:::i;:::-;7954:74;;8037:93;8126:3;8037:93;:::i;:::-;8155:2;8150:3;8146:12;8139:19;;7798:366;;;:::o;8170:419::-;8336:4;8374:2;8363:9;8359:18;8351:26;;8423:9;8417:4;8413:20;8409:1;8398:9;8394:17;8387:47;8451:131;8577:4;8451:131;:::i;:::-;8443:139;;8170:419;;;:::o;8595:180::-;8643:77;8640:1;8633:88;8740:4;8737:1;8730:15;8764:4;8761:1;8754:15;8781:180;8829:77;8826:1;8819:88;8926:4;8923:1;8916:15;8950:4;8947:1;8940:15;8967:185;9007:1;9024:20;9042:1;9024:20;:::i;:::-;9019:25;;9058:20;9076:1;9058:20;:::i;:::-;9053:25;;9097:1;9087:35;;9102:18;;:::i;:::-;9087:35;9144:1;9141;9137:9;9132:14;;8967:185;;;;:::o;9158:228::-;9298:34;9294:1;9286:6;9282:14;9275:58;9367:11;9362:2;9354:6;9350:15;9343:36;9158:228;:::o;9392:366::-;9534:3;9555:67;9619:2;9614:3;9555:67;:::i;:::-;9548:74;;9631:93;9720:3;9631:93;:::i;:::-;9749:2;9744:3;9740:12;9733:19;;9392:366;;;:::o;9764:419::-;9930:4;9968:2;9957:9;9953:18;9945:26;;10017:9;10011:4;10007:20;10003:1;9992:9;9988:17;9981:47;10045:131;10171:4;10045:131;:::i;:::-;10037:139;;9764:419;;;:::o;10189:191::-;10229:3;10248:20;10266:1;10248:20;:::i;:::-;10243:25;;10282:20;10300:1;10282:20;:::i;:::-;10277:25;;10325:1;10322;10318:9;10311:16;;10346:3;10343:1;10340:10;10337:36;;;10353:18;;:::i;:::-;10337:36;10189:191;;;;:::o
Swarm Source
ipfs://79a035013b34fbdbe2836ba8c1c2003d182e10a69c0ec92f680137d52b501978
Loading...
Loading
Loading...
Loading
Loading...
Loading
Net Worth in USD
$0.00
Net Worth in AVAX
Multichain Portfolio | 33 Chains
| Chain | Token | Portfolio % | Price | Amount | Value |
|---|
Loading...
Loading
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.