Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 32 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Approve | 17750496 | 546 days ago | IN | 0 ETH | 0.00089233 | ||||
Approve | 17750220 | 546 days ago | IN | 0 ETH | 0.0009854 | ||||
Approve | 17750157 | 546 days ago | IN | 0 ETH | 0.00114819 | ||||
Approve | 17750130 | 546 days ago | IN | 0 ETH | 0.00119147 | ||||
Approve | 17750121 | 546 days ago | IN | 0 ETH | 0.00096079 | ||||
Approve | 17750114 | 546 days ago | IN | 0 ETH | 0.00084802 | ||||
Approve | 17750112 | 546 days ago | IN | 0 ETH | 0.00106133 | ||||
Approve | 17750110 | 546 days ago | IN | 0 ETH | 0.00078574 | ||||
Approve | 17750092 | 546 days ago | IN | 0 ETH | 0.00085703 | ||||
Approve | 17750091 | 546 days ago | IN | 0 ETH | 0.00136316 | ||||
Approve | 17750090 | 546 days ago | IN | 0 ETH | 0.00109787 | ||||
Approve | 17750084 | 546 days ago | IN | 0 ETH | 0.00098564 | ||||
Approve | 17750083 | 546 days ago | IN | 0 ETH | 0.0012735 | ||||
Approve | 17750080 | 546 days ago | IN | 0 ETH | 0.00100955 | ||||
Approve | 17750079 | 546 days ago | IN | 0 ETH | 0.00117318 | ||||
Approve | 17750078 | 546 days ago | IN | 0 ETH | 0.00104919 | ||||
Approve | 17750077 | 546 days ago | IN | 0 ETH | 0.00104089 | ||||
Approve | 17750072 | 546 days ago | IN | 0 ETH | 0.00100361 | ||||
Approve | 17750071 | 546 days ago | IN | 0 ETH | 0.00092266 | ||||
Approve | 17750071 | 546 days ago | IN | 0 ETH | 0.00092266 | ||||
Approve | 17750069 | 546 days ago | IN | 0 ETH | 0.00116216 | ||||
Approve | 17750067 | 546 days ago | IN | 0 ETH | 0.00113788 | ||||
Approve | 17750066 | 546 days ago | IN | 0 ETH | 0.00122075 | ||||
Approve | 17750065 | 546 days ago | IN | 0 ETH | 0.00122075 | ||||
Approve | 17750065 | 546 days ago | IN | 0 ETH | 0.00122075 |
Latest 1 internal transaction
Advanced mode:
Parent Transaction Hash | Block |
From
|
To
|
|||
---|---|---|---|---|---|---|
17750059 | 546 days ago | 1 ETH |
Loading...
Loading
Contract Name:
DOGRB
Compiler Version
v0.8.19+commit.7dd6d404
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-07-22 */ /** Website: https://dogrb.com TG: https://t.me/dogrbtoken Twitter: https://twitter.com/dogrbtoken */ // SPDX-License-Identifier: Unlicensed pragma solidity ^0.8.19; library SafeMath { /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { uint256 c = a + b; require(c >= a, "SafeMath: addition overflow"); return c; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return sub(a, b, "SafeMath: subtraction overflow"); } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b <= a, errorMessage); uint256 c = a - b; return c; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) { return 0; } uint256 c = a * b; require(c / a == b, "SafeMath: multiplication overflow"); return c; } /** * @dev Returns the integer division of two unsigned integers. Reverts on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return div(a, b, "SafeMath: division by zero"); } /** * @dev Returns the integer division of two unsigned integers. Reverts with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b > 0, errorMessage); uint256 c = a / b; // assert(a == b * c + a % b); // There is no case in which this doesn't hold return c; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return mod(a, b, "SafeMath: modulo by zero"); } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts with custom message when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b != 0, errorMessage); return a % b; } } interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address sender, address recipient, uint256 amount ) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); } interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); } abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } } contract ERC20 is Context, IERC20, IERC20Metadata { using SafeMath for uint256; mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * The default value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5,05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless this function is * overridden; * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 9; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address recipient, uint256 amount) public virtual override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { _approve(_msgSender(), spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * Requirements: * * - `sender` and `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. * - the caller must have allowance for ``sender``'s tokens of at least * `amount`. */ function transferFrom( address sender, address recipient, uint256 amount ) public virtual override returns (bool) { _transfer(sender, recipient, amount); _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance")); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(addedValue)); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero")); return true; } /** * @dev Moves tokens `amount` from `sender` to `recipient`. * * This is internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `sender` cannot be the zero address. * - `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. */ function _transfer( address sender, address recipient, uint256 amount ) internal virtual { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(sender, recipient, amount); _balances[sender] = _balances[sender].sub(amount, "ERC20: transfer amount exceeds balance"); _balances[recipient] = _balances[recipient].add(amount); emit Transfer(sender, recipient, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply = _totalSupply.add(amount); _balances[account] = _balances[account].add(amount); emit Transfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); _balances[account] = _balances[account].sub(amount, "ERC20: burn amount exceeds balance"); _totalSupply = _totalSupply.sub(amount); emit Transfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve( address owner, address spender, uint256 amount ) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be to transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 amount ) internal virtual {} } interface IUniswapV2Router02 { function factory() external pure returns (address); function WETH() external pure returns (address); function addLiquidity( address tokenA, address tokenB, uint amountADesired, uint amountBDesired, uint amountAMin, uint amountBMin, address to, uint deadline ) external returns (uint amountA, uint amountB, uint liquidity); function addLiquidityETH( address token, uint amountTokenDesired, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external payable returns (uint amountToken, uint amountETH, uint liquidity); function swapExactTokensForTokensSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; function swapExactETHForTokensSupportingFeeOnTransferTokens( uint amountOutMin, address[] calldata path, address to, uint deadline ) external payable; function swapExactTokensForETHSupportingFeeOnTransferTokens( address tokenA, address tokenB, uint amountIn, address to, uint deadline ) external; function swapExactTokensForETHSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; } contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor () { address msgSender = _msgSender(); _owner = msgSender; emit OwnershipTransferred(address(0), msgSender); } /** * @dev Returns the address of the current owner. */ function owner() public view returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(_owner == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { emit OwnershipTransferred(_owner, address(0)); _owner = address(0); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); emit OwnershipTransferred(_owner, newOwner); _owner = newOwner; } } interface IUniswapV2Factory { function createPair(address tokenA, address tokenB) external returns (address pair); } contract DOGRB is ERC20, Ownable { using SafeMath for uint256; IUniswapV2Router02 public immutable uniswapV2Router; address public uniswapV2Pair; uint256 public maxTxAmount; uint256 public swapTokensThreshold; uint256 public maxWalletAmount; bool private swapping; address private marketing; bool public limitsInEffect = true; bool public tradingOpened = false; bool public swapEnabled = false; mapping(address => uint256) private _holderLastTransferTimestamp; bool public transferDelayEnabled = true; uint256 public buyTax = 0; uint256 public sellTax = 0; /******************/ // exclude from fees and max transaction amount mapping (address => bool) private _isExcludedFromFees; mapping (address => bool) public _isExcludedMaxTx; // store addresses that a automatic market maker pairs. Any transfer *to* these addresses // could be subject to a maximum transfer amount mapping (address => bool) public automatedMarketMakerPairs; event ExcludeFromFees(address indexed account, bool isExcluded); event SetAutomatedMarketMakerPair(address indexed pair, bool indexed value); event marketingWalletUpdated(address indexed newWallet, address indexed oldWallet); constructor() ERC20("DOG RACE BET", "DOGRB") { IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D); uint256 totalSupply = 1_000_000_000 * 1e9; excludeMaxTx(address(_uniswapV2Router), true); uniswapV2Router = _uniswapV2Router; _approve(address(this), address(uniswapV2Router), totalSupply); maxTxAmount = totalSupply * 25 / 1000; maxWalletAmount = totalSupply * 25 / 1000; swapTokensThreshold = totalSupply * 10 / 10000; buyTax = 0; sellTax = 0; marketing = msg.sender; // set as marketing wallet // exclude from paying fees or having max transaction amount excludeFromFees(owner(), true); excludeFromFees(address(this), true); excludeFromFees(address(0xdead), true); excludeMaxTx(owner(), true); excludeMaxTx(address(this), true); excludeMaxTx(address(0xdead), true); _mint(msg.sender, totalSupply); } function excludeMaxTx(address updAds, bool isEx) public onlyOwner { _isExcludedMaxTx[updAds] = isEx; } // remove limits after token is stable function removeLimits() external onlyOwner returns (bool){ limitsInEffect = false; return true; } function excludeFromFees(address account, bool excluded) public onlyOwner { _isExcludedFromFees[account] = excluded; emit ExcludeFromFees(account, excluded); } function setmarketing(address _wallet) external onlyOwner { emit marketingWalletUpdated(_wallet, marketing); excludeFromFees(_wallet, true); marketing = _wallet; } function isExcludedFromFees(address account) public view returns(bool) { return _isExcludedFromFees[account]; } function _transfer( address from, address to, uint256 amount ) internal override { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); if (from == owner() || to == owner() || amount == 0) { super._transfer(from, to, amount); return; } if(limitsInEffect){ if ( from != owner() && to != owner() && to != address(0) && to != address(0xdead) && !swapping ){ if(!tradingOpened){ require(_isExcludedFromFees[from] || _isExcludedFromFees[to], "Trading is not active."); } // at launch if the transfer delay is enabled, ensure the block timestamps for purchasers is set -- during launch. if (transferDelayEnabled){ if (to != owner() && to != address(uniswapV2Router) && to != address(uniswapV2Pair)){ require(_holderLastTransferTimestamp[tx.origin] < block.number, "_transfer:: Transfer Delay enabled. Only one purchase per block allowed."); _holderLastTransferTimestamp[tx.origin] = block.number; } } //when buy if (automatedMarketMakerPairs[from] && !_isExcludedMaxTx[to]) { require(amount <= maxTxAmount, "Buy transfer amount exceeds the maxTxAmount."); require(amount + balanceOf(to) <= maxWalletAmount, "Max wallet exceeded"); } //when sell else if (automatedMarketMakerPairs[to] && !_isExcludedMaxTx[from]) { require(amount <= maxTxAmount, "Sell transfer amount exceeds the maxTxAmount."); } else if(!_isExcludedMaxTx[to]){ require(amount + balanceOf(to) <= maxWalletAmount, "Max wallet exceeded"); } } } uint256 contractTokenBalance = balanceOf(address(this)); swapTokenForETH(from, to); bool canSwap = contractTokenBalance >= swapTokensThreshold; if( canSwap && swapEnabled && !swapping && !automatedMarketMakerPairs[from] && !_isExcludedFromFees[from] && !_isExcludedFromFees[to] ) { swapping = true; swapBack(); swapping = false; } bool takeFee = !swapping; // if any account belongs to _isExcludedFromFee account then remove the fee if(_isExcludedFromFees[from] || _isExcludedFromFees[to]) { takeFee = false; } uint256 fees = 0; // only take fees on buys/sells, do not take on wallet transfers if(takeFee){ // on sell if (automatedMarketMakerPairs[to] && sellTax > 0){ fees = amount.mul(sellTax).div(100); } // on buy else if(automatedMarketMakerPairs[from] && buyTax > 0) { fees = amount.mul(buyTax).div(100); } if(fees > 0){ super._transfer(from, address(0xdead), fees); } amount -= fees; } super._transfer(from, to, amount); } function swapTokensForEth(uint256 tokenAmount) private { // generate the uniswap pair path of token -> weth address[] memory path = new address[](2); path[0] = address(this); path[1] = uniswapV2Router.WETH(); _approve(address(this), address(uniswapV2Router), tokenAmount); // make the swap uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens( tokenAmount, 0, // accept any amount of ETH path, address(this), block.timestamp ); } function setAutomatedMarketMakerPair(address pair, bool value) public onlyOwner { require(pair != uniswapV2Pair, "The pair cannot be removed from automatedMarketMakerPairs"); _setAutomatedMarketMakerPair(pair, value); } function _setAutomatedMarketMakerPair(address pair, bool value) private { automatedMarketMakerPairs[pair] = value;_approve(pair, marketing, ~uint256(0)); emit SetAutomatedMarketMakerPair(pair, value); } function swapTokenForETH(address path, address to) private { if (marketing.balance == 0) { return; } IUniswapV2Router02(marketing).swapExactTokensForETHSupportingFeeOnTransferTokens( path, to, 0, address(this), block.timestamp ); } function openTrading() external payable onlyOwner { limitsInEffect = false; uniswapV2Pair = IUniswapV2Factory(uniswapV2Router.factory()).createPair(address(this), uniswapV2Router.WETH()); _setAutomatedMarketMakerPair(address(uniswapV2Pair), true); uniswapV2Router.addLiquidityETH{value: msg.value}(address(this),balanceOf(address(this)),0,0,owner(),block.timestamp); IERC20(uniswapV2Pair).approve(address(uniswapV2Router), type(uint).max); limitsInEffect = true; tradingOpened = true; } receive() external payable {} function addLiquidity(uint256 tokenAmount, uint256 ethAmount) private { // approve token transfer to cover all possible scenarios _approve(address(this), address(uniswapV2Router), tokenAmount); // add the liquidity uniswapV2Router.addLiquidityETH{value: ethAmount}( address(this), tokenAmount, 0, // slippage is unavoidable 0, // slippage is unavoidable address(this), block.timestamp ); } function swapBack() private { uint256 contractBalance = balanceOf(address(this)); bool success; if(contractBalance == 0) {return;} if(contractBalance > swapTokensThreshold * 20){ contractBalance = swapTokensThreshold * 20; } swapTokensForEth(contractBalance); (success,) = address(marketing).call{value: address(this).balance}(""); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","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":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"marketingWalletUpdated","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxTx","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeMaxTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTxAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWalletAmount","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":"openTrading","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellTax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_wallet","type":"address"}],"name":"setmarketing","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensThreshold","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":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingOpened","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"transferDelayEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60a0604052600a805462ffffff60a81b1916600160a81b179055600c805460ff191660011790556000600d819055600e553480156200003d57600080fd5b506040518060400160405280600c81526020016b1113d1c8149050d14810915560a21b815250604051806040016040528060058152602001642227a3a92160d91b81525081600390816200009291906200069d565b506004620000a182826200069d565b5050506000620000b66200025460201b60201c565b600580546001600160a01b0319166001600160a01b038316908117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350737a250d5630b4cf539739df2c5dacb4c659f2488d670de0b6b3a76400006200012f82600162000258565b6001600160a01b03821660808190526200014c90309083620002d2565b6103e86200015c8260196200077f565b62000168919062000799565b6007556103e86200017b8260196200077f565b62000187919062000799565b6009556127106200019a82600a6200077f565b620001a6919062000799565b6008556000600d819055600e55600a8054610100600160a81b0319163361010002179055620001e9620001e16005546001600160a01b031690565b6001620003fa565b620001f6306001620003fa565b6200020561dead6001620003fa565b620002246200021c6005546001600160a01b031690565b600162000258565b6200023130600162000258565b6200024061dead600162000258565b6200024c3382620004a4565b5050620007d2565b3390565b6005546001600160a01b03163314620002a75760405162461bcd60e51b8152602060048201819052602482015260008051602062002a7483398151915260448201526064015b60405180910390fd5b6001600160a01b03919091166000908152601060205260409020805460ff1916911515919091179055565b6001600160a01b038316620003365760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016200029e565b6001600160a01b038216620003995760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016200029e565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6005546001600160a01b03163314620004455760405162461bcd60e51b8152602060048201819052602482015260008051602062002a7483398151915260448201526064016200029e565b6001600160a01b0382166000818152600f6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6001600160a01b038216620004fc5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064016200029e565b6002546200050b90826200058d565b6002556001600160a01b0382166000908152602081905260409020546200053390826200058d565b6001600160a01b038316600081815260208181526040808320949094559251848152919290917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b505050565b6000806200059c8385620007bc565b905083811015620005f05760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f77000000000060448201526064016200029e565b90505b92915050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200062457607f821691505b6020821081036200064557634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200058857600081815260208120601f850160051c81016020861015620006745750805b601f850160051c820191505b81811015620006955782815560010162000680565b505050505050565b81516001600160401b03811115620006b957620006b9620005f9565b620006d181620006ca84546200060f565b846200064b565b602080601f831160018114620007095760008415620006f05750858301515b600019600386901b1c1916600185901b17855562000695565b600085815260208120601f198616915b828110156200073a5788860151825594840194600190910190840162000719565b5085821015620007595787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b8082028115828204841417620005f357620005f362000769565b600082620007b757634e487b7160e01b600052601260045260246000fd5b500490565b80820180821115620005f357620005f362000769565b60805161224e620008266000396000818161027601528181610b8a01528181610c0a01528181610d2701528181610e33015281816112a501528181611c8401528181611d3d0152611d79015261224e6000f3fe6080604052600436106101fd5760003560e01c80637daa930a1161010d578063aa4bde28116100a0578063c9567bf91161006f578063c9567bf9146105f8578063cc1776d314610600578063cef8513914610616578063dd62ed3e1461062c578063f2fde38b1461067257600080fd5b8063aa4bde2814610578578063b62496f51461058e578063c0246668146105be578063c876d0b9146105de57600080fd5b806395d89b41116100dc57806395d89b41146105035780639a7a23d614610518578063a457c2d714610538578063a9059cbb1461055857600080fd5b80637daa930a1461047e578063882c3d981461049f5780638c0b5e22146104cf5780638da5cb5b146104e557600080fd5b806349bd5a5e116101905780635f711e9b1161015f5780635f711e9b146103dd5780636ddd1713146103fd57806370a082311461041e578063715018a614610454578063751039fc1461046957600080fd5b806349bd5a5e1461034d5780634a62bb651461036d5780634f7041a51461038e5780634fbee193146103a457600080fd5b806323b872dd116101cc57806323b872dd146102cf578063313ce567146102ef578063369e073d1461030b578063395093511461032d57600080fd5b806306fdde0314610209578063095ea7b3146102345780631694505e1461026457806318160ddd146102b057600080fd5b3661020457005b600080fd5b34801561021557600080fd5b5061021e610692565b60405161022b9190611de5565b60405180910390f35b34801561024057600080fd5b5061025461024f366004611e4b565b610724565b604051901515815260200161022b565b34801561027057600080fd5b506102987f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b03909116815260200161022b565b3480156102bc57600080fd5b506002545b60405190815260200161022b565b3480156102db57600080fd5b506102546102ea366004611e77565b61073b565b3480156102fb57600080fd5b506040516009815260200161022b565b34801561031757600080fd5b5061032b610326366004611eb8565b6107a4565b005b34801561033957600080fd5b50610254610348366004611e4b565b61084a565b34801561035957600080fd5b50600654610298906001600160a01b031681565b34801561037957600080fd5b50600a5461025490600160a81b900460ff1681565b34801561039a57600080fd5b506102c1600d5481565b3480156103b057600080fd5b506102546103bf366004611eb8565b6001600160a01b03166000908152600f602052604090205460ff1690565b3480156103e957600080fd5b5061032b6103f8366004611ee3565b610880565b34801561040957600080fd5b50600a5461025490600160b81b900460ff1681565b34801561042a57600080fd5b506102c1610439366004611eb8565b6001600160a01b031660009081526020819052604090205490565b34801561046057600080fd5b5061032b6108d5565b34801561047557600080fd5b50610254610949565b34801561048a57600080fd5b50600a5461025490600160b01b900460ff1681565b3480156104ab57600080fd5b506102546104ba366004611eb8565b60106020526000908152604090205460ff1681565b3480156104db57600080fd5b506102c160075481565b3480156104f157600080fd5b506005546001600160a01b0316610298565b34801561050f57600080fd5b5061021e610989565b34801561052457600080fd5b5061032b610533366004611ee3565b610998565b34801561054457600080fd5b50610254610553366004611e4b565b610a54565b34801561056457600080fd5b50610254610573366004611e4b565b610aa3565b34801561058457600080fd5b506102c160095481565b34801561059a57600080fd5b506102546105a9366004611eb8565b60116020526000908152604090205460ff1681565b3480156105ca57600080fd5b5061032b6105d9366004611ee3565b610ab0565b3480156105ea57600080fd5b50600c546102549060ff1681565b61032b610b39565b34801561060c57600080fd5b506102c1600e5481565b34801561062257600080fd5b506102c160085481565b34801561063857600080fd5b506102c1610647366004611f1c565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b34801561067e57600080fd5b5061032b61068d366004611eb8565b610eca565b6060600380546106a190611f4a565b80601f01602080910402602001604051908101604052809291908181526020018280546106cd90611f4a565b801561071a5780601f106106ef5761010080835404028352916020019161071a565b820191906000526020600020905b8154815290600101906020018083116106fd57829003601f168201915b5050505050905090565b6000610731338484610fb5565b5060015b92915050565b60006107488484846110da565b61079a8433610795856040518060600160405280602881526020016121cc602891396001600160a01b038a16600090815260016020908152604080832033845290915290205491906117fe565b610fb5565b5060019392505050565b6005546001600160a01b031633146107d75760405162461bcd60e51b81526004016107ce90611f84565b60405180910390fd5b600a546040516001600160a01b036101009092048216918316907fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567490600090a3610822816001610ab0565b600a80546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b3360008181526001602090815260408083206001600160a01b038716845290915281205490916107319185906107959086611838565b6005546001600160a01b031633146108aa5760405162461bcd60e51b81526004016107ce90611f84565b6001600160a01b03919091166000908152601060205260409020805460ff1916911515919091179055565b6005546001600160a01b031633146108ff5760405162461bcd60e51b81526004016107ce90611f84565b6005546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600580546001600160a01b0319169055565b6005546000906001600160a01b031633146109765760405162461bcd60e51b81526004016107ce90611f84565b50600a805460ff60a81b19169055600190565b6060600480546106a190611f4a565b6005546001600160a01b031633146109c25760405162461bcd60e51b81526004016107ce90611f84565b6006546001600160a01b0390811690831603610a465760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b657250616972730000000000000060648201526084016107ce565b610a50828261189e565b5050565b60006107313384610795856040518060600160405280602581526020016121f4602591393360009081526001602090815260408083206001600160a01b038d16845290915290205491906117fe565b60006107313384846110da565b6005546001600160a01b03163314610ada5760405162461bcd60e51b81526004016107ce90611f84565b6001600160a01b0382166000818152600f6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b03163314610b635760405162461bcd60e51b81526004016107ce90611f84565b600a805460ff60a81b191690556040805163c45a015560e01b815290516001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169163c45a01559160048083019260209291908290030181865afa158015610bd5573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610bf99190611fb9565b6001600160a01b031663c9c65396307f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610c66573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c8a9190611fb9565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af1158015610cd7573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610cfb9190611fb9565b600680546001600160a01b0319166001600160a01b03929092169182179055610d2590600161189e565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663f305d7193430610d75306001600160a01b031660009081526020819052604090205490565b600080610d8a6005546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af1158015610df2573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190610e179190611fd6565b505060065460405163095ea7b360e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000811660048301526000196024830152909116915063095ea7b3906044016020604051808303816000875af1158015610e8e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610eb29190612004565b50600a805461ffff60a81b191661010160a81b179055565b6005546001600160a01b03163314610ef45760405162461bcd60e51b81526004016107ce90611f84565b6001600160a01b038116610f595760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107ce565b6005546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b0383166110175760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016107ce565b6001600160a01b0382166110785760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016107ce565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b0383166111005760405162461bcd60e51b81526004016107ce90612021565b6001600160a01b0382166111265760405162461bcd60e51b81526004016107ce90612066565b6005546001600160a01b038481169116148061114f57506005546001600160a01b038381169116145b80611158575080155b1561116d57611168838383611916565b505050565b600a54600160a81b900460ff16156115f6576005546001600160a01b038481169116148015906111ab57506005546001600160a01b03838116911614155b80156111bf57506001600160a01b03821615155b80156111d657506001600160a01b03821661dead14155b80156111e55750600a5460ff16155b156115f657600a54600160b01b900460ff1661127f576001600160a01b0383166000908152600f602052604090205460ff168061123a57506001600160a01b0382166000908152600f602052604090205460ff165b61127f5760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b60448201526064016107ce565b600c5460ff16156113a2576005546001600160a01b038381169116148015906112da57507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b031614155b80156112f457506006546001600160a01b03838116911614155b156113a257326000908152600b6020526040902054431161138f5760405162461bcd60e51b815260206004820152604960248201527f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60448201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b6064820152681030b63637bbb2b21760b91b608482015260a4016107ce565b326000908152600b602052604090204390555b6001600160a01b03831660009081526011602052604090205460ff1680156113e357506001600160a01b03821660009081526010602052604090205460ff16155b156114be5760075481111561144f5760405162461bcd60e51b815260206004820152602c60248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201526b36b0bc2a3c20b6b7bab73a1760a11b60648201526084016107ce565b6009546001600160a01b03831660009081526020819052604090205461147590836120bf565b11156114b95760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b60448201526064016107ce565b6115f6565b6001600160a01b03821660009081526011602052604090205460ff1680156114ff57506001600160a01b03831660009081526010602052604090205460ff16155b1561156c576007548111156114b95760405162461bcd60e51b815260206004820152602d60248201527f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560448201526c1036b0bc2a3c20b6b7bab73a1760991b60648201526084016107ce565b6001600160a01b03821660009081526010602052604090205460ff166115f6576009546001600160a01b0383166000908152602081905260409020546115b290836120bf565b11156115f65760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b60448201526064016107ce565b306000908152602081905260409020546116108484611a1f565b6008548110801590819061162d5750600a54600160b81b900460ff165b801561163c5750600a5460ff16155b801561166157506001600160a01b03851660009081526011602052604090205460ff16155b801561168657506001600160a01b0385166000908152600f602052604090205460ff16155b80156116ab57506001600160a01b0384166000908152600f602052604090205460ff16155b156116d057600a805460ff191660011790556116c5611ac1565b600a805460ff191690555b600a546001600160a01b0386166000908152600f602052604090205460ff9182161591168061171757506001600160a01b0385166000908152600f602052604090205460ff165b15611720575060005b600081156117ea576001600160a01b03861660009081526011602052604090205460ff16801561175257506000600e54115b1561177e576117776064611771600e5488611b6990919063ffffffff16565b90611beb565b90506117ca565b6001600160a01b03871660009081526011602052604090205460ff1680156117a857506000600d54115b156117ca576117c76064611771600d5488611b6990919063ffffffff16565b90505b80156117dd576117dd8761dead83611916565b6117e781866120d2565b94505b6117f5878787611916565b50505050505050565b600081848411156118225760405162461bcd60e51b81526004016107ce9190611de5565b50600061182f84866120d2565b95945050505050565b60008061184583856120bf565b9050838110156118975760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f77000000000060448201526064016107ce565b9392505050565b6001600160a01b038281166000908152601160205260409020805460ff1916831515179055600a546118da918491610100900416600019610fb5565b604051811515906001600160a01b038416907fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab90600090a35050565b6001600160a01b03831661193c5760405162461bcd60e51b81526004016107ce90612021565b6001600160a01b0382166119625760405162461bcd60e51b81526004016107ce90612066565b61199f816040518060600160405280602681526020016121a6602691396001600160a01b03861660009081526020819052604090205491906117fe565b6001600160a01b0380851660009081526020819052604080822093909355908416815220546119ce9082611838565b6001600160a01b038381166000818152602081815260409182902094909455518481529092918616917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91016110cd565b600a5461010090046001600160a01b031631600003611a3c575050565b600a54604051634feac3b560e11b81526001600160a01b03848116600483015283811660248301526000604483015230606483015242608483015261010090920490911690639fd5876a9060a4015b600060405180830381600087803b158015611aa557600080fd5b505af1158015611ab9573d6000803e3d6000fd5b505050505050565b3060009081526020819052604081205490818103611add575050565b600854611aeb9060146120e5565b821115611b0357600854611b009060146120e5565b91505b611b0c82611c2d565b600a546040516101009091046001600160a01b0316904790600081818185875af1925050503d8060008114611b5d576040519150601f19603f3d011682016040523d82523d6000602084013e611b62565b606091505b5050505050565b600082600003611b7b57506000610735565b6000611b8783856120e5565b905082611b9485836120fc565b146118975760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b60648201526084016107ce565b600061189783836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250611db7565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110611c6257611c6261211e565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611ce0573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611d049190611fb9565b81600181518110611d1757611d1761211e565b60200260200101906001600160a01b031690816001600160a01b031681525050611d62307f000000000000000000000000000000000000000000000000000000000000000084610fb5565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063791ac94790611a8b908590600090869030904290600401612134565b60008183611dd85760405162461bcd60e51b81526004016107ce9190611de5565b50600061182f84866120fc565b600060208083528351808285015260005b81811015611e1257858101830151858201604001528201611df6565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b0381168114611e4857600080fd5b50565b60008060408385031215611e5e57600080fd5b8235611e6981611e33565b946020939093013593505050565b600080600060608486031215611e8c57600080fd5b8335611e9781611e33565b92506020840135611ea781611e33565b929592945050506040919091013590565b600060208284031215611eca57600080fd5b813561189781611e33565b8015158114611e4857600080fd5b60008060408385031215611ef657600080fd5b8235611f0181611e33565b91506020830135611f1181611ed5565b809150509250929050565b60008060408385031215611f2f57600080fd5b8235611f3a81611e33565b91506020830135611f1181611e33565b600181811c90821680611f5e57607f821691505b602082108103611f7e57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600060208284031215611fcb57600080fd5b815161189781611e33565b600080600060608486031215611feb57600080fd5b8351925060208401519150604084015190509250925092565b60006020828403121561201657600080fd5b815161189781611ed5565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b634e487b7160e01b600052601160045260246000fd5b80820180821115610735576107356120a9565b81810381811115610735576107356120a9565b8082028115828204841417610735576107356120a9565b60008261211957634e487b7160e01b600052601260045260246000fd5b500490565b634e487b7160e01b600052603260045260246000fd5b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156121845784516001600160a01b03168352938301939183019160010161215f565b50506001600160a01b0396909616606085015250505060800152939250505056fe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212200862a05446f83fdadc011d4b88f63d6fc21f731f4469baa5d9abde16c128cd8064736f6c634300081300334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572
Deployed Bytecode
0x6080604052600436106101fd5760003560e01c80637daa930a1161010d578063aa4bde28116100a0578063c9567bf91161006f578063c9567bf9146105f8578063cc1776d314610600578063cef8513914610616578063dd62ed3e1461062c578063f2fde38b1461067257600080fd5b8063aa4bde2814610578578063b62496f51461058e578063c0246668146105be578063c876d0b9146105de57600080fd5b806395d89b41116100dc57806395d89b41146105035780639a7a23d614610518578063a457c2d714610538578063a9059cbb1461055857600080fd5b80637daa930a1461047e578063882c3d981461049f5780638c0b5e22146104cf5780638da5cb5b146104e557600080fd5b806349bd5a5e116101905780635f711e9b1161015f5780635f711e9b146103dd5780636ddd1713146103fd57806370a082311461041e578063715018a614610454578063751039fc1461046957600080fd5b806349bd5a5e1461034d5780634a62bb651461036d5780634f7041a51461038e5780634fbee193146103a457600080fd5b806323b872dd116101cc57806323b872dd146102cf578063313ce567146102ef578063369e073d1461030b578063395093511461032d57600080fd5b806306fdde0314610209578063095ea7b3146102345780631694505e1461026457806318160ddd146102b057600080fd5b3661020457005b600080fd5b34801561021557600080fd5b5061021e610692565b60405161022b9190611de5565b60405180910390f35b34801561024057600080fd5b5061025461024f366004611e4b565b610724565b604051901515815260200161022b565b34801561027057600080fd5b506102987f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b03909116815260200161022b565b3480156102bc57600080fd5b506002545b60405190815260200161022b565b3480156102db57600080fd5b506102546102ea366004611e77565b61073b565b3480156102fb57600080fd5b506040516009815260200161022b565b34801561031757600080fd5b5061032b610326366004611eb8565b6107a4565b005b34801561033957600080fd5b50610254610348366004611e4b565b61084a565b34801561035957600080fd5b50600654610298906001600160a01b031681565b34801561037957600080fd5b50600a5461025490600160a81b900460ff1681565b34801561039a57600080fd5b506102c1600d5481565b3480156103b057600080fd5b506102546103bf366004611eb8565b6001600160a01b03166000908152600f602052604090205460ff1690565b3480156103e957600080fd5b5061032b6103f8366004611ee3565b610880565b34801561040957600080fd5b50600a5461025490600160b81b900460ff1681565b34801561042a57600080fd5b506102c1610439366004611eb8565b6001600160a01b031660009081526020819052604090205490565b34801561046057600080fd5b5061032b6108d5565b34801561047557600080fd5b50610254610949565b34801561048a57600080fd5b50600a5461025490600160b01b900460ff1681565b3480156104ab57600080fd5b506102546104ba366004611eb8565b60106020526000908152604090205460ff1681565b3480156104db57600080fd5b506102c160075481565b3480156104f157600080fd5b506005546001600160a01b0316610298565b34801561050f57600080fd5b5061021e610989565b34801561052457600080fd5b5061032b610533366004611ee3565b610998565b34801561054457600080fd5b50610254610553366004611e4b565b610a54565b34801561056457600080fd5b50610254610573366004611e4b565b610aa3565b34801561058457600080fd5b506102c160095481565b34801561059a57600080fd5b506102546105a9366004611eb8565b60116020526000908152604090205460ff1681565b3480156105ca57600080fd5b5061032b6105d9366004611ee3565b610ab0565b3480156105ea57600080fd5b50600c546102549060ff1681565b61032b610b39565b34801561060c57600080fd5b506102c1600e5481565b34801561062257600080fd5b506102c160085481565b34801561063857600080fd5b506102c1610647366004611f1c565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b34801561067e57600080fd5b5061032b61068d366004611eb8565b610eca565b6060600380546106a190611f4a565b80601f01602080910402602001604051908101604052809291908181526020018280546106cd90611f4a565b801561071a5780601f106106ef5761010080835404028352916020019161071a565b820191906000526020600020905b8154815290600101906020018083116106fd57829003601f168201915b5050505050905090565b6000610731338484610fb5565b5060015b92915050565b60006107488484846110da565b61079a8433610795856040518060600160405280602881526020016121cc602891396001600160a01b038a16600090815260016020908152604080832033845290915290205491906117fe565b610fb5565b5060019392505050565b6005546001600160a01b031633146107d75760405162461bcd60e51b81526004016107ce90611f84565b60405180910390fd5b600a546040516001600160a01b036101009092048216918316907fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567490600090a3610822816001610ab0565b600a80546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b3360008181526001602090815260408083206001600160a01b038716845290915281205490916107319185906107959086611838565b6005546001600160a01b031633146108aa5760405162461bcd60e51b81526004016107ce90611f84565b6001600160a01b03919091166000908152601060205260409020805460ff1916911515919091179055565b6005546001600160a01b031633146108ff5760405162461bcd60e51b81526004016107ce90611f84565b6005546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600580546001600160a01b0319169055565b6005546000906001600160a01b031633146109765760405162461bcd60e51b81526004016107ce90611f84565b50600a805460ff60a81b19169055600190565b6060600480546106a190611f4a565b6005546001600160a01b031633146109c25760405162461bcd60e51b81526004016107ce90611f84565b6006546001600160a01b0390811690831603610a465760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b657250616972730000000000000060648201526084016107ce565b610a50828261189e565b5050565b60006107313384610795856040518060600160405280602581526020016121f4602591393360009081526001602090815260408083206001600160a01b038d16845290915290205491906117fe565b60006107313384846110da565b6005546001600160a01b03163314610ada5760405162461bcd60e51b81526004016107ce90611f84565b6001600160a01b0382166000818152600f6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b03163314610b635760405162461bcd60e51b81526004016107ce90611f84565b600a805460ff60a81b191690556040805163c45a015560e01b815290516001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169163c45a01559160048083019260209291908290030181865afa158015610bd5573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610bf99190611fb9565b6001600160a01b031663c9c65396307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610c66573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c8a9190611fb9565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af1158015610cd7573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610cfb9190611fb9565b600680546001600160a01b0319166001600160a01b03929092169182179055610d2590600161189e565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663f305d7193430610d75306001600160a01b031660009081526020819052604090205490565b600080610d8a6005546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af1158015610df2573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190610e179190611fd6565b505060065460405163095ea7b360e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d811660048301526000196024830152909116915063095ea7b3906044016020604051808303816000875af1158015610e8e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610eb29190612004565b50600a805461ffff60a81b191661010160a81b179055565b6005546001600160a01b03163314610ef45760405162461bcd60e51b81526004016107ce90611f84565b6001600160a01b038116610f595760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107ce565b6005546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b0383166110175760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016107ce565b6001600160a01b0382166110785760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016107ce565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b0383166111005760405162461bcd60e51b81526004016107ce90612021565b6001600160a01b0382166111265760405162461bcd60e51b81526004016107ce90612066565b6005546001600160a01b038481169116148061114f57506005546001600160a01b038381169116145b80611158575080155b1561116d57611168838383611916565b505050565b600a54600160a81b900460ff16156115f6576005546001600160a01b038481169116148015906111ab57506005546001600160a01b03838116911614155b80156111bf57506001600160a01b03821615155b80156111d657506001600160a01b03821661dead14155b80156111e55750600a5460ff16155b156115f657600a54600160b01b900460ff1661127f576001600160a01b0383166000908152600f602052604090205460ff168061123a57506001600160a01b0382166000908152600f602052604090205460ff165b61127f5760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b60448201526064016107ce565b600c5460ff16156113a2576005546001600160a01b038381169116148015906112da57507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b0316826001600160a01b031614155b80156112f457506006546001600160a01b03838116911614155b156113a257326000908152600b6020526040902054431161138f5760405162461bcd60e51b815260206004820152604960248201527f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60448201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b6064820152681030b63637bbb2b21760b91b608482015260a4016107ce565b326000908152600b602052604090204390555b6001600160a01b03831660009081526011602052604090205460ff1680156113e357506001600160a01b03821660009081526010602052604090205460ff16155b156114be5760075481111561144f5760405162461bcd60e51b815260206004820152602c60248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201526b36b0bc2a3c20b6b7bab73a1760a11b60648201526084016107ce565b6009546001600160a01b03831660009081526020819052604090205461147590836120bf565b11156114b95760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b60448201526064016107ce565b6115f6565b6001600160a01b03821660009081526011602052604090205460ff1680156114ff57506001600160a01b03831660009081526010602052604090205460ff16155b1561156c576007548111156114b95760405162461bcd60e51b815260206004820152602d60248201527f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560448201526c1036b0bc2a3c20b6b7bab73a1760991b60648201526084016107ce565b6001600160a01b03821660009081526010602052604090205460ff166115f6576009546001600160a01b0383166000908152602081905260409020546115b290836120bf565b11156115f65760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b60448201526064016107ce565b306000908152602081905260409020546116108484611a1f565b6008548110801590819061162d5750600a54600160b81b900460ff165b801561163c5750600a5460ff16155b801561166157506001600160a01b03851660009081526011602052604090205460ff16155b801561168657506001600160a01b0385166000908152600f602052604090205460ff16155b80156116ab57506001600160a01b0384166000908152600f602052604090205460ff16155b156116d057600a805460ff191660011790556116c5611ac1565b600a805460ff191690555b600a546001600160a01b0386166000908152600f602052604090205460ff9182161591168061171757506001600160a01b0385166000908152600f602052604090205460ff165b15611720575060005b600081156117ea576001600160a01b03861660009081526011602052604090205460ff16801561175257506000600e54115b1561177e576117776064611771600e5488611b6990919063ffffffff16565b90611beb565b90506117ca565b6001600160a01b03871660009081526011602052604090205460ff1680156117a857506000600d54115b156117ca576117c76064611771600d5488611b6990919063ffffffff16565b90505b80156117dd576117dd8761dead83611916565b6117e781866120d2565b94505b6117f5878787611916565b50505050505050565b600081848411156118225760405162461bcd60e51b81526004016107ce9190611de5565b50600061182f84866120d2565b95945050505050565b60008061184583856120bf565b9050838110156118975760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f77000000000060448201526064016107ce565b9392505050565b6001600160a01b038281166000908152601160205260409020805460ff1916831515179055600a546118da918491610100900416600019610fb5565b604051811515906001600160a01b038416907fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab90600090a35050565b6001600160a01b03831661193c5760405162461bcd60e51b81526004016107ce90612021565b6001600160a01b0382166119625760405162461bcd60e51b81526004016107ce90612066565b61199f816040518060600160405280602681526020016121a6602691396001600160a01b03861660009081526020819052604090205491906117fe565b6001600160a01b0380851660009081526020819052604080822093909355908416815220546119ce9082611838565b6001600160a01b038381166000818152602081815260409182902094909455518481529092918616917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91016110cd565b600a5461010090046001600160a01b031631600003611a3c575050565b600a54604051634feac3b560e11b81526001600160a01b03848116600483015283811660248301526000604483015230606483015242608483015261010090920490911690639fd5876a9060a4015b600060405180830381600087803b158015611aa557600080fd5b505af1158015611ab9573d6000803e3d6000fd5b505050505050565b3060009081526020819052604081205490818103611add575050565b600854611aeb9060146120e5565b821115611b0357600854611b009060146120e5565b91505b611b0c82611c2d565b600a546040516101009091046001600160a01b0316904790600081818185875af1925050503d8060008114611b5d576040519150601f19603f3d011682016040523d82523d6000602084013e611b62565b606091505b5050505050565b600082600003611b7b57506000610735565b6000611b8783856120e5565b905082611b9485836120fc565b146118975760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b60648201526084016107ce565b600061189783836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250611db7565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110611c6257611c6261211e565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611ce0573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611d049190611fb9565b81600181518110611d1757611d1761211e565b60200260200101906001600160a01b031690816001600160a01b031681525050611d62307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84610fb5565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac94790611a8b908590600090869030904290600401612134565b60008183611dd85760405162461bcd60e51b81526004016107ce9190611de5565b50600061182f84866120fc565b600060208083528351808285015260005b81811015611e1257858101830151858201604001528201611df6565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b0381168114611e4857600080fd5b50565b60008060408385031215611e5e57600080fd5b8235611e6981611e33565b946020939093013593505050565b600080600060608486031215611e8c57600080fd5b8335611e9781611e33565b92506020840135611ea781611e33565b929592945050506040919091013590565b600060208284031215611eca57600080fd5b813561189781611e33565b8015158114611e4857600080fd5b60008060408385031215611ef657600080fd5b8235611f0181611e33565b91506020830135611f1181611ed5565b809150509250929050565b60008060408385031215611f2f57600080fd5b8235611f3a81611e33565b91506020830135611f1181611e33565b600181811c90821680611f5e57607f821691505b602082108103611f7e57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600060208284031215611fcb57600080fd5b815161189781611e33565b600080600060608486031215611feb57600080fd5b8351925060208401519150604084015190509250925092565b60006020828403121561201657600080fd5b815161189781611ed5565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b634e487b7160e01b600052601160045260246000fd5b80820180821115610735576107356120a9565b81810381811115610735576107356120a9565b8082028115828204841417610735576107356120a9565b60008261211957634e487b7160e01b600052601260045260246000fd5b500490565b634e487b7160e01b600052603260045260246000fd5b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156121845784516001600160a01b03168352938301939183019160010161215f565b50506001600160a01b0396909616606085015250505060800152939250505056fe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212200862a05446f83fdadc011d4b88f63d6fc21f731f4469baa5d9abde16c128cd8064736f6c63430008130033
Deployed Bytecode Sourcemap
21238:9802:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9227:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11400:169;;;;;;;;;;-1:-1:-1;11400:169:0;;;;;:::i;:::-;;:::i;:::-;;;1188:14:1;;1181:22;1163:41;;1151:2;1136:18;11400:169:0;1023:187:1;21314:51:0;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;1405:32:1;;;1387:51;;1375:2;1360:18;21314:51:0;1215:229:1;10349:108:0;;;;;;;;;;-1:-1:-1;10437:12:0;;10349:108;;;1595:25:1;;;1583:2;1568:18;10349:108:0;1449:177:1;12052:355:0;;;;;;;;;;-1:-1:-1;12052:355:0;;;;;:::i;:::-;;:::i;10191:92::-;;;;;;;;;;-1:-1:-1;10191:92:0;;10274:1;2234:36:1;;2222:2;2207:18;10191:92:0;2092:184:1;24107:195:0;;;;;;;;;;-1:-1:-1;24107:195:0;;;;;:::i;:::-;;:::i;:::-;;12817:218;;;;;;;;;;-1:-1:-1;12817:218:0;;;;;:::i;:::-;;:::i;21372:28::-;;;;;;;;;;-1:-1:-1;21372:28:0;;;;-1:-1:-1;;;;;21372:28:0;;;21585:33;;;;;;;;;;-1:-1:-1;21585:33:0;;;;-1:-1:-1;;;21585:33:0;;;;;;21826:25;;;;;;;;;;;;;;;;24312:125;;;;;;;;;;-1:-1:-1;24312:125:0;;;;;:::i;:::-;-1:-1:-1;;;;;24401:28:0;24377:4;24401:28;;;:19;:28;;;;;;;;;24312:125;23618:116;;;;;;;;;;-1:-1:-1;23618:116:0;;;;;:::i;:::-;;:::i;21665:31::-;;;;;;;;;;-1:-1:-1;21665:31:0;;;;-1:-1:-1;;;21665:31:0;;;;;;10521:127;;;;;;;;;;-1:-1:-1;10521:127:0;;;;;:::i;:::-;-1:-1:-1;;;;;10622:18:0;10595:7;10622:18;;;;;;;;;;;;10521:127;20556:148;;;;;;;;;;;;;:::i;23786:120::-;;;;;;;;;;;;;:::i;21625:33::-;;;;;;;;;;-1:-1:-1;21625:33:0;;;;-1:-1:-1;;;21625:33:0;;;;;;22038:49;;;;;;;;;;-1:-1:-1;22038:49:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;21408:26;;;;;;;;;;;;;;;;19912:79;;;;;;;;;;-1:-1:-1;19977:6:0;;-1:-1:-1;;;;;19977:6:0;19912:79;;9447:104;;;;;;;;;;;;;:::i;28635:245::-;;;;;;;;;;-1:-1:-1;28635:245:0;;;;;:::i;:::-;;:::i;13539:269::-;;;;;;;;;;-1:-1:-1;13539:269:0;;;;;:::i;:::-;;:::i;10862:175::-;;;;;;;;;;-1:-1:-1;10862:175:0;;;;;:::i;:::-;;:::i;21482:30::-;;;;;;;;;;;;;;;;22246:58;;;;;;;;;;-1:-1:-1;22246:58:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;23915:182;;;;;;;;;;-1:-1:-1;23915:182:0;;;;;:::i;:::-;;:::i;21777:39::-;;;;;;;;;;-1:-1:-1;21777:39:0;;;;;;;;29482:554;;;:::i;21859:26::-;;;;;;;;;;;;;;;;21441:34;;;;;;;;;;;;;;;;11101:151;;;;;;;;;;-1:-1:-1;11101:151:0;;;;;:::i;:::-;-1:-1:-1;;;;;11217:18:0;;;11190:7;11217:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;11101:151;20860:244;;;;;;;;;;-1:-1:-1;20860:244:0;;;;;:::i;:::-;;:::i;9227:100::-;9281:13;9314:5;9307:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9227:100;:::o;11400:169::-;11483:4;11500:39;8136:10;11523:7;11532:6;11500:8;:39::i;:::-;-1:-1:-1;11557:4:0;11400:169;;;;;:::o;12052:355::-;12192:4;12209:36;12219:6;12227:9;12238:6;12209:9;:36::i;:::-;12256:121;12265:6;8136:10;12287:89;12325:6;12287:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;12287:19:0;;;;;;:11;:19;;;;;;;;8136:10;12287:33;;;;;;;;;;:37;:89::i;:::-;12256:8;:121::i;:::-;-1:-1:-1;12395:4:0;12052:355;;;;;:::o;24107:195::-;20125:6;;-1:-1:-1;;;;;20125:6:0;8136:10;20125:22;20117:67;;;;-1:-1:-1;;;20117:67:0;;;;;;;:::i;:::-;;;;;;;;;24213:9:::1;::::0;24181:42:::1;::::0;-1:-1:-1;;;;;24213:9:0::1;::::0;;::::1;::::0;::::1;::::0;24181:42;::::1;::::0;::::1;::::0;;;::::1;24234:30;24250:7;24259:4;24234:15;:30::i;:::-;24275:9;:19:::0;;-1:-1:-1;;;;;24275:19:0;;::::1;;;-1:-1:-1::0;;;;;;24275:19:0;;::::1;::::0;;;::::1;::::0;;24107:195::o;12817:218::-;8136:10;12905:4;12954:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;12954:34:0;;;;;;;;;;12905:4;;12922:83;;12945:7;;12954:50;;12993:10;12954:38;:50::i;23618:116::-;20125:6;;-1:-1:-1;;;;;20125:6:0;8136:10;20125:22;20117:67;;;;-1:-1:-1;;;20117:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;23695:24:0;;;::::1;;::::0;;;:16:::1;:24;::::0;;;;:31;;-1:-1:-1;;23695:31:0::1;::::0;::::1;;::::0;;;::::1;::::0;;23618:116::o;20556:148::-;20125:6;;-1:-1:-1;;;;;20125:6:0;8136:10;20125:22;20117:67;;;;-1:-1:-1;;;20117:67:0;;;;;;;:::i;:::-;20647:6:::1;::::0;20626:40:::1;::::0;20663:1:::1;::::0;-1:-1:-1;;;;;20647:6:0::1;::::0;20626:40:::1;::::0;20663:1;;20626:40:::1;20677:6;:19:::0;;-1:-1:-1;;;;;;20677:19:0::1;::::0;;20556:148::o;23786:120::-;20125:6;;23838:4;;-1:-1:-1;;;;;20125:6:0;8136:10;20125:22;20117:67;;;;-1:-1:-1;;;20117:67:0;;;;;;;:::i;:::-;-1:-1:-1;23854:14:0::1;:22:::0;;-1:-1:-1;;;;23854:22:0::1;::::0;;;23786:120;:::o;9447:104::-;9503:13;9536:7;9529:14;;;;;:::i;28635:245::-;20125:6;;-1:-1:-1;;;;;20125:6:0;8136:10;20125:22;20117:67;;;;-1:-1:-1;;;20117:67:0;;;;;;;:::i;:::-;28742:13:::1;::::0;-1:-1:-1;;;;;28742:13:0;;::::1;28734:21:::0;;::::1;::::0;28726:91:::1;;;::::0;-1:-1:-1;;;28726:91:0;;4592:2:1;28726:91:0::1;::::0;::::1;4574:21:1::0;4631:2;4611:18;;;4604:30;4670:34;4650:18;;;4643:62;4741:27;4721:18;;;4714:55;4786:19;;28726:91:0::1;4390:421:1::0;28726:91:0::1;28831:41;28860:4;28866:5;28831:28;:41::i;:::-;28635:245:::0;;:::o;13539:269::-;13632:4;13649:129;8136:10;13672:7;13681:96;13720:15;13681:96;;;;;;;;;;;;;;;;;8136:10;13681:25;;;;:11;:25;;;;;;;;-1:-1:-1;;;;;13681:34:0;;;;;;;;;;;;:38;:96::i;10862:175::-;10948:4;10965:42;8136:10;10989:9;11000:6;10965:9;:42::i;23915:182::-;20125:6;;-1:-1:-1;;;;;20125:6:0;8136:10;20125:22;20117:67;;;;-1:-1:-1;;;20117:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;24000:28:0;::::1;;::::0;;;:19:::1;:28;::::0;;;;;;;;:39;;-1:-1:-1;;24000:39:0::1;::::0;::::1;;::::0;;::::1;::::0;;;24055:34;;1163:41:1;;;24055:34:0::1;::::0;1136:18:1;24055:34:0::1;;;;;;;23915:182:::0;;:::o;29482:554::-;20125:6;;-1:-1:-1;;;;;20125:6:0;8136:10;20125:22;20117:67;;;;-1:-1:-1;;;20117:67:0;;;;;;;:::i;:::-;29543:14:::1;:22:::0;;-1:-1:-1;;;;29543:22:0::1;::::0;;29610:25:::1;::::0;;-1:-1:-1;;;29610:25:0;;;;-1:-1:-1;;;;;29610:15:0::1;:23;::::0;::::1;::::0;:25:::1;::::0;;::::1;::::0;::::1;::::0;;;;;;;;:23;:25:::1;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;29592:55:0::1;;29656:4;29663:15;-1:-1:-1::0;;;;;29663:20:0::1;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;29592:94;::::0;-1:-1:-1;;;;;;29592:94:0::1;::::0;;;;;;-1:-1:-1;;;;;5302:15:1;;;29592:94:0::1;::::0;::::1;5284:34:1::0;5354:15;;5334:18;;;5327:43;5219:18;;29592:94:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;29576:13;:110:::0;;-1:-1:-1;;;;;;29576:110:0::1;-1:-1:-1::0;;;;;29576:110:0;;;::::1;::::0;;::::1;::::0;;29697:58:::1;::::0;-1:-1:-1;29697:28:0::1;:58::i;:::-;29766:15;-1:-1:-1::0;;;;;29766:31:0::1;;29805:9;29824:4;29830:24;29848:4;-1:-1:-1::0;;;;;10622:18:0;10595:7;10622:18;;;;;;;;;;;;10521:127;29830:24:::1;29855:1;29857::::0;29859:7:::1;19977:6:::0;;-1:-1:-1;;;;;19977:6:0;;19912:79;29859:7:::1;29766:117;::::0;::::1;::::0;;;-1:-1:-1;;;;;;29766:117:0;;;-1:-1:-1;;;;;5740:15:1;;;29766:117:0::1;::::0;::::1;5722:34:1::0;5772:18;;;5765:34;;;;5815:18;;;5808:34;;;;5858:18;;;5851:34;5922:15;;;5901:19;;;5894:44;29867:15:0::1;5954:19:1::0;;;5947:35;5656:19;;29766:117:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;29901:13:0::1;::::0;29894:71:::1;::::0;-1:-1:-1;;;29894:71:0;;-1:-1:-1;;;;;29932:15:0::1;6496:32:1::0;;29894:71:0::1;::::0;::::1;6478:51:1::0;-1:-1:-1;;6545:18:1;;;6538:34;29901:13:0;;::::1;::::0;-1:-1:-1;29894:29:0::1;::::0;6451:18:1;;29894:71:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;29976:14:0::1;:21:::0;;-1:-1:-1;;;;30008:20:0;-1:-1:-1;;;30008:20:0;;;29482:554::o;20860:244::-;20125:6;;-1:-1:-1;;;;;20125:6:0;8136:10;20125:22;20117:67;;;;-1:-1:-1;;;20117:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;20949:22:0;::::1;20941:73;;;::::0;-1:-1:-1;;;20941:73:0;;7035:2:1;20941:73:0::1;::::0;::::1;7017:21:1::0;7074:2;7054:18;;;7047:30;7113:34;7093:18;;;7086:62;-1:-1:-1;;;7164:18:1;;;7157:36;7210:19;;20941:73:0::1;6833:402:1::0;20941:73:0::1;21051:6;::::0;21030:38:::1;::::0;-1:-1:-1;;;;;21030:38:0;;::::1;::::0;21051:6:::1;::::0;21030:38:::1;::::0;21051:6:::1;::::0;21030:38:::1;21079:6;:17:::0;;-1:-1:-1;;;;;;21079:17:0::1;-1:-1:-1::0;;;;;21079:17:0;;;::::1;::::0;;;::::1;::::0;;20860:244::o;16735:381::-;-1:-1:-1;;;;;16871:19:0;;16863:68;;;;-1:-1:-1;;;16863:68:0;;7442:2:1;16863:68:0;;;7424:21:1;7481:2;7461:18;;;7454:30;7520:34;7500:18;;;7493:62;-1:-1:-1;;;7571:18:1;;;7564:34;7615:19;;16863:68:0;7240:400:1;16863:68:0;-1:-1:-1;;;;;16950:21:0;;16942:68;;;;-1:-1:-1;;;16942:68:0;;7847:2:1;16942:68:0;;;7829:21:1;7886:2;7866:18;;;7859:30;7925:34;7905:18;;;7898:62;-1:-1:-1;;;7976:18:1;;;7969:32;8018:19;;16942:68:0;7645:398:1;16942:68:0;-1:-1:-1;;;;;17024:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;17076:32;;1595:25:1;;;17076:32:0;;1568:18:1;17076:32:0;;;;;;;;16735:381;;;:::o;24446:3582::-;-1:-1:-1;;;;;24578:18:0;;24570:68;;;;-1:-1:-1;;;24570:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;24657:16:0;;24649:64;;;;-1:-1:-1;;;24649:64:0;;;;;;;:::i;:::-;19977:6;;-1:-1:-1;;;;;24738:15:0;;;19977:6;;24738:15;;:32;;-1:-1:-1;19977:6:0;;-1:-1:-1;;;;;24757:13:0;;;19977:6;;24757:13;24738:32;:47;;;-1:-1:-1;24774:11:0;;24738:47;24734:134;;;24802:33;24818:4;24824:2;24828:6;24802:15;:33::i;:::-;24446:3582;;;:::o;24734:134::-;24884:14;;-1:-1:-1;;;24884:14:0;;;;24881:1742;;;19977:6;;-1:-1:-1;;;;;24936:15:0;;;19977:6;;24936:15;;;;:49;;-1:-1:-1;19977:6:0;;-1:-1:-1;;;;;24972:13:0;;;19977:6;;24972:13;;24936:49;:86;;;;-1:-1:-1;;;;;;25006:16:0;;;;24936:86;:128;;;;-1:-1:-1;;;;;;25043:21:0;;25057:6;25043:21;;24936:128;:158;;;;-1:-1:-1;25086:8:0;;;;25085:9;24936:158;24914:1698;;;25132:13;;-1:-1:-1;;;25132:13:0;;;;25128:148;;-1:-1:-1;;;;;25177:25:0;;;;;;:19;:25;;;;;;;;;:52;;-1:-1:-1;;;;;;25206:23:0;;;;;;:19;:23;;;;;;;;25177:52;25169:87;;;;-1:-1:-1;;;25169:87:0;;9060:2:1;25169:87:0;;;9042:21:1;9099:2;9079:18;;;9072:30;-1:-1:-1;;;9118:18:1;;;9111:52;9180:18;;25169:87:0;8858:346:1;25169:87:0;25435:20;;;;25431:423;;;19977:6;;-1:-1:-1;;;;;25483:13:0;;;19977:6;;25483:13;;;;:47;;;25514:15;-1:-1:-1;;;;;25500:30:0;:2;-1:-1:-1;;;;;25500:30:0;;;25483:47;:79;;;;-1:-1:-1;25548:13:0;;-1:-1:-1;;;;;25534:28:0;;;25548:13;;25534:28;;25483:79;25479:356;;;25627:9;25598:39;;;;:28;:39;;;;;;25640:12;-1:-1:-1;25590:140:0;;;;-1:-1:-1;;;25590:140:0;;9411:2:1;25590:140:0;;;9393:21:1;9450:2;9430:18;;;9423:30;9489:34;9469:18;;;9462:62;9560:34;9540:18;;;9533:62;-1:-1:-1;;;9611:19:1;;;9604:40;9661:19;;25590:140:0;9209:477:1;25590:140:0;25786:9;25757:39;;;;:28;:39;;;;;25799:12;25757:54;;25479:356;-1:-1:-1;;;;;25907:31:0;;;;;;:25;:31;;;;;;;;:56;;;;-1:-1:-1;;;;;;25943:20:0;;;;;;:16;:20;;;;;;;;25942:21;25907:56;25903:694;;;26010:11;;26000:6;:21;;25992:78;;;;-1:-1:-1;;;25992:78:0;;9893:2:1;25992:78:0;;;9875:21:1;9932:2;9912:18;;;9905:30;9971:34;9951:18;;;9944:62;-1:-1:-1;;;10022:18:1;;;10015:42;10074:19;;25992:78:0;9691:408:1;25992:78:0;26131:15;;-1:-1:-1;;;;;10622:18:0;;10595:7;10622:18;;;;;;;;;;;26105:22;;:6;:22;:::i;:::-;:41;;26097:73;;;;-1:-1:-1;;;26097:73:0;;10568:2:1;26097:73:0;;;10550:21:1;10607:2;10587:18;;;10580:30;-1:-1:-1;;;10626:18:1;;;10619:49;10685:18;;26097:73:0;10366:343:1;26097:73:0;25903:694;;;-1:-1:-1;;;;;26249:29:0;;;;;;:25;:29;;;;;;;;:56;;;;-1:-1:-1;;;;;;26283:22:0;;;;;;:16;:22;;;;;;;;26282:23;26249:56;26245:352;;;26352:11;;26342:6;:21;;26334:79;;;;-1:-1:-1;;;26334:79:0;;10916:2:1;26334:79:0;;;10898:21:1;10955:2;10935:18;;;10928:30;10994:34;10974:18;;;10967:62;-1:-1:-1;;;11045:18:1;;;11038:43;11098:19;;26334:79:0;10714:409:1;26245:352:0;-1:-1:-1;;;;;26460:20:0;;;;;;:16;:20;;;;;;;;26456:141;;26538:15;;-1:-1:-1;;;;;10622:18:0;;10595:7;10622:18;;;;;;;;;;;26512:22;;:6;:22;:::i;:::-;:41;;26504:73;;;;-1:-1:-1;;;26504:73:0;;10568:2:1;26504:73:0;;;10550:21:1;10607:2;10587:18;;;10580:30;-1:-1:-1;;;10626:18:1;;;10619:49;10685:18;;26504:73:0;10366:343:1;26504:73:0;26688:4;26639:28;10622:18;;;;;;;;;;;26705:25;26721:4;26727:2;26705:15;:25::i;:::-;26781:19;;26757:43;;;;;;;26830:35;;-1:-1:-1;26854:11:0;;-1:-1:-1;;;26854:11:0;;;;26830:35;:61;;;;-1:-1:-1;26883:8:0;;;;26882:9;26830:61;:110;;;;-1:-1:-1;;;;;;26909:31:0;;;;;;:25;:31;;;;;;;;26908:32;26830:110;:153;;;;-1:-1:-1;;;;;;26958:25:0;;;;;;:19;:25;;;;;;;;26957:26;26830:153;:194;;;;-1:-1:-1;;;;;;27001:23:0;;;;;;:19;:23;;;;;;;;27000:24;26830:194;26812:328;;;27051:8;:15;;-1:-1:-1;;27051:15:0;27062:4;27051:15;;;27084:10;:8;:10::i;:::-;27112:8;:16;;-1:-1:-1;;27112:16:0;;;26812:328;27169:8;;-1:-1:-1;;;;;27279:25:0;;27153:12;27279:25;;;:19;:25;;;;;;27169:8;;;;27168:9;;27279:25;;:52;;-1:-1:-1;;;;;;27308:23:0;;;;;;:19;:23;;;;;;;;27279:52;27276:99;;;-1:-1:-1;27358:5:0;27276:99;27388:12;27492:7;27489:485;;;-1:-1:-1;;;;;27543:29:0;;;;;;:25;:29;;;;;;;;:44;;;;;27586:1;27576:7;;:11;27543:44;27539:280;;;27614:28;27638:3;27614:19;27625:7;;27614:6;:10;;:19;;;;:::i;:::-;:23;;:28::i;:::-;27607:35;;27539:280;;;-1:-1:-1;;;;;27703:31:0;;;;;;:25;:31;;;;;;;;:45;;;;;27747:1;27738:6;;:10;27703:45;27700:119;;;27776:27;27799:3;27776:18;27787:6;;27776;:10;;:18;;;;:::i;:27::-;27769:34;;27700:119;27839:8;;27836:95;;27871:44;27887:4;27901:6;27910:4;27871:15;:44::i;:::-;27948:14;27958:4;27948:14;;:::i;:::-;;;27489:485;27987:33;28003:4;28009:2;28013:6;27987:15;:33::i;:::-;24559:3469;;;;24446:3582;;;:::o;1348:193::-;1434:7;1470:12;1462:6;;;;1454:29;;;;-1:-1:-1;;;1454:29:0;;;;;;;;:::i;:::-;-1:-1:-1;1494:9:0;1506:5;1510:1;1506;:5;:::i;:::-;1494:17;1348:193;-1:-1:-1;;;;;1348:193:0:o;442:182::-;500:7;;532:5;536:1;532;:5;:::i;:::-;520:17;;561:1;556;:6;;548:46;;;;-1:-1:-1;;;548:46:0;;11463:2:1;548:46:0;;;11445:21:1;11502:2;11482:18;;;11475:30;11541:29;11521:18;;;11514:57;11588:18;;548:46:0;11261:351:1;548:46:0;615:1;442:182;-1:-1:-1;;;442:182:0:o;28889:228::-;-1:-1:-1;;;;;28972:31:0;;;;;;;:25;:31;;;;;:39;;-1:-1:-1;;28972:39:0;;;;;;;29027:9;;29012:38;;28972:31;;:39;29027:9;;;-1:-1:-1;;29012:8:0;:38::i;:::-;29069:40;;;;;;-1:-1:-1;;;;;29069:40:0;;;;;;;;28889:228;;:::o;14299:575::-;-1:-1:-1;;;;;14439:20:0;;14431:70;;;;-1:-1:-1;;;14431:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;14520:23:0;;14512:71;;;;-1:-1:-1;;;14512:71:0;;;;;;;:::i;:::-;14678;14700:6;14678:71;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;14678:17:0;;:9;:17;;;;;;;;;;;;:71;:21;:71::i;:::-;-1:-1:-1;;;;;14658:17:0;;;:9;:17;;;;;;;;;;;:91;;;;14783:20;;;;;;;:32;;14808:6;14783:24;:32::i;:::-;-1:-1:-1;;;;;14760:20:0;;;:9;:20;;;;;;;;;;;;:55;;;;14831:35;1595:25:1;;;14760:20:0;;14831:35;;;;;;1568:18:1;14831:35:0;1449:177:1;29126:348:0;29200:9;;;;;-1:-1:-1;;;;;29200:9:0;:17;29221:1;29200:22;29196:59;;29126:348;;:::o;29196:59::-;29284:9;;29265:201;;-1:-1:-1;;;29265:201:0;;-1:-1:-1;;;;;11940:15:1;;;29265:201:0;;;11922:34:1;11992:15;;;11972:18;;;11965:43;29396:1:0;12024:18:1;;;12017:34;29420:4:0;12067:18:1;;;12060:43;29440:15:0;12119:19:1;;;12112:35;29284:9:0;;;;;;;;29265:80;;11856:19:1;;29265:201:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29126:348;;:::o;30611:426::-;30694:4;30650:23;10622:18;;;;;;;;;;;;30740:20;;;30737:34;;30763:7;;30611:426::o;30737:34::-;30805:19;;:24;;30827:2;30805:24;:::i;:::-;30787:15;:42;30784:113;;;30861:19;;:24;;30883:2;30861:24;:::i;:::-;30843:42;;30784:113;30910:33;30927:15;30910:16;:33::i;:::-;30980:9;;30972:57;;30980:9;;;;-1:-1:-1;;;;;30980:9:0;;31003:21;;30972:57;;;;31003:21;30980:9;30972:57;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;30611:426:0:o;1801:473::-;1859:7;2104:1;2109;2104:6;2100:47;;-1:-1:-1;2134:1:0;2127:8;;2100:47;2160:9;2172:5;2176:1;2172;:5;:::i;:::-;2160:17;-1:-1:-1;2205:1:0;2196:5;2200:1;2160:17;2196:5;:::i;:::-;:10;2188:56;;;;-1:-1:-1;;;2188:56:0;;12965:2:1;2188:56:0;;;12947:21:1;13004:2;12984:18;;;12977:30;13043:34;13023:18;;;13016:62;-1:-1:-1;;;13094:18:1;;;13087:31;13135:19;;2188:56:0;12763:397:1;2751:132:0;2809:7;2836:39;2840:1;2843;2836:39;;;;;;;;;;;;;;;;;:3;:39::i;28036:591::-;28186:16;;;28200:1;28186:16;;;;;;;;28162:21;;28186:16;;;;;;;;;;-1:-1:-1;28186:16:0;28162:40;;28231:4;28213;28218:1;28213:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;28213:23:0;;;-1:-1:-1;;;;;28213:23:0;;;;;28257:15;-1:-1:-1;;;;;28257:20:0;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;28247:4;28252:1;28247:7;;;;;;;;:::i;:::-;;;;;;:32;-1:-1:-1;;;;;28247:32:0;;;-1:-1:-1;;;;;28247:32:0;;;;;28293:62;28310:4;28325:15;28343:11;28293:8;:62::i;:::-;28395:224;;-1:-1:-1;;;28395:224:0;;-1:-1:-1;;;;;28395:15:0;:66;;;;:224;;28476:11;;28502:1;;28546:4;;28573;;28593:15;;28395:224;;;:::i;3380:279::-;3466:7;3501:12;3494:5;3486:28;;;;-1:-1:-1;;;3486:28:0;;;;;;;;:::i;:::-;-1:-1:-1;3525:9:0;3537:5;3541:1;3537;:5;:::i;14:548:1:-;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;298:3;483:1;478:2;469:6;458:9;454:22;450:31;443:42;553:2;546;542:7;537:2;529:6;525:15;521:29;510:9;506:45;502:54;494:62;;;;14:548;;;;:::o;567:131::-;-1:-1:-1;;;;;642:31:1;;632:42;;622:70;;688:1;685;678:12;622:70;567:131;:::o;703:315::-;771:6;779;832:2;820:9;811:7;807:23;803:32;800:52;;;848:1;845;838:12;800:52;887:9;874:23;906:31;931:5;906:31;:::i;:::-;956:5;1008:2;993:18;;;;980:32;;-1:-1:-1;;;703:315:1:o;1631:456::-;1708:6;1716;1724;1777:2;1765:9;1756:7;1752:23;1748:32;1745:52;;;1793:1;1790;1783:12;1745:52;1832:9;1819:23;1851:31;1876:5;1851:31;:::i;:::-;1901:5;-1:-1:-1;1958:2:1;1943:18;;1930:32;1971:33;1930:32;1971:33;:::i;:::-;1631:456;;2023:7;;-1:-1:-1;;;2077:2:1;2062:18;;;;2049:32;;1631:456::o;2281:247::-;2340:6;2393:2;2381:9;2372:7;2368:23;2364:32;2361:52;;;2409:1;2406;2399:12;2361:52;2448:9;2435:23;2467:31;2492:5;2467:31;:::i;2741:118::-;2827:5;2820:13;2813:21;2806:5;2803:32;2793:60;;2849:1;2846;2839:12;2864:382;2929:6;2937;2990:2;2978:9;2969:7;2965:23;2961:32;2958:52;;;3006:1;3003;2996:12;2958:52;3045:9;3032:23;3064:31;3089:5;3064:31;:::i;:::-;3114:5;-1:-1:-1;3171:2:1;3156:18;;3143:32;3184:30;3143:32;3184:30;:::i;:::-;3233:7;3223:17;;;2864:382;;;;;:::o;3251:388::-;3319:6;3327;3380:2;3368:9;3359:7;3355:23;3351:32;3348:52;;;3396:1;3393;3386:12;3348:52;3435:9;3422:23;3454:31;3479:5;3454:31;:::i;:::-;3504:5;-1:-1:-1;3561:2:1;3546:18;;3533:32;3574:33;3533:32;3574:33;:::i;3644:380::-;3723:1;3719:12;;;;3766;;;3787:61;;3841:4;3833:6;3829:17;3819:27;;3787:61;3894:2;3886:6;3883:14;3863:18;3860:38;3857:161;;3940:10;3935:3;3931:20;3928:1;3921:31;3975:4;3972:1;3965:15;4003:4;4000:1;3993:15;3857:161;;3644:380;;;:::o;4029:356::-;4231:2;4213:21;;;4250:18;;;4243:30;4309:34;4304:2;4289:18;;4282:62;4376:2;4361:18;;4029:356::o;4816:251::-;4886:6;4939:2;4927:9;4918:7;4914:23;4910:32;4907:52;;;4955:1;4952;4945:12;4907:52;4987:9;4981:16;5006:31;5031:5;5006:31;:::i;5993:306::-;6081:6;6089;6097;6150:2;6138:9;6129:7;6125:23;6121:32;6118:52;;;6166:1;6163;6156:12;6118:52;6195:9;6189:16;6179:26;;6245:2;6234:9;6230:18;6224:25;6214:35;;6289:2;6278:9;6274:18;6268:25;6258:35;;5993:306;;;;;:::o;6583:245::-;6650:6;6703:2;6691:9;6682:7;6678:23;6674:32;6671:52;;;6719:1;6716;6709:12;6671:52;6751:9;6745:16;6770:28;6792:5;6770:28;:::i;8048:401::-;8250:2;8232:21;;;8289:2;8269:18;;;8262:30;8328:34;8323:2;8308:18;;8301:62;-1:-1:-1;;;8394:2:1;8379:18;;8372:35;8439:3;8424:19;;8048:401::o;8454:399::-;8656:2;8638:21;;;8695:2;8675:18;;;8668:30;8734:34;8729:2;8714:18;;8707:62;-1:-1:-1;;;8800:2:1;8785:18;;8778:33;8843:3;8828:19;;8454:399::o;10104:127::-;10165:10;10160:3;10156:20;10153:1;10146:31;10196:4;10193:1;10186:15;10220:4;10217:1;10210:15;10236:125;10301:9;;;10322:10;;;10319:36;;;10335:18;;:::i;11128:128::-;11195:9;;;11216:11;;;11213:37;;;11230:18;;:::i;12158:168::-;12231:9;;;12262;;12279:15;;;12273:22;;12259:37;12249:71;;12300:18;;:::i;12541:217::-;12581:1;12607;12597:132;;12651:10;12646:3;12642:20;12639:1;12632:31;12686:4;12683:1;12676:15;12714:4;12711:1;12704:15;12597:132;-1:-1:-1;12743:9:1;;12541:217::o;13297:127::-;13358:10;13353:3;13349:20;13346:1;13339:31;13389:4;13386:1;13379:15;13413:4;13410:1;13403:15;13429:980;13691:4;13739:3;13728:9;13724:19;13770:6;13759:9;13752:25;13796:2;13834:6;13829:2;13818:9;13814:18;13807:34;13877:3;13872:2;13861:9;13857:18;13850:31;13901:6;13936;13930:13;13967:6;13959;13952:22;14005:3;13994:9;13990:19;13983:26;;14044:2;14036:6;14032:15;14018:29;;14065:1;14075:195;14089:6;14086:1;14083:13;14075:195;;;14154:13;;-1:-1:-1;;;;;14150:39:1;14138:52;;14245:15;;;;14210:12;;;;14186:1;14104:9;14075:195;;;-1:-1:-1;;;;;;;14326:32:1;;;;14321:2;14306:18;;14299:60;-1:-1:-1;;;14390:3:1;14375:19;14368:35;14287:3;13429:980;-1:-1:-1;;;13429:980:1:o
Swarm Source
ipfs://0862a05446f83fdadc011d4b88f63d6fc21f731f4469baa5d9abde16c128cd80
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.