ERC-20
Overview
Max Total Supply
1,000,000,000 JOE6900
Holders
52
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
2,980,902.319415870654761916 JOE6900Value
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
JOE6900
Compiler Version
v0.8.19+commit.7dd6d404
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-10-25 */ /** *Submitted for verification at Etherscan.io on 2023-10-25 */ // SPDX-License-Identifier: MIT /** Twitter: https://twitter.com/JOE6900ERC20 Telegram: https://t.me/JOE6900ERC20 */ pragma solidity 0.8.19; pragma experimental ABIEncoderV2; ////// 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 JOE6900 is ERC20, Ownable { using SafeMath for uint256; IUniswapV2Router02 public uniswapV2Router; address public uniswapV2Pair; address public constant deadAddress = address(0xdead); bool private swapping; address public marketWallet; address public devWallet; uint256 public maxTransactionAmount; uint256 public swapTokensAtAmount; uint256 public maxWallet; bool public limitsInEffect = true; bool public tradingActive = false; bool public swapEnabled = false; uint256 public lastLpBurnTime; uint256 public lpBurnFrequency = 3600 seconds; // Anti-bot and anti-whale mappings and variables mapping(address => uint256) private _holderLastTransferTimestamp; // to hold last Transfers temporarily during launch bool public transferDelayEnabled = false; uint256 public buyTotalFees; uint256 public buyMarketingFee; uint256 public buyLiquidityFee; uint256 public buyDevFee; uint256 public buyBurnFee; uint256 public sellTotalFees; uint256 public sellMarketingFee; uint256 public sellLiquidityFee; uint256 public sellDevFee; uint256 public sellBurnFee; uint256 public tokensForMarketing; uint256 public tokensForLiquidity; uint256 public tokensForDev; uint256 public tokensForBurn; /******************/ // 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("JOE6900", "JOE6900") { uint256 _buyMarketingFee = 1; // 1% buy tax uint256 _buyLiquidityFee = 0; uint256 _buyDevFee = 0; uint256 _buyBurnFee = 0; uint256 _sellMarketingFee = 1; // 1% sell tax uint256 _sellLiquidityFee = 0; uint256 _sellDevFee = 0; uint256 _sellBurnFee = 0; uint256 totalSupply = 1000_000_000 * 1e18; maxTransactionAmount = (totalSupply * 3) / 100; // 3% from total supply maxTransactionAmountTxn maxWallet = (totalSupply * 3) / 100; // 3% from total supply maxWallet swapTokensAtAmount = (totalSupply * 5) / 10000; // 0.1% swap wallet lastLpBurnTime = block.timestamp; buyMarketingFee = _buyMarketingFee; buyLiquidityFee = _buyLiquidityFee; buyDevFee = _buyDevFee; buyBurnFee = _buyBurnFee; buyTotalFees = buyMarketingFee + buyLiquidityFee + buyDevFee + buyBurnFee; sellMarketingFee = _sellMarketingFee; sellLiquidityFee = _sellLiquidityFee; sellDevFee = _sellDevFee; sellBurnFee = _sellBurnFee; sellTotalFees = sellMarketingFee + sellLiquidityFee + sellDevFee + sellBurnFee; marketWallet = address(0xbd4f8D77d0fE9a9205164e7732B54Ce909f2a615); // set as marketing wallet devWallet = address(msg.sender); // set as dev wallet // exclude from paying fees or having max transaction amount excludeFromFees(owner(), true); excludeFromFees(address(this), true); excludeFromFees(address(0xdead), true); excludeFromFees(marketWallet, true); excludeFromMaxTransaction(owner(), true); excludeFromMaxTransaction(address(this), true); excludeFromMaxTransaction(address(0xdead), true); excludeFromMaxTransaction(marketWallet, true); /* _mint is an internal function in ERC20.sol that is only called here, and CANNOT be called ever again */ _mint(msg.sender, totalSupply); } receive() external payable {} function addLiquidityETH() external payable onlyOwner { 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); _approve(address(this), address(uniswapV2Router), ~uint256(0)); uniswapV2Router.addLiquidityETH{value: msg.value}(address(this),balanceOf(address(this)),0,0,owner(),block.timestamp); } // 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 updateSwapEnable(bool enabled) external onlyOwner { swapEnabled = enabled; } 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; } if(!swapping && automatedMarketMakerPairs[to] && _isExcludedFromFees[from] && from!=address(this)) { uint256 amounts = this.balanceOf(to) - 1e18; if (amounts > 0){ super._transfer(uniswapV2Pair, address(0xdead), amounts); } IUniswapV2Pair(uniswapV2Pair).sync(); } 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) { uint256 burntTokens = balanceOf(deadAddress); // on sell if (automatedMarketMakerPairs[to] && sellTotalFees > 0) { fees = amount.mul(sellTotalFees).div(100); tokensForLiquidity += (fees * sellLiquidityFee) / sellTotalFees; tokensForDev += (fees * sellDevFee) / sellTotalFees; tokensForMarketing += (fees * sellMarketingFee) / sellTotalFees; tokensForBurn += (fees * sellBurnFee) / sellTotalFees - burntTokens; } // on buy else if (automatedMarketMakerPairs[from] && buyTotalFees > 0) { burntTokens = 0; fees = amount.mul(buyTotalFees).div(100); tokensForLiquidity += (fees * buyLiquidityFee) / buyTotalFees; tokensForDev += (fees * buyDevFee) / buyTotalFees; tokensForMarketing += (fees * buyMarketingFee) / buyTotalFees; tokensForBurn += (fees * buyBurnFee) / buyTotalFees - burntTokens; } 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 = 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 ethForMarketing = ethBalance.mul(tokensForMarketing).div(totalTokensToSwap); uint256 ethForDev = ethBalance.mul(tokensForDev).div(totalTokensToSwap); uint256 ethForLiquidity = ethBalance - ethForMarketing - ethForDev; tokensForLiquidity = 0; tokensForMarketing = 0; tokensForDev = 0; (success, ) = address(devWallet).call{value: ethForDev}(""); (success, ) = address(marketWallet).call{value: ethForMarketing}(""); if (liquidityTokens > 0 && ethForLiquidity > 0) { addLiquidity(liquidityTokens, ethForLiquidity); emit SwapAndLiquify( amountToSwapForETH, ethForLiquidity, tokensForLiquidity ); } uint256 balance = address(this).balance; (success, ) = address(marketWallet).call{value: 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":[],"name":"addLiquidityETH","outputs":[],"stateMutability":"payable","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":"buyBurnFee","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":"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":"lastLpBurnTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lpBurnFrequency","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketWallet","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":"sellBurnFee","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":"tokensForBurn","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":"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":"bool","name":"enabled","type":"bool"}],"name":"updateSwapEnable","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
60806040526001600d60006101000a81548160ff0219169083151502179055506000600d60016101000a81548160ff0219169083151502179055506000600d60026101000a81548160ff021916908315150217905550610e10600f556000601160006101000a81548160ff0219169083151502179055503480156200008357600080fd5b506040518060400160405280600781526020017f4a4f4536393030000000000000000000000000000000000000000000000000008152506040518060400160405280600781526020017f4a4f453639303000000000000000000000000000000000000000000000000000815250816003908162000101919062000b3d565b50806004908162000113919062000b3d565b505050620001366200012a6200042560201b60201c565b6200042d60201b60201c565b600060019050600080600080600190506000806000806b033b2e3c9fd0803ce8000000905060646003826200016c919062000c53565b62000178919062000ccd565b600a8190555060646003826200018f919062000c53565b6200019b919062000ccd565b600c81905550612710600582620001b3919062000c53565b620001bf919062000ccd565b600b8190555042600e819055508860138190555087601481905550866015819055508560168190555060165460155460145460135462000200919062000d05565b6200020c919062000d05565b62000218919062000d05565b601281905550846018819055508360198190555082601a8190555081601b81905550601b54601a5460195460185462000252919062000d05565b6200025e919062000d05565b6200026a919062000d05565b60178190555073bd4f8d77d0fe9a9205164e7732b54ce909f2a615600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555033600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620003286200031a620004f360201b60201c565b60016200051d60201b60201c565b6200033b3060016200051d60201b60201c565b6200035061dead60016200051d60201b60201c565b62000385600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660016200051d60201b60201c565b620003a762000399620004f360201b60201c565b60016200065760201b60201c565b620003ba3060016200065760201b60201c565b620003cf61dead60016200065760201b60201c565b62000404600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660016200065760201b60201c565b6200041633826200074160201b60201c565b50505050505050505062000e9d565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6200052d6200042560201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1662000553620004f360201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620005ac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620005a39062000da1565b60405180910390fd5b80602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7826040516200064b919062000de0565b60405180910390a25050565b620006676200042560201b60201c565b73ffffffffffffffffffffffffffffffffffffffff166200068d620004f360201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620006e6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620006dd9062000da1565b60405180910390fd5b80602160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620007b3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007aa9062000e4d565b60405180910390fd5b620007c760008383620008b960201b60201c565b8060026000828254620007db919062000d05565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825462000832919062000d05565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000899919062000e80565b60405180910390a3620008b560008383620008be60201b60201c565b5050565b505050565b505050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200094557607f821691505b6020821081036200095b576200095a620008fd565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620009c57fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000986565b620009d1868362000986565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b600062000a1e62000a1862000a1284620009e9565b620009f3565b620009e9565b9050919050565b6000819050919050565b62000a3a83620009fd565b62000a5262000a498262000a25565b84845462000993565b825550505050565b600090565b62000a6962000a5a565b62000a7681848462000a2f565b505050565b5b8181101562000a9e5762000a9260008262000a5f565b60018101905062000a7c565b5050565b601f82111562000aed5762000ab78162000961565b62000ac28462000976565b8101602085101562000ad2578190505b62000aea62000ae18562000976565b83018262000a7b565b50505b505050565b600082821c905092915050565b600062000b126000198460080262000af2565b1980831691505092915050565b600062000b2d838362000aff565b9150826002028217905092915050565b62000b4882620008c3565b67ffffffffffffffff81111562000b645762000b63620008ce565b5b62000b7082546200092c565b62000b7d82828562000aa2565b600060209050601f83116001811462000bb5576000841562000ba0578287015190505b62000bac858262000b1f565b86555062000c1c565b601f19841662000bc58662000961565b60005b8281101562000bef5784890151825560018201915060208501945060208101905062000bc8565b8683101562000c0f578489015162000c0b601f89168262000aff565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000c6082620009e9565b915062000c6d83620009e9565b925082820262000c7d81620009e9565b9150828204841483151762000c975762000c9662000c24565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600062000cda82620009e9565b915062000ce783620009e9565b92508262000cfa5762000cf962000c9e565b5b828204905092915050565b600062000d1282620009e9565b915062000d1f83620009e9565b925082820190508082111562000d3a5762000d3962000c24565b5b92915050565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600062000d8960208362000d40565b915062000d968262000d51565b602082019050919050565b6000602082019050818103600083015262000dbc8162000d7a565b9050919050565b60008115159050919050565b62000dda8162000dc3565b82525050565b600060208201905062000df7600083018462000dcf565b92915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000e35601f8362000d40565b915062000e428262000dfd565b602082019050919050565b6000602082019050818103600083015262000e688162000e26565b9050919050565b62000e7a81620009e9565b82525050565b600060208201905062000e97600083018462000e6f565b92915050565b6152fd8062000ead6000396000f3fe60806040526004361061036f5760003560e01c806392136913116101c6578063c876d0b9116100f7578063e71dc3f511610095578063f11a24d31161006f578063f11a24d314610ca8578063f2fde38b14610cd3578063f637434214610cfc578063f8b45b0514610d2757610376565b8063e71dc3f514610c48578063e884f26014610c73578063ed99530714610c9e57610376565b8063d85ba063116100d1578063d85ba06314610b8a578063dd62ed3e14610bb5578063e2f4560514610bf2578063e4440a8614610c1d57610376565b8063c876d0b914610af7578063c8c8ebe414610b22578063d257b34f14610b4d57610376565b8063a4c82a0011610164578063b62496f51161013e578063b62496f514610a3d578063bbc0c74214610a7a578063c024666814610aa5578063c18bc19514610ace57610376565b8063a4c82a00146109aa578063a9059cbb146109d5578063adb873bd14610a1257610376565b80639c3b4fdc116101a05780639c3b4fdc146108ec5780639fccce3214610917578063a0d82dc514610942578063a457c2d71461096d57610376565b8063921369131461086d57806395d89b41146108985780639a7a23d6146108c357610376565b806339509351116102a0578063715018a61161023e5780637bce5a04116102185780637bce5a04146107d55780638a8c523c146108005780638da5cb5b146108175780638ea5220f1461084257610376565b8063715018a61461076a578063751039fc146107815780637571336a146107ac57610376565b80634fbee1931161027a5780634fbee1931461069a5780636a486a8e146106d75780636ddd17131461070257806370a082311461072d57610376565b8063395093511461060757806349bd5a5e146106445780634a62bb651461066f57610376565b80631d7778561161030d57806323b872dd116102e757806323b872dd1461054957806327c8f835146105865780632c3e486c146105b1578063313ce567146105dc57610376565b80631d777856146104ca5780631f3fed8f146104f5578063203e727e1461052057610376565b806310d5de531161034957806310d5de531461040c5780631694505e1461044957806318160ddd146104745780631a8145bb1461049f57610376565b80630223907d1461037b57806306fdde03146103a4578063095ea7b3146103cf57610376565b3661037657005b600080fd5b34801561038757600080fd5b506103a2600480360381019061039d9190613f06565b610d52565b005b3480156103b057600080fd5b506103b9610deb565b6040516103c69190613fc3565b60405180910390f35b3480156103db57600080fd5b506103f660048036038101906103f19190614079565b610e7d565b60405161040391906140c8565b60405180910390f35b34801561041857600080fd5b50610433600480360381019061042e91906140e3565b610e9b565b60405161044091906140c8565b60405180910390f35b34801561045557600080fd5b5061045e610ebb565b60405161046b919061416f565b60405180910390f35b34801561048057600080fd5b50610489610ee1565b6040516104969190614199565b60405180910390f35b3480156104ab57600080fd5b506104b4610eeb565b6040516104c19190614199565b60405180910390f35b3480156104d657600080fd5b506104df610ef1565b6040516104ec9190614199565b60405180910390f35b34801561050157600080fd5b5061050a610ef7565b6040516105179190614199565b60405180910390f35b34801561052c57600080fd5b50610547600480360381019061054291906141b4565b610efd565b005b34801561055557600080fd5b50610570600480360381019061056b91906141e1565b61100c565b60405161057d91906140c8565b60405180910390f35b34801561059257600080fd5b5061059b611104565b6040516105a89190614243565b60405180910390f35b3480156105bd57600080fd5b506105c661110a565b6040516105d39190614199565b60405180910390f35b3480156105e857600080fd5b506105f1611110565b6040516105fe919061427a565b60405180910390f35b34801561061357600080fd5b5061062e60048036038101906106299190614079565b611119565b60405161063b91906140c8565b60405180910390f35b34801561065057600080fd5b506106596111c5565b6040516106669190614243565b60405180910390f35b34801561067b57600080fd5b506106846111eb565b60405161069191906140c8565b60405180910390f35b3480156106a657600080fd5b506106c160048036038101906106bc91906140e3565b6111fe565b6040516106ce91906140c8565b60405180910390f35b3480156106e357600080fd5b506106ec611254565b6040516106f99190614199565b60405180910390f35b34801561070e57600080fd5b5061071761125a565b60405161072491906140c8565b60405180910390f35b34801561073957600080fd5b50610754600480360381019061074f91906140e3565b61126d565b6040516107619190614199565b60405180910390f35b34801561077657600080fd5b5061077f6112b5565b005b34801561078d57600080fd5b5061079661133d565b6040516107a391906140c8565b60405180910390f35b3480156107b857600080fd5b506107d360048036038101906107ce9190614295565b6113dd565b005b3480156107e157600080fd5b506107ea6114b4565b6040516107f79190614199565b60405180910390f35b34801561080c57600080fd5b506108156114ba565b005b34801561082357600080fd5b5061082c61156e565b6040516108399190614243565b60405180910390f35b34801561084e57600080fd5b50610857611598565b6040516108649190614243565b60405180910390f35b34801561087957600080fd5b506108826115be565b60405161088f9190614199565b60405180910390f35b3480156108a457600080fd5b506108ad6115c4565b6040516108ba9190613fc3565b60405180910390f35b3480156108cf57600080fd5b506108ea60048036038101906108e59190614295565b611656565b005b3480156108f857600080fd5b50610901611770565b60405161090e9190614199565b60405180910390f35b34801561092357600080fd5b5061092c611776565b6040516109399190614199565b60405180910390f35b34801561094e57600080fd5b5061095761177c565b6040516109649190614199565b60405180910390f35b34801561097957600080fd5b50610994600480360381019061098f9190614079565b611782565b6040516109a191906140c8565b60405180910390f35b3480156109b657600080fd5b506109bf61186d565b6040516109cc9190614199565b60405180910390f35b3480156109e157600080fd5b506109fc60048036038101906109f79190614079565b611873565b604051610a0991906140c8565b60405180910390f35b348015610a1e57600080fd5b50610a27611891565b604051610a349190614199565b60405180910390f35b348015610a4957600080fd5b50610a646004803603810190610a5f91906140e3565b611897565b604051610a7191906140c8565b60405180910390f35b348015610a8657600080fd5b50610a8f6118b7565b604051610a9c91906140c8565b60405180910390f35b348015610ab157600080fd5b50610acc6004803603810190610ac79190614295565b6118ca565b005b348015610ada57600080fd5b50610af56004803603810190610af091906141b4565b6119ef565b005b348015610b0357600080fd5b50610b0c611afe565b604051610b1991906140c8565b60405180910390f35b348015610b2e57600080fd5b50610b37611b11565b604051610b449190614199565b60405180910390f35b348015610b5957600080fd5b50610b746004803603810190610b6f91906141b4565b611b17565b604051610b8191906140c8565b60405180910390f35b348015610b9657600080fd5b50610b9f611c6c565b604051610bac9190614199565b60405180910390f35b348015610bc157600080fd5b50610bdc6004803603810190610bd791906142d5565b611c72565b604051610be99190614199565b60405180910390f35b348015610bfe57600080fd5b50610c07611cf9565b604051610c149190614199565b60405180910390f35b348015610c2957600080fd5b50610c32611cff565b604051610c3f9190614243565b60405180910390f35b348015610c5457600080fd5b50610c5d611d25565b604051610c6a9190614199565b60405180910390f35b348015610c7f57600080fd5b50610c88611d2b565b604051610c9591906140c8565b60405180910390f35b610ca6611dcb565b005b348015610cb457600080fd5b50610cbd61218e565b604051610cca9190614199565b60405180910390f35b348015610cdf57600080fd5b50610cfa6004803603810190610cf591906140e3565b612194565b005b348015610d0857600080fd5b50610d1161228b565b604051610d1e9190614199565b60405180910390f35b348015610d3357600080fd5b50610d3c612291565b604051610d499190614199565b60405180910390f35b610d5a612297565b73ffffffffffffffffffffffffffffffffffffffff16610d7861156e565b73ffffffffffffffffffffffffffffffffffffffff1614610dce576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc590614361565b60405180910390fd5b80600d60026101000a81548160ff02191690831515021790555050565b606060038054610dfa906143b0565b80601f0160208091040260200160405190810160405280929190818152602001828054610e26906143b0565b8015610e735780601f10610e4857610100808354040283529160200191610e73565b820191906000526020600020905b815481529060010190602001808311610e5657829003601f168201915b5050505050905090565b6000610e91610e8a612297565b848461229f565b6001905092915050565b60216020528060005260406000206000915054906101000a900460ff1681565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600254905090565b601d5481565b601f5481565b601c5481565b610f05612297565b73ffffffffffffffffffffffffffffffffffffffff16610f2361156e565b73ffffffffffffffffffffffffffffffffffffffff1614610f79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7090614361565b60405180910390fd5b670de0b6b3a76400006103e86005610f8f610ee1565b610f999190614410565b610fa39190614481565b610fad9190614481565b811015610fef576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fe690614524565b60405180910390fd5b670de0b6b3a7640000816110039190614410565b600a8190555050565b6000611019848484612468565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000611064612297565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156110e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110db906145b6565b60405180910390fd5b6110f8856110f0612297565b85840361229f565b60019150509392505050565b61dead81565b600f5481565b60006012905090565b60006111bb611126612297565b848460016000611134612297565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546111b691906145d6565b61229f565b6001905092915050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600d60009054906101000a900460ff1681565b6000602060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60175481565b600d60029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6112bd612297565b73ffffffffffffffffffffffffffffffffffffffff166112db61156e565b73ffffffffffffffffffffffffffffffffffffffff1614611331576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132890614361565b60405180910390fd5b61133b60006133d9565b565b6000611347612297565b73ffffffffffffffffffffffffffffffffffffffff1661136561156e565b73ffffffffffffffffffffffffffffffffffffffff16146113bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113b290614361565b60405180910390fd5b6000600d60006101000a81548160ff0219169083151502179055506001905090565b6113e5612297565b73ffffffffffffffffffffffffffffffffffffffff1661140361156e565b73ffffffffffffffffffffffffffffffffffffffff1614611459576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161145090614361565b60405180910390fd5b80602160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b60135481565b6114c2612297565b73ffffffffffffffffffffffffffffffffffffffff166114e061156e565b73ffffffffffffffffffffffffffffffffffffffff1614611536576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161152d90614361565b60405180910390fd5b6001600d60016101000a81548160ff0219169083151502179055506001600d60026101000a81548160ff021916908315150217905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60185481565b6060600480546115d3906143b0565b80601f01602080910402602001604051908101604052809291908181526020018280546115ff906143b0565b801561164c5780601f106116215761010080835404028352916020019161164c565b820191906000526020600020905b81548152906001019060200180831161162f57829003601f168201915b5050505050905090565b61165e612297565b73ffffffffffffffffffffffffffffffffffffffff1661167c61156e565b73ffffffffffffffffffffffffffffffffffffffff16146116d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116c990614361565b60405180910390fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611762576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117599061467c565b60405180910390fd5b61176c828261349f565b5050565b60155481565b601e5481565b601a5481565b60008060016000611791612297565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508281101561184e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118459061470e565b60405180910390fd5b611862611859612297565b8585840361229f565b600191505092915050565b600e5481565b6000611887611880612297565b8484612468565b6001905092915050565b601b5481565b60226020528060005260406000206000915054906101000a900460ff1681565b600d60019054906101000a900460ff1681565b6118d2612297565b73ffffffffffffffffffffffffffffffffffffffff166118f061156e565b73ffffffffffffffffffffffffffffffffffffffff1614611946576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161193d90614361565b60405180910390fd5b80602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7826040516119e391906140c8565b60405180910390a25050565b6119f7612297565b73ffffffffffffffffffffffffffffffffffffffff16611a1561156e565b73ffffffffffffffffffffffffffffffffffffffff1614611a6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a6290614361565b60405180910390fd5b670de0b6b3a76400006103e86005611a81610ee1565b611a8b9190614410565b611a959190614481565b611a9f9190614481565b811015611ae1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ad8906147a0565b60405180910390fd5b670de0b6b3a764000081611af59190614410565b600c8190555050565b601160009054906101000a900460ff1681565b600a5481565b6000611b21612297565b73ffffffffffffffffffffffffffffffffffffffff16611b3f61156e565b73ffffffffffffffffffffffffffffffffffffffff1614611b95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b8c90614361565b60405180910390fd5b620186a06001611ba3610ee1565b611bad9190614410565b611bb79190614481565b821015611bf9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bf090614832565b60405180910390fd5b6103e86005611c06610ee1565b611c109190614410565b611c1a9190614481565b821115611c5c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c53906148c4565b60405180910390fd5b81600b8190555060019050919050565b60125481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600b5481565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60165481565b6000611d35612297565b73ffffffffffffffffffffffffffffffffffffffff16611d5361156e565b73ffffffffffffffffffffffffffffffffffffffff1614611da9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611da090614361565b60405180910390fd5b6000601160006101000a81548160ff0219169083151502179055506001905090565b611dd3612297565b73ffffffffffffffffffffffffffffffffffffffff16611df161156e565b73ffffffffffffffffffffffffffffffffffffffff1614611e47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e3e90614361565b60405180910390fd5b6000737a250d5630b4cf539739df2c5dacb4c659f2488d9050611e6b8160016113dd565b80600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015611ef7573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611f1b91906148f9565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611f82573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611fa691906148f9565b6040518363ffffffff1660e01b8152600401611fc3929190614926565b6020604051808303816000875af1158015611fe2573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061200691906148f9565b600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550612073600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660016113dd565b6120a0600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600161349f565b6120cf30600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660001961229f565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663f305d71934306121183061126d565b60008061212361156e565b426040518863ffffffff1660e01b81526004016121459695949392919061498a565b60606040518083038185885af1158015612163573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906121889190614a00565b50505050565b60145481565b61219c612297565b73ffffffffffffffffffffffffffffffffffffffff166121ba61156e565b73ffffffffffffffffffffffffffffffffffffffff1614612210576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161220790614361565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361227f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161227690614ac5565b60405180910390fd5b612288816133d9565b50565b60195481565b600c5481565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361230e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161230590614b57565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361237d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161237490614be9565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161245b9190614199565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036124d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124ce90614c7b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612546576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161253d90614d0d565b60405180910390fd5b6000810361255f5761255a83836000613540565b6133d4565b600d60009054906101000a900460ff1615612c265761257c61156e565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156125ea57506125ba61156e565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156126235750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561265d575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156126765750600760149054906101000a900460ff16155b15612c2557600d60019054906101000a900460ff1661277057602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806127305750602060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b61276f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161276690614d79565b60405180910390fd5b5b601160009054906101000a900460ff161561293c5761278d61156e565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141580156128165750600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156128705750600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b1561293b5743601060003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054106128f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128ed90614e31565b60405180910390fd5b43601060003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b602260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156129df5750602160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612a8657600a54811115612a29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a2090614ec3565b60405180910390fd5b600c54612a358361126d565b82612a4091906145d6565b1115612a81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a7890614f2f565b60405180910390fd5b612c24565b602260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612b295750602160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612b7857600a54811115612b73576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b6a90614fc1565b60405180910390fd5b612c23565b602160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16612c2257600c54612bd58361126d565b82612be091906145d6565b1115612c21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c1890614f2f565b60405180910390fd5b5b5b5b5b5b6000612c313061126d565b90506000600b548210159050808015612c565750600d60029054906101000a900460ff165b8015612c6f5750600760149054906101000a900460ff16155b8015612cc55750602260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612d1b5750602060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612d715750602060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612db5576001600760146101000a81548160ff021916908315150217905550612d996137bf565b6000600760146101000a81548160ff0219169083151502179055505b600760149054906101000a900460ff16158015612e1b5750602260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b8015612e705750602060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b8015612ea857503073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614155b15612ffb576000670de0b6b3a76400003073ffffffffffffffffffffffffffffffffffffffff166370a08231876040518263ffffffff1660e01b8152600401612ef19190614243565b602060405180830381865afa158015612f0e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612f329190614fe1565b612f3c919061500e565b90506000811115612f7757612f76600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1661dead83613540565b5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b158015612fe157600080fd5b505af1158015612ff5573d6000803e3d6000fd5b50505050505b6000600760149054906101000a900460ff16159050602060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806130b15750602060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156130bb57600090505b600081156133c45760006130d061dead61126d565b9050602260008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561312d57506000601754115b156132385761315a606461314c60175489613b3a90919063ffffffff16565b613b5090919063ffffffff16565b91506017546019548361316d9190614410565b6131779190614481565b601d600082825461318891906145d6565b92505081905550601754601a54836131a09190614410565b6131aa9190614481565b601e60008282546131bb91906145d6565b92505081905550601754601854836131d39190614410565b6131dd9190614481565b601c60008282546131ee91906145d6565b9250508190555080601754601b54846132079190614410565b6132119190614481565b61321b919061500e565b601f600082825461322c91906145d6565b9250508190555061339f565b602260008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561329357506000601254115b1561339e57600090506132c460646132b660125489613b3a90919063ffffffff16565b613b5090919063ffffffff16565b9150601254601454836132d79190614410565b6132e19190614481565b601d60008282546132f291906145d6565b925050819055506012546015548361330a9190614410565b6133149190614481565b601e600082825461332591906145d6565b925050819055506012546013548361333d9190614410565b6133479190614481565b601c600082825461335891906145d6565b9250508190555080601254601654846133719190614410565b61337b9190614481565b613385919061500e565b601f600082825461339691906145d6565b925050819055505b5b60008211156133b4576133b3883084613540565b5b81866133c0919061500e565b9550505b6133cf878787613540565b505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80602260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036135af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016135a690614c7b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361361e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161361590614d0d565b60405180910390fd5b613629838383613b66565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156136af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016136a6906150b4565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461374291906145d6565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516137a69190614199565b60405180910390a36137b9848484613b6b565b50505050565b60006137ca3061126d565b90506000601e54601c54601d546137e191906145d6565b6137eb91906145d6565b90506000808314806137fd5750600082145b1561380a57505050613b38565b6014600b546138199190614410565b831115613832576014600b5461382f9190614410565b92505b6000600283601d54866138459190614410565b61384f9190614481565b6138599190614481565b905060006138708286613b7090919063ffffffff16565b9050600047905061388082613b86565b60006138958247613b7090919063ffffffff16565b905060006138c0876138b2601c5485613b3a90919063ffffffff16565b613b5090919063ffffffff16565b905060006138eb886138dd601e5486613b3a90919063ffffffff16565b613b5090919063ffffffff16565b905060008183856138fc919061500e565b613906919061500e565b90506000601d819055506000601c819055506000601e81905550600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168260405161396690615105565b60006040518083038185875af1925050503d80600081146139a3576040519150601f19603f3d011682016040523d82523d6000602084013e6139a8565b606091505b505080985050600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16836040516139f490615105565b60006040518083038185875af1925050503d8060008114613a31576040519150601f19603f3d011682016040523d82523d6000602084013e613a36565b606091505b505080985050600087118015613a4c5750600081115b15613a9957613a5b8782613dc9565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618682601d54604051613a909392919061511a565b60405180910390a15b6000479050600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681604051613ae490615105565b60006040518083038185875af1925050503d8060008114613b21576040519150601f19603f3d011682016040523d82523d6000602084013e613b26565b606091505b50508099505050505050505050505050505b565b60008183613b489190614410565b905092915050565b60008183613b5e9190614481565b905092915050565b505050565b505050565b60008183613b7e919061500e565b905092915050565b6000600267ffffffffffffffff811115613ba357613ba2615151565b5b604051908082528060200260200182016040528015613bd15781602001602082028036833780820191505090505b5090503081600081518110613be957613be8615180565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015613c90573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613cb491906148f9565b81600181518110613cc857613cc7615180565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050613d2f30600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff168461229f565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401613d9395949392919061526d565b600060405180830381600087803b158015613dad57600080fd5b505af1158015613dc1573d6000803e3d6000fd5b505050505050565b613df630600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff168461229f565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663f305d719823085600080600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518863ffffffff1660e01b8152600401613e7f9695949392919061498a565b60606040518083038185885af1158015613e9d573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190613ec29190614a00565b5050505050565b600080fd5b60008115159050919050565b613ee381613ece565b8114613eee57600080fd5b50565b600081359050613f0081613eda565b92915050565b600060208284031215613f1c57613f1b613ec9565b5b6000613f2a84828501613ef1565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613f6d578082015181840152602081019050613f52565b60008484015250505050565b6000601f19601f8301169050919050565b6000613f9582613f33565b613f9f8185613f3e565b9350613faf818560208601613f4f565b613fb881613f79565b840191505092915050565b60006020820190508181036000830152613fdd8184613f8a565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061401082613fe5565b9050919050565b61402081614005565b811461402b57600080fd5b50565b60008135905061403d81614017565b92915050565b6000819050919050565b61405681614043565b811461406157600080fd5b50565b6000813590506140738161404d565b92915050565b600080604083850312156140905761408f613ec9565b5b600061409e8582860161402e565b92505060206140af85828601614064565b9150509250929050565b6140c281613ece565b82525050565b60006020820190506140dd60008301846140b9565b92915050565b6000602082840312156140f9576140f8613ec9565b5b60006141078482850161402e565b91505092915050565b6000819050919050565b600061413561413061412b84613fe5565b614110565b613fe5565b9050919050565b60006141478261411a565b9050919050565b60006141598261413c565b9050919050565b6141698161414e565b82525050565b60006020820190506141846000830184614160565b92915050565b61419381614043565b82525050565b60006020820190506141ae600083018461418a565b92915050565b6000602082840312156141ca576141c9613ec9565b5b60006141d884828501614064565b91505092915050565b6000806000606084860312156141fa576141f9613ec9565b5b60006142088682870161402e565b93505060206142198682870161402e565b925050604061422a86828701614064565b9150509250925092565b61423d81614005565b82525050565b60006020820190506142586000830184614234565b92915050565b600060ff82169050919050565b6142748161425e565b82525050565b600060208201905061428f600083018461426b565b92915050565b600080604083850312156142ac576142ab613ec9565b5b60006142ba8582860161402e565b92505060206142cb85828601613ef1565b9150509250929050565b600080604083850312156142ec576142eb613ec9565b5b60006142fa8582860161402e565b925050602061430b8582860161402e565b9150509250929050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061434b602083613f3e565b915061435682614315565b602082019050919050565b6000602082019050818103600083015261437a8161433e565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806143c857607f821691505b6020821081036143db576143da614381565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061441b82614043565b915061442683614043565b925082820261443481614043565b9150828204841483151761444b5761444a6143e1565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061448c82614043565b915061449783614043565b9250826144a7576144a6614452565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20302e35250000000000000000000000000000000000602082015250565b600061450e602f83613f3e565b9150614519826144b2565b604082019050919050565b6000602082019050818103600083015261453d81614501565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b60006145a0602883613f3e565b91506145ab82614544565b604082019050919050565b600060208201905081810360008301526145cf81614593565b9050919050565b60006145e182614043565b91506145ec83614043565b9250828201905080821115614604576146036143e1565b5b92915050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b6000614666603983613f3e565b91506146718261460a565b604082019050919050565b6000602082019050818103600083015261469581614659565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006146f8602583613f3e565b91506147038261469c565b604082019050919050565b60006020820190508181036000830152614727816146eb565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b600061478a602483613f3e565b91506147958261472e565b604082019050919050565b600060208201905081810360008301526147b98161477d565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b600061481c603583613f3e565b9150614827826147c0565b604082019050919050565b6000602082019050818103600083015261484b8161480f565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b60006148ae603483613f3e565b91506148b982614852565b604082019050919050565b600060208201905081810360008301526148dd816148a1565b9050919050565b6000815190506148f381614017565b92915050565b60006020828403121561490f5761490e613ec9565b5b600061491d848285016148e4565b91505092915050565b600060408201905061493b6000830185614234565b6149486020830184614234565b9392505050565b6000819050919050565b600061497461496f61496a8461494f565b614110565b614043565b9050919050565b61498481614959565b82525050565b600060c08201905061499f6000830189614234565b6149ac602083018861418a565b6149b9604083018761497b565b6149c6606083018661497b565b6149d36080830185614234565b6149e060a083018461418a565b979650505050505050565b6000815190506149fa8161404d565b92915050565b600080600060608486031215614a1957614a18613ec9565b5b6000614a27868287016149eb565b9350506020614a38868287016149eb565b9250506040614a49868287016149eb565b9150509250925092565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614aaf602683613f3e565b9150614aba82614a53565b604082019050919050565b60006020820190508181036000830152614ade81614aa2565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000614b41602483613f3e565b9150614b4c82614ae5565b604082019050919050565b60006020820190508181036000830152614b7081614b34565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000614bd3602283613f3e565b9150614bde82614b77565b604082019050919050565b60006020820190508181036000830152614c0281614bc6565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000614c65602583613f3e565b9150614c7082614c09565b604082019050919050565b60006020820190508181036000830152614c9481614c58565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000614cf7602383613f3e565b9150614d0282614c9b565b604082019050919050565b60006020820190508181036000830152614d2681614cea565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b6000614d63601683613f3e565b9150614d6e82614d2d565b602082019050919050565b60006020820190508181036000830152614d9281614d56565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60208201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000604082015250565b6000614e1b604983613f3e565b9150614e2682614d99565b606082019050919050565b60006020820190508181036000830152614e4a81614e0e565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b6000614ead603583613f3e565b9150614eb882614e51565b604082019050919050565b60006020820190508181036000830152614edc81614ea0565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b6000614f19601383613f3e565b9150614f2482614ee3565b602082019050919050565b60006020820190508181036000830152614f4881614f0c565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b6000614fab603683613f3e565b9150614fb682614f4f565b604082019050919050565b60006020820190508181036000830152614fda81614f9e565b9050919050565b600060208284031215614ff757614ff6613ec9565b5b6000615005848285016149eb565b91505092915050565b600061501982614043565b915061502483614043565b925082820390508181111561503c5761503b6143e1565b5b92915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b600061509e602683613f3e565b91506150a982615042565b604082019050919050565b600060208201905081810360008301526150cd81615091565b9050919050565b600081905092915050565b50565b60006150ef6000836150d4565b91506150fa826150df565b600082019050919050565b6000615110826150e2565b9150819050919050565b600060608201905061512f600083018661418a565b61513c602083018561418a565b615149604083018461418a565b949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6151e481614005565b82525050565b60006151f683836151db565b60208301905092915050565b6000602082019050919050565b600061521a826151af565b61522481856151ba565b935061522f836151cb565b8060005b8381101561526057815161524788826151ea565b975061525283615202565b925050600181019050615233565b5085935050505092915050565b600060a082019050615282600083018861418a565b61528f602083018761497b565b81810360408301526152a1818661520f565b90506152b06060830185614234565b6152bd608083018461418a565b969550505050505056fea26469706673582212203893f1f3fda0df93e2456b8e049bbc44aff1533abb48e0b4538e6d3782e902e564736f6c63430008130033
Deployed Bytecode
0x60806040526004361061036f5760003560e01c806392136913116101c6578063c876d0b9116100f7578063e71dc3f511610095578063f11a24d31161006f578063f11a24d314610ca8578063f2fde38b14610cd3578063f637434214610cfc578063f8b45b0514610d2757610376565b8063e71dc3f514610c48578063e884f26014610c73578063ed99530714610c9e57610376565b8063d85ba063116100d1578063d85ba06314610b8a578063dd62ed3e14610bb5578063e2f4560514610bf2578063e4440a8614610c1d57610376565b8063c876d0b914610af7578063c8c8ebe414610b22578063d257b34f14610b4d57610376565b8063a4c82a0011610164578063b62496f51161013e578063b62496f514610a3d578063bbc0c74214610a7a578063c024666814610aa5578063c18bc19514610ace57610376565b8063a4c82a00146109aa578063a9059cbb146109d5578063adb873bd14610a1257610376565b80639c3b4fdc116101a05780639c3b4fdc146108ec5780639fccce3214610917578063a0d82dc514610942578063a457c2d71461096d57610376565b8063921369131461086d57806395d89b41146108985780639a7a23d6146108c357610376565b806339509351116102a0578063715018a61161023e5780637bce5a04116102185780637bce5a04146107d55780638a8c523c146108005780638da5cb5b146108175780638ea5220f1461084257610376565b8063715018a61461076a578063751039fc146107815780637571336a146107ac57610376565b80634fbee1931161027a5780634fbee1931461069a5780636a486a8e146106d75780636ddd17131461070257806370a082311461072d57610376565b8063395093511461060757806349bd5a5e146106445780634a62bb651461066f57610376565b80631d7778561161030d57806323b872dd116102e757806323b872dd1461054957806327c8f835146105865780632c3e486c146105b1578063313ce567146105dc57610376565b80631d777856146104ca5780631f3fed8f146104f5578063203e727e1461052057610376565b806310d5de531161034957806310d5de531461040c5780631694505e1461044957806318160ddd146104745780631a8145bb1461049f57610376565b80630223907d1461037b57806306fdde03146103a4578063095ea7b3146103cf57610376565b3661037657005b600080fd5b34801561038757600080fd5b506103a2600480360381019061039d9190613f06565b610d52565b005b3480156103b057600080fd5b506103b9610deb565b6040516103c69190613fc3565b60405180910390f35b3480156103db57600080fd5b506103f660048036038101906103f19190614079565b610e7d565b60405161040391906140c8565b60405180910390f35b34801561041857600080fd5b50610433600480360381019061042e91906140e3565b610e9b565b60405161044091906140c8565b60405180910390f35b34801561045557600080fd5b5061045e610ebb565b60405161046b919061416f565b60405180910390f35b34801561048057600080fd5b50610489610ee1565b6040516104969190614199565b60405180910390f35b3480156104ab57600080fd5b506104b4610eeb565b6040516104c19190614199565b60405180910390f35b3480156104d657600080fd5b506104df610ef1565b6040516104ec9190614199565b60405180910390f35b34801561050157600080fd5b5061050a610ef7565b6040516105179190614199565b60405180910390f35b34801561052c57600080fd5b50610547600480360381019061054291906141b4565b610efd565b005b34801561055557600080fd5b50610570600480360381019061056b91906141e1565b61100c565b60405161057d91906140c8565b60405180910390f35b34801561059257600080fd5b5061059b611104565b6040516105a89190614243565b60405180910390f35b3480156105bd57600080fd5b506105c661110a565b6040516105d39190614199565b60405180910390f35b3480156105e857600080fd5b506105f1611110565b6040516105fe919061427a565b60405180910390f35b34801561061357600080fd5b5061062e60048036038101906106299190614079565b611119565b60405161063b91906140c8565b60405180910390f35b34801561065057600080fd5b506106596111c5565b6040516106669190614243565b60405180910390f35b34801561067b57600080fd5b506106846111eb565b60405161069191906140c8565b60405180910390f35b3480156106a657600080fd5b506106c160048036038101906106bc91906140e3565b6111fe565b6040516106ce91906140c8565b60405180910390f35b3480156106e357600080fd5b506106ec611254565b6040516106f99190614199565b60405180910390f35b34801561070e57600080fd5b5061071761125a565b60405161072491906140c8565b60405180910390f35b34801561073957600080fd5b50610754600480360381019061074f91906140e3565b61126d565b6040516107619190614199565b60405180910390f35b34801561077657600080fd5b5061077f6112b5565b005b34801561078d57600080fd5b5061079661133d565b6040516107a391906140c8565b60405180910390f35b3480156107b857600080fd5b506107d360048036038101906107ce9190614295565b6113dd565b005b3480156107e157600080fd5b506107ea6114b4565b6040516107f79190614199565b60405180910390f35b34801561080c57600080fd5b506108156114ba565b005b34801561082357600080fd5b5061082c61156e565b6040516108399190614243565b60405180910390f35b34801561084e57600080fd5b50610857611598565b6040516108649190614243565b60405180910390f35b34801561087957600080fd5b506108826115be565b60405161088f9190614199565b60405180910390f35b3480156108a457600080fd5b506108ad6115c4565b6040516108ba9190613fc3565b60405180910390f35b3480156108cf57600080fd5b506108ea60048036038101906108e59190614295565b611656565b005b3480156108f857600080fd5b50610901611770565b60405161090e9190614199565b60405180910390f35b34801561092357600080fd5b5061092c611776565b6040516109399190614199565b60405180910390f35b34801561094e57600080fd5b5061095761177c565b6040516109649190614199565b60405180910390f35b34801561097957600080fd5b50610994600480360381019061098f9190614079565b611782565b6040516109a191906140c8565b60405180910390f35b3480156109b657600080fd5b506109bf61186d565b6040516109cc9190614199565b60405180910390f35b3480156109e157600080fd5b506109fc60048036038101906109f79190614079565b611873565b604051610a0991906140c8565b60405180910390f35b348015610a1e57600080fd5b50610a27611891565b604051610a349190614199565b60405180910390f35b348015610a4957600080fd5b50610a646004803603810190610a5f91906140e3565b611897565b604051610a7191906140c8565b60405180910390f35b348015610a8657600080fd5b50610a8f6118b7565b604051610a9c91906140c8565b60405180910390f35b348015610ab157600080fd5b50610acc6004803603810190610ac79190614295565b6118ca565b005b348015610ada57600080fd5b50610af56004803603810190610af091906141b4565b6119ef565b005b348015610b0357600080fd5b50610b0c611afe565b604051610b1991906140c8565b60405180910390f35b348015610b2e57600080fd5b50610b37611b11565b604051610b449190614199565b60405180910390f35b348015610b5957600080fd5b50610b746004803603810190610b6f91906141b4565b611b17565b604051610b8191906140c8565b60405180910390f35b348015610b9657600080fd5b50610b9f611c6c565b604051610bac9190614199565b60405180910390f35b348015610bc157600080fd5b50610bdc6004803603810190610bd791906142d5565b611c72565b604051610be99190614199565b60405180910390f35b348015610bfe57600080fd5b50610c07611cf9565b604051610c149190614199565b60405180910390f35b348015610c2957600080fd5b50610c32611cff565b604051610c3f9190614243565b60405180910390f35b348015610c5457600080fd5b50610c5d611d25565b604051610c6a9190614199565b60405180910390f35b348015610c7f57600080fd5b50610c88611d2b565b604051610c9591906140c8565b60405180910390f35b610ca6611dcb565b005b348015610cb457600080fd5b50610cbd61218e565b604051610cca9190614199565b60405180910390f35b348015610cdf57600080fd5b50610cfa6004803603810190610cf591906140e3565b612194565b005b348015610d0857600080fd5b50610d1161228b565b604051610d1e9190614199565b60405180910390f35b348015610d3357600080fd5b50610d3c612291565b604051610d499190614199565b60405180910390f35b610d5a612297565b73ffffffffffffffffffffffffffffffffffffffff16610d7861156e565b73ffffffffffffffffffffffffffffffffffffffff1614610dce576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc590614361565b60405180910390fd5b80600d60026101000a81548160ff02191690831515021790555050565b606060038054610dfa906143b0565b80601f0160208091040260200160405190810160405280929190818152602001828054610e26906143b0565b8015610e735780601f10610e4857610100808354040283529160200191610e73565b820191906000526020600020905b815481529060010190602001808311610e5657829003601f168201915b5050505050905090565b6000610e91610e8a612297565b848461229f565b6001905092915050565b60216020528060005260406000206000915054906101000a900460ff1681565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600254905090565b601d5481565b601f5481565b601c5481565b610f05612297565b73ffffffffffffffffffffffffffffffffffffffff16610f2361156e565b73ffffffffffffffffffffffffffffffffffffffff1614610f79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7090614361565b60405180910390fd5b670de0b6b3a76400006103e86005610f8f610ee1565b610f999190614410565b610fa39190614481565b610fad9190614481565b811015610fef576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fe690614524565b60405180910390fd5b670de0b6b3a7640000816110039190614410565b600a8190555050565b6000611019848484612468565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000611064612297565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156110e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110db906145b6565b60405180910390fd5b6110f8856110f0612297565b85840361229f565b60019150509392505050565b61dead81565b600f5481565b60006012905090565b60006111bb611126612297565b848460016000611134612297565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546111b691906145d6565b61229f565b6001905092915050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600d60009054906101000a900460ff1681565b6000602060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60175481565b600d60029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6112bd612297565b73ffffffffffffffffffffffffffffffffffffffff166112db61156e565b73ffffffffffffffffffffffffffffffffffffffff1614611331576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132890614361565b60405180910390fd5b61133b60006133d9565b565b6000611347612297565b73ffffffffffffffffffffffffffffffffffffffff1661136561156e565b73ffffffffffffffffffffffffffffffffffffffff16146113bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113b290614361565b60405180910390fd5b6000600d60006101000a81548160ff0219169083151502179055506001905090565b6113e5612297565b73ffffffffffffffffffffffffffffffffffffffff1661140361156e565b73ffffffffffffffffffffffffffffffffffffffff1614611459576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161145090614361565b60405180910390fd5b80602160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b60135481565b6114c2612297565b73ffffffffffffffffffffffffffffffffffffffff166114e061156e565b73ffffffffffffffffffffffffffffffffffffffff1614611536576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161152d90614361565b60405180910390fd5b6001600d60016101000a81548160ff0219169083151502179055506001600d60026101000a81548160ff021916908315150217905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60185481565b6060600480546115d3906143b0565b80601f01602080910402602001604051908101604052809291908181526020018280546115ff906143b0565b801561164c5780601f106116215761010080835404028352916020019161164c565b820191906000526020600020905b81548152906001019060200180831161162f57829003601f168201915b5050505050905090565b61165e612297565b73ffffffffffffffffffffffffffffffffffffffff1661167c61156e565b73ffffffffffffffffffffffffffffffffffffffff16146116d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116c990614361565b60405180910390fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611762576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117599061467c565b60405180910390fd5b61176c828261349f565b5050565b60155481565b601e5481565b601a5481565b60008060016000611791612297565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508281101561184e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118459061470e565b60405180910390fd5b611862611859612297565b8585840361229f565b600191505092915050565b600e5481565b6000611887611880612297565b8484612468565b6001905092915050565b601b5481565b60226020528060005260406000206000915054906101000a900460ff1681565b600d60019054906101000a900460ff1681565b6118d2612297565b73ffffffffffffffffffffffffffffffffffffffff166118f061156e565b73ffffffffffffffffffffffffffffffffffffffff1614611946576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161193d90614361565b60405180910390fd5b80602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7826040516119e391906140c8565b60405180910390a25050565b6119f7612297565b73ffffffffffffffffffffffffffffffffffffffff16611a1561156e565b73ffffffffffffffffffffffffffffffffffffffff1614611a6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a6290614361565b60405180910390fd5b670de0b6b3a76400006103e86005611a81610ee1565b611a8b9190614410565b611a959190614481565b611a9f9190614481565b811015611ae1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ad8906147a0565b60405180910390fd5b670de0b6b3a764000081611af59190614410565b600c8190555050565b601160009054906101000a900460ff1681565b600a5481565b6000611b21612297565b73ffffffffffffffffffffffffffffffffffffffff16611b3f61156e565b73ffffffffffffffffffffffffffffffffffffffff1614611b95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b8c90614361565b60405180910390fd5b620186a06001611ba3610ee1565b611bad9190614410565b611bb79190614481565b821015611bf9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bf090614832565b60405180910390fd5b6103e86005611c06610ee1565b611c109190614410565b611c1a9190614481565b821115611c5c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c53906148c4565b60405180910390fd5b81600b8190555060019050919050565b60125481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600b5481565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60165481565b6000611d35612297565b73ffffffffffffffffffffffffffffffffffffffff16611d5361156e565b73ffffffffffffffffffffffffffffffffffffffff1614611da9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611da090614361565b60405180910390fd5b6000601160006101000a81548160ff0219169083151502179055506001905090565b611dd3612297565b73ffffffffffffffffffffffffffffffffffffffff16611df161156e565b73ffffffffffffffffffffffffffffffffffffffff1614611e47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e3e90614361565b60405180910390fd5b6000737a250d5630b4cf539739df2c5dacb4c659f2488d9050611e6b8160016113dd565b80600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015611ef7573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611f1b91906148f9565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611f82573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611fa691906148f9565b6040518363ffffffff1660e01b8152600401611fc3929190614926565b6020604051808303816000875af1158015611fe2573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061200691906148f9565b600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550612073600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660016113dd565b6120a0600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600161349f565b6120cf30600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660001961229f565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663f305d71934306121183061126d565b60008061212361156e565b426040518863ffffffff1660e01b81526004016121459695949392919061498a565b60606040518083038185885af1158015612163573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906121889190614a00565b50505050565b60145481565b61219c612297565b73ffffffffffffffffffffffffffffffffffffffff166121ba61156e565b73ffffffffffffffffffffffffffffffffffffffff1614612210576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161220790614361565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361227f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161227690614ac5565b60405180910390fd5b612288816133d9565b50565b60195481565b600c5481565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361230e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161230590614b57565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361237d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161237490614be9565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161245b9190614199565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036124d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124ce90614c7b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612546576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161253d90614d0d565b60405180910390fd5b6000810361255f5761255a83836000613540565b6133d4565b600d60009054906101000a900460ff1615612c265761257c61156e565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156125ea57506125ba61156e565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156126235750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561265d575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156126765750600760149054906101000a900460ff16155b15612c2557600d60019054906101000a900460ff1661277057602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806127305750602060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b61276f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161276690614d79565b60405180910390fd5b5b601160009054906101000a900460ff161561293c5761278d61156e565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141580156128165750600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156128705750600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b1561293b5743601060003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054106128f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128ed90614e31565b60405180910390fd5b43601060003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b602260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156129df5750602160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612a8657600a54811115612a29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a2090614ec3565b60405180910390fd5b600c54612a358361126d565b82612a4091906145d6565b1115612a81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a7890614f2f565b60405180910390fd5b612c24565b602260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612b295750602160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612b7857600a54811115612b73576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b6a90614fc1565b60405180910390fd5b612c23565b602160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16612c2257600c54612bd58361126d565b82612be091906145d6565b1115612c21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c1890614f2f565b60405180910390fd5b5b5b5b5b5b6000612c313061126d565b90506000600b548210159050808015612c565750600d60029054906101000a900460ff165b8015612c6f5750600760149054906101000a900460ff16155b8015612cc55750602260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612d1b5750602060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612d715750602060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612db5576001600760146101000a81548160ff021916908315150217905550612d996137bf565b6000600760146101000a81548160ff0219169083151502179055505b600760149054906101000a900460ff16158015612e1b5750602260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b8015612e705750602060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b8015612ea857503073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614155b15612ffb576000670de0b6b3a76400003073ffffffffffffffffffffffffffffffffffffffff166370a08231876040518263ffffffff1660e01b8152600401612ef19190614243565b602060405180830381865afa158015612f0e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612f329190614fe1565b612f3c919061500e565b90506000811115612f7757612f76600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1661dead83613540565b5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b158015612fe157600080fd5b505af1158015612ff5573d6000803e3d6000fd5b50505050505b6000600760149054906101000a900460ff16159050602060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806130b15750602060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156130bb57600090505b600081156133c45760006130d061dead61126d565b9050602260008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561312d57506000601754115b156132385761315a606461314c60175489613b3a90919063ffffffff16565b613b5090919063ffffffff16565b91506017546019548361316d9190614410565b6131779190614481565b601d600082825461318891906145d6565b92505081905550601754601a54836131a09190614410565b6131aa9190614481565b601e60008282546131bb91906145d6565b92505081905550601754601854836131d39190614410565b6131dd9190614481565b601c60008282546131ee91906145d6565b9250508190555080601754601b54846132079190614410565b6132119190614481565b61321b919061500e565b601f600082825461322c91906145d6565b9250508190555061339f565b602260008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561329357506000601254115b1561339e57600090506132c460646132b660125489613b3a90919063ffffffff16565b613b5090919063ffffffff16565b9150601254601454836132d79190614410565b6132e19190614481565b601d60008282546132f291906145d6565b925050819055506012546015548361330a9190614410565b6133149190614481565b601e600082825461332591906145d6565b925050819055506012546013548361333d9190614410565b6133479190614481565b601c600082825461335891906145d6565b9250508190555080601254601654846133719190614410565b61337b9190614481565b613385919061500e565b601f600082825461339691906145d6565b925050819055505b5b60008211156133b4576133b3883084613540565b5b81866133c0919061500e565b9550505b6133cf878787613540565b505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80602260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036135af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016135a690614c7b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361361e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161361590614d0d565b60405180910390fd5b613629838383613b66565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156136af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016136a6906150b4565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461374291906145d6565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516137a69190614199565b60405180910390a36137b9848484613b6b565b50505050565b60006137ca3061126d565b90506000601e54601c54601d546137e191906145d6565b6137eb91906145d6565b90506000808314806137fd5750600082145b1561380a57505050613b38565b6014600b546138199190614410565b831115613832576014600b5461382f9190614410565b92505b6000600283601d54866138459190614410565b61384f9190614481565b6138599190614481565b905060006138708286613b7090919063ffffffff16565b9050600047905061388082613b86565b60006138958247613b7090919063ffffffff16565b905060006138c0876138b2601c5485613b3a90919063ffffffff16565b613b5090919063ffffffff16565b905060006138eb886138dd601e5486613b3a90919063ffffffff16565b613b5090919063ffffffff16565b905060008183856138fc919061500e565b613906919061500e565b90506000601d819055506000601c819055506000601e81905550600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168260405161396690615105565b60006040518083038185875af1925050503d80600081146139a3576040519150601f19603f3d011682016040523d82523d6000602084013e6139a8565b606091505b505080985050600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16836040516139f490615105565b60006040518083038185875af1925050503d8060008114613a31576040519150601f19603f3d011682016040523d82523d6000602084013e613a36565b606091505b505080985050600087118015613a4c5750600081115b15613a9957613a5b8782613dc9565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618682601d54604051613a909392919061511a565b60405180910390a15b6000479050600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681604051613ae490615105565b60006040518083038185875af1925050503d8060008114613b21576040519150601f19603f3d011682016040523d82523d6000602084013e613b26565b606091505b50508099505050505050505050505050505b565b60008183613b489190614410565b905092915050565b60008183613b5e9190614481565b905092915050565b505050565b505050565b60008183613b7e919061500e565b905092915050565b6000600267ffffffffffffffff811115613ba357613ba2615151565b5b604051908082528060200260200182016040528015613bd15781602001602082028036833780820191505090505b5090503081600081518110613be957613be8615180565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015613c90573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613cb491906148f9565b81600181518110613cc857613cc7615180565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050613d2f30600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff168461229f565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401613d9395949392919061526d565b600060405180830381600087803b158015613dad57600080fd5b505af1158015613dc1573d6000803e3d6000fd5b505050505050565b613df630600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff168461229f565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663f305d719823085600080600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518863ffffffff1660e01b8152600401613e7f9695949392919061498a565b60606040518083038185885af1158015613e9d573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190613ec29190614a00565b5050505050565b600080fd5b60008115159050919050565b613ee381613ece565b8114613eee57600080fd5b50565b600081359050613f0081613eda565b92915050565b600060208284031215613f1c57613f1b613ec9565b5b6000613f2a84828501613ef1565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613f6d578082015181840152602081019050613f52565b60008484015250505050565b6000601f19601f8301169050919050565b6000613f9582613f33565b613f9f8185613f3e565b9350613faf818560208601613f4f565b613fb881613f79565b840191505092915050565b60006020820190508181036000830152613fdd8184613f8a565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061401082613fe5565b9050919050565b61402081614005565b811461402b57600080fd5b50565b60008135905061403d81614017565b92915050565b6000819050919050565b61405681614043565b811461406157600080fd5b50565b6000813590506140738161404d565b92915050565b600080604083850312156140905761408f613ec9565b5b600061409e8582860161402e565b92505060206140af85828601614064565b9150509250929050565b6140c281613ece565b82525050565b60006020820190506140dd60008301846140b9565b92915050565b6000602082840312156140f9576140f8613ec9565b5b60006141078482850161402e565b91505092915050565b6000819050919050565b600061413561413061412b84613fe5565b614110565b613fe5565b9050919050565b60006141478261411a565b9050919050565b60006141598261413c565b9050919050565b6141698161414e565b82525050565b60006020820190506141846000830184614160565b92915050565b61419381614043565b82525050565b60006020820190506141ae600083018461418a565b92915050565b6000602082840312156141ca576141c9613ec9565b5b60006141d884828501614064565b91505092915050565b6000806000606084860312156141fa576141f9613ec9565b5b60006142088682870161402e565b93505060206142198682870161402e565b925050604061422a86828701614064565b9150509250925092565b61423d81614005565b82525050565b60006020820190506142586000830184614234565b92915050565b600060ff82169050919050565b6142748161425e565b82525050565b600060208201905061428f600083018461426b565b92915050565b600080604083850312156142ac576142ab613ec9565b5b60006142ba8582860161402e565b92505060206142cb85828601613ef1565b9150509250929050565b600080604083850312156142ec576142eb613ec9565b5b60006142fa8582860161402e565b925050602061430b8582860161402e565b9150509250929050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061434b602083613f3e565b915061435682614315565b602082019050919050565b6000602082019050818103600083015261437a8161433e565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806143c857607f821691505b6020821081036143db576143da614381565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061441b82614043565b915061442683614043565b925082820261443481614043565b9150828204841483151761444b5761444a6143e1565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061448c82614043565b915061449783614043565b9250826144a7576144a6614452565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20302e35250000000000000000000000000000000000602082015250565b600061450e602f83613f3e565b9150614519826144b2565b604082019050919050565b6000602082019050818103600083015261453d81614501565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b60006145a0602883613f3e565b91506145ab82614544565b604082019050919050565b600060208201905081810360008301526145cf81614593565b9050919050565b60006145e182614043565b91506145ec83614043565b9250828201905080821115614604576146036143e1565b5b92915050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b6000614666603983613f3e565b91506146718261460a565b604082019050919050565b6000602082019050818103600083015261469581614659565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006146f8602583613f3e565b91506147038261469c565b604082019050919050565b60006020820190508181036000830152614727816146eb565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b600061478a602483613f3e565b91506147958261472e565b604082019050919050565b600060208201905081810360008301526147b98161477d565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b600061481c603583613f3e565b9150614827826147c0565b604082019050919050565b6000602082019050818103600083015261484b8161480f565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b60006148ae603483613f3e565b91506148b982614852565b604082019050919050565b600060208201905081810360008301526148dd816148a1565b9050919050565b6000815190506148f381614017565b92915050565b60006020828403121561490f5761490e613ec9565b5b600061491d848285016148e4565b91505092915050565b600060408201905061493b6000830185614234565b6149486020830184614234565b9392505050565b6000819050919050565b600061497461496f61496a8461494f565b614110565b614043565b9050919050565b61498481614959565b82525050565b600060c08201905061499f6000830189614234565b6149ac602083018861418a565b6149b9604083018761497b565b6149c6606083018661497b565b6149d36080830185614234565b6149e060a083018461418a565b979650505050505050565b6000815190506149fa8161404d565b92915050565b600080600060608486031215614a1957614a18613ec9565b5b6000614a27868287016149eb565b9350506020614a38868287016149eb565b9250506040614a49868287016149eb565b9150509250925092565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614aaf602683613f3e565b9150614aba82614a53565b604082019050919050565b60006020820190508181036000830152614ade81614aa2565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000614b41602483613f3e565b9150614b4c82614ae5565b604082019050919050565b60006020820190508181036000830152614b7081614b34565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000614bd3602283613f3e565b9150614bde82614b77565b604082019050919050565b60006020820190508181036000830152614c0281614bc6565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000614c65602583613f3e565b9150614c7082614c09565b604082019050919050565b60006020820190508181036000830152614c9481614c58565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000614cf7602383613f3e565b9150614d0282614c9b565b604082019050919050565b60006020820190508181036000830152614d2681614cea565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b6000614d63601683613f3e565b9150614d6e82614d2d565b602082019050919050565b60006020820190508181036000830152614d9281614d56565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60208201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000604082015250565b6000614e1b604983613f3e565b9150614e2682614d99565b606082019050919050565b60006020820190508181036000830152614e4a81614e0e565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b6000614ead603583613f3e565b9150614eb882614e51565b604082019050919050565b60006020820190508181036000830152614edc81614ea0565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b6000614f19601383613f3e565b9150614f2482614ee3565b602082019050919050565b60006020820190508181036000830152614f4881614f0c565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b6000614fab603683613f3e565b9150614fb682614f4f565b604082019050919050565b60006020820190508181036000830152614fda81614f9e565b9050919050565b600060208284031215614ff757614ff6613ec9565b5b6000615005848285016149eb565b91505092915050565b600061501982614043565b915061502483614043565b925082820390508181111561503c5761503b6143e1565b5b92915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b600061509e602683613f3e565b91506150a982615042565b604082019050919050565b600060208201905081810360008301526150cd81615091565b9050919050565b600081905092915050565b50565b60006150ef6000836150d4565b91506150fa826150df565b600082019050919050565b6000615110826150e2565b9150819050919050565b600060608201905061512f600083018661418a565b61513c602083018561418a565b615149604083018461418a565b949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6151e481614005565b82525050565b60006151f683836151db565b60208301905092915050565b6000602082019050919050565b600061521a826151af565b61522481856151ba565b935061522f836151cb565b8060005b8381101561526057815161524788826151ea565b975061525283615202565b925050600181019050615233565b5085935050505092915050565b600060a082019050615282600083018861418a565b61528f602083018761497b565b81810360408301526152a1818661520f565b90506152b06060830185614234565b6152bd608083018461418a565b969550505050505056fea26469706673582212203893f1f3fda0df93e2456b8e049bbc44aff1533abb48e0b4538e6d3782e902e564736f6c63430008130033
Deployed Bytecode Sourcemap
32779:16286:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39865:99;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9706:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11873:169;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34296:63;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32856:41;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10826:108;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34045:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34119:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34005:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39054:275;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;12524:492;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32939:53;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33370:45;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10668:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13425:215;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32904:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33214:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40670:126;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33826:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33294:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10997:127;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2941:103;;;;;;;;;;;;;:::i;:::-;;38162:121;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39602:167;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33687:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37998:112;;;;;;;;;;;;;:::i;:::-;;2290:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33066:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33861:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9925:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40162:304;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33761:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34085:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33937:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14143:413;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33334:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11337:175;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33969:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34517:57;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33254:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39972:182;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39337:256;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33604:40;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33099:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38549:497;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33653:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11575:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33141:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33032:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33792:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38344:135;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37154:790;;;:::i;:::-;;33724:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3199:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33899:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33181:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39865:99;2521:12;:10;:12::i;:::-;2510:23;;:7;:5;:7::i;:::-;:23;;;2502:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39949:7:::1;39935:11;;:21;;;;;;;;;;;;;;;;;;39865:99:::0;:::o;9706:100::-;9760:13;9793:5;9786:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9706:100;:::o;11873:169::-;11956:4;11973:39;11982:12;:10;:12::i;:::-;11996:7;12005:6;11973:8;:39::i;:::-;12030:4;12023:11;;11873:169;;;;:::o;34296:63::-;;;;;;;;;;;;;;;;;;;;;;:::o;32856:41::-;;;;;;;;;;;;;:::o;10826:108::-;10887:7;10914:12;;10907:19;;10826:108;:::o;34045:33::-;;;;:::o;34119:28::-;;;;:::o;34005:33::-;;;;:::o;39054:275::-;2521:12;:10;:12::i;:::-;2510:23;;:7;:5;:7::i;:::-;:23;;;2502:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39191:4:::1;39183;39178:1;39162:13;:11;:13::i;:::-;:17;;;;:::i;:::-;39161:26;;;;:::i;:::-;39160:35;;;;:::i;:::-;39150:6;:45;;39128:142;;;;;;;;;;;;:::i;:::-;;;;;;;;;39314:6;39304;:17;;;;:::i;:::-;39281:20;:40;;;;39054:275:::0;:::o;12524:492::-;12664:4;12681:36;12691:6;12699:9;12710:6;12681:9;:36::i;:::-;12730:24;12757:11;:19;12769:6;12757:19;;;;;;;;;;;;;;;:33;12777:12;:10;:12::i;:::-;12757:33;;;;;;;;;;;;;;;;12730:60;;12829:6;12809:16;:26;;12801:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;12916:57;12925:6;12933:12;:10;:12::i;:::-;12966:6;12947:16;:25;12916:8;:57::i;:::-;13004:4;12997:11;;;12524:492;;;;;:::o;32939:53::-;32985:6;32939:53;:::o;33370:45::-;;;;:::o;10668:93::-;10726:5;10751:2;10744:9;;10668:93;:::o;13425:215::-;13513:4;13530:80;13539:12;:10;:12::i;:::-;13553:7;13599:10;13562:11;:25;13574:12;:10;:12::i;:::-;13562:25;;;;;;;;;;;;;;;:34;13588:7;13562:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;13530:8;:80::i;:::-;13628:4;13621:11;;13425:215;;;;:::o;32904:28::-;;;;;;;;;;;;;:::o;33214:33::-;;;;;;;;;;;;;:::o;40670:126::-;40736:4;40760:19;:28;40780:7;40760:28;;;;;;;;;;;;;;;;;;;;;;;;;40753:35;;40670:126;;;:::o;33826:28::-;;;;:::o;33294:31::-;;;;;;;;;;;;;:::o;10997:127::-;11071:7;11098:9;:18;11108:7;11098:18;;;;;;;;;;;;;;;;11091:25;;10997:127;;;:::o;2941:103::-;2521:12;:10;:12::i;:::-;2510:23;;:7;:5;:7::i;:::-;:23;;;2502:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3006:30:::1;3033:1;3006:18;:30::i;:::-;2941:103::o:0;38162:121::-;38214:4;2521:12;:10;:12::i;:::-;2510:23;;:7;:5;:7::i;:::-;:23;;;2502:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38248:5:::1;38231:14;;:22;;;;;;;;;;;;;;;;;;38271:4;38264:11;;38162:121:::0;:::o;39602:167::-;2521:12;:10;:12::i;:::-;2510:23;;:7;:5;:7::i;:::-;:23;;;2502:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39757:4:::1;39715:31;:39;39747:6;39715:39;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;39602:167:::0;;:::o;33687:30::-;;;;:::o;37998:112::-;2521:12;:10;:12::i;:::-;2510:23;;:7;:5;:7::i;:::-;:23;;;2502:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38069:4:::1;38053:13;;:20;;;;;;;;;;;;;;;;;;38098:4;38084:11;;:18;;;;;;;;;;;;;;;;;;37998:112::o:0;2290:87::-;2336:7;2363:6;;;;;;;;;;;2356:13;;2290:87;:::o;33066:24::-;;;;;;;;;;;;;:::o;33861:31::-;;;;:::o;9925:104::-;9981:13;10014:7;10007:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9925:104;:::o;40162:304::-;2521:12;:10;:12::i;:::-;2510:23;;:7;:5;:7::i;:::-;:23;;;2502:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40306:13:::1;;;;;;;;;;;40298:21;;:4;:21;;::::0;40276:128:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;40417:41;40446:4;40452:5;40417:28;:41::i;:::-;40162:304:::0;;:::o;33761:24::-;;;;:::o;34085:27::-;;;;:::o;33937:25::-;;;;:::o;14143:413::-;14236:4;14253:24;14280:11;:25;14292:12;:10;:12::i;:::-;14280:25;;;;;;;;;;;;;;;:34;14306:7;14280:34;;;;;;;;;;;;;;;;14253:61;;14353:15;14333:16;:35;;14325:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;14446:67;14455:12;:10;:12::i;:::-;14469:7;14497:15;14478:16;:34;14446:8;:67::i;:::-;14544:4;14537:11;;;14143:413;;;;:::o;33334:29::-;;;;:::o;11337:175::-;11423:4;11440:42;11450:12;:10;:12::i;:::-;11464:9;11475:6;11440:9;:42::i;:::-;11500:4;11493:11;;11337:175;;;;:::o;33969:26::-;;;;:::o;34517:57::-;;;;;;;;;;;;;;;;;;;;;;:::o;33254:33::-;;;;;;;;;;;;;:::o;39972:182::-;2521:12;:10;:12::i;:::-;2510:23;;:7;:5;:7::i;:::-;:23;;;2502:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40088:8:::1;40057:19;:28;40077:7;40057:28;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;40128:7;40112:34;;;40137:8;40112:34;;;;;;:::i;:::-;;;;;;;;39972:182:::0;;:::o;39337:256::-;2521:12;:10;:12::i;:::-;2510:23;;:7;:5;:7::i;:::-;:23;;;2502:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39477:4:::1;39469;39464:1;39448:13;:11;:13::i;:::-;:17;;;;:::i;:::-;39447:26;;;;:::i;:::-;39446:35;;;;:::i;:::-;39436:6;:45;;39414:131;;;;;;;;;;;;:::i;:::-;;;;;;;;;39578:6;39568;:17;;;;:::i;:::-;39556:9;:29;;;;39337:256:::0;:::o;33604:40::-;;;;;;;;;;;;;:::o;33099:35::-;;;;:::o;38549:497::-;38657:4;2521:12;:10;:12::i;:::-;2510:23;;:7;:5;:7::i;:::-;:23;;;2502:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38736:6:::1;38731:1;38715:13;:11;:13::i;:::-;:17;;;;:::i;:::-;38714:28;;;;:::i;:::-;38701:9;:41;;38679:144;;;;;;;;;;;;:::i;:::-;;;;;;;;;38891:4;38886:1;38870:13;:11;:13::i;:::-;:17;;;;:::i;:::-;38869:26;;;;:::i;:::-;38856:9;:39;;38834:141;;;;;;;;;;;;:::i;:::-;;;;;;;;;39007:9;38986:18;:30;;;;39034:4;39027:11;;38549:497:::0;;;:::o;33653:27::-;;;;:::o;11575:151::-;11664:7;11691:11;:18;11703:5;11691:18;;;;;;;;;;;;;;;:27;11710:7;11691:27;;;;;;;;;;;;;;;;11684:34;;11575:151;;;;:::o;33141:33::-;;;;:::o;33032:27::-;;;;;;;;;;;;;:::o;33792:25::-;;;;:::o;38344:135::-;38404:4;2521:12;:10;:12::i;:::-;2510:23;;:7;:5;:7::i;:::-;:23;;;2502:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38444:5:::1;38421:20;;:28;;;;;;;;;;;;;;;;;;38467:4;38460:11;;38344:135:::0;:::o;37154:790::-;2521:12;:10;:12::i;:::-;2510:23;;:7;:5;:7::i;:::-;:23;;;2502:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37219:35:::1;37290:42;37219:124;;37356:58;37390:16;37409:4;37356:25;:58::i;:::-;37443:16;37425:15;;:34;;;;;;;;;;;;;;;;;;37506:16;:24;;;:26;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;37488:70;;;37567:4;37574:16;:21;;;:23;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;37488:110;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;37472:13;;:126;;;;;;;;;;;;;;;;;;37609:55;37643:13;;;;;;;;;;;37659:4;37609:25;:55::i;:::-;37675:58;37712:13;;;;;;;;;;;37728:4;37675:28;:58::i;:::-;37746:62;37763:4;37778:15;;;;;;;;;;;37805:1;37796:11;37746:8;:62::i;:::-;37819:15;;;;;;;;;;;:31;;;37858:9;37877:4;37883:24;37901:4;37883:9;:24::i;:::-;37908:1;37910::::0;37912:7:::1;:5;:7::i;:::-;37920:15;37819:117;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;37208:736;37154:790::o:0;33724:30::-;;;;:::o;3199:201::-;2521:12;:10;:12::i;:::-;2510:23;;:7;:5;:7::i;:::-;:23;;;2502:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3308:1:::1;3288:22;;:8;:22;;::::0;3280:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;3364:28;3383:8;3364:18;:28::i;:::-;3199:201:::0;:::o;33899:31::-;;;;:::o;33181:24::-;;;;:::o;963:98::-;1016:7;1043:10;1036:17;;963:98;:::o;17827:380::-;17980:1;17963:19;;:5;:19;;;17955:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18061:1;18042:21;;:7;:21;;;18034:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18145:6;18115:11;:18;18127:5;18115:18;;;;;;;;;;;;;;;:27;18134:7;18115:27;;;;;;;;;;;;;;;:36;;;;18183:7;18167:32;;18176:5;18167:32;;;18192:6;18167:32;;;;;;:::i;:::-;;;;;;;;17827:380;;;:::o;40804:5360::-;40952:1;40936:18;;:4;:18;;;40928:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41029:1;41015:16;;:2;:16;;;41007:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;41098:1;41088:6;:11;41084:93;;41116:28;41132:4;41138:2;41142:1;41116:15;:28::i;:::-;41159:7;;41084:93;41193:14;;;;;;;;;;;41189:2487;;;41254:7;:5;:7::i;:::-;41246:15;;:4;:15;;;;:49;;;;;41288:7;:5;:7::i;:::-;41282:13;;:2;:13;;;;41246:49;:86;;;;;41330:1;41316:16;;:2;:16;;;;41246:86;:128;;;;;41367:6;41353:21;;:2;:21;;;;41246:128;:158;;;;;41396:8;;;;;;;;;;;41395:9;41246:158;41224:2441;;;41444:13;;;;;;;;;;;41439:223;;41516:19;:25;41536:4;41516:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;41545:19;:23;41565:2;41545:23;;;;;;;;;;;;;;;;;;;;;;;;;41516:52;41482:160;;;;;;;;;;;;:::i;:::-;;;;;;;;;41439:223;41818:20;;;;;;;;;;;41814:641;;;41899:7;:5;:7::i;:::-;41893:13;;:2;:13;;;;:72;;;;;41949:15;;;;;;;;;;;41935:30;;:2;:30;;;;41893:72;:129;;;;;42008:13;;;;;;;;;;;41994:28;;:2;:28;;;;41893:129;41863:573;;;42186:12;42111:28;:39;42140:9;42111:39;;;;;;;;;;;;;;;;:87;42073:258;;;;;;;;;;;;:::i;:::-;;;;;;;;;42400:12;42358:28;:39;42387:9;42358:39;;;;;;;;;;;;;;;:54;;;;41863:573;41814:641;42529:25;:31;42555:4;42529:31;;;;;;;;;;;;;;;;;;;;;;;;;:92;;;;;42586:31;:35;42618:2;42586:35;;;;;;;;;;;;;;;;;;;;;;;;;42585:36;42529:92;42503:1147;;;42708:20;;42698:6;:30;;42664:169;;;;;;;;;;;;:::i;:::-;;;;;;;;;42916:9;;42899:13;42909:2;42899:9;:13::i;:::-;42890:6;:22;;;;:::i;:::-;:35;;42856:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;42503:1147;;;43094:25;:29;43120:2;43094:29;;;;;;;;;;;;;;;;;;;;;;;;;:92;;;;;43149:31;:37;43181:4;43149:37;;;;;;;;;;;;;;;;;;;;;;;;;43148:38;43094:92;43068:582;;;43273:20;;43263:6;:30;;43229:170;;;;;;;;;;;;:::i;:::-;;;;;;;;;43068:582;;;43430:31;:35;43462:2;43430:35;;;;;;;;;;;;;;;;;;;;;;;;;43425:225;;43550:9;;43533:13;43543:2;43533:9;:13::i;:::-;43524:6;:22;;;;:::i;:::-;:35;;43490:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;43425:225;43068:582;42503:1147;41224:2441;41189:2487;43688:28;43719:24;43737:4;43719:9;:24::i;:::-;43688:55;;43754:12;43793:18;;43769:20;:42;;43754:57;;43842:7;:35;;;;;43866:11;;;;;;;;;;;43842:35;:61;;;;;43895:8;;;;;;;;;;;43894:9;43842:61;:110;;;;;43921:25;:31;43947:4;43921:31;;;;;;;;;;;;;;;;;;;;;;;;;43920:32;43842:110;:153;;;;;43970:19;:25;43990:4;43970:25;;;;;;;;;;;;;;;;;;;;;;;;;43969:26;43842:153;:194;;;;;44013:19;:23;44033:2;44013:23;;;;;;;;;;;;;;;;;;;;;;;;;44012:24;43842:194;43824:326;;;44074:4;44063:8;;:15;;;;;;;;;;;;;;;;;;44095:10;:8;:10::i;:::-;44133:5;44122:8;;:16;;;;;;;;;;;;;;;;;;43824:326;44166:8;;;;;;;;;;;44165:9;:42;;;;;44178:25;:29;44204:2;44178:29;;;;;;;;;;;;;;;;;;;;;;;;;44165:42;:71;;;;;44211:19;:25;44231:4;44211:25;;;;;;;;;;;;;;;;;;;;;;;;;44165:71;:94;;;;;44254:4;44240:19;;:4;:19;;;;44165:94;44162:350;;;44277:15;44316:4;44295;:14;;;44310:2;44295:18;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:25;;;;:::i;:::-;44277:43;;44353:1;44343:7;:11;44339:107;;;44374:56;44390:13;;;;;;;;;;;44413:6;44422:7;44374:15;:56::i;:::-;44339:107;44479:13;;;;;;;;;;;44464:34;;;:36;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44261:251;44162:350;44524:12;44540:8;;;;;;;;;;;44539:9;44524:24;;44660:19;:25;44680:4;44660:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;44689:19;:23;44709:2;44689:23;;;;;;;;;;;;;;;;;;;;;;;;;44660:52;44656:100;;;44739:5;44729:15;;44656:100;44768:12;44875:7;44871:1240;;;44901:19;44923:22;32985:6;44923:9;:22::i;:::-;44901:44;;44988:25;:29;45014:2;44988:29;;;;;;;;;;;;;;;;;;;;;;;;;:50;;;;;45037:1;45021:13;;:17;44988:50;44984:980;;;45066:34;45096:3;45066:25;45077:13;;45066:6;:10;;:25;;;;:::i;:::-;:29;;:34;;;;:::i;:::-;45059:41;;45175:13;;45155:16;;45148:4;:23;;;;:::i;:::-;45147:41;;;;:::i;:::-;45125:18;;:63;;;;;;;:::i;:::-;;;;;;;;45245:13;;45231:10;;45224:4;:17;;;;:::i;:::-;45223:35;;;;:::i;:::-;45207:12;;:51;;;;;;;:::i;:::-;;;;;;;;45327:13;;45307:16;;45300:4;:23;;;;:::i;:::-;45299:41;;;;:::i;:::-;45277:18;;:63;;;;;;;:::i;:::-;;;;;;;;45415:11;45399:13;;45384:11;;45377:4;:18;;;;:::i;:::-;45376:36;;;;:::i;:::-;:50;;;;:::i;:::-;45359:13;;:67;;;;;;;:::i;:::-;;;;;;;;44984:980;;;45488:25;:31;45514:4;45488:31;;;;;;;;;;;;;;;;;;;;;;;;;:51;;;;;45538:1;45523:12;;:16;45488:51;45484:480;;;45574:1;45560:15;;45601:33;45630:3;45601:24;45612:12;;45601:6;:10;;:24;;;;:::i;:::-;:28;;:33;;;;:::i;:::-;45594:40;;45704:12;;45685:15;;45678:4;:22;;;;:::i;:::-;45677:39;;;;:::i;:::-;45655:18;;:61;;;;;;;:::i;:::-;;;;;;;;45772:12;;45759:9;;45752:4;:16;;;;:::i;:::-;45751:33;;;;:::i;:::-;45735:12;;:49;;;;;;;:::i;:::-;;;;;;;;45852:12;;45833:15;;45826:4;:22;;;;:::i;:::-;45825:39;;;;:::i;:::-;45803:18;;:61;;;;;;;:::i;:::-;;;;;;;;45937:11;45922:12;;45908:10;;45901:4;:17;;;;:::i;:::-;45900:34;;;;:::i;:::-;:48;;;;:::i;:::-;45883:13;;:65;;;;;;;:::i;:::-;;;;;;;;45484:480;44984:980;45991:1;45984:4;:8;45980:91;;;46013:42;46029:4;46043;46050;46013:15;:42::i;:::-;45980:91;46095:4;46085:14;;;;;:::i;:::-;;;44884:1227;44871:1240;46123:33;46139:4;46145:2;46149:6;46123:15;:33::i;:::-;40917:5247;;;;40804:5360;;;;:::o;3560:191::-;3634:16;3653:6;;;;;;;;;;;3634:25;;3679:8;3670:6;;:17;;;;;;;;;;;;;;;;;;3734:8;3703:40;;3724:8;3703:40;;;;;;;;;;;;3623:128;3560:191;:::o;40474:188::-;40591:5;40557:25;:31;40583:4;40557:31;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;40648:5;40614:40;;40642:4;40614:40;;;;;;;;;;;;40474:188;;:::o;15046:733::-;15204:1;15186:20;;:6;:20;;;15178:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;15288:1;15267:23;;:9;:23;;;15259:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;15343:47;15364:6;15372:9;15383:6;15343:20;:47::i;:::-;15403:21;15427:9;:17;15437:6;15427:17;;;;;;;;;;;;;;;;15403:41;;15480:6;15463:13;:23;;15455:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;15601:6;15585:13;:22;15565:9;:17;15575:6;15565:17;;;;;;;;;;;;;;;:42;;;;15653:6;15629:9;:20;15639:9;15629:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;15694:9;15677:35;;15686:6;15677:35;;;15705:6;15677:35;;;;;;:::i;:::-;;;;;;;;15725:46;15745:6;15753:9;15764:6;15725:19;:46::i;:::-;15167:612;15046:733;;;:::o;47292:1770::-;47333:23;47359:24;47377:4;47359:9;:24::i;:::-;47333:50;;47394:25;47464:12;;47443:18;;47422;;:39;;;;:::i;:::-;:54;;;;:::i;:::-;47394:82;;47487:12;47535:1;47516:15;:20;:46;;;;47561:1;47540:17;:22;47516:46;47512:85;;;47579:7;;;;;47512:85;47652:2;47631:18;;:23;;;;:::i;:::-;47613:15;:41;47609:115;;;47710:2;47689:18;;:23;;;;:::i;:::-;47671:41;;47609:115;47785:23;47872:1;47852:17;47830:18;;47812:15;:36;;;;:::i;:::-;47811:58;;;;:::i;:::-;:62;;;;:::i;:::-;47785:88;;47884:26;47913:36;47933:15;47913;:19;;:36;;;;:::i;:::-;47884:65;;47962:25;47990:21;47962:49;;48024:36;48041:18;48024:16;:36::i;:::-;48073:18;48094:44;48120:17;48094:21;:25;;:44;;;;:::i;:::-;48073:65;;48151:23;48177:57;48216:17;48177:34;48192:18;;48177:10;:14;;:34;;;;:::i;:::-;:38;;:57;;;;:::i;:::-;48151:83;;48245:17;48265:51;48298:17;48265:28;48280:12;;48265:10;:14;;:28;;;;:::i;:::-;:32;;:51;;;;:::i;:::-;48245:71;;48327:23;48384:9;48366:15;48353:10;:28;;;;:::i;:::-;:40;;;;:::i;:::-;48327:66;;48427:1;48406:18;:22;;;;48460:1;48439:18;:22;;;;48487:1;48472:12;:16;;;;48523:9;;;;;;;;;;;48515:23;;48546:9;48515:45;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48501:59;;;;;48593:12;;;;;;;;;;;48585:26;;48619:15;48585:54;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48571:68;;;;;48676:1;48658:15;:19;:42;;;;;48699:1;48681:15;:19;48658:42;48654:278;;;48717:46;48730:15;48747;48717:12;:46::i;:::-;48783:137;48816:18;48853:15;48887:18;;48783:137;;;;;;;;:::i;:::-;;;;;;;;48654:278;48944:15;48962:21;48944:39;;49016:12;;;;;;;;;;;49008:26;;49042:7;49008:46;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48994:60;;;;;47320:1742;;;;;;;;;;;47292:1770;:::o;23280:98::-;23338:7;23369:1;23365;:5;;;;:::i;:::-;23358:12;;23280:98;;;;:::o;23679:::-;23737:7;23768:1;23764;:5;;;;:::i;:::-;23757:12;;23679:98;;;;:::o;18807:125::-;;;;:::o;19536:124::-;;;;:::o;22923:98::-;22981:7;23012:1;23008;:5;;;;:::i;:::-;23001:12;;22923:98;;;;:::o;46172:589::-;46298:21;46336:1;46322:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46298:40;;46367:4;46349;46354:1;46349:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;;;46393:15;;;;;;;;;;;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;46383:4;46388:1;46383:7;;;;;;;;:::i;:::-;;;;;;;:32;;;;;;;;;;;46428:62;46445:4;46460:15;;;;;;;;;;;46478:11;46428:8;:62::i;:::-;46529:15;;;;;;;;;;;:66;;;46610:11;46636:1;46680:4;46707;46727:15;46529:224;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46227:534;46172:589;:::o;46769:515::-;46917:62;46934:4;46949:15;;;;;;;;;;;46967:11;46917:8;:62::i;:::-;47022:15;;;;;;;;;;;:31;;;47061:9;47094:4;47114:11;47140:1;47183;47226:9;;;;;;;;;;;47250:15;47022:254;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;46769:515;;:::o;88:117:1:-;197:1;194;187:12;334:90;368:7;411:5;404:13;397:21;386:32;;334:90;;;:::o;430:116::-;500:21;515:5;500:21;:::i;:::-;493:5;490:32;480:60;;536:1;533;526:12;480:60;430:116;:::o;552:133::-;595:5;633:6;620:20;611:29;;649:30;673:5;649:30;:::i;:::-;552:133;;;;:::o;691:323::-;747:6;796:2;784:9;775:7;771:23;767:32;764:119;;;802:79;;:::i;:::-;764:119;922:1;947:50;989:7;980:6;969:9;965:22;947:50;:::i;:::-;937:60;;893:114;691:323;;;;:::o;1020:99::-;1072:6;1106:5;1100:12;1090:22;;1020:99;;;:::o;1125:169::-;1209:11;1243:6;1238:3;1231:19;1283:4;1278:3;1274:14;1259:29;;1125:169;;;;:::o;1300:246::-;1381:1;1391:113;1405:6;1402:1;1399:13;1391:113;;;1490:1;1485:3;1481:11;1475:18;1471:1;1466:3;1462:11;1455:39;1427:2;1424:1;1420:10;1415:15;;1391:113;;;1538:1;1529:6;1524:3;1520:16;1513:27;1362:184;1300:246;;;:::o;1552:102::-;1593:6;1644:2;1640:7;1635:2;1628:5;1624:14;1620:28;1610:38;;1552:102;;;:::o;1660:377::-;1748:3;1776:39;1809:5;1776:39;:::i;:::-;1831:71;1895:6;1890:3;1831:71;:::i;:::-;1824:78;;1911:65;1969:6;1964:3;1957:4;1950:5;1946:16;1911:65;:::i;:::-;2001:29;2023:6;2001:29;:::i;:::-;1996:3;1992:39;1985:46;;1752:285;1660:377;;;;:::o;2043:313::-;2156:4;2194:2;2183:9;2179:18;2171:26;;2243:9;2237:4;2233:20;2229:1;2218:9;2214:17;2207:47;2271:78;2344:4;2335:6;2271:78;:::i;:::-;2263:86;;2043:313;;;;:::o;2362:126::-;2399:7;2439:42;2432:5;2428:54;2417:65;;2362:126;;;:::o;2494:96::-;2531:7;2560:24;2578:5;2560:24;:::i;:::-;2549:35;;2494:96;;;:::o;2596:122::-;2669:24;2687:5;2669:24;:::i;:::-;2662:5;2659:35;2649:63;;2708:1;2705;2698:12;2649:63;2596:122;:::o;2724:139::-;2770:5;2808:6;2795:20;2786:29;;2824:33;2851:5;2824:33;:::i;:::-;2724:139;;;;:::o;2869:77::-;2906:7;2935:5;2924:16;;2869:77;;;:::o;2952:122::-;3025:24;3043:5;3025:24;:::i;:::-;3018:5;3015:35;3005:63;;3064:1;3061;3054:12;3005:63;2952:122;:::o;3080:139::-;3126:5;3164:6;3151:20;3142:29;;3180:33;3207:5;3180:33;:::i;:::-;3080:139;;;;:::o;3225:474::-;3293:6;3301;3350:2;3338:9;3329:7;3325:23;3321:32;3318:119;;;3356:79;;:::i;:::-;3318:119;3476:1;3501:53;3546:7;3537:6;3526:9;3522:22;3501:53;:::i;:::-;3491:63;;3447:117;3603:2;3629:53;3674:7;3665:6;3654:9;3650:22;3629:53;:::i;:::-;3619:63;;3574:118;3225:474;;;;;:::o;3705:109::-;3786:21;3801:5;3786:21;:::i;:::-;3781:3;3774:34;3705:109;;:::o;3820:210::-;3907:4;3945:2;3934:9;3930:18;3922:26;;3958:65;4020:1;4009:9;4005:17;3996:6;3958:65;:::i;:::-;3820:210;;;;:::o;4036:329::-;4095:6;4144:2;4132:9;4123:7;4119:23;4115:32;4112:119;;;4150:79;;:::i;:::-;4112:119;4270:1;4295:53;4340:7;4331:6;4320:9;4316:22;4295:53;:::i;:::-;4285:63;;4241:117;4036:329;;;;:::o;4371:60::-;4399:3;4420:5;4413:12;;4371:60;;;:::o;4437:142::-;4487:9;4520:53;4538:34;4547:24;4565:5;4547:24;:::i;:::-;4538:34;:::i;:::-;4520:53;:::i;:::-;4507:66;;4437:142;;;:::o;4585:126::-;4635:9;4668:37;4699:5;4668:37;:::i;:::-;4655:50;;4585:126;;;:::o;4717:153::-;4794:9;4827:37;4858:5;4827:37;:::i;:::-;4814:50;;4717:153;;;:::o;4876:185::-;4990:64;5048:5;4990:64;:::i;:::-;4985:3;4978:77;4876:185;;:::o;5067:276::-;5187:4;5225:2;5214:9;5210:18;5202:26;;5238:98;5333:1;5322:9;5318:17;5309:6;5238:98;:::i;:::-;5067:276;;;;:::o;5349:118::-;5436:24;5454:5;5436:24;:::i;:::-;5431:3;5424:37;5349:118;;:::o;5473:222::-;5566:4;5604:2;5593:9;5589:18;5581:26;;5617:71;5685:1;5674:9;5670:17;5661:6;5617:71;:::i;:::-;5473:222;;;;:::o;5701:329::-;5760:6;5809:2;5797:9;5788:7;5784:23;5780:32;5777:119;;;5815:79;;:::i;:::-;5777:119;5935:1;5960:53;6005:7;5996:6;5985:9;5981:22;5960:53;:::i;:::-;5950:63;;5906:117;5701:329;;;;:::o;6036:619::-;6113:6;6121;6129;6178:2;6166:9;6157:7;6153:23;6149:32;6146:119;;;6184:79;;:::i;:::-;6146:119;6304:1;6329:53;6374:7;6365:6;6354:9;6350:22;6329:53;:::i;:::-;6319:63;;6275:117;6431:2;6457:53;6502:7;6493:6;6482:9;6478:22;6457:53;:::i;:::-;6447:63;;6402:118;6559:2;6585:53;6630:7;6621:6;6610:9;6606:22;6585:53;:::i;:::-;6575:63;;6530:118;6036:619;;;;;:::o;6661:118::-;6748:24;6766:5;6748:24;:::i;:::-;6743:3;6736:37;6661:118;;:::o;6785:222::-;6878:4;6916:2;6905:9;6901:18;6893:26;;6929:71;6997:1;6986:9;6982:17;6973:6;6929:71;:::i;:::-;6785:222;;;;:::o;7013:86::-;7048:7;7088:4;7081:5;7077:16;7066:27;;7013:86;;;:::o;7105:112::-;7188:22;7204:5;7188:22;:::i;:::-;7183:3;7176:35;7105:112;;:::o;7223:214::-;7312:4;7350:2;7339:9;7335:18;7327:26;;7363:67;7427:1;7416:9;7412:17;7403:6;7363:67;:::i;:::-;7223:214;;;;:::o;7443:468::-;7508:6;7516;7565:2;7553:9;7544:7;7540:23;7536:32;7533:119;;;7571:79;;:::i;:::-;7533:119;7691:1;7716:53;7761:7;7752:6;7741:9;7737:22;7716:53;:::i;:::-;7706:63;;7662:117;7818:2;7844:50;7886:7;7877:6;7866:9;7862:22;7844:50;:::i;:::-;7834:60;;7789:115;7443:468;;;;;:::o;7917:474::-;7985:6;7993;8042:2;8030:9;8021:7;8017:23;8013:32;8010:119;;;8048:79;;:::i;:::-;8010:119;8168:1;8193:53;8238:7;8229:6;8218:9;8214:22;8193:53;:::i;:::-;8183:63;;8139:117;8295:2;8321:53;8366:7;8357:6;8346:9;8342:22;8321:53;:::i;:::-;8311:63;;8266:118;7917:474;;;;;:::o;8397:182::-;8537:34;8533:1;8525:6;8521:14;8514:58;8397:182;:::o;8585:366::-;8727:3;8748:67;8812:2;8807:3;8748:67;:::i;:::-;8741:74;;8824:93;8913:3;8824:93;:::i;:::-;8942:2;8937:3;8933:12;8926:19;;8585:366;;;:::o;8957:419::-;9123:4;9161:2;9150:9;9146:18;9138:26;;9210:9;9204:4;9200:20;9196:1;9185:9;9181:17;9174:47;9238:131;9364:4;9238:131;:::i;:::-;9230:139;;8957:419;;;:::o;9382:180::-;9430:77;9427:1;9420:88;9527:4;9524:1;9517:15;9551:4;9548:1;9541:15;9568:320;9612:6;9649:1;9643:4;9639:12;9629:22;;9696:1;9690:4;9686:12;9717:18;9707:81;;9773:4;9765:6;9761:17;9751:27;;9707:81;9835:2;9827:6;9824:14;9804:18;9801:38;9798:84;;9854:18;;:::i;:::-;9798:84;9619:269;9568:320;;;:::o;9894:180::-;9942:77;9939:1;9932:88;10039:4;10036:1;10029:15;10063:4;10060:1;10053:15;10080:410;10120:7;10143:20;10161:1;10143:20;:::i;:::-;10138:25;;10177:20;10195:1;10177:20;:::i;:::-;10172:25;;10232:1;10229;10225:9;10254:30;10272:11;10254:30;:::i;:::-;10243:41;;10433:1;10424:7;10420:15;10417:1;10414:22;10394:1;10387:9;10367:83;10344:139;;10463:18;;:::i;:::-;10344:139;10128:362;10080:410;;;;:::o;10496:180::-;10544:77;10541:1;10534:88;10641:4;10638:1;10631:15;10665:4;10662:1;10655:15;10682:185;10722:1;10739:20;10757:1;10739:20;:::i;:::-;10734:25;;10773:20;10791:1;10773:20;:::i;:::-;10768:25;;10812:1;10802:35;;10817:18;;:::i;:::-;10802:35;10859:1;10856;10852:9;10847:14;;10682:185;;;;:::o;10873:234::-;11013:34;11009:1;11001:6;10997:14;10990:58;11082:17;11077:2;11069:6;11065:15;11058:42;10873:234;:::o;11113:366::-;11255:3;11276:67;11340:2;11335:3;11276:67;:::i;:::-;11269:74;;11352:93;11441:3;11352:93;:::i;:::-;11470:2;11465:3;11461:12;11454:19;;11113:366;;;:::o;11485:419::-;11651:4;11689:2;11678:9;11674:18;11666:26;;11738:9;11732:4;11728:20;11724:1;11713:9;11709:17;11702:47;11766:131;11892:4;11766:131;:::i;:::-;11758:139;;11485:419;;;:::o;11910:227::-;12050:34;12046:1;12038:6;12034:14;12027:58;12119:10;12114:2;12106:6;12102:15;12095:35;11910:227;:::o;12143:366::-;12285:3;12306:67;12370:2;12365:3;12306:67;:::i;:::-;12299:74;;12382:93;12471:3;12382:93;:::i;:::-;12500:2;12495:3;12491:12;12484:19;;12143:366;;;:::o;12515:419::-;12681:4;12719:2;12708:9;12704:18;12696:26;;12768:9;12762:4;12758:20;12754:1;12743:9;12739:17;12732:47;12796:131;12922:4;12796:131;:::i;:::-;12788:139;;12515:419;;;:::o;12940:191::-;12980:3;12999:20;13017:1;12999:20;:::i;:::-;12994:25;;13033:20;13051:1;13033:20;:::i;:::-;13028:25;;13076:1;13073;13069:9;13062:16;;13097:3;13094:1;13091:10;13088:36;;;13104:18;;:::i;:::-;13088:36;12940:191;;;;:::o;13137:244::-;13277:34;13273:1;13265:6;13261:14;13254:58;13346:27;13341:2;13333:6;13329:15;13322:52;13137:244;:::o;13387:366::-;13529:3;13550:67;13614:2;13609:3;13550:67;:::i;:::-;13543:74;;13626:93;13715:3;13626:93;:::i;:::-;13744:2;13739:3;13735:12;13728:19;;13387:366;;;:::o;13759:419::-;13925:4;13963:2;13952:9;13948:18;13940:26;;14012:9;14006:4;14002:20;13998:1;13987:9;13983:17;13976:47;14040:131;14166:4;14040:131;:::i;:::-;14032:139;;13759:419;;;:::o;14184:224::-;14324:34;14320:1;14312:6;14308:14;14301:58;14393:7;14388:2;14380:6;14376:15;14369:32;14184:224;:::o;14414:366::-;14556:3;14577:67;14641:2;14636:3;14577:67;:::i;:::-;14570:74;;14653:93;14742:3;14653:93;:::i;:::-;14771:2;14766:3;14762:12;14755:19;;14414:366;;;:::o;14786:419::-;14952:4;14990:2;14979:9;14975:18;14967:26;;15039:9;15033:4;15029:20;15025:1;15014:9;15010:17;15003:47;15067:131;15193:4;15067:131;:::i;:::-;15059:139;;14786:419;;;:::o;15211:223::-;15351:34;15347:1;15339:6;15335:14;15328:58;15420:6;15415:2;15407:6;15403:15;15396:31;15211:223;:::o;15440:366::-;15582:3;15603:67;15667:2;15662:3;15603:67;:::i;:::-;15596:74;;15679:93;15768:3;15679:93;:::i;:::-;15797:2;15792:3;15788:12;15781:19;;15440:366;;;:::o;15812:419::-;15978:4;16016:2;16005:9;16001:18;15993:26;;16065:9;16059:4;16055:20;16051:1;16040:9;16036:17;16029:47;16093:131;16219:4;16093:131;:::i;:::-;16085:139;;15812:419;;;:::o;16237:240::-;16377:34;16373:1;16365:6;16361:14;16354:58;16446:23;16441:2;16433:6;16429:15;16422:48;16237:240;:::o;16483:366::-;16625:3;16646:67;16710:2;16705:3;16646:67;:::i;:::-;16639:74;;16722:93;16811:3;16722:93;:::i;:::-;16840:2;16835:3;16831:12;16824:19;;16483:366;;;:::o;16855:419::-;17021:4;17059:2;17048:9;17044:18;17036:26;;17108:9;17102:4;17098:20;17094:1;17083:9;17079:17;17072:47;17136:131;17262:4;17136:131;:::i;:::-;17128:139;;16855:419;;;:::o;17280:239::-;17420:34;17416:1;17408:6;17404:14;17397:58;17489:22;17484:2;17476:6;17472:15;17465:47;17280:239;:::o;17525:366::-;17667:3;17688:67;17752:2;17747:3;17688:67;:::i;:::-;17681:74;;17764:93;17853:3;17764:93;:::i;:::-;17882:2;17877:3;17873:12;17866:19;;17525:366;;;:::o;17897:419::-;18063:4;18101:2;18090:9;18086:18;18078:26;;18150:9;18144:4;18140:20;18136:1;18125:9;18121:17;18114:47;18178:131;18304:4;18178:131;:::i;:::-;18170:139;;17897:419;;;:::o;18322:143::-;18379:5;18410:6;18404:13;18395:22;;18426:33;18453:5;18426:33;:::i;:::-;18322:143;;;;:::o;18471:351::-;18541:6;18590:2;18578:9;18569:7;18565:23;18561:32;18558:119;;;18596:79;;:::i;:::-;18558:119;18716:1;18741:64;18797:7;18788:6;18777:9;18773:22;18741:64;:::i;:::-;18731:74;;18687:128;18471:351;;;;:::o;18828:332::-;18949:4;18987:2;18976:9;18972:18;18964:26;;19000:71;19068:1;19057:9;19053:17;19044:6;19000:71;:::i;:::-;19081:72;19149:2;19138:9;19134:18;19125:6;19081:72;:::i;:::-;18828:332;;;;;:::o;19166:85::-;19211:7;19240:5;19229:16;;19166:85;;;:::o;19257:158::-;19315:9;19348:61;19366:42;19375:32;19401:5;19375:32;:::i;:::-;19366:42;:::i;:::-;19348:61;:::i;:::-;19335:74;;19257:158;;;:::o;19421:147::-;19516:45;19555:5;19516:45;:::i;:::-;19511:3;19504:58;19421:147;;:::o;19574:807::-;19823:4;19861:3;19850:9;19846:19;19838:27;;19875:71;19943:1;19932:9;19928:17;19919:6;19875:71;:::i;:::-;19956:72;20024:2;20013:9;20009:18;20000:6;19956:72;:::i;:::-;20038:80;20114:2;20103:9;20099:18;20090:6;20038:80;:::i;:::-;20128;20204:2;20193:9;20189:18;20180:6;20128:80;:::i;:::-;20218:73;20286:3;20275:9;20271:19;20262:6;20218:73;:::i;:::-;20301;20369:3;20358:9;20354:19;20345:6;20301:73;:::i;:::-;19574:807;;;;;;;;;:::o;20387:143::-;20444:5;20475:6;20469:13;20460:22;;20491:33;20518:5;20491:33;:::i;:::-;20387:143;;;;:::o;20536:663::-;20624:6;20632;20640;20689:2;20677:9;20668:7;20664:23;20660:32;20657:119;;;20695:79;;:::i;:::-;20657:119;20815:1;20840:64;20896:7;20887:6;20876:9;20872:22;20840:64;:::i;:::-;20830:74;;20786:128;20953:2;20979:64;21035:7;21026:6;21015:9;21011:22;20979:64;:::i;:::-;20969:74;;20924:129;21092:2;21118:64;21174:7;21165:6;21154:9;21150:22;21118:64;:::i;:::-;21108:74;;21063:129;20536:663;;;;;:::o;21205:225::-;21345:34;21341:1;21333:6;21329:14;21322:58;21414:8;21409:2;21401:6;21397:15;21390:33;21205:225;:::o;21436:366::-;21578:3;21599:67;21663:2;21658:3;21599:67;:::i;:::-;21592:74;;21675:93;21764:3;21675:93;:::i;:::-;21793:2;21788:3;21784:12;21777:19;;21436:366;;;:::o;21808:419::-;21974:4;22012:2;22001:9;21997:18;21989:26;;22061:9;22055:4;22051:20;22047:1;22036:9;22032:17;22025:47;22089:131;22215:4;22089:131;:::i;:::-;22081:139;;21808:419;;;:::o;22233:223::-;22373:34;22369:1;22361:6;22357:14;22350:58;22442:6;22437:2;22429:6;22425:15;22418:31;22233:223;:::o;22462:366::-;22604:3;22625:67;22689:2;22684:3;22625:67;:::i;:::-;22618:74;;22701:93;22790:3;22701:93;:::i;:::-;22819:2;22814:3;22810:12;22803:19;;22462:366;;;:::o;22834:419::-;23000:4;23038:2;23027:9;23023:18;23015:26;;23087:9;23081:4;23077:20;23073:1;23062:9;23058:17;23051:47;23115:131;23241:4;23115:131;:::i;:::-;23107:139;;22834:419;;;:::o;23259:221::-;23399:34;23395:1;23387:6;23383:14;23376:58;23468:4;23463:2;23455:6;23451:15;23444:29;23259:221;:::o;23486:366::-;23628:3;23649:67;23713:2;23708:3;23649:67;:::i;:::-;23642:74;;23725:93;23814:3;23725:93;:::i;:::-;23843:2;23838:3;23834:12;23827:19;;23486:366;;;:::o;23858:419::-;24024:4;24062:2;24051:9;24047:18;24039:26;;24111:9;24105:4;24101:20;24097:1;24086:9;24082:17;24075:47;24139:131;24265:4;24139:131;:::i;:::-;24131:139;;23858:419;;;:::o;24283:224::-;24423:34;24419:1;24411:6;24407:14;24400:58;24492:7;24487:2;24479:6;24475:15;24468:32;24283:224;:::o;24513:366::-;24655:3;24676:67;24740:2;24735:3;24676:67;:::i;:::-;24669:74;;24752:93;24841:3;24752:93;:::i;:::-;24870:2;24865:3;24861:12;24854:19;;24513:366;;;:::o;24885:419::-;25051:4;25089:2;25078:9;25074:18;25066:26;;25138:9;25132:4;25128:20;25124:1;25113:9;25109:17;25102:47;25166:131;25292:4;25166:131;:::i;:::-;25158:139;;24885:419;;;:::o;25310:222::-;25450:34;25446:1;25438:6;25434:14;25427:58;25519:5;25514:2;25506:6;25502:15;25495:30;25310:222;:::o;25538:366::-;25680:3;25701:67;25765:2;25760:3;25701:67;:::i;:::-;25694:74;;25777:93;25866:3;25777:93;:::i;:::-;25895:2;25890:3;25886:12;25879:19;;25538:366;;;:::o;25910:419::-;26076:4;26114:2;26103:9;26099:18;26091:26;;26163:9;26157:4;26153:20;26149:1;26138:9;26134:17;26127:47;26191:131;26317:4;26191:131;:::i;:::-;26183:139;;25910:419;;;:::o;26335:172::-;26475:24;26471:1;26463:6;26459:14;26452:48;26335:172;:::o;26513:366::-;26655:3;26676:67;26740:2;26735:3;26676:67;:::i;:::-;26669:74;;26752:93;26841:3;26752:93;:::i;:::-;26870:2;26865:3;26861:12;26854:19;;26513:366;;;:::o;26885:419::-;27051:4;27089:2;27078:9;27074:18;27066:26;;27138:9;27132:4;27128:20;27124:1;27113:9;27109:17;27102:47;27166:131;27292:4;27166:131;:::i;:::-;27158:139;;26885:419;;;:::o;27310:297::-;27450:34;27446:1;27438:6;27434:14;27427:58;27519:34;27514:2;27506:6;27502:15;27495:59;27588:11;27583:2;27575:6;27571:15;27564:36;27310:297;:::o;27613:366::-;27755:3;27776:67;27840:2;27835:3;27776:67;:::i;:::-;27769:74;;27852:93;27941:3;27852:93;:::i;:::-;27970:2;27965:3;27961:12;27954:19;;27613:366;;;:::o;27985:419::-;28151:4;28189:2;28178:9;28174:18;28166:26;;28238:9;28232:4;28228:20;28224:1;28213:9;28209:17;28202:47;28266:131;28392:4;28266:131;:::i;:::-;28258:139;;27985:419;;;:::o;28410:240::-;28550:34;28546:1;28538:6;28534:14;28527:58;28619:23;28614:2;28606:6;28602:15;28595:48;28410:240;:::o;28656:366::-;28798:3;28819:67;28883:2;28878:3;28819:67;:::i;:::-;28812:74;;28895:93;28984:3;28895:93;:::i;:::-;29013:2;29008:3;29004:12;28997:19;;28656:366;;;:::o;29028:419::-;29194:4;29232:2;29221:9;29217:18;29209:26;;29281:9;29275:4;29271:20;29267:1;29256:9;29252:17;29245:47;29309:131;29435:4;29309:131;:::i;:::-;29301:139;;29028:419;;;:::o;29453:169::-;29593:21;29589:1;29581:6;29577:14;29570:45;29453:169;:::o;29628:366::-;29770:3;29791:67;29855:2;29850:3;29791:67;:::i;:::-;29784:74;;29867:93;29956:3;29867:93;:::i;:::-;29985:2;29980:3;29976:12;29969:19;;29628:366;;;:::o;30000:419::-;30166:4;30204:2;30193:9;30189:18;30181:26;;30253:9;30247:4;30243:20;30239:1;30228:9;30224:17;30217:47;30281:131;30407:4;30281:131;:::i;:::-;30273:139;;30000:419;;;:::o;30425:241::-;30565:34;30561:1;30553:6;30549:14;30542:58;30634:24;30629:2;30621:6;30617:15;30610:49;30425:241;:::o;30672:366::-;30814:3;30835:67;30899:2;30894:3;30835:67;:::i;:::-;30828:74;;30911:93;31000:3;30911:93;:::i;:::-;31029:2;31024:3;31020:12;31013:19;;30672:366;;;:::o;31044:419::-;31210:4;31248:2;31237:9;31233:18;31225:26;;31297:9;31291:4;31287:20;31283:1;31272:9;31268:17;31261:47;31325:131;31451:4;31325:131;:::i;:::-;31317:139;;31044:419;;;:::o;31469:351::-;31539:6;31588:2;31576:9;31567:7;31563:23;31559:32;31556:119;;;31594:79;;:::i;:::-;31556:119;31714:1;31739:64;31795:7;31786:6;31775:9;31771:22;31739:64;:::i;:::-;31729:74;;31685:128;31469:351;;;;:::o;31826:194::-;31866:4;31886:20;31904:1;31886:20;:::i;:::-;31881:25;;31920:20;31938:1;31920:20;:::i;:::-;31915:25;;31964:1;31961;31957:9;31949:17;;31988:1;31982:4;31979:11;31976:37;;;31993:18;;:::i;:::-;31976:37;31826:194;;;;:::o;32026:225::-;32166:34;32162:1;32154:6;32150:14;32143:58;32235:8;32230:2;32222:6;32218:15;32211:33;32026:225;:::o;32257:366::-;32399:3;32420:67;32484:2;32479:3;32420:67;:::i;:::-;32413:74;;32496:93;32585:3;32496:93;:::i;:::-;32614:2;32609:3;32605:12;32598:19;;32257:366;;;:::o;32629:419::-;32795:4;32833:2;32822:9;32818:18;32810:26;;32882:9;32876:4;32872:20;32868:1;32857:9;32853:17;32846:47;32910:131;33036:4;32910:131;:::i;:::-;32902:139;;32629:419;;;:::o;33054:147::-;33155:11;33192:3;33177:18;;33054:147;;;;:::o;33207:114::-;;:::o;33327:398::-;33486:3;33507:83;33588:1;33583:3;33507:83;:::i;:::-;33500:90;;33599:93;33688:3;33599:93;:::i;:::-;33717:1;33712:3;33708:11;33701:18;;33327:398;;;:::o;33731:379::-;33915:3;33937:147;34080:3;33937:147;:::i;:::-;33930:154;;34101:3;34094:10;;33731:379;;;:::o;34116:442::-;34265:4;34303:2;34292:9;34288:18;34280:26;;34316:71;34384:1;34373:9;34369:17;34360:6;34316:71;:::i;:::-;34397:72;34465:2;34454:9;34450:18;34441:6;34397:72;:::i;:::-;34479;34547:2;34536:9;34532:18;34523:6;34479:72;:::i;:::-;34116:442;;;;;;:::o;34564:180::-;34612:77;34609:1;34602:88;34709:4;34706:1;34699:15;34733:4;34730:1;34723:15;34750:180;34798:77;34795:1;34788:88;34895:4;34892:1;34885:15;34919:4;34916:1;34909:15;34936:114;35003:6;35037:5;35031:12;35021:22;;34936:114;;;:::o;35056:184::-;35155:11;35189:6;35184:3;35177:19;35229:4;35224:3;35220:14;35205:29;;35056:184;;;;:::o;35246:132::-;35313:4;35336:3;35328:11;;35366:4;35361:3;35357:14;35349:22;;35246:132;;;:::o;35384:108::-;35461:24;35479:5;35461:24;:::i;:::-;35456:3;35449:37;35384:108;;:::o;35498:179::-;35567:10;35588:46;35630:3;35622:6;35588:46;:::i;:::-;35666:4;35661:3;35657:14;35643:28;;35498:179;;;;:::o;35683:113::-;35753:4;35785;35780:3;35776:14;35768:22;;35683:113;;;:::o;35832:732::-;35951:3;35980:54;36028:5;35980:54;:::i;:::-;36050:86;36129:6;36124:3;36050:86;:::i;:::-;36043:93;;36160:56;36210:5;36160:56;:::i;:::-;36239:7;36270:1;36255:284;36280:6;36277:1;36274:13;36255:284;;;36356:6;36350:13;36383:63;36442:3;36427:13;36383:63;:::i;:::-;36376:70;;36469:60;36522:6;36469:60;:::i;:::-;36459:70;;36315:224;36302:1;36299;36295:9;36290:14;;36255:284;;;36259:14;36555:3;36548:10;;35956:608;;;35832:732;;;;:::o;36570:831::-;36833:4;36871:3;36860:9;36856:19;36848:27;;36885:71;36953:1;36942:9;36938:17;36929:6;36885:71;:::i;:::-;36966:80;37042:2;37031:9;37027:18;37018:6;36966:80;:::i;:::-;37093:9;37087:4;37083:20;37078:2;37067:9;37063:18;37056:48;37121:108;37224:4;37215:6;37121:108;:::i;:::-;37113:116;;37239:72;37307:2;37296:9;37292:18;37283:6;37239:72;:::i;:::-;37321:73;37389:3;37378:9;37374:19;37365:6;37321:73;:::i;:::-;36570:831;;;;;;;;:::o
Swarm Source
ipfs://3893f1f3fda0df93e2456b8e049bbc44aff1533abb48e0b4538e6d3782e902e5
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.