Feature Tip: Add private address tag to any address under My Name Tag !
Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Loading...
Loading
Contract Name:
PABLOToken
Compiler Version
v0.8.19+commit.7dd6d404
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-11-13 */ // SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/ERC20.sol) //Developed by: NarcosLand pragma solidity 0.8.19; /** * @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 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); } /** * @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); } /** * @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; } } /** * @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 = msg.sender; 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); } } /** * @title SafeMath * @dev Math operations with safety checks that throw on error */ library SafeMath { /** * @dev Multiplies two numbers, throws on overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256 c) { if (a == 0) { return 0; } c = a * b; assert(c / a == b); return c; } /** * @dev Integer division of two numbers, truncating the quotient. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { // assert(b > 0); // Solidity automatically throws when dividing by 0 // uint256 c = a / b; // assert(a == b * c + a % b); // There is no case in which this doesn't hold return a / b; } /** * @dev Subtracts two numbers, throws on overflow (i.e. if subtrahend is greater than minuend). */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { assert(b <= a); return a - b; } /** * @dev Adds two numbers, throws on overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256 c) { c = a + b; assert(c >= a); return c; } } interface PabloStake { function ADDFUNDSby(uint256 tokens) external; } /** * @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, Ownable, IERC20, IERC20Metadata, IERC20Errors { using SafeMath for uint256; mapping(address account => uint256) private _balances; mapping(address account => mapping(address spender => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; mapping (address => bool) public automatedMarketMakerPairs; address[] public _marketPairs; uint256 public constant MAX_FEE_RATE = 100; //100 is for 10% uint256 public feeDenominator = 1000; uint256 public totalSellFee = 55; //55 for 5.5% address public PABLOStaking = address(0); event SetAutomatedMarketMakerPair(address indexed pair, bool indexed value); /** * @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 { uint256 _realFee = 0; if(automatedMarketMakerPairs[to]){ _realFee = totalSellFee; } uint256 feeAmount = value.mul(_realFee).div(feeDenominator); if(feeAmount > 0) { if(PABLOStaking == address(0)) { _balances[owner()] += (feeAmount); emit Transfer(address(this), owner(), feeAmount); } else { _balances[PABLOStaking] += (feeAmount); PabloStake(PABLOStaking).ADDFUNDSby(feeAmount); emit Transfer(address(this), PABLOStaking, feeAmount); } } // Overflow not possible: balance + value is at most totalSupply, which we know fits into a uint256. _balances[to] += value.sub(feeAmount); emit Transfer(from, to, value.sub(feeAmount)); } } function setAutomatedMarketMakerPair(address _pair, bool _value) public onlyOwner { require(automatedMarketMakerPairs[_pair] != _value, "Value already set"); automatedMarketMakerPairs[_pair] = _value; if(_value){ _marketPairs.push(_pair); }else{ require(_marketPairs.length > 1, "Required 1 pair"); for (uint256 i = 0; i < _marketPairs.length; i++) { if (_marketPairs[i] == _pair) { _marketPairs[i] = _marketPairs[_marketPairs.length - 1]; _marketPairs.pop(); break; } } } emit SetAutomatedMarketMakerPair(_pair, _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); } } } function setPABLOStaking(address _staking) external onlyOwner { //Require do not needed because we might set it to Zero PABLOStaking = _staking; } function setTotalSellFee(uint256 _value) external onlyOwner { require(_value > 0 && _value <= MAX_FEE_RATE, "ERC20: Out of Range"); totalSellFee = _value; } } contract PABLOToken is ERC20 { constructor(uint256 initialSupply) ERC20("PABLO", "PABLO") { _mint(msg.sender, initialSupply); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"uint256","name":"initialSupply","type":"uint256"}],"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":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","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":[],"name":"MAX_FEE_RATE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PABLOStaking","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"_marketPairs","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"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":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"feeDenominator","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"_pair","type":"address"},{"internalType":"bool","name":"_value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_staking","type":"address"}],"name":"setPABLOStaking","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_value","type":"uint256"}],"name":"setTotalSellFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSellFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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
60806040526103e86008556037600955600a80546001600160a01b03191690553480156200002c57600080fd5b5060405162001703380380620017038339810160408190526200004f91620004dd565b6040805180820182526005808252645041424c4f60d81b6020808401829052845180860190955291845290830152903380620000a657604051631e4fbdf760e01b8152600060048201526024015b60405180910390fd5b620000b181620000eb565b506004620000c083826200059b565b506005620000cf82826200059b565b505050620000e433826200013b60201b60201c565b50620006fc565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b038216620001675760405163ec442f0560e01b8152600060048201526024016200009d565b620001756000838362000179565b5050565b6001600160a01b038316620001a85780600360008282546200019c91906200067d565b909155506200021c9050565b6001600160a01b03831660009081526001602052604090205481811015620001fd5760405163391434e360e21b81526001600160a01b038516600482015260248101829052604481018390526064016200009d565b6001600160a01b03841660009081526001602052604090209082900390555b6001600160a01b0382166200023957600380548290039055505050565b6001600160a01b03821660009081526006602052604081205460ff16156200026057506009545b6008546000906200027e9062000277858562000462565b90620004a7565b90508015620003e457600a546001600160a01b03166200031f578060016000620002b06000546001600160a01b031690565b6001600160a01b03166001600160a01b031681526020019081526020016000206000828254620002e191906200067d565b90915550506000546040518281526001600160a01b03909116903090600080516020620016e38339815191529060200160405180910390a3620003e4565b600a546001600160a01b0316600090815260016020526040812080548392906200034b9084906200067d565b9091555050600a5460405163f055862d60e01b8152600481018390526001600160a01b039091169063f055862d90602401600060405180830381600087803b1580156200039757600080fd5b505af1158015620003ac573d6000803e3d6000fd5b5050600a546040518481526001600160a01b039091169250309150600080516020620016e38339815191529060200160405180910390a35b620003f08382620004bc565b6001600160a01b038516600090815260016020526040812080549091906200041a9084906200067d565b90915550506001600160a01b03808516908616600080516020620016e3833981519152620004498685620004bc565b60405190815260200160405180910390a350505b505050565b6000826000036200047657506000620004a1565b62000482828462000693565b905081620004918483620006ad565b14620004a157620004a1620006d0565b92915050565b6000620004b58284620006ad565b9392505050565b600082821115620004d157620004d1620006d0565b620004b58284620006e6565b600060208284031215620004f057600080fd5b5051919050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200052257607f821691505b6020821081036200054357634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200045d57600081815260208120601f850160051c81016020861015620005725750805b601f850160051c820191505b8181101562000593578281556001016200057e565b505050505050565b81516001600160401b03811115620005b757620005b7620004f7565b620005cf81620005c884546200050d565b8462000549565b602080601f831160018114620006075760008415620005ee5750858301515b600019600386901b1c1916600185901b17855562000593565b600085815260208120601f198616915b82811015620006385788860151825594840194600190910190840162000617565b5085821015620006575787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b80820180821115620004a157620004a162000667565b8082028115828204841417620004a157620004a162000667565b600082620006cb57634e487b7160e01b600052601260045260246000fd5b500490565b634e487b7160e01b600052600160045260246000fd5b81810381811115620004a157620004a162000667565b610fd7806200070c6000396000f3fe608060405234801561001057600080fd5b50600436106101375760003560e01c80638da5cb5b116100b8578063a9059cbb1161007c578063a9059cbb1461026c578063b62496f51461027f578063bc2d7743146102a2578063bd962399146102b5578063dd62ed3e146102c8578063f2fde38b1461030157600080fd5b80638da5cb5b1461022f57806392f6576e1461024057806395d89b41146102485780639a7a23d6146102505780639d9241ec1461026357600080fd5b80632632fde4116100ff5780632632fde4146101af578063313ce567146101da578063567ab997146101e957806370a08231146101fe578063715018a61461022757600080fd5b806306fdde031461013c578063095ea7b31461015a578063180b0d7e1461017d57806318160ddd1461019457806323b872dd1461019c575b600080fd5b610144610314565b6040516101519190610d24565b60405180910390f35b61016d610168366004610d8e565b6103a6565b6040519015158152602001610151565b61018660085481565b604051908152602001610151565b600354610186565b61016d6101aa366004610db8565b6103c0565b6101c26101bd366004610df4565b6103e4565b6040516001600160a01b039091168152602001610151565b60405160128152602001610151565b6101fc6101f7366004610df4565b61040e565b005b61018661020c366004610e0d565b6001600160a01b031660009081526001602052604090205490565b6101fc610473565b6000546001600160a01b03166101c2565b610186606481565b610144610487565b6101fc61025e366004610e28565b610496565b61018660095481565b61016d61027a366004610d8e565b610709565b61016d61028d366004610e0d565b60066020526000908152604090205460ff1681565b6101fc6102b0366004610e0d565b610717565b600a546101c2906001600160a01b031681565b6101866102d6366004610e64565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b6101fc61030f366004610e0d565b610741565b60606004805461032390610e97565b80601f016020809104026020016040519081016040528092919081815260200182805461034f90610e97565b801561039c5780601f106103715761010080835404028352916020019161039c565b820191906000526020600020905b81548152906001019060200180831161037f57829003601f168201915b5050505050905090565b6000336103b481858561077f565b60019150505b92915050565b6000336103ce858285610791565b6103d985858561080f565b506001949350505050565b600781815481106103f457600080fd5b6000918252602090912001546001600160a01b0316905081565b61041661086e565b600081118015610427575060648111155b61046e5760405162461bcd60e51b815260206004820152601360248201527245524332303a204f7574206f662052616e676560681b60448201526064015b60405180910390fd5b600955565b61047b61086e565b610485600061089b565b565b60606005805461032390610e97565b61049e61086e565b6001600160a01b03821660009081526006602052604090205481151560ff9091161515036105025760405162461bcd60e51b815260206004820152601160248201527015985b1d5948185b1c9958591e481cd95d607a1b6044820152606401610465565b6001600160a01b0382166000908152600660205260409020805460ff1916821580159190911790915561057f57600780546001810182556000919091527fa66cc928b5edb82af9bd49922954155ab7b0942694bea4ce44661d9a8736c6880180546001600160a01b0319166001600160a01b0384161790556106cd565b6007546001106105c35760405162461bcd60e51b815260206004820152600f60248201526e2932b8bab4b932b21018903830b4b960891b6044820152606401610465565b60005b6007548110156106cb57826001600160a01b0316600782815481106105ed576105ed610ed1565b6000918252602090912001546001600160a01b0316036106b9576007805461061790600190610efd565b8154811061062757610627610ed1565b600091825260209091200154600780546001600160a01b03909216918390811061065357610653610ed1565b9060005260206000200160006101000a8154816001600160a01b0302191690836001600160a01b03160217905550600780548061069257610692610f10565b600082815260209020810160001990810180546001600160a01b03191690550190556106cb565b806106c381610f26565b9150506105c6565b505b604051811515906001600160a01b038416907fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab90600090a35050565b6000336103b481858561080f565b61071f61086e565b600a80546001600160a01b0319166001600160a01b0392909216919091179055565b61074961086e565b6001600160a01b03811661077357604051631e4fbdf760e01b815260006004820152602401610465565b61077c8161089b565b50565b61078c83838360016108eb565b505050565b6001600160a01b03838116600090815260026020908152604080832093861683529290522054600019811461080957818110156107fa57604051637dc7a0d960e11b81526001600160a01b03841660048201526024810182905260448101839052606401610465565b610809848484840360006108eb565b50505050565b6001600160a01b03831661083957604051634b637e8f60e11b815260006004820152602401610465565b6001600160a01b0382166108635760405163ec442f0560e01b815260006004820152602401610465565b61078c8383836109c0565b6000546001600160a01b031633146104855760405163118cdaa760e01b8152336004820152602401610465565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b0384166109155760405163e602df0560e01b815260006004820152602401610465565b6001600160a01b03831661093f57604051634a1406b160e11b815260006004820152602401610465565b6001600160a01b038085166000908152600260209081526040808320938716835292905220829055801561080957826001600160a01b0316846001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040516109b291815260200190565b60405180910390a350505050565b6001600160a01b0383166109eb5780600360008282546109e09190610f3f565b90915550610a5d9050565b6001600160a01b03831660009081526001602052604090205481811015610a3e5760405163391434e360e21b81526001600160a01b03851660048201526024810182905260448101839052606401610465565b6001600160a01b03841660009081526001602052604090209082900390555b6001600160a01b038216610a7957600380548290039055505050565b6001600160a01b03821660009081526006602052604081205460ff1615610a9f57506009545b600854600090610ab990610ab38585610cbf565b90610cf5565b90508015610c3757600a546001600160a01b0316610b65578060016000610ae86000546001600160a01b031690565b6001600160a01b03166001600160a01b031681526020019081526020016000206000828254610b179190610f3f565b90915550506000546040518281526001600160a01b039091169030907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a3610c37565b600a546001600160a01b031660009081526001602052604081208054839290610b8f908490610f3f565b9091555050600a5460405163f055862d60e01b8152600481018390526001600160a01b039091169063f055862d90602401600060405180830381600087803b158015610bda57600080fd5b505af1158015610bee573d6000803e3d6000fd5b5050600a546040518481526001600160a01b0390911692503091507fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35b610c418382610d08565b6001600160a01b03851660009081526001602052604081208054909190610c69908490610f3f565b90915550506001600160a01b038085169086167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef610ca78685610d08565b60405190815260200160405180910390a35050505050565b600082600003610cd1575060006103ba565b610cdb8284610f52565b905081610ce88483610f69565b146103ba576103ba610f8b565b6000610d018284610f69565b9392505050565b600082821115610d1a57610d1a610f8b565b610d018284610efd565b600060208083528351808285015260005b81811015610d5157858101830151858201604001528201610d35565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b0381168114610d8957600080fd5b919050565b60008060408385031215610da157600080fd5b610daa83610d72565b946020939093013593505050565b600080600060608486031215610dcd57600080fd5b610dd684610d72565b9250610de460208501610d72565b9150604084013590509250925092565b600060208284031215610e0657600080fd5b5035919050565b600060208284031215610e1f57600080fd5b610d0182610d72565b60008060408385031215610e3b57600080fd5b610e4483610d72565b915060208301358015158114610e5957600080fd5b809150509250929050565b60008060408385031215610e7757600080fd5b610e8083610d72565b9150610e8e60208401610d72565b90509250929050565b600181811c90821680610eab57607f821691505b602082108103610ecb57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b818103818111156103ba576103ba610ee7565b634e487b7160e01b600052603160045260246000fd5b600060018201610f3857610f38610ee7565b5060010190565b808201808211156103ba576103ba610ee7565b80820281158282048414176103ba576103ba610ee7565b600082610f8657634e487b7160e01b600052601260045260246000fd5b500490565b634e487b7160e01b600052600160045260246000fdfea26469706673582212201b9d9e3c7cb0961d36af1fbc1c1320bdf9645712d797cc3b3b2daf041c952d7564736f6c63430008130033ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef00000000000000000000000000000000000000000052b7d2dcc80cd2e4000000
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101375760003560e01c80638da5cb5b116100b8578063a9059cbb1161007c578063a9059cbb1461026c578063b62496f51461027f578063bc2d7743146102a2578063bd962399146102b5578063dd62ed3e146102c8578063f2fde38b1461030157600080fd5b80638da5cb5b1461022f57806392f6576e1461024057806395d89b41146102485780639a7a23d6146102505780639d9241ec1461026357600080fd5b80632632fde4116100ff5780632632fde4146101af578063313ce567146101da578063567ab997146101e957806370a08231146101fe578063715018a61461022757600080fd5b806306fdde031461013c578063095ea7b31461015a578063180b0d7e1461017d57806318160ddd1461019457806323b872dd1461019c575b600080fd5b610144610314565b6040516101519190610d24565b60405180910390f35b61016d610168366004610d8e565b6103a6565b6040519015158152602001610151565b61018660085481565b604051908152602001610151565b600354610186565b61016d6101aa366004610db8565b6103c0565b6101c26101bd366004610df4565b6103e4565b6040516001600160a01b039091168152602001610151565b60405160128152602001610151565b6101fc6101f7366004610df4565b61040e565b005b61018661020c366004610e0d565b6001600160a01b031660009081526001602052604090205490565b6101fc610473565b6000546001600160a01b03166101c2565b610186606481565b610144610487565b6101fc61025e366004610e28565b610496565b61018660095481565b61016d61027a366004610d8e565b610709565b61016d61028d366004610e0d565b60066020526000908152604090205460ff1681565b6101fc6102b0366004610e0d565b610717565b600a546101c2906001600160a01b031681565b6101866102d6366004610e64565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b6101fc61030f366004610e0d565b610741565b60606004805461032390610e97565b80601f016020809104026020016040519081016040528092919081815260200182805461034f90610e97565b801561039c5780601f106103715761010080835404028352916020019161039c565b820191906000526020600020905b81548152906001019060200180831161037f57829003601f168201915b5050505050905090565b6000336103b481858561077f565b60019150505b92915050565b6000336103ce858285610791565b6103d985858561080f565b506001949350505050565b600781815481106103f457600080fd5b6000918252602090912001546001600160a01b0316905081565b61041661086e565b600081118015610427575060648111155b61046e5760405162461bcd60e51b815260206004820152601360248201527245524332303a204f7574206f662052616e676560681b60448201526064015b60405180910390fd5b600955565b61047b61086e565b610485600061089b565b565b60606005805461032390610e97565b61049e61086e565b6001600160a01b03821660009081526006602052604090205481151560ff9091161515036105025760405162461bcd60e51b815260206004820152601160248201527015985b1d5948185b1c9958591e481cd95d607a1b6044820152606401610465565b6001600160a01b0382166000908152600660205260409020805460ff1916821580159190911790915561057f57600780546001810182556000919091527fa66cc928b5edb82af9bd49922954155ab7b0942694bea4ce44661d9a8736c6880180546001600160a01b0319166001600160a01b0384161790556106cd565b6007546001106105c35760405162461bcd60e51b815260206004820152600f60248201526e2932b8bab4b932b21018903830b4b960891b6044820152606401610465565b60005b6007548110156106cb57826001600160a01b0316600782815481106105ed576105ed610ed1565b6000918252602090912001546001600160a01b0316036106b9576007805461061790600190610efd565b8154811061062757610627610ed1565b600091825260209091200154600780546001600160a01b03909216918390811061065357610653610ed1565b9060005260206000200160006101000a8154816001600160a01b0302191690836001600160a01b03160217905550600780548061069257610692610f10565b600082815260209020810160001990810180546001600160a01b03191690550190556106cb565b806106c381610f26565b9150506105c6565b505b604051811515906001600160a01b038416907fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab90600090a35050565b6000336103b481858561080f565b61071f61086e565b600a80546001600160a01b0319166001600160a01b0392909216919091179055565b61074961086e565b6001600160a01b03811661077357604051631e4fbdf760e01b815260006004820152602401610465565b61077c8161089b565b50565b61078c83838360016108eb565b505050565b6001600160a01b03838116600090815260026020908152604080832093861683529290522054600019811461080957818110156107fa57604051637dc7a0d960e11b81526001600160a01b03841660048201526024810182905260448101839052606401610465565b610809848484840360006108eb565b50505050565b6001600160a01b03831661083957604051634b637e8f60e11b815260006004820152602401610465565b6001600160a01b0382166108635760405163ec442f0560e01b815260006004820152602401610465565b61078c8383836109c0565b6000546001600160a01b031633146104855760405163118cdaa760e01b8152336004820152602401610465565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b0384166109155760405163e602df0560e01b815260006004820152602401610465565b6001600160a01b03831661093f57604051634a1406b160e11b815260006004820152602401610465565b6001600160a01b038085166000908152600260209081526040808320938716835292905220829055801561080957826001600160a01b0316846001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040516109b291815260200190565b60405180910390a350505050565b6001600160a01b0383166109eb5780600360008282546109e09190610f3f565b90915550610a5d9050565b6001600160a01b03831660009081526001602052604090205481811015610a3e5760405163391434e360e21b81526001600160a01b03851660048201526024810182905260448101839052606401610465565b6001600160a01b03841660009081526001602052604090209082900390555b6001600160a01b038216610a7957600380548290039055505050565b6001600160a01b03821660009081526006602052604081205460ff1615610a9f57506009545b600854600090610ab990610ab38585610cbf565b90610cf5565b90508015610c3757600a546001600160a01b0316610b65578060016000610ae86000546001600160a01b031690565b6001600160a01b03166001600160a01b031681526020019081526020016000206000828254610b179190610f3f565b90915550506000546040518281526001600160a01b039091169030907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a3610c37565b600a546001600160a01b031660009081526001602052604081208054839290610b8f908490610f3f565b9091555050600a5460405163f055862d60e01b8152600481018390526001600160a01b039091169063f055862d90602401600060405180830381600087803b158015610bda57600080fd5b505af1158015610bee573d6000803e3d6000fd5b5050600a546040518481526001600160a01b0390911692503091507fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35b610c418382610d08565b6001600160a01b03851660009081526001602052604081208054909190610c69908490610f3f565b90915550506001600160a01b038085169086167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef610ca78685610d08565b60405190815260200160405180910390a35050505050565b600082600003610cd1575060006103ba565b610cdb8284610f52565b905081610ce88483610f69565b146103ba576103ba610f8b565b6000610d018284610f69565b9392505050565b600082821115610d1a57610d1a610f8b565b610d018284610efd565b600060208083528351808285015260005b81811015610d5157858101830151858201604001528201610d35565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b0381168114610d8957600080fd5b919050565b60008060408385031215610da157600080fd5b610daa83610d72565b946020939093013593505050565b600080600060608486031215610dcd57600080fd5b610dd684610d72565b9250610de460208501610d72565b9150604084013590509250925092565b600060208284031215610e0657600080fd5b5035919050565b600060208284031215610e1f57600080fd5b610d0182610d72565b60008060408385031215610e3b57600080fd5b610e4483610d72565b915060208301358015158114610e5957600080fd5b809150509250929050565b60008060408385031215610e7757600080fd5b610e8083610d72565b9150610e8e60208401610d72565b90509250929050565b600181811c90821680610eab57607f821691505b602082108103610ecb57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b818103818111156103ba576103ba610ee7565b634e487b7160e01b600052603160045260246000fd5b600060018201610f3857610f38610ee7565b5060010190565b808201808211156103ba576103ba610ee7565b80820281158282048414176103ba576103ba610ee7565b600082610f8657634e487b7160e01b600052601260045260246000fd5b500490565b634e487b7160e01b600052600160045260246000fdfea26469706673582212201b9d9e3c7cb0961d36af1fbc1c1320bdf9645712d797cc3b3b2daf041c952d7564736f6c63430008130033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000000000000000000000052b7d2dcc80cd2e4000000
-----Decoded View---------------
Arg [0] : initialSupply (uint256): 100000000000000000000000000
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000052b7d2dcc80cd2e4000000
Deployed Bytecode Sourcemap
23771:149:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12597:91;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14890:190;;;;;;:::i;:::-;;:::i;:::-;;;1169:14:1;;1162:22;1144:41;;1132:2;1117:18;14890:190:0;1004:187:1;12002:36:0;;;;;;;;;1342:25:1;;;1330:2;1315:18;12002:36:0;1196:177:1;13699:99:0;13778:12;;13699:99;;15658:249;;;;;;:::i;:::-;;:::i;11898:29::-;;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;2060:32:1;;;2042:51;;2030:2;2015:18;11898:29:0;1896:203:1;13550:84:0;;;13624:2;2246:36:1;;2234:2;2219:18;13550:84:0;2104:184:1;23585:179:0;;;;;;:::i;:::-;;:::i;:::-;;13861:118;;;;;;:::i;:::-;-1:-1:-1;;;;;13953:18:0;13926:7;13953:18;;;:9;:18;;;;;;;13861:118;8318:103;;;:::i;7643:87::-;7689:7;7716:6;-1:-1:-1;;;;;7716:6:0;7643:87;;11936:42;;11975:3;11936:42;;12807:95;;;:::i;18802:737::-;;;;;;:::i;:::-;;:::i;12045:32::-;;;;;;14184:182;;;;;;:::i;:::-;;:::i;11833:58::-;;;;;;:::i;:::-;;;;;;;;;;;;;;;;23408:169;;;;;;:::i;:::-;;:::i;12098:40::-;;;;;-1:-1:-1;;;;;12098:40:0;;;14429:142;;;;;;:::i;:::-;-1:-1:-1;;;;;14536:18:0;;;14509:7;14536:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;14429:142;8576:220;;;;;;:::i;:::-;;:::i;12597:91::-;12642:13;12675:5;12668:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12597:91;:::o;14890:190::-;14963:4;5974:10;15019:31;5974:10;15035:7;15044:5;15019:8;:31::i;:::-;15068:4;15061:11;;;14890:190;;;;;:::o;15658:249::-;15745:4;5974:10;15803:37;15819:4;5974:10;15834:5;15803:15;:37::i;:::-;15851:26;15861:4;15867:2;15871:5;15851:9;:26::i;:::-;-1:-1:-1;15895:4:0;;15658:249;-1:-1:-1;;;;15658:249:0:o;11898:29::-;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;11898:29:0;;-1:-1:-1;11898:29:0;:::o;23585:179::-;7529:13;:11;:13::i;:::-;23673:1:::1;23664:6;:10;:36;;;;;11975:3;23678:6;:22;;23664:36;23656:68;;;::::0;-1:-1:-1;;;23656:68:0;;3688:2:1;23656:68:0::1;::::0;::::1;3670:21:1::0;3727:2;3707:18;;;3700:30;-1:-1:-1;;;3746:18:1;;;3739:49;3805:18;;23656:68:0::1;;;;;;;;;23735:12;:21:::0;23585:179::o;8318:103::-;7529:13;:11;:13::i;:::-;8383:30:::1;8410:1;8383:18;:30::i;:::-;8318:103::o:0;12807:95::-;12854:13;12887:7;12880:14;;;;;:::i;18802:737::-;7529:13;:11;:13::i;:::-;-1:-1:-1;;;;;18903:32:0;::::1;;::::0;;;:25:::1;:32;::::0;;;;;:42;::::1;;:32;::::0;;::::1;:42;;::::0;18895:72:::1;;;::::0;-1:-1:-1;;;18895:72:0;;4036:2:1;18895:72:0::1;::::0;::::1;4018:21:1::0;4075:2;4055:18;;;4048:30;-1:-1:-1;;;4094:18:1;;;4087:47;4151:18;;18895:72:0::1;3834:341:1::0;18895:72:0::1;-1:-1:-1::0;;;;;18980:32:0;::::1;;::::0;;;:25:::1;:32;::::0;;;;:41;;-1:-1:-1;;18980:41:0::1;::::0;::::1;::::0;::::1;::::0;;;::::1;::::0;;;19034:438:::1;;19059:12;:24:::0;;::::1;::::0;::::1;::::0;;-1:-1:-1;19059:24:0;;;;;::::1;::::0;;-1:-1:-1;;;;;;19059:24:0::1;-1:-1:-1::0;;;;;19059:24:0;::::1;;::::0;;19034:438:::1;;;19122:12;:19:::0;19144:1:::1;-1:-1:-1::0;19114:51:0::1;;;::::0;-1:-1:-1;;;19114:51:0;;4382:2:1;19114:51:0::1;::::0;::::1;4364:21:1::0;4421:2;4401:18;;;4394:30;-1:-1:-1;;;4440:18:1;;;4433:45;4495:18;;19114:51:0::1;4180:339:1::0;19114:51:0::1;19185:9;19180:281;19204:12;:19:::0;19200:23;::::1;19180:281;;;19272:5;-1:-1:-1::0;;;;;19253:24:0::1;:12;19266:1;19253:15;;;;;;;;:::i;:::-;;::::0;;;::::1;::::0;;;::::1;::::0;-1:-1:-1;;;;;19253:15:0::1;:24:::0;19249:197:::1;;19320:12;19333:19:::0;;:23:::1;::::0;19355:1:::1;::::0;19333:23:::1;:::i;:::-;19320:37;;;;;;;;:::i;:::-;;::::0;;;::::1;::::0;;;::::1;::::0;19302:12:::1;:15:::0;;-1:-1:-1;;;;;19320:37:0;;::::1;::::0;19315:1;;19302:15;::::1;;;;;:::i;:::-;;;;;;;;;:55;;;;;-1:-1:-1::0;;;;;19302:55:0::1;;;;;-1:-1:-1::0;;;;;19302:55:0::1;;;;;;19380:12;:18;;;;;;;:::i;:::-;;::::0;;;::::1;::::0;;;;-1:-1:-1;;19380:18:0;;;;;-1:-1:-1;;;;;;19380:18:0::1;::::0;;;;;19421:5:::1;;19249:197;19225:3:::0;::::1;::::0;::::1;:::i;:::-;;;;19180:281;;;;19034:438;19489:42;::::0;;::::1;;::::0;-1:-1:-1;;;;;19489:42:0;::::1;::::0;::::1;::::0;;;::::1;18802:737:::0;;:::o;14184:182::-;14253:4;5974:10;14309:27;5974:10;14326:2;14330:5;14309:9;:27::i;23408:169::-;7529:13;:11;:13::i;:::-;23546:12:::1;:23:::0;;-1:-1:-1;;;;;;23546:23:0::1;-1:-1:-1::0;;;;;23546:23:0;;;::::1;::::0;;;::::1;::::0;;23408:169::o;8576:220::-;7529:13;:11;:13::i;:::-;-1:-1:-1;;;;;8661:22:0;::::1;8657:93;;8707:31;::::0;-1:-1:-1;;;8707:31:0;;8735:1:::1;8707:31;::::0;::::1;2042:51:1::0;2015:18;;8707:31:0::1;1896:203:1::0;8657:93:0::1;8760:28;8779:8;8760:18;:28::i;:::-;8576:220:::0;:::o;21197:130::-;21282:37;21291:5;21298:7;21307:5;21314:4;21282:8;:37::i;:::-;21197:130;;;:::o;22913:487::-;-1:-1:-1;;;;;14536:18:0;;;23013:24;14536:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;-1:-1:-1;;23080:37:0;;23076:317;;23157:5;23138:16;:24;23134:132;;;23190:60;;-1:-1:-1;;;23190:60:0;;-1:-1:-1;;;;;5413:32:1;;23190:60:0;;;5395:51:1;5462:18;;;5455:34;;;5505:18;;;5498:34;;;5368:18;;23190:60:0;5193:345:1;23134:132:0;23309:57;23318:5;23325:7;23353:5;23334:16;:24;23360:5;23309:8;:57::i;:::-;23002:398;22913:487;;;:::o;16292:308::-;-1:-1:-1;;;;;16376:18:0;;16372:88;;16418:30;;-1:-1:-1;;;16418:30:0;;16445:1;16418:30;;;2042:51:1;2015:18;;16418:30:0;1896:203:1;16372:88:0;-1:-1:-1;;;;;16474:16:0;;16470:88;;16514:32;;-1:-1:-1;;;16514:32:0;;16543:1;16514:32;;;2042:51:1;2015:18;;16514:32:0;1896:203:1;16470:88:0;16568:24;16576:4;16582:2;16586:5;16568:7;:24::i;7808:166::-;7689:7;7716:6;-1:-1:-1;;;;;7716:6:0;5974:10;7868:23;7864:103;;7915:40;;-1:-1:-1;;;7915:40:0;;5974:10;7915:40;;;2042:51:1;2015:18;;7915:40:0;1896:203:1;8956:191:0;9030:16;9049:6;;-1:-1:-1;;;;;9066:17:0;;;-1:-1:-1;;;;;;9066:17:0;;;;;;9099:40;;9049:6;;;;;;;9099:40;;9030:16;9099:40;9019:128;8956:191;:::o;22178:443::-;-1:-1:-1;;;;;22291:19:0;;22287:91;;22334:32;;-1:-1:-1;;;22334:32:0;;22363:1;22334:32;;;2042:51:1;2015:18;;22334:32:0;1896:203:1;22287:91:0;-1:-1:-1;;;;;22392:21:0;;22388:92;;22437:31;;-1:-1:-1;;;22437:31:0;;22465:1;22437:31;;;2042:51:1;2015:18;;22437:31:0;1896:203:1;22388:92:0;-1:-1:-1;;;;;22490:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;:35;;;22536:78;;;;22587:7;-1:-1:-1;;;;;22571:31:0;22580:5;-1:-1:-1;;;;;22571:31:0;;22596:5;22571:31;;;;1342:25:1;;1330:2;1315:18;;1196:177;22571:31:0;;;;;;;;22178:443;;;;:::o;16924:1870::-;-1:-1:-1;;;;;17014:18:0;;17010:552;;17168:5;17152:12;;:21;;;;;;;:::i;:::-;;;;-1:-1:-1;17010:552:0;;-1:-1:-1;17010:552:0;;-1:-1:-1;;;;;17228:15:0;;17206:19;17228:15;;;:9;:15;;;;;;17262:19;;;17258:117;;;17309:50;;-1:-1:-1;;;17309:50:0;;-1:-1:-1;;;;;5413:32:1;;17309:50:0;;;5395:51:1;5462:18;;;5455:34;;;5505:18;;;5498:34;;;5368:18;;17309:50:0;5193:345:1;17258:117:0;-1:-1:-1;;;;;17498:15:0;;;;;;:9;:15;;;;;17516:19;;;;17498:37;;17010:552;-1:-1:-1;;;;;17578:16:0;;17574:1213;;17744:12;:21;;;;;;;21197:130;;;:::o;17574:1213::-;-1:-1:-1;;;;;17859:29:0;;17817:16;17859:29;;;:25;:29;;;;;;;;17856:61;;;-1:-1:-1;17902:12:0;;17856:61;17981:14;;17937:17;;17957:39;;:19;:5;17967:8;17957:9;:19::i;:::-;:23;;:39::i;:::-;17937:59;-1:-1:-1;18018:13:0;;18015:521;;18059:12;;-1:-1:-1;;;;;18059:12:0;18056:461;;18137:9;18114;:18;18124:7;7689;7716:6;-1:-1:-1;;;;;7716:6:0;;7643:87;18124:7;-1:-1:-1;;;;;18114:18:0;-1:-1:-1;;;;;18114:18:0;;;;;;;;;;;;;:33;;;;;;;:::i;:::-;;;;-1:-1:-1;;7689:7:0;7716:6;18179:43;;1342:25:1;;;-1:-1:-1;;;;;7716:6:0;;;;18196:4;;18179:43;;1330:2:1;1315:18;18179:43:0;;;;;;;18056:461;;;18310:12;;-1:-1:-1;;;;;18310:12:0;18300:23;;;;:9;:23;;;;;:38;;18328:9;;18300:23;:38;;18328:9;;18300:38;:::i;:::-;;;;-1:-1:-1;;18376:12:0;;18365:46;;-1:-1:-1;;;18365:46:0;;;;;1342:25:1;;;-1:-1:-1;;;;;18376:12:0;;;;18365:35;;1315:18:1;;18365:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;18469:12:0;;18445:48;;1342:25:1;;;-1:-1:-1;;;;;18469:12:0;;;;-1:-1:-1;18462:4:0;;-1:-1:-1;18445:48:0;;1330:2:1;1315:18;18445:48:0;;;;;;;18056:461;18691:20;:5;18701:9;18691;:20::i;:::-;-1:-1:-1;;;;;18674:13:0;;;;;;:9;:13;;;;;:37;;:13;;;:37;;;;;:::i;:::-;;;;-1:-1:-1;;;;;;;18735:40:0;;;;;;;18754:20;:5;18764:9;18754;:20::i;:::-;18735:40;;1342:25:1;;;1330:2;1315:18;18735:40:0;;;;;;;17798:989;;16924:1870;;;:::o;9339:174::-;9397:9;9419:1;9424;9419:6;9415:37;;-1:-1:-1;9443:1:0;9436:8;;9415:37;9462:5;9466:1;9462;:5;:::i;:::-;9458:9;-1:-1:-1;9490:1:0;9481:5;9485:1;9458:9;9481:5;:::i;:::-;:10;9474:18;;;;:::i;9600:277::-;9658:7;9866:5;9870:1;9866;:5;:::i;:::-;9859:12;9600:277;-1:-1:-1;;;9600:277:0:o;9994:113::-;10052:7;10080:1;10075;:6;;10068:14;;;;:::i;:::-;10096:5;10100:1;10096;:5;:::i;14:548:1:-;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;298:3;483:1;478:2;469:6;458:9;454:22;450:31;443:42;553:2;546;542:7;537:2;529:6;525:15;521:29;510:9;506:45;502:54;494:62;;;;14:548;;;;:::o;567:173::-;635:20;;-1:-1:-1;;;;;684:31:1;;674:42;;664:70;;730:1;727;720:12;664:70;567:173;;;:::o;745:254::-;813:6;821;874:2;862:9;853:7;849:23;845:32;842:52;;;890:1;887;880:12;842:52;913:29;932:9;913:29;:::i;:::-;903:39;989:2;974:18;;;;961:32;;-1:-1:-1;;;745:254:1:o;1378:328::-;1455:6;1463;1471;1524:2;1512:9;1503:7;1499:23;1495:32;1492:52;;;1540:1;1537;1530:12;1492:52;1563:29;1582:9;1563:29;:::i;:::-;1553:39;;1611:38;1645:2;1634:9;1630:18;1611:38;:::i;:::-;1601:48;;1696:2;1685:9;1681:18;1668:32;1658:42;;1378:328;;;;;:::o;1711:180::-;1770:6;1823:2;1811:9;1802:7;1798:23;1794:32;1791:52;;;1839:1;1836;1829:12;1791:52;-1:-1:-1;1862:23:1;;1711:180;-1:-1:-1;1711:180:1:o;2293:186::-;2352:6;2405:2;2393:9;2384:7;2380:23;2376:32;2373:52;;;2421:1;2418;2411:12;2373:52;2444:29;2463:9;2444:29;:::i;2484:347::-;2549:6;2557;2610:2;2598:9;2589:7;2585:23;2581:32;2578:52;;;2626:1;2623;2616:12;2578:52;2649:29;2668:9;2649:29;:::i;:::-;2639:39;;2728:2;2717:9;2713:18;2700:32;2775:5;2768:13;2761:21;2754:5;2751:32;2741:60;;2797:1;2794;2787:12;2741:60;2820:5;2810:15;;;2484:347;;;;;:::o;2836:260::-;2904:6;2912;2965:2;2953:9;2944:7;2940:23;2936:32;2933:52;;;2981:1;2978;2971:12;2933:52;3004:29;3023:9;3004:29;:::i;:::-;2994:39;;3052:38;3086:2;3075:9;3071:18;3052:38;:::i;:::-;3042:48;;2836:260;;;;;:::o;3101:380::-;3180:1;3176:12;;;;3223;;;3244:61;;3298:4;3290:6;3286:17;3276:27;;3244:61;3351:2;3343:6;3340:14;3320:18;3317:38;3314:161;;3397:10;3392:3;3388:20;3385:1;3378:31;3432:4;3429:1;3422:15;3460:4;3457:1;3450:15;3314:161;;3101:380;;;:::o;4524:127::-;4585:10;4580:3;4576:20;4573:1;4566:31;4616:4;4613:1;4606:15;4640:4;4637:1;4630:15;4656:127;4717:10;4712:3;4708:20;4705:1;4698:31;4748:4;4745:1;4738:15;4772:4;4769:1;4762:15;4788:128;4855:9;;;4876:11;;;4873:37;;;4890:18;;:::i;4921:127::-;4982:10;4977:3;4973:20;4970:1;4963:31;5013:4;5010:1;5003:15;5037:4;5034:1;5027:15;5053:135;5092:3;5113:17;;;5110:43;;5133:18;;:::i;:::-;-1:-1:-1;5180:1:1;5169:13;;5053:135::o;5543:125::-;5608:9;;;5629:10;;;5626:36;;;5642:18;;:::i;5673:168::-;5746:9;;;5777;;5794:15;;;5788:22;;5774:37;5764:71;;5815:18;;:::i;5846:217::-;5886:1;5912;5902:132;;5956:10;5951:3;5947:20;5944:1;5937:31;5991:4;5988:1;5981:15;6019:4;6016:1;6009:15;5902:132;-1:-1:-1;6048:9:1;;5846:217::o;6068:127::-;6129:10;6124:3;6120:20;6117:1;6110:31;6160:4;6157:1;6150:15;6184:4;6181:1;6174:15
Swarm Source
ipfs://1b9d9e3c7cb0961d36af1fbc1c1320bdf9645712d797cc3b3b2daf041c952d75
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.