ERC-20
Overview
Max Total Supply
1,000,000,000 MPX
Holders
8
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
0.649398413558051332 MPXValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
MPX
Compiler Version
v0.8.19+commit.7dd6d404
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-10-08 */ // File: @openzeppelin/contracts/utils/math/SafeMath.sol // OpenZeppelin Contracts (last updated v4.9.0) (utils/math/SafeMath.sol) pragma solidity ^0.8.0; // CAUTION // This version of SafeMath should only be used with Solidity 0.8 or later, // because it relies on the compiler's built in overflow checks. /** * @dev Wrappers over Solidity's arithmetic operations. * * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler * now has built in overflow checking. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the subtraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { return a + b; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { return a * b; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { unchecked { require(b <= a, errorMessage); return a - b; } } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a / b; } } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a % b; } } } // File: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby disabling any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: @openzeppelin/contracts/token/ERC20/IERC20.sol // OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `from` to `to` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom(address from, address to, uint256 amount) external returns (bool); } // File: @openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.0; /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); } // File: @openzeppelin/contracts/token/ERC20/ERC20.sol // OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/ERC20.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * The default value of {decimals} is 18. To change this, you should override * this function so it returns a different value. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of ERC20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * 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 default value returned by this function, unless * it's overridden. * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual 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: * * - `to` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address to, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _transfer(owner, to, 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}. * * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on * `transferFrom`. This is semantically equivalent to an infinite approval. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _approve(owner, 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}. * * NOTE: Does not update the allowance if the current allowance * is the maximum `uint256`. * * Requirements: * * - `from` and `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. * - the caller must have allowance for ``from``'s tokens of at least * `amount`. */ function transferFrom(address from, address to, uint256 amount) public virtual override returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, amount); _transfer(from, to, amount); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { address owner = _msgSender(); _approve(owner, spender, allowance(owner, spender) + addedValue); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { address owner = _msgSender(); uint256 currentAllowance = allowance(owner, spender); require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(owner, spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `from` to `to`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. */ function _transfer(address from, address to, uint256 amount) internal virtual { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(from, to, amount); uint256 fromBalance = _balances[from]; require(fromBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[from] = fromBalance - amount; // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by // decrementing then incrementing. _balances[to] += amount; } emit Transfer(from, to, amount); _afterTokenTransfer(from, to, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; unchecked { // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above. _balances[account] += amount; } emit Transfer(address(0), account, amount); _afterTokenTransfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account] = accountBalance - amount; // Overflow not possible: amount <= accountBalance <= totalSupply. _totalSupply -= amount; } emit Transfer(account, address(0), amount); _afterTokenTransfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve(address owner, address spender, uint256 amount) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Updates `owner` s allowance for `spender` based on spent `amount`. * * Does not update the allowance amount in case of infinite allowance. * Revert if not enough allowance is available. * * Might emit an {Approval} event. */ function _spendAllowance(address owner, address spender, uint256 amount) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { require(currentAllowance >= amount, "ERC20: insufficient allowance"); unchecked { _approve(owner, spender, currentAllowance - amount); } } } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * has been transferred to `to`. * - when `from` is zero, `amount` tokens have been minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens have been burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer(address from, address to, uint256 amount) internal virtual {} } // File: pom.sol //SPDX-License-Identifier: MIT /** Telegram : https://t.me/MorphixErc Twitter : https://twitter.com/MORPHIX198323 Website : https://www.Morphix.site */ pragma solidity 0.8.19; interface DexFactory { function createPair( address tokenA, address tokenB ) external returns (address pair); } interface DexRouter { function factory() external pure returns (address); function WETH() external pure returns (address); function addLiquidityETH( address token, uint256 amountTokenDesired, uint256 amountTokenMin, uint256 amountETHMin, address to, uint256 deadline ) external payable returns (uint256 amountToken, uint256 amountETH, uint256 liquidity); function swapExactTokensForETHSupportingFeeOnTransferTokens( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external; } contract MPX is ERC20, Ownable { struct Tax { uint256 marketingTax; } uint256 private constant _totalSupply = 1_000_000_000 * 1e18; //Router DexRouter public immutable uniswapRouter; address public immutable pairAddress; //Taxes Tax public buyTaxes = Tax(25); Tax public sellTaxes = Tax(25); Tax public transferTaxes = Tax(25); //Whitelisting from taxes/maxwallet/txlimit/etc mapping(address => bool) private whitelisted; mapping(address => uint256) private _holderLastTransferTimestamp; //Swapping uint256 public swapTokensAtAmount = _totalSupply / 1_000_000; //after 0.01% of total supply, swap them bool public swapAndLiquifyEnabled = true; bool public isSwapping = false; bool public tradingEnabled = false; uint256 public startTradingBlock; bool public transferDelayEnabled = true; //Wallets address public marketingWallet = 0x9788bDE4f6617aA2067E32A412c503B8A39C0C61; address public developmentWallet = 0xA3751AF9bb909aD3B3CC44C19E1673bF7e5B3a3E ; uint256 public maxWalletPercentage = 100; //Events event BuyFeesUpdated(uint256 indexed _trFee); event SellFeesUpdated(uint256 indexed _trFee); event marketingWalletChanged(address indexed _trWallet); event developmentWalletChanged(address indexed _trWallet); event SwapThresholdUpdated(uint256 indexed _newThreshold); event InternalSwapStatusUpdated(bool indexed _status); event Whitelist(address indexed _target, bool indexed _status); event MaxWalletChanged(uint256 percentage); constructor() ERC20("MORPHIX", "MPX") { uniswapRouter = DexRouter(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D); // mainet pairAddress = DexFactory(uniswapRouter.factory()).createPair( address(this), uniswapRouter.WETH() ); whitelisted[msg.sender] = true; whitelisted[address(uniswapRouter)] = true; whitelisted[address(this)] = true; _mint(marketingWallet, _totalSupply*3/100); _mint(msg.sender, _totalSupply*97/100); } function setmarketingWallet(address _newmarketing) external onlyOwner { require( _newmarketing != address(0), "can not set marketing to dead wallet" ); marketingWallet = _newmarketing; emit marketingWalletChanged(_newmarketing); } function setdevelopmentWallet(address _newdevelopment) external onlyOwner { require( _newdevelopment != address(0), "can not set development to dead wallet" ); marketingWallet = _newdevelopment; emit developmentWalletChanged(_newdevelopment); } function enableTrading() external onlyOwner { require(!tradingEnabled, "Trading is already enabled"); tradingEnabled = true; startTradingBlock = block.number; } function setBuyTaxes(uint256 _marketingTax) external onlyOwner { buyTaxes.marketingTax = _marketingTax; require(_marketingTax <= 30, "Can not set buy fees higher than 30%"); emit BuyFeesUpdated(_marketingTax); } function setSellTaxes(uint256 _marketingTax) external onlyOwner { sellTaxes.marketingTax = _marketingTax; require(_marketingTax <= 30, "Can not set buy fees higher than 30%"); emit SellFeesUpdated(_marketingTax); } function setSwapTokensAtAmount(uint256 _newAmount) external onlyOwner { require( _newAmount > 0 && _newAmount <= (_totalSupply * 5) / 1000, "Minimum swap amount must be greater than 0 and less than 0.5% of total supply!" ); swapTokensAtAmount = _newAmount; emit SwapThresholdUpdated(swapTokensAtAmount); } function toggleSwapping() external onlyOwner { swapAndLiquifyEnabled = (swapAndLiquifyEnabled) ? false : true; } function setWhitelistStatus( address _wallet, bool _status ) external onlyOwner { whitelisted[_wallet] = _status; emit Whitelist(_wallet, _status); } function removeLimits() external onlyOwner{ transferDelayEnabled=false; transferTaxes.marketingTax = 0; } function checkWhitelist(address _wallet) external view returns (bool) { return whitelisted[_wallet]; } function setMaxWalletPercentage(uint256 _percentage) external onlyOwner { require(_percentage > 1, "Percentage must be greater than 1%"); require(_percentage <= 100, "Percentage must be less than or equal to 100"); maxWalletPercentage = _percentage; emit MaxWalletChanged(_percentage); } // this function is reponsible for managing tax, if _from or _to is whitelisted, we simply return _amount and skip all the limitations function _takeTax( address _from, address _to, uint256 _amount ) internal returns (uint256) { if (whitelisted[_from] || whitelisted[_to]) { return _amount; } uint256 totalTax = transferTaxes.marketingTax; if (_to == pairAddress) { totalTax = sellTaxes.marketingTax; } else if (_from == pairAddress) { totalTax = buyTaxes.marketingTax; } // Check if within the first 5 blocks if (block.number <= startTradingBlock + 8) { if (block.number == startTradingBlock + 8) { totalTax = 5; } else if (block.number == startTradingBlock + 6) { totalTax = 10; } else if (block.number == startTradingBlock + 4) { totalTax = 15; } else if (block.number == startTradingBlock + 2) { totalTax = 20; } else if (block.number == startTradingBlock ) { totalTax = 25; } else { totalTax = 3; } } if (_to != pairAddress &&_from != pairAddress) { totalTax = transferTaxes.marketingTax; } uint256 tax = 0; if (totalTax > 0) { tax = (_amount * totalTax) / 100; super._transfer(_from, address(this), tax); } return (_amount - tax); } function _transfer( address _from, address _to, uint256 _amount ) internal virtual override { if (transferDelayEnabled) { if (_to != address(pairAddress) && _to != address(pairAddress)) { require(_holderLastTransferTimestamp[tx.origin] < block.number, "Only one transfer per block allowed."); _holderLastTransferTimestamp[tx.origin] = block.number; } } require(_from != address(0), "transfer from address zero"); require(_to != address(0), "transfer to address zero"); require(_amount > 0, "Transfer amount must be greater than zero"); // Calculate the maximum wallet amount based on the total supply and the maximum wallet percentage uint256 maxWalletAmount = _totalSupply * maxWalletPercentage / 100; // Check if the transaction is within the maximum wallet limit if (!whitelisted[_from] && !whitelisted[_to] && _to != address(0) && _to != address(this) && _to != pairAddress) { require(balanceOf(_to) + _amount <= maxWalletAmount, "Exceeds maximum wallet amount"); } uint256 toTransfer = _takeTax(_from, _to, _amount); bool canSwap = balanceOf(address(this)) >= swapTokensAtAmount; if (!whitelisted[_from] && !whitelisted[_to]) { require(tradingEnabled, "Trading not active"); if (pairAddress == _to && swapAndLiquifyEnabled && canSwap && !isSwapping) { internalSwap(); } } super._transfer(_from, _to, toTransfer); } function internalSwap() internal { isSwapping = true; uint256 taxAmount = balanceOf(address(this)); if (taxAmount == 0) { return; } swapToETH(balanceOf(address(this))); (bool success, ) = marketingWallet.call{value: address(this).balance*2/3}(""); (bool success2, ) = developmentWallet.call{value: address(this).balance}(""); require(success , "Transfer failed."); require(success2 , "Transfer failed."); isSwapping = false; } function swapToETH(uint256 _amount) internal { address[] memory path = new address[](2); path[0] = address(this); path[1] = uniswapRouter.WETH(); _approve(address(this), address(uniswapRouter), _amount); uniswapRouter.swapExactTokensForETHSupportingFeeOnTransferTokens( _amount, 0, path, address(this), block.timestamp ); } receive() external payable {} }
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":"uint256","name":"_trFee","type":"uint256"}],"name":"BuyFeesUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bool","name":"_status","type":"bool"}],"name":"InternalSwapStatusUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"percentage","type":"uint256"}],"name":"MaxWalletChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"_trFee","type":"uint256"}],"name":"SellFeesUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"_newThreshold","type":"uint256"}],"name":"SwapThresholdUpdated","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"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_target","type":"address"},{"indexed":true,"internalType":"bool","name":"_status","type":"bool"}],"name":"Whitelist","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_trWallet","type":"address"}],"name":"developmentWalletChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_trWallet","type":"address"}],"name":"marketingWalletChanged","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTaxes","outputs":[{"internalType":"uint256","name":"marketingTax","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_wallet","type":"address"}],"name":"checkWhitelist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"developmentWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"isSwapping","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":"maxWalletPercentage","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":"pairAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellTaxes","outputs":[{"internalType":"uint256","name":"marketingTax","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingTax","type":"uint256"}],"name":"setBuyTaxes","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_percentage","type":"uint256"}],"name":"setMaxWalletPercentage","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingTax","type":"uint256"}],"name":"setSellTaxes","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newAmount","type":"uint256"}],"name":"setSwapTokensAtAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_wallet","type":"address"},{"internalType":"bool","name":"_status","type":"bool"}],"name":"setWhitelistStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_newdevelopment","type":"address"}],"name":"setdevelopmentWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_newmarketing","type":"address"}],"name":"setmarketingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startTradingBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapAndLiquifyEnabled","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":"toggleSwapping","outputs":[],"stateMutability":"nonpayable","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":"to","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":"from","type":"address"},{"internalType":"address","name":"to","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":"transferTaxes","outputs":[{"internalType":"uint256","name":"marketingTax","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapRouter","outputs":[{"internalType":"contract DexRouter","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
601960c0819052600681905560e081905260078190556101206040526101008190526008556200003f620f42406b033b2e3c9fd0803ce80000006200047b565b600b55600c805462ffffff19166001179055600e8054749788bde4f6617aa2067e32a412c503b8a39c0c61016001600160a81b0319909116179055600f80546001600160a01b03191673a3751af9bb909ad3b3cc44c19e1673bf7e5b3a3e1790556064601055348015620000b257600080fd5b506040518060400160405280600781526020016609a9ea4a09092b60cb1b8152506040518060400160405280600381526020016209aa0b60eb1b815250816003908162000100919062000542565b5060046200010f828262000542565b5050506200012c620001266200034460201b60201c565b62000348565b737a250d5630b4cf539739df2c5dacb4c659f2488d60808190526040805163c45a015560e01b8152905163c45a0155916004808201926020929091908290030181865afa15801562000182573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001a891906200060e565b6001600160a01b031663c9c65396306080516001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620001f8573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200021e91906200060e565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af11580156200026c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200029291906200060e565b6001600160a01b0390811660a052336000908152600960205260408082208054600160ff1991821681179092556080518516845282842080548216831790553084529190922080549091169091179055600e546200031e916101009091041660646200030c6b033b2e3c9fd0803ce8000000600362000640565b6200031891906200047b565b6200039a565b6200033e3360646200030c6b033b2e3c9fd0803ce8000000606162000640565b62000676565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216620003f55760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b806002600082825462000409919062000660565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b505050565b634e487b7160e01b600052601160045260246000fd5b6000826200049957634e487b7160e01b600052601260045260246000fd5b500490565b634e487b7160e01b600052604160045260246000fd5b600181811c90821680620004c957607f821691505b602082108103620004ea57634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200046057600081815260208120601f850160051c81016020861015620005195750805b601f850160051c820191505b818110156200053a5782815560010162000525565b505050505050565b81516001600160401b038111156200055e576200055e6200049e565b62000576816200056f8454620004b4565b84620004f0565b602080601f831160018114620005ae5760008415620005955750858301515b600019600386901b1c1916600185901b1785556200053a565b600085815260208120601f198616915b82811015620005df57888601518255948401946001909101908401620005be565b5085821015620005fe5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6000602082840312156200062157600080fd5b81516001600160a01b03811681146200063957600080fd5b9392505050565b80820281158282048414176200065a576200065a62000465565b92915050565b808201808211156200065a576200065a62000465565b60805160a051612008620006e9600039600081816105f0015281816110d40152818161111101528181611375015281816114eb015281816116090152818161163d01528181611714015261175101526000818161049501528181611b6801528181611c210152611c5d01526120086000f3fe6080604052600436106102345760003560e01c806375f0a8741161012e578063a9059cbb116100ab578063dd62ed3e1161006f578063dd62ed3e146106ab578063e2f45605146106cb578063ef586f71146106e1578063f2fde38b146106f6578063f66895a31461071657600080fd5b8063a9059cbb14610612578063afa4f3b214610632578063b886311514610652578063c04a541414610671578063c876d0b91461069157600080fd5b80638da5cb5b116100f25780638da5cb5b1461056b57806395d89b4114610589578063a3ca847d1461059e578063a457c2d7146105be578063a8b08982146105de57600080fd5b806375f0a874146104e457806376be96f3146105095780637a845ece1461051f578063864701a51461053f5780638a8c523c1461055657600080fd5b806339509351116101bc578063599ca39711610180578063599ca3971461042257806370a0823114610438578063715018a61461046e578063735de9f714610483578063751039fc146104cf57600080fd5b806339509351146103915780634830aa17146103b15780634a74bb02146103d15780634ada218b146103eb5780635331803c1461040b57600080fd5b806318160ddd1161020357806318160ddd146102dd5780631950c218146102fc578063224611731461033557806323b872dd14610355578063313ce5671461037557600080fd5b806306fdde03146102405780630940bbc71461026b578063095ea7b31461028d5780630c424284146102bd57600080fd5b3661023b57005b600080fd5b34801561024c57600080fd5b5061025561072d565b6040516102629190611cc9565b60405180910390f35b34801561027757600080fd5b5061028b610286366004611d17565b6107bf565b005b34801561029957600080fd5b506102ad6102a8366004611d45565b610824565b6040519015158152602001610262565b3480156102c957600080fd5b5061028b6102d8366004611d71565b61083e565b3480156102e957600080fd5b506002545b604051908152602001610262565b34801561030857600080fd5b506102ad610317366004611daf565b6001600160a01b031660009081526009602052604090205460ff1690565b34801561034157600080fd5b5061028b610350366004611daf565b61089a565b34801561036157600080fd5b506102ad610370366004611dcc565b610956565b34801561038157600080fd5b5060405160128152602001610262565b34801561039d57600080fd5b506102ad6103ac366004611d45565b61097c565b3480156103bd57600080fd5b5061028b6103cc366004611daf565b61099e565b3480156103dd57600080fd5b50600c546102ad9060ff1681565b3480156103f757600080fd5b50600c546102ad9062010000900460ff1681565b34801561041757600080fd5b506008546102ee9081565b34801561042e57600080fd5b506102ee60105481565b34801561044457600080fd5b506102ee610453366004611daf565b6001600160a01b031660009081526020819052604090205490565b34801561047a57600080fd5b5061028b610a5d565b34801561048f57600080fd5b506104b77f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b039091168152602001610262565b3480156104db57600080fd5b5061028b610a71565b3480156104f057600080fd5b50600e546104b79061010090046001600160a01b031681565b34801561051557600080fd5b506102ee600d5481565b34801561052b57600080fd5b5061028b61053a366004611d17565b610a8a565b34801561054b57600080fd5b506006546102ee9081565b34801561056257600080fd5b5061028b610b8e565b34801561057757600080fd5b506005546001600160a01b03166104b7565b34801561059557600080fd5b50610255610c06565b3480156105aa57600080fd5b5061028b6105b9366004611d17565b610c15565b3480156105ca57600080fd5b506102ad6105d9366004611d45565b610c71565b3480156105ea57600080fd5b506104b77f000000000000000000000000000000000000000000000000000000000000000081565b34801561061e57600080fd5b506102ad61062d366004611d45565b610cf7565b34801561063e57600080fd5b5061028b61064d366004611d17565b610d05565b34801561065e57600080fd5b50600c546102ad90610100900460ff1681565b34801561067d57600080fd5b50600f546104b7906001600160a01b031681565b34801561069d57600080fd5b50600e546102ad9060ff1681565b3480156106b757600080fd5b506102ee6106c6366004611e0d565b610dfc565b3480156106d757600080fd5b506102ee600b5481565b3480156106ed57600080fd5b5061028b610e27565b34801561070257600080fd5b5061028b610711366004611daf565b610e56565b34801561072257600080fd5b506007546102ee9081565b60606003805461073c90611e3b565b80601f016020809104026020016040519081016040528092919081815260200182805461076890611e3b565b80156107b55780601f1061078a576101008083540402835291602001916107b5565b820191906000526020600020905b81548152906001019060200180831161079857829003601f168201915b5050505050905090565b6107c7610ecf565b6007819055601e8111156107f65760405162461bcd60e51b81526004016107ed90611e75565b60405180910390fd5b60405181907f16df2c25b3392f376a685a3826b941b25140108d95899d6b1bd983feafbc1c5590600090a250565b600033610832818585610f29565b60019150505b92915050565b610846610ecf565b6001600160a01b038216600081815260096020526040808220805460ff191685151590811790915590519092917f5a25e09a5dba33161281055e015f1279b6b10204d8f90dd56a8ce2b82322d43d91a35050565b6108a2610ecf565b6001600160a01b0381166109045760405162461bcd60e51b8152602060048201526024808201527f63616e206e6f7420736574206d61726b6574696e6720746f20646561642077616044820152631b1b195d60e21b60648201526084016107ed565b600e8054610100600160a81b0319166101006001600160a01b038416908102919091179091556040517fd1a6f806ccf6e5a2241d358891af2601bbf89feaad0fb4a891c9fbde2933761990600090a250565b60003361096485828561104d565b61096f8585856110c7565b60019150505b9392505050565b60003361083281858561098f8383610dfc565b6109999190611ecf565b610f29565b6109a6610ecf565b6001600160a01b038116610a0b5760405162461bcd60e51b815260206004820152602660248201527f63616e206e6f742073657420646576656c6f706d656e7420746f2064656164206044820152651dd85b1b195d60d21b60648201526084016107ed565b600e8054610100600160a81b0319166101006001600160a01b038416908102919091179091556040517fbeaabd0126ed018f14bda12cf4f7e23b1919648d9c80283d4f9c9743736b197190600090a250565b610a65610ecf565b610a6f600061155f565b565b610a79610ecf565b600e805460ff191690556000600855565b610a92610ecf565b60018111610aed5760405162461bcd60e51b815260206004820152602260248201527f50657263656e74616765206d7573742062652067726561746572207468616e20604482015261312560f01b60648201526084016107ed565b6064811115610b535760405162461bcd60e51b815260206004820152602c60248201527f50657263656e74616765206d757374206265206c657373207468616e206f722060448201526b0657175616c20746f203130360a41b60648201526084016107ed565b60108190556040518181527fd79b8c9aaacc4db9fee532137a1ade40c7238016bff71cb2abc1a3cf8b6cdff69060200160405180910390a150565b610b96610ecf565b600c5462010000900460ff1615610bef5760405162461bcd60e51b815260206004820152601a60248201527f54726164696e6720697320616c726561647920656e61626c656400000000000060448201526064016107ed565b600c805462ff000019166201000017905543600d55565b60606004805461073c90611e3b565b610c1d610ecf565b6006819055601e811115610c435760405162461bcd60e51b81526004016107ed90611e75565b60405181907f491005465ab6f82fd10f4b13a1b1e5ca452bc4856b019f63775e33a6b1ad2feb90600090a250565b60003381610c7f8286610dfc565b905083811015610cdf5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016107ed565b610cec8286868403610f29565b506001949350505050565b6000336108328185856110c7565b610d0d610ecf565b600081118015610d4057506103e8610d326b033b2e3c9fd0803ce80000006005611ee2565b610d3c9190611ef9565b8111155b610dc95760405162461bcd60e51b815260206004820152604e60248201527f4d696e696d756d207377617020616d6f756e74206d757374206265206772656160448201527f746572207468616e203020616e64206c657373207468616e20302e3525206f6660648201526d20746f74616c20737570706c792160901b608482015260a4016107ed565b600b81905560405181907f18ff2fc8464635e4f668567019152095047e34d7a2ab4b97661ba4dc7fd0647690600090a250565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b610e2f610ecf565b600c5460ff16610e40576001610e43565b60005b600c805460ff1916911515919091179055565b610e5e610ecf565b6001600160a01b038116610ec35760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107ed565b610ecc8161155f565b50565b6005546001600160a01b03163314610a6f5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016107ed565b6001600160a01b038316610f8b5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016107ed565b6001600160a01b038216610fec5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016107ed565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b60006110598484610dfc565b905060001981146110c157818110156110b45760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016107ed565b6110c18484848403610f29565b50505050565b600e5460ff16156111c8577f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b03161415801561114657507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b031614155b156111c857326000908152600a602052604090205443116111b55760405162461bcd60e51b8152602060048201526024808201527f4f6e6c79206f6e65207472616e736665722070657220626c6f636b20616c6c6f6044820152633bb2b21760e11b60648201526084016107ed565b326000908152600a602052604090204390555b6001600160a01b03831661121e5760405162461bcd60e51b815260206004820152601a60248201527f7472616e736665722066726f6d2061646472657373207a65726f00000000000060448201526064016107ed565b6001600160a01b0382166112745760405162461bcd60e51b815260206004820152601860248201527f7472616e7366657220746f2061646472657373207a65726f000000000000000060448201526064016107ed565b600081116112d65760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d7573742062652067726561746572206044820152687468616e207a65726f60b81b60648201526084016107ed565b600060646010546b033b2e3c9fd0803ce80000006112f49190611ee2565b6112fe9190611ef9565b6001600160a01b03851660009081526009602052604090205490915060ff1615801561134357506001600160a01b03831660009081526009602052604090205460ff16155b801561135757506001600160a01b03831615155b801561136c57506001600160a01b0383163014155b80156113aa57507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316836001600160a01b031614155b156114285780826113d0856001600160a01b031660009081526020819052604090205490565b6113da9190611ecf565b11156114285760405162461bcd60e51b815260206004820152601d60248201527f45786365656473206d6178696d756d2077616c6c657420616d6f756e7400000060448201526064016107ed565b60006114358585856115b1565b600b5430600090815260208181526040808320546001600160a01b038b16845260099092529091205492935010159060ff1615801561148d57506001600160a01b03851660009081526009602052604090205460ff16155b1561154c57600c5462010000900460ff166114df5760405162461bcd60e51b815260206004820152601260248201527154726164696e67206e6f742061637469766560701b60448201526064016107ed565b846001600160a01b03167f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03161480156115225750600c5460ff165b801561152b5750805b801561153f5750600c54610100900460ff16155b1561154c5761154c6117cf565b61155786868461196d565b505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b03831660009081526009602052604081205460ff16806115f057506001600160a01b03831660009081526009602052604090205460ff165b156115fc575080610975565b6008546001600160a01b037f000000000000000000000000000000000000000000000000000000000000000081169085160361163b5750600754611679565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316856001600160a01b03160361167957506006545b600d54611687906008611ecf565b431161171257600d5461169b906008611ecf565b43036116a957506005611712565b600d546116b7906006611ecf565b43036116c55750600a611712565b600d546116d3906004611ecf565b43036116e15750600f611712565b600d546116ef906002611ecf565b43036116fd57506014611712565b600d54430361170e57506019611712565b5060035b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316846001600160a01b03161415801561178657507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316856001600160a01b031614155b1561179057506008545b600081156117bb5760646117a48386611ee2565b6117ae9190611ef9565b90506117bb86308361196d565b6117c58185611f1b565b9695505050505050565b600c805461ff001916610100179055306000908152602081905260408120549050806000036117fb5750565b3060009081526020819052604090205461181490611b11565b600e5460009061010090046001600160a01b03166003611835476002611ee2565b61183f9190611ef9565b604051600081818185875af1925050503d806000811461187b576040519150601f19603f3d011682016040523d82523d6000602084013e611880565b606091505b5050600f546040519192506000916001600160a01b039091169047908381818185875af1925050503d80600081146118d4576040519150601f19603f3d011682016040523d82523d6000602084013e6118d9565b606091505b505090508161191d5760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b60448201526064016107ed565b8061195d5760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b60448201526064016107ed565b5050600c805461ff001916905550565b6001600160a01b0383166119d15760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016107ed565b6001600160a01b038216611a335760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016107ed565b6001600160a01b03831660009081526020819052604090205481811015611aab5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016107ed565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a36110c1565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110611b4657611b46611f2e565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611bc4573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611be89190611f44565b81600181518110611bfb57611bfb611f2e565b60200260200101906001600160a01b031690816001600160a01b031681525050611c46307f000000000000000000000000000000000000000000000000000000000000000084610f29565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063791ac94790611c9b908590600090869030904290600401611f61565b600060405180830381600087803b158015611cb557600080fd5b505af1158015611557573d6000803e3d6000fd5b600060208083528351808285015260005b81811015611cf657858101830151858201604001528201611cda565b506000604082860101526040601f19601f8301168501019250505092915050565b600060208284031215611d2957600080fd5b5035919050565b6001600160a01b0381168114610ecc57600080fd5b60008060408385031215611d5857600080fd5b8235611d6381611d30565b946020939093013593505050565b60008060408385031215611d8457600080fd5b8235611d8f81611d30565b915060208301358015158114611da457600080fd5b809150509250929050565b600060208284031215611dc157600080fd5b813561097581611d30565b600080600060608486031215611de157600080fd5b8335611dec81611d30565b92506020840135611dfc81611d30565b929592945050506040919091013590565b60008060408385031215611e2057600080fd5b8235611e2b81611d30565b91506020830135611da481611d30565b600181811c90821680611e4f57607f821691505b602082108103611e6f57634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526024908201527f43616e206e6f742073657420627579206665657320686967686572207468616e6040820152632033302560e01b606082015260800190565b634e487b7160e01b600052601160045260246000fd5b8082018082111561083857610838611eb9565b808202811582820484141761083857610838611eb9565b600082611f1657634e487b7160e01b600052601260045260246000fd5b500490565b8181038181111561083857610838611eb9565b634e487b7160e01b600052603260045260246000fd5b600060208284031215611f5657600080fd5b815161097581611d30565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015611fb15784516001600160a01b031683529383019391830191600101611f8c565b50506001600160a01b0396909616606085015250505060800152939250505056fea2646970667358221220a7b525f0c6ebd53ee6d5de8f70deb4b79dfc56e48d3eeecf2d0a5f1a999efc8664736f6c63430008130033
Deployed Bytecode
0x6080604052600436106102345760003560e01c806375f0a8741161012e578063a9059cbb116100ab578063dd62ed3e1161006f578063dd62ed3e146106ab578063e2f45605146106cb578063ef586f71146106e1578063f2fde38b146106f6578063f66895a31461071657600080fd5b8063a9059cbb14610612578063afa4f3b214610632578063b886311514610652578063c04a541414610671578063c876d0b91461069157600080fd5b80638da5cb5b116100f25780638da5cb5b1461056b57806395d89b4114610589578063a3ca847d1461059e578063a457c2d7146105be578063a8b08982146105de57600080fd5b806375f0a874146104e457806376be96f3146105095780637a845ece1461051f578063864701a51461053f5780638a8c523c1461055657600080fd5b806339509351116101bc578063599ca39711610180578063599ca3971461042257806370a0823114610438578063715018a61461046e578063735de9f714610483578063751039fc146104cf57600080fd5b806339509351146103915780634830aa17146103b15780634a74bb02146103d15780634ada218b146103eb5780635331803c1461040b57600080fd5b806318160ddd1161020357806318160ddd146102dd5780631950c218146102fc578063224611731461033557806323b872dd14610355578063313ce5671461037557600080fd5b806306fdde03146102405780630940bbc71461026b578063095ea7b31461028d5780630c424284146102bd57600080fd5b3661023b57005b600080fd5b34801561024c57600080fd5b5061025561072d565b6040516102629190611cc9565b60405180910390f35b34801561027757600080fd5b5061028b610286366004611d17565b6107bf565b005b34801561029957600080fd5b506102ad6102a8366004611d45565b610824565b6040519015158152602001610262565b3480156102c957600080fd5b5061028b6102d8366004611d71565b61083e565b3480156102e957600080fd5b506002545b604051908152602001610262565b34801561030857600080fd5b506102ad610317366004611daf565b6001600160a01b031660009081526009602052604090205460ff1690565b34801561034157600080fd5b5061028b610350366004611daf565b61089a565b34801561036157600080fd5b506102ad610370366004611dcc565b610956565b34801561038157600080fd5b5060405160128152602001610262565b34801561039d57600080fd5b506102ad6103ac366004611d45565b61097c565b3480156103bd57600080fd5b5061028b6103cc366004611daf565b61099e565b3480156103dd57600080fd5b50600c546102ad9060ff1681565b3480156103f757600080fd5b50600c546102ad9062010000900460ff1681565b34801561041757600080fd5b506008546102ee9081565b34801561042e57600080fd5b506102ee60105481565b34801561044457600080fd5b506102ee610453366004611daf565b6001600160a01b031660009081526020819052604090205490565b34801561047a57600080fd5b5061028b610a5d565b34801561048f57600080fd5b506104b77f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b039091168152602001610262565b3480156104db57600080fd5b5061028b610a71565b3480156104f057600080fd5b50600e546104b79061010090046001600160a01b031681565b34801561051557600080fd5b506102ee600d5481565b34801561052b57600080fd5b5061028b61053a366004611d17565b610a8a565b34801561054b57600080fd5b506006546102ee9081565b34801561056257600080fd5b5061028b610b8e565b34801561057757600080fd5b506005546001600160a01b03166104b7565b34801561059557600080fd5b50610255610c06565b3480156105aa57600080fd5b5061028b6105b9366004611d17565b610c15565b3480156105ca57600080fd5b506102ad6105d9366004611d45565b610c71565b3480156105ea57600080fd5b506104b77f000000000000000000000000137b5ac413efb24fecf4f06029babd255b21e30581565b34801561061e57600080fd5b506102ad61062d366004611d45565b610cf7565b34801561063e57600080fd5b5061028b61064d366004611d17565b610d05565b34801561065e57600080fd5b50600c546102ad90610100900460ff1681565b34801561067d57600080fd5b50600f546104b7906001600160a01b031681565b34801561069d57600080fd5b50600e546102ad9060ff1681565b3480156106b757600080fd5b506102ee6106c6366004611e0d565b610dfc565b3480156106d757600080fd5b506102ee600b5481565b3480156106ed57600080fd5b5061028b610e27565b34801561070257600080fd5b5061028b610711366004611daf565b610e56565b34801561072257600080fd5b506007546102ee9081565b60606003805461073c90611e3b565b80601f016020809104026020016040519081016040528092919081815260200182805461076890611e3b565b80156107b55780601f1061078a576101008083540402835291602001916107b5565b820191906000526020600020905b81548152906001019060200180831161079857829003601f168201915b5050505050905090565b6107c7610ecf565b6007819055601e8111156107f65760405162461bcd60e51b81526004016107ed90611e75565b60405180910390fd5b60405181907f16df2c25b3392f376a685a3826b941b25140108d95899d6b1bd983feafbc1c5590600090a250565b600033610832818585610f29565b60019150505b92915050565b610846610ecf565b6001600160a01b038216600081815260096020526040808220805460ff191685151590811790915590519092917f5a25e09a5dba33161281055e015f1279b6b10204d8f90dd56a8ce2b82322d43d91a35050565b6108a2610ecf565b6001600160a01b0381166109045760405162461bcd60e51b8152602060048201526024808201527f63616e206e6f7420736574206d61726b6574696e6720746f20646561642077616044820152631b1b195d60e21b60648201526084016107ed565b600e8054610100600160a81b0319166101006001600160a01b038416908102919091179091556040517fd1a6f806ccf6e5a2241d358891af2601bbf89feaad0fb4a891c9fbde2933761990600090a250565b60003361096485828561104d565b61096f8585856110c7565b60019150505b9392505050565b60003361083281858561098f8383610dfc565b6109999190611ecf565b610f29565b6109a6610ecf565b6001600160a01b038116610a0b5760405162461bcd60e51b815260206004820152602660248201527f63616e206e6f742073657420646576656c6f706d656e7420746f2064656164206044820152651dd85b1b195d60d21b60648201526084016107ed565b600e8054610100600160a81b0319166101006001600160a01b038416908102919091179091556040517fbeaabd0126ed018f14bda12cf4f7e23b1919648d9c80283d4f9c9743736b197190600090a250565b610a65610ecf565b610a6f600061155f565b565b610a79610ecf565b600e805460ff191690556000600855565b610a92610ecf565b60018111610aed5760405162461bcd60e51b815260206004820152602260248201527f50657263656e74616765206d7573742062652067726561746572207468616e20604482015261312560f01b60648201526084016107ed565b6064811115610b535760405162461bcd60e51b815260206004820152602c60248201527f50657263656e74616765206d757374206265206c657373207468616e206f722060448201526b0657175616c20746f203130360a41b60648201526084016107ed565b60108190556040518181527fd79b8c9aaacc4db9fee532137a1ade40c7238016bff71cb2abc1a3cf8b6cdff69060200160405180910390a150565b610b96610ecf565b600c5462010000900460ff1615610bef5760405162461bcd60e51b815260206004820152601a60248201527f54726164696e6720697320616c726561647920656e61626c656400000000000060448201526064016107ed565b600c805462ff000019166201000017905543600d55565b60606004805461073c90611e3b565b610c1d610ecf565b6006819055601e811115610c435760405162461bcd60e51b81526004016107ed90611e75565b60405181907f491005465ab6f82fd10f4b13a1b1e5ca452bc4856b019f63775e33a6b1ad2feb90600090a250565b60003381610c7f8286610dfc565b905083811015610cdf5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016107ed565b610cec8286868403610f29565b506001949350505050565b6000336108328185856110c7565b610d0d610ecf565b600081118015610d4057506103e8610d326b033b2e3c9fd0803ce80000006005611ee2565b610d3c9190611ef9565b8111155b610dc95760405162461bcd60e51b815260206004820152604e60248201527f4d696e696d756d207377617020616d6f756e74206d757374206265206772656160448201527f746572207468616e203020616e64206c657373207468616e20302e3525206f6660648201526d20746f74616c20737570706c792160901b608482015260a4016107ed565b600b81905560405181907f18ff2fc8464635e4f668567019152095047e34d7a2ab4b97661ba4dc7fd0647690600090a250565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b610e2f610ecf565b600c5460ff16610e40576001610e43565b60005b600c805460ff1916911515919091179055565b610e5e610ecf565b6001600160a01b038116610ec35760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107ed565b610ecc8161155f565b50565b6005546001600160a01b03163314610a6f5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016107ed565b6001600160a01b038316610f8b5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016107ed565b6001600160a01b038216610fec5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016107ed565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b60006110598484610dfc565b905060001981146110c157818110156110b45760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016107ed565b6110c18484848403610f29565b50505050565b600e5460ff16156111c8577f000000000000000000000000137b5ac413efb24fecf4f06029babd255b21e3056001600160a01b0316826001600160a01b03161415801561114657507f000000000000000000000000137b5ac413efb24fecf4f06029babd255b21e3056001600160a01b0316826001600160a01b031614155b156111c857326000908152600a602052604090205443116111b55760405162461bcd60e51b8152602060048201526024808201527f4f6e6c79206f6e65207472616e736665722070657220626c6f636b20616c6c6f6044820152633bb2b21760e11b60648201526084016107ed565b326000908152600a602052604090204390555b6001600160a01b03831661121e5760405162461bcd60e51b815260206004820152601a60248201527f7472616e736665722066726f6d2061646472657373207a65726f00000000000060448201526064016107ed565b6001600160a01b0382166112745760405162461bcd60e51b815260206004820152601860248201527f7472616e7366657220746f2061646472657373207a65726f000000000000000060448201526064016107ed565b600081116112d65760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d7573742062652067726561746572206044820152687468616e207a65726f60b81b60648201526084016107ed565b600060646010546b033b2e3c9fd0803ce80000006112f49190611ee2565b6112fe9190611ef9565b6001600160a01b03851660009081526009602052604090205490915060ff1615801561134357506001600160a01b03831660009081526009602052604090205460ff16155b801561135757506001600160a01b03831615155b801561136c57506001600160a01b0383163014155b80156113aa57507f000000000000000000000000137b5ac413efb24fecf4f06029babd255b21e3056001600160a01b0316836001600160a01b031614155b156114285780826113d0856001600160a01b031660009081526020819052604090205490565b6113da9190611ecf565b11156114285760405162461bcd60e51b815260206004820152601d60248201527f45786365656473206d6178696d756d2077616c6c657420616d6f756e7400000060448201526064016107ed565b60006114358585856115b1565b600b5430600090815260208181526040808320546001600160a01b038b16845260099092529091205492935010159060ff1615801561148d57506001600160a01b03851660009081526009602052604090205460ff16155b1561154c57600c5462010000900460ff166114df5760405162461bcd60e51b815260206004820152601260248201527154726164696e67206e6f742061637469766560701b60448201526064016107ed565b846001600160a01b03167f000000000000000000000000137b5ac413efb24fecf4f06029babd255b21e3056001600160a01b03161480156115225750600c5460ff165b801561152b5750805b801561153f5750600c54610100900460ff16155b1561154c5761154c6117cf565b61155786868461196d565b505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b03831660009081526009602052604081205460ff16806115f057506001600160a01b03831660009081526009602052604090205460ff165b156115fc575080610975565b6008546001600160a01b037f000000000000000000000000137b5ac413efb24fecf4f06029babd255b21e30581169085160361163b5750600754611679565b7f000000000000000000000000137b5ac413efb24fecf4f06029babd255b21e3056001600160a01b0316856001600160a01b03160361167957506006545b600d54611687906008611ecf565b431161171257600d5461169b906008611ecf565b43036116a957506005611712565b600d546116b7906006611ecf565b43036116c55750600a611712565b600d546116d3906004611ecf565b43036116e15750600f611712565b600d546116ef906002611ecf565b43036116fd57506014611712565b600d54430361170e57506019611712565b5060035b7f000000000000000000000000137b5ac413efb24fecf4f06029babd255b21e3056001600160a01b0316846001600160a01b03161415801561178657507f000000000000000000000000137b5ac413efb24fecf4f06029babd255b21e3056001600160a01b0316856001600160a01b031614155b1561179057506008545b600081156117bb5760646117a48386611ee2565b6117ae9190611ef9565b90506117bb86308361196d565b6117c58185611f1b565b9695505050505050565b600c805461ff001916610100179055306000908152602081905260408120549050806000036117fb5750565b3060009081526020819052604090205461181490611b11565b600e5460009061010090046001600160a01b03166003611835476002611ee2565b61183f9190611ef9565b604051600081818185875af1925050503d806000811461187b576040519150601f19603f3d011682016040523d82523d6000602084013e611880565b606091505b5050600f546040519192506000916001600160a01b039091169047908381818185875af1925050503d80600081146118d4576040519150601f19603f3d011682016040523d82523d6000602084013e6118d9565b606091505b505090508161191d5760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b60448201526064016107ed565b8061195d5760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b60448201526064016107ed565b5050600c805461ff001916905550565b6001600160a01b0383166119d15760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016107ed565b6001600160a01b038216611a335760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016107ed565b6001600160a01b03831660009081526020819052604090205481811015611aab5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016107ed565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a36110c1565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110611b4657611b46611f2e565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611bc4573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611be89190611f44565b81600181518110611bfb57611bfb611f2e565b60200260200101906001600160a01b031690816001600160a01b031681525050611c46307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84610f29565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac94790611c9b908590600090869030904290600401611f61565b600060405180830381600087803b158015611cb557600080fd5b505af1158015611557573d6000803e3d6000fd5b600060208083528351808285015260005b81811015611cf657858101830151858201604001528201611cda565b506000604082860101526040601f19601f8301168501019250505092915050565b600060208284031215611d2957600080fd5b5035919050565b6001600160a01b0381168114610ecc57600080fd5b60008060408385031215611d5857600080fd5b8235611d6381611d30565b946020939093013593505050565b60008060408385031215611d8457600080fd5b8235611d8f81611d30565b915060208301358015158114611da457600080fd5b809150509250929050565b600060208284031215611dc157600080fd5b813561097581611d30565b600080600060608486031215611de157600080fd5b8335611dec81611d30565b92506020840135611dfc81611d30565b929592945050506040919091013590565b60008060408385031215611e2057600080fd5b8235611e2b81611d30565b91506020830135611da481611d30565b600181811c90821680611e4f57607f821691505b602082108103611e6f57634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526024908201527f43616e206e6f742073657420627579206665657320686967686572207468616e6040820152632033302560e01b606082015260800190565b634e487b7160e01b600052601160045260246000fd5b8082018082111561083857610838611eb9565b808202811582820484141761083857610838611eb9565b600082611f1657634e487b7160e01b600052601260045260246000fd5b500490565b8181038181111561083857610838611eb9565b634e487b7160e01b600052603260045260246000fd5b600060208284031215611f5657600080fd5b815161097581611d30565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015611fb15784516001600160a01b031683529383019391830191600101611f8c565b50506001600160a01b0396909616606085015250505060800152939250505056fea2646970667358221220a7b525f0c6ebd53ee6d5de8f70deb4b79dfc56e48d3eeecf2d0a5f1a999efc8664736f6c63430008130033
Deployed Bytecode Sourcemap
28312:8832:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16253:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31566:246;;;;;;;;;;-1:-1:-1;31566:246:0;;;;;:::i;:::-;;:::i;:::-;;18613:201;;;;;;;;;;-1:-1:-1;18613:201:0;;;;;:::i;:::-;;:::i;:::-;;;1373:14:1;;1366:22;1348:41;;1336:2;1321:18;18613:201:0;1208:187:1;32334:195:0;;;;;;;;;;-1:-1:-1;32334:195:0;;;;;:::i;:::-;;:::i;17382:108::-;;;;;;;;;;-1:-1:-1;17470:12:0;;17382:108;;;1967:25:1;;;1955:2;1940:18;17382:108:0;1821:177:1;32669:116:0;;;;;;;;;;-1:-1:-1;32669:116:0;;;;;:::i;:::-;-1:-1:-1;;;;;32757:20:0;32733:4;32757:20;;;:11;:20;;;;;;;;;32669:116;30493:297;;;;;;;;;;-1:-1:-1;30493:297:0;;;;;:::i;:::-;;:::i;19394:261::-;;;;;;;;;;-1:-1:-1;19394:261:0;;;;;:::i;:::-;;:::i;17224:93::-;;;;;;;;;;-1:-1:-1;17224:93:0;;17307:2;2858:36:1;;2846:2;2831:18;17224:93:0;2716:184:1;20064:238:0;;;;;;;;;;-1:-1:-1;20064:238:0;;;;;:::i;:::-;;:::i;30798:311::-;;;;;;;;;;-1:-1:-1;30798:311:0;;;;;:::i;:::-;;:::i;29017:40::-;;;;;;;;;;-1:-1:-1;29017:40:0;;;;;;;;29101:34;;;;;;;;;;-1:-1:-1;29101:34:0;;;;;;;;;;;28669;;;;;;;;;;-1:-1:-1;28669:34:0;;;;;;29415:40;;;;;;;;;;;;;;;;17553:127;;;;;;;;;;-1:-1:-1;17553:127:0;;;;;:::i;:::-;-1:-1:-1;;;;;17654:18:0;17627:7;17654:18;;;;;;;;;;;;17553:127;9708:103;;;;;;;;;;;;;:::i;28491:40::-;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;3087:32:1;;;3069:51;;3057:2;3042:18;28491:40:0;2905:221:1;32535:128:0;;;;;;;;;;;;;:::i;29246:75::-;;;;;;;;;;-1:-1:-1;29246:75:0;;;;;;;-1:-1:-1;;;;;29246:75:0;;;29142:32;;;;;;;;;;;;;;;;32791:308;;;;;;;;;;-1:-1:-1;32791:308:0;;;;;:::i;:::-;;:::i;28596:29::-;;;;;;;;;;-1:-1:-1;28596:29:0;;;;;;31115:192;;;;;;;;;;;;;:::i;9067:87::-;;;;;;;;;;-1:-1:-1;9140:6:0;;-1:-1:-1;;;;;9140:6:0;9067:87;;16472:104;;;;;;;;;;;;;:::i;31315:243::-;;;;;;;;;;-1:-1:-1;31315:243:0;;;;;:::i;:::-;;:::i;20805:436::-;;;;;;;;;;-1:-1:-1;20805:436:0;;;;;:::i;:::-;;:::i;28538:36::-;;;;;;;;;;;;;;;17886:193;;;;;;;;;;-1:-1:-1;17886:193:0;;;;;:::i;:::-;;:::i;31820:372::-;;;;;;;;;;-1:-1:-1;31820:372:0;;;;;:::i;:::-;;:::i;29064:30::-;;;;;;;;;;-1:-1:-1;29064:30:0;;;;;;;;;;;29328:77;;;;;;;;;;-1:-1:-1;29328:77:0;;;;-1:-1:-1;;;;;29328:77:0;;;29181:39;;;;;;;;;;-1:-1:-1;29181:39:0;;;;;;;;18142:151;;;;;;;;;;-1:-1:-1;18142:151:0;;;;;:::i;:::-;;:::i;28909:60::-;;;;;;;;;;;;;;;;32200:126;;;;;;;;;;;;;:::i;9966:201::-;;;;;;;;;;-1:-1:-1;9966:201:0;;;;;:::i;:::-;;:::i;28632:30::-;;;;;;;;;;-1:-1:-1;28632:30:0;;;;;;16253:100;16307:13;16340:5;16333:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16253:100;:::o;31566:246::-;8953:13;:11;:13::i;:::-;31641:9:::1;:38:::0;;;31715:2:::1;31698:19:::0;::::1;;31690:68;;;;-1:-1:-1::0;;;31690:68:0::1;;;;;;;:::i;:::-;;;;;;;;;31774:30;::::0;31790:13;;31774:30:::1;::::0;;;::::1;31566:246:::0;:::o;18613:201::-;18696:4;7698:10;18752:32;7698:10;18768:7;18777:6;18752:8;:32::i;:::-;18802:4;18795:11;;;18613:201;;;;;:::o;32334:195::-;8953:13;:11;:13::i;:::-;-1:-1:-1;;;;;32448:20:0;::::1;;::::0;;;:11:::1;:20;::::0;;;;;:30;;-1:-1:-1;;32448:30:0::1;::::0;::::1;;::::0;;::::1;::::0;;;32494:27;;32448:30;;:20;32494:27:::1;::::0;::::1;32334:195:::0;;:::o;30493:297::-;8953:13;:11;:13::i;:::-;-1:-1:-1;;;;;30596:27:0;::::1;30574:113;;;::::0;-1:-1:-1;;;30574:113:0;;4724:2:1;30574:113:0::1;::::0;::::1;4706:21:1::0;4763:2;4743:18;;;4736:30;4802:34;4782:18;;;4775:62;-1:-1:-1;;;4853:18:1;;;4846:34;4897:19;;30574:113:0::1;4522:400:1::0;30574:113:0::1;30698:15;:31:::0;;-1:-1:-1;;;;;;30698:31:0::1;;-1:-1:-1::0;;;;;30698:31:0;::::1;::::0;;::::1;::::0;;;::::1;::::0;;;30745:37:::1;::::0;::::1;::::0;-1:-1:-1;;30745:37:0::1;30493:297:::0;:::o;19394:261::-;19491:4;7698:10;19549:38;19565:4;7698:10;19580:6;19549:15;:38::i;:::-;19598:27;19608:4;19614:2;19618:6;19598:9;:27::i;:::-;19643:4;19636:11;;;19394:261;;;;;;:::o;20064:238::-;20152:4;7698:10;20208:64;7698:10;20224:7;20261:10;20233:25;7698:10;20224:7;20233:9;:25::i;:::-;:38;;;;:::i;:::-;20208:8;:64::i;30798:311::-;8953:13;:11;:13::i;:::-;-1:-1:-1;;;;;30905:29:0;::::1;30883:117;;;::::0;-1:-1:-1;;;30883:117:0;;5391:2:1;30883:117:0::1;::::0;::::1;5373:21:1::0;5430:2;5410:18;;;5403:30;5469:34;5449:18;;;5442:62;-1:-1:-1;;;5520:18:1;;;5513:36;5566:19;;30883:117:0::1;5189:402:1::0;30883:117:0::1;31011:15;:33:::0;;-1:-1:-1;;;;;;31011:33:0::1;;-1:-1:-1::0;;;;;31011:33:0;::::1;::::0;;::::1;::::0;;;::::1;::::0;;;31060:41:::1;::::0;::::1;::::0;-1:-1:-1;;31060:41:0::1;30798:311:::0;:::o;9708:103::-;8953:13;:11;:13::i;:::-;9773:30:::1;9800:1;9773:18;:30::i;:::-;9708:103::o:0;32535:128::-;8953:13;:11;:13::i;:::-;32588:20:::1;:26:::0;;-1:-1:-1;;32588:26:0::1;::::0;;32609:5:::1;32625:13;:30:::0;32535:128::o;32791:308::-;8953:13;:11;:13::i;:::-;32892:1:::1;32878:11;:15;32870:62;;;::::0;-1:-1:-1;;;32870:62:0;;5798:2:1;32870:62:0::1;::::0;::::1;5780:21:1::0;5837:2;5817:18;;;5810:30;5876:34;5856:18;;;5849:62;-1:-1:-1;;;5927:18:1;;;5920:32;5969:19;;32870:62:0::1;5596:398:1::0;32870:62:0::1;32962:3;32947:11;:18;;32939:75;;;::::0;-1:-1:-1;;;32939:75:0;;6201:2:1;32939:75:0::1;::::0;::::1;6183:21:1::0;6240:2;6220:18;;;6213:30;6279:34;6259:18;;;6252:62;-1:-1:-1;;;6330:18:1;;;6323:42;6382:19;;32939:75:0::1;5999:408:1::0;32939:75:0::1;33021:19;:33:::0;;;33066:29:::1;::::0;1967:25:1;;;33066:29:0::1;::::0;1955:2:1;1940:18;33066:29:0::1;;;;;;;32791:308:::0;:::o;31115:192::-;8953:13;:11;:13::i;:::-;31179:14:::1;::::0;;;::::1;;;31178:15;31170:54;;;::::0;-1:-1:-1;;;31170:54:0;;6614:2:1;31170:54:0::1;::::0;::::1;6596:21:1::0;6653:2;6633:18;;;6626:30;6692:28;6672:18;;;6665:56;6738:18;;31170:54:0::1;6412:350:1::0;31170:54:0::1;31235:14;:21:::0;;-1:-1:-1;;31235:21:0::1;::::0;::::1;::::0;;31287:12:::1;31267:17;:32:::0;31115:192::o;16472:104::-;16528:13;16561:7;16554:14;;;;;:::i;31315:243::-;8953:13;:11;:13::i;:::-;31389:8:::1;:37:::0;;;31462:2:::1;31445:19:::0;::::1;;31437:68;;;;-1:-1:-1::0;;;31437:68:0::1;;;;;;;:::i;:::-;31521:29;::::0;31536:13;;31521:29:::1;::::0;;;::::1;31315:243:::0;:::o;20805:436::-;20898:4;7698:10;20898:4;20981:25;7698:10;20998:7;20981:9;:25::i;:::-;20954:52;;21045:15;21025:16;:35;;21017:85;;;;-1:-1:-1;;;21017:85:0;;6969:2:1;21017:85:0;;;6951:21:1;7008:2;6988:18;;;6981:30;7047:34;7027:18;;;7020:62;-1:-1:-1;;;7098:18:1;;;7091:35;7143:19;;21017:85:0;6767:401:1;21017:85:0;21138:60;21147:5;21154:7;21182:15;21163:16;:34;21138:8;:60::i;:::-;-1:-1:-1;21229:4:0;;20805:436;-1:-1:-1;;;;20805:436:0:o;17886:193::-;17965:4;7698:10;18021:28;7698:10;18038:2;18042:6;18021:9;:28::i;31820:372::-;8953:13;:11;:13::i;:::-;31936:1:::1;31923:10;:14;:57;;;;-1:-1:-1::0;31976:4:0::1;31956:16;28448:20;31971:1;31956:16;:::i;:::-;31955:25;;;;:::i;:::-;31941:10;:39;;31923:57;31901:185;;;::::0;-1:-1:-1;;;31901:185:0;;7770:2:1;31901:185:0::1;::::0;::::1;7752:21:1::0;7809:2;7789:18;;;7782:30;7848:34;7828:18;;;7821:62;7919:34;7899:18;;;7892:62;-1:-1:-1;;;7970:19:1;;;7963:45;8025:19;;31901:185:0::1;7568:482:1::0;31901:185:0::1;32097:18;:31:::0;;;32144:40:::1;::::0;32118:10;;32144:40:::1;::::0;;;::::1;31820:372:::0;:::o;18142:151::-;-1:-1:-1;;;;;18258:18:0;;;18231:7;18258:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;18142:151::o;32200:126::-;8953:13;:11;:13::i;:::-;32281:21:::1;::::0;::::1;;32280:38;;32314:4;32280:38;;;32306:5;32280:38;32256:21;:62:::0;;-1:-1:-1;;32256:62:0::1;::::0;::::1;;::::0;;;::::1;::::0;;32200:126::o;9966:201::-;8953:13;:11;:13::i;:::-;-1:-1:-1;;;;;10055:22:0;::::1;10047:73;;;::::0;-1:-1:-1;;;10047:73:0;;8257:2:1;10047:73:0::1;::::0;::::1;8239:21:1::0;8296:2;8276:18;;;8269:30;8335:34;8315:18;;;8308:62;-1:-1:-1;;;8386:18:1;;;8379:36;8432:19;;10047:73:0::1;8055:402:1::0;10047:73:0::1;10131:28;10150:8;10131:18;:28::i;:::-;9966:201:::0;:::o;9232:132::-;9140:6;;-1:-1:-1;;;;;9140:6:0;7698:10;9296:23;9288:68;;;;-1:-1:-1;;;9288:68:0;;8664:2:1;9288:68:0;;;8646:21:1;;;8683:18;;;8676:30;8742:34;8722:18;;;8715:62;8794:18;;9288:68:0;8462:356:1;24798:346:0;-1:-1:-1;;;;;24900:19:0;;24892:68;;;;-1:-1:-1;;;24892:68:0;;9025:2:1;24892:68:0;;;9007:21:1;9064:2;9044:18;;;9037:30;9103:34;9083:18;;;9076:62;-1:-1:-1;;;9154:18:1;;;9147:34;9198:19;;24892:68:0;8823:400:1;24892:68:0;-1:-1:-1;;;;;24979:21:0;;24971:68;;;;-1:-1:-1;;;24971:68:0;;9430:2:1;24971:68:0;;;9412:21:1;9469:2;9449:18;;;9442:30;9508:34;9488:18;;;9481:62;-1:-1:-1;;;9559:18:1;;;9552:32;9601:19;;24971:68:0;9228:398:1;24971:68:0;-1:-1:-1;;;;;25052:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;25104:32;;1967:25:1;;;25104:32:0;;1940:18:1;25104:32:0;;;;;;;24798:346;;;:::o;25435:419::-;25536:24;25563:25;25573:5;25580:7;25563:9;:25::i;:::-;25536:52;;-1:-1:-1;;25603:16:0;:37;25599:248;;25685:6;25665:16;:26;;25657:68;;;;-1:-1:-1;;;25657:68:0;;9833:2:1;25657:68:0;;;9815:21:1;9872:2;9852:18;;;9845:30;9911:31;9891:18;;;9884:59;9960:18;;25657:68:0;9631:353:1;25657:68:0;25769:51;25778:5;25785:7;25813:6;25794:16;:25;25769:8;:51::i;:::-;25525:329;25435:419;;;:::o;34583:1520::-;34705:20;;;;34701:307;;;34757:11;-1:-1:-1;;;;;34742:27:0;:3;-1:-1:-1;;;;;34742:27:0;;;:58;;;;;34788:11;-1:-1:-1;;;;;34773:27:0;:3;-1:-1:-1;;;;;34773:27:0;;;34742:58;34738:263;;;34854:9;34825:39;;;;:28;:39;;;;;;34867:12;-1:-1:-1;34817:103:0;;;;-1:-1:-1;;;34817:103:0;;10191:2:1;34817:103:0;;;10173:21:1;10230:2;10210:18;;;10203:30;10269:34;10249:18;;;10242:62;-1:-1:-1;;;10320:18:1;;;10313:34;10364:19;;34817:103:0;9989:400:1;34817:103:0;34964:9;34935:39;;;;:28;:39;;;;;34977:12;34935:54;;34738:263;-1:-1:-1;;;;;35027:19:0;;35019:58;;;;-1:-1:-1;;;35019:58:0;;10596:2:1;35019:58:0;;;10578:21:1;10635:2;10615:18;;;10608:30;10674:28;10654:18;;;10647:56;10720:18;;35019:58:0;10394:350:1;35019:58:0;-1:-1:-1;;;;;35092:17:0;;35084:54;;;;-1:-1:-1;;;35084:54:0;;10951:2:1;35084:54:0;;;10933:21:1;10990:2;10970:18;;;10963:30;11029:26;11009:18;;;11002:54;11073:18;;35084:54:0;10749:348:1;35084:54:0;35163:1;35153:7;:11;35145:65;;;;-1:-1:-1;;;35145:65:0;;11304:2:1;35145:65:0;;;11286:21:1;11343:2;11323:18;;;11316:30;11382:34;11362:18;;;11355:62;-1:-1:-1;;;11433:18:1;;;11426:39;11482:19;;35145:65:0;11102:405:1;35145:65:0;35323:23;35386:3;35364:19;;28448:20;35349:34;;;;:::i;:::-;:40;;;;:::i;:::-;-1:-1:-1;;;;;35471:18:0;;;;;;:11;:18;;;;;;35323:66;;-1:-1:-1;35471:18:0;;35470:19;:40;;;;-1:-1:-1;;;;;;35494:16:0;;;;;;:11;:16;;;;;;;;35493:17;35470:40;:61;;;;-1:-1:-1;;;;;;35514:17:0;;;;35470:61;:85;;;;-1:-1:-1;;;;;;35535:20:0;;35550:4;35535:20;;35470:85;:107;;;;;35566:11;-1:-1:-1;;;;;35559:18:0;:3;-1:-1:-1;;;;;35559:18:0;;;35470:107;35466:217;;;35626:15;35615:7;35598:14;35608:3;-1:-1:-1;;;;;17654:18:0;17627:7;17654:18;;;;;;;;;;;;17553:127;35598:14;:24;;;;:::i;:::-;:43;;35590:85;;;;-1:-1:-1;;;35590:85:0;;11714:2:1;35590:85:0;;;11696:21:1;11753:2;11733:18;;;11726:30;11792:31;11772:18;;;11765:59;11841:18;;35590:85:0;11512:353:1;35590:85:0;35691:18;35712:29;35721:5;35728:3;35733:7;35712:8;:29::i;:::-;35793:18;;35783:4;35750:12;17654:18;;;;;;;;;;;;-1:-1:-1;;;;;35823:18:0;;;;:11;:18;;;;;;;35691:50;;-1:-1:-1;;35765:46:0;;35823:18;;35822:19;:40;;;;-1:-1:-1;;;;;;35846:16:0;;;;;;:11;:16;;;;;;;;35845:17;35822:40;35818:236;;;35883:14;;;;;;;35875:45;;;;-1:-1:-1;;;35875:45:0;;12072:2:1;35875:45:0;;;12054:21:1;12111:2;12091:18;;;12084:30;-1:-1:-1;;;12130:18:1;;;12123:48;12188:18;;35875:45:0;11870:342:1;35875:45:0;35950:3;-1:-1:-1;;;;;35935:18:0;:11;-1:-1:-1;;;;;35935:18:0;;:43;;;;-1:-1:-1;35957:21:0;;;;35935:43;:54;;;;;35982:7;35935:54;:69;;;;-1:-1:-1;35994:10:0;;;;;;;35993:11;35935:69;35931:116;;;36021:14;:12;:14::i;:::-;36060:39;36076:5;36083:3;36088:10;36060:15;:39::i;:::-;34691:1412;;;34583:1520;;;:::o;10327:191::-;10420:6;;;-1:-1:-1;;;;;10437:17:0;;;-1:-1:-1;;;;;;10437:17:0;;;;;;;10470:40;;10420:6;;;10437:17;10420:6;;10470:40;;10401:16;;10470:40;10390:128;10327:191;:::o;33245:1334::-;-1:-1:-1;;;;;33384:18:0;;33360:7;33384:18;;;:11;:18;;;;;;;;;:38;;-1:-1:-1;;;;;;33406:16:0;;;;;;:11;:16;;;;;;;;33384:38;33380:85;;;-1:-1:-1;33446:7:0;33439:14;;33380:85;33496:13;:26;-1:-1:-1;;;;;33546:11:0;33539:18;;;;;;33535:175;;-1:-1:-1;33585:9:0;:22;33535:175;;;33638:11;-1:-1:-1;;;;;33629:20:0;:5;-1:-1:-1;;;;;33629:20:0;;33625:85;;-1:-1:-1;33677:8:0;:21;33625:85;33781:17;;:21;;33801:1;33781:21;:::i;:::-;33765:12;:37;33761:485;;33831:17;;:21;;33851:1;33831:21;:::i;:::-;33815:12;:37;33811:432;;-1:-1:-1;33876:1:0;33811:432;;;33911:17;;:21;;33931:1;33911:21;:::i;:::-;33895:12;:37;33891:352;;-1:-1:-1;33956:2:0;33891:352;;;33992:17;;:21;;34012:1;33992:21;:::i;:::-;33976:12;:37;33972:271;;-1:-1:-1;34037:2:0;33972:271;;;34073:17;;:21;;34093:1;34073:21;:::i;:::-;34057:12;:37;34053:190;;-1:-1:-1;34118:2:0;34053:190;;;34154:17;;34138:12;:33;34134:109;;-1:-1:-1;34196:2:0;34134:109;;;-1:-1:-1;34234:1:0;34134:109;34267:11;-1:-1:-1;;;;;34260:18:0;:3;-1:-1:-1;;;;;34260:18:0;;;:41;;;;;34290:11;-1:-1:-1;;;;;34281:20:0;:5;-1:-1:-1;;;;;34281:20:0;;;34260:41;34256:111;;;-1:-1:-1;34327:13:0;:26;34256:111;34379:11;34409:12;;34405:134;;34467:3;34445:18;34455:8;34445:7;:18;:::i;:::-;34444:26;;;;:::i;:::-;34438:32;;34485:42;34501:5;34516:4;34523:3;34485:15;:42::i;:::-;34557:13;34567:3;34557:7;:13;:::i;:::-;34549:22;33245:1334;-1:-1:-1;;;;;;33245:1334:0:o;36111:538::-;36155:10;:17;;-1:-1:-1;;36155:17:0;;;;;36221:4;-1:-1:-1;17654:18:0;;;;;;;;;;;36183:44;;36243:9;36256:1;36243:14;36239:53;;36274:7;36111:538::o;36239:53::-;36330:4;17627:7;17654:18;;;;;;;;;;;36302:35;;:9;:35::i;:::-;36366:15;;36348:12;;36366:15;;;-1:-1:-1;;;;;36366:15:0;36418:1;36394:23;:21;36416:1;36394:23;:::i;:::-;:25;;;;:::i;:::-;36366:58;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;36455:17:0;;:56;;36347:77;;-1:-1:-1;36436:13:0;;-1:-1:-1;;;;;36455:17:0;;;;36485:21;;36436:13;36455:56;36436:13;36455:56;36485:21;36455:17;:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36435:76;;;36532:7;36524:37;;;;-1:-1:-1;;;36524:37:0;;12762:2:1;36524:37:0;;;12744:21:1;12801:2;12781:18;;;12774:30;-1:-1:-1;;;12820:18:1;;;12813:46;12876:18;;36524:37:0;12560:340:1;36524:37:0;36580:8;36572:38;;;;-1:-1:-1;;;36572:38:0;;12762:2:1;36572:38:0;;;12744:21:1;12801:2;12781:18;;;12774:30;-1:-1:-1;;;12820:18:1;;;12813:46;12876:18;;36572:38:0;12560:340:1;36572:38:0;-1:-1:-1;;36623:10:0;:18;;-1:-1:-1;;36623:18:0;;;-1:-1:-1;36111:538:0:o;21711:806::-;-1:-1:-1;;;;;21808:18:0;;21800:68;;;;-1:-1:-1;;;21800:68:0;;13107:2:1;21800:68:0;;;13089:21:1;13146:2;13126:18;;;13119:30;13185:34;13165:18;;;13158:62;-1:-1:-1;;;13236:18:1;;;13229:35;13281:19;;21800:68:0;12905:401:1;21800:68:0;-1:-1:-1;;;;;21887:16:0;;21879:64;;;;-1:-1:-1;;;21879:64:0;;13513:2:1;21879:64:0;;;13495:21:1;13552:2;13532:18;;;13525:30;13591:34;13571:18;;;13564:62;-1:-1:-1;;;13642:18:1;;;13635:33;13685:19;;21879:64:0;13311:399:1;21879:64:0;-1:-1:-1;;;;;22029:15:0;;22007:19;22029:15;;;;;;;;;;;22063:21;;;;22055:72;;;;-1:-1:-1;;;22055:72:0;;13917:2:1;22055:72:0;;;13899:21:1;13956:2;13936:18;;;13929:30;13995:34;13975:18;;;13968:62;-1:-1:-1;;;14046:18:1;;;14039:36;14092:19;;22055:72:0;13715:402:1;22055:72:0;-1:-1:-1;;;;;22163:15:0;;;:9;:15;;;;;;;;;;;22181:20;;;22163:38;;22381:13;;;;;;;;;;:23;;;;;;22433:26;;1967:25:1;;;22381:13:0;;22433:26;;1940:18:1;22433:26:0;;;;;;;22472:37;26454:91;36657:447;36737:16;;;36751:1;36737:16;;;;;;;;36713:21;;36737:16;;;;;;;;;;-1:-1:-1;36737:16:0;36713:40;;36782:4;36764;36769:1;36764:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;36764:23:0;;;-1:-1:-1;;;;;36764:23:0;;;;;36808:13;-1:-1:-1;;;;;36808:18:0;;:20;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;36798:4;36803:1;36798:7;;;;;;;;:::i;:::-;;;;;;:30;-1:-1:-1;;;;;36798:30:0;;;-1:-1:-1;;;;;36798:30:0;;;;;36839:56;36856:4;36871:13;36887:7;36839:8;:56::i;:::-;36906:190;;-1:-1:-1;;;36906:190:0;;-1:-1:-1;;;;;36906:13:0;:64;;;;:190;;36985:7;;37007:1;;37023:4;;37050;;37070:15;;36906:190;;;:::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:180::-;626:6;679:2;667:9;658:7;654:23;650:32;647:52;;;695:1;692;685:12;647:52;-1:-1:-1;718:23:1;;567:180;-1:-1:-1;567:180:1:o;752:131::-;-1:-1:-1;;;;;827:31:1;;817:42;;807:70;;873:1;870;863:12;888:315;956:6;964;1017:2;1005:9;996:7;992:23;988:32;985:52;;;1033:1;1030;1023:12;985:52;1072:9;1059:23;1091:31;1116:5;1091:31;:::i;:::-;1141:5;1193:2;1178:18;;;;1165:32;;-1:-1:-1;;;888:315:1:o;1400:416::-;1465:6;1473;1526:2;1514:9;1505:7;1501:23;1497:32;1494:52;;;1542:1;1539;1532:12;1494:52;1581:9;1568:23;1600:31;1625:5;1600:31;:::i;:::-;1650:5;-1:-1:-1;1707:2:1;1692:18;;1679:32;1749:15;;1742:23;1730:36;;1720:64;;1780:1;1777;1770:12;1720:64;1803:7;1793:17;;;1400:416;;;;;:::o;2003:247::-;2062:6;2115:2;2103:9;2094:7;2090:23;2086:32;2083:52;;;2131:1;2128;2121:12;2083:52;2170:9;2157:23;2189:31;2214:5;2189:31;:::i;2255:456::-;2332:6;2340;2348;2401:2;2389:9;2380:7;2376:23;2372:32;2369:52;;;2417:1;2414;2407:12;2369:52;2456:9;2443:23;2475:31;2500:5;2475:31;:::i;:::-;2525:5;-1:-1:-1;2582:2:1;2567:18;;2554:32;2595:33;2554:32;2595:33;:::i;:::-;2255:456;;2647:7;;-1:-1:-1;;;2701:2:1;2686:18;;;;2673:32;;2255:456::o;3339:388::-;3407:6;3415;3468:2;3456:9;3447:7;3443:23;3439:32;3436:52;;;3484:1;3481;3474:12;3436:52;3523:9;3510:23;3542:31;3567:5;3542:31;:::i;:::-;3592:5;-1:-1:-1;3649:2:1;3634:18;;3621:32;3662:33;3621:32;3662:33;:::i;3732:380::-;3811:1;3807:12;;;;3854;;;3875:61;;3929:4;3921:6;3917:17;3907:27;;3875:61;3982:2;3974:6;3971:14;3951:18;3948:38;3945:161;;4028:10;4023:3;4019:20;4016:1;4009:31;4063:4;4060:1;4053:15;4091:4;4088:1;4081:15;3945:161;;3732:380;;;:::o;4117:400::-;4319:2;4301:21;;;4358:2;4338:18;;;4331:30;4397:34;4392:2;4377:18;;4370:62;-1:-1:-1;;;4463:2:1;4448:18;;4441:34;4507:3;4492:19;;4117:400::o;4927:127::-;4988:10;4983:3;4979:20;4976:1;4969:31;5019:4;5016:1;5009:15;5043:4;5040:1;5033:15;5059:125;5124:9;;;5145:10;;;5142:36;;;5158:18;;:::i;7173:168::-;7246:9;;;7277;;7294:15;;;7288:22;;7274:37;7264:71;;7315:18;;:::i;7346:217::-;7386:1;7412;7402:132;;7456:10;7451:3;7447:20;7444:1;7437:31;7491:4;7488:1;7481:15;7519:4;7516:1;7509:15;7402:132;-1:-1:-1;7548:9:1;;7346:217::o;12217:128::-;12284:9;;;12305:11;;;12302:37;;;12319:18;;:::i;14254:127::-;14315:10;14310:3;14306:20;14303:1;14296:31;14346:4;14343:1;14336:15;14370:4;14367:1;14360:15;14386:251;14456:6;14509:2;14497:9;14488:7;14484:23;14480:32;14477:52;;;14525:1;14522;14515:12;14477:52;14557:9;14551:16;14576:31;14601:5;14576:31;:::i;14642:980::-;14904:4;14952:3;14941:9;14937:19;14983:6;14972:9;14965:25;15009:2;15047:6;15042:2;15031:9;15027:18;15020:34;15090:3;15085:2;15074:9;15070:18;15063:31;15114:6;15149;15143:13;15180:6;15172;15165:22;15218:3;15207:9;15203:19;15196:26;;15257:2;15249:6;15245:15;15231:29;;15278:1;15288:195;15302:6;15299:1;15296:13;15288:195;;;15367:13;;-1:-1:-1;;;;;15363:39:1;15351:52;;15458:15;;;;15423:12;;;;15399:1;15317:9;15288:195;;;-1:-1:-1;;;;;;;15539:32:1;;;;15534:2;15519:18;;15512:60;-1:-1:-1;;;15603:3:1;15588:19;15581:35;15500:3;14642:980;-1:-1:-1;;;14642:980:1:o
Swarm Source
ipfs://a7b525f0c6ebd53ee6d5de8f70deb4b79dfc56e48d3eeecf2d0a5f1a999efc86
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.