ERC-20
Overview
Max Total Supply
350,000,000 POPO
Holders
178
Total Transfers
-
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
Popo
Compiler Version
v0.8.17+commit.8df45f5f
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2024-09-01 */ // SPDX-License-Identifier: MIT /** https://x.com/MyPopoIsGood */ pragma solidity 0.8.17; pragma experimental ABIEncoderV2; // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) // pragma solidity ^0.8.0; abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol) // pragma solidity ^0.8.0; // import "../utils/Context.sol"; abstract contract Ownable is Context { address private _owner; event OwnershipTransferred( address indexed previousOwner, address indexed newOwner ); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby disabling any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require( newOwner != address(0), "Ownable: new owner is the zero XTRUMP address" ); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol) // pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an XTRUMP`owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval( address indexed owner, address indexed spender, uint256 value ); /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `from` to `to` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 amount ) external returns (bool); } // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol) // pragma solidity ^0.8.0; // import "../IERC20.sol"; /** * @dev Interface for the optional metadata functions from the ERC20 standard. _Available since v4.1._ */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); } // OpenZeppelin Contracts (last updated v4.8.0) (token/ERC20/ERC20.sol) // pragma solidity ^0.8.0; // import "./IERC20.sol"; // import "../../utils/Context.sol"; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How lly, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; uint256 public _maxlSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address to, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _transfer(owner, to, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } function approve(address spender, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _approve(owner, spender, amount); return true; } function transferFrom( address from, address to, uint256 amount ) public virtual override returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, amount); _transfer(from, to, amount); return true; } function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { address owner = _msgSender(); _approve(owner, spender, allowance(owner, spender) + addedValue); return true; } function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { address owner = _msgSender(); uint256 currentAllowance = allowance(owner, spender); require( currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero" ); unchecked { _approve(owner, spender, currentAllowance - subtractedValue); } return true; } function _transfer( address from, address to, uint256 amount ) internal virtual { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(from, to, amount); uint256 fromBalance = _balances[from]; require( fromBalance >= amount, "ERC20: transfer amount exceeds balance" ); unchecked { _balances[from] = fromBalance - amount; // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by // decrementing then incrementing. _balances[to] += amount; } emit Transfer(from, to, amount); _afterTokenTransfer(from, to, amount); } function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; unchecked { // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above. _balances[account] += amount; } emit Transfer(address(0), account, amount); _afterTokenTransfer(address(0), account, amount); } function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount XTRUMP exceeds balance"); unchecked { _balances[account] = accountBalance - amount; // Overflow not possible: amount <= accountBalance <= totalSupply. _totalSupply -= amount; } emit Transfer(account, address(0), amount); _afterTokenTransfer(account, address(0), amount); } 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); } function _spendAllowance( address owner, address spender, uint256 amount ) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { require( currentAllowance >= amount, "ERC20: insufficient allowance" ); unchecked { _approve(owner, spender, currentAllowance - amount); } } } function _beforeTokenTransfer( address from, address to, uint256 amount ) internal virtual {} function _afterTokenTransfer( address from, address to, uint256 amount ) internal virtual {} } // OpenZeppelin Contracts (last updated v4.6.0) (utils/math/SafeMath.sol) // pragma solidity ^0.8.0; library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the subtraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { return a + b; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { return a * b; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b <= a, errorMessage); return a - b; } } /** * @dev Returns the integer division of two unsigned integers, XTRUMP reverting with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * Requirements: * * - The divisor cannot be zero. */ function div( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a / b; } } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * * Requirements: * * - The divisor cannot be zero. */ function mod( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a % b; } } } // pragma solidity >=0.5.0; interface IUniswapV2Factory { event PairCreated( address indexed token0, address indexed token1, address pair, uint256 ); function feeTo() external view returns (address); function feeToSetter() external view returns (address); function getPair(address tokenA, address tokenB) external view returns (address pair); function allPairs(uint256) external view returns (address pair); function allPairsLength() external view returns (uint256); function createPair(address tokenA, address tokenB) external returns (address pair); function setFeeTo(address) external; function setFeeToSetter(address) external; } // pragma solidity >=0.6.2; interface IUniswapV2Router01 { function factory() external pure returns (address); function WETH() external pure returns (address); function addLiquidity( address tokenA, address tokenB, uint256 amountADesired, uint256 amountBDesired, uint256 amountAMin, uint256 amountBMin, address to, uint256 deadline ) external returns ( uint256 amountA, uint256 amountB, uint256 liquidity ); function addLiquidityETH( address token, uint256 amountTokenDesired, uint256 amountTokenMin, uint256 amountETHMin, address to, uint256 deadline ) external payable returns ( uint256 amountToken, uint256 amountETH, uint256 liquidity ); function removeLiquidity( address tokenA, address tokenB, uint256 liquidity, uint256 amountAMin, uint256 amountBMin, address to, uint256 deadline ) external returns (uint256 amountA, uint256 amountB); function removeLiquidityETH( address token, uint256 liquidity, uint256 amountTokenMin, uint256 amountETHMin, address to, uint256 deadline ) external returns (uint256 amountToken, uint256 amountETH); function removeLiquidityWithPermit( address tokenA, address tokenB, uint256 liquidity, uint256 amountAMin, uint256 amountBMin, address to, uint256 deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint256 amountA, uint256 amountB); function removeLiquidityETHWithPermit( address token, uint256 liquidity, uint256 amountTokenMin, uint256 amountETHMin, address to, uint256 deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint256 amountToken, uint256 amountETH); function swapExactTokensForTokens( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external returns (uint256[] memory amounts); function swapTokensForExactTokens( uint256 amountOut, uint256 amountInMax, address[] calldata path, address to, uint256 deadline ) external returns (uint256[] memory amounts); function swapExactETHForTokens( uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external payable returns (uint256[] memory amounts); function swapTokensForExactETH( uint256 amountOut, uint256 amountInMax, address[] calldata path, address to, uint256 deadline ) external returns (uint256[] memory amounts); function swapExactTokensForETH( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external returns (uint256[] memory amounts); function swapETHForExactTokens( uint256 amountOut, address[] calldata path, address to, uint256 deadline ) external payable returns (uint256[] memory amounts); function quote( uint256 amountA, uint256 reserveA, uint256 reserveB ) external pure returns (uint256 amountB); function getAmountOut( uint256 amountIn, uint256 reserveIn, uint256 reserveOut ) external pure returns (uint256 amountOut); function getAmountIn( uint256 amountOut, uint256 reserveIn, uint256 reserveOut ) external pure returns (uint256 amountIn); function getAmountsOut(uint256 amountIn, address[] calldata path) external view returns (uint256[] memory amounts); function getAmountsIn(uint256 amountOut, address[] calldata path) external view returns (uint256[] memory amounts); } contract Popo is ERC20, Ownable { using SafeMath for uint256; IUniswapV2Router02 public immutable uniswapV2Router; address public uniswapV2Pair; address public marketingWallet; address public developmentWallet; address public liquidityWallet; address public constant deadAddress = address(0xdead); bool public tradingEnabled; bool public swapEnabled; bool private _swapping; uint256 public swapTokensAtAmount; uint256 public buyTotalFees; uint256 private _buyMarketingFee; uint256 private _buyDevelopmentFee; uint256 private _buyLiquidityFee; uint256 public sellTotalFees; uint256 private _sellMarketingFee; uint256 private _sellDevelopmentFee; uint256 private _sellLiquidityFee; uint256 private _tokensForMarketing; uint256 private _tokensForDevelopment; uint256 private _tokensForLiquidity; uint256 private _previousFee; mapping (address => bool) private _isExcludedFromEnableTrad; mapping(address => bool) private _automatedMarketMakerPairs; event ExcludeFromLimits(address indexed account, bool isExcluded); event ExcludeFromFees(address indexed account, bool isExcluded); event SetAutomatedMarketMakerPair(address indexed pair, bool indexed value); event marketingWalletUpdated( address indexed newWallet, address indexed oldWallet ); event developmentWalletUpdated( address indexed newWallet, address indexed oldWallet ); event liquidityWalletUpdated( address indexed newWallet, address indexed oldWallet ); event SwapAndLiquify( uint256 tokensSwapped, uint256 ethReceived, uint256 tokensIntoLiquidity ); event TokensAirdropped(uint256 totalWallets, uint256 totalTokens); constructor() ERC20(unicode"POPO", "POPO") { uint256 totalSupply = 350000000 * (10 ** 18); uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D); _approve(address(this), address(uniswapV2Router), type(uint256).max); _buyMarketingFee = 0; _buyDevelopmentFee = 0; _buyLiquidityFee = 0; buyTotalFees = _buyMarketingFee + _buyDevelopmentFee + _buyLiquidityFee; _sellMarketingFee = 0; _sellDevelopmentFee = 0; _sellLiquidityFee = 0; sellTotalFees = _sellMarketingFee + _sellDevelopmentFee + _sellLiquidityFee; _previousFee = sellTotalFees; _isExcludedFromEnableTrad[owner()] = true; _isExcludedFromEnableTrad[address(this)] = true; _isExcludedFromEnableTrad[deadAddress] = true; uniswapV2Pair = IUniswapV2Factory(uniswapV2Router.factory()).createPair(address(this), uniswapV2Router.WETH()); _mint(owner(), totalSupply); } receive() external payable {} function openTrading() public onlyOwner { require(!tradingEnabled, "Trading already active."); tradingEnabled = true; swapEnabled = true; } function excludeFromEnobleTrading(address account, bool excluded) external onlyOwner{ _isExcludedFromEnableTrad[account] = excluded; emit ExcludeFromFees(account, excluded); } function _setAutomatedMarketMakerPair(address pair, bool value) internal { _automatedMarketMakerPairs[pair] = value; emit SetAutomatedMarketMakerPair(pair, value); } function setAutomatedMarketMakerPair(address pair, bool value) public onlyOwner { require(pair != uniswapV2Pair, "The PancakeSwap pair cannot be removed from automatedMarketMakerPairs"); _setAutomatedMarketMakerPair(pair, value); } function setAutomatedMarketMakerPair(address[] memory accounts, bool value) public onlyOwner { for (uint256 i = 0; i < accounts.length; i++) { if(accounts[i] == uniswapV2Pair) continue; _setAutomatedMarketMakerPair(accounts[i], value); } } 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"); require(tradingEnabled || _isExcludedFromEnableTrad[from] || _isExcludedFromEnableTrad[to], "Trading not yet enabled!"); if (amount == 0) { super._transfer(from, to, 0); return; } uint256 contractTokenBalance = balanceOf(address(this)); bool canSwap = contractTokenBalance >= swapTokensAtAmount; if ( canSwap && swapEnabled &&!_swapping&&_automatedMarketMakerPairs[from] && !_isExcludedFromEnableTrad[from] && !_isExcludedFromEnableTrad[to] ) { _swapping = true; _swapBack(); _swapping = false; } bool takeFee = !_swapping; if (_isExcludedFromEnableTrad[from] || _isExcludedFromEnableTrad[to]) { takeFee = false; } uint256 fees = 0; if (takeFee) { // on sell if (_automatedMarketMakerPairs[to] && sellTotalFees > 0) { fees = amount.mul(sellTotalFees).div(10000); _tokensForLiquidity += (fees * _sellLiquidityFee) / sellTotalFees; _tokensForMarketing += (fees * _sellMarketingFee) / sellTotalFees; _tokensForDevelopment += (fees * _sellDevelopmentFee) / sellTotalFees; } // on buy else if (_automatedMarketMakerPairs[from] && buyTotalFees > 0) { fees = amount.mul(buyTotalFees).div(10000); _tokensForLiquidity += (fees * _buyLiquidityFee) / buyTotalFees; _tokensForMarketing += (fees * _buyMarketingFee) / buyTotalFees; _tokensForDevelopment += (fees * _buyDevelopmentFee) / buyTotalFees; } if (fees > 0) { super._transfer(from, address(this), fees); } amount -= fees; } super._transfer(from, to, amount); sellTotalFees = _previousFee; } function _swapTokensForETH(uint256 tokenAmount) internal { 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, path, address(this), block.timestamp ); } function _addLiquidity(uint256 tokenAmount, uint256 ethAmount) internal { _approve(address(this), address(uniswapV2Router), tokenAmount); uniswapV2Router.addLiquidityETH{value: ethAmount}( address(this), tokenAmount, 0, 0, liquidityWallet, block.timestamp ); } function _swapBack() internal { uint256 contractBalance = balanceOf(address(this)); uint256 totalTokensToSwap = _tokensForLiquidity + _tokensForMarketing + _tokensForDevelopment; bool success; uint256 liquidityTokens = (contractBalance * _tokensForLiquidity) / totalTokensToSwap / 2; uint256 amountToSwapForETH = contractBalance.sub(liquidityTokens); uint256 initialETHBalance = address(this).balance; _swapTokensForETH(amountToSwapForETH); uint256 ethBalance = address(this).balance.sub(initialETHBalance); uint256 ethForMarketing = ethBalance.mul(_tokensForMarketing).div( totalTokensToSwap ); uint256 ethForDevelopment = ethBalance.mul(_tokensForDevelopment).div( totalTokensToSwap ); uint256 ethForLiquidity = ethBalance - ethForMarketing - ethForDevelopment; _tokensForLiquidity = 0; _tokensForMarketing = 0; _tokensForDevelopment = 0; if (liquidityTokens > 0 && ethForLiquidity > 0) { _addLiquidity(liquidityTokens, ethForLiquidity); emit SwapAndLiquify( amountToSwapForETH, ethForLiquidity, _tokensForLiquidity ); } (success, ) = address(developmentWallet).call{value: ethForDevelopment}(""); (success, ) = address(marketingWallet).call{ value: address(this).balance }(""); } } // pragma solidity >=0.6.2; // import './IUniswapV2Router01.sol'; interface IUniswapV2Router02 is IUniswapV2Router01 { function removeLiquidityETHSupportingFeeOnTransferTokens( address token, uint256 liquidity, uint256 amountTokenMin, uint256 amountETHMin, address to, uint256 deadline ) external returns (uint256 amountETH); function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens( address token, uint256 liquidity, uint256 amountTokenMin, uint256 amountETHMin, address to, uint256 deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint256 amountETH); function swapExactTokensForTokensSupportingFeeOnTransferTokens( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external; function swapExactETHForTokensSupportingFeeOnTransferTokens( uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external payable; function swapExactTokensForETHSupportingFeeOnTransferTokens( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external; }
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":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromLimits","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":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiquidity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"totalWallets","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"totalTokens","type":"uint256"}],"name":"TokensAirdropped","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":"developmentWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"liquidityWalletUpdated","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":[],"name":"_maxlSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deadAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"developmentWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromEnobleTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"liquidityWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"openTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellTotalFees","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":"accounts","type":"address[]"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"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
60a06040523480156200001157600080fd5b506040518060400160405280600481526020017f504f504f000000000000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f504f504f0000000000000000000000000000000000000000000000000000000081525081600490816200008f919062000b7d565b508060059081620000a1919062000b7d565b505050620000c4620000b8620004c360201b60201c565b620004cb60201b60201c565b60006b0121836204bc2ce21e0000009050737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff168152505062000152306080517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6200059160201b60201c565b6000600d819055506000600e819055506000600f81905550600f54600e54600d546200017f919062000c93565b6200018b919062000c93565b600c81905550600060118190555060006012819055506000601381905550601354601254601154620001be919062000c93565b620001ca919062000c93565b601081905550601054601781905550600160186000620001ef6200076260201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001601860003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555060016018600061dead73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555060805173ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000340573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000366919062000d38565b73ffffffffffffffffffffffffffffffffffffffff1663c9c653963060805173ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620003d0573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620003f6919062000d38565b6040518363ffffffff1660e01b81526004016200041592919062000d7b565b6020604051808303816000875af115801562000435573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200045b919062000d38565b600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620004bc620004af6200076260201b60201c565b826200078c60201b60201c565b5062000f89565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160362000603576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620005fa9062000e2f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000675576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200066c9062000ec7565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405162000755919062000efa565b60405180910390a3505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620007fe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007f59062000f67565b60405180910390fd5b6200081260008383620008f960201b60201c565b806002600082825462000826919062000c93565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620008d9919062000efa565b60405180910390a3620008f560008383620008fe60201b60201c565b5050565b505050565b505050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200098557607f821691505b6020821081036200099b576200099a6200093d565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830262000a057fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620009c6565b62000a118683620009c6565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b600062000a5e62000a5862000a528462000a29565b62000a33565b62000a29565b9050919050565b6000819050919050565b62000a7a8362000a3d565b62000a9262000a898262000a65565b848454620009d3565b825550505050565b600090565b62000aa962000a9a565b62000ab681848462000a6f565b505050565b5b8181101562000ade5762000ad260008262000a9f565b60018101905062000abc565b5050565b601f82111562000b2d5762000af781620009a1565b62000b0284620009b6565b8101602085101562000b12578190505b62000b2a62000b2185620009b6565b83018262000abb565b50505b505050565b600082821c905092915050565b600062000b526000198460080262000b32565b1980831691505092915050565b600062000b6d838362000b3f565b9150826002028217905092915050565b62000b888262000903565b67ffffffffffffffff81111562000ba45762000ba36200090e565b5b62000bb082546200096c565b62000bbd82828562000ae2565b600060209050601f83116001811462000bf5576000841562000be0578287015190505b62000bec858262000b5f565b86555062000c5c565b601f19841662000c0586620009a1565b60005b8281101562000c2f5784890151825560018201915060208501945060208101905062000c08565b8683101562000c4f578489015162000c4b601f89168262000b3f565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000ca08262000a29565b915062000cad8362000a29565b925082820190508082111562000cc85762000cc762000c64565b5b92915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000d008262000cd3565b9050919050565b62000d128162000cf3565b811462000d1e57600080fd5b50565b60008151905062000d328162000d07565b92915050565b60006020828403121562000d515762000d5062000cce565b5b600062000d618482850162000d21565b91505092915050565b62000d758162000cf3565b82525050565b600060408201905062000d92600083018562000d6a565b62000da1602083018462000d6a565b9392505050565b600082825260208201905092915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600062000e1760248362000da8565b915062000e248262000db9565b604082019050919050565b6000602082019050818103600083015262000e4a8162000e08565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600062000eaf60228362000da8565b915062000ebc8262000e51565b604082019050919050565b6000602082019050818103600083015262000ee28162000ea0565b9050919050565b62000ef48162000a29565b82525050565b600060208201905062000f11600083018462000ee9565b92915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000f4f601f8362000da8565b915062000f5c8262000f17565b602082019050919050565b6000602082019050818103600083015262000f828162000f40565b9050919050565b6080516133a762000fc8600039600081816107ec01528181611fe1015281816120c2015281816120e90152818161218501526121ac01526133a76000f3fe6080604052600436106101d15760003560e01c806375f0a874116100f7578063c04a541411610095578063d85ba06311610064578063d85ba06314610679578063dd62ed3e146106a4578063e2f45605146106e1578063f2fde38b1461070c576101d8565b8063c04a5414146105e3578063c9567bf91461060e578063d2c7219114610625578063d46980161461064e576101d8565b806395d89b41116100d157806395d89b41146105155780639a7a23d614610540578063a457c2d714610569578063a9059cbb146105a6576101d8565b806375f0a874146104945780638da5cb5b146104bf57806393ec52de146104ea576101d8565b8063313ce5671161016f5780636a486a8e1161013e5780636a486a8e146103ea5780636ddd17131461041557806370a0823114610440578063715018a61461047d576101d8565b8063313ce5671461032c578063395093511461035757806349bd5a5e146103945780634ada218b146103bf576101d8565b806318160ddd116101ab57806318160ddd14610270578063182073a41461029b57806323b872dd146102c457806327c8f83514610301576101d8565b806306fdde03146101dd578063095ea7b3146102085780631694505e14610245576101d8565b366101d857005b600080fd5b3480156101e957600080fd5b506101f2610735565b6040516101ff919061230b565b60405180910390f35b34801561021457600080fd5b5061022f600480360381019061022a91906123d5565b6107c7565b60405161023c9190612430565b60405180910390f35b34801561025157600080fd5b5061025a6107ea565b60405161026791906124aa565b60405180910390f35b34801561027c57600080fd5b5061028561080e565b60405161029291906124d4565b60405180910390f35b3480156102a757600080fd5b506102c260048036038101906102bd919061251b565b610818565b005b3480156102d057600080fd5b506102eb60048036038101906102e6919061255b565b6108c9565b6040516102f89190612430565b60405180910390f35b34801561030d57600080fd5b506103166108f8565b60405161032391906125bd565b60405180910390f35b34801561033857600080fd5b506103416108fe565b60405161034e91906125f4565b60405180910390f35b34801561036357600080fd5b5061037e600480360381019061037991906123d5565b610907565b60405161038b9190612430565b60405180910390f35b3480156103a057600080fd5b506103a961093e565b6040516103b691906125bd565b60405180910390f35b3480156103cb57600080fd5b506103d4610964565b6040516103e19190612430565b60405180910390f35b3480156103f657600080fd5b506103ff610977565b60405161040c91906124d4565b60405180910390f35b34801561042157600080fd5b5061042a61097d565b6040516104379190612430565b60405180910390f35b34801561044c57600080fd5b506104676004803603810190610462919061260f565b610990565b60405161047491906124d4565b60405180910390f35b34801561048957600080fd5b506104926109d8565b005b3480156104a057600080fd5b506104a96109ec565b6040516104b691906125bd565b60405180910390f35b3480156104cb57600080fd5b506104d4610a12565b6040516104e191906125bd565b60405180910390f35b3480156104f657600080fd5b506104ff610a3c565b60405161050c91906124d4565b60405180910390f35b34801561052157600080fd5b5061052a610a42565b604051610537919061230b565b60405180910390f35b34801561054c57600080fd5b506105676004803603810190610562919061251b565b610ad4565b005b34801561057557600080fd5b50610590600480360381019061058b91906123d5565b610b7a565b60405161059d9190612430565b60405180910390f35b3480156105b257600080fd5b506105cd60048036038101906105c891906123d5565b610bf1565b6040516105da9190612430565b60405180910390f35b3480156105ef57600080fd5b506105f8610c14565b60405161060591906125bd565b60405180910390f35b34801561061a57600080fd5b50610623610c3a565b005b34801561063157600080fd5b5061064c60048036038101906106479190612784565b610cca565b005b34801561065a57600080fd5b50610663610d8b565b60405161067091906125bd565b60405180910390f35b34801561068557600080fd5b5061068e610db1565b60405161069b91906124d4565b60405180910390f35b3480156106b057600080fd5b506106cb60048036038101906106c691906127e0565b610db7565b6040516106d891906124d4565b60405180910390f35b3480156106ed57600080fd5b506106f6610e3e565b60405161070391906124d4565b60405180910390f35b34801561071857600080fd5b50610733600480360381019061072e919061260f565b610e44565b005b6060600480546107449061284f565b80601f01602080910402602001604051908101604052809291908181526020018280546107709061284f565b80156107bd5780601f10610792576101008083540402835291602001916107bd565b820191906000526020600020905b8154815290600101906020018083116107a057829003601f168201915b5050505050905090565b6000806107d2610ec7565b90506107df818585610ecf565b600191505092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600254905090565b610820611098565b80601860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7826040516108bd9190612430565b60405180910390a25050565b6000806108d4610ec7565b90506108e1858285611116565b6108ec8585856111a2565b60019150509392505050565b61dead81565b60006012905090565b600080610912610ec7565b90506109338185856109248589610db7565b61092e91906128af565b610ecf565b600191505092915050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600a60149054906101000a900460ff1681565b60105481565b600a60159054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6109e0611098565b6109ea6000611877565b565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60035481565b606060058054610a519061284f565b80601f0160208091040260200160405190810160405280929190818152602001828054610a7d9061284f565b8015610aca5780601f10610a9f57610100808354040283529160200191610aca565b820191906000526020600020905b815481529060010190602001808311610aad57829003601f168201915b5050505050905090565b610adc611098565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610b6c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b639061297b565b60405180910390fd5b610b76828261193d565b5050565b600080610b85610ec7565b90506000610b938286610db7565b905083811015610bd8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bcf90612a0d565b60405180910390fd5b610be58286868403610ecf565b60019250505092915050565b600080610bfc610ec7565b9050610c098185856111a2565b600191505092915050565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610c42611098565b600a60149054906101000a900460ff1615610c92576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8990612a79565b60405180910390fd5b6001600a60146101000a81548160ff0219169083151502179055506001600a60156101000a81548160ff021916908315150217905550565b610cd2611098565b60005b8251811015610d8657600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16838281518110610d2a57610d29612a99565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff160315610d7357610d72838281518110610d6457610d63612a99565b5b60200260200101518361193d565b5b8080610d7e90612ac8565b915050610cd5565b505050565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600c5481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600b5481565b610e4c611098565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610ebb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eb290612b82565b60405180910390fd5b610ec481611877565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610f3e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3590612c14565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610fad576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fa490612ca6565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161108b91906124d4565b60405180910390a3505050565b6110a0610ec7565b73ffffffffffffffffffffffffffffffffffffffff166110be610a12565b73ffffffffffffffffffffffffffffffffffffffff1614611114576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110b90612d12565b60405180910390fd5b565b60006111228484610db7565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff811461119c578181101561118e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118590612d7e565b60405180910390fd5b61119b8484848403610ecf565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611211576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120890612e10565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611280576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127790612ea2565b60405180910390fd5b600a60149054906101000a900460ff16806112e45750601860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b806113385750601860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b611377576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136e90612f0e565b60405180910390fd5b600081036113905761138b838360006119de565b611872565b600061139b30610990565b90506000600b5482101590508080156113c05750600a60159054906101000a900460ff165b80156113d95750600a60169054906101000a900460ff16155b801561142e5750601960008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b80156114845750601860008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156114da5750601860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561151e576001600a60166101000a81548160ff021916908315150217905550611502611c54565b6000600a60166101000a81548160ff0219169083151502179055505b6000600a60169054906101000a900460ff16159050601860008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806115d45750601860008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156115de57600090505b6000811561185957601960008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561164157506000601054115b1561170f5761166f61271061166160105488611ef690919063ffffffff16565b611f0c90919063ffffffff16565b9050601054601354826116829190612f2e565b61168c9190612f9f565b6016600082825461169d91906128af565b92505081905550601054601154826116b59190612f2e565b6116bf9190612f9f565b601460008282546116d091906128af565b92505081905550601054601254826116e89190612f2e565b6116f29190612f9f565b6015600082825461170391906128af565b92505081905550611835565b601960008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561176a57506000600c54115b156118345761179861271061178a600c5488611ef690919063ffffffff16565b611f0c90919063ffffffff16565b9050600c54600f54826117ab9190612f2e565b6117b59190612f9f565b601660008282546117c691906128af565b92505081905550600c54600d54826117de9190612f2e565b6117e89190612f9f565b601460008282546117f991906128af565b92505081905550600c54600e54826118119190612f2e565b61181b9190612f9f565b6015600082825461182c91906128af565b925050819055505b5b600081111561184a576118498730836119de565b5b80856118569190612fd0565b94505b6118648787876119de565b601754601081905550505050505b505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80601960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611a4d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a4490612e10565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611abc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ab390612ea2565b60405180910390fd5b611ac7838383611f22565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611b4d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b4490613076565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611c3b91906124d4565b60405180910390a3611c4e848484611f27565b50505050565b6000611c5f30610990565b90506000601554601454601654611c7691906128af565b611c8091906128af565b905060008060028360165486611c969190612f2e565b611ca09190612f9f565b611caa9190612f9f565b90506000611cc18286611f2c90919063ffffffff16565b90506000479050611cd182611f42565b6000611ce68247611f2c90919063ffffffff16565b90506000611d1187611d0360145485611ef690919063ffffffff16565b611f0c90919063ffffffff16565b90506000611d3c88611d2e60155486611ef690919063ffffffff16565b611f0c90919063ffffffff16565b90506000818385611d4d9190612fd0565b611d579190612fd0565b9050600060168190555060006014819055506000601581905550600087118015611d815750600081115b15611dce57611d90878261217f565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618682601654604051611dc593929190613096565b60405180910390a15b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1682604051611e14906130fe565b60006040518083038185875af1925050503d8060008114611e51576040519150601f19603f3d011682016040523d82523d6000602084013e611e56565b606091505b505080985050600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051611ea2906130fe565b60006040518083038185875af1925050503d8060008114611edf576040519150601f19603f3d011682016040523d82523d6000602084013e611ee4565b606091505b50508098505050505050505050505050565b60008183611f049190612f2e565b905092915050565b60008183611f1a9190612f9f565b905092915050565b505050565b505050565b60008183611f3a9190612fd0565b905092915050565b6000600267ffffffffffffffff811115611f5f57611f5e612641565b5b604051908082528060200260200182016040528015611f8d5781602001602082028036833780820191505090505b5090503081600081518110611fa557611fa4612a99565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561204a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061206e9190613128565b8160018151811061208257612081612a99565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250506120e7307f000000000000000000000000000000000000000000000000000000000000000084610ecf565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b815260040161214995949392919061324e565b600060405180830381600087803b15801561216357600080fd5b505af1158015612177573d6000803e3d6000fd5b505050505050565b6121aa307f000000000000000000000000000000000000000000000000000000000000000084610ecf565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f305d719823085600080600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518863ffffffff1660e01b8152600401612231969594939291906132a8565b60606040518083038185885af115801561224f573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190612274919061331e565b5050505050565b600081519050919050565b600082825260208201905092915050565b60005b838110156122b557808201518184015260208101905061229a565b60008484015250505050565b6000601f19601f8301169050919050565b60006122dd8261227b565b6122e78185612286565b93506122f7818560208601612297565b612300816122c1565b840191505092915050565b6000602082019050818103600083015261232581846122d2565b905092915050565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061236c82612341565b9050919050565b61237c81612361565b811461238757600080fd5b50565b60008135905061239981612373565b92915050565b6000819050919050565b6123b28161239f565b81146123bd57600080fd5b50565b6000813590506123cf816123a9565b92915050565b600080604083850312156123ec576123eb612337565b5b60006123fa8582860161238a565b925050602061240b858286016123c0565b9150509250929050565b60008115159050919050565b61242a81612415565b82525050565b60006020820190506124456000830184612421565b92915050565b6000819050919050565b600061247061246b61246684612341565b61244b565b612341565b9050919050565b600061248282612455565b9050919050565b600061249482612477565b9050919050565b6124a481612489565b82525050565b60006020820190506124bf600083018461249b565b92915050565b6124ce8161239f565b82525050565b60006020820190506124e960008301846124c5565b92915050565b6124f881612415565b811461250357600080fd5b50565b600081359050612515816124ef565b92915050565b6000806040838503121561253257612531612337565b5b60006125408582860161238a565b925050602061255185828601612506565b9150509250929050565b60008060006060848603121561257457612573612337565b5b60006125828682870161238a565b93505060206125938682870161238a565b92505060406125a4868287016123c0565b9150509250925092565b6125b781612361565b82525050565b60006020820190506125d260008301846125ae565b92915050565b600060ff82169050919050565b6125ee816125d8565b82525050565b600060208201905061260960008301846125e5565b92915050565b60006020828403121561262557612624612337565b5b60006126338482850161238a565b91505092915050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612679826122c1565b810181811067ffffffffffffffff8211171561269857612697612641565b5b80604052505050565b60006126ab61232d565b90506126b78282612670565b919050565b600067ffffffffffffffff8211156126d7576126d6612641565b5b602082029050602081019050919050565b600080fd5b60006127006126fb846126bc565b6126a1565b90508083825260208201905060208402830185811115612723576127226126e8565b5b835b8181101561274c5780612738888261238a565b845260208401935050602081019050612725565b5050509392505050565b600082601f83011261276b5761276a61263c565b5b813561277b8482602086016126ed565b91505092915050565b6000806040838503121561279b5761279a612337565b5b600083013567ffffffffffffffff8111156127b9576127b861233c565b5b6127c585828601612756565b92505060206127d685828601612506565b9150509250929050565b600080604083850312156127f7576127f6612337565b5b60006128058582860161238a565b92505060206128168582860161238a565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061286757607f821691505b60208210810361287a57612879612820565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006128ba8261239f565b91506128c58361239f565b92508282019050808211156128dd576128dc612880565b5b92915050565b7f5468652050616e63616b655377617020706169722063616e6e6f74206265207260008201527f656d6f7665642066726f6d206175746f6d617465644d61726b65744d616b657260208201527f5061697273000000000000000000000000000000000000000000000000000000604082015250565b6000612965604583612286565b9150612970826128e3565b606082019050919050565b6000602082019050818103600083015261299481612958565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006129f7602583612286565b9150612a028261299b565b604082019050919050565b60006020820190508181036000830152612a26816129ea565b9050919050565b7f54726164696e6720616c7265616479206163746976652e000000000000000000600082015250565b6000612a63601783612286565b9150612a6e82612a2d565b602082019050919050565b60006020820190508181036000830152612a9281612a56565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000612ad38261239f565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203612b0557612b04612880565b5b600182019050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f205860008201527f5452554d50206164647265737300000000000000000000000000000000000000602082015250565b6000612b6c602d83612286565b9150612b7782612b10565b604082019050919050565b60006020820190508181036000830152612b9b81612b5f565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000612bfe602483612286565b9150612c0982612ba2565b604082019050919050565b60006020820190508181036000830152612c2d81612bf1565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000612c90602283612286565b9150612c9b82612c34565b604082019050919050565b60006020820190508181036000830152612cbf81612c83565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612cfc602083612286565b9150612d0782612cc6565b602082019050919050565b60006020820190508181036000830152612d2b81612cef565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000612d68601d83612286565b9150612d7382612d32565b602082019050919050565b60006020820190508181036000830152612d9781612d5b565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000612dfa602583612286565b9150612e0582612d9e565b604082019050919050565b60006020820190508181036000830152612e2981612ded565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000612e8c602383612286565b9150612e9782612e30565b604082019050919050565b60006020820190508181036000830152612ebb81612e7f565b9050919050565b7f54726164696e67206e6f742079657420656e61626c6564210000000000000000600082015250565b6000612ef8601883612286565b9150612f0382612ec2565b602082019050919050565b60006020820190508181036000830152612f2781612eeb565b9050919050565b6000612f398261239f565b9150612f448361239f565b9250828202612f528161239f565b91508282048414831517612f6957612f68612880565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000612faa8261239f565b9150612fb58361239f565b925082612fc557612fc4612f70565b5b828204905092915050565b6000612fdb8261239f565b9150612fe68361239f565b9250828203905081811115612ffe57612ffd612880565b5b92915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000613060602683612286565b915061306b82613004565b604082019050919050565b6000602082019050818103600083015261308f81613053565b9050919050565b60006060820190506130ab60008301866124c5565b6130b860208301856124c5565b6130c560408301846124c5565b949350505050565b600081905092915050565b50565b60006130e86000836130cd565b91506130f3826130d8565b600082019050919050565b6000613109826130db565b9150819050919050565b60008151905061312281612373565b92915050565b60006020828403121561313e5761313d612337565b5b600061314c84828501613113565b91505092915050565b6000819050919050565b600061317a61317561317084613155565b61244b565b61239f565b9050919050565b61318a8161315f565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6131c581612361565b82525050565b60006131d783836131bc565b60208301905092915050565b6000602082019050919050565b60006131fb82613190565b613205818561319b565b9350613210836131ac565b8060005b8381101561324157815161322888826131cb565b9750613233836131e3565b925050600181019050613214565b5085935050505092915050565b600060a08201905061326360008301886124c5565b6132706020830187613181565b818103604083015261328281866131f0565b905061329160608301856125ae565b61329e60808301846124c5565b9695505050505050565b600060c0820190506132bd60008301896125ae565b6132ca60208301886124c5565b6132d76040830187613181565b6132e46060830186613181565b6132f160808301856125ae565b6132fe60a08301846124c5565b979650505050505050565b600081519050613318816123a9565b92915050565b60008060006060848603121561333757613336612337565b5b600061334586828701613309565b935050602061335686828701613309565b925050604061336786828701613309565b915050925092509256fea26469706673582212204fc794628e81c69019f57a7fa1a1d7e2b9e8dca2711783dfc8004185e2d336d164736f6c63430008110033
Deployed Bytecode
0x6080604052600436106101d15760003560e01c806375f0a874116100f7578063c04a541411610095578063d85ba06311610064578063d85ba06314610679578063dd62ed3e146106a4578063e2f45605146106e1578063f2fde38b1461070c576101d8565b8063c04a5414146105e3578063c9567bf91461060e578063d2c7219114610625578063d46980161461064e576101d8565b806395d89b41116100d157806395d89b41146105155780639a7a23d614610540578063a457c2d714610569578063a9059cbb146105a6576101d8565b806375f0a874146104945780638da5cb5b146104bf57806393ec52de146104ea576101d8565b8063313ce5671161016f5780636a486a8e1161013e5780636a486a8e146103ea5780636ddd17131461041557806370a0823114610440578063715018a61461047d576101d8565b8063313ce5671461032c578063395093511461035757806349bd5a5e146103945780634ada218b146103bf576101d8565b806318160ddd116101ab57806318160ddd14610270578063182073a41461029b57806323b872dd146102c457806327c8f83514610301576101d8565b806306fdde03146101dd578063095ea7b3146102085780631694505e14610245576101d8565b366101d857005b600080fd5b3480156101e957600080fd5b506101f2610735565b6040516101ff919061230b565b60405180910390f35b34801561021457600080fd5b5061022f600480360381019061022a91906123d5565b6107c7565b60405161023c9190612430565b60405180910390f35b34801561025157600080fd5b5061025a6107ea565b60405161026791906124aa565b60405180910390f35b34801561027c57600080fd5b5061028561080e565b60405161029291906124d4565b60405180910390f35b3480156102a757600080fd5b506102c260048036038101906102bd919061251b565b610818565b005b3480156102d057600080fd5b506102eb60048036038101906102e6919061255b565b6108c9565b6040516102f89190612430565b60405180910390f35b34801561030d57600080fd5b506103166108f8565b60405161032391906125bd565b60405180910390f35b34801561033857600080fd5b506103416108fe565b60405161034e91906125f4565b60405180910390f35b34801561036357600080fd5b5061037e600480360381019061037991906123d5565b610907565b60405161038b9190612430565b60405180910390f35b3480156103a057600080fd5b506103a961093e565b6040516103b691906125bd565b60405180910390f35b3480156103cb57600080fd5b506103d4610964565b6040516103e19190612430565b60405180910390f35b3480156103f657600080fd5b506103ff610977565b60405161040c91906124d4565b60405180910390f35b34801561042157600080fd5b5061042a61097d565b6040516104379190612430565b60405180910390f35b34801561044c57600080fd5b506104676004803603810190610462919061260f565b610990565b60405161047491906124d4565b60405180910390f35b34801561048957600080fd5b506104926109d8565b005b3480156104a057600080fd5b506104a96109ec565b6040516104b691906125bd565b60405180910390f35b3480156104cb57600080fd5b506104d4610a12565b6040516104e191906125bd565b60405180910390f35b3480156104f657600080fd5b506104ff610a3c565b60405161050c91906124d4565b60405180910390f35b34801561052157600080fd5b5061052a610a42565b604051610537919061230b565b60405180910390f35b34801561054c57600080fd5b506105676004803603810190610562919061251b565b610ad4565b005b34801561057557600080fd5b50610590600480360381019061058b91906123d5565b610b7a565b60405161059d9190612430565b60405180910390f35b3480156105b257600080fd5b506105cd60048036038101906105c891906123d5565b610bf1565b6040516105da9190612430565b60405180910390f35b3480156105ef57600080fd5b506105f8610c14565b60405161060591906125bd565b60405180910390f35b34801561061a57600080fd5b50610623610c3a565b005b34801561063157600080fd5b5061064c60048036038101906106479190612784565b610cca565b005b34801561065a57600080fd5b50610663610d8b565b60405161067091906125bd565b60405180910390f35b34801561068557600080fd5b5061068e610db1565b60405161069b91906124d4565b60405180910390f35b3480156106b057600080fd5b506106cb60048036038101906106c691906127e0565b610db7565b6040516106d891906124d4565b60405180910390f35b3480156106ed57600080fd5b506106f6610e3e565b60405161070391906124d4565b60405180910390f35b34801561071857600080fd5b50610733600480360381019061072e919061260f565b610e44565b005b6060600480546107449061284f565b80601f01602080910402602001604051908101604052809291908181526020018280546107709061284f565b80156107bd5780601f10610792576101008083540402835291602001916107bd565b820191906000526020600020905b8154815290600101906020018083116107a057829003601f168201915b5050505050905090565b6000806107d2610ec7565b90506107df818585610ecf565b600191505092915050565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6000600254905090565b610820611098565b80601860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7826040516108bd9190612430565b60405180910390a25050565b6000806108d4610ec7565b90506108e1858285611116565b6108ec8585856111a2565b60019150509392505050565b61dead81565b60006012905090565b600080610912610ec7565b90506109338185856109248589610db7565b61092e91906128af565b610ecf565b600191505092915050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600a60149054906101000a900460ff1681565b60105481565b600a60159054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6109e0611098565b6109ea6000611877565b565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60035481565b606060058054610a519061284f565b80601f0160208091040260200160405190810160405280929190818152602001828054610a7d9061284f565b8015610aca5780601f10610a9f57610100808354040283529160200191610aca565b820191906000526020600020905b815481529060010190602001808311610aad57829003601f168201915b5050505050905090565b610adc611098565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610b6c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b639061297b565b60405180910390fd5b610b76828261193d565b5050565b600080610b85610ec7565b90506000610b938286610db7565b905083811015610bd8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bcf90612a0d565b60405180910390fd5b610be58286868403610ecf565b60019250505092915050565b600080610bfc610ec7565b9050610c098185856111a2565b600191505092915050565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610c42611098565b600a60149054906101000a900460ff1615610c92576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8990612a79565b60405180910390fd5b6001600a60146101000a81548160ff0219169083151502179055506001600a60156101000a81548160ff021916908315150217905550565b610cd2611098565b60005b8251811015610d8657600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16838281518110610d2a57610d29612a99565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff160315610d7357610d72838281518110610d6457610d63612a99565b5b60200260200101518361193d565b5b8080610d7e90612ac8565b915050610cd5565b505050565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600c5481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600b5481565b610e4c611098565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610ebb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eb290612b82565b60405180910390fd5b610ec481611877565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610f3e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3590612c14565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610fad576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fa490612ca6565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161108b91906124d4565b60405180910390a3505050565b6110a0610ec7565b73ffffffffffffffffffffffffffffffffffffffff166110be610a12565b73ffffffffffffffffffffffffffffffffffffffff1614611114576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110b90612d12565b60405180910390fd5b565b60006111228484610db7565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff811461119c578181101561118e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118590612d7e565b60405180910390fd5b61119b8484848403610ecf565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611211576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120890612e10565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611280576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127790612ea2565b60405180910390fd5b600a60149054906101000a900460ff16806112e45750601860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b806113385750601860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b611377576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136e90612f0e565b60405180910390fd5b600081036113905761138b838360006119de565b611872565b600061139b30610990565b90506000600b5482101590508080156113c05750600a60159054906101000a900460ff165b80156113d95750600a60169054906101000a900460ff16155b801561142e5750601960008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b80156114845750601860008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156114da5750601860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561151e576001600a60166101000a81548160ff021916908315150217905550611502611c54565b6000600a60166101000a81548160ff0219169083151502179055505b6000600a60169054906101000a900460ff16159050601860008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806115d45750601860008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156115de57600090505b6000811561185957601960008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561164157506000601054115b1561170f5761166f61271061166160105488611ef690919063ffffffff16565b611f0c90919063ffffffff16565b9050601054601354826116829190612f2e565b61168c9190612f9f565b6016600082825461169d91906128af565b92505081905550601054601154826116b59190612f2e565b6116bf9190612f9f565b601460008282546116d091906128af565b92505081905550601054601254826116e89190612f2e565b6116f29190612f9f565b6015600082825461170391906128af565b92505081905550611835565b601960008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561176a57506000600c54115b156118345761179861271061178a600c5488611ef690919063ffffffff16565b611f0c90919063ffffffff16565b9050600c54600f54826117ab9190612f2e565b6117b59190612f9f565b601660008282546117c691906128af565b92505081905550600c54600d54826117de9190612f2e565b6117e89190612f9f565b601460008282546117f991906128af565b92505081905550600c54600e54826118119190612f2e565b61181b9190612f9f565b6015600082825461182c91906128af565b925050819055505b5b600081111561184a576118498730836119de565b5b80856118569190612fd0565b94505b6118648787876119de565b601754601081905550505050505b505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80601960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611a4d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a4490612e10565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611abc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ab390612ea2565b60405180910390fd5b611ac7838383611f22565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611b4d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b4490613076565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611c3b91906124d4565b60405180910390a3611c4e848484611f27565b50505050565b6000611c5f30610990565b90506000601554601454601654611c7691906128af565b611c8091906128af565b905060008060028360165486611c969190612f2e565b611ca09190612f9f565b611caa9190612f9f565b90506000611cc18286611f2c90919063ffffffff16565b90506000479050611cd182611f42565b6000611ce68247611f2c90919063ffffffff16565b90506000611d1187611d0360145485611ef690919063ffffffff16565b611f0c90919063ffffffff16565b90506000611d3c88611d2e60155486611ef690919063ffffffff16565b611f0c90919063ffffffff16565b90506000818385611d4d9190612fd0565b611d579190612fd0565b9050600060168190555060006014819055506000601581905550600087118015611d815750600081115b15611dce57611d90878261217f565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618682601654604051611dc593929190613096565b60405180910390a15b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1682604051611e14906130fe565b60006040518083038185875af1925050503d8060008114611e51576040519150601f19603f3d011682016040523d82523d6000602084013e611e56565b606091505b505080985050600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051611ea2906130fe565b60006040518083038185875af1925050503d8060008114611edf576040519150601f19603f3d011682016040523d82523d6000602084013e611ee4565b606091505b50508098505050505050505050505050565b60008183611f049190612f2e565b905092915050565b60008183611f1a9190612f9f565b905092915050565b505050565b505050565b60008183611f3a9190612fd0565b905092915050565b6000600267ffffffffffffffff811115611f5f57611f5e612641565b5b604051908082528060200260200182016040528015611f8d5781602001602082028036833780820191505090505b5090503081600081518110611fa557611fa4612a99565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561204a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061206e9190613128565b8160018151811061208257612081612a99565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250506120e7307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84610ecf565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b815260040161214995949392919061324e565b600060405180830381600087803b15801561216357600080fd5b505af1158015612177573d6000803e3d6000fd5b505050505050565b6121aa307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84610ecf565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d719823085600080600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518863ffffffff1660e01b8152600401612231969594939291906132a8565b60606040518083038185885af115801561224f573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190612274919061331e565b5050505050565b600081519050919050565b600082825260208201905092915050565b60005b838110156122b557808201518184015260208101905061229a565b60008484015250505050565b6000601f19601f8301169050919050565b60006122dd8261227b565b6122e78185612286565b93506122f7818560208601612297565b612300816122c1565b840191505092915050565b6000602082019050818103600083015261232581846122d2565b905092915050565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061236c82612341565b9050919050565b61237c81612361565b811461238757600080fd5b50565b60008135905061239981612373565b92915050565b6000819050919050565b6123b28161239f565b81146123bd57600080fd5b50565b6000813590506123cf816123a9565b92915050565b600080604083850312156123ec576123eb612337565b5b60006123fa8582860161238a565b925050602061240b858286016123c0565b9150509250929050565b60008115159050919050565b61242a81612415565b82525050565b60006020820190506124456000830184612421565b92915050565b6000819050919050565b600061247061246b61246684612341565b61244b565b612341565b9050919050565b600061248282612455565b9050919050565b600061249482612477565b9050919050565b6124a481612489565b82525050565b60006020820190506124bf600083018461249b565b92915050565b6124ce8161239f565b82525050565b60006020820190506124e960008301846124c5565b92915050565b6124f881612415565b811461250357600080fd5b50565b600081359050612515816124ef565b92915050565b6000806040838503121561253257612531612337565b5b60006125408582860161238a565b925050602061255185828601612506565b9150509250929050565b60008060006060848603121561257457612573612337565b5b60006125828682870161238a565b93505060206125938682870161238a565b92505060406125a4868287016123c0565b9150509250925092565b6125b781612361565b82525050565b60006020820190506125d260008301846125ae565b92915050565b600060ff82169050919050565b6125ee816125d8565b82525050565b600060208201905061260960008301846125e5565b92915050565b60006020828403121561262557612624612337565b5b60006126338482850161238a565b91505092915050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612679826122c1565b810181811067ffffffffffffffff8211171561269857612697612641565b5b80604052505050565b60006126ab61232d565b90506126b78282612670565b919050565b600067ffffffffffffffff8211156126d7576126d6612641565b5b602082029050602081019050919050565b600080fd5b60006127006126fb846126bc565b6126a1565b90508083825260208201905060208402830185811115612723576127226126e8565b5b835b8181101561274c5780612738888261238a565b845260208401935050602081019050612725565b5050509392505050565b600082601f83011261276b5761276a61263c565b5b813561277b8482602086016126ed565b91505092915050565b6000806040838503121561279b5761279a612337565b5b600083013567ffffffffffffffff8111156127b9576127b861233c565b5b6127c585828601612756565b92505060206127d685828601612506565b9150509250929050565b600080604083850312156127f7576127f6612337565b5b60006128058582860161238a565b92505060206128168582860161238a565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061286757607f821691505b60208210810361287a57612879612820565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006128ba8261239f565b91506128c58361239f565b92508282019050808211156128dd576128dc612880565b5b92915050565b7f5468652050616e63616b655377617020706169722063616e6e6f74206265207260008201527f656d6f7665642066726f6d206175746f6d617465644d61726b65744d616b657260208201527f5061697273000000000000000000000000000000000000000000000000000000604082015250565b6000612965604583612286565b9150612970826128e3565b606082019050919050565b6000602082019050818103600083015261299481612958565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006129f7602583612286565b9150612a028261299b565b604082019050919050565b60006020820190508181036000830152612a26816129ea565b9050919050565b7f54726164696e6720616c7265616479206163746976652e000000000000000000600082015250565b6000612a63601783612286565b9150612a6e82612a2d565b602082019050919050565b60006020820190508181036000830152612a9281612a56565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000612ad38261239f565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203612b0557612b04612880565b5b600182019050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f205860008201527f5452554d50206164647265737300000000000000000000000000000000000000602082015250565b6000612b6c602d83612286565b9150612b7782612b10565b604082019050919050565b60006020820190508181036000830152612b9b81612b5f565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000612bfe602483612286565b9150612c0982612ba2565b604082019050919050565b60006020820190508181036000830152612c2d81612bf1565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000612c90602283612286565b9150612c9b82612c34565b604082019050919050565b60006020820190508181036000830152612cbf81612c83565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612cfc602083612286565b9150612d0782612cc6565b602082019050919050565b60006020820190508181036000830152612d2b81612cef565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000612d68601d83612286565b9150612d7382612d32565b602082019050919050565b60006020820190508181036000830152612d9781612d5b565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000612dfa602583612286565b9150612e0582612d9e565b604082019050919050565b60006020820190508181036000830152612e2981612ded565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000612e8c602383612286565b9150612e9782612e30565b604082019050919050565b60006020820190508181036000830152612ebb81612e7f565b9050919050565b7f54726164696e67206e6f742079657420656e61626c6564210000000000000000600082015250565b6000612ef8601883612286565b9150612f0382612ec2565b602082019050919050565b60006020820190508181036000830152612f2781612eeb565b9050919050565b6000612f398261239f565b9150612f448361239f565b9250828202612f528161239f565b91508282048414831517612f6957612f68612880565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000612faa8261239f565b9150612fb58361239f565b925082612fc557612fc4612f70565b5b828204905092915050565b6000612fdb8261239f565b9150612fe68361239f565b9250828203905081811115612ffe57612ffd612880565b5b92915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000613060602683612286565b915061306b82613004565b604082019050919050565b6000602082019050818103600083015261308f81613053565b9050919050565b60006060820190506130ab60008301866124c5565b6130b860208301856124c5565b6130c560408301846124c5565b949350505050565b600081905092915050565b50565b60006130e86000836130cd565b91506130f3826130d8565b600082019050919050565b6000613109826130db565b9150819050919050565b60008151905061312281612373565b92915050565b60006020828403121561313e5761313d612337565b5b600061314c84828501613113565b91505092915050565b6000819050919050565b600061317a61317561317084613155565b61244b565b61239f565b9050919050565b61318a8161315f565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6131c581612361565b82525050565b60006131d783836131bc565b60208301905092915050565b6000602082019050919050565b60006131fb82613190565b613205818561319b565b9350613210836131ac565b8060005b8381101561324157815161322888826131cb565b9750613233836131e3565b925050600181019050613214565b5085935050505092915050565b600060a08201905061326360008301886124c5565b6132706020830187613181565b818103604083015261328281866131f0565b905061329160608301856125ae565b61329e60808301846124c5565b9695505050505050565b600060c0820190506132bd60008301896125ae565b6132ca60208301886124c5565b6132d76040830187613181565b6132e46060830186613181565b6132f160808301856125ae565b6132fe60a08301846124c5565b979650505050505050565b600081519050613318816123a9565b92915050565b60008060006060848603121561333757613336612337565b5b600061334586828701613309565b935050602061335686828701613309565b925050604061336786828701613309565b915050925092509256fea26469706673582212204fc794628e81c69019f57a7fa1a1d7e2b9e8dca2711783dfc8004185e2d336d164736f6c63430008110033
Deployed Bytecode Sourcemap
25287:9069:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7600:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9505:242;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25361:51;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8466:108;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28426:205;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9755:295;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25569:53;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8308:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10058:270;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25419:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25631:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25925:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25667:23;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8637:177;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1843:103;;;;;;;;;;;;;:::i;:::-;;25456:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1202:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7139:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7819:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28831:254;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10336:505;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8999:234;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25493:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28245:171;;;;;;;;;;;;;:::i;:::-;;29097:288;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25532:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25770:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9296:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25728:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2101:245;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;7600:100;7654:13;7687:5;7680:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7600:100;:::o;9505:242::-;9624:4;9646:13;9662:12;:10;:12::i;:::-;9646:28;;9685:32;9694:5;9701:7;9710:6;9685:8;:32::i;:::-;9735:4;9728:11;;;9505:242;;;;:::o;25361:51::-;;;:::o;8466:108::-;8527:7;8554:12;;8547:19;;8466:108;:::o;28426:205::-;1088:13;:11;:13::i;:::-;28565:8:::1;28528:25;:34;28554:7;28528:34;;;;;;;;;;;;;;;;:45;;;;;;;;;;;;;;;;;;28605:7;28589:34;;;28614:8;28589:34;;;;;;:::i;:::-;;;;;;;;28426:205:::0;;:::o;9755:295::-;9886:4;9903:15;9921:12;:10;:12::i;:::-;9903:30;;9944:38;9960:4;9966:7;9975:6;9944:15;:38::i;:::-;9993:27;10003:4;10009:2;10013:6;9993:9;:27::i;:::-;10038:4;10031:11;;;9755:295;;;;;:::o;25569:53::-;25615:6;25569:53;:::o;8308:93::-;8366:5;8391:2;8384:9;;8308:93;:::o;10058:270::-;10173:4;10195:13;10211:12;:10;:12::i;:::-;10195:28;;10234:64;10243:5;10250:7;10287:10;10259:25;10269:5;10276:7;10259:9;:25::i;:::-;:38;;;;:::i;:::-;10234:8;:64::i;:::-;10316:4;10309:11;;;10058:270;;;;:::o;25419:28::-;;;;;;;;;;;;;:::o;25631:26::-;;;;;;;;;;;;;:::o;25925:28::-;;;;:::o;25667:23::-;;;;;;;;;;;;;:::o;8637:177::-;8756:7;8788:9;:18;8798:7;8788:18;;;;;;;;;;;;;;;;8781:25;;8637:177;;;:::o;1843:103::-;1088:13;:11;:13::i;:::-;1908:30:::1;1935:1;1908:18;:30::i;:::-;1843:103::o:0;25456:30::-;;;;;;;;;;;;;:::o;1202:87::-;1248:7;1275:6;;;;;;;;;;;1268:13;;1202:87;:::o;7139:26::-;;;;:::o;7819:104::-;7875:13;7908:7;7901:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7819:104;:::o;28831:254::-;1088:13;:11;:13::i;:::-;28938::::1;;;;;;;;;;;28930:21;;:4;:21;;::::0;28922:103:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;29036:41;29065:4;29071:5;29036:28;:41::i;:::-;28831:254:::0;;:::o;10336:505::-;10456:4;10478:13;10494:12;:10;:12::i;:::-;10478:28;;10517:24;10544:25;10554:5;10561:7;10544:9;:25::i;:::-;10517:52;;10622:15;10602:16;:35;;10580:122;;;;;;;;;;;;:::i;:::-;;;;;;;;;10738:60;10747:5;10754:7;10782:15;10763:16;:34;10738:8;:60::i;:::-;10829:4;10822:11;;;;10336:505;;;;:::o;8999:234::-;9114:4;9136:13;9152:12;:10;:12::i;:::-;9136:28;;9175;9185:5;9192:2;9196:6;9175:9;:28::i;:::-;9221:4;9214:11;;;8999:234;;;;:::o;25493:32::-;;;;;;;;;;;;;:::o;28245:171::-;1088:13;:11;:13::i;:::-;28305:14:::1;;;;;;;;;;;28304:15;28296:51;;;;;;;;;;;;:::i;:::-;;;;;;;;;28375:4;28358:14;;:21;;;;;;;;;;;;;;;;;;28404:4;28390:11;;:18;;;;;;;;;;;;;;;;;;28245:171::o:0;29097:288::-;1088:13;:11;:13::i;:::-;29206:9:::1;29201:177;29225:8;:15;29221:1;:19;29201:177;;;29280:13;;;;;;;;;;;29265:28;;:8;29274:1;29265:11;;;;;;;;:::i;:::-;;;;;;;;:28;;::::0;29262:41;29295:8:::1;29262:41;29318:48;29347:8;29356:1;29347:11;;;;;;;;:::i;:::-;;;;;;;;29360:5;29318:28;:48::i;:::-;29201:177;29242:3;;;;;:::i;:::-;;;;29201:177;;;;29097:288:::0;;:::o;25532:30::-;;;;;;;;;;;;;:::o;25770:27::-;;;;:::o;9296:201::-;9430:7;9462:11;:18;9474:5;9462:18;;;;;;;;;;;;;;;:27;9481:7;9462:27;;;;;;;;;;;;;;;;9455:34;;9296:201;;;;:::o;25728:33::-;;;;:::o;2101:245::-;1088:13;:11;:13::i;:::-;2224:1:::1;2204:22;;:8;:22;;::::0;2182:117:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;2310:28;2329:8;2310:18;:28::i;:::-;2101:245:::0;:::o;253:98::-;306:7;333:10;326:17;;253:98;:::o;12980:380::-;13133:1;13116:19;;:5;:19;;;13108:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;13214:1;13195:21;;:7;:21;;;13187:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;13298:6;13268:11;:18;13280:5;13268:18;;;;;;;;;;;;;;;:27;13287:7;13268:27;;;;;;;;;;;;;;;:36;;;;13336:7;13320:32;;13329:5;13320:32;;;13345:6;13320:32;;;;;;:::i;:::-;;;;;;;;12980:380;;;:::o;1367:132::-;1442:12;:10;:12::i;:::-;1431:23;;:7;:5;:7::i;:::-;:23;;;1423:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1367:132::o;13368:502::-;13503:24;13530:25;13540:5;13547:7;13530:9;:25::i;:::-;13503:52;;13590:17;13570:16;:37;13566:297;;13670:6;13650:16;:26;;13624:117;;;;;;;;;;;;:::i;:::-;;;;;;;;;13785:51;13794:5;13801:7;13829:6;13810:16;:25;13785:8;:51::i;:::-;13566:297;13492:378;13368:502;;;:::o;29397:2448::-;29545:1;29529:18;;:4;:18;;;29521:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;29622:1;29608:16;;:2;:16;;;29600:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;29683:14;;;;;;;;;;;:49;;;;29701:25;:31;29727:4;29701:31;;;;;;;;;;;;;;;;;;;;;;;;;29683:49;:82;;;;29736:25;:29;29762:2;29736:29;;;;;;;;;;;;;;;;;;;;;;;;;29683:82;29675:119;;;;;;;;;;;;:::i;:::-;;;;;;;;;29819:1;29809:6;:11;29805:93;;29837:28;29853:4;29859:2;29863:1;29837:15;:28::i;:::-;29880:7;;29805:93;29912:28;29943:24;29961:4;29943:9;:24::i;:::-;29912:55;;29980:12;30019:18;;29995:20;:42;;29980:57;;30068:7;:35;;;;;30092:11;;;;;;;;;;;30068:35;:48;;;;;30107:9;;;;;;;;;;;30106:10;30068:48;:82;;;;;30118:26;:32;30145:4;30118:32;;;;;;;;;;;;;;;;;;;;;;;;;30068:82;:131;;;;;30168:25;:31;30194:4;30168:31;;;;;;;;;;;;;;;;;;;;;;;;;30167:32;30068:131;:178;;;;;30217:25;:29;30243:2;30217:29;;;;;;;;;;;;;;;;;;;;;;;;;30216:30;30068:178;30050:313;;;30285:4;30273:9;;:16;;;;;;;;;;;;;;;;;;30306:11;:9;:11::i;:::-;30346:5;30334:9;;:17;;;;;;;;;;;;;;;;;;30050:313;30375:12;30391:9;;;;;;;;;;;30390:10;30375:25;;30417;:31;30443:4;30417:31;;;;;;;;;;;;;;;;;;;;;;;;;:64;;;;30452:25;:29;30478:2;30452:29;;;;;;;;;;;;;;;;;;;;;;;;;30417:64;30413:112;;;30508:5;30498:15;;30413:112;30537:12;30570:7;30566:1187;;;30622:26;:30;30649:2;30622:30;;;;;;;;;;;;;;;;;;;;;;;;;:51;;;;;30672:1;30656:13;;:17;30622:51;30618:986;;;30701:36;30731:5;30701:25;30712:13;;30701:6;:10;;:25;;;;:::i;:::-;:29;;:36;;;;:::i;:::-;30694:43;;30850:13;;30808:17;;30801:4;:24;;;;:::i;:::-;30800:63;;;;:::i;:::-;30756:19;;:107;;;;;;;:::i;:::-;;;;;;;;30976:13;;30934:17;;30927:4;:24;;;;:::i;:::-;30926:63;;;;:::i;:::-;30882:19;;:107;;;;;;;:::i;:::-;;;;;;;;31106:13;;31062:19;;31055:4;:26;;;;:::i;:::-;31054:65;;;;:::i;:::-;31008:21;;:111;;;;;;;:::i;:::-;;;;;;;;30618:986;;;31181:26;:32;31208:4;31181:32;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;;31232:1;31217:12;;:16;31181:52;31177:427;;;31261:35;31290:5;31261:24;31272:12;;31261:6;:10;;:24;;;;:::i;:::-;:28;;:35;;;;:::i;:::-;31254:42;;31366:12;;31346:16;;31339:4;:23;;;;:::i;:::-;31338:40;;;;:::i;:::-;31315:19;;:63;;;;;;;:::i;:::-;;;;;;;;31448:12;;31428:16;;31421:4;:23;;;;:::i;:::-;31420:40;;;;:::i;:::-;31397:19;;:63;;;;;;;:::i;:::-;;;;;;;;31576:12;;31533:18;;31526:4;:25;;;;:::i;:::-;31525:63;;;;:::i;:::-;31479:21;;:109;;;;;;;:::i;:::-;;;;;;;;31177:427;30618:986;31631:1;31624:4;:8;31620:91;;;31653:42;31669:4;31683;31690;31653:15;:42::i;:::-;31620:91;31737:4;31727:14;;;;;:::i;:::-;;;30566:1187;31765:33;31781:4;31787:2;31791:6;31765:15;:33::i;:::-;31825:12;;31809:13;:28;;;;29510:2335;;;;29397:2448;;;;:::o;2506:191::-;2580:16;2599:6;;;;;;;;;;;2580:25;;2625:8;2616:6;;:17;;;;;;;;;;;;;;;;;;2680:8;2649:40;;2670:8;2649:40;;;;;;;;;;;;2569:128;2506:191;:::o;28637:188::-;28756:5;28721:26;:32;28748:4;28721:32;;;;;;;;;;;;;;;;:40;;;;;;;;;;;;;;;;;;28811:5;28777:40;;28805:4;28777:40;;;;;;;;;;;;28637:188;;:::o;10849:877::-;10996:1;10980:18;;:4;:18;;;10972:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;11073:1;11059:16;;:2;:16;;;11051:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;11128:38;11149:4;11155:2;11159:6;11128:20;:38::i;:::-;11179:19;11201:9;:15;11211:4;11201:15;;;;;;;;;;;;;;;;11179:37;;11264:6;11249:11;:21;;11227:109;;;;;;;;;;;;:::i;:::-;;;;;;;;;11404:6;11390:11;:20;11372:9;:15;11382:4;11372:15;;;;;;;;;;;;;;;:38;;;;11607:6;11590:9;:13;11600:2;11590:13;;;;;;;;;;;;;;;;:23;;;;;;;;;;;11657:2;11642:26;;11651:4;11642:26;;;11661:6;11642:26;;;;;;:::i;:::-;;;;;;;;11681:37;11701:4;11707:2;11711:6;11681:19;:37::i;:::-;10961:765;10849:877;;;:::o;32744:1607::-;32785:23;32811:24;32829:4;32811:9;:24::i;:::-;32785:50;;32846:25;32944:21;;32909:19;;32874;;:54;;;;:::i;:::-;:91;;;;:::i;:::-;32846:119;;32976:12;33003:23;33117:1;33084:17;33048:19;;33030:15;:37;;;;:::i;:::-;33029:72;;;;:::i;:::-;:89;;;;:::i;:::-;33003:115;;33129:26;33158:36;33178:15;33158;:19;;:36;;;;:::i;:::-;33129:65;;33207:25;33235:21;33207:49;;33269:37;33287:18;33269:17;:37::i;:::-;33319:18;33340:44;33366:17;33340:21;:25;;:44;;;;:::i;:::-;33319:65;;33397:23;33423:82;33477:17;33423:35;33438:19;;33423:10;:14;;:35;;;;:::i;:::-;:39;;:82;;;;:::i;:::-;33397:108;;33518:25;33546:84;33602:17;33546:37;33561:21;;33546:10;:14;;:37;;;;:::i;:::-;:41;;:84;;;;:::i;:::-;33518:112;;33643:23;33726:17;33695:15;33669:10;:41;;;;:::i;:::-;:74;;;;:::i;:::-;33643:100;;33778:1;33756:19;:23;;;;33812:1;33790:19;:23;;;;33848:1;33824:21;:25;;;;33884:1;33866:15;:19;:42;;;;;33907:1;33889:15;:19;33866:42;33862:280;;;33925:47;33939:15;33956;33925:13;:47::i;:::-;33992:138;34025:18;34062:15;34096:19;;33992:138;;;;;;;;:::i;:::-;;;;;;;;33862:280;34176:17;;;;;;;;;;;34168:31;;34207:17;34168:61;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34154:75;;;;;34264:15;;;;;;;;;;;34256:29;;34307:21;34256:87;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34242:101;;;;;32774:1577;;;;;;;;;;32744:1607::o;17461:98::-;17519:7;17550:1;17546;:5;;;;:::i;:::-;17539:12;;17461:98;;;;:::o;17784:::-;17842:7;17873:1;17869;:5;;;;:::i;:::-;17862:12;;17784:98;;;;:::o;13878:125::-;;;;:::o;14011:124::-;;;;:::o;17104:98::-;17162:7;17193:1;17189;:5;;;;:::i;:::-;17182:12;;17104:98;;;;:::o;31853:503::-;31921:21;31959:1;31945:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31921:40;;31990:4;31972;31977:1;31972:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;;;32016:15;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;32006:4;32011:1;32006:7;;;;;;;;:::i;:::-;;;;;;;:32;;;;;;;;;;;32051:62;32068:4;32083:15;32101:11;32051:8;:62::i;:::-;32152:15;:66;;;32233:11;32259:1;32275:4;32302;32322:15;32152:196;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31910:446;31853:503;:::o;32364:372::-;32447:62;32464:4;32479:15;32497:11;32447:8;:62::i;:::-;32522:15;:31;;;32561:9;32594:4;32614:11;32640:1;32656;32672:15;;;;;;;;;;;32702;32522:206;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;32364:372;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:246::-;368:1;378:113;392:6;389:1;386:13;378:113;;;477:1;472:3;468:11;462:18;458:1;453:3;449:11;442:39;414:2;411:1;407:10;402:15;;378:113;;;525:1;516:6;511:3;507:16;500:27;349:184;287:246;;;:::o;539:102::-;580:6;631:2;627:7;622:2;615:5;611:14;607:28;597:38;;539:102;;;:::o;647:377::-;735:3;763:39;796:5;763:39;:::i;:::-;818:71;882:6;877:3;818:71;:::i;:::-;811:78;;898:65;956:6;951:3;944:4;937:5;933:16;898:65;:::i;:::-;988:29;1010:6;988:29;:::i;:::-;983:3;979:39;972:46;;739:285;647:377;;;;:::o;1030:313::-;1143:4;1181:2;1170:9;1166:18;1158:26;;1230:9;1224:4;1220:20;1216:1;1205:9;1201:17;1194:47;1258:78;1331:4;1322:6;1258:78;:::i;:::-;1250:86;;1030:313;;;;:::o;1349:75::-;1382:6;1415:2;1409:9;1399:19;;1349:75;:::o;1430:117::-;1539:1;1536;1529:12;1553:117;1662:1;1659;1652:12;1676:126;1713:7;1753:42;1746:5;1742:54;1731:65;;1676:126;;;:::o;1808:96::-;1845:7;1874:24;1892:5;1874:24;:::i;:::-;1863:35;;1808:96;;;:::o;1910:122::-;1983:24;2001:5;1983:24;:::i;:::-;1976:5;1973:35;1963:63;;2022:1;2019;2012:12;1963:63;1910:122;:::o;2038:139::-;2084:5;2122:6;2109:20;2100:29;;2138:33;2165:5;2138:33;:::i;:::-;2038:139;;;;:::o;2183:77::-;2220:7;2249:5;2238:16;;2183:77;;;:::o;2266:122::-;2339:24;2357:5;2339:24;:::i;:::-;2332:5;2329:35;2319:63;;2378:1;2375;2368:12;2319:63;2266:122;:::o;2394:139::-;2440:5;2478:6;2465:20;2456:29;;2494:33;2521:5;2494:33;:::i;:::-;2394:139;;;;:::o;2539:474::-;2607:6;2615;2664:2;2652:9;2643:7;2639:23;2635:32;2632:119;;;2670:79;;:::i;:::-;2632:119;2790:1;2815:53;2860:7;2851:6;2840:9;2836:22;2815:53;:::i;:::-;2805:63;;2761:117;2917:2;2943:53;2988:7;2979:6;2968:9;2964:22;2943:53;:::i;:::-;2933:63;;2888:118;2539:474;;;;;:::o;3019:90::-;3053:7;3096:5;3089:13;3082:21;3071:32;;3019:90;;;:::o;3115:109::-;3196:21;3211:5;3196:21;:::i;:::-;3191:3;3184:34;3115:109;;:::o;3230:210::-;3317:4;3355:2;3344:9;3340:18;3332:26;;3368:65;3430:1;3419:9;3415:17;3406:6;3368:65;:::i;:::-;3230:210;;;;:::o;3446:60::-;3474:3;3495:5;3488:12;;3446:60;;;:::o;3512:142::-;3562:9;3595:53;3613:34;3622:24;3640:5;3622:24;:::i;:::-;3613:34;:::i;:::-;3595:53;:::i;:::-;3582:66;;3512:142;;;:::o;3660:126::-;3710:9;3743:37;3774:5;3743:37;:::i;:::-;3730:50;;3660:126;;;:::o;3792:153::-;3869:9;3902:37;3933:5;3902:37;:::i;:::-;3889:50;;3792:153;;;:::o;3951:185::-;4065:64;4123:5;4065:64;:::i;:::-;4060:3;4053:77;3951:185;;:::o;4142:276::-;4262:4;4300:2;4289:9;4285:18;4277:26;;4313:98;4408:1;4397:9;4393:17;4384:6;4313:98;:::i;:::-;4142:276;;;;:::o;4424:118::-;4511:24;4529:5;4511:24;:::i;:::-;4506:3;4499:37;4424:118;;:::o;4548:222::-;4641:4;4679:2;4668:9;4664:18;4656:26;;4692:71;4760:1;4749:9;4745:17;4736:6;4692:71;:::i;:::-;4548:222;;;;:::o;4776:116::-;4846:21;4861:5;4846:21;:::i;:::-;4839:5;4836:32;4826:60;;4882:1;4879;4872:12;4826:60;4776:116;:::o;4898:133::-;4941:5;4979:6;4966:20;4957:29;;4995:30;5019:5;4995:30;:::i;:::-;4898:133;;;;:::o;5037:468::-;5102:6;5110;5159:2;5147:9;5138:7;5134:23;5130:32;5127:119;;;5165:79;;:::i;:::-;5127:119;5285:1;5310:53;5355:7;5346:6;5335:9;5331:22;5310:53;:::i;:::-;5300:63;;5256:117;5412:2;5438:50;5480:7;5471:6;5460:9;5456:22;5438:50;:::i;:::-;5428:60;;5383:115;5037:468;;;;;:::o;5511:619::-;5588:6;5596;5604;5653:2;5641:9;5632:7;5628:23;5624:32;5621:119;;;5659:79;;:::i;:::-;5621:119;5779:1;5804:53;5849:7;5840:6;5829:9;5825:22;5804:53;:::i;:::-;5794:63;;5750:117;5906:2;5932:53;5977:7;5968:6;5957:9;5953:22;5932:53;:::i;:::-;5922:63;;5877:118;6034:2;6060:53;6105:7;6096:6;6085:9;6081:22;6060:53;:::i;:::-;6050:63;;6005:118;5511:619;;;;;:::o;6136:118::-;6223:24;6241:5;6223:24;:::i;:::-;6218:3;6211:37;6136:118;;:::o;6260:222::-;6353:4;6391:2;6380:9;6376:18;6368:26;;6404:71;6472:1;6461:9;6457:17;6448:6;6404:71;:::i;:::-;6260:222;;;;:::o;6488:86::-;6523:7;6563:4;6556:5;6552:16;6541:27;;6488:86;;;:::o;6580:112::-;6663:22;6679:5;6663:22;:::i;:::-;6658:3;6651:35;6580:112;;:::o;6698:214::-;6787:4;6825:2;6814:9;6810:18;6802:26;;6838:67;6902:1;6891:9;6887:17;6878:6;6838:67;:::i;:::-;6698:214;;;;:::o;6918:329::-;6977:6;7026:2;7014:9;7005:7;7001:23;6997:32;6994:119;;;7032:79;;:::i;:::-;6994:119;7152:1;7177:53;7222:7;7213:6;7202:9;7198:22;7177:53;:::i;:::-;7167:63;;7123:117;6918:329;;;;:::o;7253:117::-;7362:1;7359;7352:12;7376:180;7424:77;7421:1;7414:88;7521:4;7518:1;7511:15;7545:4;7542:1;7535:15;7562:281;7645:27;7667:4;7645:27;:::i;:::-;7637:6;7633:40;7775:6;7763:10;7760:22;7739:18;7727:10;7724:34;7721:62;7718:88;;;7786:18;;:::i;:::-;7718:88;7826:10;7822:2;7815:22;7605:238;7562:281;;:::o;7849:129::-;7883:6;7910:20;;:::i;:::-;7900:30;;7939:33;7967:4;7959:6;7939:33;:::i;:::-;7849:129;;;:::o;7984:311::-;8061:4;8151:18;8143:6;8140:30;8137:56;;;8173:18;;:::i;:::-;8137:56;8223:4;8215:6;8211:17;8203:25;;8283:4;8277;8273:15;8265:23;;7984:311;;;:::o;8301:117::-;8410:1;8407;8400:12;8441:710;8537:5;8562:81;8578:64;8635:6;8578:64;:::i;:::-;8562:81;:::i;:::-;8553:90;;8663:5;8692:6;8685:5;8678:21;8726:4;8719:5;8715:16;8708:23;;8779:4;8771:6;8767:17;8759:6;8755:30;8808:3;8800:6;8797:15;8794:122;;;8827:79;;:::i;:::-;8794:122;8942:6;8925:220;8959:6;8954:3;8951:15;8925:220;;;9034:3;9063:37;9096:3;9084:10;9063:37;:::i;:::-;9058:3;9051:50;9130:4;9125:3;9121:14;9114:21;;9001:144;8985:4;8980:3;8976:14;8969:21;;8925:220;;;8929:21;8543:608;;8441:710;;;;;:::o;9174:370::-;9245:5;9294:3;9287:4;9279:6;9275:17;9271:27;9261:122;;9302:79;;:::i;:::-;9261:122;9419:6;9406:20;9444:94;9534:3;9526:6;9519:4;9511:6;9507:17;9444:94;:::i;:::-;9435:103;;9251:293;9174:370;;;;:::o;9550:678::-;9640:6;9648;9697:2;9685:9;9676:7;9672:23;9668:32;9665:119;;;9703:79;;:::i;:::-;9665:119;9851:1;9840:9;9836:17;9823:31;9881:18;9873:6;9870:30;9867:117;;;9903:79;;:::i;:::-;9867:117;10008:78;10078:7;10069:6;10058:9;10054:22;10008:78;:::i;:::-;9998:88;;9794:302;10135:2;10161:50;10203:7;10194:6;10183:9;10179:22;10161:50;:::i;:::-;10151:60;;10106:115;9550:678;;;;;:::o;10234:474::-;10302:6;10310;10359:2;10347:9;10338:7;10334:23;10330:32;10327:119;;;10365:79;;:::i;:::-;10327:119;10485:1;10510:53;10555:7;10546:6;10535:9;10531:22;10510:53;:::i;:::-;10500:63;;10456:117;10612:2;10638:53;10683:7;10674:6;10663:9;10659:22;10638:53;:::i;:::-;10628:63;;10583:118;10234:474;;;;;:::o;10714:180::-;10762:77;10759:1;10752:88;10859:4;10856:1;10849:15;10883:4;10880:1;10873:15;10900:320;10944:6;10981:1;10975:4;10971:12;10961:22;;11028:1;11022:4;11018:12;11049:18;11039:81;;11105:4;11097:6;11093:17;11083:27;;11039:81;11167:2;11159:6;11156:14;11136:18;11133:38;11130:84;;11186:18;;:::i;:::-;11130:84;10951:269;10900:320;;;:::o;11226:180::-;11274:77;11271:1;11264:88;11371:4;11368:1;11361:15;11395:4;11392:1;11385:15;11412:191;11452:3;11471:20;11489:1;11471:20;:::i;:::-;11466:25;;11505:20;11523:1;11505:20;:::i;:::-;11500:25;;11548:1;11545;11541:9;11534:16;;11569:3;11566:1;11563:10;11560:36;;;11576:18;;:::i;:::-;11560:36;11412:191;;;;:::o;11609:293::-;11749:34;11745:1;11737:6;11733:14;11726:58;11818:34;11813:2;11805:6;11801:15;11794:59;11887:7;11882:2;11874:6;11870:15;11863:32;11609:293;:::o;11908:366::-;12050:3;12071:67;12135:2;12130:3;12071:67;:::i;:::-;12064:74;;12147:93;12236:3;12147:93;:::i;:::-;12265:2;12260:3;12256:12;12249:19;;11908:366;;;:::o;12280:419::-;12446:4;12484:2;12473:9;12469:18;12461:26;;12533:9;12527:4;12523:20;12519:1;12508:9;12504:17;12497:47;12561:131;12687:4;12561:131;:::i;:::-;12553:139;;12280:419;;;:::o;12705:224::-;12845:34;12841:1;12833:6;12829:14;12822:58;12914:7;12909:2;12901:6;12897:15;12890:32;12705:224;:::o;12935:366::-;13077:3;13098:67;13162:2;13157:3;13098:67;:::i;:::-;13091:74;;13174:93;13263:3;13174:93;:::i;:::-;13292:2;13287:3;13283:12;13276:19;;12935:366;;;:::o;13307:419::-;13473:4;13511:2;13500:9;13496:18;13488:26;;13560:9;13554:4;13550:20;13546:1;13535:9;13531:17;13524:47;13588:131;13714:4;13588:131;:::i;:::-;13580:139;;13307:419;;;:::o;13732:173::-;13872:25;13868:1;13860:6;13856:14;13849:49;13732:173;:::o;13911:366::-;14053:3;14074:67;14138:2;14133:3;14074:67;:::i;:::-;14067:74;;14150:93;14239:3;14150:93;:::i;:::-;14268:2;14263:3;14259:12;14252:19;;13911:366;;;:::o;14283:419::-;14449:4;14487:2;14476:9;14472:18;14464:26;;14536:9;14530:4;14526:20;14522:1;14511:9;14507:17;14500:47;14564:131;14690:4;14564:131;:::i;:::-;14556:139;;14283:419;;;:::o;14708:180::-;14756:77;14753:1;14746:88;14853:4;14850:1;14843:15;14877:4;14874:1;14867:15;14894:233;14933:3;14956:24;14974:5;14956:24;:::i;:::-;14947:33;;15002:66;14995:5;14992:77;14989:103;;15072:18;;:::i;:::-;14989:103;15119:1;15112:5;15108:13;15101:20;;14894:233;;;:::o;15133:232::-;15273:34;15269:1;15261:6;15257:14;15250:58;15342:15;15337:2;15329:6;15325:15;15318:40;15133:232;:::o;15371:366::-;15513:3;15534:67;15598:2;15593:3;15534:67;:::i;:::-;15527:74;;15610:93;15699:3;15610:93;:::i;:::-;15728:2;15723:3;15719:12;15712:19;;15371:366;;;:::o;15743:419::-;15909:4;15947:2;15936:9;15932:18;15924:26;;15996:9;15990:4;15986:20;15982:1;15971:9;15967:17;15960:47;16024:131;16150:4;16024:131;:::i;:::-;16016:139;;15743:419;;;:::o;16168:223::-;16308:34;16304:1;16296:6;16292:14;16285:58;16377:6;16372:2;16364:6;16360:15;16353:31;16168:223;:::o;16397:366::-;16539:3;16560:67;16624:2;16619:3;16560:67;:::i;:::-;16553:74;;16636:93;16725:3;16636:93;:::i;:::-;16754:2;16749:3;16745:12;16738:19;;16397:366;;;:::o;16769:419::-;16935:4;16973:2;16962:9;16958:18;16950:26;;17022:9;17016:4;17012:20;17008:1;16997:9;16993:17;16986:47;17050:131;17176:4;17050:131;:::i;:::-;17042:139;;16769:419;;;:::o;17194:221::-;17334:34;17330:1;17322:6;17318:14;17311:58;17403:4;17398:2;17390:6;17386:15;17379:29;17194:221;:::o;17421:366::-;17563:3;17584:67;17648:2;17643:3;17584:67;:::i;:::-;17577:74;;17660:93;17749:3;17660:93;:::i;:::-;17778:2;17773:3;17769:12;17762:19;;17421:366;;;:::o;17793:419::-;17959:4;17997:2;17986:9;17982:18;17974:26;;18046:9;18040:4;18036:20;18032:1;18021:9;18017:17;18010:47;18074:131;18200:4;18074:131;:::i;:::-;18066:139;;17793:419;;;:::o;18218:182::-;18358:34;18354:1;18346:6;18342:14;18335:58;18218:182;:::o;18406:366::-;18548:3;18569:67;18633:2;18628:3;18569:67;:::i;:::-;18562:74;;18645:93;18734:3;18645:93;:::i;:::-;18763:2;18758:3;18754:12;18747:19;;18406:366;;;:::o;18778:419::-;18944:4;18982:2;18971:9;18967:18;18959:26;;19031:9;19025:4;19021:20;19017:1;19006:9;19002:17;18995:47;19059:131;19185:4;19059:131;:::i;:::-;19051:139;;18778:419;;;:::o;19203:179::-;19343:31;19339:1;19331:6;19327:14;19320:55;19203:179;:::o;19388:366::-;19530:3;19551:67;19615:2;19610:3;19551:67;:::i;:::-;19544:74;;19627:93;19716:3;19627:93;:::i;:::-;19745:2;19740:3;19736:12;19729:19;;19388:366;;;:::o;19760:419::-;19926:4;19964:2;19953:9;19949:18;19941:26;;20013:9;20007:4;20003:20;19999:1;19988:9;19984:17;19977:47;20041:131;20167:4;20041:131;:::i;:::-;20033:139;;19760:419;;;:::o;20185:224::-;20325:34;20321:1;20313:6;20309:14;20302:58;20394:7;20389:2;20381:6;20377:15;20370:32;20185:224;:::o;20415:366::-;20557:3;20578:67;20642:2;20637:3;20578:67;:::i;:::-;20571:74;;20654:93;20743:3;20654:93;:::i;:::-;20772:2;20767:3;20763:12;20756:19;;20415:366;;;:::o;20787:419::-;20953:4;20991:2;20980:9;20976:18;20968:26;;21040:9;21034:4;21030:20;21026:1;21015:9;21011:17;21004:47;21068:131;21194:4;21068:131;:::i;:::-;21060:139;;20787:419;;;:::o;21212:222::-;21352:34;21348:1;21340:6;21336:14;21329:58;21421:5;21416:2;21408:6;21404:15;21397:30;21212:222;:::o;21440:366::-;21582:3;21603:67;21667:2;21662:3;21603:67;:::i;:::-;21596:74;;21679:93;21768:3;21679:93;:::i;:::-;21797:2;21792:3;21788:12;21781:19;;21440:366;;;:::o;21812:419::-;21978:4;22016:2;22005:9;22001:18;21993:26;;22065:9;22059:4;22055:20;22051:1;22040:9;22036:17;22029:47;22093:131;22219:4;22093:131;:::i;:::-;22085:139;;21812:419;;;:::o;22237:174::-;22377:26;22373:1;22365:6;22361:14;22354:50;22237:174;:::o;22417:366::-;22559:3;22580:67;22644:2;22639:3;22580:67;:::i;:::-;22573:74;;22656:93;22745:3;22656:93;:::i;:::-;22774:2;22769:3;22765:12;22758:19;;22417:366;;;:::o;22789:419::-;22955:4;22993:2;22982:9;22978:18;22970:26;;23042:9;23036:4;23032:20;23028:1;23017:9;23013:17;23006:47;23070:131;23196:4;23070:131;:::i;:::-;23062:139;;22789:419;;;:::o;23214:410::-;23254:7;23277:20;23295:1;23277:20;:::i;:::-;23272:25;;23311:20;23329:1;23311:20;:::i;:::-;23306:25;;23366:1;23363;23359:9;23388:30;23406:11;23388:30;:::i;:::-;23377:41;;23567:1;23558:7;23554:15;23551:1;23548:22;23528:1;23521:9;23501:83;23478:139;;23597:18;;:::i;:::-;23478:139;23262:362;23214:410;;;;:::o;23630:180::-;23678:77;23675:1;23668:88;23775:4;23772:1;23765:15;23799:4;23796:1;23789:15;23816:185;23856:1;23873:20;23891:1;23873:20;:::i;:::-;23868:25;;23907:20;23925:1;23907:20;:::i;:::-;23902:25;;23946:1;23936:35;;23951:18;;:::i;:::-;23936:35;23993:1;23990;23986:9;23981:14;;23816:185;;;;:::o;24007:194::-;24047:4;24067:20;24085:1;24067:20;:::i;:::-;24062:25;;24101:20;24119:1;24101:20;:::i;:::-;24096:25;;24145:1;24142;24138:9;24130:17;;24169:1;24163:4;24160:11;24157:37;;;24174:18;;:::i;:::-;24157:37;24007:194;;;;:::o;24207:225::-;24347:34;24343:1;24335:6;24331:14;24324:58;24416:8;24411:2;24403:6;24399:15;24392:33;24207:225;:::o;24438:366::-;24580:3;24601:67;24665:2;24660:3;24601:67;:::i;:::-;24594:74;;24677:93;24766:3;24677:93;:::i;:::-;24795:2;24790:3;24786:12;24779:19;;24438:366;;;:::o;24810:419::-;24976:4;25014:2;25003:9;24999:18;24991:26;;25063:9;25057:4;25053:20;25049:1;25038:9;25034:17;25027:47;25091:131;25217:4;25091:131;:::i;:::-;25083:139;;24810:419;;;:::o;25235:442::-;25384:4;25422:2;25411:9;25407:18;25399:26;;25435:71;25503:1;25492:9;25488:17;25479:6;25435:71;:::i;:::-;25516:72;25584:2;25573:9;25569:18;25560:6;25516:72;:::i;:::-;25598;25666:2;25655:9;25651:18;25642:6;25598:72;:::i;:::-;25235:442;;;;;;:::o;25683:147::-;25784:11;25821:3;25806:18;;25683:147;;;;:::o;25836:114::-;;:::o;25956:398::-;26115:3;26136:83;26217:1;26212:3;26136:83;:::i;:::-;26129:90;;26228:93;26317:3;26228:93;:::i;:::-;26346:1;26341:3;26337:11;26330:18;;25956:398;;;:::o;26360:379::-;26544:3;26566:147;26709:3;26566:147;:::i;:::-;26559:154;;26730:3;26723:10;;26360:379;;;:::o;26745:143::-;26802:5;26833:6;26827:13;26818:22;;26849:33;26876:5;26849:33;:::i;:::-;26745:143;;;;:::o;26894:351::-;26964:6;27013:2;27001:9;26992:7;26988:23;26984:32;26981:119;;;27019:79;;:::i;:::-;26981:119;27139:1;27164:64;27220:7;27211:6;27200:9;27196:22;27164:64;:::i;:::-;27154:74;;27110:128;26894:351;;;;:::o;27251:85::-;27296:7;27325:5;27314:16;;27251:85;;;:::o;27342:158::-;27400:9;27433:61;27451:42;27460:32;27486:5;27460:32;:::i;:::-;27451:42;:::i;:::-;27433:61;:::i;:::-;27420:74;;27342:158;;;:::o;27506:147::-;27601:45;27640:5;27601:45;:::i;:::-;27596:3;27589:58;27506:147;;:::o;27659:114::-;27726:6;27760:5;27754:12;27744:22;;27659:114;;;:::o;27779:184::-;27878:11;27912:6;27907:3;27900:19;27952:4;27947:3;27943:14;27928:29;;27779:184;;;;:::o;27969:132::-;28036:4;28059:3;28051:11;;28089:4;28084:3;28080:14;28072:22;;27969:132;;;:::o;28107:108::-;28184:24;28202:5;28184:24;:::i;:::-;28179:3;28172:37;28107:108;;:::o;28221:179::-;28290:10;28311:46;28353:3;28345:6;28311:46;:::i;:::-;28389:4;28384:3;28380:14;28366:28;;28221:179;;;;:::o;28406:113::-;28476:4;28508;28503:3;28499:14;28491:22;;28406:113;;;:::o;28555:732::-;28674:3;28703:54;28751:5;28703:54;:::i;:::-;28773:86;28852:6;28847:3;28773:86;:::i;:::-;28766:93;;28883:56;28933:5;28883:56;:::i;:::-;28962:7;28993:1;28978:284;29003:6;29000:1;28997:13;28978:284;;;29079:6;29073:13;29106:63;29165:3;29150:13;29106:63;:::i;:::-;29099:70;;29192:60;29245:6;29192:60;:::i;:::-;29182:70;;29038:224;29025:1;29022;29018:9;29013:14;;28978:284;;;28982:14;29278:3;29271:10;;28679:608;;;28555:732;;;;:::o;29293:831::-;29556:4;29594:3;29583:9;29579:19;29571:27;;29608:71;29676:1;29665:9;29661:17;29652:6;29608:71;:::i;:::-;29689:80;29765:2;29754:9;29750:18;29741:6;29689:80;:::i;:::-;29816:9;29810:4;29806:20;29801:2;29790:9;29786:18;29779:48;29844:108;29947:4;29938:6;29844:108;:::i;:::-;29836:116;;29962:72;30030:2;30019:9;30015:18;30006:6;29962:72;:::i;:::-;30044:73;30112:3;30101:9;30097:19;30088:6;30044:73;:::i;:::-;29293:831;;;;;;;;:::o;30130:807::-;30379:4;30417:3;30406:9;30402:19;30394:27;;30431:71;30499:1;30488:9;30484:17;30475:6;30431:71;:::i;:::-;30512:72;30580:2;30569:9;30565:18;30556:6;30512:72;:::i;:::-;30594:80;30670:2;30659:9;30655:18;30646:6;30594:80;:::i;:::-;30684;30760:2;30749:9;30745:18;30736:6;30684:80;:::i;:::-;30774:73;30842:3;30831:9;30827:19;30818:6;30774:73;:::i;:::-;30857;30925:3;30914:9;30910:19;30901:6;30857:73;:::i;:::-;30130:807;;;;;;;;;:::o;30943:143::-;31000:5;31031:6;31025:13;31016:22;;31047:33;31074:5;31047:33;:::i;:::-;30943:143;;;;:::o;31092:663::-;31180:6;31188;31196;31245:2;31233:9;31224:7;31220:23;31216:32;31213:119;;;31251:79;;:::i;:::-;31213:119;31371:1;31396:64;31452:7;31443:6;31432:9;31428:22;31396:64;:::i;:::-;31386:74;;31342:128;31509:2;31535:64;31591:7;31582:6;31571:9;31567:22;31535:64;:::i;:::-;31525:74;;31480:129;31648:2;31674:64;31730:7;31721:6;31710:9;31706:22;31674:64;:::i;:::-;31664:74;;31619:129;31092:663;;;;;:::o
Swarm Source
ipfs://4fc794628e81c69019f57a7fa1a1d7e2b9e8dca2711783dfc8004185e2d336d1
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.