ERC-20
Overview
Max Total Supply
1,119,388.082751636849193391 CHAOS
Holders
50
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
539.442072346795404835 CHAOSValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
PandemoniumToken
Compiler Version
v0.8.19+commit.7dd6d404
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /* PANDEMONIUM $CHAOS Website: https://pandemonium.wtf Twitter: https://twitter.com/Chaotic_DeFi Telegram: https://t.me/chaoticdefi */ import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/math/SafeMath.sol"; import "./interfaces/IUniswapV2Factory.sol"; import "./interfaces/IUniswapV2Router02.sol"; import "./interfaces/IUniswapV2Pair.sol"; contract PandemoniumToken is IERC20, Ownable { using SafeMath for uint; uint private constant internalDecimals = 10**24; uint private constant BASE = 10**18; uint public scalingFactor; uint public initSupply; IUniswapV2Router02 public immutable uniswapV2Router; IUniswapV2Pair public immutable uniswapV2Pair; address public immutable WETH; uint private constant REBASE_PERIOD = 1 hours; // 1 hour between rebases uint public maxRebasePercentage = 50; address public vault; uint public currentEpoch; uint public lastEpochTimestamp; uint private constant INIT_SUPPLY = 1_000_000 * 10**18; uint public constant maxWallet = INIT_SUPPLY / 100; uint private _totalSupply; mapping (address => uint) internal _supplyBalances; mapping (address => mapping(address => uint)) internal _allowedFragments; // Anti-bot and anti-whale mappings and variables mapping(address => uint) private _holderLastTransferTimestamp; // to hold last Transfers temporarily during launch mapping(address => bool) private _isExcluded; bool public limitsEnabled = true; string private _name = "Pandemonium"; string private _symbol = "CHAOS"; uint8 private _decimals = uint8(18); /** * @notice Event emitted when tokens are rebased */ event Rebase( uint epoch, uint prefix, uint percentage, uint prevScalingFactor, uint newScalingFactor ); event Mint(address to, uint amount); event Burn(address from, uint amount); modifier validRecipient(address to) { require(to != address(0x0)); require(to != address(this)); _; } modifier onlyVault() { require(msg.sender == vault); _; } constructor() { IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D); WETH = address(0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2); address pair = IUniswapV2Factory(_uniswapV2Router.factory()) .createPair(address(this), WETH); uniswapV2Router = _uniswapV2Router; uniswapV2Pair = IUniswapV2Pair(pair); lastEpochTimestamp = 1687467600; scalingFactor = BASE; initSupply = _fragmentsToSupply(INIT_SUPPLY); _totalSupply = INIT_SUPPLY; _supplyBalances[owner()] = initSupply; emit Transfer(address(0x0), msg.sender, INIT_SUPPLY); } /** * @dev Returns the name of the token. */ function name() public view returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view 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. * * 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 returns (uint8) { return _decimals; } /** * @return The total number of fragments. */ function totalSupply() external view returns (uint) { return _totalSupply; } /** * @param who The address to query. * @return The balance of the specified address. */ function balanceOf(address who) public view returns (uint) { return _supplyToFragments(_supplyBalances[who]); } function mint(address to, uint amount) external onlyVault returns (bool) { _mint(to, amount); return true; } function _mint(address to, uint amount) internal { _totalSupply = _totalSupply.add(amount); uint supplyValue = _fragmentsToSupply(amount); initSupply = initSupply.add(supplyValue); require( scalingFactor <= _maxScalingFactor(), "max scaling factor too low" ); _supplyBalances[to] = _supplyBalances[to].add(supplyValue); emit Mint(to, amount); emit Transfer(address(0), to, amount); } function burn(uint amount) external onlyVault returns (bool) { _burn(amount); return true; } function _burn(uint amount) internal { _totalSupply = _totalSupply.sub(amount); uint supplyValue = _fragmentsToSupply(amount); initSupply = initSupply.sub(supplyValue); _supplyBalances[msg.sender] = _supplyBalances[msg.sender].sub(supplyValue); emit Burn(msg.sender, amount); emit Transfer(msg.sender, address(0), amount); } /** * @dev Transfer tokens to a specified address. * @param to The address to transfer to. * @param value The amount to be transferred. * @return True on success, false otherwise. */ function transfer(address to, uint value) external validRecipient(to) returns (bool) { if (limitsEnabled) { if ( to != owner() && to != address(0x0) && to != address(0xdead) && to != address(uniswapV2Router) && to != address(uniswapV2Pair) && !(_isExcluded[msg.sender] || _isExcluded[to]) ) { require( _holderLastTransferTimestamp[msg.sender] < block.number, "transfer:: Transfer Delay enabled. Only one purchase per block allowed." ); _holderLastTransferTimestamp[msg.sender] = block.number; require( value + balanceOf(to) <= maxWallet, "transfer:: Max wallet exceeded" ); } } uint supplyValue = _fragmentsToSupply(value); _supplyBalances[msg.sender] = _supplyBalances[msg.sender].sub(supplyValue); _supplyBalances[to] = _supplyBalances[to].add(supplyValue); emit Transfer(msg.sender, to, value); return true; } /** * @dev Transfer tokens from one address to another. * @param from The address you want to send tokens from. * @param to The address you want to transfer to. * @param value The amount of tokens to be transferred. */ function transferFrom(address from, address to, uint value) external validRecipient(to) returns (bool) { if (limitsEnabled) { if ( to != owner() && to != address(0x0) && to != address(0xdead) && to != address(uniswapV2Router) && to != address(uniswapV2Pair) && !(_isExcluded[from] || _isExcluded[to]) ) { require( _holderLastTransferTimestamp[msg.sender] < block.number, "transfer:: Transfer Delay enabled. Only one purchase per block allowed." ); _holderLastTransferTimestamp[msg.sender] = block.number; require( value + balanceOf(to) <= maxWallet, "transfer:: Max wallet exceeded" ); } } _allowedFragments[from][msg.sender] = _allowedFragments[from][ msg.sender ].sub(value); uint supplyValue = _fragmentsToSupply(value); _supplyBalances[from] = _supplyBalances[from].sub(supplyValue); _supplyBalances[to] = _supplyBalances[to].add(supplyValue); emit Transfer(from, to, value); return true; } /** * @dev Function to check the amount of tokens that an owner has allowed to a spender. * @param owner_ The address which owns the funds. * @param spender The address which will spend the funds. * @return The number of tokens still available for the spender. */ function allowance(address owner_, address spender) external view returns (uint) { return _allowedFragments[owner_][spender]; } /** * @dev Approve the passed address to spend the specified amount of tokens on behalf of * msg.sender. This method is included for ERC20 compatibility. * increaseAllowance and decreaseAllowance should be used instead. * Changing an allowance with this method brings the risk that someone may transfer both * the old and the new allowance - if they are both greater than zero - if a transfer * transaction is mined before the later approve() call is mined. * * @param spender The address which will spend the funds. * @param value The amount of tokens to be spent. */ function approve(address spender, uint value) external returns (bool) { _allowedFragments[msg.sender][spender] = value; emit Approval(msg.sender, spender, value); return true; } /** * @dev Increase the amount of tokens that an owner has allowed to a spender. * This method should be used instead of approve() to avoid the double approval vulnerability * described above. * @param spender The address which will spend the funds. * @param addedValue The amount of tokens to increase the allowance by. */ function increaseAllowance(address spender, uint addedValue) external returns (bool) { _allowedFragments[msg.sender][spender] = _allowedFragments[msg.sender][ spender ].add(addedValue); emit Approval( msg.sender, spender, _allowedFragments[msg.sender][spender] ); return true; } /** * @dev Decrease the amount of tokens that an owner has allowed to a spender. * * @param spender The address which will spend the funds. * @param subtractedValue The amount of tokens to decrease the allowance by. */ function decreaseAllowance(address spender, uint subtractedValue) external returns (bool) { uint oldValue = _allowedFragments[msg.sender][spender]; if (subtractedValue >= oldValue) { _allowedFragments[msg.sender][spender] = 0; } else { _allowedFragments[msg.sender][spender] = oldValue.sub( subtractedValue ); } emit Approval( msg.sender, spender, _allowedFragments[msg.sender][spender] ); return true; } /** * @dev Notifies Fragments contract about a new rebase cycle. * @return The total number of fragments after the supply adjustment. */ function rebase() external returns (uint) { require(lastEpochTimestamp.add(REBASE_PERIOD) < block.timestamp, "rebase:: Too soon to trigger next rebase!"); uint nonce = random(); uint prefix = nonce % 2; uint percentage = nonce % maxRebasePercentage; if (percentage == 0) percentage = maxRebasePercentage; currentEpoch++; lastEpochTimestamp = block.timestamp; uint prevScalingFactor = scalingFactor; if (prefix == 1) { // positive rebase uint newScalingFactor = scalingFactor .mul(BASE.add(BASE.mul(percentage).div(100))) .div(BASE); if (newScalingFactor < _maxScalingFactor()) { scalingFactor = newScalingFactor; } else { scalingFactor = _maxScalingFactor(); } } else { // negative rebase scalingFactor = scalingFactor .mul(BASE.sub(BASE.mul(percentage).div(100))) .div(BASE); } _totalSupply = _supplyToFragments(initSupply); uniswapV2Pair.sync(); emit Rebase( currentEpoch, prefix, percentage, prevScalingFactor, scalingFactor ); return _totalSupply; } function canRebase() external view returns (bool) { return lastEpochTimestamp.add(REBASE_PERIOD) < block.timestamp; } function toggleLimits() external onlyOwner returns (bool) { limitsEnabled = !limitsEnabled; return true; } // for token airdrop function excludeAddress(address _address) external onlyOwner { _isExcluded[_address] = true; } function setVault(address _vault) external onlyOwner { vault = _vault; } function setMaxRebase(uint percentage) external onlyOwner { require (percentage <= 50, "Max rebase percentage must be lte than 50"); maxRebasePercentage = percentage; } function random() internal view returns (uint) { return uint( keccak256( abi.encodePacked( block.timestamp, block.difficulty, currentEpoch, scalingFactor ) ) ); } /** VIEWS */ function maxScalingFactor() external view returns (uint) { return _maxScalingFactor(); } function _maxScalingFactor() internal view returns (uint) { return uint(int256(-1)) / initSupply; } function _fragmentsToSupply(uint amount) internal view returns (uint) { return amount.mul(internalDecimals).div(scalingFactor); } function _supplyToFragments(uint amount) internal view returns (uint) { return amount.mul(scalingFactor).div(internalDecimals); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol) pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby disabling any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `from` to `to` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom(address from, address to, uint256 amount) external returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (utils/math/SafeMath.sol) pragma solidity ^0.8.0; // CAUTION // This version of SafeMath should only be used with Solidity 0.8 or later, // because it relies on the compiler's built in overflow checks. /** * @dev Wrappers over Solidity's arithmetic operations. * * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler * now has built in overflow checking. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the subtraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { // 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 (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @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) { return a + b; } /** * @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 a - b; } /** * @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) { return a * b; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting 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 a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { unchecked { require(b <= a, errorMessage); return a - b; } } /** * @dev Returns the integer division of two unsigned integers, reverting 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) { unchecked { require(b > 0, errorMessage); return a / b; } } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * 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) { unchecked { require(b > 0, errorMessage); return a % b; } } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; 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; }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; interface IUniswapV2Pair { event Approval( address indexed owner, address indexed spender, uint value ); event Transfer(address indexed from, address indexed to, uint value); function name() external pure returns (string memory); function symbol() external pure returns (string memory); function decimals() external pure returns (uint8); function totalSupply() external view returns (uint); function balanceOf(address owner) external view returns (uint); function allowance(address owner, address spender) external view returns (uint); function approve(address spender, uint value) external returns (bool); function transfer(address to, uint value) external returns (bool); function transferFrom( address from, address to, uint value ) external returns (bool); function DOMAIN_SEPARATOR() external view returns (bytes32); function PERMIT_TYPEHASH() external pure returns (bytes32); function nonces(address owner) external view returns (uint); function permit( address owner, address spender, uint value, uint deadline, uint8 v, bytes32 r, bytes32 s ) external; event Mint(address indexed sender, uint amount0, uint amount1); event Burn( address indexed sender, uint amount0, uint amount1, address indexed to ); event Swap( address indexed sender, uint amount0In, uint amount1In, uint amount0Out, uint amount1Out, address indexed to ); event Sync(uint112 reserve0, uint112 reserve1); function MINIMUM_LIQUIDITY() external pure returns (uint); function factory() external view returns (address); function token0() external view returns (address); function token1() external view returns (address); function getReserves() external view returns ( uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast ); function price0CumulativeLast() external view returns (uint); function price1CumulativeLast() external view returns (uint); function kLast() external view returns (uint); function mint(address to) external returns (uint liquidity); function burn(address to) external returns (uint amount0, uint amount1); function swap( uint amount0Out, uint amount1Out, address to, bytes calldata data ) external; function skim(address to) external; function sync() external; function initialize(address, address) external; }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; interface IUniswapV2Router02 { function factory() external pure returns (address); function WETH() external pure returns (address); function addLiquidity( address tokenA, address tokenB, uint amountADesired, uint amountBDesired, uint amountAMin, uint amountBMin, address to, uint deadline ) external returns ( uint amountA, uint amountB, uint liquidity ); function addLiquidityETH( address token, uint amountTokenDesired, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external payable returns ( uint amountToken, uint amountETH, uint liquidity ); function swapExactTokensForTokensSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; function swapExactETHForTokensSupportingFeeOnTransferTokens( uint amountOutMin, address[] calldata path, address to, uint deadline ) external payable; function swapExactTokensForETHSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; }
{ "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
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":false,"internalType":"address","name":"from","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Burn","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Mint","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":false,"internalType":"uint256","name":"epoch","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"prefix","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"percentage","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"prevScalingFactor","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newScalingFactor","type":"uint256"}],"name":"Rebase","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":"WETH","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner_","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"who","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"canRebase","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"currentEpoch","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"excludeAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"initSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lastEpochTimestamp","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitsEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxRebasePercentage","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxScalingFactor","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"rebase","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"scalingFactor","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"percentage","type":"uint256"}],"name":"setMaxRebase","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_vault","type":"address"}],"name":"setVault","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"toggleLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"contract IUniswapV2Pair","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"vault","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
60e060405260326003556001600c60006101000a81548160ff0219169083151502179055506040518060400160405280600b81526020017f50616e64656d6f6e69756d000000000000000000000000000000000000000000815250600d90816200006a9190620007b7565b506040518060400160405280600581526020017f4348414f53000000000000000000000000000000000000000000000000000000815250600e9081620000b19190620007b7565b506012600f60006101000a81548160ff021916908360ff160217905550348015620000db57600080fd5b50620000fc620000f0620003da60201b60201c565b620003e260201b60201c565b6000737a250d5630b4cf539739df2c5dacb4c659f2488d905073c02aaa39b223fe8d0a0e5c4f27ead9083c756cc273ffffffffffffffffffffffffffffffffffffffff1660c08173ffffffffffffffffffffffffffffffffffffffff168152505060008173ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015620001ab573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001d1919062000908565b73ffffffffffffffffffffffffffffffffffffffff1663c9c653963060c0516040518363ffffffff1660e01b81526004016200020f9291906200094b565b6020604051808303816000875af11580156200022f573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000255919062000908565b90508173ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250508073ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff1681525050636494b650600681905550670de0b6b3a7640000600181905550620002f469d3c21bcecceda1000000620004a660201b60201c565b60028190555069d3c21bcecceda10000006007819055506002546008600062000322620004e460201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055503373ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef69d3c21bcecceda1000000604051620003ca919062000989565b60405180910390a3505062000a87565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000620004dd600154620004ce69d3c21bcecceda1000000856200050d60201b90919060201c565b6200052560201b90919060201c565b9050919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600081836200051d9190620009d5565b905092915050565b6000818362000535919062000a4f565b905092915050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620005bf57607f821691505b602082108103620005d557620005d462000577565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026200063f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000600565b6200064b868362000600565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b600062000698620006926200068c8462000663565b6200066d565b62000663565b9050919050565b6000819050919050565b620006b48362000677565b620006cc620006c3826200069f565b8484546200060d565b825550505050565b600090565b620006e3620006d4565b620006f0818484620006a9565b505050565b5b8181101562000718576200070c600082620006d9565b600181019050620006f6565b5050565b601f82111562000767576200073181620005db565b6200073c84620005f0565b810160208510156200074c578190505b620007646200075b85620005f0565b830182620006f5565b50505b505050565b600082821c905092915050565b60006200078c600019846008026200076c565b1980831691505092915050565b6000620007a7838362000779565b9150826002028217905092915050565b620007c2826200053d565b67ffffffffffffffff811115620007de57620007dd62000548565b5b620007ea8254620005a6565b620007f78282856200071c565b600060209050601f8311600181146200082f57600084156200081a578287015190505b62000826858262000799565b86555062000896565b601f1984166200083f86620005db565b60005b82811015620008695784890151825560018201915060208501945060208101905062000842565b8683101562000889578489015162000885601f89168262000779565b8355505b6001600288020188555050505b505050505050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000620008d082620008a3565b9050919050565b620008e281620008c3565b8114620008ee57600080fd5b50565b6000815190506200090281620008d7565b92915050565b6000602082840312156200092157620009206200089e565b5b60006200093184828501620008f1565b91505092915050565b6200094581620008c3565b82525050565b60006040820190506200096260008301856200093a565b6200097160208301846200093a565b9392505050565b620009838162000663565b82525050565b6000602082019050620009a0600083018462000978565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000620009e28262000663565b9150620009ef8362000663565b9250828202620009ff8162000663565b9150828204841483151762000a195762000a18620009a6565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600062000a5c8262000663565b915062000a698362000663565b92508262000a7c5762000a7b62000a20565b5b828204905092915050565b60805160a05160c05161316562000ada6000396000611c28015260008181610a1d0152818161128f0152818161184d0152611e4901526000818161085d015281816109c501526117f501526131656000f3fe608060405234801561001057600080fd5b50600436106102065760003560e01c8063715018a61161011a578063af14052c116100ad578063ed3437f81161007c578063ed3437f8146105f9578063f2fde38b14610617578063f64fc64714610633578063f8b45b0514610651578063fbfa77cf1461066f57610206565b8063af14052c14610571578063dd62ed3e1461058f578063e176e654146105bf578063eb313b05146105db57610206565b806397d63f93116100e957806397d63f93146104d5578063a457c2d7146104f3578063a9059cbb14610523578063ad5c46481461055357610206565b8063715018a614610471578063766718081461047b5780638da5cb5b1461049957806395d89b41146104b757610206565b8063329ceacd1161019d57806340c10f191161016c57806340c10f19146103a757806342966c68146103d757806349bd5a5e146104075780636817031b1461042557806370a082311461044157610206565b8063329ceacd1461031f5780633582ad231461033d5780633758e6ce1461035b578063395093511461037757610206565b80631694505e116101d95780631694505e1461029557806318160ddd146102b357806323b872dd146102d1578063313ce5671461030157610206565b806306fdde031461020b578063095ea7b31461022957806311d3e6c41461025957806314228b0b14610277575b600080fd5b61021361068d565b6040516102209190612721565b60405180910390f35b610243600480360381019061023e91906127dc565b61071f565b6040516102509190612837565b60405180910390f35b610261610811565b60405161026e9190612861565b60405180910390f35b61027f610820565b60405161028c9190612837565b60405180910390f35b61029d61085b565b6040516102aa91906128db565b60405180910390f35b6102bb61087f565b6040516102c89190612861565b60405180910390f35b6102eb60048036038101906102e691906128f6565b610889565b6040516102f89190612837565b60405180910390f35b610309610f06565b6040516103169190612965565b60405180910390f35b610327610f1d565b6040516103349190612837565b60405180910390f35b610345610f3d565b6040516103529190612837565b60405180910390f35b61037560048036038101906103709190612980565b610f50565b005b610391600480360381019061038c91906127dc565b610fb3565b60405161039e9190612837565b60405180910390f35b6103c160048036038101906103bc91906127dc565b6111af565b6040516103ce9190612837565b60405180910390f35b6103f160048036038101906103ec91906129ad565b61121f565b6040516103fe9190612837565b60405180910390f35b61040f61128d565b60405161041c91906129fb565b60405180910390f35b61043f600480360381019061043a9190612980565b6112b1565b005b61045b60048036038101906104569190612980565b6112fd565b6040516104689190612861565b60405180910390f35b61047961134e565b005b610483611362565b6040516104909190612861565b60405180910390f35b6104a1611368565b6040516104ae9190612a25565b60405180910390f35b6104bf611391565b6040516104cc9190612721565b60405180910390f35b6104dd611423565b6040516104ea9190612861565b60405180910390f35b61050d600480360381019061050891906127dc565b611429565b60405161051a9190612837565b60405180910390f35b61053d600480360381019061053891906127dc565b6116b9565b60405161054a9190612837565b60405180910390f35b61055b611c26565b6040516105689190612a25565b60405180910390f35b610579611c4a565b6040516105869190612861565b60405180910390f35b6105a960048036038101906105a49190612a40565b611f16565b6040516105b69190612861565b60405180910390f35b6105d960048036038101906105d491906129ad565b611f9d565b005b6105e3611ff3565b6040516105f09190612861565b60405180910390f35b610601611ff9565b60405161060e9190612861565b60405180910390f35b610631600480360381019061062c9190612980565b611fff565b005b61063b612082565b6040516106489190612861565b60405180910390f35b610659612088565b6040516106669190612861565b60405180910390f35b6106776120a2565b6040516106849190612a25565b60405180910390f35b6060600d805461069c90612aaf565b80601f01602080910402602001604051908101604052809291908181526020018280546106c890612aaf565b80156107155780601f106106ea57610100808354040283529160200191610715565b820191906000526020600020905b8154815290600101906020018083116106f857829003601f168201915b5050505050905090565b600081600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040516107ff9190612861565b60405180910390a36001905092915050565b600061081b6120c8565b905090565b600061082a6120fd565b600c60009054906101000a900460ff1615600c60006101000a81548160ff0219169083151502179055506001905090565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600754905090565b600082600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036108c557600080fd5b3073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036108fd57600080fd5b600c60009054906101000a900460ff1615610c4e5761091a611368565b73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141580156109825750600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b80156109bc575061dead73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b8015610a1457507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b8015610a6c57507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b8015610b165750600b60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680610b145750600b60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b155b15610c4d5743600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410610b9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b9390612b78565b60405180910390fd5b43600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550606469d3c21bcecceda1000000610bf79190612bf6565b610c00856112fd565b84610c0b9190612c27565b1115610c4c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4390612ca7565b60405180910390fd5b5b5b610cdd83600960008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461217b90919063ffffffff16565b600960008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506000610d6884612191565b9050610dbc81600860008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461217b90919063ffffffff16565b600860008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550610e5181600860008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546121cb90919063ffffffff16565b600860008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef86604051610ef19190612861565b60405180910390a36001925050509392505050565b6000600f60009054906101000a900460ff16905090565b600042610f37610e106006546121cb90919063ffffffff16565b10905090565b600c60009054906101000a900460ff1681565b610f586120fd565b6001600b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b600061104482600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546121cb90919063ffffffff16565b600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205460405161119d9190612861565b60405180910390a36001905092915050565b6000600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461120b57600080fd5b61121583836121e1565b6001905092915050565b6000600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461127b57600080fd5b611284826123a9565b60019050919050565b7f000000000000000000000000000000000000000000000000000000000000000081565b6112b96120fd565b80600460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000611347600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612524565b9050919050565b6113566120fd565b611360600061255e565b565b60055481565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600e80546113a090612aaf565b80601f01602080910402602001604051908101604052809291908181526020018280546113cc90612aaf565b80156114195780601f106113ee57610100808354040283529160200191611419565b820191906000526020600020905b8154815290600101906020018083116113fc57829003601f168201915b5050505050905090565b60025481565b600080600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050808310611539576000600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506115cd565b61154c838261217b90919063ffffffff16565b600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b8373ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546040516116a69190612861565b60405180910390a3600191505092915050565b600082600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036116f557600080fd5b3073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361172d57600080fd5b600c60009054906101000a900460ff1615611a7e5761174a611368565b73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141580156117b25750600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b80156117ec575061dead73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b801561184457507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b801561189c57507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b80156119465750600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806119445750600b60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b155b15611a7d5743600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054106119cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119c390612b78565b60405180910390fd5b43600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550606469d3c21bcecceda1000000611a279190612bf6565b611a30856112fd565b84611a3b9190612c27565b1115611a7c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a7390612ca7565b60405180910390fd5b5b5b6000611a8984612191565b9050611add81600860003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461217b90919063ffffffff16565b600860003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611b7281600860008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546121cb90919063ffffffff16565b600860008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508473ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef86604051611c129190612861565b60405180910390a360019250505092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b600042611c64610e106006546121cb90919063ffffffff16565b10611ca4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c9b90612d39565b60405180910390fd5b6000611cae612622565b90506000600282611cbf9190612d59565b9050600060035483611cd19190612d59565b905060008103611ce15760035490505b60056000815480929190611cf490612d8a565b9190505550426006819055506000600154905060018303611db9576000611d87670de0b6b3a7640000611d79611d68611d516064611d4389670de0b6b3a764000061265d90919063ffffffff16565b61267390919063ffffffff16565b670de0b6b3a76400006121cb90919063ffffffff16565b60015461265d90919063ffffffff16565b61267390919063ffffffff16565b9050611d916120c8565b811015611da45780600181905550611db3565b611dac6120c8565b6001819055505b50611e36565b611e2f670de0b6b3a7640000611e21611e10611df96064611deb88670de0b6b3a764000061265d90919063ffffffff16565b61267390919063ffffffff16565b670de0b6b3a764000061217b90919063ffffffff16565b60015461265d90919063ffffffff16565b61267390919063ffffffff16565b6001819055505b611e41600254612524565b6007819055507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b158015611eaf57600080fd5b505af1158015611ec3573d6000803e3d6000fd5b505050507fa904dcf42a3461c90173c0b966672b2cb4350e529ea12d44e562fcec43836324600554848484600154604051611f02959493929190612dd2565b60405180910390a160075494505050505090565b6000600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b611fa56120fd565b6032811115611fe9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fe090612e97565b60405180910390fd5b8060038190555050565b60035481565b60015481565b6120076120fd565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603612076576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161206d90612f29565b60405180910390fd5b61207f8161255e565b50565b60065481565b606469d3c21bcecceda100000061209f9190612bf6565b81565b600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60006002547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6120f89190612bf6565b905090565b612105612689565b73ffffffffffffffffffffffffffffffffffffffff16612123611368565b73ffffffffffffffffffffffffffffffffffffffff1614612179576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161217090612f95565b60405180910390fd5b565b600081836121899190612fb5565b905092915050565b60006121c46001546121b669d3c21bcecceda10000008561265d90919063ffffffff16565b61267390919063ffffffff16565b9050919050565b600081836121d99190612c27565b905092915050565b6121f6816007546121cb90919063ffffffff16565b600781905550600061220782612191565b905061221e816002546121cb90919063ffffffff16565b60028190555061222c6120c8565b6001541115612270576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161226790613035565b60405180910390fd5b6122c281600860008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546121cb90919063ffffffff16565b600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055507f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d41213968858383604051612336929190613055565b60405180910390a18273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161239c9190612861565b60405180910390a3505050565b6123be8160075461217b90919063ffffffff16565b60078190555060006123cf82612191565b90506123e68160025461217b90919063ffffffff16565b60028190555061243e81600860003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461217b90919063ffffffff16565b600860003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055507fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca533836040516124b2929190613055565b60405180910390a1600073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516125189190612861565b60405180910390a35050565b600061255769d3c21bcecceda10000006125496001548561265d90919063ffffffff16565b61267390919063ffffffff16565b9050919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000424460055460015460405160200161263f949392919061309f565b6040516020818303038152906040528051906020012060001c905090565b6000818361266b91906130ed565b905092915050565b600081836126819190612bf6565b905092915050565b600033905090565b600081519050919050565b600082825260208201905092915050565b60005b838110156126cb5780820151818401526020810190506126b0565b60008484015250505050565b6000601f19601f8301169050919050565b60006126f382612691565b6126fd818561269c565b935061270d8185602086016126ad565b612716816126d7565b840191505092915050565b6000602082019050818103600083015261273b81846126e8565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061277382612748565b9050919050565b61278381612768565b811461278e57600080fd5b50565b6000813590506127a08161277a565b92915050565b6000819050919050565b6127b9816127a6565b81146127c457600080fd5b50565b6000813590506127d6816127b0565b92915050565b600080604083850312156127f3576127f2612743565b5b600061280185828601612791565b9250506020612812858286016127c7565b9150509250929050565b60008115159050919050565b6128318161281c565b82525050565b600060208201905061284c6000830184612828565b92915050565b61285b816127a6565b82525050565b60006020820190506128766000830184612852565b92915050565b6000819050919050565b60006128a161289c61289784612748565b61287c565b612748565b9050919050565b60006128b382612886565b9050919050565b60006128c5826128a8565b9050919050565b6128d5816128ba565b82525050565b60006020820190506128f060008301846128cc565b92915050565b60008060006060848603121561290f5761290e612743565b5b600061291d86828701612791565b935050602061292e86828701612791565b925050604061293f868287016127c7565b9150509250925092565b600060ff82169050919050565b61295f81612949565b82525050565b600060208201905061297a6000830184612956565b92915050565b60006020828403121561299657612995612743565b5b60006129a484828501612791565b91505092915050565b6000602082840312156129c3576129c2612743565b5b60006129d1848285016127c7565b91505092915050565b60006129e5826128a8565b9050919050565b6129f5816129da565b82525050565b6000602082019050612a1060008301846129ec565b92915050565b612a1f81612768565b82525050565b6000602082019050612a3a6000830184612a16565b92915050565b60008060408385031215612a5757612a56612743565b5b6000612a6585828601612791565b9250506020612a7685828601612791565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612ac757607f821691505b602082108103612ada57612ad9612a80565b5b50919050565b7f7472616e736665723a3a205472616e736665722044656c617920656e61626c6560008201527f642e204f6e6c79206f6e652070757263686173652070657220626c6f636b206160208201527f6c6c6f7765642e00000000000000000000000000000000000000000000000000604082015250565b6000612b6260478361269c565b9150612b6d82612ae0565b606082019050919050565b60006020820190508181036000830152612b9181612b55565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612c01826127a6565b9150612c0c836127a6565b925082612c1c57612c1b612b98565b5b828204905092915050565b6000612c32826127a6565b9150612c3d836127a6565b9250828201905080821115612c5557612c54612bc7565b5b92915050565b7f7472616e736665723a3a204d61782077616c6c65742065786365656465640000600082015250565b6000612c91601e8361269c565b9150612c9c82612c5b565b602082019050919050565b60006020820190508181036000830152612cc081612c84565b9050919050565b7f7265626173653a3a20546f6f20736f6f6e20746f2074726967676572206e657860008201527f7420726562617365210000000000000000000000000000000000000000000000602082015250565b6000612d2360298361269c565b9150612d2e82612cc7565b604082019050919050565b60006020820190508181036000830152612d5281612d16565b9050919050565b6000612d64826127a6565b9150612d6f836127a6565b925082612d7f57612d7e612b98565b5b828206905092915050565b6000612d95826127a6565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203612dc757612dc6612bc7565b5b600182019050919050565b600060a082019050612de76000830188612852565b612df46020830187612852565b612e016040830186612852565b612e0e6060830185612852565b612e1b6080830184612852565b9695505050505050565b7f4d6178207265626173652070657263656e74616765206d757374206265206c7460008201527f65207468616e2035300000000000000000000000000000000000000000000000602082015250565b6000612e8160298361269c565b9150612e8c82612e25565b604082019050919050565b60006020820190508181036000830152612eb081612e74565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612f1360268361269c565b9150612f1e82612eb7565b604082019050919050565b60006020820190508181036000830152612f4281612f06565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612f7f60208361269c565b9150612f8a82612f49565b602082019050919050565b60006020820190508181036000830152612fae81612f72565b9050919050565b6000612fc0826127a6565b9150612fcb836127a6565b9250828203905081811115612fe357612fe2612bc7565b5b92915050565b7f6d6178207363616c696e6720666163746f7220746f6f206c6f77000000000000600082015250565b600061301f601a8361269c565b915061302a82612fe9565b602082019050919050565b6000602082019050818103600083015261304e81613012565b9050919050565b600060408201905061306a6000830185612a16565b6130776020830184612852565b9392505050565b6000819050919050565b613099613094826127a6565b61307e565b82525050565b60006130ab8287613088565b6020820191506130bb8286613088565b6020820191506130cb8285613088565b6020820191506130db8284613088565b60208201915081905095945050505050565b60006130f8826127a6565b9150613103836127a6565b9250828202613111816127a6565b9150828204841483151761312857613127612bc7565b5b509291505056fea26469706673582212202fb603b214ec7f43fbd0503c0d1764ccc17542bc188e74609d829e84c125be4164736f6c63430008130033
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106102065760003560e01c8063715018a61161011a578063af14052c116100ad578063ed3437f81161007c578063ed3437f8146105f9578063f2fde38b14610617578063f64fc64714610633578063f8b45b0514610651578063fbfa77cf1461066f57610206565b8063af14052c14610571578063dd62ed3e1461058f578063e176e654146105bf578063eb313b05146105db57610206565b806397d63f93116100e957806397d63f93146104d5578063a457c2d7146104f3578063a9059cbb14610523578063ad5c46481461055357610206565b8063715018a614610471578063766718081461047b5780638da5cb5b1461049957806395d89b41146104b757610206565b8063329ceacd1161019d57806340c10f191161016c57806340c10f19146103a757806342966c68146103d757806349bd5a5e146104075780636817031b1461042557806370a082311461044157610206565b8063329ceacd1461031f5780633582ad231461033d5780633758e6ce1461035b578063395093511461037757610206565b80631694505e116101d95780631694505e1461029557806318160ddd146102b357806323b872dd146102d1578063313ce5671461030157610206565b806306fdde031461020b578063095ea7b31461022957806311d3e6c41461025957806314228b0b14610277575b600080fd5b61021361068d565b6040516102209190612721565b60405180910390f35b610243600480360381019061023e91906127dc565b61071f565b6040516102509190612837565b60405180910390f35b610261610811565b60405161026e9190612861565b60405180910390f35b61027f610820565b60405161028c9190612837565b60405180910390f35b61029d61085b565b6040516102aa91906128db565b60405180910390f35b6102bb61087f565b6040516102c89190612861565b60405180910390f35b6102eb60048036038101906102e691906128f6565b610889565b6040516102f89190612837565b60405180910390f35b610309610f06565b6040516103169190612965565b60405180910390f35b610327610f1d565b6040516103349190612837565b60405180910390f35b610345610f3d565b6040516103529190612837565b60405180910390f35b61037560048036038101906103709190612980565b610f50565b005b610391600480360381019061038c91906127dc565b610fb3565b60405161039e9190612837565b60405180910390f35b6103c160048036038101906103bc91906127dc565b6111af565b6040516103ce9190612837565b60405180910390f35b6103f160048036038101906103ec91906129ad565b61121f565b6040516103fe9190612837565b60405180910390f35b61040f61128d565b60405161041c91906129fb565b60405180910390f35b61043f600480360381019061043a9190612980565b6112b1565b005b61045b60048036038101906104569190612980565b6112fd565b6040516104689190612861565b60405180910390f35b61047961134e565b005b610483611362565b6040516104909190612861565b60405180910390f35b6104a1611368565b6040516104ae9190612a25565b60405180910390f35b6104bf611391565b6040516104cc9190612721565b60405180910390f35b6104dd611423565b6040516104ea9190612861565b60405180910390f35b61050d600480360381019061050891906127dc565b611429565b60405161051a9190612837565b60405180910390f35b61053d600480360381019061053891906127dc565b6116b9565b60405161054a9190612837565b60405180910390f35b61055b611c26565b6040516105689190612a25565b60405180910390f35b610579611c4a565b6040516105869190612861565b60405180910390f35b6105a960048036038101906105a49190612a40565b611f16565b6040516105b69190612861565b60405180910390f35b6105d960048036038101906105d491906129ad565b611f9d565b005b6105e3611ff3565b6040516105f09190612861565b60405180910390f35b610601611ff9565b60405161060e9190612861565b60405180910390f35b610631600480360381019061062c9190612980565b611fff565b005b61063b612082565b6040516106489190612861565b60405180910390f35b610659612088565b6040516106669190612861565b60405180910390f35b6106776120a2565b6040516106849190612a25565b60405180910390f35b6060600d805461069c90612aaf565b80601f01602080910402602001604051908101604052809291908181526020018280546106c890612aaf565b80156107155780601f106106ea57610100808354040283529160200191610715565b820191906000526020600020905b8154815290600101906020018083116106f857829003601f168201915b5050505050905090565b600081600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040516107ff9190612861565b60405180910390a36001905092915050565b600061081b6120c8565b905090565b600061082a6120fd565b600c60009054906101000a900460ff1615600c60006101000a81548160ff0219169083151502179055506001905090565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6000600754905090565b600082600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036108c557600080fd5b3073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036108fd57600080fd5b600c60009054906101000a900460ff1615610c4e5761091a611368565b73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141580156109825750600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b80156109bc575061dead73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b8015610a1457507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b8015610a6c57507f00000000000000000000000010d091f3ee0afe7b0997adf39bbf96800a22c07a73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b8015610b165750600b60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680610b145750600b60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b155b15610c4d5743600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410610b9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b9390612b78565b60405180910390fd5b43600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550606469d3c21bcecceda1000000610bf79190612bf6565b610c00856112fd565b84610c0b9190612c27565b1115610c4c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4390612ca7565b60405180910390fd5b5b5b610cdd83600960008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461217b90919063ffffffff16565b600960008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506000610d6884612191565b9050610dbc81600860008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461217b90919063ffffffff16565b600860008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550610e5181600860008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546121cb90919063ffffffff16565b600860008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef86604051610ef19190612861565b60405180910390a36001925050509392505050565b6000600f60009054906101000a900460ff16905090565b600042610f37610e106006546121cb90919063ffffffff16565b10905090565b600c60009054906101000a900460ff1681565b610f586120fd565b6001600b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b600061104482600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546121cb90919063ffffffff16565b600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205460405161119d9190612861565b60405180910390a36001905092915050565b6000600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461120b57600080fd5b61121583836121e1565b6001905092915050565b6000600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461127b57600080fd5b611284826123a9565b60019050919050565b7f00000000000000000000000010d091f3ee0afe7b0997adf39bbf96800a22c07a81565b6112b96120fd565b80600460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000611347600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612524565b9050919050565b6113566120fd565b611360600061255e565b565b60055481565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600e80546113a090612aaf565b80601f01602080910402602001604051908101604052809291908181526020018280546113cc90612aaf565b80156114195780601f106113ee57610100808354040283529160200191611419565b820191906000526020600020905b8154815290600101906020018083116113fc57829003601f168201915b5050505050905090565b60025481565b600080600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050808310611539576000600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506115cd565b61154c838261217b90919063ffffffff16565b600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b8373ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546040516116a69190612861565b60405180910390a3600191505092915050565b600082600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036116f557600080fd5b3073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361172d57600080fd5b600c60009054906101000a900460ff1615611a7e5761174a611368565b73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141580156117b25750600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b80156117ec575061dead73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b801561184457507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b801561189c57507f00000000000000000000000010d091f3ee0afe7b0997adf39bbf96800a22c07a73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b80156119465750600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806119445750600b60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b155b15611a7d5743600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054106119cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119c390612b78565b60405180910390fd5b43600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550606469d3c21bcecceda1000000611a279190612bf6565b611a30856112fd565b84611a3b9190612c27565b1115611a7c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a7390612ca7565b60405180910390fd5b5b5b6000611a8984612191565b9050611add81600860003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461217b90919063ffffffff16565b600860003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611b7281600860008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546121cb90919063ffffffff16565b600860008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508473ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef86604051611c129190612861565b60405180910390a360019250505092915050565b7f000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc281565b600042611c64610e106006546121cb90919063ffffffff16565b10611ca4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c9b90612d39565b60405180910390fd5b6000611cae612622565b90506000600282611cbf9190612d59565b9050600060035483611cd19190612d59565b905060008103611ce15760035490505b60056000815480929190611cf490612d8a565b9190505550426006819055506000600154905060018303611db9576000611d87670de0b6b3a7640000611d79611d68611d516064611d4389670de0b6b3a764000061265d90919063ffffffff16565b61267390919063ffffffff16565b670de0b6b3a76400006121cb90919063ffffffff16565b60015461265d90919063ffffffff16565b61267390919063ffffffff16565b9050611d916120c8565b811015611da45780600181905550611db3565b611dac6120c8565b6001819055505b50611e36565b611e2f670de0b6b3a7640000611e21611e10611df96064611deb88670de0b6b3a764000061265d90919063ffffffff16565b61267390919063ffffffff16565b670de0b6b3a764000061217b90919063ffffffff16565b60015461265d90919063ffffffff16565b61267390919063ffffffff16565b6001819055505b611e41600254612524565b6007819055507f00000000000000000000000010d091f3ee0afe7b0997adf39bbf96800a22c07a73ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b158015611eaf57600080fd5b505af1158015611ec3573d6000803e3d6000fd5b505050507fa904dcf42a3461c90173c0b966672b2cb4350e529ea12d44e562fcec43836324600554848484600154604051611f02959493929190612dd2565b60405180910390a160075494505050505090565b6000600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b611fa56120fd565b6032811115611fe9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fe090612e97565b60405180910390fd5b8060038190555050565b60035481565b60015481565b6120076120fd565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603612076576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161206d90612f29565b60405180910390fd5b61207f8161255e565b50565b60065481565b606469d3c21bcecceda100000061209f9190612bf6565b81565b600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60006002547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6120f89190612bf6565b905090565b612105612689565b73ffffffffffffffffffffffffffffffffffffffff16612123611368565b73ffffffffffffffffffffffffffffffffffffffff1614612179576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161217090612f95565b60405180910390fd5b565b600081836121899190612fb5565b905092915050565b60006121c46001546121b669d3c21bcecceda10000008561265d90919063ffffffff16565b61267390919063ffffffff16565b9050919050565b600081836121d99190612c27565b905092915050565b6121f6816007546121cb90919063ffffffff16565b600781905550600061220782612191565b905061221e816002546121cb90919063ffffffff16565b60028190555061222c6120c8565b6001541115612270576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161226790613035565b60405180910390fd5b6122c281600860008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546121cb90919063ffffffff16565b600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055507f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d41213968858383604051612336929190613055565b60405180910390a18273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161239c9190612861565b60405180910390a3505050565b6123be8160075461217b90919063ffffffff16565b60078190555060006123cf82612191565b90506123e68160025461217b90919063ffffffff16565b60028190555061243e81600860003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461217b90919063ffffffff16565b600860003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055507fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca533836040516124b2929190613055565b60405180910390a1600073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516125189190612861565b60405180910390a35050565b600061255769d3c21bcecceda10000006125496001548561265d90919063ffffffff16565b61267390919063ffffffff16565b9050919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000424460055460015460405160200161263f949392919061309f565b6040516020818303038152906040528051906020012060001c905090565b6000818361266b91906130ed565b905092915050565b600081836126819190612bf6565b905092915050565b600033905090565b600081519050919050565b600082825260208201905092915050565b60005b838110156126cb5780820151818401526020810190506126b0565b60008484015250505050565b6000601f19601f8301169050919050565b60006126f382612691565b6126fd818561269c565b935061270d8185602086016126ad565b612716816126d7565b840191505092915050565b6000602082019050818103600083015261273b81846126e8565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061277382612748565b9050919050565b61278381612768565b811461278e57600080fd5b50565b6000813590506127a08161277a565b92915050565b6000819050919050565b6127b9816127a6565b81146127c457600080fd5b50565b6000813590506127d6816127b0565b92915050565b600080604083850312156127f3576127f2612743565b5b600061280185828601612791565b9250506020612812858286016127c7565b9150509250929050565b60008115159050919050565b6128318161281c565b82525050565b600060208201905061284c6000830184612828565b92915050565b61285b816127a6565b82525050565b60006020820190506128766000830184612852565b92915050565b6000819050919050565b60006128a161289c61289784612748565b61287c565b612748565b9050919050565b60006128b382612886565b9050919050565b60006128c5826128a8565b9050919050565b6128d5816128ba565b82525050565b60006020820190506128f060008301846128cc565b92915050565b60008060006060848603121561290f5761290e612743565b5b600061291d86828701612791565b935050602061292e86828701612791565b925050604061293f868287016127c7565b9150509250925092565b600060ff82169050919050565b61295f81612949565b82525050565b600060208201905061297a6000830184612956565b92915050565b60006020828403121561299657612995612743565b5b60006129a484828501612791565b91505092915050565b6000602082840312156129c3576129c2612743565b5b60006129d1848285016127c7565b91505092915050565b60006129e5826128a8565b9050919050565b6129f5816129da565b82525050565b6000602082019050612a1060008301846129ec565b92915050565b612a1f81612768565b82525050565b6000602082019050612a3a6000830184612a16565b92915050565b60008060408385031215612a5757612a56612743565b5b6000612a6585828601612791565b9250506020612a7685828601612791565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612ac757607f821691505b602082108103612ada57612ad9612a80565b5b50919050565b7f7472616e736665723a3a205472616e736665722044656c617920656e61626c6560008201527f642e204f6e6c79206f6e652070757263686173652070657220626c6f636b206160208201527f6c6c6f7765642e00000000000000000000000000000000000000000000000000604082015250565b6000612b6260478361269c565b9150612b6d82612ae0565b606082019050919050565b60006020820190508181036000830152612b9181612b55565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612c01826127a6565b9150612c0c836127a6565b925082612c1c57612c1b612b98565b5b828204905092915050565b6000612c32826127a6565b9150612c3d836127a6565b9250828201905080821115612c5557612c54612bc7565b5b92915050565b7f7472616e736665723a3a204d61782077616c6c65742065786365656465640000600082015250565b6000612c91601e8361269c565b9150612c9c82612c5b565b602082019050919050565b60006020820190508181036000830152612cc081612c84565b9050919050565b7f7265626173653a3a20546f6f20736f6f6e20746f2074726967676572206e657860008201527f7420726562617365210000000000000000000000000000000000000000000000602082015250565b6000612d2360298361269c565b9150612d2e82612cc7565b604082019050919050565b60006020820190508181036000830152612d5281612d16565b9050919050565b6000612d64826127a6565b9150612d6f836127a6565b925082612d7f57612d7e612b98565b5b828206905092915050565b6000612d95826127a6565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203612dc757612dc6612bc7565b5b600182019050919050565b600060a082019050612de76000830188612852565b612df46020830187612852565b612e016040830186612852565b612e0e6060830185612852565b612e1b6080830184612852565b9695505050505050565b7f4d6178207265626173652070657263656e74616765206d757374206265206c7460008201527f65207468616e2035300000000000000000000000000000000000000000000000602082015250565b6000612e8160298361269c565b9150612e8c82612e25565b604082019050919050565b60006020820190508181036000830152612eb081612e74565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612f1360268361269c565b9150612f1e82612eb7565b604082019050919050565b60006020820190508181036000830152612f4281612f06565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612f7f60208361269c565b9150612f8a82612f49565b602082019050919050565b60006020820190508181036000830152612fae81612f72565b9050919050565b6000612fc0826127a6565b9150612fcb836127a6565b9250828203905081811115612fe357612fe2612bc7565b5b92915050565b7f6d6178207363616c696e6720666163746f7220746f6f206c6f77000000000000600082015250565b600061301f601a8361269c565b915061302a82612fe9565b602082019050919050565b6000602082019050818103600083015261304e81613012565b9050919050565b600060408201905061306a6000830185612a16565b6130776020830184612852565b9392505050565b6000819050919050565b613099613094826127a6565b61307e565b82525050565b60006130ab8287613088565b6020820191506130bb8286613088565b6020820191506130cb8285613088565b6020820191506130db8284613088565b60208201915081905095945050505050565b60006130f8826127a6565b9150613103836127a6565b9250828202613111816127a6565b9150828204841483151761312857613127612bc7565b5b509291505056fea26469706673582212202fb603b214ec7f43fbd0503c0d1764ccc17542bc188e74609d829e84c125be4164736f6c63430008130033
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.