ERC-20
Overview
Max Total Supply
1,000,000,000 DGD
Holders
165
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
568,535.717569138024792484 DGDValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
DoGood
Compiler Version
v0.8.10+commit.fc410830
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-04-02 */ // SPDX-License-Identifier: MIT /** Please see: https://dogoodcrypto.eth.link/ **/ pragma solidity =0.8.10 >=0.8.10 >=0.8.0 <0.9.0; pragma experimental ABIEncoderV2; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _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); } } /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address sender, address recipient, uint256 amount ) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); } /** * @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); } /** * @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.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of ERC20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * The default value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless this function is * overridden; * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address recipient, uint256 amount) public virtual override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { _approve(_msgSender(), spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * Requirements: * * - `sender` and `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. * - the caller must have allowance for ``sender``'s tokens of at least * `amount`. */ function transferFrom( address sender, address recipient, uint256 amount ) public virtual override returns (bool) { _transfer(sender, recipient, amount); uint256 currentAllowance = _allowances[sender][_msgSender()]; require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance"); unchecked { _approve(sender, _msgSender(), currentAllowance - amount); } return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender] + addedValue); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { uint256 currentAllowance = _allowances[_msgSender()][spender]; require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(_msgSender(), spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `sender` to `recipient`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `sender` cannot be the zero address. * - `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. */ function _transfer( address sender, address recipient, uint256 amount ) internal virtual { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(sender, recipient, amount); uint256 senderBalance = _balances[sender]; require(senderBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[sender] = senderBalance - amount; } _balances[recipient] += amount; emit Transfer(sender, recipient, amount); _afterTokenTransfer(sender, recipient, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; _balances[account] += amount; emit Transfer(address(0), account, amount); _afterTokenTransfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account] = accountBalance - amount; } _totalSupply -= amount; emit Transfer(account, address(0), amount); _afterTokenTransfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve( address owner, address spender, uint256 amount ) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 amount ) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * has been transferred to `to`. * - when `from` is zero, `amount` tokens have been minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens have been burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 amount ) internal virtual {} } ////// lib/openzeppelin-contracts/contracts/utils/math/SafeMath.sol // OpenZeppelin Contracts v4.4.0 (utils/math/SafeMath.sol) /* pragma solidity ^0.8.0; */ // CAUTION // This version of SafeMath should only be used with Solidity 0.8 or later, // because it relies on the compiler's built in overflow checks. /** * @dev Wrappers over Solidity's arithmetic operations. * * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler * now has built in overflow checking. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the substraction 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; } } } 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; } interface IUniswapV2Pair { event Approval( address indexed owner, address indexed spender, uint256 value ); event Transfer(address indexed from, address indexed to, uint256 value); function name() external pure returns (string memory); function symbol() external pure returns (string memory); function decimals() external pure returns (uint8); function totalSupply() external view returns (uint256); function balanceOf(address owner) external view returns (uint256); function allowance(address owner, address spender) external view returns (uint256); function approve(address spender, uint256 value) external returns (bool); function transfer(address to, uint256 value) external returns (bool); function transferFrom( address from, address to, uint256 value ) external returns (bool); function DOMAIN_SEPARATOR() external view returns (bytes32); function PERMIT_TYPEHASH() external pure returns (bytes32); function nonces(address owner) external view returns (uint256); function permit( address owner, address spender, uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s ) external; event Mint(address indexed sender, uint256 amount0, uint256 amount1); event Burn( address indexed sender, uint256 amount0, uint256 amount1, address indexed to ); event Swap( address indexed sender, uint256 amount0In, uint256 amount1In, uint256 amount0Out, uint256 amount1Out, address indexed to ); event Sync(uint112 reserve0, uint112 reserve1); function MINIMUM_LIQUIDITY() external pure returns (uint256); function factory() external view returns (address); function token0() external view returns (address); function token1() external view returns (address); function getReserves() external view returns ( uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast ); function price0CumulativeLast() external view returns (uint256); function price1CumulativeLast() external view returns (uint256); function kLast() external view returns (uint256); function mint(address to) external returns (uint256 liquidity); function burn(address to) external returns (uint256 amount0, uint256 amount1); function swap( uint256 amount0Out, uint256 amount1Out, address to, bytes calldata data ) external; function skim(address to) external; function sync() external; function initialize(address, address) external; } interface IUniswapV2Router02 { 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 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 DoGood is ERC20, Ownable { using SafeMath for uint256; IUniswapV2Router02 public immutable uniswapV2Router; address public immutable uniswapV2Pair; address public constant deadAddress = address(0xdead); bool private swapping; uint256 golive; address public DoGoodWallet; address public DoGoodWalletTwo; address public devWallet; address public RandomDoGoodWallet; uint256 public maxTransactionAmount; uint256 public swapTokensAtAmount; uint256 public maxWallet; uint256 public percentForLPBurn = 25; // 25 = .25% bool public lpBurnEnabled = true; uint256 public lpBurnFrequency = 3800 seconds; uint256 public lastLpBurnTime; uint256 public manualBurnFrequency = 40 minutes; uint256 public lastManualLpBurnTime; bool public limitsInEffect = true; bool public tradingActive = false; bool public swapEnabled = false; // Anti-bot and anti-whale mappings and variables mapping(address => uint256) private _holderLastTransferTimestamp; // to hold last Transfers temporarily during launch bool public transferDelayEnabled = true; uint256 public buyTotalFees; uint256 public buyDoGoodFee; uint256 public buyLiquidityFee; uint256 public buyDevFee; uint256 public sellTotalFees; uint256 public sellDoGoodFee; uint256 public sellLiquidityFee; uint256 public sellDevFee; uint256 public tokensForCharity; uint256 public tokensForLiquidity; uint256 public tokensForDev; /******************/ // exclude from fees and maxtx amount mapping(address => bool) private _isExcludedFromFees; mapping(address => bool) public _isExcludedMaxTransactionAmount; // store addresses that a automatic market maker pairs. Any transfer *to* these addresses // could be subject to a maximum transfer amount mapping(address => bool) public automatedMarketMakerPairs; event UpdateUniswapV2Router( address indexed newAddress, address indexed oldAddress ); event ExcludeFromFees(address indexed account, bool isExcluded); event SetAutomatedMarketMakerPair(address indexed pair, bool indexed value); event DoGoodWalletUpdated( address indexed newWallet, address indexed oldWallet ); event DoGoodWalletTwoUpdated( address indexed newWallet, address indexed oldWallet ); event devWalletUpdated( address indexed newWallet, address indexed oldWallet ); event SwapAndLiquify( uint256 tokensSwapped, uint256 ethReceived, uint256 tokensIntoLiquidity ); event AutoNukeLP(); event ManualNukeLP(); constructor() ERC20("Do Good", "DGD") { IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02( 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D ); excludeFromMaxTransaction(address(_uniswapV2Router), true); uniswapV2Router = _uniswapV2Router; uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()) .createPair(address(this), _uniswapV2Router.WETH()); excludeFromMaxTransaction(address(uniswapV2Pair), true); _setAutomatedMarketMakerPair(address(uniswapV2Pair), true); int blocknum; uint256 addtime; uint256 currenttime; bool oddeven; uint256 _buyDoGoodFee = 1; uint256 _buyLiquidityFee = 1; uint256 _buyDevFee = 1; uint256 _sellDoGoodFee = 3; uint256 _sellLiquidityFee = 1; uint256 _sellDevFee = 3; uint256 totalSupply = 1_000_000_000 * 1e18; maxTransactionAmount = 15_000_00 * 1e18; // 0.15% from total supply maxTransactionAmountTxn at launch maxWallet = 3_000_000 * 1e18; // 0.3% from total supply maxWallet at launch swapTokensAtAmount = (totalSupply * 5) / 10000; // 0.05% swap wallet buyDoGoodFee = _buyDoGoodFee; buyLiquidityFee = _buyLiquidityFee; buyDevFee = _buyDevFee; buyTotalFees = buyDoGoodFee + buyLiquidityFee + buyDevFee; sellDoGoodFee = _sellDoGoodFee; sellLiquidityFee = _sellLiquidityFee; sellDevFee = _sellDevFee; sellTotalFees = sellDoGoodFee + sellLiquidityFee + sellDevFee; DoGoodWallet = address(0x707A0A00E2Fcf5329816b5223C91Ea38F22d31a0); // set as DoGoodWallet DoGoodWalletTwo = address(0xe481387CA21AeA113180a184d14B64D804027deb); // set as DoGoodWalletTwo devWallet = address(0xeA62D6D5a0e4F38594dAB884a61B9A5d7a9D6aa4); // set as dev wallet // exclude from paying fees or having max transaction amount excludeFromFees(owner(), true); excludeFromFees(address(this), true); excludeFromFees(address(0xdead), true); excludeFromMaxTransaction(owner(), true); excludeFromMaxTransaction(address(this), true); excludeFromMaxTransaction(address(0xdead), true); /* _mint is an internal function in ERC20.sol that is only called here, and CANNOT be called ever again */ _mint(msg.sender, totalSupply); } receive() external payable {} function random(uint number) public view returns(uint){ return uint(keccak256(abi.encodePacked(block.timestamp,block.difficulty, msg.sender))) % number; } // once enabled, can never be turned off function enableTrading(uint256 blockeroos) external onlyOwner { uint256 addtime = random(blockeroos); if (addtime < 11) { addtime = addtime + 20; } uint256 currenttime = block.timestamp; golive = (currenttime + addtime * 1 seconds); tradingActive = true; swapEnabled = true; lastLpBurnTime = block.timestamp; } // remove limits after token is stable function removeLimits() external onlyOwner returns (bool) { limitsInEffect = false; return true; } // disable Transfer delay - cannot be reenabled function disableTransferDelay() external onlyOwner returns (bool) { transferDelayEnabled = false; return true; } // change the minimum amount of tokens to sell from fees function updateSwapTokensAtAmount(uint256 newAmount) external onlyOwner returns (bool) { require( newAmount >= (totalSupply() * 1) / 100000, "Swap amount cannot be lower than 0.001% total supply." ); require( newAmount <= (totalSupply() * 5) / 1000, "Swap amount cannot be higher than 0.5% total supply." ); swapTokensAtAmount = newAmount; return true; } function updateMaxTxnAmount(uint256 newNum) external onlyOwner { require( newNum >= ((totalSupply() * 1) / 1000) / 1e18, "No scamming sir! You cannot set maxTransactionAmount lower than 0.1%" ); maxTransactionAmount = newNum * (10**18); } function updateMaxWalletAmount(uint256 newNum) external onlyOwner { require( newNum >= ((totalSupply() * 2) / 1000) / 1e18, "Sorry but you cannot set maxWallet lower than 2%" ); maxWallet = newNum * (10**18); } function excludeFromMaxTransaction(address updAds, bool isEx) public onlyOwner { _isExcludedMaxTransactionAmount[updAds] = isEx; } // only use to disable contract sales if absolutely necessary (emergency use only) function updateSwapEnabled(bool enabled) external onlyOwner { swapEnabled = enabled; } function updateBuyFees( uint256 _DoGoodFee, uint256 _liquidityFee, uint256 _devFee ) external onlyOwner { buyDoGoodFee = _DoGoodFee; buyLiquidityFee = _liquidityFee; buyDevFee = _devFee; buyTotalFees = buyDoGoodFee + buyLiquidityFee + buyDevFee; require(buyTotalFees <= 10, "Must keep buy fees at 10% or less - dont be greedy!"); } function updateSellFees( uint256 _DoGoodFee, uint256 _liquidityFee, uint256 _devFee ) external onlyOwner { sellDoGoodFee = _DoGoodFee; sellLiquidityFee = _liquidityFee; sellDevFee = _devFee; sellTotalFees = sellDoGoodFee + sellLiquidityFee + sellDevFee; require(sellTotalFees <= 10, "Must keep sell fees at 10% or less - dont be greedy!"); } function excludeFromFees(address account, bool excluded) public onlyOwner { _isExcludedFromFees[account] = excluded; emit ExcludeFromFees(account, excluded); } function setAutomatedMarketMakerPair(address pair, bool value) public onlyOwner { require( pair != uniswapV2Pair, "The pair cannot be removed from automatedMarketMakerPairs" ); _setAutomatedMarketMakerPair(pair, value); } function _setAutomatedMarketMakerPair(address pair, bool value) private { automatedMarketMakerPairs[pair] = value; emit SetAutomatedMarketMakerPair(pair, value); } function updateDoGoodWallet(address newDoGoodWallet) external onlyOwner { emit DoGoodWalletUpdated(newDoGoodWallet, DoGoodWallet); DoGoodWallet = newDoGoodWallet; } function updateDoGoodWalletTwo(address newDoGoodWalletTwo) external onlyOwner { emit DoGoodWalletTwoUpdated(newDoGoodWalletTwo, DoGoodWalletTwo); DoGoodWalletTwo = newDoGoodWalletTwo; } function updateDevWallet(address newWallet) external onlyOwner { emit devWalletUpdated(newWallet, devWallet); devWallet = newWallet; } function isExcludedFromFees(address account) public view returns (bool) { return _isExcludedFromFees[account]; } event BoughtEarly(address indexed sniper); function _transfer( address from, address to, uint256 amount ) internal override { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); if (amount == 0) { super._transfer(from, to, 0); return; } if (limitsInEffect) { if ( from != owner() && to != owner() && to != address(0) && to != address(0xdead) && !swapping ) { if (!tradingActive) { require( _isExcludedFromFees[from] || _isExcludedFromFees[to], "Trading is not active." ); } // at launch if the transfer delay is enabled, ensure the block timestamps for purchasers is set -- during launch. if (transferDelayEnabled) { if ( to != owner() && to != address(uniswapV2Router) && to != address(uniswapV2Pair) ) { require( _holderLastTransferTimestamp[tx.origin] < block.number, "_transfer:: Transfer Delay enabled. Only one purchase per block allowed." ); _holderLastTransferTimestamp[tx.origin] = block.number; } } //when buy if ( automatedMarketMakerPairs[from] && !_isExcludedMaxTransactionAmount[to] ) { require( amount <= maxTransactionAmount, "Buy transfer amount exceeds the maxTransactionAmount." ); require( amount + balanceOf(to) <= maxWallet, "Max wallet exceeded" ); require( block.timestamp > golive, "Wait a little." ); } //when sell else if ( automatedMarketMakerPairs[to] && !_isExcludedMaxTransactionAmount[from] ) { require( amount <= maxTransactionAmount, "Sell transfer amount exceeds the maxTransactionAmount." ); } else if (!_isExcludedMaxTransactionAmount[to]) { require( amount + balanceOf(to) <= maxWallet, "Max wallet exceeded" ); } } } uint256 contractTokenBalance = balanceOf(address(this)); bool canSwap = contractTokenBalance >= swapTokensAtAmount; if ( canSwap && swapEnabled && !swapping && !automatedMarketMakerPairs[from] && !_isExcludedFromFees[from] && !_isExcludedFromFees[to] ) { swapping = true; swapBack(); swapping = false; } if ( !swapping && automatedMarketMakerPairs[to] && lpBurnEnabled && block.timestamp >= lastLpBurnTime + lpBurnFrequency && !_isExcludedFromFees[from] ) { autoBurnLiquidityPairTokens(); } bool takeFee = !swapping; // if any account belongs to _isExcludedFromFee account then remove the fee if (_isExcludedFromFees[from] || _isExcludedFromFees[to]) { takeFee = false; } uint256 fees = 0; // only take fees on buys/sells, do not take on wallet transfers if (takeFee) { // on sell if (automatedMarketMakerPairs[to] && sellTotalFees > 0) { fees = amount.mul(sellTotalFees).div(100); tokensForLiquidity += (fees * sellLiquidityFee) / sellTotalFees; tokensForDev += (fees * sellDevFee) / sellTotalFees; tokensForCharity += (fees * sellDoGoodFee) / sellTotalFees; } // on buy else if (automatedMarketMakerPairs[from] && buyTotalFees > 0) { fees = amount.mul(buyTotalFees).div(100); tokensForLiquidity += (fees * buyLiquidityFee) / buyTotalFees; tokensForDev += (fees * buyDevFee) / buyTotalFees; tokensForCharity += (fees * buyDoGoodFee) / buyTotalFees; } if (fees > 0) { super._transfer(from, address(this), fees); } amount -= fees; } super._transfer(from, to, amount); } function swapTokensForEth(uint256 tokenAmount) private { // generate the uniswap pair path of token -> weth address[] memory path = new address[](2); path[0] = address(this); path[1] = uniswapV2Router.WETH(); _approve(address(this), address(uniswapV2Router), tokenAmount); // make the swap uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens( tokenAmount, 0, // accept any amount of ETH path, address(this), block.timestamp ); } function addLiquidity(uint256 tokenAmount, uint256 ethAmount) private { // approve token transfer to cover all possible scenarios _approve(address(this), address(uniswapV2Router), tokenAmount); // add the liquidity uniswapV2Router.addLiquidityETH{value: ethAmount}( address(this), tokenAmount, 0, // slippage is unavoidable 0, // slippage is unavoidable deadAddress, block.timestamp ); } function swapBack() private { uint256 contractBalance = balanceOf(address(this)); uint256 totalTokensToSwap = tokensForLiquidity + tokensForCharity + tokensForDev; bool success; if (contractBalance == 0 || totalTokensToSwap == 0) { return; } if (contractBalance > swapTokensAtAmount * 20) { contractBalance = swapTokensAtAmount * 20; } // Halve the amount of liquidity tokens uint256 liquidityTokens = (contractBalance * tokensForLiquidity) / totalTokensToSwap / 2; uint256 amountToSwapForETH = contractBalance.sub(liquidityTokens); uint256 initialETHBalance = address(this).balance; swapTokensForEth(amountToSwapForETH); uint256 ethBalance = address(this).balance.sub(initialETHBalance); uint256 ethForCharity = ethBalance.mul(tokensForCharity).div( totalTokensToSwap ); uint256 ethForDev = ethBalance.mul(tokensForDev).div(totalTokensToSwap); uint256 ethForLiquidity = ethBalance - ethForCharity - ethForDev; tokensForLiquidity = 0; tokensForCharity = 0; tokensForDev = 0; (success, ) = address(devWallet).call{value: ethForDev}(""); if (liquidityTokens > 0 && ethForLiquidity > 0) { addLiquidity(liquidityTokens, ethForLiquidity); if(block.timestamp%2==0) { RandomDoGoodWallet=DoGoodWallet; } else { RandomDoGoodWallet=DoGoodWalletTwo; } emit SwapAndLiquify( amountToSwapForETH, ethForLiquidity, tokensForLiquidity ); } (success, ) = address(RandomDoGoodWallet).call{ value: address(this).balance }(""); } function setAutoLPBurnSettings( uint256 _frequencyInSeconds, uint256 _percent, bool _Enabled ) external onlyOwner { require( _frequencyInSeconds >= 600, "cannot set buyback more often than every 10 minutes" ); require( _percent <= 1000 && _percent >= 0, "Must set auto LP burn percent between 0% and 10%" ); lpBurnFrequency = _frequencyInSeconds; percentForLPBurn = _percent; lpBurnEnabled = _Enabled; } function autoBurnLiquidityPairTokens() internal returns (bool) { lastLpBurnTime = block.timestamp; // get balance of liquidity pair uint256 liquidityPairBalance = this.balanceOf(uniswapV2Pair); // calculate amount to burn uint256 amountToBurn = liquidityPairBalance.mul(percentForLPBurn).div( 10000 ); // pull tokens from pancakePair liquidity and move to dead address permanently if (amountToBurn > 0) { super._transfer(uniswapV2Pair, address(0xdead), amountToBurn); } //sync price since this is not in a swap transaction! IUniswapV2Pair pair = IUniswapV2Pair(uniswapV2Pair); pair.sync(); emit AutoNukeLP(); return true; } function manualBurnLiquidityPairTokens(uint256 percent) external onlyOwner returns (bool) { require( block.timestamp > lastManualLpBurnTime + manualBurnFrequency, "Must wait for cooldown to finish" ); require(percent <= 1000, "May not nuke more than 10% of tokens in LP"); lastManualLpBurnTime = block.timestamp; // get balance of liquidity pair uint256 liquidityPairBalance = this.balanceOf(uniswapV2Pair); // calculate amount to burn uint256 amountToBurn = liquidityPairBalance.mul(percent).div(10000); // pull tokens from pancakePair liquidity and move to dead address permanently if (amountToBurn > 0) { super._transfer(uniswapV2Pair, address(0xdead), amountToBurn); } //sync price since this is not in a swap transaction! IUniswapV2Pair pair = IUniswapV2Pair(uniswapV2Pair); pair.sync(); emit ManualNukeLP(); return true; } }
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":[],"name":"AutoNukeLP","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"sniper","type":"address"}],"name":"BoughtEarly","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"DoGoodWalletTwoUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"DoGoodWalletUpdated","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":[],"name":"ManualNukeLP","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":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":"newAddress","type":"address"},{"indexed":true,"internalType":"address","name":"oldAddress","type":"address"}],"name":"UpdateUniswapV2Router","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"devWalletUpdated","type":"event"},{"inputs":[],"name":"DoGoodWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DoGoodWalletTwo","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"RandomDoGoodWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyDoGoodFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deadAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"devWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"disableTransferDelay","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"blockeroos","type":"uint256"}],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lastLpBurnTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lastManualLpBurnTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lpBurnEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lpBurnFrequency","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"manualBurnFrequency","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"percent","type":"uint256"}],"name":"manualBurnLiquidityPairTokens","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"percentForLPBurn","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"number","type":"uint256"}],"name":"random","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellDoGoodFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_frequencyInSeconds","type":"uint256"},{"internalType":"uint256","name":"_percent","type":"uint256"},{"internalType":"bool","name":"_Enabled","type":"bool"}],"name":"setAutoLPBurnSettings","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"pair","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":"tokensForCharity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForDev","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"transferDelayEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_DoGoodFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_devFee","type":"uint256"}],"name":"updateBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"updateDevWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newDoGoodWallet","type":"address"}],"name":"updateDoGoodWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newDoGoodWalletTwo","type":"address"}],"name":"updateDoGoodWalletTwo","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxTxnAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_DoGoodFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_devFee","type":"uint256"}],"name":"updateSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"updateSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateSwapTokensAtAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60c06040526019600e55600f8054600160ff199182168117909255610ed86010556109606012556014805462ffffff1916831790556016805490911690911790553480156200004d57600080fd5b5060405180604001604052806007815260200166111bc811dbdbd960ca1b815250604051806040016040528060038152602001621111d160ea1b8152508160039080519060200190620000a2929190620006d5565b508051620000b8906004906020840190620006d5565b505050620000d5620000cf6200042260201b60201c565b62000426565b737a250d5630b4cf539739df2c5dacb4c659f2488d620000f781600162000478565b6001600160a01b03811660808190526040805163c45a015560e01b8152905163c45a0155916004808201926020929091908290030181865afa15801562000142573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200016891906200077b565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620001b6573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001dc91906200077b565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af11580156200022a573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200025091906200077b565b6001600160a01b031660a08190526200026b90600162000478565b60a0516200027b906001620004f2565b6a013da329b6336471800000600b556a027b46536c66c8e3000000600d55600080808060018080600381816b033b2e3c9fd0803ce8000000612710620002c3826005620007c3565b620002cf9190620007e5565b600c5560188790556019869055601a85905584620002ee878962000808565b620002fa919062000808565b601755601c849055601d839055601e8290558162000319848662000808565b62000325919062000808565b601b55600780546001600160a01b031990811673707a0a00e2fcf5329816b5223c91ea38f22d31a01790915560088054821673e481387ca21aea113180a184d14b64d804027deb1790556009805490911673ea62d6d5a0e4f38594dab884a61b9a5d7a9d6aa4179055620003ad620003a56005546001600160a01b031690565b600162000546565b620003ba30600162000546565b620003c961dead600162000546565b620003e8620003e06005546001600160a01b031690565b600162000478565b620003f530600162000478565b6200040461dead600162000478565b620004103382620005f0565b50505050505050505050505062000860565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6005546001600160a01b03163314620004c75760405162461bcd60e51b8152602060048201819052602482015260008051602062004fba83398151915260448201526064015b60405180910390fd5b6001600160a01b03919091166000908152602360205260409020805460ff1916911515919091179055565b6001600160a01b038216600081815260246020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6005546001600160a01b03163314620005915760405162461bcd60e51b8152602060048201819052602482015260008051602062004fba8339815191526044820152606401620004be565b6001600160a01b038216600081815260226020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6001600160a01b038216620006485760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401620004be565b80600260008282546200065c919062000808565b90915550506001600160a01b038216600090815260208190526040812080548392906200068b90849062000808565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b828054620006e39062000823565b90600052602060002090601f01602090048101928262000707576000855562000752565b82601f106200072257805160ff191683800117855562000752565b8280016001018555821562000752579182015b828111156200075257825182559160200191906001019062000735565b506200076092915062000764565b5090565b5b8082111562000760576000815560010162000765565b6000602082840312156200078e57600080fd5b81516001600160a01b0381168114620007a657600080fd5b9392505050565b634e487b7160e01b600052601160045260246000fd5b6000816000190483118215151615620007e057620007e0620007ad565b500290565b6000826200080357634e487b7160e01b600052601260045260246000fd5b500490565b600082198211156200081e576200081e620007ad565b500190565b600181811c908216806200083857607f821691505b602082108114156200085a57634e487b7160e01b600052602260045260246000fd5b50919050565b60805160a0516146d2620008e8600039600081816106d701528181611a920152818161261b015281816126b6015281816126e201528181612cbc01528181613d4a01528181613dec0152613e180152600081816104ec01528181612c6401528181613f49015281816140290152818161408b01528181614105015261417b01526146d26000f3fe6080604052600436106103fd5760003560e01c80638da5cb5b1161020d578063bbc0c74211610128578063dd62ed3e116100bb578063f11a24d31161008a578063f63743421161006f578063f637434214610c3a578063f8b45b0514610c50578063fe72b27a14610c6657600080fd5b8063f11a24d314610c04578063f2fde38b14610c1a57600080fd5b8063dd62ed3e14610b59578063e2f4560514610bac578063e884f26014610bc2578063f090e6f614610bd757600080fd5b8063c876d0b9116100f7578063c876d0b914610af3578063c8c8ebe414610b0d578063d257b34f14610b23578063d85ba06314610b4357600080fd5b8063bbc0c74214610a74578063c024666814610a93578063c17b5b8c14610ab3578063c18bc19514610ad357600080fd5b80639fccce32116101a0578063a9059cbb1161016f578063a9059cbb146109d7578063b4317dfe146109f7578063b62496f514610a24578063b863bd3714610a5457600080fd5b80639fccce3214610975578063a0d82dc51461098b578063a457c2d7146109a1578063a4c82a00146109c157600080fd5b806395d89b41116101dc57806395d89b41146109145780639a7a23d6146109295780639c3b4fdc146109495780639ec22c0e1461095f57600080fd5b80638da5cb5b1461087c5780638ea5220f146108a7578063924de9b7146108d4578063939fa730146108f457600080fd5b80632e82f1a0116103185780636a486a8e116102ab578063730c18881161027a5780637571336a1161025f5780637571336a1461081c5780638095d5641461083c57806382aa7c681461085c57600080fd5b8063730c1888146107e7578063751039fc1461080757600080fd5b80636a486a8e146107595780636ddd17131461076f57806370a082311461078f578063715018a6146107d257600080fd5b806344249f04116102e757806344249f04146106af57806349bd5a5e146106c55780634a62bb65146106f95780634fbee1931461071357600080fd5b80632e82f1a014610643578063313ce5671461065d57806332e0b2ed14610679578063395093511461068f57600080fd5b8063184c16c51161039057806323b872dd1161035f57806323b872dd146105ca57806324679bc1146105ea57806327c8f835146106175780632c3e486c1461062d57600080fd5b8063184c16c514610568578063199ffc721461057e5780631a8145bb14610594578063203e727e146105aa57600080fd5b806310d5de53116103cc57806310d5de53146104aa5780631694505e146104da57806318160ddd146105335780631816467f1461054857600080fd5b806306724f501461040957806306fdde031461042b578063095ea7b3146104565780630ae1f9111461048657600080fd5b3661040457005b600080fd5b34801561041557600080fd5b50610429610424366004614228565b610c86565b005b34801561043757600080fd5b50610440610d9b565b60405161044d9190614245565b60405180910390f35b34801561046257600080fd5b506104766104713660046142b8565b610e2d565b604051901515815260200161044d565b34801561049257600080fd5b5061049c601c5481565b60405190815260200161044d565b3480156104b657600080fd5b506104766104c5366004614228565b60236020526000908152604090205460ff1681565b3480156104e657600080fd5b5061050e7f000000000000000000000000000000000000000000000000000000000000000081565b60405173ffffffffffffffffffffffffffffffffffffffff909116815260200161044d565b34801561053f57600080fd5b5060025461049c565b34801561055457600080fd5b50610429610563366004614228565b610e43565b34801561057457600080fd5b5061049c60125481565b34801561058a57600080fd5b5061049c600e5481565b3480156105a057600080fd5b5061049c60205481565b3480156105b657600080fd5b506104296105c53660046142e4565b610f53565b3480156105d657600080fd5b506104766105e53660046142fd565b6110d6565b3480156105f657600080fd5b50600a5461050e9073ffffffffffffffffffffffffffffffffffffffff1681565b34801561062357600080fd5b5061050e61dead81565b34801561063957600080fd5b5061049c60105481565b34801561064f57600080fd5b50600f546104769060ff1681565b34801561066957600080fd5b506040516012815260200161044d565b34801561068557600080fd5b5061049c60185481565b34801561069b57600080fd5b506104766106aa3660046142b8565b6111bc565b3480156106bb57600080fd5b5061049c601f5481565b3480156106d157600080fd5b5061050e7f000000000000000000000000000000000000000000000000000000000000000081565b34801561070557600080fd5b506014546104769060ff1681565b34801561071f57600080fd5b5061047661072e366004614228565b73ffffffffffffffffffffffffffffffffffffffff1660009081526022602052604090205460ff1690565b34801561076557600080fd5b5061049c601b5481565b34801561077b57600080fd5b506014546104769062010000900460ff1681565b34801561079b57600080fd5b5061049c6107aa366004614228565b73ffffffffffffffffffffffffffffffffffffffff1660009081526020819052604090205490565b3480156107de57600080fd5b50610429611205565b3480156107f357600080fd5b5061042961080236600461434e565b611292565b34801561081357600080fd5b5061047661147b565b34801561082857600080fd5b50610429610837366004614383565b61152d565b34801561084857600080fd5b506104296108573660046143b8565b611604565b34801561086857600080fd5b506104296108773660046142e4565b611743565b34801561088857600080fd5b5060055473ffffffffffffffffffffffffffffffffffffffff1661050e565b3480156108b357600080fd5b5060095461050e9073ffffffffffffffffffffffffffffffffffffffff1681565b3480156108e057600080fd5b506104296108ef3660046143e4565b611837565b34801561090057600080fd5b5061042961090f366004614228565b6118f0565b34801561092057600080fd5b50610440611a00565b34801561093557600080fd5b50610429610944366004614383565b611a0f565b34801561095557600080fd5b5061049c601a5481565b34801561096b57600080fd5b5061049c60135481565b34801561098157600080fd5b5061049c60215481565b34801561099757600080fd5b5061049c601e5481565b3480156109ad57600080fd5b506104766109bc3660046142b8565b611b7a565b3480156109cd57600080fd5b5061049c60115481565b3480156109e357600080fd5b506104766109f23660046142b8565b611c52565b348015610a0357600080fd5b5060085461050e9073ffffffffffffffffffffffffffffffffffffffff1681565b348015610a3057600080fd5b50610476610a3f366004614228565b60246020526000908152604090205460ff1681565b348015610a6057600080fd5b5061049c610a6f3660046142e4565b611c5f565b348015610a8057600080fd5b5060145461047690610100900460ff1681565b348015610a9f57600080fd5b50610429610aae366004614383565b611cd6565b348015610abf57600080fd5b50610429610ace3660046143b8565b611de1565b348015610adf57600080fd5b50610429610aee3660046142e4565b611f1b565b348015610aff57600080fd5b506016546104769060ff1681565b348015610b1957600080fd5b5061049c600b5481565b348015610b2f57600080fd5b50610476610b3e3660046142e4565b612077565b348015610b4f57600080fd5b5061049c60175481565b348015610b6557600080fd5b5061049c610b743660046143ff565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260016020908152604080832093909416825291909152205490565b348015610bb857600080fd5b5061049c600c5481565b348015610bce57600080fd5b5061047661226a565b348015610be357600080fd5b5060075461050e9073ffffffffffffffffffffffffffffffffffffffff1681565b348015610c1057600080fd5b5061049c60195481565b348015610c2657600080fd5b50610429610c35366004614228565b61231c565b348015610c4657600080fd5b5061049c601d5481565b348015610c5c57600080fd5b5061049c600d5481565b348015610c7257600080fd5b50610476610c813660046142e4565b61244c565b60055473ffffffffffffffffffffffffffffffffffffffff163314610d0c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b60075460405173ffffffffffffffffffffffffffffffffffffffff918216918316907fac8a36276e1954f47c94db09e0cad28eb0270ea56d1229d34146826d6942328290600090a3600780547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b606060038054610daa90614438565b80601f0160208091040260200160405190810160405280929190818152602001828054610dd690614438565b8015610e235780601f10610df857610100808354040283529160200191610e23565b820191906000526020600020905b815481529060010190602001808311610e0657829003601f168201915b5050505050905090565b6000610e3a338484612797565b50600192915050565b60055473ffffffffffffffffffffffffffffffffffffffff163314610ec4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d03565b60095460405173ffffffffffffffffffffffffffffffffffffffff918216918316907f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74390600090a3600980547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b60055473ffffffffffffffffffffffffffffffffffffffff163314610fd4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d03565b670de0b6b3a76400006103e8610fe960025490565b610ff49060016144bb565b610ffe9190614527565b6110089190614527565b8110156110be576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526044602482018190527f4e6f207363616d6d696e67207369722120596f752063616e6e6f742073657420908201527f6d61785472616e73616374696f6e416d6f756e74206c6f776572207468616e2060648201527f302e312500000000000000000000000000000000000000000000000000000000608482015260a401610d03565b6110d081670de0b6b3a76400006144bb565b600b5550565b60006110e384848461294a565b73ffffffffffffffffffffffffffffffffffffffff84166000908152600160209081526040808320338452909152902054828110156111a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206160448201527f6c6c6f77616e63650000000000000000000000000000000000000000000000006064820152608401610d03565b6111b18533858403612797565b506001949350505050565b33600081815260016020908152604080832073ffffffffffffffffffffffffffffffffffffffff871684529091528120549091610e3a91859061120090869061453b565b612797565b60055473ffffffffffffffffffffffffffffffffffffffff163314611286576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d03565b611290600061364b565b565b60055473ffffffffffffffffffffffffffffffffffffffff163314611313576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d03565b6102588310156113a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603360248201527f63616e6e6f7420736574206275796261636b206d6f7265206f6674656e20746860448201527f616e206576657279203130206d696e75746573000000000000000000000000006064820152608401610d03565b6103e882111580156113b5575060015b611441576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603060248201527f4d75737420736574206175746f204c50206275726e2070657263656e7420626560448201527f747765656e20302520616e6420313025000000000000000000000000000000006064820152608401610d03565b601092909255600e55600f80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016911515919091179055565b60055460009073ffffffffffffffffffffffffffffffffffffffff1633146114ff576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d03565b50601480547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00169055600190565b60055473ffffffffffffffffffffffffffffffffffffffff1633146115ae576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d03565b73ffffffffffffffffffffffffffffffffffffffff91909116600090815260236020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016911515919091179055565b60055473ffffffffffffffffffffffffffffffffffffffff163314611685576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d03565b60188390556019829055601a8190558061169f838561453b565b6116a9919061453b565b6017819055600a101561173e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603360248201527f4d757374206b65657020627579206665657320617420313025206f72206c657360448201527f73202d20646f6e742062652067726565647921000000000000000000000000006064820152608401610d03565b505050565b60055473ffffffffffffffffffffffffffffffffffffffff1633146117c4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d03565b60006117cf82611c5f565b9050600b8110156117e8576117e581601461453b565b90505b426117f48260016144bb565b6117fe908261453b565b6006555050601480547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0000ff16620101001790555042601155565b60055473ffffffffffffffffffffffffffffffffffffffff1633146118b8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d03565b6014805491151562010000027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ffff909216919091179055565b60055473ffffffffffffffffffffffffffffffffffffffff163314611971576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d03565b60085460405173ffffffffffffffffffffffffffffffffffffffff918216918316907fc6c540affc7350afe8c8089fb5331c2b272c9f86220e1e7779896b79cb11fe6d90600090a3600880547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b606060048054610daa90614438565b60055473ffffffffffffffffffffffffffffffffffffffff163314611a90576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d03565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611b6c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b65725061697273000000000000006064820152608401610d03565b611b7682826136c2565b5050565b33600090815260016020908152604080832073ffffffffffffffffffffffffffffffffffffffff8616845290915281205482811015611c3b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760448201527f207a65726f0000000000000000000000000000000000000000000000000000006064820152608401610d03565b611c483385858403612797565b5060019392505050565b6000610e3a33848461294a565b600081424433604051602001611cad93929190928352602083019190915260601b7fffffffffffffffffffffffffffffffffffffffff00000000000000000000000016604082015260540190565b6040516020818303038152906040528051906020012060001c611cd09190614553565b92915050565b60055473ffffffffffffffffffffffffffffffffffffffff163314611d57576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d03565b73ffffffffffffffffffffffffffffffffffffffff821660008181526022602090815260409182902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b60055473ffffffffffffffffffffffffffffffffffffffff163314611e62576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d03565b601c839055601d829055601e81905580611e7c838561453b565b611e86919061453b565b601b819055600a101561173e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603460248201527f4d757374206b6565702073656c6c206665657320617420313025206f72206c6560448201527f7373202d20646f6e7420626520677265656479210000000000000000000000006064820152608401610d03565b60055473ffffffffffffffffffffffffffffffffffffffff163314611f9c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d03565b670de0b6b3a76400006103e8611fb160025490565b611fbc9060026144bb565b611fc69190614527565b611fd09190614527565b81101561205f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603060248201527f536f7272792062757420796f752063616e6e6f7420736574206d617857616c6c60448201527f6574206c6f776572207468616e203225000000000000000000000000000000006064820152608401610d03565b61207181670de0b6b3a76400006144bb565b600d5550565b60055460009073ffffffffffffffffffffffffffffffffffffffff1633146120fb576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d03565b620186a061210860025490565b6121139060016144bb565b61211d9190614527565b8210156121ac576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527f20302e3030312520746f74616c20737570706c792e00000000000000000000006064820152608401610d03565b6103e86121b860025490565b6121c39060056144bb565b6121cd9190614527565b82111561225c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160448201527f6e20302e352520746f74616c20737570706c792e0000000000000000000000006064820152608401610d03565b50600c81905560015b919050565b60055460009073ffffffffffffffffffffffffffffffffffffffff1633146122ee576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d03565b50601680547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00169055600190565b60055473ffffffffffffffffffffffffffffffffffffffff16331461239d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d03565b73ffffffffffffffffffffffffffffffffffffffff8116612440576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610d03565b6124498161364b565b50565b60055460009073ffffffffffffffffffffffffffffffffffffffff1633146124d0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d03565b6012546013546124e0919061453b565b4211612548576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4d757374207761697420666f7220636f6f6c646f776e20746f2066696e6973686044820152606401610d03565b6103e88211156125da576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602a60248201527f4d6179206e6f74206e756b65206d6f7265207468616e20313025206f6620746f60448201527f6b656e7320696e204c50000000000000000000000000000000000000000000006064820152608401610d03565b426013556040517f70a0823100000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff7f000000000000000000000000000000000000000000000000000000000000000016600482015260009030906370a0823190602401602060405180830381865afa15801561266b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061268f9190614567565b905060006126a96127106126a38487613741565b90613754565b905080156126de576126de7f000000000000000000000000000000000000000000000000000000000000000061dead83613760565b60007f000000000000000000000000000000000000000000000000000000000000000090508073ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b15801561274b57600080fd5b505af115801561275f573d6000803e3d6000fd5b50506040517f8462566617872a3fbab94534675218431ff9e204063ee3f4f43d965626a39abb925060009150a1506001949350505050565b73ffffffffffffffffffffffffffffffffffffffff8316612839576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610d03565b73ffffffffffffffffffffffffffffffffffffffff82166128dc576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f73730000000000000000000000000000000000000000000000000000000000006064820152608401610d03565b73ffffffffffffffffffffffffffffffffffffffff83811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b73ffffffffffffffffffffffffffffffffffffffff83166129ed576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f64726573730000000000000000000000000000000000000000000000000000006064820152608401610d03565b73ffffffffffffffffffffffffffffffffffffffff8216612a90576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f65737300000000000000000000000000000000000000000000000000000000006064820152608401610d03565b80612aa15761173e83836000613760565b60145460ff161561319e5760055473ffffffffffffffffffffffffffffffffffffffff848116911614801590612af2575060055473ffffffffffffffffffffffffffffffffffffffff838116911614155b8015612b13575073ffffffffffffffffffffffffffffffffffffffff821615155b8015612b37575073ffffffffffffffffffffffffffffffffffffffff821661dead14155b8015612b5e575060055474010000000000000000000000000000000000000000900460ff16155b1561319e57601454610100900460ff16612c315773ffffffffffffffffffffffffffffffffffffffff831660009081526022602052604090205460ff1680612bcb575073ffffffffffffffffffffffffffffffffffffffff821660009081526022602052604090205460ff165b612c31576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601660248201527f54726164696e67206973206e6f74206163746976652e000000000000000000006044820152606401610d03565b60165460ff1615612de75760055473ffffffffffffffffffffffffffffffffffffffff838116911614801590612cb357507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612d0b57507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b15612de757326000908152601560205260409020544311612dd4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152604960248201527f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60448201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60648201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000608482015260a401610d03565b3260009081526015602052604090204390555b73ffffffffffffffffffffffffffffffffffffffff831660009081526024602052604090205460ff168015612e42575073ffffffffffffffffffffffffffffffffffffffff821660009081526023602052604090205460ff16155b15612fe457600b54811115612ed9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527f6d61785472616e73616374696f6e416d6f756e742e00000000000000000000006064820152608401610d03565b600d5473ffffffffffffffffffffffffffffffffffffffff8316600090815260208190526040902054612f0c908361453b565b1115612f74576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601360248201527f4d61782077616c6c6574206578636565646564000000000000000000000000006044820152606401610d03565b6006544211612fdf576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600e60248201527f576169742061206c6974746c652e0000000000000000000000000000000000006044820152606401610d03565b61319e565b73ffffffffffffffffffffffffffffffffffffffff821660009081526024602052604090205460ff16801561303f575073ffffffffffffffffffffffffffffffffffffffff831660009081526023602052604090205460ff16155b156130d657600b54811115612fdf576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560448201527f206d61785472616e73616374696f6e416d6f756e742e000000000000000000006064820152608401610d03565b73ffffffffffffffffffffffffffffffffffffffff821660009081526023602052604090205460ff1661319e57600d5473ffffffffffffffffffffffffffffffffffffffff8316600090815260208190526040902054613136908361453b565b111561319e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601360248201527f4d61782077616c6c6574206578636565646564000000000000000000000000006044820152606401610d03565b30600090815260208190526040902054600c54811080159081906131ca575060145462010000900460ff165b80156131f1575060055474010000000000000000000000000000000000000000900460ff16155b8015613223575073ffffffffffffffffffffffffffffffffffffffff851660009081526024602052604090205460ff16155b8015613255575073ffffffffffffffffffffffffffffffffffffffff851660009081526022602052604090205460ff16155b8015613287575073ffffffffffffffffffffffffffffffffffffffff841660009081526022602052604090205460ff16155b156132fc57600580547fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff16740100000000000000000000000000000000000000001790556132d3613a14565b600580547fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff1690555b60055474010000000000000000000000000000000000000000900460ff1615801561334c575073ffffffffffffffffffffffffffffffffffffffff841660009081526024602052604090205460ff165b801561335a5750600f5460ff165b80156133755750601054601154613371919061453b565b4210155b80156133a7575073ffffffffffffffffffffffffffffffffffffffff851660009081526022602052604090205460ff16155b156133b6576133b4613d09565b505b60055473ffffffffffffffffffffffffffffffffffffffff861660009081526022602052604090205460ff7401000000000000000000000000000000000000000090920482161591168061342f575073ffffffffffffffffffffffffffffffffffffffff851660009081526022602052604090205460ff165b15613438575060005b600081156136375773ffffffffffffffffffffffffffffffffffffffff861660009081526024602052604090205460ff16801561347757506000601b54115b1561352f5761349660646126a3601b548861374190919063ffffffff16565b9050601b54601d54826134a991906144bb565b6134b39190614527565b602060008282546134c4919061453b565b9091555050601b54601e546134d990836144bb565b6134e39190614527565b602160008282546134f4919061453b565b9091555050601b54601c5461350990836144bb565b6135139190614527565b601f6000828254613524919061453b565b909155506136199050565b73ffffffffffffffffffffffffffffffffffffffff871660009081526024602052604090205460ff16801561356657506000601754115b156136195761358560646126a36017548861374190919063ffffffff16565b90506017546019548261359891906144bb565b6135a29190614527565b602060008282546135b3919061453b565b9091555050601754601a546135c890836144bb565b6135d29190614527565b602160008282546135e3919061453b565b90915550506017546018546135f890836144bb565b6136029190614527565b601f6000828254613613919061453b565b90915550505b801561362a5761362a873083613760565b6136348186614580565b94505b613642878787613760565b50505050505050565b6005805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b73ffffffffffffffffffffffffffffffffffffffff821660008181526024602052604080822080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b600061374d82846144bb565b9392505050565b600061374d8284614527565b73ffffffffffffffffffffffffffffffffffffffff8316613803576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f64726573730000000000000000000000000000000000000000000000000000006064820152608401610d03565b73ffffffffffffffffffffffffffffffffffffffff82166138a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f65737300000000000000000000000000000000000000000000000000000000006064820152608401610d03565b73ffffffffffffffffffffffffffffffffffffffff83166000908152602081905260409020548181101561395c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260448201527f616c616e636500000000000000000000000000000000000000000000000000006064820152608401610d03565b73ffffffffffffffffffffffffffffffffffffffff8085166000908152602081905260408082208585039055918516815290812080548492906139a090849061453b565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051613a0691815260200190565b60405180910390a350505050565b3060009081526020819052604081205490506000602154601f54602054613a3b919061453b565b613a45919061453b565b90506000821580613a54575081155b15613a5e57505050565b600c54613a6c9060146144bb565b831115613a8457600c54613a819060146144bb565b92505b600060028360205486613a9791906144bb565b613aa19190614527565b613aab9190614527565b90506000613ab98583613ecc565b905047613ac582613ed8565b6000613ad14783613ecc565b90506000613aee876126a3601f548561374190919063ffffffff16565b90506000613b0b886126a36021548661374190919063ffffffff16565b9050600081613b1a8486614580565b613b249190614580565b60006020819055601f819055602181905560095460405192935073ffffffffffffffffffffffffffffffffffffffff1691849181818185875af1925050503d8060008114613b8e576040519150601f19603f3d011682016040523d82523d6000602084013e613b93565b606091505b50909850508615801590613ba75750600081115b15613c9b57613bb687826140ff565b613bc1600242614553565b613c1157600754600a80547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff909216919091179055613c59565b600854600a80547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff9092169190911790555b60208054604080518981529283018490528201527f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619060600160405180910390a15b600a5460405173ffffffffffffffffffffffffffffffffffffffff909116904790600081818185875af1925050503d8060008114613cf5576040519150601f19603f3d011682016040523d82523d6000602084013e613cfa565b606091505b50505050505050505050505050565b426011556040517f70a0823100000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff7f0000000000000000000000000000000000000000000000000000000000000000166004820152600090819030906370a0823190602401602060405180830381865afa158015613d9c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613dc09190614567565b90506000613ddf6127106126a3600e548561374190919063ffffffff16565b90508015613e1457613e147f000000000000000000000000000000000000000000000000000000000000000061dead83613760565b60007f000000000000000000000000000000000000000000000000000000000000000090508073ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b158015613e8157600080fd5b505af1158015613e95573d6000803e3d6000fd5b50506040517f454c91ae84fcc766ddda0dcb289f26b3d0176efeacf4061fc219fa6ca8c3048d925060009150a16001935050505090565b600061374d8284614580565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110613f0d57613f0d614597565b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015613fb2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613fd691906145c6565b81600181518110613fe957613fe9614597565b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505061404e307f000000000000000000000000000000000000000000000000000000000000000084612797565b6040517f791ac94700000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff7f0000000000000000000000000000000000000000000000000000000000000000169063791ac947906140c99085906000908690309042906004016145e3565b600060405180830381600087803b1580156140e357600080fd5b505af11580156140f7573d6000803e3d6000fd5b505050505050565b61412a307f000000000000000000000000000000000000000000000000000000000000000084612797565b6040517ff305d71900000000000000000000000000000000000000000000000000000000815230600482015260248101839052600060448201819052606482015261dead60848201524260a48201527f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff169063f305d71990839060c40160606040518083038185885af11580156141da573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906141ff919061466e565b5050505050565b73ffffffffffffffffffffffffffffffffffffffff8116811461244957600080fd5b60006020828403121561423a57600080fd5b813561374d81614206565b600060208083528351808285015260005b8181101561427257858101830151858201604001528201614256565b81811115614284576000604083870101525b50601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016929092016040019392505050565b600080604083850312156142cb57600080fd5b82356142d681614206565b946020939093013593505050565b6000602082840312156142f657600080fd5b5035919050565b60008060006060848603121561431257600080fd5b833561431d81614206565b9250602084013561432d81614206565b929592945050506040919091013590565b8035801515811461226557600080fd5b60008060006060848603121561436357600080fd5b833592506020840135915061437a6040850161433e565b90509250925092565b6000806040838503121561439657600080fd5b82356143a181614206565b91506143af6020840161433e565b90509250929050565b6000806000606084860312156143cd57600080fd5b505081359360208301359350604090920135919050565b6000602082840312156143f657600080fd5b61374d8261433e565b6000806040838503121561441257600080fd5b823561441d81614206565b9150602083013561442d81614206565b809150509250929050565b600181811c9082168061444c57607f821691505b60208210811415614486577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156144f3576144f361448c565b500290565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600082614536576145366144f8565b500490565b6000821982111561454e5761454e61448c565b500190565b600082614562576145626144f8565b500690565b60006020828403121561457957600080fd5b5051919050565b6000828210156145925761459261448c565b500390565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000602082840312156145d857600080fd5b815161374d81614206565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b8181101561464057845173ffffffffffffffffffffffffffffffffffffffff168352938301939183019160010161460e565b505073ffffffffffffffffffffffffffffffffffffffff969096166060850152505050608001529392505050565b60008060006060848603121561468357600080fd5b835192506020840151915060408401519050925092509256fea2646970667358221220287264946045905647ce7088855a450ff86c58bef3382060f05e3e3279c30fd164736f6c634300080a00334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572
Deployed Bytecode
0x6080604052600436106103fd5760003560e01c80638da5cb5b1161020d578063bbc0c74211610128578063dd62ed3e116100bb578063f11a24d31161008a578063f63743421161006f578063f637434214610c3a578063f8b45b0514610c50578063fe72b27a14610c6657600080fd5b8063f11a24d314610c04578063f2fde38b14610c1a57600080fd5b8063dd62ed3e14610b59578063e2f4560514610bac578063e884f26014610bc2578063f090e6f614610bd757600080fd5b8063c876d0b9116100f7578063c876d0b914610af3578063c8c8ebe414610b0d578063d257b34f14610b23578063d85ba06314610b4357600080fd5b8063bbc0c74214610a74578063c024666814610a93578063c17b5b8c14610ab3578063c18bc19514610ad357600080fd5b80639fccce32116101a0578063a9059cbb1161016f578063a9059cbb146109d7578063b4317dfe146109f7578063b62496f514610a24578063b863bd3714610a5457600080fd5b80639fccce3214610975578063a0d82dc51461098b578063a457c2d7146109a1578063a4c82a00146109c157600080fd5b806395d89b41116101dc57806395d89b41146109145780639a7a23d6146109295780639c3b4fdc146109495780639ec22c0e1461095f57600080fd5b80638da5cb5b1461087c5780638ea5220f146108a7578063924de9b7146108d4578063939fa730146108f457600080fd5b80632e82f1a0116103185780636a486a8e116102ab578063730c18881161027a5780637571336a1161025f5780637571336a1461081c5780638095d5641461083c57806382aa7c681461085c57600080fd5b8063730c1888146107e7578063751039fc1461080757600080fd5b80636a486a8e146107595780636ddd17131461076f57806370a082311461078f578063715018a6146107d257600080fd5b806344249f04116102e757806344249f04146106af57806349bd5a5e146106c55780634a62bb65146106f95780634fbee1931461071357600080fd5b80632e82f1a014610643578063313ce5671461065d57806332e0b2ed14610679578063395093511461068f57600080fd5b8063184c16c51161039057806323b872dd1161035f57806323b872dd146105ca57806324679bc1146105ea57806327c8f835146106175780632c3e486c1461062d57600080fd5b8063184c16c514610568578063199ffc721461057e5780631a8145bb14610594578063203e727e146105aa57600080fd5b806310d5de53116103cc57806310d5de53146104aa5780631694505e146104da57806318160ddd146105335780631816467f1461054857600080fd5b806306724f501461040957806306fdde031461042b578063095ea7b3146104565780630ae1f9111461048657600080fd5b3661040457005b600080fd5b34801561041557600080fd5b50610429610424366004614228565b610c86565b005b34801561043757600080fd5b50610440610d9b565b60405161044d9190614245565b60405180910390f35b34801561046257600080fd5b506104766104713660046142b8565b610e2d565b604051901515815260200161044d565b34801561049257600080fd5b5061049c601c5481565b60405190815260200161044d565b3480156104b657600080fd5b506104766104c5366004614228565b60236020526000908152604090205460ff1681565b3480156104e657600080fd5b5061050e7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b60405173ffffffffffffffffffffffffffffffffffffffff909116815260200161044d565b34801561053f57600080fd5b5060025461049c565b34801561055457600080fd5b50610429610563366004614228565b610e43565b34801561057457600080fd5b5061049c60125481565b34801561058a57600080fd5b5061049c600e5481565b3480156105a057600080fd5b5061049c60205481565b3480156105b657600080fd5b506104296105c53660046142e4565b610f53565b3480156105d657600080fd5b506104766105e53660046142fd565b6110d6565b3480156105f657600080fd5b50600a5461050e9073ffffffffffffffffffffffffffffffffffffffff1681565b34801561062357600080fd5b5061050e61dead81565b34801561063957600080fd5b5061049c60105481565b34801561064f57600080fd5b50600f546104769060ff1681565b34801561066957600080fd5b506040516012815260200161044d565b34801561068557600080fd5b5061049c60185481565b34801561069b57600080fd5b506104766106aa3660046142b8565b6111bc565b3480156106bb57600080fd5b5061049c601f5481565b3480156106d157600080fd5b5061050e7f00000000000000000000000099fa75cc207c9b1aaced0e81f333c9f9c54a4a4781565b34801561070557600080fd5b506014546104769060ff1681565b34801561071f57600080fd5b5061047661072e366004614228565b73ffffffffffffffffffffffffffffffffffffffff1660009081526022602052604090205460ff1690565b34801561076557600080fd5b5061049c601b5481565b34801561077b57600080fd5b506014546104769062010000900460ff1681565b34801561079b57600080fd5b5061049c6107aa366004614228565b73ffffffffffffffffffffffffffffffffffffffff1660009081526020819052604090205490565b3480156107de57600080fd5b50610429611205565b3480156107f357600080fd5b5061042961080236600461434e565b611292565b34801561081357600080fd5b5061047661147b565b34801561082857600080fd5b50610429610837366004614383565b61152d565b34801561084857600080fd5b506104296108573660046143b8565b611604565b34801561086857600080fd5b506104296108773660046142e4565b611743565b34801561088857600080fd5b5060055473ffffffffffffffffffffffffffffffffffffffff1661050e565b3480156108b357600080fd5b5060095461050e9073ffffffffffffffffffffffffffffffffffffffff1681565b3480156108e057600080fd5b506104296108ef3660046143e4565b611837565b34801561090057600080fd5b5061042961090f366004614228565b6118f0565b34801561092057600080fd5b50610440611a00565b34801561093557600080fd5b50610429610944366004614383565b611a0f565b34801561095557600080fd5b5061049c601a5481565b34801561096b57600080fd5b5061049c60135481565b34801561098157600080fd5b5061049c60215481565b34801561099757600080fd5b5061049c601e5481565b3480156109ad57600080fd5b506104766109bc3660046142b8565b611b7a565b3480156109cd57600080fd5b5061049c60115481565b3480156109e357600080fd5b506104766109f23660046142b8565b611c52565b348015610a0357600080fd5b5060085461050e9073ffffffffffffffffffffffffffffffffffffffff1681565b348015610a3057600080fd5b50610476610a3f366004614228565b60246020526000908152604090205460ff1681565b348015610a6057600080fd5b5061049c610a6f3660046142e4565b611c5f565b348015610a8057600080fd5b5060145461047690610100900460ff1681565b348015610a9f57600080fd5b50610429610aae366004614383565b611cd6565b348015610abf57600080fd5b50610429610ace3660046143b8565b611de1565b348015610adf57600080fd5b50610429610aee3660046142e4565b611f1b565b348015610aff57600080fd5b506016546104769060ff1681565b348015610b1957600080fd5b5061049c600b5481565b348015610b2f57600080fd5b50610476610b3e3660046142e4565b612077565b348015610b4f57600080fd5b5061049c60175481565b348015610b6557600080fd5b5061049c610b743660046143ff565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260016020908152604080832093909416825291909152205490565b348015610bb857600080fd5b5061049c600c5481565b348015610bce57600080fd5b5061047661226a565b348015610be357600080fd5b5060075461050e9073ffffffffffffffffffffffffffffffffffffffff1681565b348015610c1057600080fd5b5061049c60195481565b348015610c2657600080fd5b50610429610c35366004614228565b61231c565b348015610c4657600080fd5b5061049c601d5481565b348015610c5c57600080fd5b5061049c600d5481565b348015610c7257600080fd5b50610476610c813660046142e4565b61244c565b60055473ffffffffffffffffffffffffffffffffffffffff163314610d0c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b60075460405173ffffffffffffffffffffffffffffffffffffffff918216918316907fac8a36276e1954f47c94db09e0cad28eb0270ea56d1229d34146826d6942328290600090a3600780547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b606060038054610daa90614438565b80601f0160208091040260200160405190810160405280929190818152602001828054610dd690614438565b8015610e235780601f10610df857610100808354040283529160200191610e23565b820191906000526020600020905b815481529060010190602001808311610e0657829003601f168201915b5050505050905090565b6000610e3a338484612797565b50600192915050565b60055473ffffffffffffffffffffffffffffffffffffffff163314610ec4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d03565b60095460405173ffffffffffffffffffffffffffffffffffffffff918216918316907f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74390600090a3600980547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b60055473ffffffffffffffffffffffffffffffffffffffff163314610fd4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d03565b670de0b6b3a76400006103e8610fe960025490565b610ff49060016144bb565b610ffe9190614527565b6110089190614527565b8110156110be576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526044602482018190527f4e6f207363616d6d696e67207369722120596f752063616e6e6f742073657420908201527f6d61785472616e73616374696f6e416d6f756e74206c6f776572207468616e2060648201527f302e312500000000000000000000000000000000000000000000000000000000608482015260a401610d03565b6110d081670de0b6b3a76400006144bb565b600b5550565b60006110e384848461294a565b73ffffffffffffffffffffffffffffffffffffffff84166000908152600160209081526040808320338452909152902054828110156111a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206160448201527f6c6c6f77616e63650000000000000000000000000000000000000000000000006064820152608401610d03565b6111b18533858403612797565b506001949350505050565b33600081815260016020908152604080832073ffffffffffffffffffffffffffffffffffffffff871684529091528120549091610e3a91859061120090869061453b565b612797565b60055473ffffffffffffffffffffffffffffffffffffffff163314611286576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d03565b611290600061364b565b565b60055473ffffffffffffffffffffffffffffffffffffffff163314611313576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d03565b6102588310156113a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603360248201527f63616e6e6f7420736574206275796261636b206d6f7265206f6674656e20746860448201527f616e206576657279203130206d696e75746573000000000000000000000000006064820152608401610d03565b6103e882111580156113b5575060015b611441576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603060248201527f4d75737420736574206175746f204c50206275726e2070657263656e7420626560448201527f747765656e20302520616e6420313025000000000000000000000000000000006064820152608401610d03565b601092909255600e55600f80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016911515919091179055565b60055460009073ffffffffffffffffffffffffffffffffffffffff1633146114ff576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d03565b50601480547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00169055600190565b60055473ffffffffffffffffffffffffffffffffffffffff1633146115ae576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d03565b73ffffffffffffffffffffffffffffffffffffffff91909116600090815260236020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016911515919091179055565b60055473ffffffffffffffffffffffffffffffffffffffff163314611685576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d03565b60188390556019829055601a8190558061169f838561453b565b6116a9919061453b565b6017819055600a101561173e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603360248201527f4d757374206b65657020627579206665657320617420313025206f72206c657360448201527f73202d20646f6e742062652067726565647921000000000000000000000000006064820152608401610d03565b505050565b60055473ffffffffffffffffffffffffffffffffffffffff1633146117c4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d03565b60006117cf82611c5f565b9050600b8110156117e8576117e581601461453b565b90505b426117f48260016144bb565b6117fe908261453b565b6006555050601480547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0000ff16620101001790555042601155565b60055473ffffffffffffffffffffffffffffffffffffffff1633146118b8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d03565b6014805491151562010000027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ffff909216919091179055565b60055473ffffffffffffffffffffffffffffffffffffffff163314611971576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d03565b60085460405173ffffffffffffffffffffffffffffffffffffffff918216918316907fc6c540affc7350afe8c8089fb5331c2b272c9f86220e1e7779896b79cb11fe6d90600090a3600880547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b606060048054610daa90614438565b60055473ffffffffffffffffffffffffffffffffffffffff163314611a90576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d03565b7f00000000000000000000000099fa75cc207c9b1aaced0e81f333c9f9c54a4a4773ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611b6c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b65725061697273000000000000006064820152608401610d03565b611b7682826136c2565b5050565b33600090815260016020908152604080832073ffffffffffffffffffffffffffffffffffffffff8616845290915281205482811015611c3b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760448201527f207a65726f0000000000000000000000000000000000000000000000000000006064820152608401610d03565b611c483385858403612797565b5060019392505050565b6000610e3a33848461294a565b600081424433604051602001611cad93929190928352602083019190915260601b7fffffffffffffffffffffffffffffffffffffffff00000000000000000000000016604082015260540190565b6040516020818303038152906040528051906020012060001c611cd09190614553565b92915050565b60055473ffffffffffffffffffffffffffffffffffffffff163314611d57576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d03565b73ffffffffffffffffffffffffffffffffffffffff821660008181526022602090815260409182902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b60055473ffffffffffffffffffffffffffffffffffffffff163314611e62576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d03565b601c839055601d829055601e81905580611e7c838561453b565b611e86919061453b565b601b819055600a101561173e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603460248201527f4d757374206b6565702073656c6c206665657320617420313025206f72206c6560448201527f7373202d20646f6e7420626520677265656479210000000000000000000000006064820152608401610d03565b60055473ffffffffffffffffffffffffffffffffffffffff163314611f9c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d03565b670de0b6b3a76400006103e8611fb160025490565b611fbc9060026144bb565b611fc69190614527565b611fd09190614527565b81101561205f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603060248201527f536f7272792062757420796f752063616e6e6f7420736574206d617857616c6c60448201527f6574206c6f776572207468616e203225000000000000000000000000000000006064820152608401610d03565b61207181670de0b6b3a76400006144bb565b600d5550565b60055460009073ffffffffffffffffffffffffffffffffffffffff1633146120fb576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d03565b620186a061210860025490565b6121139060016144bb565b61211d9190614527565b8210156121ac576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527f20302e3030312520746f74616c20737570706c792e00000000000000000000006064820152608401610d03565b6103e86121b860025490565b6121c39060056144bb565b6121cd9190614527565b82111561225c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160448201527f6e20302e352520746f74616c20737570706c792e0000000000000000000000006064820152608401610d03565b50600c81905560015b919050565b60055460009073ffffffffffffffffffffffffffffffffffffffff1633146122ee576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d03565b50601680547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00169055600190565b60055473ffffffffffffffffffffffffffffffffffffffff16331461239d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d03565b73ffffffffffffffffffffffffffffffffffffffff8116612440576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610d03565b6124498161364b565b50565b60055460009073ffffffffffffffffffffffffffffffffffffffff1633146124d0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d03565b6012546013546124e0919061453b565b4211612548576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4d757374207761697420666f7220636f6f6c646f776e20746f2066696e6973686044820152606401610d03565b6103e88211156125da576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602a60248201527f4d6179206e6f74206e756b65206d6f7265207468616e20313025206f6620746f60448201527f6b656e7320696e204c50000000000000000000000000000000000000000000006064820152608401610d03565b426013556040517f70a0823100000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff7f00000000000000000000000099fa75cc207c9b1aaced0e81f333c9f9c54a4a4716600482015260009030906370a0823190602401602060405180830381865afa15801561266b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061268f9190614567565b905060006126a96127106126a38487613741565b90613754565b905080156126de576126de7f00000000000000000000000099fa75cc207c9b1aaced0e81f333c9f9c54a4a4761dead83613760565b60007f00000000000000000000000099fa75cc207c9b1aaced0e81f333c9f9c54a4a4790508073ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b15801561274b57600080fd5b505af115801561275f573d6000803e3d6000fd5b50506040517f8462566617872a3fbab94534675218431ff9e204063ee3f4f43d965626a39abb925060009150a1506001949350505050565b73ffffffffffffffffffffffffffffffffffffffff8316612839576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610d03565b73ffffffffffffffffffffffffffffffffffffffff82166128dc576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f73730000000000000000000000000000000000000000000000000000000000006064820152608401610d03565b73ffffffffffffffffffffffffffffffffffffffff83811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b73ffffffffffffffffffffffffffffffffffffffff83166129ed576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f64726573730000000000000000000000000000000000000000000000000000006064820152608401610d03565b73ffffffffffffffffffffffffffffffffffffffff8216612a90576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f65737300000000000000000000000000000000000000000000000000000000006064820152608401610d03565b80612aa15761173e83836000613760565b60145460ff161561319e5760055473ffffffffffffffffffffffffffffffffffffffff848116911614801590612af2575060055473ffffffffffffffffffffffffffffffffffffffff838116911614155b8015612b13575073ffffffffffffffffffffffffffffffffffffffff821615155b8015612b37575073ffffffffffffffffffffffffffffffffffffffff821661dead14155b8015612b5e575060055474010000000000000000000000000000000000000000900460ff16155b1561319e57601454610100900460ff16612c315773ffffffffffffffffffffffffffffffffffffffff831660009081526022602052604090205460ff1680612bcb575073ffffffffffffffffffffffffffffffffffffffff821660009081526022602052604090205460ff165b612c31576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601660248201527f54726164696e67206973206e6f74206163746976652e000000000000000000006044820152606401610d03565b60165460ff1615612de75760055473ffffffffffffffffffffffffffffffffffffffff838116911614801590612cb357507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612d0b57507f00000000000000000000000099fa75cc207c9b1aaced0e81f333c9f9c54a4a4773ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b15612de757326000908152601560205260409020544311612dd4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152604960248201527f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60448201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60648201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000608482015260a401610d03565b3260009081526015602052604090204390555b73ffffffffffffffffffffffffffffffffffffffff831660009081526024602052604090205460ff168015612e42575073ffffffffffffffffffffffffffffffffffffffff821660009081526023602052604090205460ff16155b15612fe457600b54811115612ed9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527f6d61785472616e73616374696f6e416d6f756e742e00000000000000000000006064820152608401610d03565b600d5473ffffffffffffffffffffffffffffffffffffffff8316600090815260208190526040902054612f0c908361453b565b1115612f74576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601360248201527f4d61782077616c6c6574206578636565646564000000000000000000000000006044820152606401610d03565b6006544211612fdf576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600e60248201527f576169742061206c6974746c652e0000000000000000000000000000000000006044820152606401610d03565b61319e565b73ffffffffffffffffffffffffffffffffffffffff821660009081526024602052604090205460ff16801561303f575073ffffffffffffffffffffffffffffffffffffffff831660009081526023602052604090205460ff16155b156130d657600b54811115612fdf576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560448201527f206d61785472616e73616374696f6e416d6f756e742e000000000000000000006064820152608401610d03565b73ffffffffffffffffffffffffffffffffffffffff821660009081526023602052604090205460ff1661319e57600d5473ffffffffffffffffffffffffffffffffffffffff8316600090815260208190526040902054613136908361453b565b111561319e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601360248201527f4d61782077616c6c6574206578636565646564000000000000000000000000006044820152606401610d03565b30600090815260208190526040902054600c54811080159081906131ca575060145462010000900460ff165b80156131f1575060055474010000000000000000000000000000000000000000900460ff16155b8015613223575073ffffffffffffffffffffffffffffffffffffffff851660009081526024602052604090205460ff16155b8015613255575073ffffffffffffffffffffffffffffffffffffffff851660009081526022602052604090205460ff16155b8015613287575073ffffffffffffffffffffffffffffffffffffffff841660009081526022602052604090205460ff16155b156132fc57600580547fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff16740100000000000000000000000000000000000000001790556132d3613a14565b600580547fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff1690555b60055474010000000000000000000000000000000000000000900460ff1615801561334c575073ffffffffffffffffffffffffffffffffffffffff841660009081526024602052604090205460ff165b801561335a5750600f5460ff165b80156133755750601054601154613371919061453b565b4210155b80156133a7575073ffffffffffffffffffffffffffffffffffffffff851660009081526022602052604090205460ff16155b156133b6576133b4613d09565b505b60055473ffffffffffffffffffffffffffffffffffffffff861660009081526022602052604090205460ff7401000000000000000000000000000000000000000090920482161591168061342f575073ffffffffffffffffffffffffffffffffffffffff851660009081526022602052604090205460ff165b15613438575060005b600081156136375773ffffffffffffffffffffffffffffffffffffffff861660009081526024602052604090205460ff16801561347757506000601b54115b1561352f5761349660646126a3601b548861374190919063ffffffff16565b9050601b54601d54826134a991906144bb565b6134b39190614527565b602060008282546134c4919061453b565b9091555050601b54601e546134d990836144bb565b6134e39190614527565b602160008282546134f4919061453b565b9091555050601b54601c5461350990836144bb565b6135139190614527565b601f6000828254613524919061453b565b909155506136199050565b73ffffffffffffffffffffffffffffffffffffffff871660009081526024602052604090205460ff16801561356657506000601754115b156136195761358560646126a36017548861374190919063ffffffff16565b90506017546019548261359891906144bb565b6135a29190614527565b602060008282546135b3919061453b565b9091555050601754601a546135c890836144bb565b6135d29190614527565b602160008282546135e3919061453b565b90915550506017546018546135f890836144bb565b6136029190614527565b601f6000828254613613919061453b565b90915550505b801561362a5761362a873083613760565b6136348186614580565b94505b613642878787613760565b50505050505050565b6005805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b73ffffffffffffffffffffffffffffffffffffffff821660008181526024602052604080822080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b600061374d82846144bb565b9392505050565b600061374d8284614527565b73ffffffffffffffffffffffffffffffffffffffff8316613803576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f64726573730000000000000000000000000000000000000000000000000000006064820152608401610d03565b73ffffffffffffffffffffffffffffffffffffffff82166138a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f65737300000000000000000000000000000000000000000000000000000000006064820152608401610d03565b73ffffffffffffffffffffffffffffffffffffffff83166000908152602081905260409020548181101561395c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260448201527f616c616e636500000000000000000000000000000000000000000000000000006064820152608401610d03565b73ffffffffffffffffffffffffffffffffffffffff8085166000908152602081905260408082208585039055918516815290812080548492906139a090849061453b565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051613a0691815260200190565b60405180910390a350505050565b3060009081526020819052604081205490506000602154601f54602054613a3b919061453b565b613a45919061453b565b90506000821580613a54575081155b15613a5e57505050565b600c54613a6c9060146144bb565b831115613a8457600c54613a819060146144bb565b92505b600060028360205486613a9791906144bb565b613aa19190614527565b613aab9190614527565b90506000613ab98583613ecc565b905047613ac582613ed8565b6000613ad14783613ecc565b90506000613aee876126a3601f548561374190919063ffffffff16565b90506000613b0b886126a36021548661374190919063ffffffff16565b9050600081613b1a8486614580565b613b249190614580565b60006020819055601f819055602181905560095460405192935073ffffffffffffffffffffffffffffffffffffffff1691849181818185875af1925050503d8060008114613b8e576040519150601f19603f3d011682016040523d82523d6000602084013e613b93565b606091505b50909850508615801590613ba75750600081115b15613c9b57613bb687826140ff565b613bc1600242614553565b613c1157600754600a80547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff909216919091179055613c59565b600854600a80547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff9092169190911790555b60208054604080518981529283018490528201527f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619060600160405180910390a15b600a5460405173ffffffffffffffffffffffffffffffffffffffff909116904790600081818185875af1925050503d8060008114613cf5576040519150601f19603f3d011682016040523d82523d6000602084013e613cfa565b606091505b50505050505050505050505050565b426011556040517f70a0823100000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff7f00000000000000000000000099fa75cc207c9b1aaced0e81f333c9f9c54a4a47166004820152600090819030906370a0823190602401602060405180830381865afa158015613d9c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613dc09190614567565b90506000613ddf6127106126a3600e548561374190919063ffffffff16565b90508015613e1457613e147f00000000000000000000000099fa75cc207c9b1aaced0e81f333c9f9c54a4a4761dead83613760565b60007f00000000000000000000000099fa75cc207c9b1aaced0e81f333c9f9c54a4a4790508073ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b158015613e8157600080fd5b505af1158015613e95573d6000803e3d6000fd5b50506040517f454c91ae84fcc766ddda0dcb289f26b3d0176efeacf4061fc219fa6ca8c3048d925060009150a16001935050505090565b600061374d8284614580565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110613f0d57613f0d614597565b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015613fb2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613fd691906145c6565b81600181518110613fe957613fe9614597565b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505061404e307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84612797565b6040517f791ac94700000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac947906140c99085906000908690309042906004016145e3565b600060405180830381600087803b1580156140e357600080fd5b505af11580156140f7573d6000803e3d6000fd5b505050505050565b61412a307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84612797565b6040517ff305d71900000000000000000000000000000000000000000000000000000000815230600482015260248101839052600060448201819052606482015261dead60848201524260a48201527f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff169063f305d71990839060c40160606040518083038185885af11580156141da573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906141ff919061466e565b5050505050565b73ffffffffffffffffffffffffffffffffffffffff8116811461244957600080fd5b60006020828403121561423a57600080fd5b813561374d81614206565b600060208083528351808285015260005b8181101561427257858101830151858201604001528201614256565b81811115614284576000604083870101525b50601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016929092016040019392505050565b600080604083850312156142cb57600080fd5b82356142d681614206565b946020939093013593505050565b6000602082840312156142f657600080fd5b5035919050565b60008060006060848603121561431257600080fd5b833561431d81614206565b9250602084013561432d81614206565b929592945050506040919091013590565b8035801515811461226557600080fd5b60008060006060848603121561436357600080fd5b833592506020840135915061437a6040850161433e565b90509250925092565b6000806040838503121561439657600080fd5b82356143a181614206565b91506143af6020840161433e565b90509250929050565b6000806000606084860312156143cd57600080fd5b505081359360208301359350604090920135919050565b6000602082840312156143f657600080fd5b61374d8261433e565b6000806040838503121561441257600080fd5b823561441d81614206565b9150602083013561442d81614206565b809150509250929050565b600181811c9082168061444c57607f821691505b60208210811415614486577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156144f3576144f361448c565b500290565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600082614536576145366144f8565b500490565b6000821982111561454e5761454e61448c565b500190565b600082614562576145626144f8565b500690565b60006020828403121561457957600080fd5b5051919050565b6000828210156145925761459261448c565b500390565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000602082840312156145d857600080fd5b815161374d81614206565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b8181101561464057845173ffffffffffffffffffffffffffffffffffffffff168352938301939183019160010161460e565b505073ffffffffffffffffffffffffffffffffffffffff969096166060850152505050608001529392505050565b60008060006060848603121561468357600080fd5b835192506020840151915060408401519050925092509256fea2646970667358221220287264946045905647ce7088855a450ff86c58bef3382060f05e3e3279c30fd164736f6c634300080a0033
Deployed Bytecode Sourcemap
30871:20908:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40291:210;;;;;;;;;;-1:-1:-1;40291:210:0;;;;;:::i;:::-;;:::i;:::-;;8606:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10773:169;;;;;;;;;;-1:-1:-1;10773:169:0;;;;;:::i;:::-;;:::i;:::-;;;1571:14:1;;1564:22;1546:41;;1534:2;1519:18;10773:169:0;1406:187:1;32224:28:0;;;;;;;;;;;;;;;;;;;1744:25:1;;;1732:2;1717:18;32224:28:0;1598:177:1;32575:63:0;;;;;;;;;;-1:-1:-1;32575:63:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;30947:51;;;;;;;;;;;;;;;;;;1983:42:1;1971:55;;;1953:74;;1941:2;1926:18;30947:51:0;1780:253:1;9726:108:0;;;;;;;;;;-1:-1:-1;9814:12:0;;9726:108;;40748:157;;;;;;;;;;-1:-1:-1;40748:157:0;;;;;:::i;:::-;;:::i;31605:47::-;;;;;;;;;;;;;;;;31420:36;;;;;;;;;;;;;;;;32369:33;;;;;;;;;;;;;;;;37786:296;;;;;;;;;;-1:-1:-1;37786:296:0;;;;;:::i;:::-;;:::i;11424:492::-;;;;;;;;;;-1:-1:-1;11424:492:0;;;;;:::i;:::-;;:::i;31263:33::-;;;;;;;;;;-1:-1:-1;31263:33:0;;;;;;;;31050:53;;;;;;;;;;;;31096:6;31050:53;;31515:45;;;;;;;;;;;;;;;;31476:32;;;;;;;;;;-1:-1:-1;31476:32:0;;;;;;;;9568:93;;;;;;;;;;-1:-1:-1;9568:93:0;;9651:2;3057:36:1;;3045:2;3030:18;9568:93:0;2915:184:1;32085:27:0;;;;;;;;;;;;;;;;12325:215;;;;;;;;;;-1:-1:-1;12325:215:0;;;;;:::i;:::-;;:::i;32331:31::-;;;;;;;;;;;;;;;;31005:38;;;;;;;;;;;;;;;31705:33;;;;;;;;;;-1:-1:-1;31705:33:0;;;;;;;;40913:126;;;;;;;;;;-1:-1:-1;40913:126:0;;;;;:::i;:::-;41003:28;;40979:4;41003:28;;;:19;:28;;;;;;;;;40913:126;32189:28;;;;;;;;;;;;;;;;31785:31;;;;;;;;;;-1:-1:-1;31785:31:0;;;;;;;;;;;9897:127;;;;;;;;;;-1:-1:-1;9897:127:0;;;;;:::i;:::-;9998:18;;9971:7;9998:18;;;;;;;;;;;;9897:127;2510:103;;;;;;;;;;;;;:::i;49361:555::-;;;;;;;;;;-1:-1:-1;49361:555:0;;;;;:::i;:::-;;:::i;36894:121::-;;;;;;;;;;;;;:::i;38366:167::-;;;;;;;;;;-1:-1:-1;38366:167:0;;;;;:::i;:::-;;:::i;38737:413::-;;;;;;;;;;-1:-1:-1;38737:413:0;;;;;:::i;:::-;;:::i;36438:404::-;;;;;;;;;;-1:-1:-1;36438:404:0;;;;;:::i;:::-;;:::i;1859:87::-;;;;;;;;;;-1:-1:-1;1932:6:0;;;;1859:87;;31232:24;;;;;;;;;;-1:-1:-1;31232:24:0;;;;;;;;38629:100;;;;;;;;;;-1:-1:-1;38629:100:0;;;;;:::i;:::-;;:::i;40509:231::-;;;;;;;;;;-1:-1:-1;40509:231:0;;;;;:::i;:::-;;:::i;8825:104::-;;;;;;;;;;;;;:::i;39779:304::-;;;;;;;;;;-1:-1:-1;39779:304:0;;;;;:::i;:::-;;:::i;32156:24::-;;;;;;;;;;;;;;;;31659:35;;;;;;;;;;;;;;;;32409:27;;;;;;;;;;;;;;;;32297:25;;;;;;;;;;;;;;;;13043:413;;;;;;;;;;-1:-1:-1;13043:413:0;;;;;:::i;:::-;;:::i;31567:29::-;;;;;;;;;;;;;;;;10237:175;;;;;;;;;;-1:-1:-1;10237:175:0;;;;;:::i;:::-;;:::i;31195:30::-;;;;;;;;;;-1:-1:-1;31195:30:0;;;;;;;;32796:57;;;;;;;;;;-1:-1:-1;32796:57:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;36207:177;;;;;;;;;;-1:-1:-1;36207:177:0;;;;;:::i;:::-;;:::i;31745:33::-;;;;;;;;;;-1:-1:-1;31745:33:0;;;;;;;;;;;39589:182;;;;;;;;;;-1:-1:-1;39589:182:0;;;;;:::i;:::-;;:::i;39158:423::-;;;;;;;;;;-1:-1:-1;39158:423:0;;;;;:::i;:::-;;:::i;38090:268::-;;;;;;;;;;-1:-1:-1;38090:268:0;;;;;:::i;:::-;;:::i;32003:39::-;;;;;;;;;;-1:-1:-1;32003:39:0;;;;;;;;31305:35;;;;;;;;;;;;;;;;37281:497;;;;;;;;;;-1:-1:-1;37281:497:0;;;;;:::i;:::-;;:::i;32051:27::-;;;;;;;;;;;;;;;;10475:151;;;;;;;;;;-1:-1:-1;10475:151:0;;;;;:::i;:::-;10591:18;;;;10564:7;10591:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;10475:151;31347:33;;;;;;;;;;;;;;;;37076:135;;;;;;;;;;;;;:::i;31161:27::-;;;;;;;;;;-1:-1:-1;31161:27:0;;;;;;;;32119:30;;;;;;;;;;;;;;;;2768:201;;;;;;;;;;-1:-1:-1;2768:201:0;;;;;:::i;:::-;;:::i;32259:31::-;;;;;;;;;;;;;;;;31387:24;;;;;;;;;;;;;;;;50720:1056;;;;;;;;;;-1:-1:-1;50720:1056:0;;;;;:::i;:::-;;:::i;40291:210::-;1932:6;;2079:23;1932:6;804:10;2079:23;2071:68;;;;;;;5011:2:1;2071:68:0;;;4993:21:1;;;5030:18;;;5023:30;5089:34;5069:18;;;5062:62;5141:18;;2071:68:0;;;;;;;;;40439:12:::1;::::0;40402:50:::1;::::0;40439:12:::1;::::0;;::::1;::::0;40402:50;::::1;::::0;::::1;::::0;40439:12:::1;::::0;40402:50:::1;40463:12;:30:::0;;;::::1;;::::0;;;::::1;::::0;;;::::1;::::0;;40291:210::o;8606:100::-;8660:13;8693:5;8686:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8606:100;:::o;10773:169::-;10856:4;10873:39;804:10;10896:7;10905:6;10873:8;:39::i;:::-;-1:-1:-1;10930:4:0;10773:169;;;;:::o;40748:157::-;1932:6;;2079:23;1932:6;804:10;2079:23;2071:68;;;;;;;5011:2:1;2071:68:0;;;4993:21:1;;;5030:18;;;5023:30;5089:34;5069:18;;;5062:62;5141:18;;2071:68:0;4809:356:1;2071:68:0;40855:9:::1;::::0;40827:38:::1;::::0;40855:9:::1;::::0;;::::1;::::0;40827:38;::::1;::::0;::::1;::::0;40855:9:::1;::::0;40827:38:::1;40876:9;:21:::0;;;::::1;;::::0;;;::::1;::::0;;;::::1;::::0;;40748:157::o;37786:296::-;1932:6;;2079:23;1932:6;804:10;2079:23;2071:68;;;;;;;5011:2:1;2071:68:0;;;4993:21:1;;;5030:18;;;5023:30;5089:34;5069:18;;;5062:62;5141:18;;2071:68:0;4809:356:1;2071:68:0;37923:4:::1;37915;37894:13;9814:12:::0;;;9726:108;37894:13:::1;:17;::::0;37910:1:::1;37894:17;:::i;:::-;37893:26;;;;:::i;:::-;37892:35;;;;:::i;:::-;37882:6;:45;;37860:163;;;::::0;::::1;::::0;;6550:2:1;37860:163:0::1;::::0;::::1;6532:21:1::0;6589:2;6569:18;;;6562:30;;;6628:34;6608:18;;;6601:62;6699:34;6679:18;;;6672:62;6771:6;6750:19;;;6743:35;6795:19;;37860:163:0::1;6348:472:1::0;37860:163:0::1;38057:17;:6:::0;38067::::1;38057:17;:::i;:::-;38034:20;:40:::0;-1:-1:-1;37786:296:0:o;11424:492::-;11564:4;11581:36;11591:6;11599:9;11610:6;11581:9;:36::i;:::-;11657:19;;;11630:24;11657:19;;;:11;:19;;;;;;;;804:10;11657:33;;;;;;;;11709:26;;;;11701:79;;;;;;;7027:2:1;11701:79:0;;;7009:21:1;7066:2;7046:18;;;7039:30;7105:34;7085:18;;;7078:62;7176:10;7156:18;;;7149:38;7204:19;;11701:79:0;6825:404:1;11701:79:0;11816:57;11825:6;804:10;11866:6;11847:16;:25;11816:8;:57::i;:::-;-1:-1:-1;11904:4:0;;11424:492;-1:-1:-1;;;;11424:492:0:o;12325:215::-;804:10;12413:4;12462:25;;;:11;:25;;;;;;;;;:34;;;;;;;;;;12413:4;;12430:80;;12453:7;;12462:47;;12499:10;;12462:47;:::i;:::-;12430:8;:80::i;2510:103::-;1932:6;;2079:23;1932:6;804:10;2079:23;2071:68;;;;;;;5011:2:1;2071:68:0;;;4993:21:1;;;5030:18;;;5023:30;5089:34;5069:18;;;5062:62;5141:18;;2071:68:0;4809:356:1;2071:68:0;2575:30:::1;2602:1;2575:18;:30::i;:::-;2510:103::o:0;49361:555::-;1932:6;;2079:23;1932:6;804:10;2079:23;2071:68;;;;;;;5011:2:1;2071:68:0;;;4993:21:1;;;5030:18;;;5023:30;5089:34;5069:18;;;5062:62;5141:18;;2071:68:0;4809:356:1;2071:68:0;49563:3:::1;49540:19;:26;;49518:127;;;::::0;::::1;::::0;;7569:2:1;49518:127:0::1;::::0;::::1;7551:21:1::0;7608:2;7588:18;;;7581:30;7647:34;7627:18;;;7620:62;7718:21;7698:18;;;7691:49;7757:19;;49518:127:0::1;7367:415:1::0;49518:127:0::1;49690:4;49678:8;:16;;:33;;;;-1:-1:-1::0;49698:13:0;49678:33:::1;49656:131;;;::::0;::::1;::::0;;7989:2:1;49656:131:0::1;::::0;::::1;7971:21:1::0;8028:2;8008:18;;;8001:30;8067:34;8047:18;;;8040:62;8138:18;8118;;;8111:46;8174:19;;49656:131:0::1;7787:412:1::0;49656:131:0::1;49798:15;:37:::0;;;;49846:16:::1;:27:::0;49884:13:::1;:24:::0;;;::::1;::::0;::::1;;::::0;;;::::1;::::0;;49361:555::o;36894:121::-;1932:6;;36946:4;;2079:23;1932:6;804:10;2079:23;2071:68;;;;;;;5011:2:1;2071:68:0;;;4993:21:1;;;5030:18;;;5023:30;5089:34;5069:18;;;5062:62;5141:18;;2071:68:0;4809:356:1;2071:68:0;-1:-1:-1;36963:14:0::1;:22:::0;;;::::1;::::0;;;36894:121;:::o;38366:167::-;1932:6;;2079:23;1932:6;804:10;2079:23;2071:68;;;;;;;5011:2:1;2071:68:0;;;4993:21:1;;;5030:18;;;5023:30;5089:34;5069:18;;;5062:62;5141:18;;2071:68:0;4809:356:1;2071:68:0;38479:39:::1;::::0;;;::::1;;::::0;;;:31:::1;:39;::::0;;;;:46;;;::::1;::::0;::::1;;::::0;;;::::1;::::0;;38366:167::o;38737:413::-;1932:6;;2079:23;1932:6;804:10;2079:23;2071:68;;;;;;;5011:2:1;2071:68:0;;;4993:21:1;;;5030:18;;;5023:30;5089:34;5069:18;;;5062:62;5141:18;;2071:68:0;4809:356:1;2071:68:0;38884:12:::1;:25:::0;;;38920:15:::1;:31:::0;;;38962:9:::1;:19:::0;;;38974:7;39007:30:::1;38938:13:::0;38899:10;39007:30:::1;:::i;:::-;:42;;;;:::i;:::-;38992:12;:57:::0;;;39084:2:::1;-1:-1:-1::0;39068:18:0::1;39060:82;;;::::0;::::1;::::0;;8406:2:1;39060:82:0::1;::::0;::::1;8388:21:1::0;8445:2;8425:18;;;8418:30;8484:34;8464:18;;;8457:62;8555:21;8535:18;;;8528:49;8594:19;;39060:82:0::1;8204:415:1::0;39060:82:0::1;38737:413:::0;;;:::o;36438:404::-;1932:6;;2079:23;1932:6;804:10;2079:23;2071:68;;;;;;;5011:2:1;2071:68:0;;;4993:21:1;;;5030:18;;;5023:30;5089:34;5069:18;;;5062:62;5141:18;;2071:68:0;4809:356:1;2071:68:0;36511:15:::1;36529:18;36536:10;36529:6;:18::i;:::-;36511:36;;36572:2;36562:7;:12;36558:71;;;36601:12;:7:::0;36611:2:::1;36601:12;:::i;:::-;36591:22;;36558:71;36661:15;36711:19;:7:::0;36721:9:::1;36711:19;:::i;:::-;36697:33;::::0;:11;:33:::1;:::i;:::-;36687:6;:44:::0;-1:-1:-1;;36742:13:0::1;:20:::0;;36773:18;;;;;;-1:-1:-1;36819:15:0::1;36802:14;:32:::0;36438:404::o;38629:100::-;1932:6;;2079:23;1932:6;804:10;2079:23;2071:68;;;;;;;5011:2:1;2071:68:0;;;4993:21:1;;;5030:18;;;5023:30;5089:34;5069:18;;;5062:62;5141:18;;2071:68:0;4809:356:1;2071:68:0;38700:11:::1;:21:::0;;;::::1;;::::0;::::1;::::0;;;::::1;::::0;;;::::1;::::0;;38629:100::o;40509:231::-;1932:6;;2079:23;1932:6;804:10;2079:23;2071:68;;;;;;;5011:2:1;2071:68:0;;;4993:21:1;;;5030:18;;;5023:30;5089:34;5069:18;;;5062:62;5141:18;;2071:68:0;4809:356:1;2071:68:0;40669:15:::1;::::0;40626:59:::1;::::0;40669:15:::1;::::0;;::::1;::::0;40626:59;::::1;::::0;::::1;::::0;40669:15:::1;::::0;40626:59:::1;40696:15;:36:::0;;;::::1;;::::0;;;::::1;::::0;;;::::1;::::0;;40509:231::o;8825:104::-;8881:13;8914:7;8907:14;;;;;:::i;39779:304::-;1932:6;;2079:23;1932:6;804:10;2079:23;2071:68;;;;;;;5011:2:1;2071:68:0;;;4993:21:1;;;5030:18;;;5023:30;5089:34;5069:18;;;5062:62;5141:18;;2071:68:0;4809:356:1;2071:68:0;39923:13:::1;39915:21;;:4;:21;;;;39893:128;;;::::0;::::1;::::0;;8826:2:1;39893:128:0::1;::::0;::::1;8808:21:1::0;8865:2;8845:18;;;8838:30;8904:34;8884:18;;;8877:62;8975:27;8955:18;;;8948:55;9020:19;;39893:128:0::1;8624:421:1::0;39893:128:0::1;40034:41;40063:4;40069:5;40034:28;:41::i;:::-;39779:304:::0;;:::o;13043:413::-;804:10;13136:4;13180:25;;;:11;:25;;;;;;;;;:34;;;;;;;;;;13233:35;;;;13225:85;;;;;;;9252:2:1;13225:85:0;;;9234:21:1;9291:2;9271:18;;;9264:30;9330:34;9310:18;;;9303:62;9401:7;9381:18;;;9374:35;9426:19;;13225:85:0;9050:401:1;13225:85:0;13346:67;804:10;13369:7;13397:15;13378:16;:34;13346:8;:67::i;:::-;-1:-1:-1;13444:4:0;;13043:413;-1:-1:-1;;;13043:413:0:o;10237:175::-;10323:4;10340:42;804:10;10364:9;10375:6;10340:9;:42::i;36207:177::-;36256:4;36370:6;36311:15;36327:16;36354:10;36294:71;;;;;;;;;9641:19:1;;;9685:2;9676:12;;9669:28;;;;9735:2;9731:15;9748:66;9727:88;9722:2;9713:12;;9706:110;9841:2;9832:12;;9456:394;36294:71:0;;;;;;;;;;;;;36284:82;;;;;;36279:88;;:97;;;;:::i;:::-;36272:104;36207:177;-1:-1:-1;;36207:177:0:o;39589:182::-;1932:6;;2079:23;1932:6;804:10;2079:23;2071:68;;;;;;;5011:2:1;2071:68:0;;;4993:21:1;;;5030:18;;;5023:30;5089:34;5069:18;;;5062:62;5141:18;;2071:68:0;4809:356:1;2071:68:0;39674:28:::1;::::0;::::1;;::::0;;;:19:::1;:28;::::0;;;;;;;;:39;;;::::1;::::0;::::1;;::::0;;::::1;::::0;;;39729:34;;1546:41:1;;;39729:34:0::1;::::0;1519:18:1;39729:34:0::1;;;;;;;39589:182:::0;;:::o;39158:423::-;1932:6;;2079:23;1932:6;804:10;2079:23;2071:68;;;;;;;5011:2:1;2071:68:0;;;4993:21:1;;;5030:18;;;5023:30;5089:34;5069:18;;;5062:62;5141:18;;2071:68:0;4809:356:1;2071:68:0;39306:13:::1;:26:::0;;;39343:16:::1;:32:::0;;;39386:10:::1;:20:::0;;;39399:7;39433:32:::1;39362:13:::0;39322:10;39433:32:::1;:::i;:::-;:45;;;;:::i;:::-;39417:13;:61:::0;;;39514:2:::1;-1:-1:-1::0;39497:19:0::1;39489:84;;;::::0;::::1;::::0;;10174:2:1;39489:84:0::1;::::0;::::1;10156:21:1::0;10213:2;10193:18;;;10186:30;10252:34;10232:18;;;10225:62;10323:22;10303:18;;;10296:50;10363:19;;39489:84:0::1;9972:416:1::0;38090:268:0;1932:6;;2079:23;1932:6;804:10;2079:23;2071:68;;;;;;;5011:2:1;2071:68:0;;;4993:21:1;;;5030:18;;;5023:30;5089:34;5069:18;;;5062:62;5141:18;;2071:68:0;4809:356:1;2071:68:0;38230:4:::1;38222;38201:13;9814:12:::0;;;9726:108;38201:13:::1;:17;::::0;38217:1:::1;38201:17;:::i;:::-;38200:26;;;;:::i;:::-;38199:35;;;;:::i;:::-;38189:6;:45;;38167:143;;;::::0;::::1;::::0;;10595:2:1;38167:143:0::1;::::0;::::1;10577:21:1::0;10634:2;10614:18;;;10607:30;10673:34;10653:18;;;10646:62;10744:18;10724;;;10717:46;10780:19;;38167:143:0::1;10393:412:1::0;38167:143:0::1;38333:17;:6:::0;38343::::1;38333:17;:::i;:::-;38321:9;:29:::0;-1:-1:-1;38090:268:0:o;37281:497::-;1932:6;;37389:4;;2079:23;1932:6;804:10;2079:23;2071:68;;;;;;;5011:2:1;2071:68:0;;;4993:21:1;;;5030:18;;;5023:30;5089:34;5069:18;;;5062:62;5141:18;;2071:68:0;4809:356:1;2071:68:0;37468:6:::1;37447:13;9814:12:::0;;;9726:108;37447:13:::1;:17;::::0;37463:1:::1;37447:17;:::i;:::-;37446:28;;;;:::i;:::-;37433:9;:41;;37411:144;;;::::0;::::1;::::0;;11012:2:1;37411:144:0::1;::::0;::::1;10994:21:1::0;11051:2;11031:18;;;11024:30;11090:34;11070:18;;;11063:62;11161:23;11141:18;;;11134:51;11202:19;;37411:144:0::1;10810:417:1::0;37411:144:0::1;37623:4;37602:13;9814:12:::0;;;9726:108;37602:13:::1;:17;::::0;37618:1:::1;37602:17;:::i;:::-;37601:26;;;;:::i;:::-;37588:9;:39;;37566:141;;;::::0;::::1;::::0;;11434:2:1;37566:141:0::1;::::0;::::1;11416:21:1::0;11473:2;11453:18;;;11446:30;11512:34;11492:18;;;11485:62;11583:22;11563:18;;;11556:50;11623:19;;37566:141:0::1;11232:416:1::0;37566:141:0::1;-1:-1:-1::0;37718:18:0::1;:30:::0;;;37766:4:::1;2150:1;37281:497:::0;;;:::o;37076:135::-;1932:6;;37136:4;;2079:23;1932:6;804:10;2079:23;2071:68;;;;;;;5011:2:1;2071:68:0;;;4993:21:1;;;5030:18;;;5023:30;5089:34;5069:18;;;5062:62;5141:18;;2071:68:0;4809:356:1;2071:68:0;-1:-1:-1;37153:20:0::1;:28:::0;;;::::1;::::0;;;37076:135;:::o;2768:201::-;1932:6;;2079:23;1932:6;804:10;2079:23;2071:68;;;;;;;5011:2:1;2071:68:0;;;4993:21:1;;;5030:18;;;5023:30;5089:34;5069:18;;;5062:62;5141:18;;2071:68:0;4809:356:1;2071:68:0;2857:22:::1;::::0;::::1;2849:73;;;::::0;::::1;::::0;;11855:2:1;2849:73:0::1;::::0;::::1;11837:21:1::0;11894:2;11874:18;;;11867:30;11933:34;11913:18;;;11906:62;12004:8;11984:18;;;11977:36;12030:19;;2849:73:0::1;11653:402:1::0;2849:73:0::1;2933:28;2952:8;2933:18;:28::i;:::-;2768:201:::0;:::o;50720:1056::-;1932:6;;50831:4;;2079:23;1932:6;804:10;2079:23;2071:68;;;;;;;5011:2:1;2071:68:0;;;4993:21:1;;;5030:18;;;5023:30;5089:34;5069:18;;;5062:62;5141:18;;2071:68:0;4809:356:1;2071:68:0;50916:19:::1;;50893:20;;:42;;;;:::i;:::-;50875:15;:60;50853:142;;;::::0;::::1;::::0;;12262:2:1;50853:142:0::1;::::0;::::1;12244:21:1::0;;;12281:18;;;12274:30;12340:34;12320:18;;;12313:62;12392:18;;50853:142:0::1;12060:356:1::0;50853:142:0::1;51025:4;51014:7;:15;;51006:70;;;::::0;::::1;::::0;;12623:2:1;51006:70:0::1;::::0;::::1;12605:21:1::0;12662:2;12642:18;;;12635:30;12701:34;12681:18;;;12674:62;12772:12;12752:18;;;12745:40;12802:19;;51006:70:0::1;12421:406:1::0;51006:70:0::1;51110:15;51087:20;:38:::0;51211:29:::1;::::0;;;;1983:42:1;51226:13:0::1;1971:55:1::0;51211:29:0::1;::::0;::::1;1953:74:1::0;51180:28:0::1;::::0;51211:4:::1;::::0;:14:::1;::::0;1926:18:1;;51211:29:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;51180:60:::0;-1:-1:-1;51290:20:0::1;51313:44;51351:5;51313:33;51180:60:::0;51338:7;51313:24:::1;:33::i;:::-;:37:::0;::::1;:44::i;:::-;51290:67:::0;-1:-1:-1;51462:16:0;;51458:110:::1;;51495:61;51511:13;51534:6;51543:12;51495:15;:61::i;:::-;51643:19;51680:13;51643:51;;51705:4;:9;;;:11;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;;51732:14:0::1;::::0;::::1;::::0;-1:-1:-1;51732:14:0;;-1:-1:-1;51732:14:0::1;-1:-1:-1::0;51764:4:0::1;::::0;50720:1056;-1:-1:-1;;;;50720:1056:0:o;16727:380::-;16863:19;;;16855:68;;;;;;;13223:2:1;16855:68:0;;;13205:21:1;13262:2;13242:18;;;13235:30;13301:34;13281:18;;;13274:62;13372:6;13352:18;;;13345:34;13396:19;;16855:68:0;13021:400:1;16855:68:0;16942:21;;;16934:68;;;;;;;13628:2:1;16934:68:0;;;13610:21:1;13667:2;13647:18;;;13640:30;13706:34;13686:18;;;13679:62;13777:4;13757:18;;;13750:32;13799:19;;16934:68:0;13426:398:1;16934:68:0;17015:18;;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;17067:32;;1744:25:1;;;17067:32:0;;1717:18:1;17067:32:0;;;;;;;16727:380;;;:::o;41097:5154::-;41229:18;;;41221:68;;;;;;;14031:2:1;41221:68:0;;;14013:21:1;14070:2;14050:18;;;14043:30;14109:34;14089:18;;;14082:62;14180:7;14160:18;;;14153:35;14205:19;;41221:68:0;13829:401:1;41221:68:0;41308:16;;;41300:64;;;;;;;14437:2:1;41300:64:0;;;14419:21:1;14476:2;14456:18;;;14449:30;14515:34;14495:18;;;14488:62;14586:5;14566:18;;;14559:33;14609:19;;41300:64:0;14235:399:1;41300:64:0;41381:11;41377:93;;41409:28;41425:4;41431:2;41435:1;41409:15;:28::i;41377:93::-;41486:14;;;;41482:2640;;;1932:6;;;41539:15;;;1932:6;;41539:15;;;;:49;;-1:-1:-1;1932:6:0;;;41575:13;;;1932:6;;41575:13;;41539:49;:86;;;;-1:-1:-1;41609:16:0;;;;;41539:86;:128;;;;-1:-1:-1;41646:21:0;;;41660:6;41646:21;;41539:128;:158;;;;-1:-1:-1;41689:8:0;;;;;;;41688:9;41539:158;41517:2594;;;41737:13;;;;;;;41732:227;;41809:25;;;;;;;:19;:25;;;;;;;;;:52;;-1:-1:-1;41838:23:0;;;;;;;:19;:23;;;;;;;;41809:52;41775:160;;;;;;;14841:2:1;41775:160:0;;;14823:21:1;14880:2;14860:18;;;14853:30;14919:24;14899:18;;;14892:52;14961:18;;41775:160:0;14639:346:1;41775:160:0;42115:20;;;;42111:641;;;1932:6;;;42190:13;;;1932:6;;42190:13;;;;:72;;;42246:15;42232:30;;:2;:30;;;;42190:72;:129;;;;;42305:13;42291:28;;:2;:28;;;;42190:129;42160:573;;;42437:9;42408:39;;;;:28;:39;;;;;;42483:12;-1:-1:-1;42370:258:0;;;;;;;15192:2:1;42370:258:0;;;15174:21:1;15231:2;15211:18;;;15204:30;15270:34;15250:18;;;15243:62;15341:34;15321:18;;;15314:62;15413:11;15392:19;;;15385:40;15442:19;;42370:258:0;14990:477:1;42370:258:0;42684:9;42655:39;;;;:28;:39;;;;;42697:12;42655:54;;42160:573;42826:31;;;;;;;:25;:31;;;;;;;;:92;;;;-1:-1:-1;42883:35:0;;;;;;;:31;:35;;;;;;;;42882:36;42826:92;42800:1296;;;43005:20;;42995:6;:30;;42961:169;;;;;;;15674:2:1;42961:169:0;;;15656:21:1;15713:2;15693:18;;;15686:30;15752:34;15732:18;;;15725:62;15823:23;15803:18;;;15796:51;15864:19;;42961:169:0;15472:417:1;42961:169:0;43213:9;;9998:18;;;9971:7;9998:18;;;;;;;;;;;43187:22;;:6;:22;:::i;:::-;:35;;43153:140;;;;;;;16096:2:1;43153:140:0;;;16078:21:1;16135:2;16115:18;;;16108:30;16174:21;16154:18;;;16147:49;16213:18;;43153:140:0;15894:343:1;43153:140:0;43370:6;;43352:15;:24;43318:124;;;;;;;16444:2:1;43318:124:0;;;16426:21:1;16483:2;16463:18;;;16456:30;16522:16;16502:18;;;16495:44;16556:18;;43318:124:0;16242:338:1;43318:124:0;42800:1296;;;43540:29;;;;;;;:25;:29;;;;;;;;:92;;;;-1:-1:-1;43595:37:0;;;;;;;:31;:37;;;;;;;;43594:38;43540:92;43514:582;;;43719:20;;43709:6;:30;;43675:170;;;;;;;16787:2:1;43675:170:0;;;16769:21:1;16826:2;16806:18;;;16799:30;16865:34;16845:18;;;16838:62;16936:24;16916:18;;;16909:52;16978:19;;43675:170:0;16585:418:1;43514:582:0;43876:35;;;;;;;:31;:35;;;;;;;;43871:225;;43996:9;;9998:18;;;9971:7;9998:18;;;;;;;;;;;43970:22;;:6;:22;:::i;:::-;:35;;43936:140;;;;;;;16096:2:1;43936:140:0;;;16078:21:1;16135:2;16115:18;;;16108:30;16174:21;16154:18;;;16147:49;16213:18;;43936:140:0;15894:343:1;43936:140:0;44183:4;44134:28;9998:18;;;;;;;;;;;44241;;44217:42;;;;;;;44290:35;;-1:-1:-1;44314:11:0;;;;;;;44290:35;:61;;;;-1:-1:-1;44343:8:0;;;;;;;44342:9;44290:61;:110;;;;-1:-1:-1;44369:31:0;;;;;;;:25;:31;;;;;;;;44368:32;44290:110;:153;;;;-1:-1:-1;44418:25:0;;;;;;;:19;:25;;;;;;;;44417:26;44290:153;:194;;;;-1:-1:-1;44461:23:0;;;;;;;:19;:23;;;;;;;;44460:24;44290:194;44272:326;;;44511:8;:15;;;;;;;;44543:10;:8;:10::i;:::-;44570:8;:16;;;;;;44272:326;44629:8;;;;;;;44628:9;:55;;;;-1:-1:-1;44654:29:0;;;;;;;:25;:29;;;;;;;;44628:55;:85;;;;-1:-1:-1;44700:13:0;;;;44628:85;:153;;;;;44766:15;;44749:14;;:32;;;;:::i;:::-;44730:15;:51;;44628:153;:196;;;;-1:-1:-1;44799:25:0;;;;;;;:19;:25;;;;;;;;44798:26;44628:196;44610:282;;;44851:29;:27;:29::i;:::-;;44610:282;44920:8;;45030:25;;;44904:12;45030:25;;;:19;:25;;;;;;44920:8;;;;;;;44919:9;;45030:25;;:52;;-1:-1:-1;45059:23:0;;;;;;;:19;:23;;;;;;;;45030:52;45026:100;;;-1:-1:-1;45109:5:0;45026:100;45138:12;45243:7;45239:959;;;45295:29;;;;;;;:25;:29;;;;;;;;:50;;;;;45344:1;45328:13;;:17;45295:50;45291:758;;;45373:34;45403:3;45373:25;45384:13;;45373:6;:10;;:25;;;;:::i;:34::-;45366:41;;45476:13;;45456:16;;45449:4;:23;;;;:::i;:::-;45448:41;;;;:::i;:::-;45426:18;;:63;;;;;;;:::i;:::-;;;;-1:-1:-1;;45546:13:0;;45532:10;;45525:17;;:4;:17;:::i;:::-;45524:35;;;;:::i;:::-;45508:12;;:51;;;;;;;:::i;:::-;;;;-1:-1:-1;;45623:13:0;;45606;;45599:20;;:4;:20;:::i;:::-;45598:38;;;;:::i;:::-;45578:16;;:58;;;;;;;:::i;:::-;;;;-1:-1:-1;45291:758:0;;-1:-1:-1;45291:758:0;;45698:31;;;;;;;:25;:31;;;;;;;;:51;;;;;45748:1;45733:12;;:16;45698:51;45694:355;;;45777:33;45806:3;45777:24;45788:12;;45777:6;:10;;:24;;;;:::i;:33::-;45770:40;;45878:12;;45859:15;;45852:4;:22;;;;:::i;:::-;45851:39;;;;:::i;:::-;45829:18;;:61;;;;;;;:::i;:::-;;;;-1:-1:-1;;45946:12:0;;45933:9;;45926:16;;:4;:16;:::i;:::-;45925:33;;;;:::i;:::-;45909:12;;:49;;;;;;;:::i;:::-;;;;-1:-1:-1;;46021:12:0;;46005;;45998:19;;:4;:19;:::i;:::-;45997:36;;;;:::i;:::-;45977:16;;:56;;;;;;;:::i;:::-;;;;-1:-1:-1;;45694:355:0;46069:8;;46065:91;;46098:42;46114:4;46128;46135;46098:15;:42::i;:::-;46172:14;46182:4;46172:14;;:::i;:::-;;;45239:959;46210:33;46226:4;46232:2;46236:6;46210:15;:33::i;:::-;41210:5041;;;;41097:5154;;;:::o;3129:191::-;3222:6;;;;3239:17;;;;;;;;;;;3272:40;;3222:6;;;3239:17;3222:6;;3272:40;;3203:16;;3272:40;3192:128;3129:191;:::o;40095:188::-;40178:31;;;;;;;:25;:31;;;;;;:39;;;;;;;;;;;;;40235:40;;40178:39;;:31;40235:40;;;40095:188;;:::o;22180:98::-;22238:7;22265:5;22269:1;22265;:5;:::i;:::-;22258:12;22180:98;-1:-1:-1;;;22180:98:0:o;22579:::-;22637:7;22664:5;22668:1;22664;:5;:::i;13946:733::-;14086:20;;;14078:70;;;;;;;14031:2:1;14078:70:0;;;14013:21:1;14070:2;14050:18;;;14043:30;14109:34;14089:18;;;14082:62;14180:7;14160:18;;;14153:35;14205:19;;14078:70:0;13829:401:1;14078:70:0;14167:23;;;14159:71;;;;;;;14437:2:1;14159:71:0;;;14419:21:1;14476:2;14456:18;;;14449:30;14515:34;14495:18;;;14488:62;14586:5;14566:18;;;14559:33;14609:19;;14159:71:0;14235:399:1;14159:71:0;14327:17;;;14303:21;14327:17;;;;;;;;;;;14363:23;;;;14355:74;;;;;;;17340:2:1;14355:74:0;;;17322:21:1;17379:2;17359:18;;;17352:30;17418:34;17398:18;;;17391:62;17489:8;17469:18;;;17462:36;17515:19;;14355:74:0;17138:402:1;14355:74:0;14465:17;;;;:9;:17;;;;;;;;;;;14485:22;;;14465:42;;14529:20;;;;;;;;:30;;14501:6;;14465:9;14529:30;;14501:6;;14529:30;:::i;:::-;;;;;;;;14594:9;14577:35;;14586:6;14577:35;;;14605:6;14577:35;;;;1744:25:1;;1732:2;1717:18;;1598:177;14577:35:0;;;;;;;;14067:612;13946:733;;;:::o;47381:1972::-;47464:4;47420:23;9998:18;;;;;;;;;;;47420:50;;47481:25;47575:12;;47543:16;;47509:18;;:50;;;;:::i;:::-;:78;;;;:::i;:::-;47481:106;-1:-1:-1;47598:12:0;47627:20;;;:46;;-1:-1:-1;47651:22:0;;47627:46;47623:85;;;47690:7;;;47381:1972::o;47623:85::-;47742:18;;:23;;47763:2;47742:23;:::i;:::-;47724:15;:41;47720:115;;;47800:18;;:23;;47821:2;47800:23;:::i;:::-;47782:41;;47720:115;47896:23;48009:1;47976:17;47941:18;;47923:15;:36;;;;:::i;:::-;47922:71;;;;:::i;:::-;:88;;;;:::i;:::-;47896:114;-1:-1:-1;48021:26:0;48050:36;:15;47896:114;48050:19;:36::i;:::-;48021:65;-1:-1:-1;48127:21:0;48161:36;48021:65;48161:16;:36::i;:::-;48210:18;48231:44;:21;48257:17;48231:25;:44::i;:::-;48210:65;;48288:21;48312:79;48363:17;48312:32;48327:16;;48312:10;:14;;:32;;;;:::i;:79::-;48288:103;;48402:17;48422:51;48455:17;48422:28;48437:12;;48422:10;:14;;:28;;;;:::i;:51::-;48402:71;-1:-1:-1;48486:23:0;48402:71;48512:26;48525:13;48512:10;:26;:::i;:::-;:38;;;;:::i;:::-;48584:1;48563:18;:22;;;48596:16;:20;;;48627:12;:16;;;48678:9;;48670:45;;48486:64;;-1:-1:-1;48678:9:0;;;48701;;48670:45;48584:1;48670:45;48701:9;48678;48670:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;48656:59:0;;-1:-1:-1;;48732:19:0;;;;;:42;;;48773:1;48755:15;:19;48732:42;48728:501;;;48791:46;48804:15;48821;48791:12;:46::i;:::-;48857:17;48873:1;48857:15;:17;:::i;:::-;48854:205;;48930:12;;48911:18;:31;;;;48930:12;;;;48911:31;;;;;;48854:205;;;49028:15;;49009:18;:34;;;;49028:15;;;;49009:34;;;;;;48854:205;49184:18;;;49080:137;;;17957:25:1;;;17998:18;;;17991:34;;;18041:18;;18034:34;49080:137:0;;17945:2:1;17930:18;49080:137:0;;;;;;;48728:501;49263:18;;49255:90;;49263:18;;;;;49309:21;;49255:90;;;;49309:21;49263:18;49255:90;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;;;47381:1972:0:o;49924:788::-;50015:15;49998:14;:32;50116:29;;;;;1983:42:1;50131:13:0;1971:55:1;50116:29:0;;;1953:74:1;49981:4:0;;;;50116;;:14;;1926:18:1;;50116:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;50085:60;;50195:20;50218:77;50279:5;50218:42;50243:16;;50218:20;:24;;:42;;;;:::i;:77::-;50195:100;-1:-1:-1;50400:16:0;;50396:110;;50433:61;50449:13;50472:6;50481:12;50433:15;:61::i;:::-;50581:19;50618:13;50581:51;;50643:4;:9;;;:11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;50670:12:0;;;;-1:-1:-1;50670:12:0;;-1:-1:-1;50670:12:0;50700:4;50693:11;;;;;49924:788;:::o;21823:98::-;21881:7;21908:5;21912:1;21908;:5;:::i;46259:589::-;46409:16;;;46423:1;46409:16;;;;;;;;46385:21;;46409:16;;;;;;;;;;-1:-1:-1;46409:16:0;46385:40;;46454:4;46436;46441:1;46436:7;;;;;;;;:::i;:::-;;;;;;:23;;;;;;;;;;;46480:15;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;46470:4;46475:1;46470:7;;;;;;;;:::i;:::-;;;;;;:32;;;;;;;;;;;46515:62;46532:4;46547:15;46565:11;46515:8;:62::i;:::-;46616:224;;;;;:66;:15;:66;;;;:224;;46697:11;;46723:1;;46767:4;;46794;;46814:15;;46616:224;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46314:534;46259:589;:::o;46856:517::-;47004:62;47021:4;47036:15;47054:11;47004:8;:62::i;:::-;47109:256;;;;;47181:4;47109:256;;;20108:34:1;20158:18;;;20151:34;;;47227:1:0;20201:18:1;;;20194:34;;;20244:18;;;20237:34;31096:6:0;20287:19:1;;;20280:44;47339:15:0;20340:19:1;;;20333:35;47109:15:0;:31;;;;;47148:9;;20019:19:1;;47109:256:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;46856:517;;:::o;14:154:1:-;100:42;93:5;89:54;82:5;79:65;69:93;;158:1;155;148:12;173:247;232:6;285:2;273:9;264:7;260:23;256:32;253:52;;;301:1;298;291:12;253:52;340:9;327:23;359:31;384:5;359:31;:::i;425:656::-;537:4;566:2;595;584:9;577:21;627:6;621:13;670:6;665:2;654:9;650:18;643:34;695:1;705:140;719:6;716:1;713:13;705:140;;;814:14;;;810:23;;804:30;780:17;;;799:2;776:26;769:66;734:10;;705:140;;;863:6;860:1;857:13;854:91;;;933:1;928:2;919:6;908:9;904:22;900:31;893:42;854:91;-1:-1:-1;997:2:1;985:15;1002:66;981:88;966:104;;;;1072:2;962:113;;425:656;-1:-1:-1;;;425:656:1:o;1086:315::-;1154:6;1162;1215:2;1203:9;1194:7;1190:23;1186:32;1183:52;;;1231:1;1228;1221:12;1183:52;1270:9;1257:23;1289:31;1314:5;1289:31;:::i;:::-;1339:5;1391:2;1376:18;;;;1363:32;;-1:-1:-1;;;1086:315:1:o;2038:180::-;2097:6;2150:2;2138:9;2129:7;2125:23;2121:32;2118:52;;;2166:1;2163;2156:12;2118:52;-1:-1:-1;2189:23:1;;2038:180;-1:-1:-1;2038:180:1:o;2223:456::-;2300:6;2308;2316;2369:2;2357:9;2348:7;2344:23;2340:32;2337:52;;;2385:1;2382;2375:12;2337:52;2424:9;2411:23;2443:31;2468:5;2443:31;:::i;:::-;2493:5;-1:-1:-1;2550:2:1;2535:18;;2522:32;2563:33;2522:32;2563:33;:::i;:::-;2223:456;;2615:7;;-1:-1:-1;;;2669:2:1;2654:18;;;;2641:32;;2223:456::o;3104:160::-;3169:20;;3225:13;;3218:21;3208:32;;3198:60;;3254:1;3251;3244:12;3269:316;3343:6;3351;3359;3412:2;3400:9;3391:7;3387:23;3383:32;3380:52;;;3428:1;3425;3418:12;3380:52;3464:9;3451:23;3441:33;;3521:2;3510:9;3506:18;3493:32;3483:42;;3544:35;3575:2;3564:9;3560:18;3544:35;:::i;:::-;3534:45;;3269:316;;;;;:::o;3590:315::-;3655:6;3663;3716:2;3704:9;3695:7;3691:23;3687:32;3684:52;;;3732:1;3729;3722:12;3684:52;3771:9;3758:23;3790:31;3815:5;3790:31;:::i;:::-;3840:5;-1:-1:-1;3864:35:1;3895:2;3880:18;;3864:35;:::i;:::-;3854:45;;3590:315;;;;;:::o;3910:316::-;3987:6;3995;4003;4056:2;4044:9;4035:7;4031:23;4027:32;4024:52;;;4072:1;4069;4062:12;4024:52;-1:-1:-1;;4095:23:1;;;4165:2;4150:18;;4137:32;;-1:-1:-1;4216:2:1;4201:18;;;4188:32;;3910:316;-1:-1:-1;3910:316:1:o;4231:180::-;4287:6;4340:2;4328:9;4319:7;4315:23;4311:32;4308:52;;;4356:1;4353;4346:12;4308:52;4379:26;4395:9;4379:26;:::i;4416:388::-;4484:6;4492;4545:2;4533:9;4524:7;4520:23;4516:32;4513:52;;;4561:1;4558;4551:12;4513:52;4600:9;4587:23;4619:31;4644:5;4619:31;:::i;:::-;4669:5;-1:-1:-1;4726:2:1;4711:18;;4698:32;4739:33;4698:32;4739:33;:::i;:::-;4791:7;4781:17;;;4416:388;;;;;:::o;5170:437::-;5249:1;5245:12;;;;5292;;;5313:61;;5367:4;5359:6;5355:17;5345:27;;5313:61;5420:2;5412:6;5409:14;5389:18;5386:38;5383:218;;;5457:77;5454:1;5447:88;5558:4;5555:1;5548:15;5586:4;5583:1;5576:15;5383:218;;5170:437;;;:::o;5612:184::-;5664:77;5661:1;5654:88;5761:4;5758:1;5751:15;5785:4;5782:1;5775:15;5801:228;5841:7;5967:1;5899:66;5895:74;5892:1;5889:81;5884:1;5877:9;5870:17;5866:105;5863:131;;;5974:18;;:::i;:::-;-1:-1:-1;6014:9:1;;5801:228::o;6034:184::-;6086:77;6083:1;6076:88;6183:4;6180:1;6173:15;6207:4;6204:1;6197:15;6223:120;6263:1;6289;6279:35;;6294:18;;:::i;:::-;-1:-1:-1;6328:9:1;;6223:120::o;7234:128::-;7274:3;7305:1;7301:6;7298:1;7295:13;7292:39;;;7311:18;;:::i;:::-;-1:-1:-1;7347:9:1;;7234:128::o;9855:112::-;9887:1;9913;9903:35;;9918:18;;:::i;:::-;-1:-1:-1;9952:9:1;;9855:112::o;12832:184::-;12902:6;12955:2;12943:9;12934:7;12930:23;12926:32;12923:52;;;12971:1;12968;12961:12;12923:52;-1:-1:-1;12994:16:1;;12832:184;-1:-1:-1;12832:184:1:o;17008:125::-;17048:4;17076:1;17073;17070:8;17067:34;;;17081:18;;:::i;:::-;-1:-1:-1;17118:9:1;;17008:125::o;18268:184::-;18320:77;18317:1;18310:88;18417:4;18414:1;18407:15;18441:4;18438:1;18431:15;18457:251;18527:6;18580:2;18568:9;18559:7;18555:23;18551:32;18548:52;;;18596:1;18593;18586:12;18548:52;18628:9;18622:16;18647:31;18672:5;18647:31;:::i;18713:1026::-;18975:4;19023:3;19012:9;19008:19;19054:6;19043:9;19036:25;19080:2;19118:6;19113:2;19102:9;19098:18;19091:34;19161:3;19156:2;19145:9;19141:18;19134:31;19185:6;19220;19214:13;19251:6;19243;19236:22;19289:3;19278:9;19274:19;19267:26;;19328:2;19320:6;19316:15;19302:29;;19349:1;19359:218;19373:6;19370:1;19367:13;19359:218;;;19438:13;;19453:42;19434:62;19422:75;;19552:15;;;;19517:12;;;;19395:1;19388:9;19359:218;;;-1:-1:-1;;19645:42:1;19633:55;;;;19628:2;19613:18;;19606:83;-1:-1:-1;;;19720:3:1;19705:19;19698:35;19594:3;18713:1026;-1:-1:-1;;;18713:1026:1:o;20379:306::-;20467:6;20475;20483;20536:2;20524:9;20515:7;20511:23;20507:32;20504:52;;;20552:1;20549;20542:12;20504:52;20581:9;20575:16;20565:26;;20631:2;20620:9;20616:18;20610:25;20600:35;;20675:2;20664:9;20660:18;20654:25;20644:35;;20379:306;;;;;:::o
Swarm Source
ipfs://287264946045905647ce7088855a450ff86c58bef3382060f05e3e3279c30fd1
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.