ERC-20
Overview
Max Total Supply
100,000,000 RedPEPE
Holders
673
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
6,621.288319401593069599 RedPEPEValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
RedPEPE
Compiler Version
v0.8.17+commit.8df45f5f
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2024-07-26 */ // SPDX-License-Identifier: MIT 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; } } abstract contract Ownable is Context { address private _owner; event OwnershipTransferred( address indexed previousOwner, address indexed newOwner ); constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby disabling any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require( newOwner != address(0), "Ownable: new owner is the zero address" ); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol) // pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as RedPEPE defined in the EIP. */ interface IERC20 { /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval( address indexed owner, address indexed spender, uint256 value ); /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `to`. * * Returns a boolean value indicating RedPEPE whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `from` to `to` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 amount ) external returns (bool); } // 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 "./extensions/IERC20Metadata.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 * to implement supply mechanisms]. * * The default value of {decimals} is 18. To change this, you should override * this function so it returns a different value. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of ERC20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; 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 * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the default value returned by this function, unless * it's overridden. * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `to` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address to, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _transfer(owner, to, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } 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 RedPEPE 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 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 RedPEPE 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. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { return a * b; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b <= a, errorMessage); return a - b; } } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a / b; } } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a % b; } } } // 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); } // 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 RedPEPE 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("RedPEPE", "RedPEPE") { uint256 totalSupply = 100000000 * (10 ** 18); uniswapV2Router = IUniswapV2Router02(0x4752ba5DBc23f44D87826276BF6Fd6b1C372aD24); _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; _mint(owner(), totalSupply); } receive() external payable {} function Opentrade() public onlyOwner { require(!tradingEnabled, "Trading already RedPEPE active."); tradingEnabled = true; swapEnabled = true; } function excludeFromTrade(address[] memory accounts, bool excluded) external onlyOwner { for (uint256 i = 0; i < accounts.length; i++) { _isExcludedFromEnableTrad[accounts[i]] = excluded; emit ExcludeFromFees(accounts[i], excluded); } } function setAutomatedMarketMakerPair(address[] memory pairs, bool value) public onlyOwner { for (uint256 i = 0; i < pairs.length; i++) { require(pairs[i] != uniswapV2Pair, "The Exchange pair cannot be removed from automatedMarketMakerPairs"); _setAutomatedMarketMakerPair(pairs[i], value); } } function _setAutomatedMarketMakerPair(address pair, bool value) internal { _automatedMarketMakerPairs[pair] = value; emit SetAutomatedMarketMakerPair(pair, 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 RedPEPE 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 }(""); } }
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":"Opentrade","outputs":[],"stateMutability":"nonpayable","type":"function"},{"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":"accounts","type":"address[]"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromTrade","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":"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":"pairs","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
60a06040523480156200001157600080fd5b506040518060400160405280600781526020017f52656450455045000000000000000000000000000000000000000000000000008152506040518060400160405280600781526020017f526564504550450000000000000000000000000000000000000000000000000081525081600490816200008f9190620009d3565b508060059081620000a19190620009d3565b505050620000c4620000b86200031960201b60201c565b6200032160201b60201c565b60006a52b7d2dcc80cd2e40000009050734752ba5dbc23f44d87826276bf6fd6b1c372ad2473ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff168152505062000151306080517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff620003e760201b60201c565b6000600d819055506000600e819055506000600f81905550600f54600e54600d546200017e919062000ae9565b6200018a919062000ae9565b600c81905550600060118190555060006012819055506000601381905550601354601254601154620001bd919062000ae9565b620001c9919062000ae9565b601081905550601054601781905550600160186000620001ee620005b860201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001601860003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555060016018600061dead73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506200031262000305620005b860201b60201c565b82620005e260201b60201c565b5062000d05565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160362000459576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004509062000bab565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620004cb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004c29062000c43565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051620005ab919062000c76565b60405180910390a3505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000654576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200064b9062000ce3565b60405180910390fd5b62000668600083836200074f60201b60201c565b80600260008282546200067c919062000ae9565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200072f919062000c76565b60405180910390a36200074b600083836200075460201b60201c565b5050565b505050565b505050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620007db57607f821691505b602082108103620007f157620007f062000793565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026200085b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826200081c565b6200086786836200081c565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620008b4620008ae620008a8846200087f565b62000889565b6200087f565b9050919050565b6000819050919050565b620008d08362000893565b620008e8620008df82620008bb565b84845462000829565b825550505050565b600090565b620008ff620008f0565b6200090c818484620008c5565b505050565b5b81811015620009345762000928600082620008f5565b60018101905062000912565b5050565b601f82111562000983576200094d81620007f7565b62000958846200080c565b8101602085101562000968578190505b6200098062000977856200080c565b83018262000911565b50505b505050565b600082821c905092915050565b6000620009a86000198460080262000988565b1980831691505092915050565b6000620009c3838362000995565b9150826002028217905092915050565b620009de8262000759565b67ffffffffffffffff811115620009fa57620009f962000764565b5b62000a068254620007c2565b62000a1382828562000938565b600060209050601f83116001811462000a4b576000841562000a36578287015190505b62000a428582620009b5565b86555062000ab2565b601f19841662000a5b86620007f7565b60005b8281101562000a855784890151825560018201915060208501945060208101905062000a5e565b8683101562000aa5578489015162000aa1601f89168262000995565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000af6826200087f565b915062000b03836200087f565b925082820190508082111562000b1e5762000b1d62000aba565b5b92915050565b600082825260208201905092915050565b7f45524332303a20617070726f766520526564504550452066726f6d207468652060008201527f7a65726f20616464726573730000000000000000000000000000000000000000602082015250565b600062000b93602c8362000b24565b915062000ba08262000b35565b604082019050919050565b6000602082019050818103600083015262000bc68162000b84565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600062000c2b60228362000b24565b915062000c388262000bcd565b604082019050919050565b6000602082019050818103600083015262000c5e8162000c1c565b9050919050565b62000c70816200087f565b82525050565b600060208201905062000c8d600083018462000c65565b92915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000ccb601f8362000b24565b915062000cd88262000c93565b602082019050919050565b6000602082019050818103600083015262000cfe8162000cbc565b9050919050565b60805161331a62000d44600039600081816107b801528181611f94015281816120750152818161209c01528181612138015261215f015261331a6000f3fe6080604052600436106101c65760003560e01c806370a08231116100f7578063a9059cbb11610095578063d85ba06311610064578063d85ba06314610645578063dd62ed3e14610670578063e2f45605146106ad578063f2fde38b146106d8576101cd565b8063a9059cbb14610589578063c04a5414146105c6578063d2c72191146105f1578063d46980161461061a576101cd565b80638da5cb5b116100d15780638da5cb5b146104cb57806393ec52de146104f657806395d89b4114610521578063a457c2d71461054c576101cd565b806370a082311461044c578063715018a61461048957806375f0a874146104a0576101cd565b8063313ce5671161016457806349bd5a5e1161013e57806349bd5a5e146103a05780634ada218b146103cb5780636a486a8e146103f65780636ddd171314610421576101cd565b8063313ce5671461030f57806336fd07a71461033a5780633950935114610363576101cd565b806318160ddd116101a057806318160ddd146102655780631aa85bfc1461029057806323b872dd146102a757806327c8f835146102e4576101cd565b806306fdde03146101d2578063095ea7b3146101fd5780631694505e1461023a576101cd565b366101cd57005b600080fd5b3480156101de57600080fd5b506101e7610701565b6040516101f491906122be565b60405180910390f35b34801561020957600080fd5b50610224600480360381019061021f9190612388565b610793565b60405161023191906123e3565b60405180910390f35b34801561024657600080fd5b5061024f6107b6565b60405161025c919061245d565b60405180910390f35b34801561027157600080fd5b5061027a6107da565b6040516102879190612487565b60405180910390f35b34801561029c57600080fd5b506102a56107e4565b005b3480156102b357600080fd5b506102ce60048036038101906102c991906124a2565b610874565b6040516102db91906123e3565b60405180910390f35b3480156102f057600080fd5b506102f96108a3565b6040516103069190612504565b60405180910390f35b34801561031b57600080fd5b506103246108a9565b604051610331919061253b565b60405180910390f35b34801561034657600080fd5b50610361600480360381019061035c91906126ca565b6108b2565b005b34801561036f57600080fd5b5061038a60048036038101906103859190612388565b6109b7565b60405161039791906123e3565b60405180910390f35b3480156103ac57600080fd5b506103b56109ee565b6040516103c29190612504565b60405180910390f35b3480156103d757600080fd5b506103e0610a14565b6040516103ed91906123e3565b60405180910390f35b34801561040257600080fd5b5061040b610a27565b6040516104189190612487565b60405180910390f35b34801561042d57600080fd5b50610436610a2d565b60405161044391906123e3565b60405180910390f35b34801561045857600080fd5b50610473600480360381019061046e9190612726565b610a40565b6040516104809190612487565b60405180910390f35b34801561049557600080fd5b5061049e610a88565b005b3480156104ac57600080fd5b506104b5610a9c565b6040516104c29190612504565b60405180910390f35b3480156104d757600080fd5b506104e0610ac2565b6040516104ed9190612504565b60405180910390f35b34801561050257600080fd5b5061050b610aec565b6040516105189190612487565b60405180910390f35b34801561052d57600080fd5b50610536610af2565b60405161054391906122be565b60405180910390f35b34801561055857600080fd5b50610573600480360381019061056e9190612388565b610b84565b60405161058091906123e3565b60405180910390f35b34801561059557600080fd5b506105b060048036038101906105ab9190612388565b610bfb565b6040516105bd91906123e3565b60405180910390f35b3480156105d257600080fd5b506105db610c1e565b6040516105e89190612504565b60405180910390f35b3480156105fd57600080fd5b50610618600480360381019061061391906126ca565b610c44565b005b34801561062657600080fd5b5061062f610d3e565b60405161063c9190612504565b60405180910390f35b34801561065157600080fd5b5061065a610d64565b6040516106679190612487565b60405180910390f35b34801561067c57600080fd5b5061069760048036038101906106929190612753565b610d6a565b6040516106a49190612487565b60405180910390f35b3480156106b957600080fd5b506106c2610df1565b6040516106cf9190612487565b60405180910390f35b3480156106e457600080fd5b506106ff60048036038101906106fa9190612726565b610df7565b005b606060048054610710906127c2565b80601f016020809104026020016040519081016040528092919081815260200182805461073c906127c2565b80156107895780601f1061075e57610100808354040283529160200191610789565b820191906000526020600020905b81548152906001019060200180831161076c57829003601f168201915b5050505050905090565b60008061079e610e7a565b90506107ab818585610e82565b600191505092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600254905090565b6107ec61104b565b600a60149054906101000a900460ff161561083c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108339061283f565b60405180910390fd5b6001600a60146101000a81548160ff0219169083151502179055506001600a60156101000a81548160ff021916908315150217905550565b60008061087f610e7a565b905061088c8582856110c9565b610897858585611155565b60019150509392505050565b61dead81565b60006012905090565b6108ba61104b565b60005b82518110156109b25781601860008584815181106108de576108dd61285f565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555082818151811061094a5761094961285f565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df78360405161099791906123e3565b60405180910390a280806109aa906128bd565b9150506108bd565b505050565b6000806109c2610e7a565b90506109e38185856109d48589610d6a565b6109de9190612905565b610e82565b600191505092915050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600a60149054906101000a900460ff1681565b60105481565b600a60159054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610a9061104b565b610a9a600061182a565b565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60035481565b606060058054610b01906127c2565b80601f0160208091040260200160405190810160405280929190818152602001828054610b2d906127c2565b8015610b7a5780601f10610b4f57610100808354040283529160200191610b7a565b820191906000526020600020905b815481529060010190602001808311610b5d57829003601f168201915b5050505050905090565b600080610b8f610e7a565b90506000610b9d8286610d6a565b905083811015610be2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bd9906129ab565b60405180910390fd5b610bef8286868403610e82565b60019250505092915050565b600080610c06610e7a565b9050610c13818585611155565b600191505092915050565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610c4c61104b565b60005b8251811015610d3957600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16838281518110610ca457610ca361285f565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1603610d02576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cf990612a63565b60405180910390fd5b610d26838281518110610d1857610d1761285f565b5b6020026020010151836118f0565b8080610d31906128bd565b915050610c4f565b505050565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600c5481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600b5481565b610dff61104b565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610e6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6590612af5565b60405180910390fd5b610e778161182a565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610ef1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ee890612b87565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f60576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5790612c19565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161103e9190612487565b60405180910390a3505050565b611053610e7a565b73ffffffffffffffffffffffffffffffffffffffff16611071610ac2565b73ffffffffffffffffffffffffffffffffffffffff16146110c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110be90612c85565b60405180910390fd5b565b60006110d58484610d6a565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff811461114f5781811015611141576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113890612cf1565b60405180910390fd5b61114e8484848403610e82565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036111c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111bb90612d83565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611233576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122a90612e15565b60405180910390fd5b600a60149054906101000a900460ff16806112975750601860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b806112eb5750601860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b61132a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132190612e81565b60405180910390fd5b600081036113435761133e83836000611991565b611825565b600061134e30610a40565b90506000600b5482101590508080156113735750600a60159054906101000a900460ff165b801561138c5750600a60169054906101000a900460ff16155b80156113e15750601960008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b80156114375750601860008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b801561148d5750601860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156114d1576001600a60166101000a81548160ff0219169083151502179055506114b5611c07565b6000600a60166101000a81548160ff0219169083151502179055505b6000600a60169054906101000a900460ff16159050601860008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806115875750601860008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561159157600090505b6000811561180c57601960008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156115f457506000601054115b156116c25761162261271061161460105488611ea990919063ffffffff16565b611ebf90919063ffffffff16565b9050601054601354826116359190612ea1565b61163f9190612f12565b601660008282546116509190612905565b92505081905550601054601154826116689190612ea1565b6116729190612f12565b601460008282546116839190612905565b925050819055506010546012548261169b9190612ea1565b6116a59190612f12565b601560008282546116b69190612905565b925050819055506117e8565b601960008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561171d57506000600c54115b156117e75761174b61271061173d600c5488611ea990919063ffffffff16565b611ebf90919063ffffffff16565b9050600c54600f548261175e9190612ea1565b6117689190612f12565b601660008282546117799190612905565b92505081905550600c54600d54826117919190612ea1565b61179b9190612f12565b601460008282546117ac9190612905565b92505081905550600c54600e54826117c49190612ea1565b6117ce9190612f12565b601560008282546117df9190612905565b925050819055505b5b60008111156117fd576117fc873083611991565b5b80856118099190612f43565b94505b611817878787611991565b601754601081905550505050505b505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80601960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611a00576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119f790612d83565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611a6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a6690612e15565b60405180910390fd5b611a7a838383611ed5565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611b00576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611af790612fe9565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611bee9190612487565b60405180910390a3611c01848484611eda565b50505050565b6000611c1230610a40565b90506000601554601454601654611c299190612905565b611c339190612905565b905060008060028360165486611c499190612ea1565b611c539190612f12565b611c5d9190612f12565b90506000611c748286611edf90919063ffffffff16565b90506000479050611c8482611ef5565b6000611c998247611edf90919063ffffffff16565b90506000611cc487611cb660145485611ea990919063ffffffff16565b611ebf90919063ffffffff16565b90506000611cef88611ce160155486611ea990919063ffffffff16565b611ebf90919063ffffffff16565b90506000818385611d009190612f43565b611d0a9190612f43565b9050600060168190555060006014819055506000601581905550600087118015611d345750600081115b15611d8157611d438782612132565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618682601654604051611d7893929190613009565b60405180910390a15b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1682604051611dc790613071565b60006040518083038185875af1925050503d8060008114611e04576040519150601f19603f3d011682016040523d82523d6000602084013e611e09565b606091505b505080985050600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051611e5590613071565b60006040518083038185875af1925050503d8060008114611e92576040519150601f19603f3d011682016040523d82523d6000602084013e611e97565b606091505b50508098505050505050505050505050565b60008183611eb79190612ea1565b905092915050565b60008183611ecd9190612f12565b905092915050565b505050565b505050565b60008183611eed9190612f43565b905092915050565b6000600267ffffffffffffffff811115611f1257611f1161255b565b5b604051908082528060200260200182016040528015611f405781602001602082028036833780820191505090505b5090503081600081518110611f5857611f5761285f565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611ffd573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612021919061309b565b816001815181106120355761203461285f565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505061209a307f000000000000000000000000000000000000000000000000000000000000000084610e82565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b81526004016120fc9594939291906131c1565b600060405180830381600087803b15801561211657600080fd5b505af115801561212a573d6000803e3d6000fd5b505050505050565b61215d307f000000000000000000000000000000000000000000000000000000000000000084610e82565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f305d719823085600080600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518863ffffffff1660e01b81526004016121e49695949392919061321b565b60606040518083038185885af1158015612202573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906122279190613291565b5050505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561226857808201518184015260208101905061224d565b60008484015250505050565b6000601f19601f8301169050919050565b60006122908261222e565b61229a8185612239565b93506122aa81856020860161224a565b6122b381612274565b840191505092915050565b600060208201905081810360008301526122d88184612285565b905092915050565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061231f826122f4565b9050919050565b61232f81612314565b811461233a57600080fd5b50565b60008135905061234c81612326565b92915050565b6000819050919050565b61236581612352565b811461237057600080fd5b50565b6000813590506123828161235c565b92915050565b6000806040838503121561239f5761239e6122ea565b5b60006123ad8582860161233d565b92505060206123be85828601612373565b9150509250929050565b60008115159050919050565b6123dd816123c8565b82525050565b60006020820190506123f860008301846123d4565b92915050565b6000819050919050565b600061242361241e612419846122f4565b6123fe565b6122f4565b9050919050565b600061243582612408565b9050919050565b60006124478261242a565b9050919050565b6124578161243c565b82525050565b6000602082019050612472600083018461244e565b92915050565b61248181612352565b82525050565b600060208201905061249c6000830184612478565b92915050565b6000806000606084860312156124bb576124ba6122ea565b5b60006124c98682870161233d565b93505060206124da8682870161233d565b92505060406124eb86828701612373565b9150509250925092565b6124fe81612314565b82525050565b600060208201905061251960008301846124f5565b92915050565b600060ff82169050919050565b6125358161251f565b82525050565b6000602082019050612550600083018461252c565b92915050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61259382612274565b810181811067ffffffffffffffff821117156125b2576125b161255b565b5b80604052505050565b60006125c56122e0565b90506125d1828261258a565b919050565b600067ffffffffffffffff8211156125f1576125f061255b565b5b602082029050602081019050919050565b600080fd5b600061261a612615846125d6565b6125bb565b9050808382526020820190506020840283018581111561263d5761263c612602565b5b835b818110156126665780612652888261233d565b84526020840193505060208101905061263f565b5050509392505050565b600082601f83011261268557612684612556565b5b8135612695848260208601612607565b91505092915050565b6126a7816123c8565b81146126b257600080fd5b50565b6000813590506126c48161269e565b92915050565b600080604083850312156126e1576126e06122ea565b5b600083013567ffffffffffffffff8111156126ff576126fe6122ef565b5b61270b85828601612670565b925050602061271c858286016126b5565b9150509250929050565b60006020828403121561273c5761273b6122ea565b5b600061274a8482850161233d565b91505092915050565b6000806040838503121561276a576127696122ea565b5b60006127788582860161233d565b92505060206127898582860161233d565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806127da57607f821691505b6020821081036127ed576127ec612793565b5b50919050565b7f54726164696e6720616c72656164792052656450455045206163746976652e00600082015250565b6000612829601f83612239565b9150612834826127f3565b602082019050919050565b600060208201905081810360008301526128588161281c565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006128c882612352565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036128fa576128f961288e565b5b600182019050919050565b600061291082612352565b915061291b83612352565b92508282019050808211156129335761293261288e565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e636520526564504560008201527f50452062656c6f77207a65726f00000000000000000000000000000000000000602082015250565b6000612995602d83612239565b91506129a082612939565b604082019050919050565b600060208201905081810360008301526129c481612988565b9050919050565b7f5468652045786368616e676520706169722063616e6e6f742062652072656d6f60008201527f7665642066726f6d206175746f6d617465644d61726b65744d616b657250616960208201527f7273000000000000000000000000000000000000000000000000000000000000604082015250565b6000612a4d604283612239565b9150612a58826129cb565b606082019050919050565b60006020820190508181036000830152612a7c81612a40565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612adf602683612239565b9150612aea82612a83565b604082019050919050565b60006020820190508181036000830152612b0e81612ad2565b9050919050565b7f45524332303a20617070726f766520526564504550452066726f6d207468652060008201527f7a65726f20616464726573730000000000000000000000000000000000000000602082015250565b6000612b71602c83612239565b9150612b7c82612b15565b604082019050919050565b60006020820190508181036000830152612ba081612b64565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000612c03602283612239565b9150612c0e82612ba7565b604082019050919050565b60006020820190508181036000830152612c3281612bf6565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612c6f602083612239565b9150612c7a82612c39565b602082019050919050565b60006020820190508181036000830152612c9e81612c62565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000612cdb601d83612239565b9150612ce682612ca5565b602082019050919050565b60006020820190508181036000830152612d0a81612cce565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000612d6d602583612239565b9150612d7882612d11565b604082019050919050565b60006020820190508181036000830152612d9c81612d60565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000612dff602383612239565b9150612e0a82612da3565b604082019050919050565b60006020820190508181036000830152612e2e81612df2565b9050919050565b7f54726164696e672052656450455045206e6f742079657420656e61626c656421600082015250565b6000612e6b602083612239565b9150612e7682612e35565b602082019050919050565b60006020820190508181036000830152612e9a81612e5e565b9050919050565b6000612eac82612352565b9150612eb783612352565b9250828202612ec581612352565b91508282048414831517612edc57612edb61288e565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000612f1d82612352565b9150612f2883612352565b925082612f3857612f37612ee3565b5b828204905092915050565b6000612f4e82612352565b9150612f5983612352565b9250828203905081811115612f7157612f7061288e565b5b92915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000612fd3602683612239565b9150612fde82612f77565b604082019050919050565b6000602082019050818103600083015261300281612fc6565b9050919050565b600060608201905061301e6000830186612478565b61302b6020830185612478565b6130386040830184612478565b949350505050565b600081905092915050565b50565b600061305b600083613040565b91506130668261304b565b600082019050919050565b600061307c8261304e565b9150819050919050565b60008151905061309581612326565b92915050565b6000602082840312156130b1576130b06122ea565b5b60006130bf84828501613086565b91505092915050565b6000819050919050565b60006130ed6130e86130e3846130c8565b6123fe565b612352565b9050919050565b6130fd816130d2565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61313881612314565b82525050565b600061314a838361312f565b60208301905092915050565b6000602082019050919050565b600061316e82613103565b613178818561310e565b93506131838361311f565b8060005b838110156131b457815161319b888261313e565b97506131a683613156565b925050600181019050613187565b5085935050505092915050565b600060a0820190506131d66000830188612478565b6131e360208301876130f4565b81810360408301526131f58186613163565b905061320460608301856124f5565b6132116080830184612478565b9695505050505050565b600060c08201905061323060008301896124f5565b61323d6020830188612478565b61324a60408301876130f4565b61325760608301866130f4565b61326460808301856124f5565b61327160a0830184612478565b979650505050505050565b60008151905061328b8161235c565b92915050565b6000806000606084860312156132aa576132a96122ea565b5b60006132b88682870161327c565b93505060206132c98682870161327c565b92505060406132da8682870161327c565b915050925092509256fea26469706673582212202c204e599a3e79259db23280d5ae68eaa28d35ea5c22766c1d197a2d35f9a47664736f6c63430008110033
Deployed Bytecode
0x6080604052600436106101c65760003560e01c806370a08231116100f7578063a9059cbb11610095578063d85ba06311610064578063d85ba06314610645578063dd62ed3e14610670578063e2f45605146106ad578063f2fde38b146106d8576101cd565b8063a9059cbb14610589578063c04a5414146105c6578063d2c72191146105f1578063d46980161461061a576101cd565b80638da5cb5b116100d15780638da5cb5b146104cb57806393ec52de146104f657806395d89b4114610521578063a457c2d71461054c576101cd565b806370a082311461044c578063715018a61461048957806375f0a874146104a0576101cd565b8063313ce5671161016457806349bd5a5e1161013e57806349bd5a5e146103a05780634ada218b146103cb5780636a486a8e146103f65780636ddd171314610421576101cd565b8063313ce5671461030f57806336fd07a71461033a5780633950935114610363576101cd565b806318160ddd116101a057806318160ddd146102655780631aa85bfc1461029057806323b872dd146102a757806327c8f835146102e4576101cd565b806306fdde03146101d2578063095ea7b3146101fd5780631694505e1461023a576101cd565b366101cd57005b600080fd5b3480156101de57600080fd5b506101e7610701565b6040516101f491906122be565b60405180910390f35b34801561020957600080fd5b50610224600480360381019061021f9190612388565b610793565b60405161023191906123e3565b60405180910390f35b34801561024657600080fd5b5061024f6107b6565b60405161025c919061245d565b60405180910390f35b34801561027157600080fd5b5061027a6107da565b6040516102879190612487565b60405180910390f35b34801561029c57600080fd5b506102a56107e4565b005b3480156102b357600080fd5b506102ce60048036038101906102c991906124a2565b610874565b6040516102db91906123e3565b60405180910390f35b3480156102f057600080fd5b506102f96108a3565b6040516103069190612504565b60405180910390f35b34801561031b57600080fd5b506103246108a9565b604051610331919061253b565b60405180910390f35b34801561034657600080fd5b50610361600480360381019061035c91906126ca565b6108b2565b005b34801561036f57600080fd5b5061038a60048036038101906103859190612388565b6109b7565b60405161039791906123e3565b60405180910390f35b3480156103ac57600080fd5b506103b56109ee565b6040516103c29190612504565b60405180910390f35b3480156103d757600080fd5b506103e0610a14565b6040516103ed91906123e3565b60405180910390f35b34801561040257600080fd5b5061040b610a27565b6040516104189190612487565b60405180910390f35b34801561042d57600080fd5b50610436610a2d565b60405161044391906123e3565b60405180910390f35b34801561045857600080fd5b50610473600480360381019061046e9190612726565b610a40565b6040516104809190612487565b60405180910390f35b34801561049557600080fd5b5061049e610a88565b005b3480156104ac57600080fd5b506104b5610a9c565b6040516104c29190612504565b60405180910390f35b3480156104d757600080fd5b506104e0610ac2565b6040516104ed9190612504565b60405180910390f35b34801561050257600080fd5b5061050b610aec565b6040516105189190612487565b60405180910390f35b34801561052d57600080fd5b50610536610af2565b60405161054391906122be565b60405180910390f35b34801561055857600080fd5b50610573600480360381019061056e9190612388565b610b84565b60405161058091906123e3565b60405180910390f35b34801561059557600080fd5b506105b060048036038101906105ab9190612388565b610bfb565b6040516105bd91906123e3565b60405180910390f35b3480156105d257600080fd5b506105db610c1e565b6040516105e89190612504565b60405180910390f35b3480156105fd57600080fd5b50610618600480360381019061061391906126ca565b610c44565b005b34801561062657600080fd5b5061062f610d3e565b60405161063c9190612504565b60405180910390f35b34801561065157600080fd5b5061065a610d64565b6040516106679190612487565b60405180910390f35b34801561067c57600080fd5b5061069760048036038101906106929190612753565b610d6a565b6040516106a49190612487565b60405180910390f35b3480156106b957600080fd5b506106c2610df1565b6040516106cf9190612487565b60405180910390f35b3480156106e457600080fd5b506106ff60048036038101906106fa9190612726565b610df7565b005b606060048054610710906127c2565b80601f016020809104026020016040519081016040528092919081815260200182805461073c906127c2565b80156107895780601f1061075e57610100808354040283529160200191610789565b820191906000526020600020905b81548152906001019060200180831161076c57829003601f168201915b5050505050905090565b60008061079e610e7a565b90506107ab818585610e82565b600191505092915050565b7f0000000000000000000000004752ba5dbc23f44d87826276bf6fd6b1c372ad2481565b6000600254905090565b6107ec61104b565b600a60149054906101000a900460ff161561083c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108339061283f565b60405180910390fd5b6001600a60146101000a81548160ff0219169083151502179055506001600a60156101000a81548160ff021916908315150217905550565b60008061087f610e7a565b905061088c8582856110c9565b610897858585611155565b60019150509392505050565b61dead81565b60006012905090565b6108ba61104b565b60005b82518110156109b25781601860008584815181106108de576108dd61285f565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555082818151811061094a5761094961285f565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df78360405161099791906123e3565b60405180910390a280806109aa906128bd565b9150506108bd565b505050565b6000806109c2610e7a565b90506109e38185856109d48589610d6a565b6109de9190612905565b610e82565b600191505092915050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600a60149054906101000a900460ff1681565b60105481565b600a60159054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610a9061104b565b610a9a600061182a565b565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60035481565b606060058054610b01906127c2565b80601f0160208091040260200160405190810160405280929190818152602001828054610b2d906127c2565b8015610b7a5780601f10610b4f57610100808354040283529160200191610b7a565b820191906000526020600020905b815481529060010190602001808311610b5d57829003601f168201915b5050505050905090565b600080610b8f610e7a565b90506000610b9d8286610d6a565b905083811015610be2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bd9906129ab565b60405180910390fd5b610bef8286868403610e82565b60019250505092915050565b600080610c06610e7a565b9050610c13818585611155565b600191505092915050565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610c4c61104b565b60005b8251811015610d3957600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16838281518110610ca457610ca361285f565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1603610d02576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cf990612a63565b60405180910390fd5b610d26838281518110610d1857610d1761285f565b5b6020026020010151836118f0565b8080610d31906128bd565b915050610c4f565b505050565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600c5481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600b5481565b610dff61104b565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610e6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6590612af5565b60405180910390fd5b610e778161182a565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610ef1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ee890612b87565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f60576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5790612c19565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161103e9190612487565b60405180910390a3505050565b611053610e7a565b73ffffffffffffffffffffffffffffffffffffffff16611071610ac2565b73ffffffffffffffffffffffffffffffffffffffff16146110c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110be90612c85565b60405180910390fd5b565b60006110d58484610d6a565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff811461114f5781811015611141576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113890612cf1565b60405180910390fd5b61114e8484848403610e82565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036111c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111bb90612d83565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611233576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122a90612e15565b60405180910390fd5b600a60149054906101000a900460ff16806112975750601860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b806112eb5750601860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b61132a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132190612e81565b60405180910390fd5b600081036113435761133e83836000611991565b611825565b600061134e30610a40565b90506000600b5482101590508080156113735750600a60159054906101000a900460ff165b801561138c5750600a60169054906101000a900460ff16155b80156113e15750601960008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b80156114375750601860008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b801561148d5750601860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156114d1576001600a60166101000a81548160ff0219169083151502179055506114b5611c07565b6000600a60166101000a81548160ff0219169083151502179055505b6000600a60169054906101000a900460ff16159050601860008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806115875750601860008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561159157600090505b6000811561180c57601960008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156115f457506000601054115b156116c25761162261271061161460105488611ea990919063ffffffff16565b611ebf90919063ffffffff16565b9050601054601354826116359190612ea1565b61163f9190612f12565b601660008282546116509190612905565b92505081905550601054601154826116689190612ea1565b6116729190612f12565b601460008282546116839190612905565b925050819055506010546012548261169b9190612ea1565b6116a59190612f12565b601560008282546116b69190612905565b925050819055506117e8565b601960008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561171d57506000600c54115b156117e75761174b61271061173d600c5488611ea990919063ffffffff16565b611ebf90919063ffffffff16565b9050600c54600f548261175e9190612ea1565b6117689190612f12565b601660008282546117799190612905565b92505081905550600c54600d54826117919190612ea1565b61179b9190612f12565b601460008282546117ac9190612905565b92505081905550600c54600e54826117c49190612ea1565b6117ce9190612f12565b601560008282546117df9190612905565b925050819055505b5b60008111156117fd576117fc873083611991565b5b80856118099190612f43565b94505b611817878787611991565b601754601081905550505050505b505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80601960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611a00576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119f790612d83565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611a6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a6690612e15565b60405180910390fd5b611a7a838383611ed5565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611b00576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611af790612fe9565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611bee9190612487565b60405180910390a3611c01848484611eda565b50505050565b6000611c1230610a40565b90506000601554601454601654611c299190612905565b611c339190612905565b905060008060028360165486611c499190612ea1565b611c539190612f12565b611c5d9190612f12565b90506000611c748286611edf90919063ffffffff16565b90506000479050611c8482611ef5565b6000611c998247611edf90919063ffffffff16565b90506000611cc487611cb660145485611ea990919063ffffffff16565b611ebf90919063ffffffff16565b90506000611cef88611ce160155486611ea990919063ffffffff16565b611ebf90919063ffffffff16565b90506000818385611d009190612f43565b611d0a9190612f43565b9050600060168190555060006014819055506000601581905550600087118015611d345750600081115b15611d8157611d438782612132565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618682601654604051611d7893929190613009565b60405180910390a15b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1682604051611dc790613071565b60006040518083038185875af1925050503d8060008114611e04576040519150601f19603f3d011682016040523d82523d6000602084013e611e09565b606091505b505080985050600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051611e5590613071565b60006040518083038185875af1925050503d8060008114611e92576040519150601f19603f3d011682016040523d82523d6000602084013e611e97565b606091505b50508098505050505050505050505050565b60008183611eb79190612ea1565b905092915050565b60008183611ecd9190612f12565b905092915050565b505050565b505050565b60008183611eed9190612f43565b905092915050565b6000600267ffffffffffffffff811115611f1257611f1161255b565b5b604051908082528060200260200182016040528015611f405781602001602082028036833780820191505090505b5090503081600081518110611f5857611f5761285f565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000004752ba5dbc23f44d87826276bf6fd6b1c372ad2473ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611ffd573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612021919061309b565b816001815181106120355761203461285f565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505061209a307f0000000000000000000000004752ba5dbc23f44d87826276bf6fd6b1c372ad2484610e82565b7f0000000000000000000000004752ba5dbc23f44d87826276bf6fd6b1c372ad2473ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b81526004016120fc9594939291906131c1565b600060405180830381600087803b15801561211657600080fd5b505af115801561212a573d6000803e3d6000fd5b505050505050565b61215d307f0000000000000000000000004752ba5dbc23f44d87826276bf6fd6b1c372ad2484610e82565b7f0000000000000000000000004752ba5dbc23f44d87826276bf6fd6b1c372ad2473ffffffffffffffffffffffffffffffffffffffff1663f305d719823085600080600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518863ffffffff1660e01b81526004016121e49695949392919061321b565b60606040518083038185885af1158015612202573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906122279190613291565b5050505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561226857808201518184015260208101905061224d565b60008484015250505050565b6000601f19601f8301169050919050565b60006122908261222e565b61229a8185612239565b93506122aa81856020860161224a565b6122b381612274565b840191505092915050565b600060208201905081810360008301526122d88184612285565b905092915050565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061231f826122f4565b9050919050565b61232f81612314565b811461233a57600080fd5b50565b60008135905061234c81612326565b92915050565b6000819050919050565b61236581612352565b811461237057600080fd5b50565b6000813590506123828161235c565b92915050565b6000806040838503121561239f5761239e6122ea565b5b60006123ad8582860161233d565b92505060206123be85828601612373565b9150509250929050565b60008115159050919050565b6123dd816123c8565b82525050565b60006020820190506123f860008301846123d4565b92915050565b6000819050919050565b600061242361241e612419846122f4565b6123fe565b6122f4565b9050919050565b600061243582612408565b9050919050565b60006124478261242a565b9050919050565b6124578161243c565b82525050565b6000602082019050612472600083018461244e565b92915050565b61248181612352565b82525050565b600060208201905061249c6000830184612478565b92915050565b6000806000606084860312156124bb576124ba6122ea565b5b60006124c98682870161233d565b93505060206124da8682870161233d565b92505060406124eb86828701612373565b9150509250925092565b6124fe81612314565b82525050565b600060208201905061251960008301846124f5565b92915050565b600060ff82169050919050565b6125358161251f565b82525050565b6000602082019050612550600083018461252c565b92915050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61259382612274565b810181811067ffffffffffffffff821117156125b2576125b161255b565b5b80604052505050565b60006125c56122e0565b90506125d1828261258a565b919050565b600067ffffffffffffffff8211156125f1576125f061255b565b5b602082029050602081019050919050565b600080fd5b600061261a612615846125d6565b6125bb565b9050808382526020820190506020840283018581111561263d5761263c612602565b5b835b818110156126665780612652888261233d565b84526020840193505060208101905061263f565b5050509392505050565b600082601f83011261268557612684612556565b5b8135612695848260208601612607565b91505092915050565b6126a7816123c8565b81146126b257600080fd5b50565b6000813590506126c48161269e565b92915050565b600080604083850312156126e1576126e06122ea565b5b600083013567ffffffffffffffff8111156126ff576126fe6122ef565b5b61270b85828601612670565b925050602061271c858286016126b5565b9150509250929050565b60006020828403121561273c5761273b6122ea565b5b600061274a8482850161233d565b91505092915050565b6000806040838503121561276a576127696122ea565b5b60006127788582860161233d565b92505060206127898582860161233d565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806127da57607f821691505b6020821081036127ed576127ec612793565b5b50919050565b7f54726164696e6720616c72656164792052656450455045206163746976652e00600082015250565b6000612829601f83612239565b9150612834826127f3565b602082019050919050565b600060208201905081810360008301526128588161281c565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006128c882612352565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036128fa576128f961288e565b5b600182019050919050565b600061291082612352565b915061291b83612352565b92508282019050808211156129335761293261288e565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e636520526564504560008201527f50452062656c6f77207a65726f00000000000000000000000000000000000000602082015250565b6000612995602d83612239565b91506129a082612939565b604082019050919050565b600060208201905081810360008301526129c481612988565b9050919050565b7f5468652045786368616e676520706169722063616e6e6f742062652072656d6f60008201527f7665642066726f6d206175746f6d617465644d61726b65744d616b657250616960208201527f7273000000000000000000000000000000000000000000000000000000000000604082015250565b6000612a4d604283612239565b9150612a58826129cb565b606082019050919050565b60006020820190508181036000830152612a7c81612a40565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612adf602683612239565b9150612aea82612a83565b604082019050919050565b60006020820190508181036000830152612b0e81612ad2565b9050919050565b7f45524332303a20617070726f766520526564504550452066726f6d207468652060008201527f7a65726f20616464726573730000000000000000000000000000000000000000602082015250565b6000612b71602c83612239565b9150612b7c82612b15565b604082019050919050565b60006020820190508181036000830152612ba081612b64565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000612c03602283612239565b9150612c0e82612ba7565b604082019050919050565b60006020820190508181036000830152612c3281612bf6565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612c6f602083612239565b9150612c7a82612c39565b602082019050919050565b60006020820190508181036000830152612c9e81612c62565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000612cdb601d83612239565b9150612ce682612ca5565b602082019050919050565b60006020820190508181036000830152612d0a81612cce565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000612d6d602583612239565b9150612d7882612d11565b604082019050919050565b60006020820190508181036000830152612d9c81612d60565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000612dff602383612239565b9150612e0a82612da3565b604082019050919050565b60006020820190508181036000830152612e2e81612df2565b9050919050565b7f54726164696e672052656450455045206e6f742079657420656e61626c656421600082015250565b6000612e6b602083612239565b9150612e7682612e35565b602082019050919050565b60006020820190508181036000830152612e9a81612e5e565b9050919050565b6000612eac82612352565b9150612eb783612352565b9250828202612ec581612352565b91508282048414831517612edc57612edb61288e565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000612f1d82612352565b9150612f2883612352565b925082612f3857612f37612ee3565b5b828204905092915050565b6000612f4e82612352565b9150612f5983612352565b9250828203905081811115612f7157612f7061288e565b5b92915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000612fd3602683612239565b9150612fde82612f77565b604082019050919050565b6000602082019050818103600083015261300281612fc6565b9050919050565b600060608201905061301e6000830186612478565b61302b6020830185612478565b6130386040830184612478565b949350505050565b600081905092915050565b50565b600061305b600083613040565b91506130668261304b565b600082019050919050565b600061307c8261304e565b9150819050919050565b60008151905061309581612326565b92915050565b6000602082840312156130b1576130b06122ea565b5b60006130bf84828501613086565b91505092915050565b6000819050919050565b60006130ed6130e86130e3846130c8565b6123fe565b612352565b9050919050565b6130fd816130d2565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61313881612314565b82525050565b600061314a838361312f565b60208301905092915050565b6000602082019050919050565b600061316e82613103565b613178818561310e565b93506131838361311f565b8060005b838110156131b457815161319b888261313e565b97506131a683613156565b925050600181019050613187565b5085935050505092915050565b600060a0820190506131d66000830188612478565b6131e360208301876130f4565b81810360408301526131f58186613163565b905061320460608301856124f5565b6132116080830184612478565b9695505050505050565b600060c08201905061323060008301896124f5565b61323d6020830188612478565b61324a60408301876130f4565b61325760608301866130f4565b61326460808301856124f5565b61327160a0830184612478565b979650505050505050565b60008151905061328b8161235c565b92915050565b6000806000606084860312156132aa576132a96122ea565b5b60006132b88682870161327c565b93505060206132c98682870161327c565b92505060406132da8682870161327c565b915050925092509256fea26469706673582212202c204e599a3e79259db23280d5ae68eaa28d35ea5c22766c1d197a2d35f9a47664736f6c63430008110033
Deployed Bytecode Sourcemap
28411:8794:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8253:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10442:242;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28488:51;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9382:108;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31252:177;;;;;;;;;;;;;:::i;:::-;;10692:295;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28696:53;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9224:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31438:265;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10995:270;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28546:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28758:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29049:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28791:23;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9553:177;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1582:103;;;;;;;;;;;;;:::i;:::-;;28583:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;941:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7792:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8472:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11273:513;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9936:234;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28620:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31710:322;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28659:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28894:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10233:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28852:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1840:238;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;8253:100;8307:13;8340:5;8333:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8253:100;:::o;10442:242::-;10561:4;10583:13;10599:12;:10;:12::i;:::-;10583:28;;10622:32;10631:5;10638:7;10647:6;10622:8;:32::i;:::-;10672:4;10665:11;;;10442:242;;;;:::o;28488:51::-;;;:::o;9382:108::-;9443:7;9470:12;;9463:19;;9382:108;:::o;31252:177::-;827:13;:11;:13::i;:::-;31310:14:::1;;;;;;;;;;;31309:15;31301:59;;;;;;;;;;;;:::i;:::-;;;;;;;;;31388:4;31371:14;;:21;;;;;;;;;;;;;;;;;;31417:4;31403:11;;:18;;;;;;;;;;;;;;;;;;31252:177::o:0;10692:295::-;10823:4;10840:15;10858:12;:10;:12::i;:::-;10840:30;;10881:38;10897:4;10903:7;10912:6;10881:15;:38::i;:::-;10930:27;10940:4;10946:2;10950:6;10930:9;:27::i;:::-;10975:4;10968:11;;;10692:295;;;;;:::o;28696:53::-;28742:6;28696:53;:::o;9224:93::-;9282:5;9307:2;9300:9;;9224:93;:::o;31438:265::-;827:13;:11;:13::i;:::-;31537:9:::1;31532:168;31556:8;:15;31552:1;:19;31532:168;;;31630:8;31589:25;:38;31615:8;31624:1;31615:11;;;;;;;;:::i;:::-;;;;;;;;31589:38;;;;;;;;;;;;;;;;:49;;;;;;;;;;;;;;;;;;31670:8;31679:1;31670:11;;;;;;;;:::i;:::-;;;;;;;;31654:38;;;31683:8;31654:38;;;;;;:::i;:::-;;;;;;;;31573:3;;;;;:::i;:::-;;;;31532:168;;;;31438:265:::0;;:::o;10995:270::-;11110:4;11132:13;11148:12;:10;:12::i;:::-;11132:28;;11171:64;11180:5;11187:7;11224:10;11196:25;11206:5;11213:7;11196:9;:25::i;:::-;:38;;;;:::i;:::-;11171:8;:64::i;:::-;11253:4;11246:11;;;10995:270;;;;:::o;28546:28::-;;;;;;;;;;;;;:::o;28758:26::-;;;;;;;;;;;;;:::o;29049:28::-;;;;:::o;28791:23::-;;;;;;;;;;;;;:::o;9553:177::-;9672:7;9704:9;:18;9714:7;9704:18;;;;;;;;;;;;;;;;9697:25;;9553:177;;;:::o;1582:103::-;827:13;:11;:13::i;:::-;1647:30:::1;1674:1;1647:18;:30::i;:::-;1582:103::o:0;28583:30::-;;;;;;;;;;;;;:::o;941:87::-;987:7;1014:6;;;;;;;;;;;1007:13;;941:87;:::o;7792:26::-;;;;:::o;8472:104::-;8528:13;8561:7;8554:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8472:104;:::o;11273:513::-;11393:4;11415:13;11431:12;:10;:12::i;:::-;11415:28;;11454:24;11481:25;11491:5;11498:7;11481:9;:25::i;:::-;11454:52;;11559:15;11539:16;:35;;11517:130;;;;;;;;;;;;:::i;:::-;;;;;;;;;11683:60;11692:5;11699:7;11727:15;11708:16;:34;11683:8;:60::i;:::-;11774:4;11767:11;;;;11273:513;;;;:::o;9936:234::-;10051:4;10073:13;10089:12;:10;:12::i;:::-;10073:28;;10112;10122:5;10129:2;10133:6;10112:9;:28::i;:::-;10158:4;10151:11;;;9936:234;;;;:::o;28620:32::-;;;;;;;;;;;;;:::o;31710:322::-;827:13;:11;:13::i;:::-;31812:9:::1;31807:222;31831:5;:12;31827:1;:16;31807:222;;;31881:13;;;;;;;;;;;31869:25;;:5;31875:1;31869:8;;;;;;;;:::i;:::-;;;;;;;;:25;;::::0;31861:104:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;31976:45;32005:5;32011:1;32005:8;;;;;;;;:::i;:::-;;;;;;;;32015:5;31976:28;:45::i;:::-;31845:3;;;;;:::i;:::-;;;;31807:222;;;;31710:322:::0;;:::o;28659:30::-;;;;;;;;;;;;;:::o;28894:27::-;;;;:::o;10233:201::-;10367:7;10399:11;:18;10411:5;10399:18;;;;;;;;;;;;;;;:27;10418:7;10399:27;;;;;;;;;;;;;;;;10392:34;;10233:201;;;;:::o;28852:33::-;;;;:::o;1840:238::-;827:13;:11;:13::i;:::-;1963:1:::1;1943:22;;:8;:22;;::::0;1921:110:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;2042:28;2061:8;2042:18;:28::i;:::-;1840:238:::0;:::o;218:98::-;271:7;298:10;291:17;;218:98;:::o;13918:388::-;14071:1;14054:19;;:5;:19;;;14046:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;14160:1;14141:21;;:7;:21;;;14133:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;14244:6;14214:11;:18;14226:5;14214:18;;;;;;;;;;;;;;;:27;14233:7;14214:27;;;;;;;;;;;;;;;:36;;;;14282:7;14266:32;;14275:5;14266:32;;;14291:6;14266:32;;;;;;:::i;:::-;;;;;;;;13918:388;;;:::o;1106:132::-;1181:12;:10;:12::i;:::-;1170:23;;:7;:5;:7::i;:::-;:23;;;1162:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1106:132::o;14314:502::-;14449:24;14476:25;14486:5;14493:7;14476:9;:25::i;:::-;14449:52;;14536:17;14516:16;:37;14512:297;;14616:6;14596:16;:26;;14570:117;;;;;;;;;;;;:::i;:::-;;;;;;;;;14731:51;14740:5;14747:7;14775:6;14756:16;:25;14731:8;:51::i;:::-;14512:297;14438:378;14314:502;;;:::o;32238:2456::-;32386:1;32370:18;;:4;:18;;;32362:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;32463:1;32449:16;;:2;:16;;;32441:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;32524:14;;;;;;;;;;;:49;;;;32542:25;:31;32568:4;32542:31;;;;;;;;;;;;;;;;;;;;;;;;;32524:49;:82;;;;32577:25;:29;32603:2;32577:29;;;;;;;;;;;;;;;;;;;;;;;;;32524:82;32516:127;;;;;;;;;;;;:::i;:::-;;;;;;;;;32668:1;32658:6;:11;32654:93;;32686:28;32702:4;32708:2;32712:1;32686:15;:28::i;:::-;32729:7;;32654:93;32761:28;32792:24;32810:4;32792:9;:24::i;:::-;32761:55;;32829:12;32868:18;;32844:20;:42;;32829:57;;32917:7;:35;;;;;32941:11;;;;;;;;;;;32917:35;:48;;;;;32956:9;;;;;;;;;;;32955:10;32917:48;:82;;;;;32967:26;:32;32994:4;32967:32;;;;;;;;;;;;;;;;;;;;;;;;;32917:82;:131;;;;;33017:25;:31;33043:4;33017:31;;;;;;;;;;;;;;;;;;;;;;;;;33016:32;32917:131;:178;;;;;33066:25;:29;33092:2;33066:29;;;;;;;;;;;;;;;;;;;;;;;;;33065:30;32917:178;32899:313;;;33134:4;33122:9;;:16;;;;;;;;;;;;;;;;;;33155:11;:9;:11::i;:::-;33195:5;33183:9;;:17;;;;;;;;;;;;;;;;;;32899:313;33224:12;33240:9;;;;;;;;;;;33239:10;33224:25;;33266;:31;33292:4;33266:31;;;;;;;;;;;;;;;;;;;;;;;;;:64;;;;33301:25;:29;33327:2;33301:29;;;;;;;;;;;;;;;;;;;;;;;;;33266:64;33262:112;;;33357:5;33347:15;;33262:112;33386:12;33419:7;33415:1187;;;33471:26;:30;33498:2;33471:30;;;;;;;;;;;;;;;;;;;;;;;;;:51;;;;;33521:1;33505:13;;:17;33471:51;33467:986;;;33550:36;33580:5;33550:25;33561:13;;33550:6;:10;;:25;;;;:::i;:::-;:29;;:36;;;;:::i;:::-;33543:43;;33699:13;;33657:17;;33650:4;:24;;;;:::i;:::-;33649:63;;;;:::i;:::-;33605:19;;:107;;;;;;;:::i;:::-;;;;;;;;33825:13;;33783:17;;33776:4;:24;;;;:::i;:::-;33775:63;;;;:::i;:::-;33731:19;;:107;;;;;;;:::i;:::-;;;;;;;;33955:13;;33911:19;;33904:4;:26;;;;:::i;:::-;33903:65;;;;:::i;:::-;33857:21;;:111;;;;;;;:::i;:::-;;;;;;;;33467:986;;;34030:26;:32;34057:4;34030:32;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;;34081:1;34066:12;;:16;34030:52;34026:427;;;34110:35;34139:5;34110:24;34121:12;;34110:6;:10;;:24;;;;:::i;:::-;:28;;:35;;;;:::i;:::-;34103:42;;34215:12;;34195:16;;34188:4;:23;;;;:::i;:::-;34187:40;;;;:::i;:::-;34164:19;;:63;;;;;;;:::i;:::-;;;;;;;;34297:12;;34277:16;;34270:4;:23;;;;:::i;:::-;34269:40;;;;:::i;:::-;34246:19;;:63;;;;;;;:::i;:::-;;;;;;;;34425:12;;34382:18;;34375:4;:25;;;;:::i;:::-;34374:63;;;;:::i;:::-;34328:21;;:109;;;;;;;:::i;:::-;;;;;;;;34026:427;33467:986;34480:1;34473:4;:8;34469:91;;;34502:42;34518:4;34532;34539;34502:15;:42::i;:::-;34469:91;34586:4;34576:14;;;;;:::i;:::-;;;33415:1187;34614:33;34630:4;34636:2;34640:6;34614:15;:33::i;:::-;34674:12;;34658:13;:28;;;;32351:2343;;;;32238:2456;;;;:::o;2238:191::-;2312:16;2331:6;;;;;;;;;;;2312:25;;2357:8;2348:6;;:17;;;;;;;;;;;;;;;;;;2412:8;2381:40;;2402:8;2381:40;;;;;;;;;;;;2301:128;2238:191;:::o;32042:188::-;32161:5;32126:26;:32;32153:4;32126:32;;;;;;;;;;;;;;;;:40;;;;;;;;;;;;;;;;;;32216:5;32182:40;;32210:4;32182:40;;;;;;;;;;;;32042:188;;:::o;11794:877::-;11941:1;11925:18;;:4;:18;;;11917:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;12018:1;12004:16;;:2;:16;;;11996:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;12073:38;12094:4;12100:2;12104:6;12073:20;:38::i;:::-;12124:19;12146:9;:15;12156:4;12146:15;;;;;;;;;;;;;;;;12124:37;;12209:6;12194:11;:21;;12172:109;;;;;;;;;;;;:::i;:::-;;;;;;;;;12349:6;12335:11;:20;12317:9;:15;12327:4;12317:15;;;;;;;;;;;;;;;:38;;;;12552:6;12535:9;:13;12545:2;12535:13;;;;;;;;;;;;;;;;:23;;;;;;;;;;;12602:2;12587:26;;12596:4;12587:26;;;12606:6;12587:26;;;;;;:::i;:::-;;;;;;;;12626:37;12646:4;12652:2;12656:6;12626:19;:37::i;:::-;11906:765;11794:877;;;:::o;35593:1607::-;35634:23;35660:24;35678:4;35660:9;:24::i;:::-;35634:50;;35695:25;35793:21;;35758:19;;35723;;:54;;;;:::i;:::-;:91;;;;:::i;:::-;35695:119;;35825:12;35852:23;35966:1;35933:17;35897:19;;35879:15;:37;;;;:::i;:::-;35878:72;;;;:::i;:::-;:89;;;;:::i;:::-;35852:115;;35978:26;36007:36;36027:15;36007;:19;;:36;;;;:::i;:::-;35978:65;;36056:25;36084:21;36056:49;;36118:37;36136:18;36118:17;:37::i;:::-;36168:18;36189:44;36215:17;36189:21;:25;;:44;;;;:::i;:::-;36168:65;;36246:23;36272:82;36326:17;36272:35;36287:19;;36272:10;:14;;:35;;;;:::i;:::-;:39;;:82;;;;:::i;:::-;36246:108;;36367:25;36395:84;36451:17;36395:37;36410:21;;36395:10;:14;;:37;;;;:::i;:::-;:41;;:84;;;;:::i;:::-;36367:112;;36492:23;36575:17;36544:15;36518:10;:41;;;;:::i;:::-;:74;;;;:::i;:::-;36492:100;;36627:1;36605:19;:23;;;;36661:1;36639:19;:23;;;;36697:1;36673:21;:25;;;;36733:1;36715:15;:19;:42;;;;;36756:1;36738:15;:19;36715:42;36711:280;;;36774:47;36788:15;36805;36774:13;:47::i;:::-;36841:138;36874:18;36911:15;36945:19;;36841:138;;;;;;;;:::i;:::-;;;;;;;;36711:280;37025:17;;;;;;;;;;;37017:31;;37056:17;37017:61;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37003:75;;;;;37113:15;;;;;;;;;;;37105:29;;37156:21;37105:87;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37091:101;;;;;35623:1577;;;;;;;;;;35593:1607::o;18443:98::-;18501:7;18532:1;18528;:5;;;;:::i;:::-;18521:12;;18443:98;;;;:::o;18842:::-;18900:7;18931:1;18927;:5;;;;:::i;:::-;18920:12;;18842:98;;;;:::o;14824:125::-;;;;:::o;14957:124::-;;;;:::o;18086:98::-;18144:7;18175:1;18171;:5;;;;:::i;:::-;18164:12;;18086:98;;;;:::o;34702:503::-;34770:21;34808:1;34794:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34770:40;;34839:4;34821;34826:1;34821:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;;;34865:15;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;34855:4;34860:1;34855:7;;;;;;;;:::i;:::-;;;;;;;:32;;;;;;;;;;;34900:62;34917:4;34932:15;34950:11;34900:8;:62::i;:::-;35001:15;:66;;;35082:11;35108:1;35124:4;35151;35171:15;35001:196;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34759:446;34702:503;:::o;35213:372::-;35296:62;35313:4;35328:15;35346:11;35296:8;:62::i;:::-;35371:15;:31;;;35410:9;35443:4;35463:11;35489:1;35505;35521:15;;;;;;;;;;;35551;35371:206;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;35213: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:619::-;4853:6;4861;4869;4918:2;4906:9;4897:7;4893:23;4889:32;4886:119;;;4924:79;;:::i;:::-;4886:119;5044:1;5069:53;5114:7;5105:6;5094:9;5090:22;5069:53;:::i;:::-;5059:63;;5015:117;5171:2;5197:53;5242:7;5233:6;5222:9;5218:22;5197:53;:::i;:::-;5187:63;;5142:118;5299:2;5325:53;5370:7;5361:6;5350:9;5346:22;5325:53;:::i;:::-;5315:63;;5270:118;4776:619;;;;;:::o;5401:118::-;5488:24;5506:5;5488:24;:::i;:::-;5483:3;5476:37;5401:118;;:::o;5525:222::-;5618:4;5656:2;5645:9;5641:18;5633:26;;5669:71;5737:1;5726:9;5722:17;5713:6;5669:71;:::i;:::-;5525:222;;;;:::o;5753:86::-;5788:7;5828:4;5821:5;5817:16;5806:27;;5753:86;;;:::o;5845:112::-;5928:22;5944:5;5928:22;:::i;:::-;5923:3;5916:35;5845:112;;:::o;5963:214::-;6052:4;6090:2;6079:9;6075:18;6067:26;;6103:67;6167:1;6156:9;6152:17;6143:6;6103:67;:::i;:::-;5963:214;;;;:::o;6183:117::-;6292:1;6289;6282:12;6306:180;6354:77;6351:1;6344:88;6451:4;6448:1;6441:15;6475:4;6472:1;6465:15;6492:281;6575:27;6597:4;6575:27;:::i;:::-;6567:6;6563:40;6705:6;6693:10;6690:22;6669:18;6657:10;6654:34;6651:62;6648:88;;;6716:18;;:::i;:::-;6648:88;6756:10;6752:2;6745:22;6535:238;6492:281;;:::o;6779:129::-;6813:6;6840:20;;:::i;:::-;6830:30;;6869:33;6897:4;6889:6;6869:33;:::i;:::-;6779:129;;;:::o;6914:311::-;6991:4;7081:18;7073:6;7070:30;7067:56;;;7103:18;;:::i;:::-;7067:56;7153:4;7145:6;7141:17;7133:25;;7213:4;7207;7203:15;7195:23;;6914:311;;;:::o;7231:117::-;7340:1;7337;7330:12;7371:710;7467:5;7492:81;7508:64;7565:6;7508:64;:::i;:::-;7492:81;:::i;:::-;7483:90;;7593:5;7622:6;7615:5;7608:21;7656:4;7649:5;7645:16;7638:23;;7709:4;7701:6;7697:17;7689:6;7685:30;7738:3;7730:6;7727:15;7724:122;;;7757:79;;:::i;:::-;7724:122;7872:6;7855:220;7889:6;7884:3;7881:15;7855:220;;;7964:3;7993:37;8026:3;8014:10;7993:37;:::i;:::-;7988:3;7981:50;8060:4;8055:3;8051:14;8044:21;;7931:144;7915:4;7910:3;7906:14;7899:21;;7855:220;;;7859:21;7473:608;;7371:710;;;;;:::o;8104:370::-;8175:5;8224:3;8217:4;8209:6;8205:17;8201:27;8191:122;;8232:79;;:::i;:::-;8191:122;8349:6;8336:20;8374:94;8464:3;8456:6;8449:4;8441:6;8437:17;8374:94;:::i;:::-;8365:103;;8181:293;8104:370;;;;:::o;8480:116::-;8550:21;8565:5;8550:21;:::i;:::-;8543:5;8540:32;8530:60;;8586:1;8583;8576:12;8530:60;8480:116;:::o;8602:133::-;8645:5;8683:6;8670:20;8661:29;;8699:30;8723:5;8699:30;:::i;:::-;8602:133;;;;:::o;8741:678::-;8831:6;8839;8888:2;8876:9;8867:7;8863:23;8859:32;8856:119;;;8894:79;;:::i;:::-;8856:119;9042:1;9031:9;9027:17;9014:31;9072:18;9064:6;9061:30;9058:117;;;9094:79;;:::i;:::-;9058:117;9199:78;9269:7;9260:6;9249:9;9245:22;9199:78;:::i;:::-;9189:88;;8985:302;9326:2;9352:50;9394:7;9385:6;9374:9;9370:22;9352:50;:::i;:::-;9342:60;;9297:115;8741:678;;;;;:::o;9425:329::-;9484:6;9533:2;9521:9;9512:7;9508:23;9504:32;9501:119;;;9539:79;;:::i;:::-;9501:119;9659:1;9684:53;9729:7;9720:6;9709:9;9705:22;9684:53;:::i;:::-;9674:63;;9630:117;9425:329;;;;:::o;9760:474::-;9828:6;9836;9885:2;9873:9;9864:7;9860:23;9856:32;9853:119;;;9891:79;;:::i;:::-;9853:119;10011:1;10036:53;10081:7;10072:6;10061:9;10057:22;10036:53;:::i;:::-;10026:63;;9982:117;10138:2;10164:53;10209:7;10200:6;10189:9;10185:22;10164:53;:::i;:::-;10154:63;;10109:118;9760:474;;;;;:::o;10240:180::-;10288:77;10285:1;10278:88;10385:4;10382:1;10375:15;10409:4;10406:1;10399:15;10426:320;10470:6;10507:1;10501:4;10497:12;10487:22;;10554:1;10548:4;10544:12;10575:18;10565:81;;10631:4;10623:6;10619:17;10609:27;;10565:81;10693:2;10685:6;10682:14;10662:18;10659:38;10656:84;;10712:18;;:::i;:::-;10656:84;10477:269;10426:320;;;:::o;10752:181::-;10892:33;10888:1;10880:6;10876:14;10869:57;10752:181;:::o;10939:366::-;11081:3;11102:67;11166:2;11161:3;11102:67;:::i;:::-;11095:74;;11178:93;11267:3;11178:93;:::i;:::-;11296:2;11291:3;11287:12;11280:19;;10939:366;;;:::o;11311:419::-;11477:4;11515:2;11504:9;11500:18;11492:26;;11564:9;11558:4;11554:20;11550:1;11539:9;11535:17;11528:47;11592:131;11718:4;11592:131;:::i;:::-;11584:139;;11311:419;;;:::o;11736:180::-;11784:77;11781:1;11774:88;11881:4;11878:1;11871:15;11905:4;11902:1;11895:15;11922:180;11970:77;11967:1;11960:88;12067:4;12064:1;12057:15;12091:4;12088:1;12081:15;12108:233;12147:3;12170:24;12188:5;12170:24;:::i;:::-;12161:33;;12216:66;12209:5;12206:77;12203:103;;12286:18;;:::i;:::-;12203:103;12333:1;12326:5;12322:13;12315:20;;12108:233;;;:::o;12347:191::-;12387:3;12406:20;12424:1;12406:20;:::i;:::-;12401:25;;12440:20;12458:1;12440:20;:::i;:::-;12435:25;;12483:1;12480;12476:9;12469:16;;12504:3;12501:1;12498:10;12495:36;;;12511:18;;:::i;:::-;12495:36;12347:191;;;;:::o;12544:232::-;12684:34;12680:1;12672:6;12668:14;12661:58;12753:15;12748:2;12740:6;12736:15;12729:40;12544:232;:::o;12782:366::-;12924:3;12945:67;13009:2;13004:3;12945:67;:::i;:::-;12938:74;;13021:93;13110:3;13021:93;:::i;:::-;13139:2;13134:3;13130:12;13123:19;;12782:366;;;:::o;13154:419::-;13320:4;13358:2;13347:9;13343:18;13335:26;;13407:9;13401:4;13397:20;13393:1;13382:9;13378:17;13371:47;13435:131;13561:4;13435:131;:::i;:::-;13427:139;;13154:419;;;:::o;13579:290::-;13719:34;13715:1;13707:6;13703:14;13696:58;13788:34;13783:2;13775:6;13771:15;13764:59;13857:4;13852:2;13844:6;13840:15;13833:29;13579:290;:::o;13875:366::-;14017:3;14038:67;14102:2;14097:3;14038:67;:::i;:::-;14031:74;;14114:93;14203:3;14114:93;:::i;:::-;14232:2;14227:3;14223:12;14216:19;;13875:366;;;:::o;14247:419::-;14413:4;14451:2;14440:9;14436:18;14428:26;;14500:9;14494:4;14490:20;14486:1;14475:9;14471:17;14464:47;14528:131;14654:4;14528:131;:::i;:::-;14520:139;;14247:419;;;:::o;14672:225::-;14812:34;14808:1;14800:6;14796:14;14789:58;14881:8;14876:2;14868:6;14864:15;14857:33;14672:225;:::o;14903:366::-;15045:3;15066:67;15130:2;15125:3;15066:67;:::i;:::-;15059:74;;15142:93;15231:3;15142:93;:::i;:::-;15260:2;15255:3;15251:12;15244:19;;14903:366;;;:::o;15275:419::-;15441:4;15479:2;15468:9;15464:18;15456:26;;15528:9;15522:4;15518:20;15514:1;15503:9;15499:17;15492:47;15556:131;15682:4;15556:131;:::i;:::-;15548:139;;15275:419;;;:::o;15700:231::-;15840:34;15836:1;15828:6;15824:14;15817:58;15909:14;15904:2;15896:6;15892:15;15885:39;15700:231;:::o;15937:366::-;16079:3;16100:67;16164:2;16159:3;16100:67;:::i;:::-;16093:74;;16176:93;16265:3;16176:93;:::i;:::-;16294:2;16289:3;16285:12;16278:19;;15937:366;;;:::o;16309:419::-;16475:4;16513:2;16502:9;16498:18;16490:26;;16562:9;16556:4;16552:20;16548:1;16537:9;16533:17;16526:47;16590:131;16716:4;16590:131;:::i;:::-;16582:139;;16309:419;;;:::o;16734:221::-;16874:34;16870:1;16862:6;16858:14;16851:58;16943:4;16938:2;16930:6;16926:15;16919:29;16734:221;:::o;16961:366::-;17103:3;17124:67;17188:2;17183:3;17124:67;:::i;:::-;17117:74;;17200:93;17289:3;17200:93;:::i;:::-;17318:2;17313:3;17309:12;17302:19;;16961:366;;;:::o;17333:419::-;17499:4;17537:2;17526:9;17522:18;17514:26;;17586:9;17580:4;17576:20;17572:1;17561:9;17557:17;17550:47;17614:131;17740:4;17614:131;:::i;:::-;17606:139;;17333:419;;;:::o;17758:182::-;17898:34;17894:1;17886:6;17882:14;17875:58;17758:182;:::o;17946:366::-;18088:3;18109:67;18173:2;18168:3;18109:67;:::i;:::-;18102:74;;18185:93;18274:3;18185:93;:::i;:::-;18303:2;18298:3;18294:12;18287:19;;17946:366;;;:::o;18318:419::-;18484:4;18522:2;18511:9;18507:18;18499:26;;18571:9;18565:4;18561:20;18557:1;18546:9;18542:17;18535:47;18599:131;18725:4;18599:131;:::i;:::-;18591:139;;18318:419;;;:::o;18743:179::-;18883:31;18879:1;18871:6;18867:14;18860:55;18743:179;:::o;18928:366::-;19070:3;19091:67;19155:2;19150:3;19091:67;:::i;:::-;19084:74;;19167:93;19256:3;19167:93;:::i;:::-;19285:2;19280:3;19276:12;19269:19;;18928:366;;;:::o;19300:419::-;19466:4;19504:2;19493:9;19489:18;19481:26;;19553:9;19547:4;19543:20;19539:1;19528:9;19524:17;19517:47;19581:131;19707:4;19581:131;:::i;:::-;19573:139;;19300:419;;;:::o;19725:224::-;19865:34;19861:1;19853:6;19849:14;19842:58;19934:7;19929:2;19921:6;19917:15;19910:32;19725:224;:::o;19955:366::-;20097:3;20118:67;20182:2;20177:3;20118:67;:::i;:::-;20111:74;;20194:93;20283:3;20194:93;:::i;:::-;20312:2;20307:3;20303:12;20296:19;;19955:366;;;:::o;20327:419::-;20493:4;20531:2;20520:9;20516:18;20508:26;;20580:9;20574:4;20570:20;20566:1;20555:9;20551:17;20544:47;20608:131;20734:4;20608:131;:::i;:::-;20600:139;;20327:419;;;:::o;20752:222::-;20892:34;20888:1;20880:6;20876:14;20869:58;20961:5;20956:2;20948:6;20944:15;20937:30;20752:222;:::o;20980:366::-;21122:3;21143:67;21207:2;21202:3;21143:67;:::i;:::-;21136:74;;21219:93;21308:3;21219:93;:::i;:::-;21337:2;21332:3;21328:12;21321:19;;20980:366;;;:::o;21352:419::-;21518:4;21556:2;21545:9;21541:18;21533:26;;21605:9;21599:4;21595:20;21591:1;21580:9;21576:17;21569:47;21633:131;21759:4;21633:131;:::i;:::-;21625:139;;21352:419;;;:::o;21777:182::-;21917:34;21913:1;21905:6;21901:14;21894:58;21777:182;:::o;21965:366::-;22107:3;22128:67;22192:2;22187:3;22128:67;:::i;:::-;22121:74;;22204:93;22293:3;22204:93;:::i;:::-;22322:2;22317:3;22313:12;22306:19;;21965:366;;;:::o;22337:419::-;22503:4;22541:2;22530:9;22526:18;22518:26;;22590:9;22584:4;22580:20;22576:1;22565:9;22561:17;22554:47;22618:131;22744:4;22618:131;:::i;:::-;22610:139;;22337:419;;;:::o;22762:410::-;22802:7;22825:20;22843:1;22825:20;:::i;:::-;22820:25;;22859:20;22877:1;22859:20;:::i;:::-;22854:25;;22914:1;22911;22907:9;22936:30;22954:11;22936:30;:::i;:::-;22925:41;;23115:1;23106:7;23102:15;23099:1;23096:22;23076:1;23069:9;23049:83;23026:139;;23145:18;;:::i;:::-;23026:139;22810:362;22762:410;;;;:::o;23178:180::-;23226:77;23223:1;23216:88;23323:4;23320:1;23313:15;23347:4;23344:1;23337:15;23364:185;23404:1;23421:20;23439:1;23421:20;:::i;:::-;23416:25;;23455:20;23473:1;23455:20;:::i;:::-;23450:25;;23494:1;23484:35;;23499:18;;:::i;:::-;23484:35;23541:1;23538;23534:9;23529:14;;23364:185;;;;:::o;23555:194::-;23595:4;23615:20;23633:1;23615:20;:::i;:::-;23610:25;;23649:20;23667:1;23649:20;:::i;:::-;23644:25;;23693:1;23690;23686:9;23678:17;;23717:1;23711:4;23708:11;23705:37;;;23722:18;;:::i;:::-;23705:37;23555:194;;;;:::o;23755:225::-;23895:34;23891:1;23883:6;23879:14;23872:58;23964:8;23959:2;23951:6;23947:15;23940:33;23755:225;:::o;23986:366::-;24128:3;24149:67;24213:2;24208:3;24149:67;:::i;:::-;24142:74;;24225:93;24314:3;24225:93;:::i;:::-;24343:2;24338:3;24334:12;24327:19;;23986:366;;;:::o;24358:419::-;24524:4;24562:2;24551:9;24547:18;24539:26;;24611:9;24605:4;24601:20;24597:1;24586:9;24582:17;24575:47;24639:131;24765:4;24639:131;:::i;:::-;24631:139;;24358:419;;;:::o;24783:442::-;24932:4;24970:2;24959:9;24955:18;24947:26;;24983:71;25051:1;25040:9;25036:17;25027:6;24983:71;:::i;:::-;25064:72;25132:2;25121:9;25117:18;25108:6;25064:72;:::i;:::-;25146;25214:2;25203:9;25199:18;25190:6;25146:72;:::i;:::-;24783:442;;;;;;:::o;25231:147::-;25332:11;25369:3;25354:18;;25231:147;;;;:::o;25384:114::-;;:::o;25504:398::-;25663:3;25684:83;25765:1;25760:3;25684:83;:::i;:::-;25677:90;;25776:93;25865:3;25776:93;:::i;:::-;25894:1;25889:3;25885:11;25878:18;;25504:398;;;:::o;25908:379::-;26092:3;26114:147;26257:3;26114:147;:::i;:::-;26107:154;;26278:3;26271:10;;25908:379;;;:::o;26293:143::-;26350:5;26381:6;26375:13;26366:22;;26397:33;26424:5;26397:33;:::i;:::-;26293:143;;;;:::o;26442:351::-;26512:6;26561:2;26549:9;26540:7;26536:23;26532:32;26529:119;;;26567:79;;:::i;:::-;26529:119;26687:1;26712:64;26768:7;26759:6;26748:9;26744:22;26712:64;:::i;:::-;26702:74;;26658:128;26442:351;;;;:::o;26799:85::-;26844:7;26873:5;26862:16;;26799:85;;;:::o;26890:158::-;26948:9;26981:61;26999:42;27008:32;27034:5;27008:32;:::i;:::-;26999:42;:::i;:::-;26981:61;:::i;:::-;26968:74;;26890:158;;;:::o;27054:147::-;27149:45;27188:5;27149:45;:::i;:::-;27144:3;27137:58;27054:147;;:::o;27207:114::-;27274:6;27308:5;27302:12;27292:22;;27207:114;;;:::o;27327:184::-;27426:11;27460:6;27455:3;27448:19;27500:4;27495:3;27491:14;27476:29;;27327:184;;;;:::o;27517:132::-;27584:4;27607:3;27599:11;;27637:4;27632:3;27628:14;27620:22;;27517:132;;;:::o;27655:108::-;27732:24;27750:5;27732:24;:::i;:::-;27727:3;27720:37;27655:108;;:::o;27769:179::-;27838:10;27859:46;27901:3;27893:6;27859:46;:::i;:::-;27937:4;27932:3;27928:14;27914:28;;27769:179;;;;:::o;27954:113::-;28024:4;28056;28051:3;28047:14;28039:22;;27954:113;;;:::o;28103:732::-;28222:3;28251:54;28299:5;28251:54;:::i;:::-;28321:86;28400:6;28395:3;28321:86;:::i;:::-;28314:93;;28431:56;28481:5;28431:56;:::i;:::-;28510:7;28541:1;28526:284;28551:6;28548:1;28545:13;28526:284;;;28627:6;28621:13;28654:63;28713:3;28698:13;28654:63;:::i;:::-;28647:70;;28740:60;28793:6;28740:60;:::i;:::-;28730:70;;28586:224;28573:1;28570;28566:9;28561:14;;28526:284;;;28530:14;28826:3;28819:10;;28227:608;;;28103:732;;;;:::o;28841:831::-;29104:4;29142:3;29131:9;29127:19;29119:27;;29156:71;29224:1;29213:9;29209:17;29200:6;29156:71;:::i;:::-;29237:80;29313:2;29302:9;29298:18;29289:6;29237:80;:::i;:::-;29364:9;29358:4;29354:20;29349:2;29338:9;29334:18;29327:48;29392:108;29495:4;29486:6;29392:108;:::i;:::-;29384:116;;29510:72;29578:2;29567:9;29563:18;29554:6;29510:72;:::i;:::-;29592:73;29660:3;29649:9;29645:19;29636:6;29592:73;:::i;:::-;28841:831;;;;;;;;:::o;29678:807::-;29927:4;29965:3;29954:9;29950:19;29942:27;;29979:71;30047:1;30036:9;30032:17;30023:6;29979:71;:::i;:::-;30060:72;30128:2;30117:9;30113:18;30104:6;30060:72;:::i;:::-;30142:80;30218:2;30207:9;30203:18;30194:6;30142:80;:::i;:::-;30232;30308:2;30297:9;30293:18;30284:6;30232:80;:::i;:::-;30322:73;30390:3;30379:9;30375:19;30366:6;30322:73;:::i;:::-;30405;30473:3;30462:9;30458:19;30449:6;30405:73;:::i;:::-;29678:807;;;;;;;;;:::o;30491:143::-;30548:5;30579:6;30573:13;30564:22;;30595:33;30622:5;30595:33;:::i;:::-;30491:143;;;;:::o;30640:663::-;30728:6;30736;30744;30793:2;30781:9;30772:7;30768:23;30764:32;30761:119;;;30799:79;;:::i;:::-;30761:119;30919:1;30944:64;31000:7;30991:6;30980:9;30976:22;30944:64;:::i;:::-;30934:74;;30890:128;31057:2;31083:64;31139:7;31130:6;31119:9;31115:22;31083:64;:::i;:::-;31073:74;;31028:129;31196:2;31222:64;31278:7;31269:6;31258:9;31254:22;31222:64;:::i;:::-;31212:74;;31167:129;30640:663;;;;;:::o
Swarm Source
ipfs://2c204e599a3e79259db23280d5ae68eaa28d35ea5c22766c1d197a2d35f9a476
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.