ERC-20
Overview
Max Total Supply
1,000,000,000 ARTA
Holders
32
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
6,526,200.237349700905724458 ARTAValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
Artefacta
Compiler Version
v0.8.17+commit.8df45f5f
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-01-22 */ pragma solidity 0.8.17; /* //Telegram: https://t.me/ArtefataOfficialPortal */ // SPDX-License-Identifier: MIT ////// lib/openzeppelin-contracts/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.0 (utils/Context.sol) /* pragma solidity ^0.8.0; */ /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } ////// lib/openzeppelin-contracts/contracts/access/Ownable.sol // OpenZeppelin Contracts v4.4.0 (access/Ownable.sol) /* pragma solidity ^0.8.0; */ /* import "../utils/Context.sol"; */ /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } ////// lib/openzeppelin-contracts/contracts/token/ERC20/IERC20.sol // OpenZeppelin Contracts v4.4.0 (token/ERC20/IERC20.sol) /* pragma solidity ^0.8.0; */ /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address sender, address recipient, uint256 amount ) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); } ////// lib/openzeppelin-contracts/contracts/token/ERC20/extensions/IERC20Metadata.sol // OpenZeppelin Contracts v4.4.0 (token/ERC20/extensions/IERC20Metadata.sol) /* pragma solidity ^0.8.0; */ /* import "../IERC20.sol"; */ /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); } ////// lib/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol // OpenZeppelin Contracts v4.4.0 (token/ERC20/ERC20.sol) /* pragma solidity ^0.8.0; */ /* import "./IERC20.sol"; */ /* import "./extensions/IERC20Metadata.sol"; */ /* import "../../utils/Context.sol"; */ /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of ERC20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * The default value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless this function is * overridden; * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address recipient, uint256 amount) public virtual override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { _approve(_msgSender(), spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * Requirements: * * - `sender` and `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. * - the caller must have allowance for ``sender``'s tokens of at least * `amount`. */ function transferFrom( address sender, address recipient, uint256 amount ) public virtual override returns (bool) { _transfer(sender, recipient, amount); uint256 currentAllowance = _allowances[sender][_msgSender()]; require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance"); unchecked { _approve(sender, _msgSender(), currentAllowance - amount); } return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender] + addedValue); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { uint256 currentAllowance = _allowances[_msgSender()][spender]; require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(_msgSender(), spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `sender` to `recipient`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `sender` cannot be the zero address. * - `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. */ function _transfer( address sender, address recipient, uint256 amount ) internal virtual { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(sender, recipient, amount); uint256 senderBalance = _balances[sender]; require(senderBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[sender] = senderBalance - amount; } _balances[recipient] += amount; emit Transfer(sender, recipient, amount); _afterTokenTransfer(sender, recipient, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; _balances[account] += amount; emit Transfer(address(0), account, amount); _afterTokenTransfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account] = accountBalance - amount; } _totalSupply -= amount; emit Transfer(account, address(0), amount); _afterTokenTransfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve( address owner, address spender, uint256 amount ) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 amount ) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * has been transferred to `to`. * - when `from` is zero, `amount` tokens have been minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens have been burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 amount ) internal virtual {} } ////// lib/openzeppelin-contracts/contracts/utils/math/SafeMath.sol // OpenZeppelin Contracts v4.4.0 (utils/math/SafeMath.sol) /* pragma solidity ^0.8.0; */ // CAUTION // This version of SafeMath should only be used with Solidity 0.8 or later, // because it relies on the compiler's built in overflow checks. /** * @dev Wrappers over Solidity's arithmetic operations. * * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler * now has built in overflow checking. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the substraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { return a + b; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { return a * b; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b <= a, errorMessage); return a - b; } } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a / b; } } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a % b; } } } /* pragma solidity 0.8.10; */ /* pragma experimental ABIEncoderV2; */ interface IUniswapV2Factory { event PairCreated( address indexed token0, address indexed token1, address pair, uint256 ); function feeTo() external view returns (address); function feeToSetter() external view returns (address); function getPair(address tokenA, address tokenB) external view returns (address pair); function allPairs(uint256) external view returns (address pair); function allPairsLength() external view returns (uint256); function createPair(address tokenA, address tokenB) external returns (address pair); function setFeeTo(address) external; function setFeeToSetter(address) external; } /* pragma solidity 0.8.10; */ /* pragma experimental ABIEncoderV2; */ interface IUniswapV2Pair { event Approval( address indexed owner, address indexed spender, uint256 value ); event Transfer(address indexed from, address indexed to, uint256 value); function name() external pure returns (string memory); function symbol() external pure returns (string memory); function decimals() external pure returns (uint8); function totalSupply() external view returns (uint256); function balanceOf(address owner) external view returns (uint256); function allowance(address owner, address spender) external view returns (uint256); function approve(address spender, uint256 value) external returns (bool); function transfer(address to, uint256 value) external returns (bool); function transferFrom( address from, address to, uint256 value ) external returns (bool); function DOMAIN_SEPARATOR() external view returns (bytes32); function PERMIT_TYPEHASH() external pure returns (bytes32); function nonces(address owner) external view returns (uint256); function permit( address owner, address spender, uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s ) external; event Mint(address indexed sender, uint256 amount0, uint256 amount1); event Burn( address indexed sender, uint256 amount0, uint256 amount1, address indexed to ); event Swap( address indexed sender, uint256 amount0In, uint256 amount1In, uint256 amount0Out, uint256 amount1Out, address indexed to ); event Sync(uint112 reserve0, uint112 reserve1); function MINIMUM_LIQUIDITY() external pure returns (uint256); function factory() external view returns (address); function token0() external view returns (address); function token1() external view returns (address); function getReserves() external view returns ( uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast ); function price0CumulativeLast() external view returns (uint256); function price1CumulativeLast() external view returns (uint256); function kLast() external view returns (uint256); function mint(address to) external returns (uint256 liquidity); function burn(address to) external returns (uint256 amount0, uint256 amount1); function swap( uint256 amount0Out, uint256 amount1Out, address to, bytes calldata data ) external; function skim(address to) external; function sync() external; function initialize(address, address) external; } /* pragma solidity 0.8.10; */ /* pragma experimental ABIEncoderV2; */ interface IUniswapV2Router02 { function factory() external pure returns (address); function WETH() external pure returns (address); function addLiquidity( address tokenA, address tokenB, uint256 amountADesired, uint256 amountBDesired, uint256 amountAMin, uint256 amountBMin, address to, uint256 deadline ) external returns ( uint256 amountA, uint256 amountB, uint256 liquidity ); function addLiquidityETH( address token, uint256 amountTokenDesired, uint256 amountTokenMin, uint256 amountETHMin, address to, uint256 deadline ) external payable returns ( uint256 amountToken, uint256 amountETH, uint256 liquidity ); function swapExactTokensForTokensSupportingFeeOnTransferTokens( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external; function swapExactETHForTokensSupportingFeeOnTransferTokens( uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external payable; function swapExactTokensForETHSupportingFeeOnTransferTokens( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external; } /* pragma solidity >=0.8.10; */ /* import {IUniswapV2Router02} from "./IUniswapV2Router02.sol"; */ /* import {IUniswapV2Factory} from "./IUniswapV2Factory.sol"; */ /* import {IUniswapV2Pair} from "./IUniswapV2Pair.sol"; */ /* import {IERC20} from "lib/openzeppelin-contracts/contracts/token/ERC20/IERC20.sol"; */ /* import {ERC20} from "lib/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol"; */ /* import {Ownable} from "lib/openzeppelin-contracts/contracts/access/Ownable.sol"; */ /* import {SafeMath} from "lib/openzeppelin-contracts/contracts/utils/math/SafeMath.sol"; */ contract Artefacta is ERC20, Ownable { using SafeMath for uint256; IUniswapV2Router02 public immutable uniswapV2Router; address public immutable uniswapV2Pair; address public constant deadAddress = address(0xdead); bool private swapping; address public charityWallet; address public marketingWallet; address public devWallet; uint256 public maxTransactionAmount; uint256 public swapTokensAtAmount; uint256 public maxWallet; bool public limitsInEffect = true; bool public tradingActive = true; bool public swapEnabled = true; // Anti-bot and anti-whale mappings and variables mapping(address => uint256) private _holderLastTransferTimestamp; // to hold last Transfers temporarily during launch bool public transferDelayEnabled = true; uint256 public buyTotalFees; uint256 public buyCharityFee; uint256 public buyMarketingFee; uint256 public buyLiquidityFee; uint256 public buyDevFee; uint256 public sellTotalFees; uint256 public sellCharityFee; uint256 public sellMarketingFee; uint256 public sellLiquidityFee; uint256 public sellDevFee; uint256 public tokensForCharity; uint256 public tokensForMarketing; uint256 public tokensForLiquidity; uint256 public tokensForDev; /******************/ // exlcude 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 UpdateUniswapV2Router( address indexed newAddress, address indexed oldAddress ); event ExcludeFromFees(address indexed account, bool isExcluded); event SetAutomatedMarketMakerPair(address indexed pair, bool indexed value); event SwapAndLiquify( uint256 tokensSwapped, uint256 ethReceived, uint256 tokensIntoLiquidity ); constructor() ERC20("Artefacta", "ARTA") { IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02( 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D ); excludeFromMaxTransaction(address(_uniswapV2Router), true); uniswapV2Router = _uniswapV2Router; uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()) .createPair(address(this), _uniswapV2Router.WETH()); excludeFromMaxTransaction(address(uniswapV2Pair), true); _setAutomatedMarketMakerPair(address(uniswapV2Pair), true); uint256 _buyCharityFee = 2; uint256 _buyMarketingFee = 21; uint256 _buyLiquidityFee = 0; uint256 _buyDevFee = 3; uint256 _sellCharityFee = 2; uint256 _sellMarketingFee = 21; uint256 _sellLiquidityFee = 0; uint256 _sellDevFee = 3; uint256 totalSupply = 1000000000 * 1e18; maxTransactionAmount = 20000000 * 1e18; // 2% from total supply maxTransactionAmountTxn maxWallet = 20000000 * 1e18; // 2% from total supply maxWallet swapTokensAtAmount = (totalSupply * 10) / 10000; // 0.1% swap wallet buyCharityFee = _buyCharityFee; buyMarketingFee = _buyMarketingFee; buyLiquidityFee = _buyLiquidityFee; buyDevFee = _buyDevFee; buyTotalFees = buyCharityFee + buyMarketingFee + buyLiquidityFee + buyDevFee; sellCharityFee = _sellCharityFee; sellMarketingFee = _sellMarketingFee; sellLiquidityFee = _sellLiquidityFee; sellDevFee = _sellDevFee; sellTotalFees = sellCharityFee + sellMarketingFee + sellLiquidityFee + sellDevFee; charityWallet = address(0xE807F462356D4c390f00e4658cb0098c6B2B2DD5); // set as charity wallet marketingWallet = address(0xd2EB01c7ED27833CdD70FB9232be4126f1117e30); // set as marketing wallet devWallet = address(0xfc24411c7b2c633A68b81FAb07680D479a178F80); // set as dev wallet // exclude from paying fees or having max transaction amount excludeFromFees(owner(), true); excludeFromFees(address(this), true); excludeFromFees(address(0xdead), true); excludeFromMaxTransaction(owner(), true); excludeFromMaxTransaction(address(this), true); excludeFromMaxTransaction(address(0xdead), true); /* _mint is an internal function in ERC20.sol that is only called here, and CANNOT be called ever again */ _mint(msg.sender, totalSupply); } receive() external payable {} // once enabled, can never be turned off function enableTrading() external onlyOwner { tradingActive = true; swapEnabled = true; } // remove limits after token is stable function removeLimits() external onlyOwner returns (bool) { limitsInEffect = false; return true; } // disable Transfer delay - cannot be reenabled function disableTransferDelay() external onlyOwner returns (bool) { transferDelayEnabled = false; return true; } // change the minimum amount of tokens to sell from fees function updateSwapTokensAtAmount(uint256 newAmount) external onlyOwner returns (bool) { require( newAmount >= (totalSupply() * 1) / 100000, "Swap amount cannot be lower than 0.001% total supply." ); require( newAmount <= (totalSupply() * 5) / 1000, "Swap amount cannot be higher than 0.5% total supply." ); swapTokensAtAmount = newAmount; return true; } function updateMaxTxnAmount(uint256 newNum) external onlyOwner { require( newNum >= ((totalSupply() * 5) / 1000) / 1e18, "Cannot set maxTransactionAmount lower than 0.5%" ); 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 _charityFee, uint256 _marketingFee, uint256 _liquidityFee, uint256 _devFee ) external onlyOwner { require((_charityFee + _marketingFee + _liquidityFee + _devFee) <= 10, "Max BuyFee 10%"); buyCharityFee = _charityFee; buyMarketingFee = _marketingFee; buyLiquidityFee = _liquidityFee; buyDevFee = _devFee; buyTotalFees = buyCharityFee + buyMarketingFee + buyLiquidityFee + buyDevFee; } function updateSellFees( uint256 _charityFee, uint256 _marketingFee, uint256 _liquidityFee, uint256 _devFee ) external onlyOwner { require((_charityFee + _marketingFee + _liquidityFee + _devFee) <= 10, "Max SellFee 10%"); sellCharityFee = _charityFee; sellMarketingFee = _marketingFee; sellLiquidityFee = _liquidityFee; sellDevFee = _devFee; sellTotalFees = sellCharityFee + sellMarketingFee + sellLiquidityFee + sellDevFee; } function excludeFromFees(address account, bool excluded) public onlyOwner { _isExcludedFromFees[account] = excluded; emit ExcludeFromFees(account, excluded); } function setAutomatedMarketMakerPair(address pair, bool value) public onlyOwner { require( pair != uniswapV2Pair, "The pair cannot be removed from automatedMarketMakerPairs" ); _setAutomatedMarketMakerPair(pair, value); } function _setAutomatedMarketMakerPair(address pair, bool value) private { automatedMarketMakerPairs[pair] = value; emit SetAutomatedMarketMakerPair(pair, value); } function isExcludedFromFees(address account) public view returns (bool) { return _isExcludedFromFees[account]; } function _transfer( address from, address to, uint256 amount ) internal override { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); if (amount == 0) { super._transfer(from, to, 0); return; } if (limitsInEffect) { if ( from != owner() && to != owner() && to != address(0) && to != address(0xdead) && !swapping ) { if (!tradingActive) { require( _isExcludedFromFees[from] || _isExcludedFromFees[to], "Trading is not active." ); } // at launch if the transfer delay is enabled, ensure the block timestamps for purchasers is set -- during launch. if (transferDelayEnabled) { if ( to != owner() && to != address(uniswapV2Router) && to != address(uniswapV2Pair) ) { require( _holderLastTransferTimestamp[tx.origin] < block.number, "_transfer:: Transfer Delay enabled. Only one purchase per block allowed." ); _holderLastTransferTimestamp[tx.origin] = block.number; } } //when buy if ( automatedMarketMakerPairs[from] && !_isExcludedMaxTransactionAmount[to] ) { require( amount <= maxTransactionAmount, "Buy transfer amount exceeds the maxTransactionAmount." ); require( amount + balanceOf(to) <= maxWallet, "Max wallet exceeded" ); } //when sell else if ( automatedMarketMakerPairs[to] && !_isExcludedMaxTransactionAmount[from] ) { require( amount <= maxTransactionAmount, "Sell transfer amount exceeds the maxTransactionAmount." ); } else if (!_isExcludedMaxTransactionAmount[to]) { require( amount + balanceOf(to) <= maxWallet, "Max wallet exceeded" ); } } } uint256 contractTokenBalance = balanceOf(address(this)); bool canSwap = contractTokenBalance >= swapTokensAtAmount; if ( canSwap && swapEnabled && !swapping && !automatedMarketMakerPairs[from] && !_isExcludedFromFees[from] && !_isExcludedFromFees[to] ) { swapping = true; swapBack(); swapping = false; } 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); tokensForCharity += (fees * sellCharityFee) / sellTotalFees; 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); tokensForCharity += (fees * buyCharityFee) / buyTotalFees; 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 uniswap pair path of token -> weth address[] memory path = new address[](2); path[0] = address(this); path[1] = uniswapV2Router.WETH(); _approve(address(this), address(uniswapV2Router), tokenAmount); // make the swap uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens( tokenAmount, 0, // accept any amount of ETH path, address(this), block.timestamp ); } function addLiquidity(uint256 tokenAmount, uint256 ethAmount) private { // approve token transfer to cover all possible scenarios _approve(address(this), address(uniswapV2Router), tokenAmount); // add the liquidity uniswapV2Router.addLiquidityETH{value: ethAmount}( address(this), tokenAmount, 0, // slippage is unavoidable 0, // slippage is unavoidable devWallet, block.timestamp ); } function swapBack() private { uint256 contractBalance = balanceOf(address(this)); uint256 totalTokensToSwap = tokensForCharity + 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 amountToSwapForETH = contractBalance.sub(liquidityTokens); uint256 initialETHBalance = address(this).balance; swapTokensForEth(amountToSwapForETH); uint256 ethBalance = address(this).balance.sub(initialETHBalance); uint256 ethForCharity = ethBalance.mul(tokensForCharity).div(totalTokensToSwap); uint256 ethForMarketing = ethBalance.mul(tokensForMarketing).div(totalTokensToSwap); uint256 ethForDev = ethBalance.mul(tokensForDev).div(totalTokensToSwap); uint256 ethForLiquidity = ethBalance - ethForCharity - ethForMarketing - ethForDev; tokensForLiquidity = 0; tokensForCharity = 0; tokensForMarketing = 0; tokensForDev = 0; (success, ) = address(devWallet).call{value: ethForDev}(""); (success, ) = address(marketingWallet).call{value: ethForMarketing}(""); if (liquidityTokens > 0 && ethForLiquidity > 0) { addLiquidity(liquidityTokens, ethForLiquidity); emit SwapAndLiquify( amountToSwapForETH, ethForLiquidity, tokensForLiquidity ); } (success, ) = address(charityWallet).call{value: address(this).balance}(""); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiquidity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newAddress","type":"address"},{"indexed":true,"internalType":"address","name":"oldAddress","type":"address"}],"name":"UpdateUniswapV2Router","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyCharityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyMarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"charityWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deadAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"devWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"disableTransferDelay","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellCharityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellMarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForCharity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForDev","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForMarketing","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"transferDelayEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_charityFee","type":"uint256"},{"internalType":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_devFee","type":"uint256"}],"name":"updateBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxTxnAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_charityFee","type":"uint256"},{"internalType":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_devFee","type":"uint256"}],"name":"updateSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"updateSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateSwapTokensAtAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60c06040526001600c60006101000a81548160ff0219169083151502179055506001600c60016101000a81548160ff0219169083151502179055506001600c60026101000a81548160ff0219169083151502179055506001600e60006101000a81548160ff0219169083151502179055503480156200007d57600080fd5b506040518060400160405280600981526020017f41727465666163746100000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f41525441000000000000000000000000000000000000000000000000000000008152508160039081620000fb919062000de3565b5080600490816200010d919062000de3565b50505062000130620001246200062a60201b60201c565b6200063260201b60201c565b6000737a250d5630b4cf539739df2c5dacb4c659f2488d90506200015c816001620006f860201b60201c565b8073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015620001dc573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000202919062000f34565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200026a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000290919062000f34565b6040518363ffffffff1660e01b8152600401620002af92919062000f77565b6020604051808303816000875af1158015620002cf573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002f5919062000f34565b73ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff16815250506200033d60a0516001620006f860201b60201c565b6200035260a0516001620007e260201b60201c565b600060029050600060159050600080600390506000600290506000601590506000806003905060006b033b2e3c9fd0803ce800000090506a108b2a2c280290940000006009819055506a108b2a2c28029094000000600b81905550612710600a82620003bf919062000fd3565b620003cb91906200104d565b600a819055508860108190555087601181905550866012819055508560138190555060135460125460115460105462000405919062001085565b62000411919062001085565b6200041d919062001085565b600f819055508460158190555083601681905550826017819055508160188190555060185460175460165460155462000457919062001085565b62000463919062001085565b6200046f919062001085565b60148190555073e807f462356d4c390f00e4658cb0098c6b2b2dd5600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073d2eb01c7ed27833cdd70fb9232be4126f1117e30600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073fc24411c7b2c633a68b81fab07680d479a178f80600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555062000596620005886200088360201b60201c565b6001620008ad60201b60201c565b620005a9306001620008ad60201b60201c565b620005be61dead6001620008ad60201b60201c565b620005e0620005d26200088360201b60201c565b6001620006f860201b60201c565b620005f3306001620006f860201b60201c565b6200060861dead6001620006f860201b60201c565b6200061a3382620009e760201b60201c565b505050505050505050506200121d565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620007086200062a60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff166200072e6200088360201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000787576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200077e9062001121565b60405180910390fd5b80601e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b80601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b620008bd6200062a60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620008e36200088360201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16146200093c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620009339062001121565b60405180910390fd5b80601d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051620009db919062001160565b60405180910390a25050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000a59576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000a5090620011cd565b60405180910390fd5b62000a6d6000838362000b5f60201b60201c565b806002600082825462000a81919062001085565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825462000ad8919062001085565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000b3f919062001200565b60405180910390a362000b5b6000838362000b6460201b60201c565b5050565b505050565b505050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000beb57607f821691505b60208210810362000c015762000c0062000ba3565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830262000c6b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000c2c565b62000c77868362000c2c565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b600062000cc462000cbe62000cb88462000c8f565b62000c99565b62000c8f565b9050919050565b6000819050919050565b62000ce08362000ca3565b62000cf862000cef8262000ccb565b84845462000c39565b825550505050565b600090565b62000d0f62000d00565b62000d1c81848462000cd5565b505050565b5b8181101562000d445762000d3860008262000d05565b60018101905062000d22565b5050565b601f82111562000d935762000d5d8162000c07565b62000d688462000c1c565b8101602085101562000d78578190505b62000d9062000d878562000c1c565b83018262000d21565b50505b505050565b600082821c905092915050565b600062000db86000198460080262000d98565b1980831691505092915050565b600062000dd3838362000da5565b9150826002028217905092915050565b62000dee8262000b69565b67ffffffffffffffff81111562000e0a5762000e0962000b74565b5b62000e16825462000bd2565b62000e2382828562000d48565b600060209050601f83116001811462000e5b576000841562000e46578287015190505b62000e52858262000dc5565b86555062000ec2565b601f19841662000e6b8662000c07565b60005b8281101562000e955784890151825560018201915060208501945060208101905062000e6e565b8683101562000eb5578489015162000eb1601f89168262000da5565b8355505b6001600288020188555050505b505050505050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000efc8262000ecf565b9050919050565b62000f0e8162000eef565b811462000f1a57600080fd5b50565b60008151905062000f2e8162000f03565b92915050565b60006020828403121562000f4d5762000f4c62000eca565b5b600062000f5d8482850162000f1d565b91505092915050565b62000f718162000eef565b82525050565b600060408201905062000f8e600083018562000f66565b62000f9d602083018462000f66565b9392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000fe08262000c8f565b915062000fed8362000c8f565b925082820262000ffd8162000c8f565b9150828204841483151762001017576200101662000fa4565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006200105a8262000c8f565b9150620010678362000c8f565b9250826200107a57620010796200101e565b5b828204905092915050565b6000620010928262000c8f565b91506200109f8362000c8f565b9250828201905080821115620010ba57620010b962000fa4565b5b92915050565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600062001109602083620010c0565b91506200111682620010d1565b602082019050919050565b600060208201905081810360008301526200113c81620010fa565b9050919050565b60008115159050919050565b6200115a8162001143565b82525050565b60006020820190506200117760008301846200114f565b92915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6000620011b5601f83620010c0565b9150620011c2826200117d565b602082019050919050565b60006020820190508181036000830152620011e881620011a6565b9050919050565b620011fa8162000c8f565b82525050565b6000602082019050620012176000830184620011ef565b92915050565b60805160a0516150826200127b6000396000818161127c0152818161186c01526126f1015260008181610e4701528181612699015281816138cb015281816139ac015281816139d301528181613a6f0152613a9601526150826000f3fe60806040526004361061036f5760003560e01c80638da5cb5b116101c6578063c0246668116100f7578063e2f4560511610095578063f11a24d31161006f578063f11a24d314610cc5578063f2fde38b14610cf0578063f637434214610d19578063f8b45b0514610d4457610376565b8063e2f4560514610c46578063e7ad9fcd14610c71578063e884f26014610c9a57610376565b8063c8c8ebe4116100d1578063c8c8ebe414610b76578063d257b34f14610ba1578063d85ba06314610bde578063dd62ed3e14610c0957610376565b8063c024666814610af9578063c18bc19514610b22578063c876d0b914610b4b57610376565b80639fccce3211610164578063a457c2d71161013e578063a457c2d714610a17578063a9059cbb14610a54578063b62496f514610a91578063bbc0c74214610ace57610376565b80639fccce3214610996578063a0d82dc5146109c1578063a1dc92bc146109ec57610376565b8063924de9b7116101a0578063924de9b7146108ee57806395d89b41146109175780639a7a23d6146109425780639c3b4fdc1461096b57610376565b80638da5cb5b1461086d5780638ea5220f1461089857806392136913146108c357610376565b806344249f04116102a0578063715018a61161023e57806375f0a8741161021857806375f0a874146107d55780637b208769146108005780637bce5a041461082b5780638a8c523c1461085657610376565b8063715018a61461076a578063751039fc146107815780637571336a146107ac57610376565b80634fbee1931161027a5780634fbee1931461069a5780636a486a8e146106d75780636ddd17131461070257806370a082311461072d57610376565b806344249f041461061957806349bd5a5e146106445780634a62bb651461066f57610376565b80631f3fed8f1161030d57806327c8f835116102e757806327c8f8351461055d5780632e6ed7ef14610588578063313ce567146105b157806339509351146105dc57610376565b80631f3fed8f146104cc578063203e727e146104f757806323b872dd1461052057610376565b806310d5de531161034957806310d5de531461040e5780631694505e1461044b57806318160ddd146104765780631a8145bb146104a157610376565b806306fdde031461037b578063095ea7b3146103a65780630d7f1441146103e357610376565b3661037657005b600080fd5b34801561038757600080fd5b50610390610d6f565b60405161039d9190613bf5565b60405180910390f35b3480156103b257600080fd5b506103cd60048036038101906103c89190613cb0565b610e01565b6040516103da9190613d0b565b60405180910390f35b3480156103ef57600080fd5b506103f8610e1f565b6040516104059190613d35565b60405180910390f35b34801561041a57600080fd5b5061043560048036038101906104309190613d50565b610e25565b6040516104429190613d0b565b60405180910390f35b34801561045757600080fd5b50610460610e45565b60405161046d9190613ddc565b60405180910390f35b34801561048257600080fd5b5061048b610e69565b6040516104989190613d35565b60405180910390f35b3480156104ad57600080fd5b506104b6610e73565b6040516104c39190613d35565b60405180910390f35b3480156104d857600080fd5b506104e1610e79565b6040516104ee9190613d35565b60405180910390f35b34801561050357600080fd5b5061051e60048036038101906105199190613df7565b610e7f565b005b34801561052c57600080fd5b5061054760048036038101906105429190613e24565b610f8e565b6040516105549190613d0b565b60405180910390f35b34801561056957600080fd5b50610572611086565b60405161057f9190613e86565b60405180910390f35b34801561059457600080fd5b506105af60048036038101906105aa9190613ea1565b61108c565b005b3480156105bd57600080fd5b506105c66111bf565b6040516105d39190613f24565b60405180910390f35b3480156105e857600080fd5b5061060360048036038101906105fe9190613cb0565b6111c8565b6040516106109190613d0b565b60405180910390f35b34801561062557600080fd5b5061062e611274565b60405161063b9190613d35565b60405180910390f35b34801561065057600080fd5b5061065961127a565b6040516106669190613e86565b60405180910390f35b34801561067b57600080fd5b5061068461129e565b6040516106919190613d0b565b60405180910390f35b3480156106a657600080fd5b506106c160048036038101906106bc9190613d50565b6112b1565b6040516106ce9190613d0b565b60405180910390f35b3480156106e357600080fd5b506106ec611307565b6040516106f99190613d35565b60405180910390f35b34801561070e57600080fd5b5061071761130d565b6040516107249190613d0b565b60405180910390f35b34801561073957600080fd5b50610754600480360381019061074f9190613d50565b611320565b6040516107619190613d35565b60405180910390f35b34801561077657600080fd5b5061077f611368565b005b34801561078d57600080fd5b506107966113f0565b6040516107a39190613d0b565b60405180910390f35b3480156107b857600080fd5b506107d360048036038101906107ce9190613f6b565b611490565b005b3480156107e157600080fd5b506107ea611567565b6040516107f79190613e86565b60405180910390f35b34801561080c57600080fd5b5061081561158d565b6040516108229190613e86565b60405180910390f35b34801561083757600080fd5b506108406115b3565b60405161084d9190613d35565b60405180910390f35b34801561086257600080fd5b5061086b6115b9565b005b34801561087957600080fd5b5061088261166d565b60405161088f9190613e86565b60405180910390f35b3480156108a457600080fd5b506108ad611697565b6040516108ba9190613e86565b60405180910390f35b3480156108cf57600080fd5b506108d86116bd565b6040516108e59190613d35565b60405180910390f35b3480156108fa57600080fd5b5061091560048036038101906109109190613fab565b6116c3565b005b34801561092357600080fd5b5061092c61175c565b6040516109399190613bf5565b60405180910390f35b34801561094e57600080fd5b5061096960048036038101906109649190613f6b565b6117ee565b005b34801561097757600080fd5b50610980611906565b60405161098d9190613d35565b60405180910390f35b3480156109a257600080fd5b506109ab61190c565b6040516109b89190613d35565b60405180910390f35b3480156109cd57600080fd5b506109d6611912565b6040516109e39190613d35565b60405180910390f35b3480156109f857600080fd5b50610a01611918565b604051610a0e9190613d35565b60405180910390f35b348015610a2357600080fd5b50610a3e6004803603810190610a399190613cb0565b61191e565b604051610a4b9190613d0b565b60405180910390f35b348015610a6057600080fd5b50610a7b6004803603810190610a769190613cb0565b611a09565b604051610a889190613d0b565b60405180910390f35b348015610a9d57600080fd5b50610ab86004803603810190610ab39190613d50565b611a27565b604051610ac59190613d0b565b60405180910390f35b348015610ada57600080fd5b50610ae3611a47565b604051610af09190613d0b565b60405180910390f35b348015610b0557600080fd5b50610b206004803603810190610b1b9190613f6b565b611a5a565b005b348015610b2e57600080fd5b50610b496004803603810190610b449190613df7565b611b7f565b005b348015610b5757600080fd5b50610b60611c8e565b604051610b6d9190613d0b565b60405180910390f35b348015610b8257600080fd5b50610b8b611ca1565b604051610b989190613d35565b60405180910390f35b348015610bad57600080fd5b50610bc86004803603810190610bc39190613df7565b611ca7565b604051610bd59190613d0b565b60405180910390f35b348015610bea57600080fd5b50610bf3611dfc565b604051610c009190613d35565b60405180910390f35b348015610c1557600080fd5b50610c306004803603810190610c2b9190613fd8565b611e02565b604051610c3d9190613d35565b60405180910390f35b348015610c5257600080fd5b50610c5b611e89565b604051610c689190613d35565b60405180910390f35b348015610c7d57600080fd5b50610c986004803603810190610c939190613ea1565b611e8f565b005b348015610ca657600080fd5b50610caf611fc2565b604051610cbc9190613d0b565b60405180910390f35b348015610cd157600080fd5b50610cda612062565b604051610ce79190613d35565b60405180910390f35b348015610cfc57600080fd5b50610d176004803603810190610d129190613d50565b612068565b005b348015610d2557600080fd5b50610d2e61215f565b604051610d3b9190613d35565b60405180910390f35b348015610d5057600080fd5b50610d59612165565b604051610d669190613d35565b60405180910390f35b606060038054610d7e90614047565b80601f0160208091040260200160405190810160405280929190818152602001828054610daa90614047565b8015610df75780601f10610dcc57610100808354040283529160200191610df7565b820191906000526020600020905b815481529060010190602001808311610dda57829003601f168201915b5050505050905090565b6000610e15610e0e61216b565b8484612173565b6001905092915050565b60155481565b601e6020528060005260406000206000915054906101000a900460ff1681565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600254905090565b601b5481565b601a5481565b610e8761216b565b73ffffffffffffffffffffffffffffffffffffffff16610ea561166d565b73ffffffffffffffffffffffffffffffffffffffff1614610efb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ef2906140c4565b60405180910390fd5b670de0b6b3a76400006103e86005610f11610e69565b610f1b9190614113565b610f259190614184565b610f2f9190614184565b811015610f71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6890614227565b60405180910390fd5b670de0b6b3a764000081610f859190614113565b60098190555050565b6000610f9b84848461233c565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610fe661216b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611066576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105d906142b9565b60405180910390fd5b61107a8561107261216b565b858403612173565b60019150509392505050565b61dead81565b61109461216b565b73ffffffffffffffffffffffffffffffffffffffff166110b261166d565b73ffffffffffffffffffffffffffffffffffffffff1614611108576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ff906140c4565b60405180910390fd5b600a8183858761111891906142d9565b61112291906142d9565b61112c91906142d9565b111561116d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116490614359565b60405180910390fd5b8360108190555082601181905550816012819055508060138190555060135460125460115460105461119f91906142d9565b6111a991906142d9565b6111b391906142d9565b600f8190555050505050565b60006012905090565b600061126a6111d561216b565b8484600160006111e361216b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461126591906142d9565b612173565b6001905092915050565b60195481565b7f000000000000000000000000000000000000000000000000000000000000000081565b600c60009054906101000a900460ff1681565b6000601d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60145481565b600c60029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61137061216b565b73ffffffffffffffffffffffffffffffffffffffff1661138e61166d565b73ffffffffffffffffffffffffffffffffffffffff16146113e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113db906140c4565b60405180910390fd5b6113ee6000613039565b565b60006113fa61216b565b73ffffffffffffffffffffffffffffffffffffffff1661141861166d565b73ffffffffffffffffffffffffffffffffffffffff161461146e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611465906140c4565b60405180910390fd5b6000600c60006101000a81548160ff0219169083151502179055506001905090565b61149861216b565b73ffffffffffffffffffffffffffffffffffffffff166114b661166d565b73ffffffffffffffffffffffffffffffffffffffff161461150c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611503906140c4565b60405180910390fd5b80601e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60115481565b6115c161216b565b73ffffffffffffffffffffffffffffffffffffffff166115df61166d565b73ffffffffffffffffffffffffffffffffffffffff1614611635576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161162c906140c4565b60405180910390fd5b6001600c60016101000a81548160ff0219169083151502179055506001600c60026101000a81548160ff021916908315150217905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60165481565b6116cb61216b565b73ffffffffffffffffffffffffffffffffffffffff166116e961166d565b73ffffffffffffffffffffffffffffffffffffffff161461173f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611736906140c4565b60405180910390fd5b80600c60026101000a81548160ff02191690831515021790555050565b60606004805461176b90614047565b80601f016020809104026020016040519081016040528092919081815260200182805461179790614047565b80156117e45780601f106117b9576101008083540402835291602001916117e4565b820191906000526020600020905b8154815290600101906020018083116117c757829003601f168201915b5050505050905090565b6117f661216b565b73ffffffffffffffffffffffffffffffffffffffff1661181461166d565b73ffffffffffffffffffffffffffffffffffffffff161461186a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611861906140c4565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036118f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118ef906143eb565b60405180910390fd5b61190282826130ff565b5050565b60135481565b601c5481565b60185481565b60105481565b6000806001600061192d61216b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156119ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119e19061447d565b60405180910390fd5b6119fe6119f561216b565b85858403612173565b600191505092915050565b6000611a1d611a1661216b565b848461233c565b6001905092915050565b601f6020528060005260406000206000915054906101000a900460ff1681565b600c60019054906101000a900460ff1681565b611a6261216b565b73ffffffffffffffffffffffffffffffffffffffff16611a8061166d565b73ffffffffffffffffffffffffffffffffffffffff1614611ad6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611acd906140c4565b60405180910390fd5b80601d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051611b739190613d0b565b60405180910390a25050565b611b8761216b565b73ffffffffffffffffffffffffffffffffffffffff16611ba561166d565b73ffffffffffffffffffffffffffffffffffffffff1614611bfb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bf2906140c4565b60405180910390fd5b670de0b6b3a76400006103e86005611c11610e69565b611c1b9190614113565b611c259190614184565b611c2f9190614184565b811015611c71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c689061450f565b60405180910390fd5b670de0b6b3a764000081611c859190614113565b600b8190555050565b600e60009054906101000a900460ff1681565b60095481565b6000611cb161216b565b73ffffffffffffffffffffffffffffffffffffffff16611ccf61166d565b73ffffffffffffffffffffffffffffffffffffffff1614611d25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d1c906140c4565b60405180910390fd5b620186a06001611d33610e69565b611d3d9190614113565b611d479190614184565b821015611d89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d80906145a1565b60405180910390fd5b6103e86005611d96610e69565b611da09190614113565b611daa9190614184565b821115611dec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611de390614633565b60405180910390fd5b81600a8190555060019050919050565b600f5481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600a5481565b611e9761216b565b73ffffffffffffffffffffffffffffffffffffffff16611eb561166d565b73ffffffffffffffffffffffffffffffffffffffff1614611f0b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f02906140c4565b60405180910390fd5b600a81838587611f1b91906142d9565b611f2591906142d9565b611f2f91906142d9565b1115611f70576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f679061469f565b60405180910390fd5b83601581905550826016819055508160178190555080601881905550601854601754601654601554611fa291906142d9565b611fac91906142d9565b611fb691906142d9565b60148190555050505050565b6000611fcc61216b565b73ffffffffffffffffffffffffffffffffffffffff16611fea61166d565b73ffffffffffffffffffffffffffffffffffffffff1614612040576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612037906140c4565b60405180910390fd5b6000600e60006101000a81548160ff0219169083151502179055506001905090565b60125481565b61207061216b565b73ffffffffffffffffffffffffffffffffffffffff1661208e61166d565b73ffffffffffffffffffffffffffffffffffffffff16146120e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120db906140c4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603612153576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161214a90614731565b60405180910390fd5b61215c81613039565b50565b60175481565b600b5481565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036121e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121d9906147c3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612251576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161224890614855565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161232f9190613d35565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036123ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123a2906148e7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361241a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161241190614979565b60405180910390fd5b600081036124335761242e838360006131a0565b613034565b600c60009054906101000a900460ff1615612af65761245061166d565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156124be575061248e61166d565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156124f75750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612531575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561254a5750600560149054906101000a900460ff16155b15612af557600c60019054906101000a900460ff1661264457601d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806126045750601d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b612643576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161263a906149e5565b60405180910390fd5b5b600e60009054906101000a900460ff161561280c5761266161166d565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141580156126e857507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561274057507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b1561280b5743600d60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054106127c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127bd90614a9d565b60405180910390fd5b43600d60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156128af5750601e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612956576009548111156128f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128f090614b2f565b60405180910390fd5b600b5461290583611320565b8261291091906142d9565b1115612951576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161294890614b9b565b60405180910390fd5b612af4565b601f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156129f95750601e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612a4857600954811115612a43576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a3a90614c2d565b60405180910390fd5b612af3565b601e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16612af257600b54612aa583611320565b82612ab091906142d9565b1115612af1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ae890614b9b565b60405180910390fd5b5b5b5b5b5b6000612b0130611320565b90506000600a548210159050808015612b265750600c60029054906101000a900460ff165b8015612b3f5750600560149054906101000a900460ff16155b8015612b955750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612beb5750601d60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612c415750601d60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612c85576001600560146101000a81548160ff021916908315150217905550612c6961341f565b6000600560146101000a81548160ff0219169083151502179055505b6000600560149054906101000a900460ff16159050601d60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612d3b5750601d60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15612d4557600090505b6000811561302457601f60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612da857506000601454115b15612ea857612dd56064612dc7601454886137e090919063ffffffff16565b6137f690919063ffffffff16565b905060145460155482612de89190614113565b612df29190614184565b60196000828254612e0391906142d9565b9250508190555060145460175482612e1b9190614113565b612e259190614184565b601b6000828254612e3691906142d9565b9250508190555060145460185482612e4e9190614113565b612e589190614184565b601c6000828254612e6991906142d9565b9250508190555060145460165482612e819190614113565b612e8b9190614184565b601a6000828254612e9c91906142d9565b92505081905550613000565b601f60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612f0357506000600f54115b15612fff57612f306064612f22600f54886137e090919063ffffffff16565b6137f690919063ffffffff16565b9050600f5460105482612f439190614113565b612f4d9190614184565b60196000828254612f5e91906142d9565b92505081905550600f5460125482612f769190614113565b612f809190614184565b601b6000828254612f9191906142d9565b92505081905550600f5460135482612fa99190614113565b612fb39190614184565b601c6000828254612fc491906142d9565b92505081905550600f5460115482612fdc9190614113565b612fe69190614184565b601a6000828254612ff791906142d9565b925050819055505b5b6000811115613015576130148730836131a0565b5b80856130219190614c4d565b94505b61302f8787876131a0565b505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361320f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613206906148e7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361327e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161327590614979565b60405180910390fd5b61328983838361380c565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561330f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161330690614cf3565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546133a291906142d9565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516134069190613d35565b60405180910390a3613419848484613811565b50505050565b600061342a30611320565b90506000601c54601a54601b5460195461344491906142d9565b61344e91906142d9565b61345891906142d9565b905060008083148061346a5750600082145b15613477575050506137de565b6014600a546134869190614113565b83111561349f576014600a5461349c9190614113565b92505b6000600283601b54866134b29190614113565b6134bc9190614184565b6134c69190614184565b905060006134dd828661381690919063ffffffff16565b905060004790506134ed8261382c565b6000613502824761381690919063ffffffff16565b9050600061352d8761351f601954856137e090919063ffffffff16565b6137f690919063ffffffff16565b905060006135588861354a601a54866137e090919063ffffffff16565b6137f690919063ffffffff16565b9050600061358389613575601c54876137e090919063ffffffff16565b6137f690919063ffffffff16565b90506000818385876135959190614c4d565b61359f9190614c4d565b6135a99190614c4d565b90506000601b8190555060006019819055506000601a819055506000601c81905550600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168260405161361190614d44565b60006040518083038185875af1925050503d806000811461364e576040519150601f19603f3d011682016040523d82523d6000602084013e613653565b606091505b505080995050600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168360405161369f90614d44565b60006040518083038185875af1925050503d80600081146136dc576040519150601f19603f3d011682016040523d82523d6000602084013e6136e1565b606091505b5050809950506000881180156136f75750600081115b15613744576137068882613a69565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618782601b5460405161373b93929190614d59565b60405180910390a15b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff164760405161378a90614d44565b60006040518083038185875af1925050503d80600081146137c7576040519150601f19603f3d011682016040523d82523d6000602084013e6137cc565b606091505b50508099505050505050505050505050505b565b600081836137ee9190614113565b905092915050565b600081836138049190614184565b905092915050565b505050565b505050565b600081836138249190614c4d565b905092915050565b6000600267ffffffffffffffff81111561384957613848614d90565b5b6040519080825280602002602001820160405280156138775781602001602082028036833780820191505090505b509050308160008151811061388f5761388e614dbf565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015613934573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906139589190614e03565b8160018151811061396c5761396b614dbf565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250506139d1307f000000000000000000000000000000000000000000000000000000000000000084612173565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401613a33959493929190614f29565b600060405180830381600087803b158015613a4d57600080fd5b505af1158015613a61573d6000803e3d6000fd5b505050505050565b613a94307f000000000000000000000000000000000000000000000000000000000000000084612173565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f305d719823085600080600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518863ffffffff1660e01b8152600401613b1b96959493929190614f83565b60606040518083038185885af1158015613b39573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190613b5e9190614ff9565b5050505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613b9f578082015181840152602081019050613b84565b60008484015250505050565b6000601f19601f8301169050919050565b6000613bc782613b65565b613bd18185613b70565b9350613be1818560208601613b81565b613bea81613bab565b840191505092915050565b60006020820190508181036000830152613c0f8184613bbc565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613c4782613c1c565b9050919050565b613c5781613c3c565b8114613c6257600080fd5b50565b600081359050613c7481613c4e565b92915050565b6000819050919050565b613c8d81613c7a565b8114613c9857600080fd5b50565b600081359050613caa81613c84565b92915050565b60008060408385031215613cc757613cc6613c17565b5b6000613cd585828601613c65565b9250506020613ce685828601613c9b565b9150509250929050565b60008115159050919050565b613d0581613cf0565b82525050565b6000602082019050613d206000830184613cfc565b92915050565b613d2f81613c7a565b82525050565b6000602082019050613d4a6000830184613d26565b92915050565b600060208284031215613d6657613d65613c17565b5b6000613d7484828501613c65565b91505092915050565b6000819050919050565b6000613da2613d9d613d9884613c1c565b613d7d565b613c1c565b9050919050565b6000613db482613d87565b9050919050565b6000613dc682613da9565b9050919050565b613dd681613dbb565b82525050565b6000602082019050613df16000830184613dcd565b92915050565b600060208284031215613e0d57613e0c613c17565b5b6000613e1b84828501613c9b565b91505092915050565b600080600060608486031215613e3d57613e3c613c17565b5b6000613e4b86828701613c65565b9350506020613e5c86828701613c65565b9250506040613e6d86828701613c9b565b9150509250925092565b613e8081613c3c565b82525050565b6000602082019050613e9b6000830184613e77565b92915050565b60008060008060808587031215613ebb57613eba613c17565b5b6000613ec987828801613c9b565b9450506020613eda87828801613c9b565b9350506040613eeb87828801613c9b565b9250506060613efc87828801613c9b565b91505092959194509250565b600060ff82169050919050565b613f1e81613f08565b82525050565b6000602082019050613f396000830184613f15565b92915050565b613f4881613cf0565b8114613f5357600080fd5b50565b600081359050613f6581613f3f565b92915050565b60008060408385031215613f8257613f81613c17565b5b6000613f9085828601613c65565b9250506020613fa185828601613f56565b9150509250929050565b600060208284031215613fc157613fc0613c17565b5b6000613fcf84828501613f56565b91505092915050565b60008060408385031215613fef57613fee613c17565b5b6000613ffd85828601613c65565b925050602061400e85828601613c65565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061405f57607f821691505b60208210810361407257614071614018565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006140ae602083613b70565b91506140b982614078565b602082019050919050565b600060208201905081810360008301526140dd816140a1565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061411e82613c7a565b915061412983613c7a565b925082820261413781613c7a565b9150828204841483151761414e5761414d6140e4565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061418f82613c7a565b915061419a83613c7a565b9250826141aa576141a9614155565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20302e35250000000000000000000000000000000000602082015250565b6000614211602f83613b70565b915061421c826141b5565b604082019050919050565b6000602082019050818103600083015261424081614204565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b60006142a3602883613b70565b91506142ae82614247565b604082019050919050565b600060208201905081810360008301526142d281614296565b9050919050565b60006142e482613c7a565b91506142ef83613c7a565b9250828201905080821115614307576143066140e4565b5b92915050565b7f4d61782042757946656520313025000000000000000000000000000000000000600082015250565b6000614343600e83613b70565b915061434e8261430d565b602082019050919050565b6000602082019050818103600083015261437281614336565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b60006143d5603983613b70565b91506143e082614379565b604082019050919050565b60006020820190508181036000830152614404816143c8565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000614467602583613b70565b91506144728261440b565b604082019050919050565b600060208201905081810360008301526144968161445a565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b60006144f9602483613b70565b91506145048261449d565b604082019050919050565b60006020820190508181036000830152614528816144ec565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b600061458b603583613b70565b91506145968261452f565b604082019050919050565b600060208201905081810360008301526145ba8161457e565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b600061461d603483613b70565b9150614628826145c1565b604082019050919050565b6000602082019050818103600083015261464c81614610565b9050919050565b7f4d61782053656c6c466565203130250000000000000000000000000000000000600082015250565b6000614689600f83613b70565b915061469482614653565b602082019050919050565b600060208201905081810360008301526146b88161467c565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061471b602683613b70565b9150614726826146bf565b604082019050919050565b6000602082019050818103600083015261474a8161470e565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006147ad602483613b70565b91506147b882614751565b604082019050919050565b600060208201905081810360008301526147dc816147a0565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061483f602283613b70565b915061484a826147e3565b604082019050919050565b6000602082019050818103600083015261486e81614832565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006148d1602583613b70565b91506148dc82614875565b604082019050919050565b60006020820190508181036000830152614900816148c4565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000614963602383613b70565b915061496e82614907565b604082019050919050565b6000602082019050818103600083015261499281614956565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b60006149cf601683613b70565b91506149da82614999565b602082019050919050565b600060208201905081810360008301526149fe816149c2565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60208201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000604082015250565b6000614a87604983613b70565b9150614a9282614a05565b606082019050919050565b60006020820190508181036000830152614ab681614a7a565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b6000614b19603583613b70565b9150614b2482614abd565b604082019050919050565b60006020820190508181036000830152614b4881614b0c565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b6000614b85601383613b70565b9150614b9082614b4f565b602082019050919050565b60006020820190508181036000830152614bb481614b78565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b6000614c17603683613b70565b9150614c2282614bbb565b604082019050919050565b60006020820190508181036000830152614c4681614c0a565b9050919050565b6000614c5882613c7a565b9150614c6383613c7a565b9250828203905081811115614c7b57614c7a6140e4565b5b92915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000614cdd602683613b70565b9150614ce882614c81565b604082019050919050565b60006020820190508181036000830152614d0c81614cd0565b9050919050565b600081905092915050565b50565b6000614d2e600083614d13565b9150614d3982614d1e565b600082019050919050565b6000614d4f82614d21565b9150819050919050565b6000606082019050614d6e6000830186613d26565b614d7b6020830185613d26565b614d886040830184613d26565b949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050614dfd81613c4e565b92915050565b600060208284031215614e1957614e18613c17565b5b6000614e2784828501614dee565b91505092915050565b6000819050919050565b6000614e55614e50614e4b84614e30565b613d7d565b613c7a565b9050919050565b614e6581614e3a565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b614ea081613c3c565b82525050565b6000614eb28383614e97565b60208301905092915050565b6000602082019050919050565b6000614ed682614e6b565b614ee08185614e76565b9350614eeb83614e87565b8060005b83811015614f1c578151614f038882614ea6565b9750614f0e83614ebe565b925050600181019050614eef565b5085935050505092915050565b600060a082019050614f3e6000830188613d26565b614f4b6020830187614e5c565b8181036040830152614f5d8186614ecb565b9050614f6c6060830185613e77565b614f796080830184613d26565b9695505050505050565b600060c082019050614f986000830189613e77565b614fa56020830188613d26565b614fb26040830187614e5c565b614fbf6060830186614e5c565b614fcc6080830185613e77565b614fd960a0830184613d26565b979650505050505050565b600081519050614ff381613c84565b92915050565b60008060006060848603121561501257615011613c17565b5b600061502086828701614fe4565b935050602061503186828701614fe4565b925050604061504286828701614fe4565b915050925092509256fea2646970667358221220d243bab3ac3c27f3c73c850fb2e0a2425e86baa2110924fc79f1c8cf973afe7064736f6c63430008110033
Deployed Bytecode
0x60806040526004361061036f5760003560e01c80638da5cb5b116101c6578063c0246668116100f7578063e2f4560511610095578063f11a24d31161006f578063f11a24d314610cc5578063f2fde38b14610cf0578063f637434214610d19578063f8b45b0514610d4457610376565b8063e2f4560514610c46578063e7ad9fcd14610c71578063e884f26014610c9a57610376565b8063c8c8ebe4116100d1578063c8c8ebe414610b76578063d257b34f14610ba1578063d85ba06314610bde578063dd62ed3e14610c0957610376565b8063c024666814610af9578063c18bc19514610b22578063c876d0b914610b4b57610376565b80639fccce3211610164578063a457c2d71161013e578063a457c2d714610a17578063a9059cbb14610a54578063b62496f514610a91578063bbc0c74214610ace57610376565b80639fccce3214610996578063a0d82dc5146109c1578063a1dc92bc146109ec57610376565b8063924de9b7116101a0578063924de9b7146108ee57806395d89b41146109175780639a7a23d6146109425780639c3b4fdc1461096b57610376565b80638da5cb5b1461086d5780638ea5220f1461089857806392136913146108c357610376565b806344249f04116102a0578063715018a61161023e57806375f0a8741161021857806375f0a874146107d55780637b208769146108005780637bce5a041461082b5780638a8c523c1461085657610376565b8063715018a61461076a578063751039fc146107815780637571336a146107ac57610376565b80634fbee1931161027a5780634fbee1931461069a5780636a486a8e146106d75780636ddd17131461070257806370a082311461072d57610376565b806344249f041461061957806349bd5a5e146106445780634a62bb651461066f57610376565b80631f3fed8f1161030d57806327c8f835116102e757806327c8f8351461055d5780632e6ed7ef14610588578063313ce567146105b157806339509351146105dc57610376565b80631f3fed8f146104cc578063203e727e146104f757806323b872dd1461052057610376565b806310d5de531161034957806310d5de531461040e5780631694505e1461044b57806318160ddd146104765780631a8145bb146104a157610376565b806306fdde031461037b578063095ea7b3146103a65780630d7f1441146103e357610376565b3661037657005b600080fd5b34801561038757600080fd5b50610390610d6f565b60405161039d9190613bf5565b60405180910390f35b3480156103b257600080fd5b506103cd60048036038101906103c89190613cb0565b610e01565b6040516103da9190613d0b565b60405180910390f35b3480156103ef57600080fd5b506103f8610e1f565b6040516104059190613d35565b60405180910390f35b34801561041a57600080fd5b5061043560048036038101906104309190613d50565b610e25565b6040516104429190613d0b565b60405180910390f35b34801561045757600080fd5b50610460610e45565b60405161046d9190613ddc565b60405180910390f35b34801561048257600080fd5b5061048b610e69565b6040516104989190613d35565b60405180910390f35b3480156104ad57600080fd5b506104b6610e73565b6040516104c39190613d35565b60405180910390f35b3480156104d857600080fd5b506104e1610e79565b6040516104ee9190613d35565b60405180910390f35b34801561050357600080fd5b5061051e60048036038101906105199190613df7565b610e7f565b005b34801561052c57600080fd5b5061054760048036038101906105429190613e24565b610f8e565b6040516105549190613d0b565b60405180910390f35b34801561056957600080fd5b50610572611086565b60405161057f9190613e86565b60405180910390f35b34801561059457600080fd5b506105af60048036038101906105aa9190613ea1565b61108c565b005b3480156105bd57600080fd5b506105c66111bf565b6040516105d39190613f24565b60405180910390f35b3480156105e857600080fd5b5061060360048036038101906105fe9190613cb0565b6111c8565b6040516106109190613d0b565b60405180910390f35b34801561062557600080fd5b5061062e611274565b60405161063b9190613d35565b60405180910390f35b34801561065057600080fd5b5061065961127a565b6040516106669190613e86565b60405180910390f35b34801561067b57600080fd5b5061068461129e565b6040516106919190613d0b565b60405180910390f35b3480156106a657600080fd5b506106c160048036038101906106bc9190613d50565b6112b1565b6040516106ce9190613d0b565b60405180910390f35b3480156106e357600080fd5b506106ec611307565b6040516106f99190613d35565b60405180910390f35b34801561070e57600080fd5b5061071761130d565b6040516107249190613d0b565b60405180910390f35b34801561073957600080fd5b50610754600480360381019061074f9190613d50565b611320565b6040516107619190613d35565b60405180910390f35b34801561077657600080fd5b5061077f611368565b005b34801561078d57600080fd5b506107966113f0565b6040516107a39190613d0b565b60405180910390f35b3480156107b857600080fd5b506107d360048036038101906107ce9190613f6b565b611490565b005b3480156107e157600080fd5b506107ea611567565b6040516107f79190613e86565b60405180910390f35b34801561080c57600080fd5b5061081561158d565b6040516108229190613e86565b60405180910390f35b34801561083757600080fd5b506108406115b3565b60405161084d9190613d35565b60405180910390f35b34801561086257600080fd5b5061086b6115b9565b005b34801561087957600080fd5b5061088261166d565b60405161088f9190613e86565b60405180910390f35b3480156108a457600080fd5b506108ad611697565b6040516108ba9190613e86565b60405180910390f35b3480156108cf57600080fd5b506108d86116bd565b6040516108e59190613d35565b60405180910390f35b3480156108fa57600080fd5b5061091560048036038101906109109190613fab565b6116c3565b005b34801561092357600080fd5b5061092c61175c565b6040516109399190613bf5565b60405180910390f35b34801561094e57600080fd5b5061096960048036038101906109649190613f6b565b6117ee565b005b34801561097757600080fd5b50610980611906565b60405161098d9190613d35565b60405180910390f35b3480156109a257600080fd5b506109ab61190c565b6040516109b89190613d35565b60405180910390f35b3480156109cd57600080fd5b506109d6611912565b6040516109e39190613d35565b60405180910390f35b3480156109f857600080fd5b50610a01611918565b604051610a0e9190613d35565b60405180910390f35b348015610a2357600080fd5b50610a3e6004803603810190610a399190613cb0565b61191e565b604051610a4b9190613d0b565b60405180910390f35b348015610a6057600080fd5b50610a7b6004803603810190610a769190613cb0565b611a09565b604051610a889190613d0b565b60405180910390f35b348015610a9d57600080fd5b50610ab86004803603810190610ab39190613d50565b611a27565b604051610ac59190613d0b565b60405180910390f35b348015610ada57600080fd5b50610ae3611a47565b604051610af09190613d0b565b60405180910390f35b348015610b0557600080fd5b50610b206004803603810190610b1b9190613f6b565b611a5a565b005b348015610b2e57600080fd5b50610b496004803603810190610b449190613df7565b611b7f565b005b348015610b5757600080fd5b50610b60611c8e565b604051610b6d9190613d0b565b60405180910390f35b348015610b8257600080fd5b50610b8b611ca1565b604051610b989190613d35565b60405180910390f35b348015610bad57600080fd5b50610bc86004803603810190610bc39190613df7565b611ca7565b604051610bd59190613d0b565b60405180910390f35b348015610bea57600080fd5b50610bf3611dfc565b604051610c009190613d35565b60405180910390f35b348015610c1557600080fd5b50610c306004803603810190610c2b9190613fd8565b611e02565b604051610c3d9190613d35565b60405180910390f35b348015610c5257600080fd5b50610c5b611e89565b604051610c689190613d35565b60405180910390f35b348015610c7d57600080fd5b50610c986004803603810190610c939190613ea1565b611e8f565b005b348015610ca657600080fd5b50610caf611fc2565b604051610cbc9190613d0b565b60405180910390f35b348015610cd157600080fd5b50610cda612062565b604051610ce79190613d35565b60405180910390f35b348015610cfc57600080fd5b50610d176004803603810190610d129190613d50565b612068565b005b348015610d2557600080fd5b50610d2e61215f565b604051610d3b9190613d35565b60405180910390f35b348015610d5057600080fd5b50610d59612165565b604051610d669190613d35565b60405180910390f35b606060038054610d7e90614047565b80601f0160208091040260200160405190810160405280929190818152602001828054610daa90614047565b8015610df75780601f10610dcc57610100808354040283529160200191610df7565b820191906000526020600020905b815481529060010190602001808311610dda57829003601f168201915b5050505050905090565b6000610e15610e0e61216b565b8484612173565b6001905092915050565b60155481565b601e6020528060005260406000206000915054906101000a900460ff1681565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6000600254905090565b601b5481565b601a5481565b610e8761216b565b73ffffffffffffffffffffffffffffffffffffffff16610ea561166d565b73ffffffffffffffffffffffffffffffffffffffff1614610efb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ef2906140c4565b60405180910390fd5b670de0b6b3a76400006103e86005610f11610e69565b610f1b9190614113565b610f259190614184565b610f2f9190614184565b811015610f71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6890614227565b60405180910390fd5b670de0b6b3a764000081610f859190614113565b60098190555050565b6000610f9b84848461233c565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610fe661216b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611066576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105d906142b9565b60405180910390fd5b61107a8561107261216b565b858403612173565b60019150509392505050565b61dead81565b61109461216b565b73ffffffffffffffffffffffffffffffffffffffff166110b261166d565b73ffffffffffffffffffffffffffffffffffffffff1614611108576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ff906140c4565b60405180910390fd5b600a8183858761111891906142d9565b61112291906142d9565b61112c91906142d9565b111561116d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116490614359565b60405180910390fd5b8360108190555082601181905550816012819055508060138190555060135460125460115460105461119f91906142d9565b6111a991906142d9565b6111b391906142d9565b600f8190555050505050565b60006012905090565b600061126a6111d561216b565b8484600160006111e361216b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461126591906142d9565b612173565b6001905092915050565b60195481565b7f000000000000000000000000c7123e99a258a400ae82180a6b01e9a035e6f4f881565b600c60009054906101000a900460ff1681565b6000601d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60145481565b600c60029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61137061216b565b73ffffffffffffffffffffffffffffffffffffffff1661138e61166d565b73ffffffffffffffffffffffffffffffffffffffff16146113e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113db906140c4565b60405180910390fd5b6113ee6000613039565b565b60006113fa61216b565b73ffffffffffffffffffffffffffffffffffffffff1661141861166d565b73ffffffffffffffffffffffffffffffffffffffff161461146e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611465906140c4565b60405180910390fd5b6000600c60006101000a81548160ff0219169083151502179055506001905090565b61149861216b565b73ffffffffffffffffffffffffffffffffffffffff166114b661166d565b73ffffffffffffffffffffffffffffffffffffffff161461150c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611503906140c4565b60405180910390fd5b80601e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60115481565b6115c161216b565b73ffffffffffffffffffffffffffffffffffffffff166115df61166d565b73ffffffffffffffffffffffffffffffffffffffff1614611635576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161162c906140c4565b60405180910390fd5b6001600c60016101000a81548160ff0219169083151502179055506001600c60026101000a81548160ff021916908315150217905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60165481565b6116cb61216b565b73ffffffffffffffffffffffffffffffffffffffff166116e961166d565b73ffffffffffffffffffffffffffffffffffffffff161461173f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611736906140c4565b60405180910390fd5b80600c60026101000a81548160ff02191690831515021790555050565b60606004805461176b90614047565b80601f016020809104026020016040519081016040528092919081815260200182805461179790614047565b80156117e45780601f106117b9576101008083540402835291602001916117e4565b820191906000526020600020905b8154815290600101906020018083116117c757829003601f168201915b5050505050905090565b6117f661216b565b73ffffffffffffffffffffffffffffffffffffffff1661181461166d565b73ffffffffffffffffffffffffffffffffffffffff161461186a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611861906140c4565b60405180910390fd5b7f000000000000000000000000c7123e99a258a400ae82180a6b01e9a035e6f4f873ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036118f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118ef906143eb565b60405180910390fd5b61190282826130ff565b5050565b60135481565b601c5481565b60185481565b60105481565b6000806001600061192d61216b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156119ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119e19061447d565b60405180910390fd5b6119fe6119f561216b565b85858403612173565b600191505092915050565b6000611a1d611a1661216b565b848461233c565b6001905092915050565b601f6020528060005260406000206000915054906101000a900460ff1681565b600c60019054906101000a900460ff1681565b611a6261216b565b73ffffffffffffffffffffffffffffffffffffffff16611a8061166d565b73ffffffffffffffffffffffffffffffffffffffff1614611ad6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611acd906140c4565b60405180910390fd5b80601d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051611b739190613d0b565b60405180910390a25050565b611b8761216b565b73ffffffffffffffffffffffffffffffffffffffff16611ba561166d565b73ffffffffffffffffffffffffffffffffffffffff1614611bfb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bf2906140c4565b60405180910390fd5b670de0b6b3a76400006103e86005611c11610e69565b611c1b9190614113565b611c259190614184565b611c2f9190614184565b811015611c71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c689061450f565b60405180910390fd5b670de0b6b3a764000081611c859190614113565b600b8190555050565b600e60009054906101000a900460ff1681565b60095481565b6000611cb161216b565b73ffffffffffffffffffffffffffffffffffffffff16611ccf61166d565b73ffffffffffffffffffffffffffffffffffffffff1614611d25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d1c906140c4565b60405180910390fd5b620186a06001611d33610e69565b611d3d9190614113565b611d479190614184565b821015611d89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d80906145a1565b60405180910390fd5b6103e86005611d96610e69565b611da09190614113565b611daa9190614184565b821115611dec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611de390614633565b60405180910390fd5b81600a8190555060019050919050565b600f5481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600a5481565b611e9761216b565b73ffffffffffffffffffffffffffffffffffffffff16611eb561166d565b73ffffffffffffffffffffffffffffffffffffffff1614611f0b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f02906140c4565b60405180910390fd5b600a81838587611f1b91906142d9565b611f2591906142d9565b611f2f91906142d9565b1115611f70576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f679061469f565b60405180910390fd5b83601581905550826016819055508160178190555080601881905550601854601754601654601554611fa291906142d9565b611fac91906142d9565b611fb691906142d9565b60148190555050505050565b6000611fcc61216b565b73ffffffffffffffffffffffffffffffffffffffff16611fea61166d565b73ffffffffffffffffffffffffffffffffffffffff1614612040576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612037906140c4565b60405180910390fd5b6000600e60006101000a81548160ff0219169083151502179055506001905090565b60125481565b61207061216b565b73ffffffffffffffffffffffffffffffffffffffff1661208e61166d565b73ffffffffffffffffffffffffffffffffffffffff16146120e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120db906140c4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603612153576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161214a90614731565b60405180910390fd5b61215c81613039565b50565b60175481565b600b5481565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036121e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121d9906147c3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612251576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161224890614855565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161232f9190613d35565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036123ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123a2906148e7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361241a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161241190614979565b60405180910390fd5b600081036124335761242e838360006131a0565b613034565b600c60009054906101000a900460ff1615612af65761245061166d565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156124be575061248e61166d565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156124f75750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612531575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561254a5750600560149054906101000a900460ff16155b15612af557600c60019054906101000a900460ff1661264457601d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806126045750601d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b612643576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161263a906149e5565b60405180910390fd5b5b600e60009054906101000a900460ff161561280c5761266161166d565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141580156126e857507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561274057507f000000000000000000000000c7123e99a258a400ae82180a6b01e9a035e6f4f873ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b1561280b5743600d60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054106127c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127bd90614a9d565b60405180910390fd5b43600d60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156128af5750601e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612956576009548111156128f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128f090614b2f565b60405180910390fd5b600b5461290583611320565b8261291091906142d9565b1115612951576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161294890614b9b565b60405180910390fd5b612af4565b601f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156129f95750601e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612a4857600954811115612a43576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a3a90614c2d565b60405180910390fd5b612af3565b601e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16612af257600b54612aa583611320565b82612ab091906142d9565b1115612af1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ae890614b9b565b60405180910390fd5b5b5b5b5b5b6000612b0130611320565b90506000600a548210159050808015612b265750600c60029054906101000a900460ff165b8015612b3f5750600560149054906101000a900460ff16155b8015612b955750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612beb5750601d60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612c415750601d60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612c85576001600560146101000a81548160ff021916908315150217905550612c6961341f565b6000600560146101000a81548160ff0219169083151502179055505b6000600560149054906101000a900460ff16159050601d60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612d3b5750601d60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15612d4557600090505b6000811561302457601f60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612da857506000601454115b15612ea857612dd56064612dc7601454886137e090919063ffffffff16565b6137f690919063ffffffff16565b905060145460155482612de89190614113565b612df29190614184565b60196000828254612e0391906142d9565b9250508190555060145460175482612e1b9190614113565b612e259190614184565b601b6000828254612e3691906142d9565b9250508190555060145460185482612e4e9190614113565b612e589190614184565b601c6000828254612e6991906142d9565b9250508190555060145460165482612e819190614113565b612e8b9190614184565b601a6000828254612e9c91906142d9565b92505081905550613000565b601f60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612f0357506000600f54115b15612fff57612f306064612f22600f54886137e090919063ffffffff16565b6137f690919063ffffffff16565b9050600f5460105482612f439190614113565b612f4d9190614184565b60196000828254612f5e91906142d9565b92505081905550600f5460125482612f769190614113565b612f809190614184565b601b6000828254612f9191906142d9565b92505081905550600f5460135482612fa99190614113565b612fb39190614184565b601c6000828254612fc491906142d9565b92505081905550600f5460115482612fdc9190614113565b612fe69190614184565b601a6000828254612ff791906142d9565b925050819055505b5b6000811115613015576130148730836131a0565b5b80856130219190614c4d565b94505b61302f8787876131a0565b505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361320f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613206906148e7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361327e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161327590614979565b60405180910390fd5b61328983838361380c565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561330f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161330690614cf3565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546133a291906142d9565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516134069190613d35565b60405180910390a3613419848484613811565b50505050565b600061342a30611320565b90506000601c54601a54601b5460195461344491906142d9565b61344e91906142d9565b61345891906142d9565b905060008083148061346a5750600082145b15613477575050506137de565b6014600a546134869190614113565b83111561349f576014600a5461349c9190614113565b92505b6000600283601b54866134b29190614113565b6134bc9190614184565b6134c69190614184565b905060006134dd828661381690919063ffffffff16565b905060004790506134ed8261382c565b6000613502824761381690919063ffffffff16565b9050600061352d8761351f601954856137e090919063ffffffff16565b6137f690919063ffffffff16565b905060006135588861354a601a54866137e090919063ffffffff16565b6137f690919063ffffffff16565b9050600061358389613575601c54876137e090919063ffffffff16565b6137f690919063ffffffff16565b90506000818385876135959190614c4d565b61359f9190614c4d565b6135a99190614c4d565b90506000601b8190555060006019819055506000601a819055506000601c81905550600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168260405161361190614d44565b60006040518083038185875af1925050503d806000811461364e576040519150601f19603f3d011682016040523d82523d6000602084013e613653565b606091505b505080995050600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168360405161369f90614d44565b60006040518083038185875af1925050503d80600081146136dc576040519150601f19603f3d011682016040523d82523d6000602084013e6136e1565b606091505b5050809950506000881180156136f75750600081115b15613744576137068882613a69565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618782601b5460405161373b93929190614d59565b60405180910390a15b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff164760405161378a90614d44565b60006040518083038185875af1925050503d80600081146137c7576040519150601f19603f3d011682016040523d82523d6000602084013e6137cc565b606091505b50508099505050505050505050505050505b565b600081836137ee9190614113565b905092915050565b600081836138049190614184565b905092915050565b505050565b505050565b600081836138249190614c4d565b905092915050565b6000600267ffffffffffffffff81111561384957613848614d90565b5b6040519080825280602002602001820160405280156138775781602001602082028036833780820191505090505b509050308160008151811061388f5761388e614dbf565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015613934573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906139589190614e03565b8160018151811061396c5761396b614dbf565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250506139d1307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84612173565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401613a33959493929190614f29565b600060405180830381600087803b158015613a4d57600080fd5b505af1158015613a61573d6000803e3d6000fd5b505050505050565b613a94307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84612173565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d719823085600080600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518863ffffffff1660e01b8152600401613b1b96959493929190614f83565b60606040518083038185885af1158015613b39573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190613b5e9190614ff9565b5050505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613b9f578082015181840152602081019050613b84565b60008484015250505050565b6000601f19601f8301169050919050565b6000613bc782613b65565b613bd18185613b70565b9350613be1818560208601613b81565b613bea81613bab565b840191505092915050565b60006020820190508181036000830152613c0f8184613bbc565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613c4782613c1c565b9050919050565b613c5781613c3c565b8114613c6257600080fd5b50565b600081359050613c7481613c4e565b92915050565b6000819050919050565b613c8d81613c7a565b8114613c9857600080fd5b50565b600081359050613caa81613c84565b92915050565b60008060408385031215613cc757613cc6613c17565b5b6000613cd585828601613c65565b9250506020613ce685828601613c9b565b9150509250929050565b60008115159050919050565b613d0581613cf0565b82525050565b6000602082019050613d206000830184613cfc565b92915050565b613d2f81613c7a565b82525050565b6000602082019050613d4a6000830184613d26565b92915050565b600060208284031215613d6657613d65613c17565b5b6000613d7484828501613c65565b91505092915050565b6000819050919050565b6000613da2613d9d613d9884613c1c565b613d7d565b613c1c565b9050919050565b6000613db482613d87565b9050919050565b6000613dc682613da9565b9050919050565b613dd681613dbb565b82525050565b6000602082019050613df16000830184613dcd565b92915050565b600060208284031215613e0d57613e0c613c17565b5b6000613e1b84828501613c9b565b91505092915050565b600080600060608486031215613e3d57613e3c613c17565b5b6000613e4b86828701613c65565b9350506020613e5c86828701613c65565b9250506040613e6d86828701613c9b565b9150509250925092565b613e8081613c3c565b82525050565b6000602082019050613e9b6000830184613e77565b92915050565b60008060008060808587031215613ebb57613eba613c17565b5b6000613ec987828801613c9b565b9450506020613eda87828801613c9b565b9350506040613eeb87828801613c9b565b9250506060613efc87828801613c9b565b91505092959194509250565b600060ff82169050919050565b613f1e81613f08565b82525050565b6000602082019050613f396000830184613f15565b92915050565b613f4881613cf0565b8114613f5357600080fd5b50565b600081359050613f6581613f3f565b92915050565b60008060408385031215613f8257613f81613c17565b5b6000613f9085828601613c65565b9250506020613fa185828601613f56565b9150509250929050565b600060208284031215613fc157613fc0613c17565b5b6000613fcf84828501613f56565b91505092915050565b60008060408385031215613fef57613fee613c17565b5b6000613ffd85828601613c65565b925050602061400e85828601613c65565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061405f57607f821691505b60208210810361407257614071614018565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006140ae602083613b70565b91506140b982614078565b602082019050919050565b600060208201905081810360008301526140dd816140a1565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061411e82613c7a565b915061412983613c7a565b925082820261413781613c7a565b9150828204841483151761414e5761414d6140e4565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061418f82613c7a565b915061419a83613c7a565b9250826141aa576141a9614155565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20302e35250000000000000000000000000000000000602082015250565b6000614211602f83613b70565b915061421c826141b5565b604082019050919050565b6000602082019050818103600083015261424081614204565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b60006142a3602883613b70565b91506142ae82614247565b604082019050919050565b600060208201905081810360008301526142d281614296565b9050919050565b60006142e482613c7a565b91506142ef83613c7a565b9250828201905080821115614307576143066140e4565b5b92915050565b7f4d61782042757946656520313025000000000000000000000000000000000000600082015250565b6000614343600e83613b70565b915061434e8261430d565b602082019050919050565b6000602082019050818103600083015261437281614336565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b60006143d5603983613b70565b91506143e082614379565b604082019050919050565b60006020820190508181036000830152614404816143c8565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000614467602583613b70565b91506144728261440b565b604082019050919050565b600060208201905081810360008301526144968161445a565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b60006144f9602483613b70565b91506145048261449d565b604082019050919050565b60006020820190508181036000830152614528816144ec565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b600061458b603583613b70565b91506145968261452f565b604082019050919050565b600060208201905081810360008301526145ba8161457e565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b600061461d603483613b70565b9150614628826145c1565b604082019050919050565b6000602082019050818103600083015261464c81614610565b9050919050565b7f4d61782053656c6c466565203130250000000000000000000000000000000000600082015250565b6000614689600f83613b70565b915061469482614653565b602082019050919050565b600060208201905081810360008301526146b88161467c565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061471b602683613b70565b9150614726826146bf565b604082019050919050565b6000602082019050818103600083015261474a8161470e565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006147ad602483613b70565b91506147b882614751565b604082019050919050565b600060208201905081810360008301526147dc816147a0565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061483f602283613b70565b915061484a826147e3565b604082019050919050565b6000602082019050818103600083015261486e81614832565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006148d1602583613b70565b91506148dc82614875565b604082019050919050565b60006020820190508181036000830152614900816148c4565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000614963602383613b70565b915061496e82614907565b604082019050919050565b6000602082019050818103600083015261499281614956565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b60006149cf601683613b70565b91506149da82614999565b602082019050919050565b600060208201905081810360008301526149fe816149c2565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60208201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000604082015250565b6000614a87604983613b70565b9150614a9282614a05565b606082019050919050565b60006020820190508181036000830152614ab681614a7a565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b6000614b19603583613b70565b9150614b2482614abd565b604082019050919050565b60006020820190508181036000830152614b4881614b0c565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b6000614b85601383613b70565b9150614b9082614b4f565b602082019050919050565b60006020820190508181036000830152614bb481614b78565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b6000614c17603683613b70565b9150614c2282614bbb565b604082019050919050565b60006020820190508181036000830152614c4681614c0a565b9050919050565b6000614c5882613c7a565b9150614c6383613c7a565b9250828203905081811115614c7b57614c7a6140e4565b5b92915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000614cdd602683613b70565b9150614ce882614c81565b604082019050919050565b60006020820190508181036000830152614d0c81614cd0565b9050919050565b600081905092915050565b50565b6000614d2e600083614d13565b9150614d3982614d1e565b600082019050919050565b6000614d4f82614d21565b9150819050919050565b6000606082019050614d6e6000830186613d26565b614d7b6020830185613d26565b614d886040830184613d26565b949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050614dfd81613c4e565b92915050565b600060208284031215614e1957614e18613c17565b5b6000614e2784828501614dee565b91505092915050565b6000819050919050565b6000614e55614e50614e4b84614e30565b613d7d565b613c7a565b9050919050565b614e6581614e3a565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b614ea081613c3c565b82525050565b6000614eb28383614e97565b60208301905092915050565b6000602082019050919050565b6000614ed682614e6b565b614ee08185614e76565b9350614eeb83614e87565b8060005b83811015614f1c578151614f038882614ea6565b9750614f0e83614ebe565b925050600181019050614eef565b5085935050505092915050565b600060a082019050614f3e6000830188613d26565b614f4b6020830187614e5c565b8181036040830152614f5d8186614ecb565b9050614f6c6060830185613e77565b614f796080830184613d26565b9695505050505050565b600060c082019050614f986000830189613e77565b614fa56020830188613d26565b614fb26040830187614e5c565b614fbf6060830186614e5c565b614fcc6080830185613e77565b614fd960a0830184613d26565b979650505050505050565b600081519050614ff381613c84565b92915050565b60008060006060848603121561501257615011613c17565b5b600061502086828701614fe4565b935050602061503186828701614fe4565b925050604061504286828701614fe4565b915050925092509256fea2646970667358221220d243bab3ac3c27f3c73c850fb2e0a2425e86baa2110924fc79f1c8cf973afe7064736f6c63430008110033
Deployed Bytecode Sourcemap
32635:16504:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9562:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11729:169;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33675:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34112:63;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32714:51;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10682:108;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33896:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33856;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38504:275;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;12380:492;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32817:53;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39423:498;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10524:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13281:215;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33818:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32772:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33126:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41143:126;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33643:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33205:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10853:127;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2797:103;;;;;;;;;;;;;:::i;:::-;;37612:121;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39052:167;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32941:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32906:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33536:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37448:112;;;;;;;;;;;;;:::i;:::-;;2146:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32978:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33711:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39315:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9781:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40635:304;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33610:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33936:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33787:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33501:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13999:413;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11193:175;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34333:57;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33166:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40445:182;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38787:256;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33422:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33011:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37999:497;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33470:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11431:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33053:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39929:508;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37794:135;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33573:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3055:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33749:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33093:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9562:100;9616:13;9649:5;9642:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9562:100;:::o;11729:169::-;11812:4;11829:39;11838:12;:10;:12::i;:::-;11852:7;11861:6;11829:8;:39::i;:::-;11886:4;11879:11;;11729:169;;;;:::o;33675:29::-;;;;:::o;34112:63::-;;;;;;;;;;;;;;;;;;;;;;:::o;32714:51::-;;;:::o;10682:108::-;10743:7;10770:12;;10763:19;;10682:108;:::o;33896:33::-;;;;:::o;33856:::-;;;;:::o;38504:275::-;2377:12;:10;:12::i;:::-;2366:23;;:7;:5;:7::i;:::-;:23;;;2358:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38641:4:::1;38633;38628:1;38612:13;:11;:13::i;:::-;:17;;;;:::i;:::-;38611:26;;;;:::i;:::-;38610:35;;;;:::i;:::-;38600:6;:45;;38578:142;;;;;;;;;;;;:::i;:::-;;;;;;;;;38764:6;38754;:17;;;;:::i;:::-;38731:20;:40;;;;38504:275:::0;:::o;12380:492::-;12520:4;12537:36;12547:6;12555:9;12566:6;12537:9;:36::i;:::-;12586:24;12613:11;:19;12625:6;12613:19;;;;;;;;;;;;;;;:33;12633:12;:10;:12::i;:::-;12613:33;;;;;;;;;;;;;;;;12586:60;;12685:6;12665:16;:26;;12657:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;12772:57;12781:6;12789:12;:10;:12::i;:::-;12822:6;12803:16;:25;12772:8;:57::i;:::-;12860:4;12853:11;;;12380:492;;;;;:::o;32817:53::-;32863:6;32817:53;:::o;39423:498::-;2377:12;:10;:12::i;:::-;2366:23;;:7;:5;:7::i;:::-;:23;;;2358:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39658:2:::1;39646:7;39630:13;39614;39600:11;:27;;;;:::i;:::-;:43;;;;:::i;:::-;:53;;;;:::i;:::-;39599:61;;39591:88;;;;;;;;;;;;:::i;:::-;;;;;;;;;39700:11;39684:13;:27;;;;39740:13;39722:15;:31;;;;39782:13;39764:15;:31;;;;39818:7;39806:9;:19;;;;39903:9;;39885:15;;39867;;39851:13;;:31;;;;:::i;:::-;:49;;;;:::i;:::-;:61;;;;:::i;:::-;39836:12;:76;;;;39423:498:::0;;;;:::o;10524:93::-;10582:5;10607:2;10600:9;;10524:93;:::o;13281:215::-;13369:4;13386:80;13395:12;:10;:12::i;:::-;13409:7;13455:10;13418:11;:25;13430:12;:10;:12::i;:::-;13418:25;;;;;;;;;;;;;;;:34;13444:7;13418:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;13386:8;:80::i;:::-;13484:4;13477:11;;13281:215;;;;:::o;33818:31::-;;;;:::o;32772:38::-;;;:::o;33126:33::-;;;;;;;;;;;;;:::o;41143:126::-;41209:4;41233:19;:28;41253:7;41233:28;;;;;;;;;;;;;;;;;;;;;;;;;41226:35;;41143:126;;;:::o;33643:28::-;;;;:::o;33205:30::-;;;;;;;;;;;;;:::o;10853:127::-;10927:7;10954:9;:18;10964:7;10954:18;;;;;;;;;;;;;;;;10947:25;;10853:127;;;:::o;2797:103::-;2377:12;:10;:12::i;:::-;2366:23;;:7;:5;:7::i;:::-;:23;;;2358:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2862:30:::1;2889:1;2862:18;:30::i;:::-;2797:103::o:0;37612:121::-;37664:4;2377:12;:10;:12::i;:::-;2366:23;;:7;:5;:7::i;:::-;:23;;;2358:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37698:5:::1;37681:14;;:22;;;;;;;;;;;;;;;;;;37721:4;37714:11;;37612:121:::0;:::o;39052:167::-;2377:12;:10;:12::i;:::-;2366:23;;:7;:5;:7::i;:::-;:23;;;2358:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39207:4:::1;39165:31;:39;39197:6;39165:39;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;39052:167:::0;;:::o;32941:30::-;;;;;;;;;;;;;:::o;32906:28::-;;;;;;;;;;;;;:::o;33536:30::-;;;;:::o;37448:112::-;2377:12;:10;:12::i;:::-;2366:23;;:7;:5;:7::i;:::-;:23;;;2358:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37519:4:::1;37503:13;;:20;;;;;;;;;;;;;;;;;;37548:4;37534:11;;:18;;;;;;;;;;;;;;;;;;37448:112::o:0;2146:87::-;2192:7;2219:6;;;;;;;;;;;2212:13;;2146:87;:::o;32978:24::-;;;;;;;;;;;;;:::o;33711:31::-;;;;:::o;39315:100::-;2377:12;:10;:12::i;:::-;2366:23;;:7;:5;:7::i;:::-;:23;;;2358:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39400:7:::1;39386:11;;:21;;;;;;;;;;;;;;;;;;39315:100:::0;:::o;9781:104::-;9837:13;9870:7;9863:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9781:104;:::o;40635:304::-;2377:12;:10;:12::i;:::-;2366:23;;:7;:5;:7::i;:::-;:23;;;2358:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40779:13:::1;40771:21;;:4;:21;;::::0;40749:128:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;40890:41;40919:4;40925:5;40890:28;:41::i;:::-;40635:304:::0;;:::o;33610:24::-;;;;:::o;33936:27::-;;;;:::o;33787:25::-;;;;:::o;33501:28::-;;;;:::o;13999:413::-;14092:4;14109:24;14136:11;:25;14148:12;:10;:12::i;:::-;14136:25;;;;;;;;;;;;;;;:34;14162:7;14136:34;;;;;;;;;;;;;;;;14109:61;;14209:15;14189:16;:35;;14181:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;14302:67;14311:12;:10;:12::i;:::-;14325:7;14353:15;14334:16;:34;14302:8;:67::i;:::-;14400:4;14393:11;;;13999:413;;;;:::o;11193:175::-;11279:4;11296:42;11306:12;:10;:12::i;:::-;11320:9;11331:6;11296:9;:42::i;:::-;11356:4;11349:11;;11193:175;;;;:::o;34333:57::-;;;;;;;;;;;;;;;;;;;;;;:::o;33166:32::-;;;;;;;;;;;;;:::o;40445:182::-;2377:12;:10;:12::i;:::-;2366:23;;:7;:5;:7::i;:::-;:23;;;2358:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40561:8:::1;40530:19;:28;40550:7;40530:28;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;40601:7;40585:34;;;40610:8;40585:34;;;;;;:::i;:::-;;;;;;;;40445:182:::0;;:::o;38787:256::-;2377:12;:10;:12::i;:::-;2366:23;;:7;:5;:7::i;:::-;:23;;;2358:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38927:4:::1;38919;38914:1;38898:13;:11;:13::i;:::-;:17;;;;:::i;:::-;38897:26;;;;:::i;:::-;38896:35;;;;:::i;:::-;38886:6;:45;;38864:131;;;;;;;;;;;;:::i;:::-;;;;;;;;;39028:6;39018;:17;;;;:::i;:::-;39006:9;:29;;;;38787:256:::0;:::o;33422:39::-;;;;;;;;;;;;;:::o;33011:35::-;;;;:::o;37999:497::-;38107:4;2377:12;:10;:12::i;:::-;2366:23;;:7;:5;:7::i;:::-;:23;;;2358:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38186:6:::1;38181:1;38165:13;:11;:13::i;:::-;:17;;;;:::i;:::-;38164:28;;;;:::i;:::-;38151:9;:41;;38129:144;;;;;;;;;;;;:::i;:::-;;;;;;;;;38341:4;38336:1;38320:13;:11;:13::i;:::-;:17;;;;:::i;:::-;38319:26;;;;:::i;:::-;38306:9;:39;;38284:141;;;;;;;;;;;;:::i;:::-;;;;;;;;;38457:9;38436:18;:30;;;;38484:4;38477:11;;37999:497:::0;;;:::o;33470:27::-;;;;:::o;11431:151::-;11520:7;11547:11;:18;11559:5;11547:18;;;;;;;;;;;;;;;:27;11566:7;11547:27;;;;;;;;;;;;;;;;11540:34;;11431:151;;;;:::o;33053:33::-;;;;:::o;39929:508::-;2377:12;:10;:12::i;:::-;2366:23;;:7;:5;:7::i;:::-;:23;;;2358:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40165:2:::1;40153:7;40137:13;40121;40107:11;:27;;;;:::i;:::-;:43;;;;:::i;:::-;:53;;;;:::i;:::-;40106:61;;40098:89;;;;;;;;;;;;:::i;:::-;;;;;;;;;40209:11;40192:14;:28;;;;40250:13;40231:16;:32;;;;40293:13;40274:16;:32;;;;40330:7;40317:10;:20;;;;40419:10;;40400:16;;40381;;40364:14;;:33;;;;:::i;:::-;:52;;;;:::i;:::-;:65;;;;:::i;:::-;40348:13;:81;;;;39929:508:::0;;;;:::o;37794:135::-;37854:4;2377:12;:10;:12::i;:::-;2366:23;;:7;:5;:7::i;:::-;:23;;;2358:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37894:5:::1;37871:20;;:28;;;;;;;;;;;;;;;;;;37917:4;37910:11;;37794:135:::0;:::o;33573:30::-;;;;:::o;3055:201::-;2377:12;:10;:12::i;:::-;2366:23;;:7;:5;:7::i;:::-;:23;;;2358:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3164:1:::1;3144:22;;:8;:22;;::::0;3136:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;3220:28;3239:8;3220:18;:28::i;:::-;3055:201:::0;:::o;33749:31::-;;;;:::o;33093:24::-;;;;:::o;819:98::-;872:7;899:10;892:17;;819:98;:::o;17683:380::-;17836:1;17819:19;;:5;:19;;;17811:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;17917:1;17898:21;;:7;:21;;;17890:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18001:6;17971:11;:18;17983:5;17971:18;;;;;;;;;;;;;;;:27;17990:7;17971:27;;;;;;;;;;;;;;;:36;;;;18039:7;18023:32;;18032:5;18023:32;;;18048:6;18023:32;;;;;;:::i;:::-;;;;;;;;17683:380;;;:::o;41277:4847::-;41425:1;41409:18;;:4;:18;;;41401:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41502:1;41488:16;;:2;:16;;;41480:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;41571:1;41561:6;:11;41557:93;;41589:28;41605:4;41611:2;41615:1;41589:15;:28::i;:::-;41632:7;;41557:93;41666:14;;;;;;;;;;;41662:2487;;;41727:7;:5;:7::i;:::-;41719:15;;:4;:15;;;;:49;;;;;41761:7;:5;:7::i;:::-;41755:13;;:2;:13;;;;41719:49;:86;;;;;41803:1;41789:16;;:2;:16;;;;41719:86;:128;;;;;41840:6;41826:21;;:2;:21;;;;41719:128;:158;;;;;41869:8;;;;;;;;;;;41868:9;41719:158;41697:2441;;;41917:13;;;;;;;;;;;41912:223;;41989:19;:25;42009:4;41989:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;42018:19;:23;42038:2;42018:23;;;;;;;;;;;;;;;;;;;;;;;;;41989:52;41955:160;;;;;;;;;;;;:::i;:::-;;;;;;;;;41912:223;42291:20;;;;;;;;;;;42287:641;;;42372:7;:5;:7::i;:::-;42366:13;;:2;:13;;;;:72;;;;;42422:15;42408:30;;:2;:30;;;;42366:72;:129;;;;;42481:13;42467:28;;:2;:28;;;;42366:129;42336:573;;;42659:12;42584:28;:39;42613:9;42584:39;;;;;;;;;;;;;;;;:87;42546:258;;;;;;;;;;;;:::i;:::-;;;;;;;;;42873:12;42831:28;:39;42860:9;42831:39;;;;;;;;;;;;;;;:54;;;;42336:573;42287:641;43002:25;:31;43028:4;43002:31;;;;;;;;;;;;;;;;;;;;;;;;;:92;;;;;43059:31;:35;43091:2;43059:35;;;;;;;;;;;;;;;;;;;;;;;;;43058:36;43002:92;42976:1147;;;43181:20;;43171:6;:30;;43137:169;;;;;;;;;;;;:::i;:::-;;;;;;;;;43389:9;;43372:13;43382:2;43372:9;:13::i;:::-;43363:6;:22;;;;:::i;:::-;:35;;43329:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;42976:1147;;;43567:25;:29;43593:2;43567:29;;;;;;;;;;;;;;;;;;;;;;;;;:92;;;;;43622:31;:37;43654:4;43622:37;;;;;;;;;;;;;;;;;;;;;;;;;43621:38;43567:92;43541:582;;;43746:20;;43736:6;:30;;43702:170;;;;;;;;;;;;:::i;:::-;;;;;;;;;43541:582;;;43903:31;:35;43935:2;43903:35;;;;;;;;;;;;;;;;;;;;;;;;;43898:225;;44023:9;;44006:13;44016:2;44006:9;:13::i;:::-;43997:6;:22;;;;:::i;:::-;:35;;43963:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;43898:225;43541:582;42976:1147;41697:2441;41662:2487;44161:28;44192:24;44210:4;44192:9;:24::i;:::-;44161:55;;44229:12;44268:18;;44244:20;:42;;44229:57;;44317:7;:35;;;;;44341:11;;;;;;;;;;;44317:35;:61;;;;;44370:8;;;;;;;;;;;44369:9;44317:61;:110;;;;;44396:25;:31;44422:4;44396:31;;;;;;;;;;;;;;;;;;;;;;;;;44395:32;44317:110;:153;;;;;44445:19;:25;44465:4;44445:25;;;;;;;;;;;;;;;;;;;;;;;;;44444:26;44317:153;:194;;;;;44488:19;:23;44508:2;44488:23;;;;;;;;;;;;;;;;;;;;;;;;;44487:24;44317:194;44299:326;;;44549:4;44538:8;;:15;;;;;;;;;;;;;;;;;;44570:10;:8;:10::i;:::-;44608:5;44597:8;;:16;;;;;;;;;;;;;;;;;;44299:326;44637:12;44653:8;;;;;;;;;;;44652:9;44637:24;;44763:19;:25;44783:4;44763:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;44792:19;:23;44812:2;44792:23;;;;;;;;;;;;;;;;;;;;;;;;;44763:52;44759:100;;;44842:5;44832:15;;44759:100;44871:12;44976:7;44972:1099;;;45028:25;:29;45054:2;45028:29;;;;;;;;;;;;;;;;;;;;;;;;;:50;;;;;45077:1;45061:13;;:17;45028:50;45024:898;;;45106:34;45136:3;45106:25;45117:13;;45106:6;:10;;:25;;;;:::i;:::-;:29;;:34;;;;:::i;:::-;45099:41;;45193:13;;45175:14;;45168:4;:21;;;;:::i;:::-;45167:39;;;;:::i;:::-;45147:16;;:59;;;;;;;:::i;:::-;;;;;;;;45275:13;;45255:16;;45248:4;:23;;;;:::i;:::-;45247:41;;;;:::i;:::-;45225:18;;:63;;;;;;;:::i;:::-;;;;;;;;45345:13;;45331:10;;45324:4;:17;;;;:::i;:::-;45323:35;;;;:::i;:::-;45307:12;;:51;;;;;;;:::i;:::-;;;;;;;;45427:13;;45407:16;;45400:4;:23;;;;:::i;:::-;45399:41;;;;:::i;:::-;45377:18;;:63;;;;;;;:::i;:::-;;;;;;;;45024:898;;;45502:25;:31;45528:4;45502:31;;;;;;;;;;;;;;;;;;;;;;;;;:51;;;;;45552:1;45537:12;;:16;45502:51;45498:424;;;45581:33;45610:3;45581:24;45592:12;;45581:6;:10;;:24;;;;:::i;:::-;:28;;:33;;;;:::i;:::-;45574:40;;45666:12;;45649:13;;45642:4;:20;;;;:::i;:::-;45641:37;;;;:::i;:::-;45621:16;;:57;;;;;;;:::i;:::-;;;;;;;;45746:12;;45727:15;;45720:4;:22;;;;:::i;:::-;45719:39;;;;:::i;:::-;45697:18;;:61;;;;;;;:::i;:::-;;;;;;;;45814:12;;45801:9;;45794:4;:16;;;;:::i;:::-;45793:33;;;;:::i;:::-;45777:12;;:49;;;;;;;:::i;:::-;;;;;;;;45894:12;;45875:15;;45868:4;:22;;;;:::i;:::-;45867:39;;;;:::i;:::-;45845:18;;:61;;;;;;;:::i;:::-;;;;;;;;45498:424;45024:898;45949:1;45942:4;:8;45938:91;;;45971:42;45987:4;46001;46008;45971:15;:42::i;:::-;45938:91;46055:4;46045:14;;;;;:::i;:::-;;;44972:1099;46083:33;46099:4;46105:2;46109:6;46083:15;:33::i;:::-;41390:4734;;;;41277:4847;;;;:::o;3416:191::-;3490:16;3509:6;;;;;;;;;;;3490:25;;3535:8;3526:6;;:17;;;;;;;;;;;;;;;;;;3590:8;3559:40;;3580:8;3559:40;;;;;;;;;;;;3479:128;3416:191;:::o;40947:188::-;41064:5;41030:25;:31;41056:4;41030:31;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;41121:5;41087:40;;41115:4;41087:40;;;;;;;;;;;;40947:188;;:::o;14902:733::-;15060:1;15042:20;;:6;:20;;;15034:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;15144:1;15123:23;;:9;:23;;;15115:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;15199:47;15220:6;15228:9;15239:6;15199:20;:47::i;:::-;15259:21;15283:9;:17;15293:6;15283:17;;;;;;;;;;;;;;;;15259:41;;15336:6;15319:13;:23;;15311:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;15457:6;15441:13;:22;15421:9;:17;15431:6;15421:17;;;;;;;;;;;;;;;:42;;;;15509:6;15485:9;:20;15495:9;15485:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;15550:9;15533:35;;15542:6;15533:35;;;15561:6;15533:35;;;;;;:::i;:::-;;;;;;;;15581:46;15601:6;15609:9;15620:6;15581:19;:46::i;:::-;15023:612;14902:733;;;:::o;47252:1882::-;47291:23;47317:24;47335:4;47317:9;:24::i;:::-;47291:50;;47352:25;47441:12;;47420:18;;47399;;47380:16;;:37;;;;:::i;:::-;:58;;;;:::i;:::-;:73;;;;:::i;:::-;47352:101;;47464:12;47512:1;47493:15;:20;:46;;;;47538:1;47517:17;:22;47493:46;47489:85;;;47556:7;;;;;47489:85;47629:2;47608:18;;:23;;;;:::i;:::-;47590:15;:41;47586:115;;;47687:2;47666:18;;:23;;;;:::i;:::-;47648:41;;47586:115;47762:23;47849:1;47829:17;47807:18;;47789:15;:36;;;;:::i;:::-;47788:58;;;;:::i;:::-;:62;;;;:::i;:::-;47762:88;;47861:26;47890:36;47910:15;47890;:19;;:36;;;;:::i;:::-;47861:65;;47939:25;47967:21;47939:49;;48001:36;48018:18;48001:16;:36::i;:::-;48050:18;48071:44;48097:17;48071:21;:25;;:44;;;;:::i;:::-;48050:65;;48122:21;48146:55;48183:17;48146:32;48161:16;;48146:10;:14;;:32;;;;:::i;:::-;:36;;:55;;;;:::i;:::-;48122:79;;48212:23;48238:57;48277:17;48238:34;48253:18;;48238:10;:14;;:34;;;;:::i;:::-;:38;;:57;;;;:::i;:::-;48212:83;;48306:17;48326:51;48359:17;48326:28;48341:12;;48326:10;:14;;:28;;;;:::i;:::-;:32;;:51;;;;:::i;:::-;48306:71;;48390:23;48463:9;48445:15;48429:13;48416:10;:26;;;;:::i;:::-;:44;;;;:::i;:::-;:56;;;;:::i;:::-;48390:82;;48506:1;48485:18;:22;;;;48531:1;48512:16;:20;;;;48564:1;48543:18;:22;;;;48591:1;48576:12;:16;;;;48627:9;;;;;;;;;;;48619:23;;48650:9;48619:45;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48605:59;;;;;48697:15;;;;;;;;;;;48689:29;;48726:15;48689:57;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48675:71;;;;;48783:1;48765:15;:19;:42;;;;;48806:1;48788:15;:19;48765:42;48761:278;;;48824:46;48837:15;48854;48824:12;:46::i;:::-;48890:137;48923:18;48960:15;48994:18;;48890:137;;;;;;;;:::i;:::-;;;;;;;;48761:278;49073:13;;;;;;;;;;;49065:27;;49100:21;49065:61;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49051:75;;;;;47280:1854;;;;;;;;;;;47252:1882;:::o;23136:98::-;23194:7;23225:1;23221;:5;;;;:::i;:::-;23214:12;;23136:98;;;;:::o;23535:::-;23593:7;23624:1;23620;:5;;;;:::i;:::-;23613:12;;23535:98;;;;:::o;18663:125::-;;;;:::o;19392:124::-;;;;:::o;22779:98::-;22837:7;22868:1;22864;:5;;;;:::i;:::-;22857:12;;22779:98;;;;:::o;46132:589::-;46258:21;46296:1;46282:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46258:40;;46327:4;46309;46314:1;46309:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;;;46353:15;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;46343:4;46348:1;46343:7;;;;;;;;:::i;:::-;;;;;;;:32;;;;;;;;;;;46388:62;46405:4;46420:15;46438:11;46388:8;:62::i;:::-;46489:15;:66;;;46570:11;46596:1;46640:4;46667;46687:15;46489:224;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46187:534;46132:589;:::o;46729:515::-;46877:62;46894:4;46909:15;46927:11;46877:8;:62::i;:::-;46982:15;:31;;;47021:9;47054:4;47074:11;47100:1;47143;47186:9;;;;;;;;;;;47210:15;46982:254;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;46729:515;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:246::-;368:1;378:113;392:6;389:1;386:13;378:113;;;477:1;472:3;468:11;462:18;458:1;453:3;449:11;442:39;414:2;411:1;407:10;402:15;;378:113;;;525:1;516:6;511:3;507:16;500:27;349:184;287:246;;;:::o;539:102::-;580:6;631:2;627:7;622:2;615:5;611:14;607:28;597:38;;539:102;;;:::o;647:377::-;735:3;763:39;796:5;763:39;:::i;:::-;818:71;882:6;877:3;818:71;:::i;:::-;811:78;;898:65;956:6;951:3;944:4;937:5;933:16;898:65;:::i;:::-;988:29;1010:6;988:29;:::i;:::-;983:3;979:39;972:46;;739:285;647:377;;;;:::o;1030:313::-;1143:4;1181:2;1170:9;1166:18;1158:26;;1230:9;1224:4;1220:20;1216:1;1205:9;1201:17;1194:47;1258:78;1331:4;1322:6;1258:78;:::i;:::-;1250:86;;1030:313;;;;:::o;1430:117::-;1539:1;1536;1529:12;1676:126;1713:7;1753:42;1746:5;1742:54;1731:65;;1676:126;;;:::o;1808:96::-;1845:7;1874:24;1892:5;1874:24;:::i;:::-;1863:35;;1808:96;;;:::o;1910:122::-;1983:24;2001:5;1983:24;:::i;:::-;1976:5;1973:35;1963:63;;2022:1;2019;2012:12;1963:63;1910:122;:::o;2038:139::-;2084:5;2122:6;2109:20;2100:29;;2138:33;2165:5;2138:33;:::i;:::-;2038:139;;;;:::o;2183:77::-;2220:7;2249:5;2238:16;;2183:77;;;:::o;2266:122::-;2339:24;2357:5;2339:24;:::i;:::-;2332:5;2329:35;2319:63;;2378:1;2375;2368:12;2319:63;2266:122;:::o;2394:139::-;2440:5;2478:6;2465:20;2456:29;;2494:33;2521:5;2494:33;:::i;:::-;2394:139;;;;:::o;2539:474::-;2607:6;2615;2664:2;2652:9;2643:7;2639:23;2635:32;2632:119;;;2670:79;;:::i;:::-;2632:119;2790:1;2815:53;2860:7;2851:6;2840:9;2836:22;2815:53;:::i;:::-;2805:63;;2761:117;2917:2;2943:53;2988:7;2979:6;2968:9;2964:22;2943:53;:::i;:::-;2933:63;;2888:118;2539:474;;;;;:::o;3019:90::-;3053:7;3096:5;3089:13;3082:21;3071:32;;3019:90;;;:::o;3115:109::-;3196:21;3211:5;3196:21;:::i;:::-;3191:3;3184:34;3115:109;;:::o;3230:210::-;3317:4;3355:2;3344:9;3340:18;3332:26;;3368:65;3430:1;3419:9;3415:17;3406:6;3368:65;:::i;:::-;3230:210;;;;:::o;3446:118::-;3533:24;3551:5;3533:24;:::i;:::-;3528:3;3521:37;3446:118;;:::o;3570:222::-;3663:4;3701:2;3690:9;3686:18;3678:26;;3714:71;3782:1;3771:9;3767:17;3758:6;3714:71;:::i;:::-;3570:222;;;;:::o;3798:329::-;3857:6;3906:2;3894:9;3885:7;3881:23;3877:32;3874:119;;;3912:79;;:::i;:::-;3874:119;4032:1;4057:53;4102:7;4093:6;4082:9;4078:22;4057:53;:::i;:::-;4047:63;;4003:117;3798:329;;;;:::o;4133:60::-;4161:3;4182:5;4175:12;;4133:60;;;:::o;4199:142::-;4249:9;4282:53;4300:34;4309:24;4327:5;4309:24;:::i;:::-;4300:34;:::i;:::-;4282:53;:::i;:::-;4269:66;;4199:142;;;:::o;4347:126::-;4397:9;4430:37;4461:5;4430:37;:::i;:::-;4417:50;;4347:126;;;:::o;4479:153::-;4556:9;4589:37;4620:5;4589:37;:::i;:::-;4576:50;;4479:153;;;:::o;4638:185::-;4752:64;4810:5;4752:64;:::i;:::-;4747:3;4740:77;4638:185;;:::o;4829:276::-;4949:4;4987:2;4976:9;4972:18;4964:26;;5000:98;5095:1;5084:9;5080:17;5071:6;5000:98;:::i;:::-;4829:276;;;;:::o;5111:329::-;5170:6;5219:2;5207:9;5198:7;5194:23;5190:32;5187:119;;;5225:79;;:::i;:::-;5187:119;5345:1;5370:53;5415:7;5406:6;5395:9;5391:22;5370:53;:::i;:::-;5360:63;;5316:117;5111:329;;;;:::o;5446:619::-;5523:6;5531;5539;5588:2;5576:9;5567:7;5563:23;5559:32;5556:119;;;5594:79;;:::i;:::-;5556:119;5714:1;5739:53;5784:7;5775:6;5764:9;5760:22;5739:53;:::i;:::-;5729:63;;5685:117;5841:2;5867:53;5912:7;5903:6;5892:9;5888:22;5867:53;:::i;:::-;5857:63;;5812:118;5969:2;5995:53;6040:7;6031:6;6020:9;6016:22;5995:53;:::i;:::-;5985:63;;5940:118;5446:619;;;;;:::o;6071:118::-;6158:24;6176:5;6158:24;:::i;:::-;6153:3;6146:37;6071:118;;:::o;6195:222::-;6288:4;6326:2;6315:9;6311:18;6303:26;;6339:71;6407:1;6396:9;6392:17;6383:6;6339:71;:::i;:::-;6195:222;;;;:::o;6423:765::-;6509:6;6517;6525;6533;6582:3;6570:9;6561:7;6557:23;6553:33;6550:120;;;6589:79;;:::i;:::-;6550:120;6709:1;6734:53;6779:7;6770:6;6759:9;6755:22;6734:53;:::i;:::-;6724:63;;6680:117;6836:2;6862:53;6907:7;6898:6;6887:9;6883:22;6862:53;:::i;:::-;6852:63;;6807:118;6964:2;6990:53;7035:7;7026:6;7015:9;7011:22;6990:53;:::i;:::-;6980:63;;6935:118;7092:2;7118:53;7163:7;7154:6;7143:9;7139:22;7118:53;:::i;:::-;7108:63;;7063:118;6423:765;;;;;;;:::o;7194:86::-;7229:7;7269:4;7262:5;7258:16;7247:27;;7194:86;;;:::o;7286:112::-;7369:22;7385:5;7369:22;:::i;:::-;7364:3;7357:35;7286:112;;:::o;7404:214::-;7493:4;7531:2;7520:9;7516:18;7508:26;;7544:67;7608:1;7597:9;7593:17;7584:6;7544:67;:::i;:::-;7404:214;;;;:::o;7624:116::-;7694:21;7709:5;7694:21;:::i;:::-;7687:5;7684:32;7674:60;;7730:1;7727;7720:12;7674:60;7624:116;:::o;7746:133::-;7789:5;7827:6;7814:20;7805:29;;7843:30;7867:5;7843:30;:::i;:::-;7746:133;;;;:::o;7885:468::-;7950:6;7958;8007:2;7995:9;7986:7;7982:23;7978:32;7975:119;;;8013:79;;:::i;:::-;7975:119;8133:1;8158:53;8203:7;8194:6;8183:9;8179:22;8158:53;:::i;:::-;8148:63;;8104:117;8260:2;8286:50;8328:7;8319:6;8308:9;8304:22;8286:50;:::i;:::-;8276:60;;8231:115;7885:468;;;;;:::o;8359:323::-;8415:6;8464:2;8452:9;8443:7;8439:23;8435:32;8432:119;;;8470:79;;:::i;:::-;8432:119;8590:1;8615:50;8657:7;8648:6;8637:9;8633:22;8615:50;:::i;:::-;8605:60;;8561:114;8359:323;;;;:::o;8688:474::-;8756:6;8764;8813:2;8801:9;8792:7;8788:23;8784:32;8781:119;;;8819:79;;:::i;:::-;8781:119;8939:1;8964:53;9009:7;9000:6;8989:9;8985:22;8964:53;:::i;:::-;8954:63;;8910:117;9066:2;9092:53;9137:7;9128:6;9117:9;9113:22;9092:53;:::i;:::-;9082:63;;9037:118;8688:474;;;;;:::o;9168:180::-;9216:77;9213:1;9206:88;9313:4;9310:1;9303:15;9337:4;9334:1;9327:15;9354:320;9398:6;9435:1;9429:4;9425:12;9415:22;;9482:1;9476:4;9472:12;9503:18;9493:81;;9559:4;9551:6;9547:17;9537:27;;9493:81;9621:2;9613:6;9610:14;9590:18;9587:38;9584:84;;9640:18;;:::i;:::-;9584:84;9405:269;9354:320;;;:::o;9680:182::-;9820:34;9816:1;9808:6;9804:14;9797:58;9680:182;:::o;9868:366::-;10010:3;10031:67;10095:2;10090:3;10031:67;:::i;:::-;10024:74;;10107:93;10196:3;10107:93;:::i;:::-;10225:2;10220:3;10216:12;10209:19;;9868:366;;;:::o;10240:419::-;10406:4;10444:2;10433:9;10429:18;10421:26;;10493:9;10487:4;10483:20;10479:1;10468:9;10464:17;10457:47;10521:131;10647:4;10521:131;:::i;:::-;10513:139;;10240:419;;;:::o;10665:180::-;10713:77;10710:1;10703:88;10810:4;10807:1;10800:15;10834:4;10831:1;10824:15;10851:410;10891:7;10914:20;10932:1;10914:20;:::i;:::-;10909:25;;10948:20;10966:1;10948:20;:::i;:::-;10943:25;;11003:1;11000;10996:9;11025:30;11043:11;11025:30;:::i;:::-;11014:41;;11204:1;11195:7;11191:15;11188:1;11185:22;11165:1;11158:9;11138:83;11115:139;;11234:18;;:::i;:::-;11115:139;10899:362;10851:410;;;;:::o;11267:180::-;11315:77;11312:1;11305:88;11412:4;11409:1;11402:15;11436:4;11433:1;11426:15;11453:185;11493:1;11510:20;11528:1;11510:20;:::i;:::-;11505:25;;11544:20;11562:1;11544:20;:::i;:::-;11539:25;;11583:1;11573:35;;11588:18;;:::i;:::-;11573:35;11630:1;11627;11623:9;11618:14;;11453:185;;;;:::o;11644:234::-;11784:34;11780:1;11772:6;11768:14;11761:58;11853:17;11848:2;11840:6;11836:15;11829:42;11644:234;:::o;11884:366::-;12026:3;12047:67;12111:2;12106:3;12047:67;:::i;:::-;12040:74;;12123:93;12212:3;12123:93;:::i;:::-;12241:2;12236:3;12232:12;12225:19;;11884:366;;;:::o;12256:419::-;12422:4;12460:2;12449:9;12445:18;12437:26;;12509:9;12503:4;12499:20;12495:1;12484:9;12480:17;12473:47;12537:131;12663:4;12537:131;:::i;:::-;12529:139;;12256:419;;;:::o;12681:227::-;12821:34;12817:1;12809:6;12805:14;12798:58;12890:10;12885:2;12877:6;12873:15;12866:35;12681:227;:::o;12914:366::-;13056:3;13077:67;13141:2;13136:3;13077:67;:::i;:::-;13070:74;;13153:93;13242:3;13153:93;:::i;:::-;13271:2;13266:3;13262:12;13255:19;;12914:366;;;:::o;13286:419::-;13452:4;13490:2;13479:9;13475:18;13467:26;;13539:9;13533:4;13529:20;13525:1;13514:9;13510:17;13503:47;13567:131;13693:4;13567:131;:::i;:::-;13559:139;;13286:419;;;:::o;13711:191::-;13751:3;13770:20;13788:1;13770:20;:::i;:::-;13765:25;;13804:20;13822:1;13804:20;:::i;:::-;13799:25;;13847:1;13844;13840:9;13833:16;;13868:3;13865:1;13862:10;13859:36;;;13875:18;;:::i;:::-;13859:36;13711:191;;;;:::o;13908:164::-;14048:16;14044:1;14036:6;14032:14;14025:40;13908:164;:::o;14078:366::-;14220:3;14241:67;14305:2;14300:3;14241:67;:::i;:::-;14234:74;;14317:93;14406:3;14317:93;:::i;:::-;14435:2;14430:3;14426:12;14419:19;;14078:366;;;:::o;14450:419::-;14616:4;14654:2;14643:9;14639:18;14631:26;;14703:9;14697:4;14693:20;14689:1;14678:9;14674:17;14667:47;14731:131;14857:4;14731:131;:::i;:::-;14723:139;;14450:419;;;:::o;14875:244::-;15015:34;15011:1;15003:6;14999:14;14992:58;15084:27;15079:2;15071:6;15067:15;15060:52;14875:244;:::o;15125:366::-;15267:3;15288:67;15352:2;15347:3;15288:67;:::i;:::-;15281:74;;15364:93;15453:3;15364:93;:::i;:::-;15482:2;15477:3;15473:12;15466:19;;15125:366;;;:::o;15497:419::-;15663:4;15701:2;15690:9;15686:18;15678:26;;15750:9;15744:4;15740:20;15736:1;15725:9;15721:17;15714:47;15778:131;15904:4;15778:131;:::i;:::-;15770:139;;15497:419;;;:::o;15922:224::-;16062:34;16058:1;16050:6;16046:14;16039:58;16131:7;16126:2;16118:6;16114:15;16107:32;15922:224;:::o;16152:366::-;16294:3;16315:67;16379:2;16374:3;16315:67;:::i;:::-;16308:74;;16391:93;16480:3;16391:93;:::i;:::-;16509:2;16504:3;16500:12;16493:19;;16152:366;;;:::o;16524:419::-;16690:4;16728:2;16717:9;16713:18;16705:26;;16777:9;16771:4;16767:20;16763:1;16752:9;16748:17;16741:47;16805:131;16931:4;16805:131;:::i;:::-;16797:139;;16524:419;;;:::o;16949:223::-;17089:34;17085:1;17077:6;17073:14;17066:58;17158:6;17153:2;17145:6;17141:15;17134:31;16949:223;:::o;17178:366::-;17320:3;17341:67;17405:2;17400:3;17341:67;:::i;:::-;17334:74;;17417:93;17506:3;17417:93;:::i;:::-;17535:2;17530:3;17526:12;17519:19;;17178:366;;;:::o;17550:419::-;17716:4;17754:2;17743:9;17739:18;17731:26;;17803:9;17797:4;17793:20;17789:1;17778:9;17774:17;17767:47;17831:131;17957:4;17831:131;:::i;:::-;17823:139;;17550:419;;;:::o;17975:240::-;18115:34;18111:1;18103:6;18099:14;18092:58;18184:23;18179:2;18171:6;18167:15;18160:48;17975:240;:::o;18221:366::-;18363:3;18384:67;18448:2;18443:3;18384:67;:::i;:::-;18377:74;;18460:93;18549:3;18460:93;:::i;:::-;18578:2;18573:3;18569:12;18562:19;;18221:366;;;:::o;18593:419::-;18759:4;18797:2;18786:9;18782:18;18774:26;;18846:9;18840:4;18836:20;18832:1;18821:9;18817:17;18810:47;18874:131;19000:4;18874:131;:::i;:::-;18866:139;;18593:419;;;:::o;19018:239::-;19158:34;19154:1;19146:6;19142:14;19135:58;19227:22;19222:2;19214:6;19210:15;19203:47;19018:239;:::o;19263:366::-;19405:3;19426:67;19490:2;19485:3;19426:67;:::i;:::-;19419:74;;19502:93;19591:3;19502:93;:::i;:::-;19620:2;19615:3;19611:12;19604:19;;19263:366;;;:::o;19635:419::-;19801:4;19839:2;19828:9;19824:18;19816:26;;19888:9;19882:4;19878:20;19874:1;19863:9;19859:17;19852:47;19916:131;20042:4;19916:131;:::i;:::-;19908:139;;19635:419;;;:::o;20060:165::-;20200:17;20196:1;20188:6;20184:14;20177:41;20060:165;:::o;20231:366::-;20373:3;20394:67;20458:2;20453:3;20394:67;:::i;:::-;20387:74;;20470:93;20559:3;20470:93;:::i;:::-;20588:2;20583:3;20579:12;20572:19;;20231:366;;;:::o;20603:419::-;20769:4;20807:2;20796:9;20792:18;20784:26;;20856:9;20850:4;20846:20;20842:1;20831:9;20827:17;20820:47;20884:131;21010:4;20884:131;:::i;:::-;20876:139;;20603:419;;;:::o;21028:225::-;21168:34;21164:1;21156:6;21152:14;21145:58;21237:8;21232:2;21224:6;21220:15;21213:33;21028:225;:::o;21259:366::-;21401:3;21422:67;21486:2;21481:3;21422:67;:::i;:::-;21415:74;;21498:93;21587:3;21498:93;:::i;:::-;21616:2;21611:3;21607:12;21600:19;;21259:366;;;:::o;21631:419::-;21797:4;21835:2;21824:9;21820:18;21812:26;;21884:9;21878:4;21874:20;21870:1;21859:9;21855:17;21848:47;21912:131;22038:4;21912:131;:::i;:::-;21904:139;;21631:419;;;:::o;22056:223::-;22196:34;22192:1;22184:6;22180:14;22173:58;22265:6;22260:2;22252:6;22248:15;22241:31;22056:223;:::o;22285:366::-;22427:3;22448:67;22512:2;22507:3;22448:67;:::i;:::-;22441:74;;22524:93;22613:3;22524:93;:::i;:::-;22642:2;22637:3;22633:12;22626:19;;22285:366;;;:::o;22657:419::-;22823:4;22861:2;22850:9;22846:18;22838:26;;22910:9;22904:4;22900:20;22896:1;22885:9;22881:17;22874:47;22938:131;23064:4;22938:131;:::i;:::-;22930:139;;22657:419;;;:::o;23082:221::-;23222:34;23218:1;23210:6;23206:14;23199:58;23291:4;23286:2;23278:6;23274:15;23267:29;23082:221;:::o;23309:366::-;23451:3;23472:67;23536:2;23531:3;23472:67;:::i;:::-;23465:74;;23548:93;23637:3;23548:93;:::i;:::-;23666:2;23661:3;23657:12;23650:19;;23309:366;;;:::o;23681:419::-;23847:4;23885:2;23874:9;23870:18;23862:26;;23934:9;23928:4;23924:20;23920:1;23909:9;23905:17;23898:47;23962:131;24088:4;23962:131;:::i;:::-;23954:139;;23681:419;;;:::o;24106:224::-;24246:34;24242:1;24234:6;24230:14;24223:58;24315:7;24310:2;24302:6;24298:15;24291:32;24106:224;:::o;24336:366::-;24478:3;24499:67;24563:2;24558:3;24499:67;:::i;:::-;24492:74;;24575:93;24664:3;24575:93;:::i;:::-;24693:2;24688:3;24684:12;24677:19;;24336:366;;;:::o;24708:419::-;24874:4;24912:2;24901:9;24897:18;24889:26;;24961:9;24955:4;24951:20;24947:1;24936:9;24932:17;24925:47;24989:131;25115:4;24989:131;:::i;:::-;24981:139;;24708:419;;;:::o;25133:222::-;25273:34;25269:1;25261:6;25257:14;25250:58;25342:5;25337:2;25329:6;25325:15;25318:30;25133:222;:::o;25361:366::-;25503:3;25524:67;25588:2;25583:3;25524:67;:::i;:::-;25517:74;;25600:93;25689:3;25600:93;:::i;:::-;25718:2;25713:3;25709:12;25702:19;;25361:366;;;:::o;25733:419::-;25899:4;25937:2;25926:9;25922:18;25914:26;;25986:9;25980:4;25976:20;25972:1;25961:9;25957:17;25950:47;26014:131;26140:4;26014:131;:::i;:::-;26006:139;;25733:419;;;:::o;26158:172::-;26298:24;26294:1;26286:6;26282:14;26275:48;26158:172;:::o;26336:366::-;26478:3;26499:67;26563:2;26558:3;26499:67;:::i;:::-;26492:74;;26575:93;26664:3;26575:93;:::i;:::-;26693:2;26688:3;26684:12;26677:19;;26336:366;;;:::o;26708:419::-;26874:4;26912:2;26901:9;26897:18;26889:26;;26961:9;26955:4;26951:20;26947:1;26936:9;26932:17;26925:47;26989:131;27115:4;26989:131;:::i;:::-;26981:139;;26708:419;;;:::o;27133:297::-;27273:34;27269:1;27261:6;27257:14;27250:58;27342:34;27337:2;27329:6;27325:15;27318:59;27411:11;27406:2;27398:6;27394:15;27387:36;27133:297;:::o;27436:366::-;27578:3;27599:67;27663:2;27658:3;27599:67;:::i;:::-;27592:74;;27675:93;27764:3;27675:93;:::i;:::-;27793:2;27788:3;27784:12;27777:19;;27436:366;;;:::o;27808:419::-;27974:4;28012:2;28001:9;27997:18;27989:26;;28061:9;28055:4;28051:20;28047:1;28036:9;28032:17;28025:47;28089:131;28215:4;28089:131;:::i;:::-;28081:139;;27808:419;;;:::o;28233:240::-;28373:34;28369:1;28361:6;28357:14;28350:58;28442:23;28437:2;28429:6;28425:15;28418:48;28233:240;:::o;28479:366::-;28621:3;28642:67;28706:2;28701:3;28642:67;:::i;:::-;28635:74;;28718:93;28807:3;28718:93;:::i;:::-;28836:2;28831:3;28827:12;28820:19;;28479:366;;;:::o;28851:419::-;29017:4;29055:2;29044:9;29040:18;29032:26;;29104:9;29098:4;29094:20;29090:1;29079:9;29075:17;29068:47;29132:131;29258:4;29132:131;:::i;:::-;29124:139;;28851:419;;;:::o;29276:169::-;29416:21;29412:1;29404:6;29400:14;29393:45;29276:169;:::o;29451:366::-;29593:3;29614:67;29678:2;29673:3;29614:67;:::i;:::-;29607:74;;29690:93;29779:3;29690:93;:::i;:::-;29808:2;29803:3;29799:12;29792:19;;29451:366;;;:::o;29823:419::-;29989:4;30027:2;30016:9;30012:18;30004:26;;30076:9;30070:4;30066:20;30062:1;30051:9;30047:17;30040:47;30104:131;30230:4;30104:131;:::i;:::-;30096:139;;29823:419;;;:::o;30248:241::-;30388:34;30384:1;30376:6;30372:14;30365:58;30457:24;30452:2;30444:6;30440:15;30433:49;30248:241;:::o;30495:366::-;30637:3;30658:67;30722:2;30717:3;30658:67;:::i;:::-;30651:74;;30734:93;30823:3;30734:93;:::i;:::-;30852:2;30847:3;30843:12;30836:19;;30495:366;;;:::o;30867:419::-;31033:4;31071:2;31060:9;31056:18;31048:26;;31120:9;31114:4;31110:20;31106:1;31095:9;31091:17;31084:47;31148:131;31274:4;31148:131;:::i;:::-;31140:139;;30867:419;;;:::o;31292:194::-;31332:4;31352:20;31370:1;31352:20;:::i;:::-;31347:25;;31386:20;31404:1;31386:20;:::i;:::-;31381:25;;31430:1;31427;31423:9;31415:17;;31454:1;31448:4;31445:11;31442:37;;;31459:18;;:::i;:::-;31442:37;31292:194;;;;:::o;31492:225::-;31632:34;31628:1;31620:6;31616:14;31609:58;31701:8;31696:2;31688:6;31684:15;31677:33;31492:225;:::o;31723:366::-;31865:3;31886:67;31950:2;31945:3;31886:67;:::i;:::-;31879:74;;31962:93;32051:3;31962:93;:::i;:::-;32080:2;32075:3;32071:12;32064:19;;31723:366;;;:::o;32095:419::-;32261:4;32299:2;32288:9;32284:18;32276:26;;32348:9;32342:4;32338:20;32334:1;32323:9;32319:17;32312:47;32376:131;32502:4;32376:131;:::i;:::-;32368:139;;32095:419;;;:::o;32520:147::-;32621:11;32658:3;32643:18;;32520:147;;;;:::o;32673:114::-;;:::o;32793:398::-;32952:3;32973:83;33054:1;33049:3;32973:83;:::i;:::-;32966:90;;33065:93;33154:3;33065:93;:::i;:::-;33183:1;33178:3;33174:11;33167:18;;32793:398;;;:::o;33197:379::-;33381:3;33403:147;33546:3;33403:147;:::i;:::-;33396:154;;33567:3;33560:10;;33197:379;;;:::o;33582:442::-;33731:4;33769:2;33758:9;33754:18;33746:26;;33782:71;33850:1;33839:9;33835:17;33826:6;33782:71;:::i;:::-;33863:72;33931:2;33920:9;33916:18;33907:6;33863:72;:::i;:::-;33945;34013:2;34002:9;33998:18;33989:6;33945:72;:::i;:::-;33582:442;;;;;;:::o;34030:180::-;34078:77;34075:1;34068:88;34175:4;34172:1;34165:15;34199:4;34196:1;34189:15;34216:180;34264:77;34261:1;34254:88;34361:4;34358:1;34351:15;34385:4;34382:1;34375:15;34402:143;34459:5;34490:6;34484:13;34475:22;;34506:33;34533:5;34506:33;:::i;:::-;34402:143;;;;:::o;34551:351::-;34621:6;34670:2;34658:9;34649:7;34645:23;34641:32;34638:119;;;34676:79;;:::i;:::-;34638:119;34796:1;34821:64;34877:7;34868:6;34857:9;34853:22;34821:64;:::i;:::-;34811:74;;34767:128;34551:351;;;;:::o;34908:85::-;34953:7;34982:5;34971:16;;34908:85;;;:::o;34999:158::-;35057:9;35090:61;35108:42;35117:32;35143:5;35117:32;:::i;:::-;35108:42;:::i;:::-;35090:61;:::i;:::-;35077:74;;34999:158;;;:::o;35163:147::-;35258:45;35297:5;35258:45;:::i;:::-;35253:3;35246:58;35163:147;;:::o;35316:114::-;35383:6;35417:5;35411:12;35401:22;;35316:114;;;:::o;35436:184::-;35535:11;35569:6;35564:3;35557:19;35609:4;35604:3;35600:14;35585:29;;35436:184;;;;:::o;35626:132::-;35693:4;35716:3;35708:11;;35746:4;35741:3;35737:14;35729:22;;35626:132;;;:::o;35764:108::-;35841:24;35859:5;35841:24;:::i;:::-;35836:3;35829:37;35764:108;;:::o;35878:179::-;35947:10;35968:46;36010:3;36002:6;35968:46;:::i;:::-;36046:4;36041:3;36037:14;36023:28;;35878:179;;;;:::o;36063:113::-;36133:4;36165;36160:3;36156:14;36148:22;;36063:113;;;:::o;36212:732::-;36331:3;36360:54;36408:5;36360:54;:::i;:::-;36430:86;36509:6;36504:3;36430:86;:::i;:::-;36423:93;;36540:56;36590:5;36540:56;:::i;:::-;36619:7;36650:1;36635:284;36660:6;36657:1;36654:13;36635:284;;;36736:6;36730:13;36763:63;36822:3;36807:13;36763:63;:::i;:::-;36756:70;;36849:60;36902:6;36849:60;:::i;:::-;36839:70;;36695:224;36682:1;36679;36675:9;36670:14;;36635:284;;;36639:14;36935:3;36928:10;;36336:608;;;36212:732;;;;:::o;36950:831::-;37213:4;37251:3;37240:9;37236:19;37228:27;;37265:71;37333:1;37322:9;37318:17;37309:6;37265:71;:::i;:::-;37346:80;37422:2;37411:9;37407:18;37398:6;37346:80;:::i;:::-;37473:9;37467:4;37463:20;37458:2;37447:9;37443:18;37436:48;37501:108;37604:4;37595:6;37501:108;:::i;:::-;37493:116;;37619:72;37687:2;37676:9;37672:18;37663:6;37619:72;:::i;:::-;37701:73;37769:3;37758:9;37754:19;37745:6;37701:73;:::i;:::-;36950:831;;;;;;;;:::o;37787:807::-;38036:4;38074:3;38063:9;38059:19;38051:27;;38088:71;38156:1;38145:9;38141:17;38132:6;38088:71;:::i;:::-;38169:72;38237:2;38226:9;38222:18;38213:6;38169:72;:::i;:::-;38251:80;38327:2;38316:9;38312:18;38303:6;38251:80;:::i;:::-;38341;38417:2;38406:9;38402:18;38393:6;38341:80;:::i;:::-;38431:73;38499:3;38488:9;38484:19;38475:6;38431:73;:::i;:::-;38514;38582:3;38571:9;38567:19;38558:6;38514:73;:::i;:::-;37787:807;;;;;;;;;:::o;38600:143::-;38657:5;38688:6;38682:13;38673:22;;38704:33;38731:5;38704:33;:::i;:::-;38600:143;;;;:::o;38749:663::-;38837:6;38845;38853;38902:2;38890:9;38881:7;38877:23;38873:32;38870:119;;;38908:79;;:::i;:::-;38870:119;39028:1;39053:64;39109:7;39100:6;39089:9;39085:22;39053:64;:::i;:::-;39043:74;;38999:128;39166:2;39192:64;39248:7;39239:6;39228:9;39224:22;39192:64;:::i;:::-;39182:74;;39137:129;39305:2;39331:64;39387:7;39378:6;39367:9;39363:22;39331:64;:::i;:::-;39321:74;;39276:129;38749:663;;;;;:::o
Swarm Source
ipfs://d243bab3ac3c27f3c73c850fb2e0a2425e86baa2110924fc79f1c8cf973afe70
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.