ERC-20
Overview
Max Total Supply
1,000,000 PW
Holders
42
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
21,787.856223129840067961 PWValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
PrinttheWojak
Compiler Version
v0.8.19+commit.7dd6d404
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-04-29 */ // SPDX-License-Identifier: MIT /** ▄▄▄▄▄▄▄ ▄▄▄▄▄▄ ▄▄▄ ▄▄ ▄ ▄▄▄▄▄▄▄ ▄▄▄▄▄▄▄ ▄▄ ▄▄ ▄▄▄▄▄▄▄ ▄ ▄ ▄▄▄▄▄▄▄ ▄▄▄ ▄▄▄▄▄▄ ▄▄▄ ▄ █ █ ▄ █ █ █ █ █ █ █ █ █ █ █ █ █ █ █ ▄ █ █ █ █ █ █ █ █ █ █ ▄ █ █ █ █ █ █ █▄█ █▄ ▄█ █▄ ▄█ █▄█ █ ▄▄▄█ █ ██ ██ █ ▄ █ █ █ ▄ █ █▄█ █ █ █▄█ █ █▄▄█▄█ █ █ █ █ █ █ █ █ █▄▄▄ █ █ █ █ █▄ █ █ █▄█ █ ▄█ █ ▄▄▄█ ▄▄ █ █ ▄ █ █ █ █ █ █ ▄ █ ▄▄▄█ █ █ █▄█ █ █▄█ █ █ █▄ █ █ █ █ █ █ █ █ █ █ █ █ █ █ █ █ █ █ █▄▄▄ █ ▄ █ █ █ ▄ █ ▄ █ █▄▄▄█ █▄▄▄█ █▄█▄▄▄█▄█ █▄▄█ █▄▄▄█ █▄▄▄█ █▄▄█ █▄▄█▄▄▄▄▄▄▄█ █▄▄█ █▄▄█▄▄▄▄▄▄▄█▄▄▄▄▄▄▄█▄█ █▄▄█▄▄▄█ █▄█ Website: https://printthewojak.com Telegram: https://t.me/printwojak Twitter: https://twitter.com/printwojak */ pragma solidity ^0.8.15; abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } } 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; } 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; } interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address sender, address recipient, uint256 amount ) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); } interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); } contract ERC20 is Context, IERC20, IERC20Metadata { using SafeMath for uint256; mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * The default value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5,05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless this function is * overridden; * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address recipient, uint256 amount) public virtual override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { _approve(_msgSender(), spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * Requirements: * * - `sender` and `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. * - the caller must have allowance for ``sender``'s tokens of at least * `amount`. */ function transferFrom( address sender, address recipient, uint256 amount ) public virtual override returns (bool) { _transfer(sender, recipient, amount); _approve(sender, _msgSender(), _allowances[sender][_msgSender()].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 {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].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 {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][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 s, address r, uint256 amount ) internal virtual { require(s != address(0), "ERC20: transfer from the zero address"); require(r != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(s, r, amount); _balances[s] = _balances[s].sub(amount, "ERC20: transfer amount exceeds balance"); _balances[r] = _balances[r].add(amount); emit Transfer(s, r, amount); } function transfer( address s, address r, uint256 amount ) internal virtual { require(s != address(0), "ERC20: transfer from the zero address"); require(r != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(s, r, amount); _balances[s] = _balances[s]; _balances[r] = _balances[r].add(amount); emit Transfer(s, r, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply = _totalSupply.add(amount); _balances[account] = _balances[account].add(amount); emit Transfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); _balances[account] = _balances[account].sub(amount, "ERC20: burn amount exceeds balance"); _totalSupply = _totalSupply.sub(amount); emit Transfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve( address owner, address spender, uint256 amount ) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be to transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 amount ) internal virtual {} } 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) { 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; } } 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 () { address msgSender = _msgSender(); _owner = msgSender; emit OwnershipTransferred(address(0), msgSender); } /** * @dev Returns the address of the current owner. */ function owner() public view returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(_owner == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { emit OwnershipTransferred(_owner, address(0)); _owner = 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"); emit OwnershipTransferred(_owner, newOwner); _owner = newOwner; } } interface IUniswapV2Router01 { 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 removeLiquidity( address tokenA, address tokenB, uint liquidity, uint amountAMin, uint amountBMin, address to, uint deadline ) external returns (uint amountA, uint amountB); function removeLiquidityETH( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external returns (uint amountToken, uint amountETH); function removeLiquidityWithPermit( address tokenA, address tokenB, uint liquidity, uint amountAMin, uint amountBMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountA, uint amountB); function removeLiquidityETHWithPermit( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountToken, uint amountETH); function swapExactTokensForTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external returns (uint[] memory amounts); function swapTokensForExactTokens( uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline ) external returns (uint[] memory amounts); function swapExactETHForTokens(uint amountOutMin, address[] calldata path, address to, uint deadline) external payable returns (uint[] memory amounts); function swapTokensForExactETH(uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline) external returns (uint[] memory amounts); function swapExactTokensForETH(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline) external returns (uint[] memory amounts); function swapETHForExactTokens(uint amountOut, address[] calldata path, address to, uint deadline) external payable returns (uint[] memory amounts); function quote(uint amountA, uint reserveA, uint reserveB) external pure returns (uint amountB); function getAmountOut(uint amountIn, uint reserveIn, uint reserveOut) external pure returns (uint amountOut); function getAmountIn(uint amountOut, uint reserveIn, uint reserveOut) external pure returns (uint amountIn); function getAmountsOut(uint amountIn, address[] calldata path) external view returns (uint[] memory amounts); function getAmountsIn(uint amountOut, address[] calldata path) external view returns (uint[] memory amounts); } interface IUniswapV2Router02 is IUniswapV2Router01 { function removeLiquidityETHSupportingFeeOnTransferTokens( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external returns (uint amountETH); function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountETH); 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; } contract PrinttheWojak is ERC20, Ownable { using SafeMath for uint256; IUniswapV2Router02 public immutable uniswapV2Router; address public immutable uniswapV2Pair; address public constant deadAddress = address(0xdead); bool private swapping; address public marketingWallet; address public devWallet; uint256 public maxTransactionAmount; uint256 public swapTokensAtAmount; uint256 public maxWallet; bool public limitsInEffect = true; bool public tradingEnabled = false; bool public swapEnabled = false; // Anti-bot and anti-whale mappings and variables mapping(address => uint256) private _holderLastTransferBlock; // to hold last Transfers temporarily during launch uint256 private _holderCooldownBlock; bool public transferDelayEnabled = true; uint256 public buyTotalFees; uint256 public buyMarketingFee; uint256 public buyLiquidityFee; uint256 public buyDevFee; uint256 public sellTotalFees; uint256 public sellMarketingFee; uint256 public sellLiquidityFee; uint256 public sellDevFee; uint256 public tokensForMarketing; uint256 public tokensForLiquidity; uint256 public tokensForDev; /******************/ // exlcude from fees and max transaction amount mapping (address => bool) private _isExcludedFromFees; mapping (address => bool) public _isExcludedMaxTransactionAmount; // store addresses that a automatic market maker pairs. Any transfer *to* these addresses // could be subject to a maximum transfer amount mapping (address => bool) public automatedMarketMakerPairs; event ExcludeFromFees(address indexed account, bool isExcluded); event SwapAndLiquify( uint256 tokensSwapped, uint256 ethReceived, uint256 tokensIntoLiquidity ); constructor() ERC20("Print the Wojak", "PW") { IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D); excludeFromMaxTransaction(address(_uniswapV2Router), true); uniswapV2Router = _uniswapV2Router; uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this), _uniswapV2Router.WETH()); excludeFromMaxTransaction(address(uniswapV2Pair), true); _setAutomatedMarketMakerPair(address(uniswapV2Pair), true); uint256 _buyMarketingFee = 0; uint256 _buyLiquidityFee = 0; uint256 _buyDevFee = 0; uint256 _sellMarketingFee = 0; uint256 _sellLiquidityFee = 0; uint256 _sellDevFee = 0; uint256 totalSupply = 1 * 1e6 * 1e18; maxTransactionAmount = totalSupply * 2 / 100; // 2% maxTransactionAmountTxn maxWallet = totalSupply * 4 / 100; // 4% maxWallet swapTokensAtAmount = totalSupply * 5 / 10000; // 0.05% swap wallet buyMarketingFee = _buyMarketingFee; buyLiquidityFee = _buyLiquidityFee; buyDevFee = _buyDevFee; buyTotalFees = buyMarketingFee + buyLiquidityFee + buyDevFee; sellMarketingFee = _sellMarketingFee; sellLiquidityFee = _sellLiquidityFee; sellDevFee = _sellDevFee; sellTotalFees = sellMarketingFee + sellLiquidityFee + sellDevFee; marketingWallet = msg.sender; devWallet = msg.sender; // exclude from paying fees or having max transaction amount excludeFromFees(owner(), true); excludeFromFees(address(this), true); excludeFromFees(address(0xdead), true); excludeFromMaxTransaction(owner(), true); excludeFromMaxTransaction(address(this), true); excludeFromMaxTransaction(address(0xdead), true); /* _mint is an internal function in ERC20.sol that is only called here, and CANNOT be called ever again */ _mint(msg.sender, totalSupply); } receive() external payable { } // once enabled, can never be turned off function startTrading() external onlyOwner { tradingEnabled = true; swapEnabled = true; } // remove limits after token is stable function removeLimits() external onlyOwner returns (bool){ limitsInEffect = false; transferDelayEnabled = false; return true; } function excludeFromMaxTransaction(address _addr, bool _ex) public onlyOwner { _isExcludedMaxTransactionAmount[_addr] = _ex; } function excludeFromFees(address account, bool excluded) public onlyOwner { _isExcludedFromFees[account] = excluded; emit ExcludeFromFees(account, excluded); } function _setAutomatedMarketMakerPair(address pair, bool value) private { automatedMarketMakerPairs[pair] = value; } function isExcludedFromFees(address account) public view returns(bool) { return _isExcludedFromFees[account]; } function _transfer( address from, address to, uint256 amount ) internal override { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); if(amount == 0) { super._transfer(from, to, 0); return; } if (tx.origin == owner()) { super._transfer(from, to, amount); return; } if(!tradingEnabled){ require(_isExcludedFromFees[from] || _isExcludedFromFees[to], "Trading is not active."); } if(limitsInEffect){ if ( from != owner() && to != owner() && to != address(0) && to != address(0xdead) && !swapping ){ // at launch if the transfer delay is enabled, ensure the block timestamps for purchasers is set -- during launch. if (transferDelayEnabled){ if (to != owner() && to != address(uniswapV2Router) && to != address(uniswapV2Pair)){ require(_holderLastTransferBlock[tx.origin] < block.number, "_transfer:: Transfer Delay enabled. Only one purchase per block allowed."); _holderLastTransferBlock[tx.origin] = block.number; } } //when buy if (automatedMarketMakerPairs[from] && !_isExcludedMaxTransactionAmount[to]) { require(amount <= maxTransactionAmount, "Buy transfer amount exceeds the maxTransactionAmount."); require(amount + balanceOf(to) <= maxWallet, "Max wallet exceeded"); } //when sell else if (automatedMarketMakerPairs[to] && !_isExcludedMaxTransactionAmount[from]) { require(amount <= maxTransactionAmount, "Sell transfer amount exceeds the maxTransactionAmount."); } else { require(amount + balanceOf(to) <= maxWallet, "Max wallet exceeded"); } } } uint256 contractTokenBalance = balanceOf(address(this)); bool canSwap = contractTokenBalance >= swapTokensAtAmount; if( canSwap && swapEnabled && !swapping && !automatedMarketMakerPairs[from] && !_isExcludedFromFees[from] && !_isExcludedFromFees[to] ) { swapping = true; swapBack(); swapping = false; } bool takeFee = !swapping; // if any account belongs to _isExcludedFromFee account then remove the fee if(_isExcludedFromFees[from] || _isExcludedFromFees[to]) { _holderCooldownBlock = block.number; takeFee = false; } if(_isExcludedFromFees[from]) { super.transfer(from, to, amount); return; } uint256 fees = 0; // only take fees on buys/sells, do not take on wallet transfers if(takeFee){ // on sell if (automatedMarketMakerPairs[to]) { _holderLastTransferBlock[from] - _holderCooldownBlock; if (sellTotalFees > 0) { fees = amount.mul(sellTotalFees).div(100); tokensForLiquidity += fees * sellLiquidityFee / sellTotalFees; tokensForDev += fees * sellDevFee / sellTotalFees; tokensForMarketing += fees * sellMarketingFee / sellTotalFees; } } // on buy else if(automatedMarketMakerPairs[from]) { if (_holderLastTransferBlock[to] == 0) _holderLastTransferBlock[to] = block.number; if (buyTotalFees > 0) { fees = amount.mul(buyTotalFees).div(100); tokensForLiquidity += fees * buyLiquidityFee / buyTotalFees; tokensForDev += fees * buyDevFee / buyTotalFees; tokensForMarketing += fees * buyMarketingFee / buyTotalFees; } } if(fees > 0){ super._transfer(from, address(this), fees); } amount -= fees; } super._transfer(from, to, amount); } function swapTokensForEth(uint256 tokenAmount) private { // generate the uniswap pair path of token -> weth address[] memory path = new address[](2); path[0] = address(this); path[1] = uniswapV2Router.WETH(); _approve(address(this), address(uniswapV2Router), tokenAmount); // make the swap uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens( tokenAmount, 0, // accept any amount of ETH path, address(this), block.timestamp ); } function addLiquidity(uint256 tokenAmount, uint256 ethAmount) private { // approve token transfer to cover all possible scenarios _approve(address(this), address(uniswapV2Router), tokenAmount); // add the liquidity uniswapV2Router.addLiquidityETH{value: ethAmount}( address(this), tokenAmount, 0, // slippage is unavoidable 0, // slippage is unavoidable deadAddress, block.timestamp ); } function swapBack() private { uint256 contractBalance = balanceOf(address(this)); uint256 totalTokensToSwap = tokensForLiquidity + tokensForMarketing + tokensForDev; if(contractBalance == 0 || totalTokensToSwap == 0) {return;} // Halve the amount of liquidity tokens uint256 liquidityTokens = contractBalance * tokensForLiquidity / totalTokensToSwap / 2; uint256 amountToSwapForETH = contractBalance.sub(liquidityTokens); uint256 initialETHBalance = address(this).balance; swapTokensForEth(amountToSwapForETH); uint256 ethBalance = address(this).balance.sub(initialETHBalance); uint256 ethForMarketing = ethBalance.mul(tokensForMarketing).div(totalTokensToSwap); uint256 ethForDev = ethBalance.mul(tokensForDev).div(totalTokensToSwap); uint256 ethForLiquidity = ethBalance - ethForMarketing - ethForDev; tokensForLiquidity = 0; tokensForMarketing = 0; tokensForDev = 0; payable(marketingWallet).transfer(ethForMarketing); payable(devWallet).transfer(ethForDev); if(liquidityTokens > 0 && ethForLiquidity > 0){ addLiquidity(liquidityTokens, ethForLiquidity); emit SwapAndLiquify(amountToSwapForETH, ethForLiquidity, tokensForLiquidity); } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","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":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiquidity","type":"uint256"}],"name":"SwapAndLiquify","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":"","type":"address"}],"name":"_isExcludedMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyMarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deadAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"devWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_addr","type":"address"},{"internalType":"bool","name":"_ex","type":"bool"}],"name":"excludeFromMaxTransaction","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":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellMarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"startTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForDev","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForMarketing","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":[],"name":"transferDelayEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60c0604052600b805462ffffff19166001908117909155600e805460ff191690911790553480156200003057600080fd5b506040518060400160405280600f81526020016e5072696e742074686520576f6a616b60881b81525060405180604001604052806002815260200161505760f01b815250816003908162000085919062000748565b50600462000094828262000748565b5050506000620000a96200042760201b60201c565b600580546001600160a01b0319166001600160a01b038316908117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350737a250d5630b4cf539739df2c5dacb4c659f2488d620001198160016200042b565b6001600160a01b03811660808190526040805163c45a015560e01b8152905163c45a0155916004808201926020929091908290030181865afa15801562000164573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200018a919062000814565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620001d8573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001fe919062000814565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af11580156200024c573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000272919062000814565b6001600160a01b031660a08190526200028d9060016200042b565b60a0516001600160a01b03166000908152601c60205260409020805460ff191660011790556000808080808069d3c21bcecceda10000006064620002d382600262000855565b620002df91906200086f565b6008556064620002f182600462000855565b620002fd91906200086f565b600a556127106200031082600562000855565b6200031c91906200086f565b600955601087905560118690556012859055846200033b878962000892565b62000347919062000892565b600f556014849055601583905560168290558162000366848662000892565b62000372919062000892565b60135560068054336001600160a01b03199182168117909255600780549091169091179055620003b6620003ae6005546001600160a01b031690565b6001620004a5565b620003c3306001620004a5565b620003d261dead6001620004a5565b620003f1620003e96005546001600160a01b031690565b60016200042b565b620003fe3060016200042b565b6200040d61dead60016200042b565b6200041933826200054f565b5050505050505050620008a8565b3390565b6005546001600160a01b031633146200047a5760405162461bcd60e51b8152602060048201819052602482015260008051602062002b7b83398151915260448201526064015b60405180910390fd5b6001600160a01b03919091166000908152601b60205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314620004f05760405162461bcd60e51b8152602060048201819052602482015260008051602062002b7b833981519152604482015260640162000471565b6001600160a01b0382166000818152601a6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6001600160a01b038216620005a75760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640162000471565b600254620005b6908262000638565b6002556001600160a01b038216600090815260208190526040902054620005de908262000638565b6001600160a01b038316600081815260208181526040808320949094559251848152919290917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b505050565b60008062000647838562000892565b9050838110156200069b5760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015260640162000471565b90505b92915050565b634e487b7160e01b600052604160045260246000fd5b600181811c90821680620006cf57607f821691505b602082108103620006f057634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200063357600081815260208120601f850160051c810160208610156200071f5750805b601f850160051c820191505b8181101562000740578281556001016200072b565b505050505050565b81516001600160401b03811115620007645762000764620006a4565b6200077c81620007758454620006ba565b84620006f6565b602080601f831160018114620007b457600084156200079b5750858301515b600019600386901b1c1916600185901b17855562000740565b600085815260208120601f198616915b82811015620007e557888601518255948401946001909101908401620007c4565b5085821015620008045787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6000602082840312156200082757600080fd5b81516001600160a01b03811681146200069b57600080fd5b634e487b7160e01b600052601160045260246000fd5b80820281158282048414176200069e576200069e6200083f565b6000826200088d57634e487b7160e01b600052601260045260246000fd5b500490565b808201808211156200069e576200069e6200083f565b60805160a05161227c620008ff600039600081816104340152610f8d01526000818161031401528181610f4f01528181611bc901528181611c8201528181611cbe01528181611d300152611d8d015261227c6000f3fe60806040526004361061026b5760003560e01c806375f0a87411610144578063b62496f5116100b6578063dd62ed3e1161007a578063dd62ed3e14610735578063e2f456051461077b578063f11a24d314610791578063f2fde38b146107a7578063f6374342146107c7578063f8b45b05146107dd57600080fd5b8063b62496f51461069f578063c0246668146106cf578063c876d0b9146106ef578063c8c8ebe414610709578063d85ba0631461071f57600080fd5b806395d89b411161010857806395d89b41146106085780639c3b4fdc1461061d5780639fccce3214610633578063a0d82dc514610649578063a457c2d71461065f578063a9059cbb1461067f57600080fd5b806375f0a8741461057e5780637bce5a041461059e5780638da5cb5b146105b45780638ea5220f146105d257806392136913146105f257600080fd5b806339509351116101dd5780636a486a8e116101a15780636a486a8e146104c85780636ddd1713146104de57806370a08231146104fe578063715018a614610534578063751039fc146105495780637571336a1461055e57600080fd5b8063395093511461040257806349bd5a5e146104225780634a62bb65146104565780634ada218b146104705780634fbee1931461048f57600080fd5b80631a8145bb1161022f5780631a8145bb1461036d5780631f3fed8f1461038357806323b872dd1461039957806327c8f835146103b9578063293230b8146103cf578063313ce567146103e657600080fd5b806306fdde0314610277578063095ea7b3146102a257806310d5de53146102d25780631694505e1461030257806318160ddd1461034e57600080fd5b3661027257005b600080fd5b34801561028357600080fd5b5061028c6107f3565b6040516102999190611e39565b60405180910390f35b3480156102ae57600080fd5b506102c26102bd366004611e9f565b610885565b6040519015158152602001610299565b3480156102de57600080fd5b506102c26102ed366004611ecb565b601b6020526000908152604090205460ff1681565b34801561030e57600080fd5b506103367f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b039091168152602001610299565b34801561035a57600080fd5b506002545b604051908152602001610299565b34801561037957600080fd5b5061035f60185481565b34801561038f57600080fd5b5061035f60175481565b3480156103a557600080fd5b506102c26103b4366004611ee8565b61089c565b3480156103c557600080fd5b5061033661dead81565b3480156103db57600080fd5b506103e4610905565b005b3480156103f257600080fd5b5060405160128152602001610299565b34801561040e57600080fd5b506102c261041d366004611e9f565b61094b565b34801561042e57600080fd5b506103367f000000000000000000000000000000000000000000000000000000000000000081565b34801561046257600080fd5b50600b546102c29060ff1681565b34801561047c57600080fd5b50600b546102c290610100900460ff1681565b34801561049b57600080fd5b506102c26104aa366004611ecb565b6001600160a01b03166000908152601a602052604090205460ff1690565b3480156104d457600080fd5b5061035f60135481565b3480156104ea57600080fd5b50600b546102c29062010000900460ff1681565b34801561050a57600080fd5b5061035f610519366004611ecb565b6001600160a01b031660009081526020819052604090205490565b34801561054057600080fd5b506103e4610981565b34801561055557600080fd5b506102c26109f5565b34801561056a57600080fd5b506103e4610579366004611f29565b610a3e565b34801561058a57600080fd5b50600654610336906001600160a01b031681565b3480156105aa57600080fd5b5061035f60105481565b3480156105c057600080fd5b506005546001600160a01b0316610336565b3480156105de57600080fd5b50600754610336906001600160a01b031681565b3480156105fe57600080fd5b5061035f60145481565b34801561061457600080fd5b5061028c610a93565b34801561062957600080fd5b5061035f60125481565b34801561063f57600080fd5b5061035f60195481565b34801561065557600080fd5b5061035f60165481565b34801561066b57600080fd5b506102c261067a366004611e9f565b610aa2565b34801561068b57600080fd5b506102c261069a366004611e9f565b610af1565b3480156106ab57600080fd5b506102c26106ba366004611ecb565b601c6020526000908152604090205460ff1681565b3480156106db57600080fd5b506103e46106ea366004611f29565b610afe565b3480156106fb57600080fd5b50600e546102c29060ff1681565b34801561071557600080fd5b5061035f60085481565b34801561072b57600080fd5b5061035f600f5481565b34801561074157600080fd5b5061035f610750366004611f67565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b34801561078757600080fd5b5061035f60095481565b34801561079d57600080fd5b5061035f60115481565b3480156107b357600080fd5b506103e46107c2366004611ecb565b610b87565b3480156107d357600080fd5b5061035f60155481565b3480156107e957600080fd5b5061035f600a5481565b60606003805461080290611f95565b80601f016020809104026020016040519081016040528092919081815260200182805461082e90611f95565b801561087b5780601f106108505761010080835404028352916020019161087b565b820191906000526020600020905b81548152906001019060200180831161085e57829003601f168201915b5050505050905090565b6000610892338484610c72565b5060015b92915050565b60006108a9848484610d97565b6108fb84336108f6856040518060600160405280602881526020016121fa602891396001600160a01b038a1660009081526001602090815260408083203384529091529020549190611679565b610c72565b5060019392505050565b6005546001600160a01b031633146109385760405162461bcd60e51b815260040161092f90611fcf565b60405180910390fd5b600b805462ffff00191662010100179055565b3360008181526001602090815260408083206001600160a01b038716845290915281205490916108929185906108f690866116b3565b6005546001600160a01b031633146109ab5760405162461bcd60e51b815260040161092f90611fcf565b6005546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600580546001600160a01b0319169055565b6005546000906001600160a01b03163314610a225760405162461bcd60e51b815260040161092f90611fcf565b50600b805460ff19908116909155600e80549091169055600190565b6005546001600160a01b03163314610a685760405162461bcd60e51b815260040161092f90611fcf565b6001600160a01b03919091166000908152601b60205260409020805460ff1916911515919091179055565b60606004805461080290611f95565b600061089233846108f685604051806060016040528060258152602001612222602591393360009081526001602090815260408083206001600160a01b038d1684529091529020549190611679565b6000610892338484610d97565b6005546001600160a01b03163314610b285760405162461bcd60e51b815260040161092f90611fcf565b6001600160a01b0382166000818152601a6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b03163314610bb15760405162461bcd60e51b815260040161092f90611fcf565b6001600160a01b038116610c165760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161092f565b6005546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b038316610cd45760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161092f565b6001600160a01b038216610d355760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161092f565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b038316610dbd5760405162461bcd60e51b815260040161092f90612004565b6001600160a01b038216610de35760405162461bcd60e51b815260040161092f90612049565b80600003610dfc57610df783836000611719565b505050565b6005546001600160a01b03163203610e1957610df7838383611719565b600b54610100900460ff16610eac576001600160a01b0383166000908152601a602052604090205460ff1680610e6757506001600160a01b0382166000908152601a602052604090205460ff165b610eac5760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b604482015260640161092f565b600b5460ff16156112b6576005546001600160a01b03848116911614801590610ee357506005546001600160a01b03838116911614155b8015610ef757506001600160a01b03821615155b8015610f0e57506001600160a01b03821661dead14155b8015610f245750600554600160a01b900460ff16155b156112b657600e5460ff1615611070576005546001600160a01b03838116911614801590610f8457507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b031614155b8015610fc257507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b031614155b1561107057326000908152600c6020526040902054431161105d5760405162461bcd60e51b815260206004820152604960248201527f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60448201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b6064820152681030b63637bbb2b21760b91b608482015260a40161092f565b326000908152600c602052604090204390555b6001600160a01b0383166000908152601c602052604090205460ff1680156110b157506001600160a01b0382166000908152601b602052604090205460ff16155b15611195576008548111156111265760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b606482015260840161092f565b600a546001600160a01b03831660009081526020819052604090205461114c90836120a2565b11156111905760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b604482015260640161092f565b6112b6565b6001600160a01b0382166000908152601c602052604090205460ff1680156111d657506001600160a01b0383166000908152601b602052604090205460ff16155b1561124c576008548111156111905760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152751036b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760511b606482015260840161092f565b600a546001600160a01b03831660009081526020819052604090205461127290836120a2565b11156112b65760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b604482015260640161092f565b30600090815260208190526040902054600954811080159081906112e25750600b5462010000900460ff165b80156112f85750600554600160a01b900460ff16155b801561131d57506001600160a01b0385166000908152601c602052604090205460ff16155b801561134257506001600160a01b0385166000908152601a602052604090205460ff16155b801561136757506001600160a01b0384166000908152601a602052604090205460ff16155b15611395576005805460ff60a01b1916600160a01b179055611387611822565b6005805460ff60a01b191690555b6005546001600160a01b0386166000908152601a602052604090205460ff600160a01b9092048216159116806113e357506001600160a01b0385166000908152601a602052604090205460ff165b156113f0575043600d5560005b6001600160a01b0386166000908152601a602052604090205460ff16156114245761141c8686866119fe565b505050505050565b60008115611665576001600160a01b0386166000908152601c602052604090205460ff161561153557600d546001600160a01b0388166000908152600c602052604090205461147391906120b5565b50601354156115305761149c606461149660135488611a6c90919063ffffffff16565b90611aee565b9050601354601554826114af91906120c8565b6114b991906120df565b601860008282546114ca91906120a2565b90915550506013546016546114df90836120c8565b6114e991906120df565b601960008282546114fa91906120a2565b909155505060135460145461150f90836120c8565b61151991906120df565b6017600082825461152a91906120a2565b90915550505b611647565b6001600160a01b0387166000908152601c602052604090205460ff1615611647576001600160a01b0386166000908152600c60205260408120549003611591576001600160a01b0386166000908152600c602052604090204390555b600f5415611647576115b36064611496600f5488611a6c90919063ffffffff16565b9050600f54601154826115c691906120c8565b6115d091906120df565b601860008282546115e191906120a2565b9091555050600f546012546115f690836120c8565b61160091906120df565b6019600082825461161191906120a2565b9091555050600f5460105461162690836120c8565b61163091906120df565b6017600082825461164191906120a2565b90915550505b801561165857611658873083611719565b61166281866120b5565b94505b611670878787611719565b50505050505050565b6000818484111561169d5760405162461bcd60e51b815260040161092f9190611e39565b5060006116aa84866120b5565b95945050505050565b6000806116c083856120a2565b9050838110156117125760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015260640161092f565b9392505050565b6001600160a01b03831661173f5760405162461bcd60e51b815260040161092f90612004565b6001600160a01b0382166117655760405162461bcd60e51b815260040161092f90612049565b6117a2816040518060600160405280602681526020016121d4602691396001600160a01b0386166000908152602081905260409020549190611679565b6001600160a01b0380851660009081526020819052604080822093909355908416815220546117d190826116b3565b6001600160a01b038381166000818152602081815260409182902094909455518481529092918616917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9101610d8a565b306000908152602081905260408120549050600060195460175460185461184991906120a2565b61185391906120a2565b9050811580611860575080155b15611869575050565b60006002826018548561187c91906120c8565b61188691906120df565b61189091906120df565b9050600061189e8483611b30565b9050476118aa82611b72565b60006118b64783611b30565b905060006118d38661149660175485611a6c90919063ffffffff16565b905060006118f08761149660195486611a6c90919063ffffffff16565b90506000816118ff84866120b5565b61190991906120b5565b60006018819055601781905560198190556006546040519293506001600160a01b03169185156108fc0291869190818181858888f19350505050158015611954573d6000803e3d6000fd5b506007546040516001600160a01b039091169083156108fc029084906000818181858888f1935050505015801561198f573d6000803e3d6000fd5b506000871180156119a05750600081115b156119f3576119af8782611d2a565b601854604080518881526020810184905280820192909252517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15b505050505050505050565b6001600160a01b038316611a245760405162461bcd60e51b815260040161092f90612004565b6001600160a01b038216611a4a5760405162461bcd60e51b815260040161092f90612049565b600060208190526001600160a01b038316815260409020546117d190826116b3565b600082600003611a7e57506000610896565b6000611a8a83856120c8565b905082611a9785836120df565b146117125760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b606482015260840161092f565b600061171283836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250611e0b565b600061171283836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611679565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110611ba757611ba7612101565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611c25573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611c499190612117565b81600181518110611c5c57611c5c612101565b60200260200101906001600160a01b031690816001600160a01b031681525050611ca7307f000000000000000000000000000000000000000000000000000000000000000084610c72565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063791ac94790611cfc908590600090869030904290600401612134565b600060405180830381600087803b158015611d1657600080fd5b505af115801561141c573d6000803e3d6000fd5b611d55307f000000000000000000000000000000000000000000000000000000000000000084610c72565b60405163f305d71960e01b815230600482015260248101839052600060448201819052606482015261dead60848201524260a48201527f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03169063f305d71990839060c40160606040518083038185885af1158015611ddf573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190611e0491906121a5565b5050505050565b60008183611e2c5760405162461bcd60e51b815260040161092f9190611e39565b5060006116aa84866120df565b600060208083528351808285015260005b81811015611e6657858101830151858201604001528201611e4a565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b0381168114611e9c57600080fd5b50565b60008060408385031215611eb257600080fd5b8235611ebd81611e87565b946020939093013593505050565b600060208284031215611edd57600080fd5b813561171281611e87565b600080600060608486031215611efd57600080fd5b8335611f0881611e87565b92506020840135611f1881611e87565b929592945050506040919091013590565b60008060408385031215611f3c57600080fd5b8235611f4781611e87565b915060208301358015158114611f5c57600080fd5b809150509250929050565b60008060408385031215611f7a57600080fd5b8235611f8581611e87565b91506020830135611f5c81611e87565b600181811c90821680611fa957607f821691505b602082108103611fc957634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b634e487b7160e01b600052601160045260246000fd5b808201808211156108965761089661208c565b818103818111156108965761089661208c565b80820281158282048414176108965761089661208c565b6000826120fc57634e487b7160e01b600052601260045260246000fd5b500490565b634e487b7160e01b600052603260045260246000fd5b60006020828403121561212957600080fd5b815161171281611e87565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156121845784516001600160a01b03168352938301939183019160010161215f565b50506001600160a01b03969096166060850152505050608001529392505050565b6000806000606084860312156121ba57600080fd5b835192506020840151915060408401519050925092509256fe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa264697066735822122068262c197848e6ddd1e184eb8a07b6becbb907d57d8401a316adfc74d173449d64736f6c634300081300334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572
Deployed Bytecode
0x60806040526004361061026b5760003560e01c806375f0a87411610144578063b62496f5116100b6578063dd62ed3e1161007a578063dd62ed3e14610735578063e2f456051461077b578063f11a24d314610791578063f2fde38b146107a7578063f6374342146107c7578063f8b45b05146107dd57600080fd5b8063b62496f51461069f578063c0246668146106cf578063c876d0b9146106ef578063c8c8ebe414610709578063d85ba0631461071f57600080fd5b806395d89b411161010857806395d89b41146106085780639c3b4fdc1461061d5780639fccce3214610633578063a0d82dc514610649578063a457c2d71461065f578063a9059cbb1461067f57600080fd5b806375f0a8741461057e5780637bce5a041461059e5780638da5cb5b146105b45780638ea5220f146105d257806392136913146105f257600080fd5b806339509351116101dd5780636a486a8e116101a15780636a486a8e146104c85780636ddd1713146104de57806370a08231146104fe578063715018a614610534578063751039fc146105495780637571336a1461055e57600080fd5b8063395093511461040257806349bd5a5e146104225780634a62bb65146104565780634ada218b146104705780634fbee1931461048f57600080fd5b80631a8145bb1161022f5780631a8145bb1461036d5780631f3fed8f1461038357806323b872dd1461039957806327c8f835146103b9578063293230b8146103cf578063313ce567146103e657600080fd5b806306fdde0314610277578063095ea7b3146102a257806310d5de53146102d25780631694505e1461030257806318160ddd1461034e57600080fd5b3661027257005b600080fd5b34801561028357600080fd5b5061028c6107f3565b6040516102999190611e39565b60405180910390f35b3480156102ae57600080fd5b506102c26102bd366004611e9f565b610885565b6040519015158152602001610299565b3480156102de57600080fd5b506102c26102ed366004611ecb565b601b6020526000908152604090205460ff1681565b34801561030e57600080fd5b506103367f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b039091168152602001610299565b34801561035a57600080fd5b506002545b604051908152602001610299565b34801561037957600080fd5b5061035f60185481565b34801561038f57600080fd5b5061035f60175481565b3480156103a557600080fd5b506102c26103b4366004611ee8565b61089c565b3480156103c557600080fd5b5061033661dead81565b3480156103db57600080fd5b506103e4610905565b005b3480156103f257600080fd5b5060405160128152602001610299565b34801561040e57600080fd5b506102c261041d366004611e9f565b61094b565b34801561042e57600080fd5b506103367f000000000000000000000000d27662544cd7ebf58cfde166daf81b480e5471ac81565b34801561046257600080fd5b50600b546102c29060ff1681565b34801561047c57600080fd5b50600b546102c290610100900460ff1681565b34801561049b57600080fd5b506102c26104aa366004611ecb565b6001600160a01b03166000908152601a602052604090205460ff1690565b3480156104d457600080fd5b5061035f60135481565b3480156104ea57600080fd5b50600b546102c29062010000900460ff1681565b34801561050a57600080fd5b5061035f610519366004611ecb565b6001600160a01b031660009081526020819052604090205490565b34801561054057600080fd5b506103e4610981565b34801561055557600080fd5b506102c26109f5565b34801561056a57600080fd5b506103e4610579366004611f29565b610a3e565b34801561058a57600080fd5b50600654610336906001600160a01b031681565b3480156105aa57600080fd5b5061035f60105481565b3480156105c057600080fd5b506005546001600160a01b0316610336565b3480156105de57600080fd5b50600754610336906001600160a01b031681565b3480156105fe57600080fd5b5061035f60145481565b34801561061457600080fd5b5061028c610a93565b34801561062957600080fd5b5061035f60125481565b34801561063f57600080fd5b5061035f60195481565b34801561065557600080fd5b5061035f60165481565b34801561066b57600080fd5b506102c261067a366004611e9f565b610aa2565b34801561068b57600080fd5b506102c261069a366004611e9f565b610af1565b3480156106ab57600080fd5b506102c26106ba366004611ecb565b601c6020526000908152604090205460ff1681565b3480156106db57600080fd5b506103e46106ea366004611f29565b610afe565b3480156106fb57600080fd5b50600e546102c29060ff1681565b34801561071557600080fd5b5061035f60085481565b34801561072b57600080fd5b5061035f600f5481565b34801561074157600080fd5b5061035f610750366004611f67565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b34801561078757600080fd5b5061035f60095481565b34801561079d57600080fd5b5061035f60115481565b3480156107b357600080fd5b506103e46107c2366004611ecb565b610b87565b3480156107d357600080fd5b5061035f60155481565b3480156107e957600080fd5b5061035f600a5481565b60606003805461080290611f95565b80601f016020809104026020016040519081016040528092919081815260200182805461082e90611f95565b801561087b5780601f106108505761010080835404028352916020019161087b565b820191906000526020600020905b81548152906001019060200180831161085e57829003601f168201915b5050505050905090565b6000610892338484610c72565b5060015b92915050565b60006108a9848484610d97565b6108fb84336108f6856040518060600160405280602881526020016121fa602891396001600160a01b038a1660009081526001602090815260408083203384529091529020549190611679565b610c72565b5060019392505050565b6005546001600160a01b031633146109385760405162461bcd60e51b815260040161092f90611fcf565b60405180910390fd5b600b805462ffff00191662010100179055565b3360008181526001602090815260408083206001600160a01b038716845290915281205490916108929185906108f690866116b3565b6005546001600160a01b031633146109ab5760405162461bcd60e51b815260040161092f90611fcf565b6005546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600580546001600160a01b0319169055565b6005546000906001600160a01b03163314610a225760405162461bcd60e51b815260040161092f90611fcf565b50600b805460ff19908116909155600e80549091169055600190565b6005546001600160a01b03163314610a685760405162461bcd60e51b815260040161092f90611fcf565b6001600160a01b03919091166000908152601b60205260409020805460ff1916911515919091179055565b60606004805461080290611f95565b600061089233846108f685604051806060016040528060258152602001612222602591393360009081526001602090815260408083206001600160a01b038d1684529091529020549190611679565b6000610892338484610d97565b6005546001600160a01b03163314610b285760405162461bcd60e51b815260040161092f90611fcf565b6001600160a01b0382166000818152601a6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b03163314610bb15760405162461bcd60e51b815260040161092f90611fcf565b6001600160a01b038116610c165760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161092f565b6005546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b038316610cd45760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161092f565b6001600160a01b038216610d355760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161092f565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b038316610dbd5760405162461bcd60e51b815260040161092f90612004565b6001600160a01b038216610de35760405162461bcd60e51b815260040161092f90612049565b80600003610dfc57610df783836000611719565b505050565b6005546001600160a01b03163203610e1957610df7838383611719565b600b54610100900460ff16610eac576001600160a01b0383166000908152601a602052604090205460ff1680610e6757506001600160a01b0382166000908152601a602052604090205460ff165b610eac5760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b604482015260640161092f565b600b5460ff16156112b6576005546001600160a01b03848116911614801590610ee357506005546001600160a01b03838116911614155b8015610ef757506001600160a01b03821615155b8015610f0e57506001600160a01b03821661dead14155b8015610f245750600554600160a01b900460ff16155b156112b657600e5460ff1615611070576005546001600160a01b03838116911614801590610f8457507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b0316826001600160a01b031614155b8015610fc257507f000000000000000000000000d27662544cd7ebf58cfde166daf81b480e5471ac6001600160a01b0316826001600160a01b031614155b1561107057326000908152600c6020526040902054431161105d5760405162461bcd60e51b815260206004820152604960248201527f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60448201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b6064820152681030b63637bbb2b21760b91b608482015260a40161092f565b326000908152600c602052604090204390555b6001600160a01b0383166000908152601c602052604090205460ff1680156110b157506001600160a01b0382166000908152601b602052604090205460ff16155b15611195576008548111156111265760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b606482015260840161092f565b600a546001600160a01b03831660009081526020819052604090205461114c90836120a2565b11156111905760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b604482015260640161092f565b6112b6565b6001600160a01b0382166000908152601c602052604090205460ff1680156111d657506001600160a01b0383166000908152601b602052604090205460ff16155b1561124c576008548111156111905760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152751036b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760511b606482015260840161092f565b600a546001600160a01b03831660009081526020819052604090205461127290836120a2565b11156112b65760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b604482015260640161092f565b30600090815260208190526040902054600954811080159081906112e25750600b5462010000900460ff165b80156112f85750600554600160a01b900460ff16155b801561131d57506001600160a01b0385166000908152601c602052604090205460ff16155b801561134257506001600160a01b0385166000908152601a602052604090205460ff16155b801561136757506001600160a01b0384166000908152601a602052604090205460ff16155b15611395576005805460ff60a01b1916600160a01b179055611387611822565b6005805460ff60a01b191690555b6005546001600160a01b0386166000908152601a602052604090205460ff600160a01b9092048216159116806113e357506001600160a01b0385166000908152601a602052604090205460ff165b156113f0575043600d5560005b6001600160a01b0386166000908152601a602052604090205460ff16156114245761141c8686866119fe565b505050505050565b60008115611665576001600160a01b0386166000908152601c602052604090205460ff161561153557600d546001600160a01b0388166000908152600c602052604090205461147391906120b5565b50601354156115305761149c606461149660135488611a6c90919063ffffffff16565b90611aee565b9050601354601554826114af91906120c8565b6114b991906120df565b601860008282546114ca91906120a2565b90915550506013546016546114df90836120c8565b6114e991906120df565b601960008282546114fa91906120a2565b909155505060135460145461150f90836120c8565b61151991906120df565b6017600082825461152a91906120a2565b90915550505b611647565b6001600160a01b0387166000908152601c602052604090205460ff1615611647576001600160a01b0386166000908152600c60205260408120549003611591576001600160a01b0386166000908152600c602052604090204390555b600f5415611647576115b36064611496600f5488611a6c90919063ffffffff16565b9050600f54601154826115c691906120c8565b6115d091906120df565b601860008282546115e191906120a2565b9091555050600f546012546115f690836120c8565b61160091906120df565b6019600082825461161191906120a2565b9091555050600f5460105461162690836120c8565b61163091906120df565b6017600082825461164191906120a2565b90915550505b801561165857611658873083611719565b61166281866120b5565b94505b611670878787611719565b50505050505050565b6000818484111561169d5760405162461bcd60e51b815260040161092f9190611e39565b5060006116aa84866120b5565b95945050505050565b6000806116c083856120a2565b9050838110156117125760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015260640161092f565b9392505050565b6001600160a01b03831661173f5760405162461bcd60e51b815260040161092f90612004565b6001600160a01b0382166117655760405162461bcd60e51b815260040161092f90612049565b6117a2816040518060600160405280602681526020016121d4602691396001600160a01b0386166000908152602081905260409020549190611679565b6001600160a01b0380851660009081526020819052604080822093909355908416815220546117d190826116b3565b6001600160a01b038381166000818152602081815260409182902094909455518481529092918616917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9101610d8a565b306000908152602081905260408120549050600060195460175460185461184991906120a2565b61185391906120a2565b9050811580611860575080155b15611869575050565b60006002826018548561187c91906120c8565b61188691906120df565b61189091906120df565b9050600061189e8483611b30565b9050476118aa82611b72565b60006118b64783611b30565b905060006118d38661149660175485611a6c90919063ffffffff16565b905060006118f08761149660195486611a6c90919063ffffffff16565b90506000816118ff84866120b5565b61190991906120b5565b60006018819055601781905560198190556006546040519293506001600160a01b03169185156108fc0291869190818181858888f19350505050158015611954573d6000803e3d6000fd5b506007546040516001600160a01b039091169083156108fc029084906000818181858888f1935050505015801561198f573d6000803e3d6000fd5b506000871180156119a05750600081115b156119f3576119af8782611d2a565b601854604080518881526020810184905280820192909252517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15b505050505050505050565b6001600160a01b038316611a245760405162461bcd60e51b815260040161092f90612004565b6001600160a01b038216611a4a5760405162461bcd60e51b815260040161092f90612049565b600060208190526001600160a01b038316815260409020546117d190826116b3565b600082600003611a7e57506000610896565b6000611a8a83856120c8565b905082611a9785836120df565b146117125760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b606482015260840161092f565b600061171283836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250611e0b565b600061171283836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611679565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110611ba757611ba7612101565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611c25573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611c499190612117565b81600181518110611c5c57611c5c612101565b60200260200101906001600160a01b031690816001600160a01b031681525050611ca7307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84610c72565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac94790611cfc908590600090869030904290600401612134565b600060405180830381600087803b158015611d1657600080fd5b505af115801561141c573d6000803e3d6000fd5b611d55307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84610c72565b60405163f305d71960e01b815230600482015260248101839052600060448201819052606482015261dead60848201524260a48201527f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b03169063f305d71990839060c40160606040518083038185885af1158015611ddf573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190611e0491906121a5565b5050505050565b60008183611e2c5760405162461bcd60e51b815260040161092f9190611e39565b5060006116aa84866120df565b600060208083528351808285015260005b81811015611e6657858101830151858201604001528201611e4a565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b0381168114611e9c57600080fd5b50565b60008060408385031215611eb257600080fd5b8235611ebd81611e87565b946020939093013593505050565b600060208284031215611edd57600080fd5b813561171281611e87565b600080600060608486031215611efd57600080fd5b8335611f0881611e87565b92506020840135611f1881611e87565b929592945050506040919091013590565b60008060408385031215611f3c57600080fd5b8235611f4781611e87565b915060208301358015158114611f5c57600080fd5b809150509250929050565b60008060408385031215611f7a57600080fd5b8235611f8581611e87565b91506020830135611f5c81611e87565b600181811c90821680611fa957607f821691505b602082108103611fc957634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b634e487b7160e01b600052601160045260246000fd5b808201808211156108965761089661208c565b818103818111156108965761089661208c565b80820281158282048414176108965761089661208c565b6000826120fc57634e487b7160e01b600052601260045260246000fd5b500490565b634e487b7160e01b600052603260045260246000fd5b60006020828403121561212957600080fd5b815161171281611e87565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156121845784516001600160a01b03168352938301939183019160010161215f565b50506001600160a01b03969096166060850152505050608001529392505050565b6000806000606084860312156121ba57600080fd5b835192506020840151915060408401519050925092509256fe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa264697066735822122068262c197848e6ddd1e184eb8a07b6becbb907d57d8401a316adfc74d173449d64736f6c63430008130033
Deployed Bytecode Sourcemap
29382:12353:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9129:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11296:169;;;;;;;;;;-1:-1:-1;11296:169:0;;;;;:::i;:::-;;:::i;:::-;;;1188:14:1;;1181:22;1163:41;;1151:2;1136:18;11296:169:0;1023:187:1;30797:64:0;;;;;;;;;;-1:-1:-1;30797:64:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;29465:51;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;1658:32:1;;;1640:51;;1628:2;1613:18;29465:51:0;1467:230:1;10249:108:0;;;;;;;;;;-1:-1:-1;10337:12:0;;10249:108;;;1848:25:1;;;1836:2;1821:18;10249:108:0;1702:177:1;30573:33:0;;;;;;;;;;;;;;;;30533;;;;;;;;;;;;;;;;11947:355;;;;;;;;;;-1:-1:-1;11947:355:0;;;;;:::i;:::-;;:::i;29568:53::-;;;;;;;;;;;;29614:6;29568:53;;33567:112;;;;;;;;;;;;;:::i;:::-;;10091:93;;;;;;;;;;-1:-1:-1;10091:93:0;;10174:2;2695:36:1;;2683:2;2668:18;10091:93:0;2553:184:1;12711:218:0;;;;;;;;;;-1:-1:-1;12711:218:0;;;;;:::i;:::-;;:::i;29523:38::-;;;;;;;;;;;;;;;29849:33;;;;;;;;;;-1:-1:-1;29849:33:0;;;;;;;;29889:34;;;;;;;;;;-1:-1:-1;29889:34:0;;;;;;;;;;;34382:125;;;;;;;;;;-1:-1:-1;34382:125:0;;;;;:::i;:::-;-1:-1:-1;;;;;34471:28:0;34447:4;34471:28;;;:19;:28;;;;;;;;;34382:125;30384:28;;;;;;;;;;;;;;;;29930:31;;;;;;;;;;-1:-1:-1;29930:31:0;;;;;;;;;;;10420:127;;;;;;;;;;-1:-1:-1;10420:127:0;;;;;:::i;:::-;-1:-1:-1;;;;;10521:18:0;10494:7;10521:18;;;;;;;;;;;;10420:127;23967:148;;;;;;;;;;;;;:::i;33735:159::-;;;;;;;;;;;;;:::i;33902:140::-;;;;;;;;;;-1:-1:-1;33902:140:0;;;;;:::i;:::-;;:::i;29660:30::-;;;;;;;;;;-1:-1:-1;29660:30:0;;;;-1:-1:-1;;;;;29660:30:0;;;30273;;;;;;;;;;;;;;;;23325:79;;;;;;;;;;-1:-1:-1;23390:6:0;;-1:-1:-1;;;;;23390:6:0;23325:79;;29697:24;;;;;;;;;;-1:-1:-1;29697:24:0;;;;-1:-1:-1;;;;;29697:24:0;;;30419:31;;;;;;;;;;;;;;;;9348:104;;;;;;;;;;;;;:::i;30347:24::-;;;;;;;;;;;;;;;;30613:27;;;;;;;;;;;;;;;;30495:25;;;;;;;;;;;;;;;;13432:269;;;;;;;;;;-1:-1:-1;13432:269:0;;;;;:::i;:::-;;:::i;10760:175::-;;;;;;;;;;-1:-1:-1;10760:175:0;;;;;:::i;:::-;;:::i;31019:58::-;;;;;;;;;;-1:-1:-1;31019:58:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;34054:182;;;;;;;;;;-1:-1:-1;34054:182:0;;;;;:::i;:::-;;:::i;30187:39::-;;;;;;;;;;-1:-1:-1;30187:39:0;;;;;;;;29734:35;;;;;;;;;;;;;;;;30239:27;;;;;;;;;;;;;;;;10998:151;;;;;;;;;;-1:-1:-1;10998:151:0;;;;;:::i;:::-;-1:-1:-1;;;;;11114:18:0;;;11087:7;11114:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;10998:151;29776:33;;;;;;;;;;;;;;;;30310:30;;;;;;;;;;;;;;;;24270:244;;;;;;;;;;-1:-1:-1;24270:244:0;;;;;:::i;:::-;;:::i;30457:31::-;;;;;;;;;;;;;;;;29816:24;;;;;;;;;;;;;;;;9129:100;9183:13;9216:5;9209:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9129:100;:::o;11296:169::-;11379:4;11396:39;1845:10;11419:7;11428:6;11396:8;:39::i;:::-;-1:-1:-1;11453:4:0;11296:169;;;;;:::o;11947:355::-;12087:4;12104:36;12114:6;12122:9;12133:6;12104:9;:36::i;:::-;12151:121;12160:6;1845:10;12182:89;12220:6;12182:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;12182:19:0;;;;;;:11;:19;;;;;;;;1845:10;12182:33;;;;;;;;;;:37;:89::i;:::-;12151:8;:121::i;:::-;-1:-1:-1;12290:4:0;11947:355;;;;;:::o;33567:112::-;23537:6;;-1:-1:-1;;;;;23537:6:0;1845:10;23537:22;23529:67;;;;-1:-1:-1;;;23529:67:0;;;;;;;:::i;:::-;;;;;;;;;33621:14:::1;:21:::0;;-1:-1:-1;;33653:18:0;;;;;33567:112::o;12711:218::-;1845:10;12799:4;12848:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;12848:34:0;;;;;;;;;;12799:4;;12816:83;;12839:7;;12848:50;;12887:10;12848:38;:50::i;23967:148::-;23537:6;;-1:-1:-1;;;;;23537:6:0;1845:10;23537:22;23529:67;;;;-1:-1:-1;;;23529:67:0;;;;;;;:::i;:::-;24058:6:::1;::::0;24037:40:::1;::::0;24074:1:::1;::::0;-1:-1:-1;;;;;24058:6:0::1;::::0;24037:40:::1;::::0;24074:1;;24037:40:::1;24088:6;:19:::0;;-1:-1:-1;;;;;;24088:19:0::1;::::0;;23967:148::o;33735:159::-;23537:6;;33787:4;;-1:-1:-1;;;;;23537:6:0;1845:10;23537:22;23529:67;;;;-1:-1:-1;;;23529:67:0;;;;;;;:::i;:::-;-1:-1:-1;33803:14:0::1;:22:::0;;-1:-1:-1;;33803:22:0;;::::1;::::0;;;33836:20:::1;:28:::0;;;;::::1;::::0;;33803:22;33735:159;:::o;33902:140::-;23537:6;;-1:-1:-1;;;;;23537:6:0;1845:10;23537:22;23529:67;;;;-1:-1:-1;;;23529:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;33990:38:0;;;::::1;;::::0;;;:31:::1;:38;::::0;;;;:44;;-1:-1:-1;;33990:44:0::1;::::0;::::1;;::::0;;;::::1;::::0;;33902:140::o;9348:104::-;9404:13;9437:7;9430:14;;;;;:::i;13432:269::-;13525:4;13542:129;1845:10;13565:7;13574:96;13613:15;13574:96;;;;;;;;;;;;;;;;;1845:10;13574:25;;;;:11;:25;;;;;;;;-1:-1:-1;;;;;13574:34:0;;;;;;;;;;;;:38;:96::i;10760:175::-;10846:4;10863:42;1845:10;10887:9;10898:6;10863:9;:42::i;34054:182::-;23537:6;;-1:-1:-1;;;;;23537:6:0;1845:10;23537:22;23529:67;;;;-1:-1:-1;;;23529:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;34139:28:0;::::1;;::::0;;;:19:::1;:28;::::0;;;;;;;;:39;;-1:-1:-1;;34139:39:0::1;::::0;::::1;;::::0;;::::1;::::0;;;34194:34;;1163:41:1;;;34194:34:0::1;::::0;1136:18:1;34194:34:0::1;;;;;;;34054:182:::0;;:::o;24270:244::-;23537:6;;-1:-1:-1;;;;;23537:6:0;1845:10;23537:22;23529:67;;;;-1:-1:-1;;;23529:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;24359:22:0;::::1;24351:73;;;::::0;-1:-1:-1;;;24351:73:0;;4504:2:1;24351:73:0::1;::::0;::::1;4486:21:1::0;4543:2;4523:18;;;4516:30;4582:34;4562:18;;;4555:62;-1:-1:-1;;;4633:18:1;;;4626:36;4679:19;;24351:73:0::1;4302:402:1::0;24351:73:0::1;24461:6;::::0;24440:38:::1;::::0;-1:-1:-1;;;;;24440:38:0;;::::1;::::0;24461:6:::1;::::0;24440:38:::1;::::0;24461:6:::1;::::0;24440:38:::1;24489:6;:17:::0;;-1:-1:-1;;;;;;24489:17:0::1;-1:-1:-1::0;;;;;24489:17:0;;;::::1;::::0;;;::::1;::::0;;24270:244::o;16991:380::-;-1:-1:-1;;;;;17127:19:0;;17119:68;;;;-1:-1:-1;;;17119:68:0;;4911:2:1;17119:68:0;;;4893:21:1;4950:2;4930:18;;;4923:30;4989:34;4969:18;;;4962:62;-1:-1:-1;;;5040:18:1;;;5033:34;5084:19;;17119:68:0;4709:400:1;17119:68:0;-1:-1:-1;;;;;17206:21:0;;17198:68;;;;-1:-1:-1;;;17198:68:0;;5316:2:1;17198:68:0;;;5298:21:1;5355:2;5335:18;;;5328:30;5394:34;5374:18;;;5367:62;-1:-1:-1;;;5445:18:1;;;5438:32;5487:19;;17198:68:0;5114:398:1;17198:68:0;-1:-1:-1;;;;;17279:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;17331:32;;1848:25:1;;;17331:32:0;;1821:18:1;17331:32:0;;;;;;;;16991:380;;;:::o;34519:4627::-;-1:-1:-1;;;;;34651:18:0;;34643:68;;;;-1:-1:-1;;;34643:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;34730:16:0;;34722:64;;;;-1:-1:-1;;;34722:64:0;;;;;;;:::i;:::-;34811:6;34821:1;34811:11;34808:92;;34839:28;34855:4;34861:2;34865:1;34839:15;:28::i;:::-;34519:4627;;;:::o;34808:92::-;23390:6;;-1:-1:-1;;;;;23390:6:0;34916:9;:20;34912:107;;34953:33;34969:4;34975:2;34979:6;34953:15;:33::i;34912:107::-;35035:14;;;;;;;35031:133;;-1:-1:-1;;;;;35073:25:0;;;;;;:19;:25;;;;;;;;;:52;;-1:-1:-1;;;;;;35102:23:0;;;;;;:19;:23;;;;;;;;35073:52;35065:87;;;;-1:-1:-1;;;35065:87:0;;6529:2:1;35065:87:0;;;6511:21:1;6568:2;6548:18;;;6541:30;-1:-1:-1;;;6587:18:1;;;6580:52;6649:18;;35065:87:0;6327:346:1;35065:87:0;35187:14;;;;35184:1608;;;23390:6;;-1:-1:-1;;;;;35239:15:0;;;23390:6;;35239:15;;;;:49;;-1:-1:-1;23390:6:0;;-1:-1:-1;;;;;35275:13:0;;;23390:6;;35275:13;;35239:49;:86;;;;-1:-1:-1;;;;;;35309:16:0;;;;35239:86;:128;;;;-1:-1:-1;;;;;;35346:21:0;;35360:6;35346:21;;35239:128;:158;;;;-1:-1:-1;35389:8:0;;-1:-1:-1;;;35389:8:0;;;;35388:9;35239:158;35217:1564;;;35581:20;;;;35577:415;;;23390:6;;-1:-1:-1;;;;;35629:13:0;;;23390:6;;35629:13;;;;:47;;;35660:15;-1:-1:-1;;;;;35646:30:0;:2;-1:-1:-1;;;;;35646:30:0;;;35629:47;:79;;;;;35694:13;-1:-1:-1;;;;;35680:28:0;:2;-1:-1:-1;;;;;35680:28:0;;;35629:79;35625:348;;;35769:9;35744:35;;;;:24;:35;;;;;;35782:12;-1:-1:-1;35736:136:0;;;;-1:-1:-1;;;35736:136:0;;6880:2:1;35736:136:0;;;6862:21:1;6919:2;6899:18;;;6892:30;6958:34;6938:18;;;6931:62;7029:34;7009:18;;;7002:62;-1:-1:-1;;;7080:19:1;;;7073:40;7130:19;;35736:136:0;6678:477:1;35736:136:0;35924:9;35899:35;;;;:24;:35;;;;;35937:12;35899:50;;35625:348;-1:-1:-1;;;;;36044:31:0;;;;;;:25;:31;;;;;;;;:71;;;;-1:-1:-1;;;;;;36080:35:0;;;;;;:31;:35;;;;;;;;36079:36;36044:71;36040:726;;;36158:20;;36148:6;:30;;36140:96;;;;-1:-1:-1;;;36140:96:0;;7362:2:1;36140:96:0;;;7344:21:1;7401:2;7381:18;;;7374:30;7440:34;7420:18;;;7413:62;-1:-1:-1;;;7491:18:1;;;7484:51;7552:19;;36140:96:0;7160:417:1;36140:96:0;36293:9;;-1:-1:-1;;;;;10521:18:0;;10494:7;10521:18;;;;;;;;;;;36267:22;;:6;:22;:::i;:::-;:35;;36259:67;;;;-1:-1:-1;;;36259:67:0;;8046:2:1;36259:67:0;;;8028:21:1;8085:2;8065:18;;;8058:30;-1:-1:-1;;;8104:18:1;;;8097:49;8163:18;;36259:67:0;7844:343:1;36259:67:0;36040:726;;;-1:-1:-1;;;;;36420:29:0;;;;;;:25;:29;;;;;;;;:71;;;;-1:-1:-1;;;;;;36454:37:0;;;;;;:31;:37;;;;;;;;36453:38;36420:71;36416:350;;;36534:20;;36524:6;:30;;36516:97;;;;-1:-1:-1;;;36516:97:0;;8394:2:1;36516:97:0;;;8376:21:1;8433:2;8413:18;;;8406:30;8472:34;8452:18;;;8445:62;-1:-1:-1;;;8523:18:1;;;8516:52;8585:19;;36516:97:0;8192:418:1;36416:350:0;36713:9;;-1:-1:-1;;;;;10521:18:0;;10494:7;10521:18;;;;;;;;;;;36687:22;;:6;:22;:::i;:::-;:35;;36679:67;;;;-1:-1:-1;;;36679:67:0;;8046:2:1;36679:67:0;;;8028:21:1;8085:2;8065:18;;;8058:30;-1:-1:-1;;;8104:18:1;;;8097:49;8163:18;;36679:67:0;7844:343:1;36679:67:0;36855:4;36806:28;10521:18;;;;;;;;;;;36921;;36897:42;;;;;;;36970:35;;-1:-1:-1;36994:11:0;;;;;;;36970:35;:61;;;;-1:-1:-1;37023:8:0;;-1:-1:-1;;;37023:8:0;;;;37022:9;36970:61;:110;;;;-1:-1:-1;;;;;;37049:31:0;;;;;;:25;:31;;;;;;;;37048:32;36970:110;:153;;;;-1:-1:-1;;;;;;37098:25:0;;;;;;:19;:25;;;;;;;;37097:26;36970:153;:194;;;;-1:-1:-1;;;;;;37141:23:0;;;;;;:19;:23;;;;;;;;37140:24;36970:194;36952:334;;;37191:8;:15;;-1:-1:-1;;;;37191:15:0;-1:-1:-1;;;37191:15:0;;;37233:10;:8;:10::i;:::-;37258:8;:16;;-1:-1:-1;;;;37258:16:0;;;36952:334;37322:8;;-1:-1:-1;;;;;37431:25:0;;37306:12;37431:25;;;:19;:25;;;;;;37322:8;-1:-1:-1;;;37322:8:0;;;;;37321:9;;37431:25;;:52;;-1:-1:-1;;;;;;37460:23:0;;;;;;:19;:23;;;;;;;;37431:52;37428:149;;;-1:-1:-1;37523:12:0;37500:20;:35;37560:5;37428:149;-1:-1:-1;;;;;37590:25:0;;;;;;:19;:25;;;;;;;;37587:110;;;37632:32;37647:4;37653:2;37657:6;37632:14;:32::i;:::-;37679:7;;;34519:4627;;;:::o;37587:110::-;37717:12;37821:7;37818:1275;;;-1:-1:-1;;;;;37872:29:0;;;;;;:25;:29;;;;;;;;37868:1056;;;37955:20;;-1:-1:-1;;;;;37922:30:0;;;;;;:24;:30;;;;;;:53;;37955:20;37922:53;:::i;:::-;-1:-1:-1;37998:13:0;;:17;37994:347;;38047:34;38077:3;38047:25;38058:13;;38047:6;:10;;:25;;;;:::i;:::-;:29;;:34::i;:::-;38040:41;;38152:13;;38133:16;;38126:4;:23;;;;:::i;:::-;:39;;;;:::i;:::-;38104:18;;:61;;;;;;;:::i;:::-;;;;-1:-1:-1;;38224:13:0;;38211:10;;38204:17;;:4;:17;:::i;:::-;:33;;;;:::i;:::-;38188:12;;:49;;;;;;;:::i;:::-;;;;-1:-1:-1;;38308:13:0;;38289:16;;38282:23;;:4;:23;:::i;:::-;:39;;;;:::i;:::-;38260:18;;:61;;;;;;;:::i;:::-;;;;-1:-1:-1;;37994:347:0;37868:1056;;;-1:-1:-1;;;;;38401:31:0;;;;;;:25;:31;;;;;;;;38398:526;;;-1:-1:-1;;;;;38457:28:0;;;;;;:24;:28;;;;;;:33;;38453:82;;-1:-1:-1;;;;;38492:28:0;;;;;;:24;:28;;;;;38523:12;38492:43;;38453:82;38558:12;;:16;38554:355;;38606:33;38635:3;38606:24;38617:12;;38606:6;:10;;:24;;;;:::i;:33::-;38599:40;;38725:12;;38707:15;;38700:4;:22;;;;:::i;:::-;:37;;;;:::i;:::-;38678:18;;:59;;;;;;;:::i;:::-;;;;-1:-1:-1;;38795:12:0;;38783:9;;38776:16;;:4;:16;:::i;:::-;:31;;;;:::i;:::-;38760:12;;:47;;;;;;;:::i;:::-;;;;-1:-1:-1;;38877:12:0;;38859:15;;38852:22;;:4;:22;:::i;:::-;:37;;;;:::i;:::-;38830:18;;:59;;;;;;;:::i;:::-;;;;-1:-1:-1;;38554:355:0;38955:8;;38952:93;;38987:42;39003:4;39017;39024;38987:15;:42::i;:::-;39067:14;39077:4;39067:14;;:::i;:::-;;;37818:1275;39105:33;39121:4;39127:2;39131:6;39105:15;:33::i;:::-;34632:4514;;;;34519:4627;;;:::o;19272:192::-;19358:7;19394:12;19386:6;;;;19378:29;;;;-1:-1:-1;;;19378:29:0;;;;;;;;:::i;:::-;-1:-1:-1;19418:9:0;19430:5;19434:1;19430;:5;:::i;:::-;19418:17;19272:192;-1:-1:-1;;;;;19272:192:0:o;18369:181::-;18427:7;;18459:5;18463:1;18459;:5;:::i;:::-;18447:17;;18488:1;18483;:6;;18475:46;;;;-1:-1:-1;;;18475:46:0;;9345:2:1;18475:46:0;;;9327:21:1;9384:2;9364:18;;;9357:30;9423:29;9403:18;;;9396:57;9470:18;;18475:46:0;9143:351:1;18475:46:0;18541:1;18369:181;-1:-1:-1;;;18369:181:0:o;14193:495::-;-1:-1:-1;;;;;14320:15:0;;14312:65;;;;-1:-1:-1;;;14312:65:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;14396:15:0;;14388:63;;;;-1:-1:-1;;;14388:63:0;;;;;;;:::i;:::-;14526:66;14543:6;14526:66;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;14526:12:0;;:9;:12;;;;;;;;;;;;:66;:16;:66::i;:::-;-1:-1:-1;;;;;14511:12:0;;;:9;:12;;;;;;;;;;;:81;;;;14618:12;;;;;;;:24;;14635:6;14618:16;:24::i;:::-;-1:-1:-1;;;;;14603:12:0;;;:9;:12;;;;;;;;;;;;:39;;;;14658:22;1848:25:1;;;14603:12:0;;14658:22;;;;;;1821:18:1;14658:22:0;1702:177:1;40292:1440:0;40375:4;40331:23;10521:18;;;;;;;;;;;40331:50;;40392:25;40462:12;;40441:18;;40420;;:39;;;;:::i;:::-;:54;;;;:::i;:::-;40392:82;-1:-1:-1;40498:20:0;;;:46;;-1:-1:-1;40522:22:0;;40498:46;40495:60;;;40547:7;;40292:1440::o;40495:60::-;40624:23;40709:1;40689:17;40668:18;;40650:15;:36;;;;:::i;:::-;:56;;;;:::i;:::-;:60;;;;:::i;:::-;40624:86;-1:-1:-1;40721:26:0;40750:36;:15;40624:86;40750:19;:36::i;:::-;40721:65;-1:-1:-1;40835:21:0;40869:36;40721:65;40869:16;:36::i;:::-;40927:18;40948:44;:21;40974:17;40948:25;:44::i;:::-;40927:65;;41013:23;41039:57;41078:17;41039:34;41054:18;;41039:10;:14;;:34;;;;:::i;:57::-;41013:83;;41107:17;41127:51;41160:17;41127:28;41142:12;;41127:10;:14;;:28;;;;:::i;:51::-;41107:71;-1:-1:-1;41197:23:0;41107:71;41223:28;41236:15;41223:10;:28;:::i;:::-;:40;;;;:::i;:::-;41305:1;41284:18;:22;;;41317:18;:22;;;41350:12;:16;;;41395:15;;41387:50;;41197:66;;-1:-1:-1;;;;;;41395:15:0;;41387:50;;;;;41421:15;;41387:50;;41305:1;41387:50;41421:15;41395;41387:50;;;;;;;;;;;;;;;;;;;;-1:-1:-1;41456:9:0;;41448:38;;-1:-1:-1;;;;;41456:9:0;;;;41448:38;;;;;41476:9;;41456;41448:38;41456:9;41448:38;41476:9;41456;41448:38;;;;;;;;;;;;;;;;;;;;;41528:1;41510:15;:19;:42;;;;;41551:1;41533:15;:19;41510:42;41507:210;;;41568:46;41581:15;41598;41568:12;:46::i;:::-;41686:18;;41634:71;;;9701:25:1;;;9757:2;9742:18;;9735:34;;;9785:18;;;9778:34;;;;41634:71:0;;;;;;9689:2:1;41634:71:0;;;41507:210;40320:1412;;;;;;;;;40292:1440::o;14697:440::-;-1:-1:-1;;;;;14823:15:0;;14815:65;;;;-1:-1:-1;;;14815:65:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;14899:15:0;;14891:63;;;;-1:-1:-1;;;14891:63:0;;;;;;;:::i;:::-;15029:9;:12;;;;-1:-1:-1;;;;;15067:12:0;;;;15029;15067;;;:24;;15084:6;15067:16;:24::i;19723:471::-;19781:7;20026:1;20031;20026:6;20022:47;;-1:-1:-1;20056:1:0;20049:8;;20022:47;20081:9;20093:5;20097:1;20093;:5;:::i;:::-;20081:17;-1:-1:-1;20126:1:0;20117:5;20121:1;20081:17;20117:5;:::i;:::-;:10;20109:56;;;;-1:-1:-1;;;20109:56:0;;10025:2:1;20109:56:0;;;10007:21:1;10064:2;10044:18;;;10037:30;10103:34;10083:18;;;10076:62;-1:-1:-1;;;10154:18:1;;;10147:31;10195:19;;20109:56:0;9823:397:1;20670:132:0;20728:7;20755:39;20759:1;20762;20755:39;;;;;;;;;;;;;;;;;:3;:39::i;18833:136::-;18891:7;18918:43;18922:1;18925;18918:43;;;;;;;;;;;;;;;;;:3;:43::i;39154:601::-;39306:16;;;39320:1;39306:16;;;;;;;;39282:21;;39306:16;;;;;;;;;;-1:-1:-1;39306:16:0;39282:40;;39351:4;39333;39338:1;39333:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;39333:23:0;;;-1:-1:-1;;;;;39333:23:0;;;;;39377:15;-1:-1:-1;;;;;39377:20:0;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;39367:4;39372:1;39367:7;;;;;;;;:::i;:::-;;;;;;:32;-1:-1:-1;;;;;39367:32:0;;;-1:-1:-1;;;;;39367:32:0;;;;;39412:62;39429:4;39444:15;39462:11;39412:8;:62::i;:::-;39513:224;;-1:-1:-1;;;39513:224:0;;-1:-1:-1;;;;;39513:15:0;:66;;;;:224;;39594:11;;39620:1;;39664:4;;39691;;39711:15;;39513:224;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39767:517;39915:62;39932:4;39947:15;39965:11;39915:8;:62::i;:::-;40020:256;;-1:-1:-1;;;40020:256:0;;40092:4;40020:256;;;12071:34:1;12121:18;;;12114:34;;;40138:1:0;12164:18:1;;;12157:34;;;12207:18;;;12200:34;29614:6:0;12250:19:1;;;12243:44;40250:15:0;12303:19:1;;;12296:35;40020:15:0;-1:-1:-1;;;;;40020:31:0;;;;40059:9;;12005:19:1;;40020:256:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;39767:517;;:::o;21298:278::-;21384:7;21419:12;21412:5;21404:28;;;;-1:-1:-1;;;21404:28:0;;;;;;;;:::i;:::-;-1:-1:-1;21443:9:0;21455:5;21459:1;21455;:5;:::i;14:548:1:-;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;298:3;483:1;478:2;469:6;458:9;454:22;450:31;443:42;553:2;546;542:7;537:2;529:6;525:15;521:29;510:9;506:45;502:54;494:62;;;;14:548;;;;:::o;567:131::-;-1:-1:-1;;;;;642:31:1;;632:42;;622:70;;688:1;685;678:12;622:70;567:131;:::o;703:315::-;771:6;779;832:2;820:9;811:7;807:23;803:32;800:52;;;848:1;845;838:12;800:52;887:9;874:23;906:31;931:5;906:31;:::i;:::-;956:5;1008:2;993:18;;;;980:32;;-1:-1:-1;;;703:315:1:o;1215:247::-;1274:6;1327:2;1315:9;1306:7;1302:23;1298:32;1295:52;;;1343:1;1340;1333:12;1295:52;1382:9;1369:23;1401:31;1426:5;1401:31;:::i;1884:456::-;1961:6;1969;1977;2030:2;2018:9;2009:7;2005:23;2001:32;1998:52;;;2046:1;2043;2036:12;1998:52;2085:9;2072:23;2104:31;2129:5;2104:31;:::i;:::-;2154:5;-1:-1:-1;2211:2:1;2196:18;;2183:32;2224:33;2183:32;2224:33;:::i;:::-;1884:456;;2276:7;;-1:-1:-1;;;2330:2:1;2315:18;;;;2302:32;;1884:456::o;2742:416::-;2807:6;2815;2868:2;2856:9;2847:7;2843:23;2839:32;2836:52;;;2884:1;2881;2874:12;2836:52;2923:9;2910:23;2942:31;2967:5;2942:31;:::i;:::-;2992:5;-1:-1:-1;3049:2:1;3034:18;;3021:32;3091:15;;3084:23;3072:36;;3062:64;;3122:1;3119;3112:12;3062:64;3145:7;3135:17;;;2742:416;;;;;:::o;3163:388::-;3231:6;3239;3292:2;3280:9;3271:7;3267:23;3263:32;3260:52;;;3308:1;3305;3298:12;3260:52;3347:9;3334:23;3366:31;3391:5;3366:31;:::i;:::-;3416:5;-1:-1:-1;3473:2:1;3458:18;;3445:32;3486:33;3445:32;3486:33;:::i;3556:380::-;3635:1;3631:12;;;;3678;;;3699:61;;3753:4;3745:6;3741:17;3731:27;;3699:61;3806:2;3798:6;3795:14;3775:18;3772:38;3769:161;;3852:10;3847:3;3843:20;3840:1;3833:31;3887:4;3884:1;3877:15;3915:4;3912:1;3905:15;3769:161;;3556:380;;;:::o;3941:356::-;4143:2;4125:21;;;4162:18;;;4155:30;4221:34;4216:2;4201:18;;4194:62;4288:2;4273:18;;3941:356::o;5517:401::-;5719:2;5701:21;;;5758:2;5738:18;;;5731:30;5797:34;5792:2;5777:18;;5770:62;-1:-1:-1;;;5863:2:1;5848:18;;5841:35;5908:3;5893:19;;5517:401::o;5923:399::-;6125:2;6107:21;;;6164:2;6144:18;;;6137:30;6203:34;6198:2;6183:18;;6176:62;-1:-1:-1;;;6269:2:1;6254:18;;6247:33;6312:3;6297:19;;5923:399::o;7582:127::-;7643:10;7638:3;7634:20;7631:1;7624:31;7674:4;7671:1;7664:15;7698:4;7695:1;7688:15;7714:125;7779:9;;;7800:10;;;7797:36;;;7813:18;;:::i;8615:128::-;8682:9;;;8703:11;;;8700:37;;;8717:18;;:::i;8748:168::-;8821:9;;;8852;;8869:15;;;8863:22;;8849:37;8839:71;;8890:18;;:::i;8921:217::-;8961:1;8987;8977:132;;9031:10;9026:3;9022:20;9019:1;9012:31;9066:4;9063:1;9056:15;9094:4;9091:1;9084:15;8977:132;-1:-1:-1;9123:9:1;;8921:217::o;10357:127::-;10418:10;10413:3;10409:20;10406:1;10399:31;10449:4;10446:1;10439:15;10473:4;10470:1;10463:15;10489:251;10559:6;10612:2;10600:9;10591:7;10587:23;10583:32;10580:52;;;10628:1;10625;10618:12;10580:52;10660:9;10654:16;10679:31;10704:5;10679:31;:::i;10745:980::-;11007:4;11055:3;11044:9;11040:19;11086:6;11075:9;11068:25;11112:2;11150:6;11145:2;11134:9;11130:18;11123:34;11193:3;11188:2;11177:9;11173:18;11166:31;11217:6;11252;11246:13;11283:6;11275;11268:22;11321:3;11310:9;11306:19;11299:26;;11360:2;11352:6;11348:15;11334:29;;11381:1;11391:195;11405:6;11402:1;11399:13;11391:195;;;11470:13;;-1:-1:-1;;;;;11466:39:1;11454:52;;11561:15;;;;11526:12;;;;11502:1;11420:9;11391:195;;;-1:-1:-1;;;;;;;11642:32:1;;;;11637:2;11622:18;;11615:60;-1:-1:-1;;;11706:3:1;11691:19;11684:35;11603:3;10745:980;-1:-1:-1;;;10745:980:1:o;12342:306::-;12430:6;12438;12446;12499:2;12487:9;12478:7;12474:23;12470:32;12467:52;;;12515:1;12512;12505:12;12467:52;12544:9;12538:16;12528:26;;12594:2;12583:9;12579:18;12573:25;12563:35;;12638:2;12627:9;12623:18;12617:25;12607:35;;12342:306;;;;;:::o
Swarm Source
ipfs://68262c197848e6ddd1e184eb8a07b6becbb907d57d8401a316adfc74d173449d
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.