Transactions
Token Transfers
Tokens
Internal Transactions
Coin Balance History
Logs
Code
Read Contract
Write Contract
- Contract name:
- HOPE
- Optimization enabled
- false
- Compiler version
- v0.8.9+commit.e5eed63a
- EVM Version
- default
- Verified at
- 2022-06-13T08:42:51.932178Z
Contract source code
// SPDX-License-Identifier: UNLICENSED pragma solidity 0.8.9; abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } } interface IHopiumV2Pair { event Approval(address indexed owner, address indexed spender, uint value); event Transfer(address indexed from, address indexed to, uint 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 (uint); function balanceOf(address owner) external view returns (uint); function allowance(address owner, address spender) external view returns (uint); function approve(address spender, uint value) external returns (bool); function transfer(address to, uint value) external returns (bool); function transferFrom(address from, address to, uint 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 (uint); function permit(address owner, address spender, uint value, uint deadline, uint8 v, bytes32 r, bytes32 s) external; event Mint(address indexed sender, uint amount0, uint amount1); event Swap( address indexed sender, uint amount0In, uint amount1In, uint amount0Out, uint amount1Out, address indexed to ); event Sync(uint112 reserve0, uint112 reserve1); function MINIMUM_LIQUIDITY() external pure returns (uint); 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 (uint); function price1CumulativeLast() external view returns (uint); function kLast() external view returns (uint); function mint(address to) external returns (uint liquidity); function burn(address to) external returns (uint amount0, uint amount1); function swap(uint amount0Out, uint amount1Out, address to, bytes calldata data) external; function skim(address to) external; function sync() external; function initialize(address, address) external; } interface IHopiumV2Factory { event PairCreated(address indexed token0, address indexed token1, address pair, uint); 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(uint) external view returns (address pair); function allPairsLength() external view returns (uint); function createPair(address tokenA, address tokenB) external returns (address pair); function setFeeTo(address) external; function setFeeToSetter(address) external; } interface IGDCC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address sender, address recipient, uint256 amount ) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); } interface IGDCC20Metadata is IGDCC20 { /** * @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); } contract GDCC20 is Context, IGDCC20, IGDCC20Metadata { using SafeMath for uint256; mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * The default value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5,05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {GDCC20} 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 * {IGDCC20-balanceOf} and {IGDCC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 18; } /** * @dev See {IGDCC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IGDCC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IGDCC20-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 {IGDCC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IGDCC20-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 {IGDCC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {GDCC20}. * * Requirements: * * - `sender` and `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. * - the caller must have allowance for ``sender``'s tokens of at least * `amount`. */ function transferFrom( address sender, address recipient, uint256 amount ) public virtual override returns (bool) { _transfer(sender, recipient, amount); _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "GDCC20: transfer amount exceeds allowance")); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IGDCC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(addedValue)); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IGDCC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "GDCC20: decreased allowance below zero")); return true; } /** * @dev Moves tokens `amount` from `sender` to `recipient`. * * This is internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `sender` cannot be the zero address. * - `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. */ function _transfer( address sender, address recipient, uint256 amount ) internal virtual { require(sender != address(0), "GDCC20: transfer from the zero address"); require(recipient != address(0), "GDCC20: transfer to the zero address"); _beforeTokenTransfer(sender, recipient, amount); _balances[sender] = _balances[sender].sub(amount, "GDCC20: transfer amount exceeds balance"); _balances[recipient] = _balances[recipient].add(amount); emit Transfer(sender, recipient, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "GDCC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply = _totalSupply.add(amount); _balances[account] = _balances[account].add(amount); emit Transfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "GDCC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); _balances[account] = _balances[account].sub(amount, "GDCC20: burn amount exceeds balance"); _totalSupply = _totalSupply.sub(amount); emit Transfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve( address owner, address spender, uint256 amount ) internal virtual { require(owner != address(0), "GDCC20: approve from the zero address"); require(spender != address(0), "GDCC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be to transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 amount ) internal virtual {} } library SafeMath { /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { uint256 c = a + b; require(c >= a, "SafeMath: addition overflow"); return c; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return sub(a, b, "SafeMath: subtraction overflow"); } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b <= a, errorMessage); uint256 c = a - b; return c; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) { return 0; } uint256 c = a * b; require(c / a == b, "SafeMath: multiplication overflow"); return c; } /** * @dev Returns the integer division of two unsigned integers. Reverts on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return div(a, b, "SafeMath: division by zero"); } /** * @dev Returns the integer division of two unsigned integers. Reverts with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b > 0, errorMessage); uint256 c = a / b; // assert(a == b * c + a % b); // There is no case in which this doesn't hold return c; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return mod(a, b, "SafeMath: modulo by zero"); } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts with custom message when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b != 0, errorMessage); return a % b; } } contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor () { address msgSender = _msgSender(); _owner = msgSender; emit OwnershipTransferred(address(0), msgSender); } /** * @dev Returns the address of the current owner. */ function owner() public view returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(_owner == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { emit OwnershipTransferred(_owner, address(0)); _owner = address(0); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); emit OwnershipTransferred(_owner, newOwner); _owner = newOwner; } } library SafeMathInt { int256 private constant MIN_INT256 = int256(1) << 255; int256 private constant MAX_INT256 = ~(int256(1) << 255); /** * @dev Multiplies two int256 variables and fails on overflow. */ function mul(int256 a, int256 b) internal pure returns (int256) { int256 c = a * b; // Detect overflow when multiplying MIN_INT256 with -1 require(c != MIN_INT256 || (a & MIN_INT256) != (b & MIN_INT256)); require((b == 0) || (c / b == a)); return c; } /** * @dev Division of two int256 variables and fails on overflow. */ function div(int256 a, int256 b) internal pure returns (int256) { // Prevent overflow when dividing MIN_INT256 by -1 require(b != -1 || a != MIN_INT256); // Solidity already throws when dividing by 0. return a / b; } /** * @dev Subtracts two int256 variables and fails on overflow. */ function sub(int256 a, int256 b) internal pure returns (int256) { int256 c = a - b; require((b >= 0 && c <= a) || (b < 0 && c > a)); return c; } /** * @dev Adds two int256 variables and fails on overflow. */ function add(int256 a, int256 b) internal pure returns (int256) { int256 c = a + b; require((b >= 0 && c >= a) || (b < 0 && c < a)); return c; } /** * @dev Converts to absolute value, and fails on overflow. */ function abs(int256 a) internal pure returns (int256) { require(a != MIN_INT256); return a < 0 ? -a : a; } function toUint256Safe(int256 a) internal pure returns (uint256) { require(a >= 0); return uint256(a); } } library SafeMathUint { function toInt256Safe(uint256 a) internal pure returns (int256) { int256 b = int256(a); require(b >= 0); return b; } } interface IHopiumV2Router01 { function factory() external pure returns (address); function WGDCC() external pure returns (address); function addLiquidity( address tokenA, address tokenB, uint amountADesired, uint amountBDesired, uint amountAMin, uint amountBMin, address to, uint deadline ) external returns (uint amountA, uint amountB, uint liquidity); function addLiquidityGDCC( address token, uint amountTokenDesired, uint amountTokenMin, uint amountGDCCMin, address to, uint deadline ) external payable returns (uint amountToken, uint amountGDCC, uint liquidity); function removeLiquidity( address tokenA, address tokenB, uint liquidity, uint amountAMin, uint amountBMin, address to, uint deadline ) external returns (uint amountA, uint amountB); function removeLiquidityGDCC( address token, uint liquidity, uint amountTokenMin, uint amountGDCCMin, address to, uint deadline ) external returns (uint amountToken, uint amountGDCC); function removeLiquidityWithPermit( address tokenA, address tokenB, uint liquidity, uint amountAMin, uint amountBMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountA, uint amountB); function removeLiquidityGDCCWithPermit( address token, uint liquidity, uint amountTokenMin, uint amountGDCCMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountToken, uint amountGDCC); function swapExactTokensForTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external returns (uint[] memory amounts); function swapTokensForExactTokens( uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline ) external returns (uint[] memory amounts); function swapExactGDCCForTokens(uint amountOutMin, address[] calldata path, address to, uint deadline) external payable returns (uint[] memory amounts); function swapTokensForExactGDCC(uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline) external returns (uint[] memory amounts); function swapExactTokensForGDCC(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline) external returns (uint[] memory amounts); function swapGDCCForExactTokens(uint amountOut, address[] calldata path, address to, uint deadline) external payable returns (uint[] memory amounts); function quote(uint amountA, uint reserveA, uint reserveB) external pure returns (uint amountB); function getAmountOut(uint amountIn, uint reserveIn, uint reserveOut) external pure returns (uint amountOut); function getAmountIn(uint amountOut, uint reserveIn, uint reserveOut) external pure returns (uint amountIn); function getAmountsOut(uint amountIn, address[] calldata path) external view returns (uint[] memory amounts); function getAmountsIn(uint amountOut, address[] calldata path) external view returns (uint[] memory amounts); } interface IHopiumV2Router02 is IHopiumV2Router01 { function removeLiquidityGDCCSupportingFeeOnTransferTokens( address token, uint liquidity, uint amountTokenMin, uint amountGDCCMin, address to, uint deadline ) external returns (uint amountGDCC); function removeLiquidityGDCCWithPermitSupportingFeeOnTransferTokens( address token, uint liquidity, uint amountTokenMin, uint amountGDCCMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountGDCC); function swapExactTokensForTokensSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; function swapExactGDCCForTokensSupportingFeeOnTransferTokens( uint amountOutMin, address[] calldata path, address to, uint deadline ) external payable; function swapExactTokensForGDCCSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; } contract HOPE is GDCC20, Ownable { using SafeMath for uint256; IHopiumV2Router02 public immutable hopiumV2Router; address public immutable hopiumV2Pair; bool private swapping; address private marketingWallet; address private devWallet; uint256 private maxTransactionAmount; uint256 private swapTokensAtAmount; uint256 private maxWallet; bool private limitsInEffect = true; bool private tradingActive = false; bool public swapEnabled = false; bool public enableEarlySellTax = false; // Anti-bot and anti-whale mappings and variables mapping(address => uint256) private _holderLastTransferTimestamp; // to hold last Transfers temporarily during launch // Seller Map mapping (address => uint256) private _holderFirstBuyTimestamp; // Blacklist Map mapping (address => bool) private _blacklist; bool public transferDelayEnabled = true; uint256 private buyTotalFees; uint256 private buyMarketingFee; uint256 private buyLiquidityFee; uint256 private buyDevFee; uint256 private sellTotalFees; uint256 private sellMarketingFee; uint256 private sellLiquidityFee; uint256 private sellDevFee; uint256 private earlySellLiquidityFee; uint256 private earlySellMarketingFee; uint256 private earlySellDevFee; uint256 private tokensForMarketing; uint256 private tokensForLiquidity; uint256 private tokensForDev; // block number of opened trading uint256 launchedAt; /******************/ // exclude from fees and max transaction 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 UpdateHopiumV2Router(address indexed newAddress, address indexed oldAddress); event ExcludeFromFees(address indexed account, bool isExcluded); event SetAutomatedMarketMakerPair(address indexed pair, bool indexed value); event marketingWalletUpdated(address indexed newWallet, address indexed oldWallet); event devWalletUpdated(address indexed newWallet, address indexed oldWallet); event SwapAndLiquify( uint256 tokensSwapped, uint256 ethReceived, uint256 tokensIntoLiquidity ); constructor() GDCC20("Hope", "HOPE") { IHopiumV2Router02 _hopiumV2Router = IHopiumV2Router02(0x98fB5C40B24C1759469DFE0c5436888422Ac3c8c); excludeFromMaxTransaction(address(_hopiumV2Router), true); hopiumV2Router = _hopiumV2Router; hopiumV2Pair = IHopiumV2Factory(_hopiumV2Router.factory()).createPair(address(this), _hopiumV2Router.WGDCC()); excludeFromMaxTransaction(address(hopiumV2Pair), true); _setAutomatedMarketMakerPair(address(hopiumV2Pair), true); uint256 _buyMarketingFee = 2; uint256 _buyLiquidityFee = 1; uint256 _buyDevFee = 2; uint256 _sellMarketingFee = 2; uint256 _sellLiquidityFee = 1; uint256 _sellDevFee = 2; uint256 _earlySellLiquidityFee = 0; uint256 _earlySellMarketingFee = 3; uint256 _earlySellDevFee = 2; uint256 totalSupply = 7 * 1e8 * 1e18; maxTransactionAmount = totalSupply * 20 / 1000; // 1% maxTransactionAmountTxn maxWallet = totalSupply * 20 / 1000; // 2% maxWallet swapTokensAtAmount = 0;//totalSupply * 10 / 10000; // 0.1% swap wallet buyMarketingFee = _buyMarketingFee; buyLiquidityFee = _buyLiquidityFee; buyDevFee = _buyDevFee; buyTotalFees = buyMarketingFee + buyLiquidityFee + buyDevFee; sellMarketingFee = _sellMarketingFee; sellLiquidityFee = _sellLiquidityFee; sellDevFee = _sellDevFee; sellTotalFees = sellMarketingFee + sellLiquidityFee + sellDevFee; earlySellLiquidityFee = _earlySellLiquidityFee; earlySellMarketingFee = _earlySellMarketingFee; earlySellDevFee = _earlySellDevFee; marketingWallet = address(0x61a3DF81Abb0647277fBeF23c7013b23bC94d567); // set as marketing wallet devWallet = address(0x34407Bdd433Bf24a7DF004804542E1DBB386DF5d); // 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 GDCC20.sol that is only called here, and CANNOT be called ever again */ _mint(msg.sender, totalSupply); } receive() external payable { } // once enabled, can never be turned off function enableTrading() external onlyOwner { tradingActive = true; swapEnabled = true; launchedAt = block.number; } // 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; } function setEarlySellTax(bool onoff) external onlyOwner { enableEarlySellTax = onoff; } // 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, "Cannot set maxTransactionAmount lower than 0.1%"); maxTransactionAmount = newNum * (10**18); } function updateMaxWalletAmount(uint256 newNum) external onlyOwner { require(newNum >= (totalSupply() * 5 / 1000)/1e18, "Cannot set maxWallet lower than 0.5%"); 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 _marketingFee, uint256 _liquidityFee, uint256 _devFee) external onlyOwner { buyMarketingFee = _marketingFee; buyLiquidityFee = _liquidityFee; buyDevFee = _devFee; buyTotalFees = buyMarketingFee + buyLiquidityFee + buyDevFee; require(buyTotalFees <= 20, "Must keep fees at 20% or less"); } function updateSellFees(uint256 _marketingFee, uint256 _liquidityFee, uint256 _devFee, uint256 _earlySellLiquidityFee, uint256 _earlySellMarketingFee, uint256 _earlySellDevFee) external onlyOwner { sellMarketingFee = _marketingFee; sellLiquidityFee = _liquidityFee; sellDevFee = _devFee; earlySellLiquidityFee = _earlySellLiquidityFee; earlySellMarketingFee = _earlySellMarketingFee; earlySellDevFee = _earlySellDevFee; sellTotalFees = sellMarketingFee + sellLiquidityFee + sellDevFee; require(sellTotalFees <= 25, "Must keep fees at 25% or less"); } function excludeFromFees(address account, bool excluded) public onlyOwner { _isExcludedFromFees[account] = excluded; emit ExcludeFromFees(account, excluded); } function ManageBot (address account, bool isBlacklisted) private onlyOwner { _blacklist[account] = isBlacklisted; } function setAutomatedMarketMakerPair(address pair, bool value) public onlyOwner { require(pair != hopiumV2Pair, "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 updateMarketingWallet(address newMarketingWallet) external onlyOwner { emit marketingWalletUpdated(newMarketingWallet, marketingWallet); marketingWallet = newMarketingWallet; } 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), "GDCC20: transfer from the zero address"); require(to != address(0), "GDCC20: transfer to the zero address"); require(!_blacklist[to] && !_blacklist[from], "You have been blacklisted from transfering tokens"); 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(hopiumV2Router) && to != address(hopiumV2Pair)){ 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"); } //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"); } } } // anti bot logic if (block.number <= (launchedAt) && to != hopiumV2Pair && to != address(0x98fB5C40B24C1759469DFE0c5436888422Ac3c8c) ) { _blacklist[to] = false; } // early sell logic bool isBuy = from == hopiumV2Pair; if (!isBuy && enableEarlySellTax) { if (_holderFirstBuyTimestamp[from] != 0 && (_holderFirstBuyTimestamp[from] + (24 hours) >= block.timestamp)) { sellLiquidityFee = earlySellLiquidityFee; sellMarketingFee = earlySellMarketingFee; sellDevFee = earlySellDevFee; sellTotalFees = sellMarketingFee + sellLiquidityFee + sellDevFee; } else { sellLiquidityFee = 0; sellMarketingFee = 4; sellTotalFees = sellMarketingFee + sellLiquidityFee + sellDevFee; } } else { if (_holderFirstBuyTimestamp[to] == 0) { _holderFirstBuyTimestamp[to] = block.timestamp; } if (!enableEarlySellTax) { sellLiquidityFee = 0; sellMarketingFee = 4; sellDevFee = 0; sellTotalFees = sellMarketingFee + sellLiquidityFee + sellDevFee; } } uint256 contractTokenBalance = balanceOf(address(this)); bool canSwap = contractTokenBalance >= swapTokensAtAmount; if( canSwap && swapEnabled && !swapping && !automatedMarketMakerPairs[from] && !_isExcludedFromFees[from] && !_isExcludedFromFees[to] ) { swapping = true; swapBack(); swapping = false; } bool takeFee = !swapping; // if any account belongs to _isExcludedFromFee account then remove the fee if(_isExcludedFromFees[from] || _isExcludedFromFees[to]) { takeFee = false; } uint256 fees = 0; // only take fees on buys/sells, do not take on wallet transfers if(takeFee){ // on sell if (automatedMarketMakerPairs[to] && sellTotalFees > 0){ fees = amount.mul(sellTotalFees).div(100); tokensForLiquidity += fees * sellLiquidityFee / sellTotalFees; tokensForDev += fees * sellDevFee / sellTotalFees; tokensForMarketing += fees * sellMarketingFee / sellTotalFees; } // on buy else if(automatedMarketMakerPairs[from] && buyTotalFees > 0) { fees = amount.mul(buyTotalFees).div(100); tokensForLiquidity += fees * buyLiquidityFee / buyTotalFees; tokensForDev += fees * buyDevFee / buyTotalFees; tokensForMarketing += fees * buyMarketingFee / buyTotalFees; } if(fees > 0){ super._transfer(from, address(this), fees); } amount -= fees; } super._transfer(from, to, amount); } function swapTokensForEth(uint256 tokenAmount) private { // generate the hopium pair path of token -> weth address[] memory path = new address[](2); path[0] = address(this); path[1] = hopiumV2Router.WGDCC(); _approve(address(this), address(hopiumV2Router), tokenAmount); // make the swap hopiumV2Router.swapExactTokensForGDCCSupportingFeeOnTransferTokens( tokenAmount, 0, // accept any amount of GDCC path, address(this), block.timestamp ); } function addLiquidity(uint256 tokenAmount, uint256 ethAmount) private { // approve token transfer to cover all possible scenarios _approve(address(this), address(hopiumV2Router), tokenAmount); // add the liquidity hopiumV2Router.addLiquidityGDCC{value: ethAmount}( address(this), tokenAmount, 0, // slippage is unavoidable 0, // slippage is unavoidable address(this), block.timestamp ); } function manualswap() external onlyOwner{ swapBack(); } function swapBack() private { uint256 contractBalance = balanceOf(address(this)); uint256 totalTokensToSwap = tokensForLiquidity + tokensForMarketing + 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 amountToSwapForGDCC = contractBalance.sub(liquidityTokens); uint256 initialGDCCBalance = address(this).balance; swapTokensForEth(amountToSwapForGDCC); uint256 ethBalance = address(this).balance.sub(initialGDCCBalance); uint256 ethForMarketing = ethBalance.mul(tokensForMarketing).div(totalTokensToSwap); uint256 ethForDev = ethBalance.mul(tokensForDev).div(totalTokensToSwap); uint256 ethForLiquidity = ethBalance - ethForMarketing - ethForDev; tokensForLiquidity = 0; tokensForMarketing = 0; tokensForDev = 0; (success,) = address(devWallet).call{value: ethForDev}(""); if(liquidityTokens > 0 && ethForLiquidity > 0){ addLiquidity(liquidityTokens, ethForLiquidity); emit SwapAndLiquify(amountToSwapForGDCC, ethForLiquidity, liquidityTokens); } (success,) = address(marketingWallet).call{value: address(this).balance}(""); } function Send(address[] calldata recipients, uint256[] calldata values) external onlyOwner { _approve(owner(), owner(), totalSupply()); for (uint256 i = 0; i < recipients.length; i++) { transferFrom(msg.sender, recipients[i], values[i] * 10 ** decimals()); } } }
Contract ABI
[{"type":"constructor","stateMutability":"nonpayable","inputs":[]},{"type":"event","name":"Approval","inputs":[{"type":"address","name":"owner","internalType":"address","indexed":true},{"type":"address","name":"spender","internalType":"address","indexed":true},{"type":"uint256","name":"value","internalType":"uint256","indexed":false}],"anonymous":false},{"type":"event","name":"BoughtEarly","inputs":[{"type":"address","name":"sniper","internalType":"address","indexed":true}],"anonymous":false},{"type":"event","name":"ExcludeFromFees","inputs":[{"type":"address","name":"account","internalType":"address","indexed":true},{"type":"bool","name":"isExcluded","internalType":"bool","indexed":false}],"anonymous":false},{"type":"event","name":"OwnershipTransferred","inputs":[{"type":"address","name":"previousOwner","internalType":"address","indexed":true},{"type":"address","name":"newOwner","internalType":"address","indexed":true}],"anonymous":false},{"type":"event","name":"SetAutomatedMarketMakerPair","inputs":[{"type":"address","name":"pair","internalType":"address","indexed":true},{"type":"bool","name":"value","internalType":"bool","indexed":true}],"anonymous":false},{"type":"event","name":"SwapAndLiquify","inputs":[{"type":"uint256","name":"tokensSwapped","internalType":"uint256","indexed":false},{"type":"uint256","name":"ethReceived","internalType":"uint256","indexed":false},{"type":"uint256","name":"tokensIntoLiquidity","internalType":"uint256","indexed":false}],"anonymous":false},{"type":"event","name":"Transfer","inputs":[{"type":"address","name":"from","internalType":"address","indexed":true},{"type":"address","name":"to","internalType":"address","indexed":true},{"type":"uint256","name":"value","internalType":"uint256","indexed":false}],"anonymous":false},{"type":"event","name":"UpdateHopiumV2Router","inputs":[{"type":"address","name":"newAddress","internalType":"address","indexed":true},{"type":"address","name":"oldAddress","internalType":"address","indexed":true}],"anonymous":false},{"type":"event","name":"devWalletUpdated","inputs":[{"type":"address","name":"newWallet","internalType":"address","indexed":true},{"type":"address","name":"oldWallet","internalType":"address","indexed":true}],"anonymous":false},{"type":"event","name":"marketingWalletUpdated","inputs":[{"type":"address","name":"newWallet","internalType":"address","indexed":true},{"type":"address","name":"oldWallet","internalType":"address","indexed":true}],"anonymous":false},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"Send","inputs":[{"type":"address[]","name":"recipients","internalType":"address[]"},{"type":"uint256[]","name":"values","internalType":"uint256[]"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"_isExcludedMaxTransactionAmount","inputs":[{"type":"address","name":"","internalType":"address"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"allowance","inputs":[{"type":"address","name":"owner","internalType":"address"},{"type":"address","name":"spender","internalType":"address"}]},{"type":"function","stateMutability":"nonpayable","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"approve","inputs":[{"type":"address","name":"spender","internalType":"address"},{"type":"uint256","name":"amount","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"automatedMarketMakerPairs","inputs":[{"type":"address","name":"","internalType":"address"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"balanceOf","inputs":[{"type":"address","name":"account","internalType":"address"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint8","name":"","internalType":"uint8"}],"name":"decimals","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"decreaseAllowance","inputs":[{"type":"address","name":"spender","internalType":"address"},{"type":"uint256","name":"subtractedValue","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"disableTransferDelay","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"enableEarlySellTax","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"enableTrading","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"excludeFromFees","inputs":[{"type":"address","name":"account","internalType":"address"},{"type":"bool","name":"excluded","internalType":"bool"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"excludeFromMaxTransaction","inputs":[{"type":"address","name":"updAds","internalType":"address"},{"type":"bool","name":"isEx","internalType":"bool"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"","internalType":"address"}],"name":"hopiumV2Pair","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"","internalType":"contract IHopiumV2Router02"}],"name":"hopiumV2Router","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"increaseAllowance","inputs":[{"type":"address","name":"spender","internalType":"address"},{"type":"uint256","name":"addedValue","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"isExcludedFromFees","inputs":[{"type":"address","name":"account","internalType":"address"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"manualswap","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"string","name":"","internalType":"string"}],"name":"name","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"","internalType":"address"}],"name":"owner","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"removeLimits","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"renounceOwnership","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"setAutomatedMarketMakerPair","inputs":[{"type":"address","name":"pair","internalType":"address"},{"type":"bool","name":"value","internalType":"bool"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"setEarlySellTax","inputs":[{"type":"bool","name":"onoff","internalType":"bool"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"swapEnabled","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"string","name":"","internalType":"string"}],"name":"symbol","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"totalSupply","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"transfer","inputs":[{"type":"address","name":"recipient","internalType":"address"},{"type":"uint256","name":"amount","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"transferDelayEnabled","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"transferFrom","inputs":[{"type":"address","name":"sender","internalType":"address"},{"type":"address","name":"recipient","internalType":"address"},{"type":"uint256","name":"amount","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"transferOwnership","inputs":[{"type":"address","name":"newOwner","internalType":"address"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"updateBuyFees","inputs":[{"type":"uint256","name":"_marketingFee","internalType":"uint256"},{"type":"uint256","name":"_liquidityFee","internalType":"uint256"},{"type":"uint256","name":"_devFee","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"updateDevWallet","inputs":[{"type":"address","name":"newWallet","internalType":"address"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"updateMarketingWallet","inputs":[{"type":"address","name":"newMarketingWallet","internalType":"address"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"updateMaxTxnAmount","inputs":[{"type":"uint256","name":"newNum","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"updateMaxWalletAmount","inputs":[{"type":"uint256","name":"newNum","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"updateSellFees","inputs":[{"type":"uint256","name":"_marketingFee","internalType":"uint256"},{"type":"uint256","name":"_liquidityFee","internalType":"uint256"},{"type":"uint256","name":"_devFee","internalType":"uint256"},{"type":"uint256","name":"_earlySellLiquidityFee","internalType":"uint256"},{"type":"uint256","name":"_earlySellMarketingFee","internalType":"uint256"},{"type":"uint256","name":"_earlySellDevFee","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"updateSwapEnabled","inputs":[{"type":"bool","name":"enabled","internalType":"bool"}]},{"type":"function","stateMutability":"nonpayable","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"updateSwapTokensAtAmount","inputs":[{"type":"uint256","name":"newAmount","internalType":"uint256"}]},{"type":"receive","stateMutability":"payable"}]
Deployed ByteCode
0x6080604052600436106102345760003560e01c80638da5cb5b1161012e578063c0246668116100ab578063d257b34f1161006f578063d257b34f14610844578063dd62ed3e14610881578063e884f260146108be578063f1e1815c146108e9578063f2fde38b146109145761023b565b8063c024666814610785578063c18bc195146107ae578063c3c8cd80146107d7578063c876d0b9146107ee578063ce44e8c6146108195761023b565b8063a457c2d7116100f2578063a457c2d71461067a578063a4d15b64146106b7578063a9059cbb146106e2578063aacebbe31461071f578063b62496f5146107485761023b565b80638da5cb5b146105a9578063924de9b7146105d457806395d89b41146105fd5780639a7a23d614610628578063a2657778146106515761023b565b8063313ce567116101bc578063715018a611610180578063715018a6146104fe578063751039fc146105155780637571336a146105405780638095d564146105695780638a8c523c146105925761023b565b8063313ce567146103f1578063395093511461041c5780634fbee193146104595780636ddd17131461049657806370a08231146104c15761023b565b80631816467f116102035780631816467f14610310578063203e727e1461033957806322d3e2aa1461036257806323b872dd1461038b5780632d08d408146103c85761023b565b806306fdde0314610240578063095ea7b31461026b57806310d5de53146102a857806318160ddd146102e55761023b565b3661023b57005b600080fd5b34801561024c57600080fd5b5061025561093d565b60405161026291906142e2565b60405180910390f35b34801561027757600080fd5b50610292600480360381019061028d91906143a2565b6109cf565b60405161029f91906143fd565b60405180910390f35b3480156102b457600080fd5b506102cf60048036038101906102ca9190614418565b6109ed565b6040516102dc91906143fd565b60405180910390f35b3480156102f157600080fd5b506102fa610a0c565b6040516103079190614454565b60405180910390f35b34801561031c57600080fd5b5061033760048036038101906103329190614418565b610a16565b005b34801561034557600080fd5b50610360600480360381019061035b919061446f565b610b6d565b005b34801561036e57600080fd5b506103896004803603810190610384919061449c565b610c97565b005b34801561039757600080fd5b506103b260048036038101906103ad9190614529565b610dc9565b6040516103bf91906143fd565b60405180910390f35b3480156103d457600080fd5b506103ef60048036038101906103ea9190614637565b610ea2565b005b3480156103fd57600080fd5b50610406610feb565b60405161041391906146d4565b60405180910390f35b34801561042857600080fd5b50610443600480360381019061043e91906143a2565b610ff4565b60405161045091906143fd565b60405180910390f35b34801561046557600080fd5b50610480600480360381019061047b9190614418565b6110a7565b60405161048d91906143fd565b60405180910390f35b3480156104a257600080fd5b506104ab6110fd565b6040516104b891906143fd565b60405180910390f35b3480156104cd57600080fd5b506104e860048036038101906104e39190614418565b611110565b6040516104f59190614454565b60405180910390f35b34801561050a57600080fd5b50610513611158565b005b34801561052157600080fd5b5061052a6112b0565b60405161053791906143fd565b60405180910390f35b34801561054c57600080fd5b506105676004803603810190610562919061471b565b61136b565b005b34801561057557600080fd5b50610590600480360381019061058b919061475b565b61145d565b005b34801561059e57600080fd5b506105a7611577565b005b3480156105b557600080fd5b506105be61164d565b6040516105cb91906147bd565b60405180910390f35b3480156105e057600080fd5b506105fb60048036038101906105f691906147d8565b611677565b005b34801561060957600080fd5b5061061261172b565b60405161061f91906142e2565b60405180910390f35b34801561063457600080fd5b5061064f600480360381019061064a919061471b565b6117bd565b005b34801561065d57600080fd5b50610678600480360381019061067391906147d8565b6118f1565b005b34801561068657600080fd5b506106a1600480360381019061069c91906143a2565b6119a5565b6040516106ae91906143fd565b60405180910390f35b3480156106c357600080fd5b506106cc611a72565b6040516106d991906143fd565b60405180910390f35b3480156106ee57600080fd5b50610709600480360381019061070491906143a2565b611a85565b60405161071691906143fd565b60405180910390f35b34801561072b57600080fd5b5061074660048036038101906107419190614418565b611aa3565b005b34801561075457600080fd5b5061076f600480360381019061076a9190614418565b611bfa565b60405161077c91906143fd565b60405180910390f35b34801561079157600080fd5b506107ac60048036038101906107a7919061471b565b611c1a565b005b3480156107ba57600080fd5b506107d560048036038101906107d0919061446f565b611d5a565b005b3480156107e357600080fd5b506107ec611e84565b005b3480156107fa57600080fd5b50610803611f25565b60405161081091906143fd565b60405180910390f35b34801561082557600080fd5b5061082e611f38565b60405161083b9190614864565b60405180910390f35b34801561085057600080fd5b5061086b6004803603810190610866919061446f565b611f5c565b60405161087891906143fd565b60405180910390f35b34801561088d57600080fd5b506108a860048036038101906108a3919061487f565b6120cc565b6040516108b59190614454565b60405180910390f35b3480156108ca57600080fd5b506108d3612153565b6040516108e091906143fd565b60405180910390f35b3480156108f557600080fd5b506108fe61220e565b60405161090b91906147bd565b60405180910390f35b34801561092057600080fd5b5061093b60048036038101906109369190614418565b612232565b005b60606003805461094c906148ee565b80601f0160208091040260200160405190810160405280929190818152602001828054610978906148ee565b80156109c55780601f1061099a576101008083540402835291602001916109c5565b820191906000526020600020905b8154815290600101906020018083116109a857829003601f168201915b5050505050905090565b60006109e36109dc612457565b848461245f565b6001905092915050565b602080528060005260406000206000915054906101000a900460ff1681565b6000600254905090565b610a1e612457565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610aad576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aa49061496c565b60405180910390fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74360405160405180910390a380600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b610b75612457565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610c04576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bfb9061496c565b60405180910390fd5b670de0b6b3a76400006103e86001610c1a610a0c565b610c2491906149bb565b610c2e9190614a44565b610c389190614a44565b811015610c7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7190614ae7565b60405180910390fd5b670de0b6b3a764000081610c8e91906149bb565b60088190555050565b610c9f612457565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610d2e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d259061496c565b60405180910390fd5b856015819055508460168190555083601781905550826018819055508160198190555080601a81905550601754601654601554610d6b9190614b07565b610d759190614b07565b60148190555060196014541115610dc1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610db890614ba9565b60405180910390fd5b505050505050565b6000610dd684848461262a565b610e9784610de2612457565b610e9285604051806060016040528060298152602001615ad060299139600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610e48612457565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461371e9092919063ffffffff16565b61245f565b600190509392505050565b610eaa612457565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610f39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f309061496c565b60405180910390fd5b610f59610f4461164d565b610f4c61164d565b610f54610a0c565b61245f565b60005b84849050811015610fe457610fd033868684818110610f7e57610f7d614bc9565b5b9050602002016020810190610f939190614418565b610f9b610feb565b600a610fa79190614d2b565b868686818110610fba57610fb9614bc9565b5b90506020020135610fcb91906149bb565b610dc9565b508080610fdc90614d76565b915050610f5c565b5050505050565b60006012905090565b600061109d611001612457565b846110988560016000611012612457565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546123f990919063ffffffff16565b61245f565b6001905092915050565b6000601f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b600b60029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611160612457565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146111ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111e69061496c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b60006112ba612457565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611349576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113409061496c565b60405180910390fd5b6000600b60006101000a81548160ff0219169083151502179055506001905090565b611373612457565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611402576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113f99061496c565b60405180910390fd5b80602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b611465612457565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146114f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114eb9061496c565b60405180910390fd5b82601181905550816012819055508060138190555060135460125460115461151c9190614b07565b6115269190614b07565b60108190555060146010541115611572576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156990614e0b565b60405180910390fd5b505050565b61157f612457565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461160e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116059061496c565b60405180910390fd5b6001600b60016101000a81548160ff0219169083151502179055506001600b60026101000a81548160ff02191690831515021790555043601e81905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61167f612457565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461170e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117059061496c565b60405180910390fd5b80600b60026101000a81548160ff02191690831515021790555050565b60606004805461173a906148ee565b80601f0160208091040260200160405190810160405280929190818152602001828054611766906148ee565b80156117b35780601f10611788576101008083540402835291602001916117b3565b820191906000526020600020905b81548152906001019060200180831161179657829003601f168201915b5050505050905090565b6117c5612457565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611854576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161184b9061496c565b60405180910390fd5b7f000000000000000000000000816f21f3c8440e34c7cea29489a73dcfdf1ff42d73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156118e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118da90614e9d565b60405180910390fd5b6118ed8282613782565b5050565b6118f9612457565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611988576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197f9061496c565b60405180910390fd5b80600b60036101000a81548160ff02191690831515021790555050565b6000611a686119b2612457565b84611a6385604051806060016040528060268152602001615af960269139600160006119dc612457565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461371e9092919063ffffffff16565b61245f565b6001905092915050565b600b60039054906101000a900460ff1681565b6000611a99611a92612457565b848461262a565b6001905092915050565b611aab612457565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611b3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b319061496c565b60405180910390fd5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567460405160405180910390a380600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60216020528060005260406000206000915054906101000a900460ff1681565b611c22612457565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611cb1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ca89061496c565b60405180910390fd5b80601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051611d4e91906143fd565b60405180910390a25050565b611d62612457565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611df1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611de89061496c565b60405180910390fd5b670de0b6b3a76400006103e86005611e07610a0c565b611e1191906149bb565b611e1b9190614a44565b611e259190614a44565b811015611e67576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e5e90614f2f565b60405180910390fd5b670de0b6b3a764000081611e7b91906149bb565b600a8190555050565b611e8c612457565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611f1b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f129061496c565b60405180910390fd5b611f23613823565b565b600f60009054906101000a900460ff1681565b7f00000000000000000000000098fb5c40b24c1759469dfe0c5436888422ac3c8c81565b6000611f66612457565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611ff5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fec9061496c565b60405180910390fd5b620186a06001612003610a0c565b61200d91906149bb565b6120179190614a44565b821015612059576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161205090614fc1565b60405180910390fd5b6103e86005612066610a0c565b61207091906149bb565b61207a9190614a44565b8211156120bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120b390615053565b60405180910390fd5b8160098190555060019050919050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600061215d612457565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146121ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121e39061496c565b60405180910390fd5b6000600f60006101000a81548160ff0219169083151502179055506001905090565b7f000000000000000000000000816f21f3c8440e34c7cea29489a73dcfdf1ff42d81565b61223a612457565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146122c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122c09061496c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612339576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612330906150e5565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60008082846124089190614b07565b90508381101561244d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161244490615151565b60405180910390fd5b8091505092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156124cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124c6906151e3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561253f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161253690615275565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161261d9190614454565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561269a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161269190615307565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561270a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161270190615399565b60405180910390fd5b600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156127ae5750600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b6127ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127e49061542b565b60405180910390fd5b60008114156128075761280283836000613b08565b613719565b600b60009054906101000a900460ff1615612eca5761282461164d565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015612892575061286261164d565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156128cb5750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612905575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561291e5750600560149054906101000a900460ff16155b15612ec957600b60019054906101000a900460ff16612a1857601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806129d85750601f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b612a17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a0e90615497565b60405180910390fd5b5b600f60009054906101000a900460ff1615612be057612a3561164d565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614158015612abc57507f00000000000000000000000098fb5c40b24c1759469dfe0c5436888422ac3c8c73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612b1457507f000000000000000000000000816f21f3c8440e34c7cea29489a73dcfdf1ff42d73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b15612bdf5743600c60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410612b9a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b919061554f565b60405180910390fd5b43600c60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b602160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612c835750602060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612d2a57600854811115612ccd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cc4906155e1565b60405180910390fd5b600a54612cd983611110565b82612ce49190614b07565b1115612d25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d1c9061564d565b60405180910390fd5b612ec8565b602160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612dcd5750602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612e1c57600854811115612e17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e0e906156df565b60405180910390fd5b612ec7565b602060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16612ec657600a54612e7983611110565b82612e849190614b07565b1115612ec5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ebc9061564d565b60405180910390fd5b5b5b5b5b5b601e544311158015612f2857507f000000000000000000000000816f21f3c8440e34c7cea29489a73dcfdf1ff42d73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612f7457507398fb5c40b24c1759469dfe0c5436888422ac3c8c73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b15612fd2576000600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505b60007f000000000000000000000000816f21f3c8440e34c7cea29489a73dcfdf1ff42d73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161490508015801561303f5750600b60039054906101000a900460ff165b15613162576000600d60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054141580156130e157504262015180600d60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546130de9190614b07565b10155b1561312957601854601681905550601954601581905550601a546017819055506017546016546015546131149190614b07565b61311e9190614b07565b60148190555061315d565b6000601681905550600460158190555060175460165460155461314c9190614b07565b6131569190614b07565b6014819055505b613240565b6000600d60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205414156131ef5742600d60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b600b60039054906101000a900460ff1661323f5760006016819055506004601581905550600060178190555060175460165460155461322e9190614b07565b6132389190614b07565b6014819055505b5b600061324b30611110565b9050600060095482101590508080156132705750600b60029054906101000a900460ff165b80156132895750600560149054906101000a900460ff16155b80156132df5750602160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156133355750601f60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b801561338b5750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156133cf576001600560146101000a81548160ff0219169083151502179055506133b3613823565b6000600560146101000a81548160ff0219169083151502179055505b6000600560149054906101000a900460ff16159050601f60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806134855750601f60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561348f57600090505b6000811561370857602160008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156134f257506000601454115b156135bf5761351f606461351160145489613d9d90919063ffffffff16565b613e1890919063ffffffff16565b90506014546016548261353291906149bb565b61353c9190614a44565b601c600082825461354d9190614b07565b925050819055506014546017548261356591906149bb565b61356f9190614a44565b601d60008282546135809190614b07565b925050819055506014546015548261359891906149bb565b6135a29190614a44565b601b60008282546135b39190614b07565b925050819055506136e4565b602160008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561361a57506000601054115b156136e357613647606461363960105489613d9d90919063ffffffff16565b613e1890919063ffffffff16565b90506010546012548261365a91906149bb565b6136649190614a44565b601c60008282546136759190614b07565b925050819055506010546013548261368d91906149bb565b6136979190614a44565b601d60008282546136a89190614b07565b92505081905550601054601154826136c091906149bb565b6136ca9190614a44565b601b60008282546136db9190614b07565b925050819055505b5b60008111156136f9576136f8883083613b08565b5b808661370591906156ff565b95505b613713888888613b08565b50505050505b505050565b6000838311158290613766576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161375d91906142e2565b60405180910390fd5b506000838561377591906156ff565b9050809150509392505050565b80602160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600061382e30611110565b90506000601d54601b54601c546138459190614b07565b61384f9190614b07565b90506000808314806138615750600082145b1561386e57505050613b06565b601460095461387d91906149bb565b83111561389657601460095461389391906149bb565b92505b6000600283601c54866138a991906149bb565b6138b39190614a44565b6138bd9190614a44565b905060006138d48286613e6290919063ffffffff16565b905060004790506138e482613eac565b60006138f98247613e6290919063ffffffff16565b9050600061392487613916601b5485613d9d90919063ffffffff16565b613e1890919063ffffffff16565b9050600061394f88613941601d5486613d9d90919063ffffffff16565b613e1890919063ffffffff16565b9050600081838561396091906156ff565b61396a91906156ff565b90506000601c819055506000601b819055506000601d81905550600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16826040516139ca90615764565b60006040518083038185875af1925050503d8060008114613a07576040519150601f19603f3d011682016040523d82523d6000602084013e613a0c565b606091505b505080985050600087118015613a225750600081115b15613a6d57613a3187826140f8565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb561868289604051613a6493929190615779565b60405180910390a15b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051613ab390615764565b60006040518083038185875af1925050503d8060008114613af0576040519150601f19603f3d011682016040523d82523d6000602084013e613af5565b606091505b505080985050505050505050505050505b565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415613b78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613b6f90615307565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613be8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613bdf90615399565b60405180910390fd5b613bf38383836141e1565b613c5e81604051806060016040528060278152602001615b1f602791396000808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461371e9092919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550613cf1816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546123f990919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051613d909190614454565b60405180910390a3505050565b600080831415613db05760009050613e12565b60008284613dbe91906149bb565b9050828482613dcd9190614a44565b14613e0d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613e0490615822565b60405180910390fd5b809150505b92915050565b6000613e5a83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506141e6565b905092915050565b6000613ea483836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525061371e565b905092915050565b6000600267ffffffffffffffff811115613ec957613ec8615842565b5b604051908082528060200260200182016040528015613ef75781602001602082028036833780820191505090505b5090503081600081518110613f0f57613f0e614bc9565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f00000000000000000000000098fb5c40b24c1759469dfe0c5436888422ac3c8c73ffffffffffffffffffffffffffffffffffffffff16635ce562296040518163ffffffff1660e01b815260040160206040518083038186803b158015613faf57600080fd5b505afa158015613fc3573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613fe79190615886565b81600181518110613ffb57613ffa614bc9565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050614060307f00000000000000000000000098fb5c40b24c1759469dfe0c5436888422ac3c8c8461245f565b7f00000000000000000000000098fb5c40b24c1759469dfe0c5436888422ac3c8c73ffffffffffffffffffffffffffffffffffffffff1663d27825678360008430426040518663ffffffff1660e01b81526004016140c29594939291906159ac565b600060405180830381600087803b1580156140dc57600080fd5b505af11580156140f0573d6000803e3d6000fd5b505050505050565b614123307f00000000000000000000000098fb5c40b24c1759469dfe0c5436888422ac3c8c8461245f565b7f00000000000000000000000098fb5c40b24c1759469dfe0c5436888422ac3c8c73ffffffffffffffffffffffffffffffffffffffff166374bda49c82308560008030426040518863ffffffff1660e01b815260040161418896959493929190615a06565b6060604051808303818588803b1580156141a157600080fd5b505af11580156141b5573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906141da9190615a7c565b5050505050565b505050565b6000808311829061422d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161422491906142e2565b60405180910390fd5b506000838561423c9190614a44565b9050809150509392505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015614283578082015181840152602081019050614268565b83811115614292576000848401525b50505050565b6000601f19601f8301169050919050565b60006142b482614249565b6142be8185614254565b93506142ce818560208601614265565b6142d781614298565b840191505092915050565b600060208201905081810360008301526142fc81846142a9565b905092915050565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006143398261430e565b9050919050565b6143498161432e565b811461435457600080fd5b50565b60008135905061436681614340565b92915050565b6000819050919050565b61437f8161436c565b811461438a57600080fd5b50565b60008135905061439c81614376565b92915050565b600080604083850312156143b9576143b8614304565b5b60006143c785828601614357565b92505060206143d88582860161438d565b9150509250929050565b60008115159050919050565b6143f7816143e2565b82525050565b600060208201905061441260008301846143ee565b92915050565b60006020828403121561442e5761442d614304565b5b600061443c84828501614357565b91505092915050565b61444e8161436c565b82525050565b60006020820190506144696000830184614445565b92915050565b60006020828403121561448557614484614304565b5b60006144938482850161438d565b91505092915050565b60008060008060008060c087890312156144b9576144b8614304565b5b60006144c789828a0161438d565b96505060206144d889828a0161438d565b95505060406144e989828a0161438d565b94505060606144fa89828a0161438d565b935050608061450b89828a0161438d565b92505060a061451c89828a0161438d565b9150509295509295509295565b60008060006060848603121561454257614541614304565b5b600061455086828701614357565b935050602061456186828701614357565b92505060406145728682870161438d565b9150509250925092565b600080fd5b600080fd5b600080fd5b60008083601f8401126145a1576145a061457c565b5b8235905067ffffffffffffffff8111156145be576145bd614581565b5b6020830191508360208202830111156145da576145d9614586565b5b9250929050565b60008083601f8401126145f7576145f661457c565b5b8235905067ffffffffffffffff81111561461457614613614581565b5b6020830191508360208202830111156146305761462f614586565b5b9250929050565b6000806000806040858703121561465157614650614304565b5b600085013567ffffffffffffffff81111561466f5761466e614309565b5b61467b8782880161458b565b9450945050602085013567ffffffffffffffff81111561469e5761469d614309565b5b6146aa878288016145e1565b925092505092959194509250565b600060ff82169050919050565b6146ce816146b8565b82525050565b60006020820190506146e960008301846146c5565b92915050565b6146f8816143e2565b811461470357600080fd5b50565b600081359050614715816146ef565b92915050565b6000806040838503121561473257614731614304565b5b600061474085828601614357565b925050602061475185828601614706565b9150509250929050565b60008060006060848603121561477457614773614304565b5b60006147828682870161438d565b93505060206147938682870161438d565b92505060406147a48682870161438d565b9150509250925092565b6147b78161432e565b82525050565b60006020820190506147d260008301846147ae565b92915050565b6000602082840312156147ee576147ed614304565b5b60006147fc84828501614706565b91505092915050565b6000819050919050565b600061482a6148256148208461430e565b614805565b61430e565b9050919050565b600061483c8261480f565b9050919050565b600061484e82614831565b9050919050565b61485e81614843565b82525050565b60006020820190506148796000830184614855565b92915050565b6000806040838503121561489657614895614304565b5b60006148a485828601614357565b92505060206148b585828601614357565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061490657607f821691505b6020821081141561491a576149196148bf565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000614956602083614254565b915061496182614920565b602082019050919050565b6000602082019050818103600083015261498581614949565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006149c68261436c565b91506149d18361436c565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614a0a57614a0961498c565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000614a4f8261436c565b9150614a5a8361436c565b925082614a6a57614a69614a15565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20302e31250000000000000000000000000000000000602082015250565b6000614ad1602f83614254565b9150614adc82614a75565b604082019050919050565b60006020820190508181036000830152614b0081614ac4565b9050919050565b6000614b128261436c565b9150614b1d8361436c565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614b5257614b5161498c565b5b828201905092915050565b7f4d757374206b656570206665657320617420323525206f72206c657373000000600082015250565b6000614b93601d83614254565b9150614b9e82614b5d565b602082019050919050565b60006020820190508181036000830152614bc281614b86565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60008160011c9050919050565b6000808291508390505b6001851115614c4f57808604811115614c2b57614c2a61498c565b5b6001851615614c3a5780820291505b8081029050614c4885614bf8565b9450614c0f565b94509492505050565b600082614c685760019050614d24565b81614c765760009050614d24565b8160018114614c8c5760028114614c9657614cc5565b6001915050614d24565b60ff841115614ca857614ca761498c565b5b8360020a915084821115614cbf57614cbe61498c565b5b50614d24565b5060208310610133831016604e8410600b8410161715614cfa5782820a905083811115614cf557614cf461498c565b5b614d24565b614d078484846001614c05565b92509050818404811115614d1e57614d1d61498c565b5b81810290505b9392505050565b6000614d368261436c565b9150614d41836146b8565b9250614d6e7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484614c58565b905092915050565b6000614d818261436c565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614db457614db361498c565b5b600182019050919050565b7f4d757374206b656570206665657320617420323025206f72206c657373000000600082015250565b6000614df5601d83614254565b9150614e0082614dbf565b602082019050919050565b60006020820190508181036000830152614e2481614de8565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b6000614e87603983614254565b9150614e9282614e2b565b604082019050919050565b60006020820190508181036000830152614eb681614e7a565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b6000614f19602483614254565b9150614f2482614ebd565b604082019050919050565b60006020820190508181036000830152614f4881614f0c565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b6000614fab603583614254565b9150614fb682614f4f565b604082019050919050565b60006020820190508181036000830152614fda81614f9e565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b600061503d603483614254565b915061504882614fe1565b604082019050919050565b6000602082019050818103600083015261506c81615030565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006150cf602683614254565b91506150da82615073565b604082019050919050565b600060208201905081810360008301526150fe816150c2565b9050919050565b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000600082015250565b600061513b601b83614254565b915061514682615105565b602082019050919050565b6000602082019050818103600083015261516a8161512e565b9050919050565b7f4744434332303a20617070726f76652066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006151cd602583614254565b91506151d882615171565b604082019050919050565b600060208201905081810360008301526151fc816151c0565b9050919050565b7f4744434332303a20617070726f766520746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600061525f602383614254565b915061526a82615203565b604082019050919050565b6000602082019050818103600083015261528e81615252565b9050919050565b7f4744434332303a207472616e736665722066726f6d20746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006152f1602683614254565b91506152fc82615295565b604082019050919050565b60006020820190508181036000830152615320816152e4565b9050919050565b7f4744434332303a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000615383602483614254565b915061538e82615327565b604082019050919050565b600060208201905081810360008301526153b281615376565b9050919050565b7f596f752068617665206265656e20626c61636b6c69737465642066726f6d207460008201527f72616e73666572696e6720746f6b656e73000000000000000000000000000000602082015250565b6000615415603183614254565b9150615420826153b9565b604082019050919050565b6000602082019050818103600083015261544481615408565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b6000615481601683614254565b915061548c8261544b565b602082019050919050565b600060208201905081810360008301526154b081615474565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60208201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000604082015250565b6000615539604983614254565b9150615544826154b7565b606082019050919050565b600060208201905081810360008301526155688161552c565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b60006155cb603583614254565b91506155d68261556f565b604082019050919050565b600060208201905081810360008301526155fa816155be565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b6000615637601383614254565b915061564282615601565b602082019050919050565b600060208201905081810360008301526156668161562a565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b60006156c9603683614254565b91506156d48261566d565b604082019050919050565b600060208201905081810360008301526156f8816156bc565b9050919050565b600061570a8261436c565b91506157158361436c565b9250828210156157285761572761498c565b5b828203905092915050565b600081905092915050565b50565b600061574e600083615733565b91506157598261573e565b600082019050919050565b600061576f82615741565b9150819050919050565b600060608201905061578e6000830186614445565b61579b6020830185614445565b6157a86040830184614445565b949350505050565b7f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f60008201527f7700000000000000000000000000000000000000000000000000000000000000602082015250565b600061580c602183614254565b9150615817826157b0565b604082019050919050565b6000602082019050818103600083015261583b816157ff565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b60008151905061588081614340565b92915050565b60006020828403121561589c5761589b614304565b5b60006158aa84828501615871565b91505092915050565b6000819050919050565b60006158d86158d36158ce846158b3565b614805565b61436c565b9050919050565b6158e8816158bd565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6159238161432e565b82525050565b6000615935838361591a565b60208301905092915050565b6000602082019050919050565b6000615959826158ee565b61596381856158f9565b935061596e8361590a565b8060005b8381101561599f5781516159868882615929565b975061599183615941565b925050600181019050615972565b5085935050505092915050565b600060a0820190506159c16000830188614445565b6159ce60208301876158df565b81810360408301526159e0818661594e565b90506159ef60608301856147ae565b6159fc6080830184614445565b9695505050505050565b600060c082019050615a1b60008301896147ae565b615a286020830188614445565b615a3560408301876158df565b615a4260608301866158df565b615a4f60808301856147ae565b615a5c60a0830184614445565b979650505050505050565b600081519050615a7681614376565b92915050565b600080600060608486031215615a9557615a94614304565b5b6000615aa386828701615a67565b9350506020615ab486828701615a67565b9250506040615ac586828701615a67565b915050925092509256fe4744434332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654744434332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726f4744434332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365a26469706673582212201cd79bcec7d2f3baa11c49d8e3434e1b9ff80559a8aae89ec202d77773f063fa64736f6c63430008090033