ERC-20
Overview
Max Total Supply
69,420,000,000,000 EPEP
Holders
52
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
102,855,822,259.796959061286158888 EPEPValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
EPEP
Compiler Version
v0.8.18+commit.87f61d96
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-04-17 */ // SPDX-License-Identifier: MIT // http://epep.vip/ // https://t.me/epeperc /* * .tsurt ew keK droL nI .yaw eht uoy wohs EPEP$ tel , * rewop citemem erup yb deleuF .reverof ,elpoep eht rof nioc a si EPEP$ , * decnuoner tcartnoc dna tnrub PL ,sexat orez ,elaserp on htiw htlaets dehcnuaL * .niaga taerg sniocemem ekam ot ereh si epeP */ 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; } } /** * @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 Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `from` to `to` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 amount ) external returns (bool); } // 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 subtraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { return a + b; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { return a * b; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b <= a, errorMessage); return a - b; } } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a / b; } } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a % b; } } } interface IUniswapV2Factory { event PairCreated(address indexed token0, address indexed token1, address pair, uint); function feeTo() external view returns (address); function feeToSetter() external view returns (address); function getPair(address tokenA, address tokenB) external view returns (address pair); function allPairs(uint) external view returns (address pair); function allPairsLength() external view returns (uint); function createPair(address tokenA, address tokenB) external returns (address pair); function setFeeTo(address) external; function setFeeToSetter(address) external; } interface IUniswapV2Pair { event Approval(address indexed owner, address indexed spender, uint value); event Transfer(address indexed from, address indexed to, uint value); function name() external pure returns (string memory); function symbol() external pure returns (string memory); function decimals() external pure returns (uint8); function totalSupply() external view returns (uint); function balanceOf(address owner) external view returns (uint); function allowance(address owner, address spender) external view returns (uint); function approve(address spender, uint value) external returns (bool); function transfer(address to, uint value) external returns (bool); function transferFrom(address from, address to, uint value) external returns (bool); function DOMAIN_SEPARATOR() external view returns (bytes32); function PERMIT_TYPEHASH() external pure returns (bytes32); function nonces(address owner) external view returns (uint); function permit(address owner, address spender, uint value, uint deadline, uint8 v, bytes32 r, bytes32 s) external; event Mint(address indexed sender, uint amount0, uint amount1); event Burn(address indexed sender, uint amount0, uint amount1, address indexed to); event Swap( address indexed sender, uint amount0In, uint amount1In, uint amount0Out, uint amount1Out, address indexed to ); event Sync(uint112 reserve0, uint112 reserve1); function MINIMUM_LIQUIDITY() external pure returns (uint); function factory() external view returns (address); function token0() external view returns (address); function token1() external view returns (address); function getReserves() external view returns (uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast); function price0CumulativeLast() external view returns (uint); function price1CumulativeLast() external view returns (uint); function kLast() external view returns (uint); function mint(address to) external returns (uint liquidity); function burn(address to) external returns (uint amount0, uint amount1); function swap(uint amount0Out, uint amount1Out, address to, bytes calldata data) external; function skim(address to) external; function sync() external; function initialize(address, address) external; } interface IUniswapV2Router01 { function factory() external pure returns (address); function WETH() external pure returns (address); function addLiquidity( address tokenA, address tokenB, uint amountADesired, uint amountBDesired, uint amountAMin, uint amountBMin, address to, uint deadline ) external returns (uint amountA, uint amountB, uint liquidity); function addLiquidityETH( address token, uint amountTokenDesired, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external payable returns (uint amountToken, uint amountETH, uint liquidity); function removeLiquidity( address tokenA, address tokenB, uint liquidity, uint amountAMin, uint amountBMin, address to, uint deadline ) external returns (uint amountA, uint amountB); function removeLiquidityETH( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external returns (uint amountToken, uint amountETH); function removeLiquidityWithPermit( address tokenA, address tokenB, uint liquidity, uint amountAMin, uint amountBMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountA, uint amountB); function removeLiquidityETHWithPermit( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountToken, uint amountETH); function swapExactTokensForTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external returns (uint[] memory amounts); function swapTokensForExactTokens( uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline ) external returns (uint[] memory amounts); function swapExactETHForTokens(uint amountOutMin, address[] calldata path, address to, uint deadline) external payable returns (uint[] memory amounts); function swapTokensForExactETH(uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline) external returns (uint[] memory amounts); function swapExactTokensForETH(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline) external returns (uint[] memory amounts); function swapETHForExactTokens(uint amountOut, address[] calldata path, address to, uint deadline) external payable returns (uint[] memory amounts); function quote(uint amountA, uint reserveA, uint reserveB) external pure returns (uint amountB); function getAmountOut(uint amountIn, uint reserveIn, uint reserveOut) external pure returns (uint amountOut); function getAmountIn(uint amountOut, uint reserveIn, uint reserveOut) external pure returns (uint amountIn); function getAmountsOut(uint amountIn, address[] calldata path) external view returns (uint[] memory amounts); function getAmountsIn(uint amountOut, address[] calldata path) external view returns (uint[] memory amounts); } interface IUniswapV2Router02 is IUniswapV2Router01 { function removeLiquidityETHSupportingFeeOnTransferTokens( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external returns (uint amountETH); function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountETH); function swapExactTokensForTokensSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; function swapExactETHForTokensSupportingFeeOnTransferTokens( uint amountOutMin, address[] calldata path, address to, uint deadline ) external payable; function swapExactTokensForETHSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; } /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); } /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.openzeppelin.com/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: * * - `to` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address to, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _transfer(owner, to, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on * `transferFrom`. This is semantically equivalent to an infinite approval. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _approve(owner, 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}. * * NOTE: Does not update the allowance if the current allowance * is the maximum `uint256`. * * Requirements: * * - `from` and `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. * - the caller must have allowance for ``from``'s tokens of at least * `amount`. */ function transferFrom( address from, address to, uint256 amount ) public virtual override returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, amount); _transfer(from, to, amount); return true; } /** * @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) { address owner = _msgSender(); _approve(owner, spender, allowance(owner, 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) { address owner = _msgSender(); uint256 currentAllowance = allowance(owner, spender); require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(owner, spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `from` to `to`. * * 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: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. */ function _transfer( address from, address to, uint256 amount ) internal virtual { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(from, to, amount); uint256 fromBalance = _balances[from]; require(fromBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[from] = fromBalance - amount; // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by // decrementing then incrementing. _balances[to] += amount; } emit Transfer(from, to, amount); _afterTokenTransfer(from, to, amount); } /** @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; unchecked { // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above. _balances[account] += amount; } emit Transfer(address(0), account, amount); _afterTokenTransfer(address(0), account, amount); } /** * @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; // Overflow not possible: amount <= accountBalance <= totalSupply. _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 Updates `owner` s allowance for `spender` based on spent `amount`. * * Does not update the allowance amount in case of infinite allowance. * Revert if not enough allowance is available. * * Might emit an {Approval} event. */ function _spendAllowance( address owner, address spender, uint256 amount ) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { require(currentAllowance >= amount, "ERC20: insufficient allowance"); unchecked { _approve(owner, spender, currentAllowance - amount); } } } /** * @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 {} } contract EPEP is ERC20, Ownable { using SafeMath for uint256; IUniswapV2Router02 public immutable uniswapV2Router; address public immutable uniswapV2Pair; address public constant deadAddress = address(0xdead); bool private swapping; address public marketingWallet; address public devWallet; uint256 public maxTransactionAmount; uint256 public swapTokensAtAmount; uint256 public maxWallet; uint256 public percentForLPBurn = 25; bool public lpBurnEnabled = false; uint256 public lpBurnFrequency = 3600 seconds; uint256 public lastLpBurnTime; uint256 public manualBurnFrequency = 30 minutes; uint256 public lastManualLpBurnTime; bool public limitsInEffect = true; bool public tradingActive = false; bool public swapEnabled = true; mapping(address => uint256) private _holderLastTransferTimestamp; bool public transferDelayEnabled = false; uint256 public buyTotalFees; uint256 public buyMarketingFee; uint256 public buyLiquidityFee; uint256 public buyDevFee; uint256 public sellTotalFees; uint256 public sellMarketingFee; uint256 public sellLiquidityFee; uint256 public sellDevFee; uint256 public tokensForMarketing; uint256 public tokensForLiquidity; uint256 public tokensForDev; mapping(address => bool) private _isExcludedFromFees; mapping(address => bool) public _isExcludedMaxTransactionAmount; 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 marketingWalletUpdated( address indexed newWallet, address indexed oldWallet ); event devWalletUpdated( address indexed newWallet, address indexed oldWallet ); event SwapAndLiquify( uint256 tokensSwapped, uint256 ethReceived, uint256 tokensIntoLiquidity ); event AutoNukeLP(); event ManualNukeLP(); constructor() ERC20("EPEP", "EPEP") { IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02( 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D ); excludeFromMaxTransaction(address(_uniswapV2Router), true); uniswapV2Router = _uniswapV2Router; uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()) .createPair(address(this), _uniswapV2Router.WETH()); excludeFromMaxTransaction(address(uniswapV2Pair), true); _setAutomatedMarketMakerPair(address(uniswapV2Pair), true); uint256 _buyMarketingFee = 20; uint256 _buyLiquidityFee = 0; uint256 _buyDevFee = 0; uint256 _sellMarketingFee = 40; uint256 _sellLiquidityFee = 0; uint256 _sellDevFee = 0; uint256 totalSupply = 69_420_000_000_000 * 1e18; maxTransactionAmount = 1_380_000_000_000 * 1e18; maxWallet = 1_380_000_000_000 * 1e18; swapTokensAtAmount = (totalSupply * 5) / 1000; buyMarketingFee = _buyMarketingFee; buyLiquidityFee = _buyLiquidityFee; buyDevFee = _buyDevFee; buyTotalFees = buyMarketingFee + buyLiquidityFee + buyDevFee; sellMarketingFee = _sellMarketingFee; sellLiquidityFee = _sellLiquidityFee; sellDevFee = _sellDevFee; sellTotalFees = sellMarketingFee + sellLiquidityFee + sellDevFee; marketingWallet = owner(); devWallet = owner(); excludeFromFees(owner(), true); excludeFromFees(address(this), true); excludeFromFees(address(0xdead), true); excludeFromMaxTransaction(owner(), true); excludeFromMaxTransaction(address(this), true); excludeFromMaxTransaction(address(0xdead), true); /* _mint is an internal function in ERC20.sol that is only called here, and CANNOT be called ever again */ _mint(msg.sender, totalSupply); } receive() external payable {} function enableTrading() public onlyOwner { tradingActive = true; lastLpBurnTime = block.timestamp; } function removeLimits() external onlyOwner returns (bool) { limitsInEffect = false; return true; } function disableTransferDelay() external onlyOwner returns (bool) { transferDelayEnabled = false; return true; } 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() * 4) / 100, "Swap amount cannot be higher than 4% total supply." ); swapTokensAtAmount = newAmount; return true; } function updateMaxTxnAmount(uint256 newNum) external onlyOwner { require( newNum >= ((totalSupply() * 1) / 1000) / 1e18, "Cannot set maxTransactionAmount lower than 0.1%" ); maxTransactionAmount = newNum * (10 ** 18); } function updateMaxWalletAmount(uint256 newNum) external onlyOwner { require( newNum >= ((totalSupply() * 1) / 1000) / 1e18, "Cannot set maxWallet lower than 0.1%" ); maxWallet = newNum * (10 ** 18); } function excludeFromMaxTransaction(address updAds, bool isEx) public onlyOwner { _isExcludedMaxTransactionAmount[updAds] = isEx; } function updateSwapEnabled(bool enabled) external onlyOwner { swapEnabled = enabled; } function updateBuyFees( uint256 _marketingFee, uint256 _liquidityFee, uint256 _devFee ) external onlyOwner { buyMarketingFee = _marketingFee; buyLiquidityFee = _liquidityFee; buyDevFee = _devFee; buyTotalFees = buyMarketingFee + buyLiquidityFee + buyDevFee; require(buyTotalFees <= 20, "Must keep fees at 20% or less"); } function updateSellFees( uint256 _marketingFee, uint256 _liquidityFee, uint256 _devFee ) external onlyOwner { sellMarketingFee = _marketingFee; sellLiquidityFee = _liquidityFee; sellDevFee = _devFee; sellTotalFees = sellMarketingFee + sellLiquidityFee + sellDevFee; require(sellTotalFees <= 20, "Must keep fees at 20% or less"); } 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 updateMarketingWallet(address newMarketingWallet) external onlyOwner { emit marketingWalletUpdated(newMarketingWallet, marketingWallet); marketingWallet = newMarketingWallet; } function updateDevWallet(address newWallet) external onlyOwner { emit devWalletUpdated(newWallet, devWallet); devWallet = newWallet; } function isExcludedFromFees(address account) public view returns (bool) { return _isExcludedFromFees[account]; } event BoughtEarly(address indexed sniper); function _transfer( address from, address to, uint256 amount ) internal override { require(from != address(0), "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." ); } 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; } } if ( automatedMarketMakerPairs[from] && !_isExcludedMaxTransactionAmount[to] ) { require( amount <= maxTransactionAmount, "Buy transfer amount exceeds the maxTransactionAmount." ); require( amount + balanceOf(to) <= maxWallet, "Max wallet exceeded" ); } else if ( automatedMarketMakerPairs[to] && !_isExcludedMaxTransactionAmount[from] ) { require( amount <= maxTransactionAmount, "Sell transfer amount exceeds the maxTransactionAmount." ); } else if (!_isExcludedMaxTransactionAmount[to]) { require( amount + balanceOf(to) <= maxWallet, "Max wallet exceeded" ); } } } uint256 contractTokenBalance = balanceOf(address(this)); bool canSwap = contractTokenBalance >= swapTokensAtAmount; if ( canSwap && swapEnabled && !swapping && !automatedMarketMakerPairs[from] && !_isExcludedFromFees[from] && !_isExcludedFromFees[to] ) { swapping = true; swapBack(); swapping = false; } if ( !swapping && automatedMarketMakerPairs[to] && lpBurnEnabled && block.timestamp >= lastLpBurnTime + lpBurnFrequency && !_isExcludedFromFees[from] ) { autoBurnLiquidityPairTokens(); } bool takeFee = !swapping; if (_isExcludedFromFees[from] || _isExcludedFromFees[to]) { takeFee = false; } uint256 fees = 0; if (takeFee) { if (automatedMarketMakerPairs[to] && sellTotalFees > 0) { fees = amount.mul(sellTotalFees).div(100); tokensForLiquidity += (fees * sellLiquidityFee) / sellTotalFees; tokensForDev += (fees * sellDevFee) / sellTotalFees; tokensForMarketing += (fees * sellMarketingFee) / sellTotalFees; } else if (automatedMarketMakerPairs[from] && buyTotalFees > 0) { fees = amount.mul(buyTotalFees).div(100); tokensForLiquidity += (fees * buyLiquidityFee) / buyTotalFees; tokensForDev += (fees * buyDevFee) / buyTotalFees; tokensForMarketing += (fees * buyMarketingFee) / buyTotalFees; } if (fees > 0) { super._transfer(from, address(this), fees); } amount -= fees; } super._transfer(from, to, amount); } function swapTokensForEth(uint256 tokenAmount) private { address[] memory path = new address[](2); path[0] = address(this); path[1] = uniswapV2Router.WETH(); _approve(address(this), address(uniswapV2Router), tokenAmount); uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens( tokenAmount, 0, path, address(this), block.timestamp ); } function addLiquidity(uint256 tokenAmount, uint256 ethAmount) private { _approve(address(this), address(uniswapV2Router), tokenAmount); uniswapV2Router.addLiquidityETH{value : ethAmount}( address(this), tokenAmount, 0, 0, deadAddress, 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) { contractBalance = swapTokensAtAmount; } 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}(""); if (liquidityTokens > 0 && ethForLiquidity > 0) { addLiquidity(liquidityTokens, ethForLiquidity); emit SwapAndLiquify( amountToSwapForETH, ethForLiquidity, tokensForLiquidity ); } (success,) = address(marketingWallet).call{ value : address(this).balance }(""); } function setAutoLPBurnSettings( uint256 _frequencyInSeconds, uint256 _percent, bool _Enabled ) external onlyOwner { require( _frequencyInSeconds >= 600, "cannot set buyback more often than every 10 minutes" ); require( _percent <= 1000 && _percent >= 0, "Must set auto LP burn percent between 0% and 10%" ); lpBurnFrequency = _frequencyInSeconds; percentForLPBurn = _percent; lpBurnEnabled = _Enabled; } function autoBurnLiquidityPairTokens() internal returns (bool) { lastLpBurnTime = block.timestamp; uint256 liquidityPairBalance = this.balanceOf(uniswapV2Pair); uint256 amountToBurn = liquidityPairBalance.mul(percentForLPBurn).div( 10000 ); if (amountToBurn > 0) { super._transfer(uniswapV2Pair, address(0xdead), amountToBurn); } IUniswapV2Pair pair = IUniswapV2Pair(uniswapV2Pair); pair.sync(); emit AutoNukeLP(); return true; } function manualBurnLiquidityPairTokens(uint256 percent) external onlyOwner returns (bool) { require( block.timestamp > lastManualLpBurnTime + manualBurnFrequency, "Must wait for cooldown to finish" ); require(percent <= 1000, "May not nuke more than 10% of tokens in LP"); lastManualLpBurnTime = block.timestamp; uint256 liquidityPairBalance = this.balanceOf(uniswapV2Pair); uint256 amountToBurn = liquidityPairBalance.mul(percent).div(10000); if (amountToBurn > 0) { super._transfer(uniswapV2Pair, address(0xdead), amountToBurn); } IUniswapV2Pair pair = IUniswapV2Pair(uniswapV2Pair); pair.sync(); emit ManualNukeLP(); return true; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[],"name":"AutoNukeLP","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"sniper","type":"address"}],"name":"BoughtEarly","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[],"name":"ManualNukeLP","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiquidity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newAddress","type":"address"},{"indexed":true,"internalType":"address","name":"oldAddress","type":"address"}],"name":"UpdateUniswapV2Router","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"devWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"marketingWalletUpdated","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":"lastManualLpBurnTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lpBurnEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lpBurnFrequency","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"manualBurnFrequency","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"percent","type":"uint256"}],"name":"manualBurnLiquidityPairTokens","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"percentForLPBurn","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":"uint256","name":"_frequencyInSeconds","type":"uint256"},{"internalType":"uint256","name":"_percent","type":"uint256"},{"internalType":"bool","name":"_Enabled","type":"bool"}],"name":"setAutoLPBurnSettings","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":"to","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":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_devFee","type":"uint256"}],"name":"updateBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"updateDevWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newMarketingWallet","type":"address"}],"name":"updateMarketingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxTxnAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_devFee","type":"uint256"}],"name":"updateSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"updateSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateSwapTokensAtAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60c06040526019600b556000600c60006101000a81548160ff021916908315150217905550610e10600d55610708600f556001601160006101000a81548160ff0219169083151502179055506000601160016101000a81548160ff0219169083151502179055506001601160026101000a81548160ff0219169083151502179055506000601360006101000a81548160ff021916908315150217905550348015620000a957600080fd5b506040518060400160405280600481526020017f45504550000000000000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f4550455000000000000000000000000000000000000000000000000000000000815250816003908162000127919062000cfc565b50806004908162000139919062000cfc565b5050506200015c62000150620005bb60201b60201c565b620005c360201b60201c565b6000737a250d5630b4cf539739df2c5dacb4c659f2488d9050620001888160016200068960201b60201c565b8073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000208573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200022e919062000e4d565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000296573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002bc919062000e4d565b6040518363ffffffff1660e01b8152600401620002db92919062000e90565b6020604051808303816000875af1158015620002fb573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000321919062000e4d565b73ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff16815250506200036960a05160016200068960201b60201c565b6200037e60a0516001620006f460201b60201c565b60006014905060008060006028905060008060006d036c341e1f992f96840fe000000090506c116b053ecd7ff34852a00000006008819055506c116b053ecd7ff34852a0000000600a819055506103e8600582620003dd919062000eec565b620003e9919062000f66565b60098190555086601581905550856016819055508460178190555060175460165460155462000419919062000f9e565b62000425919062000f9e565b6014819055508360198190555082601a8190555081601b81905550601b54601a5460195462000455919062000f9e565b62000461919062000f9e565b601881905550620004776200079560201b60201c565b600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620004c76200079560201b60201c565b600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620005296200051b6200079560201b60201c565b6001620007bf60201b60201c565b6200053c306001620007bf60201b60201c565b6200055161dead6001620007bf60201b60201c565b62000573620005656200079560201b60201c565b60016200068960201b60201c565b620005863060016200068960201b60201c565b6200059b61dead60016200068960201b60201c565b620005ad33826200087a60201b60201c565b505050505050505062001136565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b62000699620009e760201b60201c565b80602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b80602160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b620007cf620009e760201b60201c565b80601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7826040516200086e919062000ff6565b60405180910390a25050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620008ec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620008e39062001074565b60405180910390fd5b620009006000838362000a7860201b60201c565b806002600082825462000914919062000f9e565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620009c79190620010a7565b60405180910390a3620009e36000838362000a7d60201b60201c565b5050565b620009f7620005bb60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1662000a1d6200079560201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000a76576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000a6d9062001114565b60405180910390fd5b565b505050565b505050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000b0457607f821691505b60208210810362000b1a5762000b1962000abc565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830262000b847fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000b45565b62000b90868362000b45565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b600062000bdd62000bd762000bd18462000ba8565b62000bb2565b62000ba8565b9050919050565b6000819050919050565b62000bf98362000bbc565b62000c1162000c088262000be4565b84845462000b52565b825550505050565b600090565b62000c2862000c19565b62000c3581848462000bee565b505050565b5b8181101562000c5d5762000c5160008262000c1e565b60018101905062000c3b565b5050565b601f82111562000cac5762000c768162000b20565b62000c818462000b35565b8101602085101562000c91578190505b62000ca962000ca08562000b35565b83018262000c3a565b50505b505050565b600082821c905092915050565b600062000cd16000198460080262000cb1565b1980831691505092915050565b600062000cec838362000cbe565b9150826002028217905092915050565b62000d078262000a82565b67ffffffffffffffff81111562000d235762000d2262000a8d565b5b62000d2f825462000aeb565b62000d3c82828562000c61565b600060209050601f83116001811462000d74576000841562000d5f578287015190505b62000d6b858262000cde565b86555062000ddb565b601f19841662000d848662000b20565b60005b8281101562000dae5784890151825560018201915060208501945060208101905062000d87565b8683101562000dce578489015162000dca601f89168262000cbe565b8355505b6001600288020188555050505b505050505050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000e158262000de8565b9050919050565b62000e278162000e08565b811462000e3357600080fd5b50565b60008151905062000e478162000e1c565b92915050565b60006020828403121562000e665762000e6562000de3565b5b600062000e768482850162000e36565b91505092915050565b62000e8a8162000e08565b82525050565b600060408201905062000ea7600083018562000e7f565b62000eb6602083018462000e7f565b9392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000ef98262000ba8565b915062000f068362000ba8565b925082820262000f168162000ba8565b9150828204841483151762000f305762000f2f62000ebd565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600062000f738262000ba8565b915062000f808362000ba8565b92508262000f935762000f9262000f37565b5b828204905092915050565b600062000fab8262000ba8565b915062000fb88362000ba8565b925082820190508082111562000fd35762000fd262000ebd565b5b92915050565b60008115159050919050565b62000ff08162000fd9565b82525050565b60006020820190506200100d600083018462000fe5565b92915050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b60006200105c601f8362001013565b9150620010698262001024565b602082019050919050565b600060208201905081810360008301526200108f816200104d565b9050919050565b620010a18162000ba8565b82525050565b6000602082019050620010be600083018462001096565b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000620010fc60208362001013565b91506200110982620010c4565b602082019050919050565b600060208201905081810360008301526200112f81620010ed565b9050919050565b60805160a051615255620011be600039600081816111cc0152818161162001528181611d5801528181611e0f01528181611e3c01528181612585015281816136660152818161371f015261374c015260008181610f950152818161252d015281816138c2015281816139a3015281816139ca01528181613a660152613a8d01526152556000f3fe6080604052600436106103b15760003560e01c80638da5cb5b116101e7578063bbc0c7421161010d578063dd62ed3e116100a0578063f2fde38b1161006f578063f2fde38b14610e03578063f637434214610e2c578063f8b45b0514610e57578063fe72b27a14610e82576103b8565b8063dd62ed3e14610d45578063e2f4560514610d82578063e884f26014610dad578063f11a24d314610dd8576103b8565b8063c876d0b9116100dc578063c876d0b914610c87578063c8c8ebe414610cb2578063d257b34f14610cdd578063d85ba06314610d1a576103b8565b8063bbc0c74214610be1578063c024666814610c0c578063c17b5b8c14610c35578063c18bc19514610c5e576103b8565b80639ec22c0e11610185578063a4c82a0011610154578063a4c82a0014610b13578063a9059cbb14610b3e578063aacebbe314610b7b578063b62496f514610ba4576103b8565b80639ec22c0e14610a555780639fccce3214610a80578063a0d82dc514610aab578063a457c2d714610ad6576103b8565b8063924de9b7116101c1578063924de9b7146109ad57806395d89b41146109d65780639a7a23d614610a015780639c3b4fdc14610a2a576103b8565b80638da5cb5b1461092c5780638ea5220f146109575780639213691314610982576103b8565b8063313ce567116102d7578063715018a61161026a57806375f0a8741161023957806375f0a874146108965780637bce5a04146108c15780638095d564146108ec5780638a8c523c14610915576103b8565b8063715018a614610802578063730c188814610819578063751039fc146108425780637571336a1461086d576103b8565b80634fbee193116102a65780634fbee193146107325780636a486a8e1461076f5780636ddd17131461079a57806370a08231146107c5576103b8565b8063313ce56714610674578063395093511461069f57806349bd5a5e146106dc5780634a62bb6514610707576103b8565b8063199ffc721161034f57806323b872dd1161031e57806323b872dd146105b657806327c8f835146105f35780632c3e486c1461061e5780632e82f1a014610649576103b8565b8063199ffc721461050c5780631a8145bb146105375780631f3fed8f14610562578063203e727e1461058d576103b8565b80631694505e1161038b5780631694505e1461046257806318160ddd1461048d5780631816467f146104b8578063184c16c5146104e1576103b8565b806306fdde03146103bd578063095ea7b3146103e857806310d5de5314610425576103b8565b366103b857005b600080fd5b3480156103c957600080fd5b506103d2610ebf565b6040516103df9190613bcc565b60405180910390f35b3480156103f457600080fd5b5061040f600480360381019061040a9190613c87565b610f51565b60405161041c9190613ce2565b60405180910390f35b34801561043157600080fd5b5061044c60048036038101906104479190613cfd565b610f74565b6040516104599190613ce2565b60405180910390f35b34801561046e57600080fd5b50610477610f93565b6040516104849190613d89565b60405180910390f35b34801561049957600080fd5b506104a2610fb7565b6040516104af9190613db3565b60405180910390f35b3480156104c457600080fd5b506104df60048036038101906104da9190613cfd565b610fc1565b005b3480156104ed57600080fd5b506104f6611089565b6040516105039190613db3565b60405180910390f35b34801561051857600080fd5b5061052161108f565b60405161052e9190613db3565b60405180910390f35b34801561054357600080fd5b5061054c611095565b6040516105599190613db3565b60405180910390f35b34801561056e57600080fd5b5061057761109b565b6040516105849190613db3565b60405180910390f35b34801561059957600080fd5b506105b460048036038101906105af9190613dce565b6110a1565b005b3480156105c257600080fd5b506105dd60048036038101906105d89190613dfb565b61113c565b6040516105ea9190613ce2565b60405180910390f35b3480156105ff57600080fd5b5061060861116b565b6040516106159190613e5d565b60405180910390f35b34801561062a57600080fd5b50610633611171565b6040516106409190613db3565b60405180910390f35b34801561065557600080fd5b5061065e611177565b60405161066b9190613ce2565b60405180910390f35b34801561068057600080fd5b5061068961118a565b6040516106969190613e94565b60405180910390f35b3480156106ab57600080fd5b506106c660048036038101906106c19190613c87565b611193565b6040516106d39190613ce2565b60405180910390f35b3480156106e857600080fd5b506106f16111ca565b6040516106fe9190613e5d565b60405180910390f35b34801561071357600080fd5b5061071c6111ee565b6040516107299190613ce2565b60405180910390f35b34801561073e57600080fd5b5061075960048036038101906107549190613cfd565b611201565b6040516107669190613ce2565b60405180910390f35b34801561077b57600080fd5b50610784611257565b6040516107919190613db3565b60405180910390f35b3480156107a657600080fd5b506107af61125d565b6040516107bc9190613ce2565b60405180910390f35b3480156107d157600080fd5b506107ec60048036038101906107e79190613cfd565b611270565b6040516107f99190613db3565b60405180910390f35b34801561080e57600080fd5b506108176112b8565b005b34801561082557600080fd5b50610840600480360381019061083b9190613edb565b6112cc565b005b34801561084e57600080fd5b50610857611398565b6040516108649190613ce2565b60405180910390f35b34801561087957600080fd5b50610894600480360381019061088f9190613f2e565b6113c4565b005b3480156108a257600080fd5b506108ab611427565b6040516108b89190613e5d565b60405180910390f35b3480156108cd57600080fd5b506108d661144d565b6040516108e39190613db3565b60405180910390f35b3480156108f857600080fd5b50610913600480360381019061090e9190613f6e565b611453565b005b34801561092157600080fd5b5061092a6114dd565b005b34801561093857600080fd5b50610941611509565b60405161094e9190613e5d565b60405180910390f35b34801561096357600080fd5b5061096c611533565b6040516109799190613e5d565b60405180910390f35b34801561098e57600080fd5b50610997611559565b6040516109a49190613db3565b60405180910390f35b3480156109b957600080fd5b506109d460048036038101906109cf9190613fc1565b61155f565b005b3480156109e257600080fd5b506109eb611584565b6040516109f89190613bcc565b60405180910390f35b348015610a0d57600080fd5b50610a286004803603810190610a239190613f2e565b611616565b005b348015610a3657600080fd5b50610a3f6116ba565b604051610a4c9190613db3565b60405180910390f35b348015610a6157600080fd5b50610a6a6116c0565b604051610a779190613db3565b60405180910390f35b348015610a8c57600080fd5b50610a956116c6565b604051610aa29190613db3565b60405180910390f35b348015610ab757600080fd5b50610ac06116cc565b604051610acd9190613db3565b60405180910390f35b348015610ae257600080fd5b50610afd6004803603810190610af89190613c87565b6116d2565b604051610b0a9190613ce2565b60405180910390f35b348015610b1f57600080fd5b50610b28611749565b604051610b359190613db3565b60405180910390f35b348015610b4a57600080fd5b50610b656004803603810190610b609190613c87565b61174f565b604051610b729190613ce2565b60405180910390f35b348015610b8757600080fd5b50610ba26004803603810190610b9d9190613cfd565b611772565b005b348015610bb057600080fd5b50610bcb6004803603810190610bc69190613cfd565b61183a565b604051610bd89190613ce2565b60405180910390f35b348015610bed57600080fd5b50610bf661185a565b604051610c039190613ce2565b60405180910390f35b348015610c1857600080fd5b50610c336004803603810190610c2e9190613f2e565b61186d565b005b348015610c4157600080fd5b50610c5c6004803603810190610c579190613f6e565b61191e565b005b348015610c6a57600080fd5b50610c856004803603810190610c809190613dce565b6119a9565b005b348015610c9357600080fd5b50610c9c611a44565b604051610ca99190613ce2565b60405180910390f35b348015610cbe57600080fd5b50610cc7611a57565b604051610cd49190613db3565b60405180910390f35b348015610ce957600080fd5b50610d046004803603810190610cff9190613dce565b611a5d565b604051610d119190613ce2565b60405180910390f35b348015610d2657600080fd5b50610d2f611b3d565b604051610d3c9190613db3565b60405180910390f35b348015610d5157600080fd5b50610d6c6004803603810190610d679190613fee565b611b43565b604051610d799190613db3565b60405180910390f35b348015610d8e57600080fd5b50610d97611bca565b604051610da49190613db3565b60405180910390f35b348015610db957600080fd5b50610dc2611bd0565b604051610dcf9190613ce2565b60405180910390f35b348015610de457600080fd5b50610ded611bfc565b604051610dfa9190613db3565b60405180910390f35b348015610e0f57600080fd5b50610e2a6004803603810190610e259190613cfd565b611c02565b005b348015610e3857600080fd5b50610e41611c85565b604051610e4e9190613db3565b60405180910390f35b348015610e6357600080fd5b50610e6c611c8b565b604051610e799190613db3565b60405180910390f35b348015610e8e57600080fd5b50610ea96004803603810190610ea49190613dce565b611c91565b604051610eb69190613ce2565b60405180910390f35b606060038054610ece9061405d565b80601f0160208091040260200160405190810160405280929190818152602001828054610efa9061405d565b8015610f475780601f10610f1c57610100808354040283529160200191610f47565b820191906000526020600020905b815481529060010190602001808311610f2a57829003601f168201915b5050505050905090565b600080610f5c611ef5565b9050610f69818585611efd565b600191505092915050565b602080528060005260406000206000915054906101000a900460ff1681565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600254905090565b610fc96120c6565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74360405160405180910390a380600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600f5481565b600b5481565b601d5481565b601c5481565b6110a96120c6565b670de0b6b3a76400006103e860016110bf610fb7565b6110c991906140bd565b6110d3919061412e565b6110dd919061412e565b81101561111f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611116906141d1565b60405180910390fd5b670de0b6b3a76400008161113391906140bd565b60088190555050565b600080611147611ef5565b9050611154858285612144565b61115f8585856121d0565b60019150509392505050565b61dead81565b600d5481565b600c60009054906101000a900460ff1681565b60006012905090565b60008061119e611ef5565b90506111bf8185856111b08589611b43565b6111ba91906141f1565b611efd565b600191505092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b601160009054906101000a900460ff1681565b6000601f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60185481565b601160029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6112c06120c6565b6112ca6000612f65565b565b6112d46120c6565b610258831015611319576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131090614297565b60405180910390fd5b6103e8821115801561132c575060008210155b61136b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136290614329565b60405180910390fd5b82600d8190555081600b8190555080600c60006101000a81548160ff021916908315150217905550505050565b60006113a26120c6565b6000601160006101000a81548160ff0219169083151502179055506001905090565b6113cc6120c6565b80602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60155481565b61145b6120c6565b82601581905550816016819055508060178190555060175460165460155461148391906141f1565b61148d91906141f1565b6014819055506014805411156114d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114cf90614395565b60405180910390fd5b505050565b6114e56120c6565b6001601160016101000a81548160ff02191690831515021790555042600e81905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60195481565b6115676120c6565b80601160026101000a81548160ff02191690831515021790555050565b6060600480546115939061405d565b80601f01602080910402602001604051908101604052809291908181526020018280546115bf9061405d565b801561160c5780601f106115e15761010080835404028352916020019161160c565b820191906000526020600020905b8154815290600101906020018083116115ef57829003601f168201915b5050505050905090565b61161e6120c6565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036116ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116a390614427565b60405180910390fd5b6116b6828261302b565b5050565b60175481565b60105481565b601e5481565b601b5481565b6000806116dd611ef5565b905060006116eb8286611b43565b905083811015611730576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611727906144b9565b60405180910390fd5b61173d8286868403611efd565b60019250505092915050565b600e5481565b60008061175a611ef5565b90506117678185856121d0565b600191505092915050565b61177a6120c6565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567460405160405180910390a380600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60216020528060005260406000206000915054906101000a900460ff1681565b601160019054906101000a900460ff1681565b6118756120c6565b80601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7826040516119129190613ce2565b60405180910390a25050565b6119266120c6565b8260198190555081601a8190555080601b81905550601b54601a5460195461194e91906141f1565b61195891906141f1565b601881905550601460185411156119a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161199b90614395565b60405180910390fd5b505050565b6119b16120c6565b670de0b6b3a76400006103e860016119c7610fb7565b6119d191906140bd565b6119db919061412e565b6119e5919061412e565b811015611a27576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a1e9061454b565b60405180910390fd5b670de0b6b3a764000081611a3b91906140bd565b600a8190555050565b601360009054906101000a900460ff1681565b60085481565b6000611a676120c6565b620186a06001611a75610fb7565b611a7f91906140bd565b611a89919061412e565b821015611acb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ac2906145dd565b60405180910390fd5b60646004611ad7610fb7565b611ae191906140bd565b611aeb919061412e565b821115611b2d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b249061466f565b60405180910390fd5b8160098190555060019050919050565b60145481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60095481565b6000611bda6120c6565b6000601360006101000a81548160ff0219169083151502179055506001905090565b60165481565b611c0a6120c6565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611c79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c7090614701565b60405180910390fd5b611c8281612f65565b50565b601a5481565b600a5481565b6000611c9b6120c6565b600f54601054611cab91906141f1565b4211611cec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ce39061476d565b60405180910390fd5b6103e8821115611d31576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d28906147ff565b60405180910390fd5b4260108190555060003073ffffffffffffffffffffffffffffffffffffffff166370a082317f00000000000000000000000000000000000000000000000000000000000000006040518263ffffffff1660e01b8152600401611d939190613e5d565b602060405180830381865afa158015611db0573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611dd49190614834565b90506000611dff612710611df186856130cc90919063ffffffff16565b6130e290919063ffffffff16565b90506000811115611e3857611e377f000000000000000000000000000000000000000000000000000000000000000061dead836130f8565b5b60007f000000000000000000000000000000000000000000000000000000000000000090508073ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b158015611ea557600080fd5b505af1158015611eb9573d6000803e3d6000fd5b505050507f8462566617872a3fbab94534675218431ff9e204063ee3f4f43d965626a39abb60405160405180910390a160019350505050919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611f6c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f63906148d3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611fdb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fd290614965565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516120b99190613db3565b60405180910390a3505050565b6120ce611ef5565b73ffffffffffffffffffffffffffffffffffffffff166120ec611509565b73ffffffffffffffffffffffffffffffffffffffff1614612142576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612139906149d1565b60405180910390fd5b565b60006121508484611b43565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146121ca57818110156121bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121b390614a3d565b60405180910390fd5b6121c98484848403611efd565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361223f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161223690614acf565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036122ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122a590614b61565b60405180910390fd5b600081036122c7576122c2838360006130f8565b612f60565b601160009054906101000a900460ff161561298a576122e4611509565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156123525750612322611509565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561238b5750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156123c5575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156123de5750600560149054906101000a900460ff16155b1561298957601160019054906101000a900460ff166124d857601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806124985750601f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b6124d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124ce90614bcd565b60405180910390fd5b5b601360009054906101000a900460ff16156126a0576124f5611509565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415801561257c57507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156125d457507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b1561269f5743601260003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541061265a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161265190614c85565b60405180910390fd5b43601260003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b602160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156127435750602060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156127ea5760085481111561278d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161278490614d17565b60405180910390fd5b600a5461279983611270565b826127a491906141f1565b11156127e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127dc90614d83565b60405180910390fd5b612988565b602160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561288d5750602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156128dc576008548111156128d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128ce90614e15565b60405180910390fd5b612987565b602060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661298657600a5461293983611270565b8261294491906141f1565b1115612985576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161297c90614d83565b60405180910390fd5b5b5b5b5b5b600061299530611270565b9050600060095482101590508080156129ba5750601160029054906101000a900460ff165b80156129d35750600560149054906101000a900460ff16155b8015612a295750602160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612a7f5750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612ad55750601f60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612b19576001600560146101000a81548160ff021916908315150217905550612afd61336e565b6000600560146101000a81548160ff0219169083151502179055505b600560149054906101000a900460ff16158015612b7f5750602160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b8015612b975750600c60009054906101000a900460ff165b8015612bb25750600d54600e54612bae91906141f1565b4210155b8015612c085750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612c1757612c1561363d565b505b6000600560149054906101000a900460ff16159050601f60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612ccd5750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15612cd757600090505b60008115612f5057602160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612d3a57506000601854115b15612e0757612d676064612d59601854886130cc90919063ffffffff16565b6130e290919063ffffffff16565b9050601854601a5482612d7a91906140bd565b612d84919061412e565b601d6000828254612d9591906141f1565b92505081905550601854601b5482612dad91906140bd565b612db7919061412e565b601e6000828254612dc891906141f1565b9250508190555060185460195482612de091906140bd565b612dea919061412e565b601c6000828254612dfb91906141f1565b92505081905550612f2c565b602160008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612e6257506000601454115b15612f2b57612e8f6064612e81601454886130cc90919063ffffffff16565b6130e290919063ffffffff16565b905060145460165482612ea291906140bd565b612eac919061412e565b601d6000828254612ebd91906141f1565b9250508190555060145460175482612ed591906140bd565b612edf919061412e565b601e6000828254612ef091906141f1565b9250508190555060145460155482612f0891906140bd565b612f12919061412e565b601c6000828254612f2391906141f1565b925050819055505b5b6000811115612f4157612f408730836130f8565b5b8085612f4d9190614e35565b94505b612f5b8787876130f8565b505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80602160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600081836130da91906140bd565b905092915050565b600081836130f0919061412e565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603613167576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161315e90614acf565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036131d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131cd90614b61565b60405180910390fd5b6131e1838383613803565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015613267576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161325e90614edb565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516133559190613db3565b60405180910390a3613368848484613808565b50505050565b600061337930611270565b90506000601e54601c54601d5461339091906141f1565b61339a91906141f1565b90506000808314806133ac5750600082145b156133b95750505061363b565b6009548311156133c95760095492505b6000600283601d54866133dc91906140bd565b6133e6919061412e565b6133f0919061412e565b90506000613407828661380d90919063ffffffff16565b9050600047905061341782613823565b600061342c824761380d90919063ffffffff16565b9050600061345787613449601c54856130cc90919063ffffffff16565b6130e290919063ffffffff16565b9050600061348288613474601e54866130cc90919063ffffffff16565b6130e290919063ffffffff16565b905060008183856134939190614e35565b61349d9190614e35565b90506000601d819055506000601c819055506000601e81905550600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16826040516134fd90614f2c565b60006040518083038185875af1925050503d806000811461353a576040519150601f19603f3d011682016040523d82523d6000602084013e61353f565b606091505b5050809850506000871180156135555750600081115b156135a2576135648782613a60565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618682601d5460405161359993929190614f41565b60405180910390a15b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16476040516135e890614f2c565b60006040518083038185875af1925050503d8060008114613625576040519150601f19603f3d011682016040523d82523d6000602084013e61362a565b606091505b505080985050505050505050505050505b565b600042600e8190555060003073ffffffffffffffffffffffffffffffffffffffff166370a082317f00000000000000000000000000000000000000000000000000000000000000006040518263ffffffff1660e01b81526004016136a19190613e5d565b602060405180830381865afa1580156136be573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906136e29190614834565b9050600061370f612710613701600b54856130cc90919063ffffffff16565b6130e290919063ffffffff16565b90506000811115613748576137477f000000000000000000000000000000000000000000000000000000000000000061dead836130f8565b5b60007f000000000000000000000000000000000000000000000000000000000000000090508073ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b1580156137b557600080fd5b505af11580156137c9573d6000803e3d6000fd5b505050507f454c91ae84fcc766ddda0dcb289f26b3d0176efeacf4061fc219fa6ca8c3048d60405160405180910390a16001935050505090565b505050565b505050565b6000818361381b9190614e35565b905092915050565b6000600267ffffffffffffffff8111156138405761383f614f78565b5b60405190808252806020026020018201604052801561386e5781602001602082028036833780820191505090505b509050308160008151811061388657613885614fa7565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561392b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061394f9190614feb565b8160018151811061396357613962614fa7565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250506139c8307f000000000000000000000000000000000000000000000000000000000000000084611efd565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401613a2a959493929190615111565b600060405180830381600087803b158015613a4457600080fd5b505af1158015613a58573d6000803e3d6000fd5b505050505050565b613a8b307f000000000000000000000000000000000000000000000000000000000000000084611efd565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f305d71982308560008061dead426040518863ffffffff1660e01b8152600401613af29695949392919061516b565b60606040518083038185885af1158015613b10573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190613b3591906151cc565b5050505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613b76578082015181840152602081019050613b5b565b60008484015250505050565b6000601f19601f8301169050919050565b6000613b9e82613b3c565b613ba88185613b47565b9350613bb8818560208601613b58565b613bc181613b82565b840191505092915050565b60006020820190508181036000830152613be68184613b93565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613c1e82613bf3565b9050919050565b613c2e81613c13565b8114613c3957600080fd5b50565b600081359050613c4b81613c25565b92915050565b6000819050919050565b613c6481613c51565b8114613c6f57600080fd5b50565b600081359050613c8181613c5b565b92915050565b60008060408385031215613c9e57613c9d613bee565b5b6000613cac85828601613c3c565b9250506020613cbd85828601613c72565b9150509250929050565b60008115159050919050565b613cdc81613cc7565b82525050565b6000602082019050613cf76000830184613cd3565b92915050565b600060208284031215613d1357613d12613bee565b5b6000613d2184828501613c3c565b91505092915050565b6000819050919050565b6000613d4f613d4a613d4584613bf3565b613d2a565b613bf3565b9050919050565b6000613d6182613d34565b9050919050565b6000613d7382613d56565b9050919050565b613d8381613d68565b82525050565b6000602082019050613d9e6000830184613d7a565b92915050565b613dad81613c51565b82525050565b6000602082019050613dc86000830184613da4565b92915050565b600060208284031215613de457613de3613bee565b5b6000613df284828501613c72565b91505092915050565b600080600060608486031215613e1457613e13613bee565b5b6000613e2286828701613c3c565b9350506020613e3386828701613c3c565b9250506040613e4486828701613c72565b9150509250925092565b613e5781613c13565b82525050565b6000602082019050613e726000830184613e4e565b92915050565b600060ff82169050919050565b613e8e81613e78565b82525050565b6000602082019050613ea96000830184613e85565b92915050565b613eb881613cc7565b8114613ec357600080fd5b50565b600081359050613ed581613eaf565b92915050565b600080600060608486031215613ef457613ef3613bee565b5b6000613f0286828701613c72565b9350506020613f1386828701613c72565b9250506040613f2486828701613ec6565b9150509250925092565b60008060408385031215613f4557613f44613bee565b5b6000613f5385828601613c3c565b9250506020613f6485828601613ec6565b9150509250929050565b600080600060608486031215613f8757613f86613bee565b5b6000613f9586828701613c72565b9350506020613fa686828701613c72565b9250506040613fb786828701613c72565b9150509250925092565b600060208284031215613fd757613fd6613bee565b5b6000613fe584828501613ec6565b91505092915050565b6000806040838503121561400557614004613bee565b5b600061401385828601613c3c565b925050602061402485828601613c3c565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061407557607f821691505b6020821081036140885761408761402e565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006140c882613c51565b91506140d383613c51565b92508282026140e181613c51565b915082820484148315176140f8576140f761408e565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061413982613c51565b915061414483613c51565b925082614154576141536140ff565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20302e31250000000000000000000000000000000000602082015250565b60006141bb602f83613b47565b91506141c68261415f565b604082019050919050565b600060208201905081810360008301526141ea816141ae565b9050919050565b60006141fc82613c51565b915061420783613c51565b925082820190508082111561421f5761421e61408e565b5b92915050565b7f63616e6e6f7420736574206275796261636b206d6f7265206f6674656e20746860008201527f616e206576657279203130206d696e7574657300000000000000000000000000602082015250565b6000614281603383613b47565b915061428c82614225565b604082019050919050565b600060208201905081810360008301526142b081614274565b9050919050565b7f4d75737420736574206175746f204c50206275726e2070657263656e7420626560008201527f747765656e20302520616e642031302500000000000000000000000000000000602082015250565b6000614313603083613b47565b915061431e826142b7565b604082019050919050565b6000602082019050818103600083015261434281614306565b9050919050565b7f4d757374206b656570206665657320617420323025206f72206c657373000000600082015250565b600061437f601d83613b47565b915061438a82614349565b602082019050919050565b600060208201905081810360008301526143ae81614372565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b6000614411603983613b47565b915061441c826143b5565b604082019050919050565b6000602082019050818103600083015261444081614404565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006144a3602583613b47565b91506144ae82614447565b604082019050919050565b600060208201905081810360008301526144d281614496565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f302e312500000000000000000000000000000000000000000000000000000000602082015250565b6000614535602483613b47565b9150614540826144d9565b604082019050919050565b6000602082019050818103600083015261456481614528565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b60006145c7603583613b47565b91506145d28261456b565b604082019050919050565b600060208201905081810360008301526145f6816145ba565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20342520746f74616c20737570706c792e0000000000000000000000000000602082015250565b6000614659603283613b47565b9150614664826145fd565b604082019050919050565b600060208201905081810360008301526146888161464c565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006146eb602683613b47565b91506146f68261468f565b604082019050919050565b6000602082019050818103600083015261471a816146de565b9050919050565b7f4d757374207761697420666f7220636f6f6c646f776e20746f2066696e697368600082015250565b6000614757602083613b47565b915061476282614721565b602082019050919050565b600060208201905081810360008301526147868161474a565b9050919050565b7f4d6179206e6f74206e756b65206d6f7265207468616e20313025206f6620746f60008201527f6b656e7320696e204c5000000000000000000000000000000000000000000000602082015250565b60006147e9602a83613b47565b91506147f48261478d565b604082019050919050565b60006020820190508181036000830152614818816147dc565b9050919050565b60008151905061482e81613c5b565b92915050565b60006020828403121561484a57614849613bee565b5b60006148588482850161481f565b91505092915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006148bd602483613b47565b91506148c882614861565b604082019050919050565b600060208201905081810360008301526148ec816148b0565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061494f602283613b47565b915061495a826148f3565b604082019050919050565b6000602082019050818103600083015261497e81614942565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006149bb602083613b47565b91506149c682614985565b602082019050919050565b600060208201905081810360008301526149ea816149ae565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000614a27601d83613b47565b9150614a32826149f1565b602082019050919050565b60006020820190508181036000830152614a5681614a1a565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000614ab9602583613b47565b9150614ac482614a5d565b604082019050919050565b60006020820190508181036000830152614ae881614aac565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000614b4b602383613b47565b9150614b5682614aef565b604082019050919050565b60006020820190508181036000830152614b7a81614b3e565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b6000614bb7601683613b47565b9150614bc282614b81565b602082019050919050565b60006020820190508181036000830152614be681614baa565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60208201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000604082015250565b6000614c6f604983613b47565b9150614c7a82614bed565b606082019050919050565b60006020820190508181036000830152614c9e81614c62565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b6000614d01603583613b47565b9150614d0c82614ca5565b604082019050919050565b60006020820190508181036000830152614d3081614cf4565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b6000614d6d601383613b47565b9150614d7882614d37565b602082019050919050565b60006020820190508181036000830152614d9c81614d60565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b6000614dff603683613b47565b9150614e0a82614da3565b604082019050919050565b60006020820190508181036000830152614e2e81614df2565b9050919050565b6000614e4082613c51565b9150614e4b83613c51565b9250828203905081811115614e6357614e6261408e565b5b92915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000614ec5602683613b47565b9150614ed082614e69565b604082019050919050565b60006020820190508181036000830152614ef481614eb8565b9050919050565b600081905092915050565b50565b6000614f16600083614efb565b9150614f2182614f06565b600082019050919050565b6000614f3782614f09565b9150819050919050565b6000606082019050614f566000830186613da4565b614f636020830185613da4565b614f706040830184613da4565b949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050614fe581613c25565b92915050565b60006020828403121561500157615000613bee565b5b600061500f84828501614fd6565b91505092915050565b6000819050919050565b600061503d61503861503384615018565b613d2a565b613c51565b9050919050565b61504d81615022565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61508881613c13565b82525050565b600061509a838361507f565b60208301905092915050565b6000602082019050919050565b60006150be82615053565b6150c8818561505e565b93506150d38361506f565b8060005b838110156151045781516150eb888261508e565b97506150f6836150a6565b9250506001810190506150d7565b5085935050505092915050565b600060a0820190506151266000830188613da4565b6151336020830187615044565b818103604083015261514581866150b3565b90506151546060830185613e4e565b6151616080830184613da4565b9695505050505050565b600060c0820190506151806000830189613e4e565b61518d6020830188613da4565b61519a6040830187615044565b6151a76060830186615044565b6151b46080830185613e4e565b6151c160a0830184613da4565b979650505050505050565b6000806000606084860312156151e5576151e4613bee565b5b60006151f38682870161481f565b93505060206152048682870161481f565b92505060406152158682870161481f565b915050925092509256fea2646970667358221220a48beb40048fede6483caca2b3461865e5e0997c19cb3f670c5f4988d785329f64736f6c63430008120033
Deployed Bytecode
0x6080604052600436106103b15760003560e01c80638da5cb5b116101e7578063bbc0c7421161010d578063dd62ed3e116100a0578063f2fde38b1161006f578063f2fde38b14610e03578063f637434214610e2c578063f8b45b0514610e57578063fe72b27a14610e82576103b8565b8063dd62ed3e14610d45578063e2f4560514610d82578063e884f26014610dad578063f11a24d314610dd8576103b8565b8063c876d0b9116100dc578063c876d0b914610c87578063c8c8ebe414610cb2578063d257b34f14610cdd578063d85ba06314610d1a576103b8565b8063bbc0c74214610be1578063c024666814610c0c578063c17b5b8c14610c35578063c18bc19514610c5e576103b8565b80639ec22c0e11610185578063a4c82a0011610154578063a4c82a0014610b13578063a9059cbb14610b3e578063aacebbe314610b7b578063b62496f514610ba4576103b8565b80639ec22c0e14610a555780639fccce3214610a80578063a0d82dc514610aab578063a457c2d714610ad6576103b8565b8063924de9b7116101c1578063924de9b7146109ad57806395d89b41146109d65780639a7a23d614610a015780639c3b4fdc14610a2a576103b8565b80638da5cb5b1461092c5780638ea5220f146109575780639213691314610982576103b8565b8063313ce567116102d7578063715018a61161026a57806375f0a8741161023957806375f0a874146108965780637bce5a04146108c15780638095d564146108ec5780638a8c523c14610915576103b8565b8063715018a614610802578063730c188814610819578063751039fc146108425780637571336a1461086d576103b8565b80634fbee193116102a65780634fbee193146107325780636a486a8e1461076f5780636ddd17131461079a57806370a08231146107c5576103b8565b8063313ce56714610674578063395093511461069f57806349bd5a5e146106dc5780634a62bb6514610707576103b8565b8063199ffc721161034f57806323b872dd1161031e57806323b872dd146105b657806327c8f835146105f35780632c3e486c1461061e5780632e82f1a014610649576103b8565b8063199ffc721461050c5780631a8145bb146105375780631f3fed8f14610562578063203e727e1461058d576103b8565b80631694505e1161038b5780631694505e1461046257806318160ddd1461048d5780631816467f146104b8578063184c16c5146104e1576103b8565b806306fdde03146103bd578063095ea7b3146103e857806310d5de5314610425576103b8565b366103b857005b600080fd5b3480156103c957600080fd5b506103d2610ebf565b6040516103df9190613bcc565b60405180910390f35b3480156103f457600080fd5b5061040f600480360381019061040a9190613c87565b610f51565b60405161041c9190613ce2565b60405180910390f35b34801561043157600080fd5b5061044c60048036038101906104479190613cfd565b610f74565b6040516104599190613ce2565b60405180910390f35b34801561046e57600080fd5b50610477610f93565b6040516104849190613d89565b60405180910390f35b34801561049957600080fd5b506104a2610fb7565b6040516104af9190613db3565b60405180910390f35b3480156104c457600080fd5b506104df60048036038101906104da9190613cfd565b610fc1565b005b3480156104ed57600080fd5b506104f6611089565b6040516105039190613db3565b60405180910390f35b34801561051857600080fd5b5061052161108f565b60405161052e9190613db3565b60405180910390f35b34801561054357600080fd5b5061054c611095565b6040516105599190613db3565b60405180910390f35b34801561056e57600080fd5b5061057761109b565b6040516105849190613db3565b60405180910390f35b34801561059957600080fd5b506105b460048036038101906105af9190613dce565b6110a1565b005b3480156105c257600080fd5b506105dd60048036038101906105d89190613dfb565b61113c565b6040516105ea9190613ce2565b60405180910390f35b3480156105ff57600080fd5b5061060861116b565b6040516106159190613e5d565b60405180910390f35b34801561062a57600080fd5b50610633611171565b6040516106409190613db3565b60405180910390f35b34801561065557600080fd5b5061065e611177565b60405161066b9190613ce2565b60405180910390f35b34801561068057600080fd5b5061068961118a565b6040516106969190613e94565b60405180910390f35b3480156106ab57600080fd5b506106c660048036038101906106c19190613c87565b611193565b6040516106d39190613ce2565b60405180910390f35b3480156106e857600080fd5b506106f16111ca565b6040516106fe9190613e5d565b60405180910390f35b34801561071357600080fd5b5061071c6111ee565b6040516107299190613ce2565b60405180910390f35b34801561073e57600080fd5b5061075960048036038101906107549190613cfd565b611201565b6040516107669190613ce2565b60405180910390f35b34801561077b57600080fd5b50610784611257565b6040516107919190613db3565b60405180910390f35b3480156107a657600080fd5b506107af61125d565b6040516107bc9190613ce2565b60405180910390f35b3480156107d157600080fd5b506107ec60048036038101906107e79190613cfd565b611270565b6040516107f99190613db3565b60405180910390f35b34801561080e57600080fd5b506108176112b8565b005b34801561082557600080fd5b50610840600480360381019061083b9190613edb565b6112cc565b005b34801561084e57600080fd5b50610857611398565b6040516108649190613ce2565b60405180910390f35b34801561087957600080fd5b50610894600480360381019061088f9190613f2e565b6113c4565b005b3480156108a257600080fd5b506108ab611427565b6040516108b89190613e5d565b60405180910390f35b3480156108cd57600080fd5b506108d661144d565b6040516108e39190613db3565b60405180910390f35b3480156108f857600080fd5b50610913600480360381019061090e9190613f6e565b611453565b005b34801561092157600080fd5b5061092a6114dd565b005b34801561093857600080fd5b50610941611509565b60405161094e9190613e5d565b60405180910390f35b34801561096357600080fd5b5061096c611533565b6040516109799190613e5d565b60405180910390f35b34801561098e57600080fd5b50610997611559565b6040516109a49190613db3565b60405180910390f35b3480156109b957600080fd5b506109d460048036038101906109cf9190613fc1565b61155f565b005b3480156109e257600080fd5b506109eb611584565b6040516109f89190613bcc565b60405180910390f35b348015610a0d57600080fd5b50610a286004803603810190610a239190613f2e565b611616565b005b348015610a3657600080fd5b50610a3f6116ba565b604051610a4c9190613db3565b60405180910390f35b348015610a6157600080fd5b50610a6a6116c0565b604051610a779190613db3565b60405180910390f35b348015610a8c57600080fd5b50610a956116c6565b604051610aa29190613db3565b60405180910390f35b348015610ab757600080fd5b50610ac06116cc565b604051610acd9190613db3565b60405180910390f35b348015610ae257600080fd5b50610afd6004803603810190610af89190613c87565b6116d2565b604051610b0a9190613ce2565b60405180910390f35b348015610b1f57600080fd5b50610b28611749565b604051610b359190613db3565b60405180910390f35b348015610b4a57600080fd5b50610b656004803603810190610b609190613c87565b61174f565b604051610b729190613ce2565b60405180910390f35b348015610b8757600080fd5b50610ba26004803603810190610b9d9190613cfd565b611772565b005b348015610bb057600080fd5b50610bcb6004803603810190610bc69190613cfd565b61183a565b604051610bd89190613ce2565b60405180910390f35b348015610bed57600080fd5b50610bf661185a565b604051610c039190613ce2565b60405180910390f35b348015610c1857600080fd5b50610c336004803603810190610c2e9190613f2e565b61186d565b005b348015610c4157600080fd5b50610c5c6004803603810190610c579190613f6e565b61191e565b005b348015610c6a57600080fd5b50610c856004803603810190610c809190613dce565b6119a9565b005b348015610c9357600080fd5b50610c9c611a44565b604051610ca99190613ce2565b60405180910390f35b348015610cbe57600080fd5b50610cc7611a57565b604051610cd49190613db3565b60405180910390f35b348015610ce957600080fd5b50610d046004803603810190610cff9190613dce565b611a5d565b604051610d119190613ce2565b60405180910390f35b348015610d2657600080fd5b50610d2f611b3d565b604051610d3c9190613db3565b60405180910390f35b348015610d5157600080fd5b50610d6c6004803603810190610d679190613fee565b611b43565b604051610d799190613db3565b60405180910390f35b348015610d8e57600080fd5b50610d97611bca565b604051610da49190613db3565b60405180910390f35b348015610db957600080fd5b50610dc2611bd0565b604051610dcf9190613ce2565b60405180910390f35b348015610de457600080fd5b50610ded611bfc565b604051610dfa9190613db3565b60405180910390f35b348015610e0f57600080fd5b50610e2a6004803603810190610e259190613cfd565b611c02565b005b348015610e3857600080fd5b50610e41611c85565b604051610e4e9190613db3565b60405180910390f35b348015610e6357600080fd5b50610e6c611c8b565b604051610e799190613db3565b60405180910390f35b348015610e8e57600080fd5b50610ea96004803603810190610ea49190613dce565b611c91565b604051610eb69190613ce2565b60405180910390f35b606060038054610ece9061405d565b80601f0160208091040260200160405190810160405280929190818152602001828054610efa9061405d565b8015610f475780601f10610f1c57610100808354040283529160200191610f47565b820191906000526020600020905b815481529060010190602001808311610f2a57829003601f168201915b5050505050905090565b600080610f5c611ef5565b9050610f69818585611efd565b600191505092915050565b602080528060005260406000206000915054906101000a900460ff1681565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6000600254905090565b610fc96120c6565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74360405160405180910390a380600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600f5481565b600b5481565b601d5481565b601c5481565b6110a96120c6565b670de0b6b3a76400006103e860016110bf610fb7565b6110c991906140bd565b6110d3919061412e565b6110dd919061412e565b81101561111f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611116906141d1565b60405180910390fd5b670de0b6b3a76400008161113391906140bd565b60088190555050565b600080611147611ef5565b9050611154858285612144565b61115f8585856121d0565b60019150509392505050565b61dead81565b600d5481565b600c60009054906101000a900460ff1681565b60006012905090565b60008061119e611ef5565b90506111bf8185856111b08589611b43565b6111ba91906141f1565b611efd565b600191505092915050565b7f0000000000000000000000004acd8f8d82487acded6da40c580747851a4c6bad81565b601160009054906101000a900460ff1681565b6000601f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60185481565b601160029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6112c06120c6565b6112ca6000612f65565b565b6112d46120c6565b610258831015611319576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131090614297565b60405180910390fd5b6103e8821115801561132c575060008210155b61136b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136290614329565b60405180910390fd5b82600d8190555081600b8190555080600c60006101000a81548160ff021916908315150217905550505050565b60006113a26120c6565b6000601160006101000a81548160ff0219169083151502179055506001905090565b6113cc6120c6565b80602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60155481565b61145b6120c6565b82601581905550816016819055508060178190555060175460165460155461148391906141f1565b61148d91906141f1565b6014819055506014805411156114d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114cf90614395565b60405180910390fd5b505050565b6114e56120c6565b6001601160016101000a81548160ff02191690831515021790555042600e81905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60195481565b6115676120c6565b80601160026101000a81548160ff02191690831515021790555050565b6060600480546115939061405d565b80601f01602080910402602001604051908101604052809291908181526020018280546115bf9061405d565b801561160c5780601f106115e15761010080835404028352916020019161160c565b820191906000526020600020905b8154815290600101906020018083116115ef57829003601f168201915b5050505050905090565b61161e6120c6565b7f0000000000000000000000004acd8f8d82487acded6da40c580747851a4c6bad73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036116ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116a390614427565b60405180910390fd5b6116b6828261302b565b5050565b60175481565b60105481565b601e5481565b601b5481565b6000806116dd611ef5565b905060006116eb8286611b43565b905083811015611730576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611727906144b9565b60405180910390fd5b61173d8286868403611efd565b60019250505092915050565b600e5481565b60008061175a611ef5565b90506117678185856121d0565b600191505092915050565b61177a6120c6565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567460405160405180910390a380600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60216020528060005260406000206000915054906101000a900460ff1681565b601160019054906101000a900460ff1681565b6118756120c6565b80601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7826040516119129190613ce2565b60405180910390a25050565b6119266120c6565b8260198190555081601a8190555080601b81905550601b54601a5460195461194e91906141f1565b61195891906141f1565b601881905550601460185411156119a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161199b90614395565b60405180910390fd5b505050565b6119b16120c6565b670de0b6b3a76400006103e860016119c7610fb7565b6119d191906140bd565b6119db919061412e565b6119e5919061412e565b811015611a27576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a1e9061454b565b60405180910390fd5b670de0b6b3a764000081611a3b91906140bd565b600a8190555050565b601360009054906101000a900460ff1681565b60085481565b6000611a676120c6565b620186a06001611a75610fb7565b611a7f91906140bd565b611a89919061412e565b821015611acb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ac2906145dd565b60405180910390fd5b60646004611ad7610fb7565b611ae191906140bd565b611aeb919061412e565b821115611b2d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b249061466f565b60405180910390fd5b8160098190555060019050919050565b60145481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60095481565b6000611bda6120c6565b6000601360006101000a81548160ff0219169083151502179055506001905090565b60165481565b611c0a6120c6565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611c79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c7090614701565b60405180910390fd5b611c8281612f65565b50565b601a5481565b600a5481565b6000611c9b6120c6565b600f54601054611cab91906141f1565b4211611cec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ce39061476d565b60405180910390fd5b6103e8821115611d31576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d28906147ff565b60405180910390fd5b4260108190555060003073ffffffffffffffffffffffffffffffffffffffff166370a082317f0000000000000000000000004acd8f8d82487acded6da40c580747851a4c6bad6040518263ffffffff1660e01b8152600401611d939190613e5d565b602060405180830381865afa158015611db0573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611dd49190614834565b90506000611dff612710611df186856130cc90919063ffffffff16565b6130e290919063ffffffff16565b90506000811115611e3857611e377f0000000000000000000000004acd8f8d82487acded6da40c580747851a4c6bad61dead836130f8565b5b60007f0000000000000000000000004acd8f8d82487acded6da40c580747851a4c6bad90508073ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b158015611ea557600080fd5b505af1158015611eb9573d6000803e3d6000fd5b505050507f8462566617872a3fbab94534675218431ff9e204063ee3f4f43d965626a39abb60405160405180910390a160019350505050919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611f6c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f63906148d3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611fdb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fd290614965565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516120b99190613db3565b60405180910390a3505050565b6120ce611ef5565b73ffffffffffffffffffffffffffffffffffffffff166120ec611509565b73ffffffffffffffffffffffffffffffffffffffff1614612142576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612139906149d1565b60405180910390fd5b565b60006121508484611b43565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146121ca57818110156121bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121b390614a3d565b60405180910390fd5b6121c98484848403611efd565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361223f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161223690614acf565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036122ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122a590614b61565b60405180910390fd5b600081036122c7576122c2838360006130f8565b612f60565b601160009054906101000a900460ff161561298a576122e4611509565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156123525750612322611509565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561238b5750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156123c5575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156123de5750600560149054906101000a900460ff16155b1561298957601160019054906101000a900460ff166124d857601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806124985750601f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b6124d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124ce90614bcd565b60405180910390fd5b5b601360009054906101000a900460ff16156126a0576124f5611509565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415801561257c57507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156125d457507f0000000000000000000000004acd8f8d82487acded6da40c580747851a4c6bad73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b1561269f5743601260003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541061265a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161265190614c85565b60405180910390fd5b43601260003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b602160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156127435750602060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156127ea5760085481111561278d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161278490614d17565b60405180910390fd5b600a5461279983611270565b826127a491906141f1565b11156127e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127dc90614d83565b60405180910390fd5b612988565b602160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561288d5750602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156128dc576008548111156128d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128ce90614e15565b60405180910390fd5b612987565b602060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661298657600a5461293983611270565b8261294491906141f1565b1115612985576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161297c90614d83565b60405180910390fd5b5b5b5b5b5b600061299530611270565b9050600060095482101590508080156129ba5750601160029054906101000a900460ff165b80156129d35750600560149054906101000a900460ff16155b8015612a295750602160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612a7f5750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612ad55750601f60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612b19576001600560146101000a81548160ff021916908315150217905550612afd61336e565b6000600560146101000a81548160ff0219169083151502179055505b600560149054906101000a900460ff16158015612b7f5750602160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b8015612b975750600c60009054906101000a900460ff165b8015612bb25750600d54600e54612bae91906141f1565b4210155b8015612c085750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612c1757612c1561363d565b505b6000600560149054906101000a900460ff16159050601f60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612ccd5750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15612cd757600090505b60008115612f5057602160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612d3a57506000601854115b15612e0757612d676064612d59601854886130cc90919063ffffffff16565b6130e290919063ffffffff16565b9050601854601a5482612d7a91906140bd565b612d84919061412e565b601d6000828254612d9591906141f1565b92505081905550601854601b5482612dad91906140bd565b612db7919061412e565b601e6000828254612dc891906141f1565b9250508190555060185460195482612de091906140bd565b612dea919061412e565b601c6000828254612dfb91906141f1565b92505081905550612f2c565b602160008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612e6257506000601454115b15612f2b57612e8f6064612e81601454886130cc90919063ffffffff16565b6130e290919063ffffffff16565b905060145460165482612ea291906140bd565b612eac919061412e565b601d6000828254612ebd91906141f1565b9250508190555060145460175482612ed591906140bd565b612edf919061412e565b601e6000828254612ef091906141f1565b9250508190555060145460155482612f0891906140bd565b612f12919061412e565b601c6000828254612f2391906141f1565b925050819055505b5b6000811115612f4157612f408730836130f8565b5b8085612f4d9190614e35565b94505b612f5b8787876130f8565b505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80602160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600081836130da91906140bd565b905092915050565b600081836130f0919061412e565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603613167576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161315e90614acf565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036131d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131cd90614b61565b60405180910390fd5b6131e1838383613803565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015613267576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161325e90614edb565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516133559190613db3565b60405180910390a3613368848484613808565b50505050565b600061337930611270565b90506000601e54601c54601d5461339091906141f1565b61339a91906141f1565b90506000808314806133ac5750600082145b156133b95750505061363b565b6009548311156133c95760095492505b6000600283601d54866133dc91906140bd565b6133e6919061412e565b6133f0919061412e565b90506000613407828661380d90919063ffffffff16565b9050600047905061341782613823565b600061342c824761380d90919063ffffffff16565b9050600061345787613449601c54856130cc90919063ffffffff16565b6130e290919063ffffffff16565b9050600061348288613474601e54866130cc90919063ffffffff16565b6130e290919063ffffffff16565b905060008183856134939190614e35565b61349d9190614e35565b90506000601d819055506000601c819055506000601e81905550600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16826040516134fd90614f2c565b60006040518083038185875af1925050503d806000811461353a576040519150601f19603f3d011682016040523d82523d6000602084013e61353f565b606091505b5050809850506000871180156135555750600081115b156135a2576135648782613a60565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618682601d5460405161359993929190614f41565b60405180910390a15b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16476040516135e890614f2c565b60006040518083038185875af1925050503d8060008114613625576040519150601f19603f3d011682016040523d82523d6000602084013e61362a565b606091505b505080985050505050505050505050505b565b600042600e8190555060003073ffffffffffffffffffffffffffffffffffffffff166370a082317f0000000000000000000000004acd8f8d82487acded6da40c580747851a4c6bad6040518263ffffffff1660e01b81526004016136a19190613e5d565b602060405180830381865afa1580156136be573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906136e29190614834565b9050600061370f612710613701600b54856130cc90919063ffffffff16565b6130e290919063ffffffff16565b90506000811115613748576137477f0000000000000000000000004acd8f8d82487acded6da40c580747851a4c6bad61dead836130f8565b5b60007f0000000000000000000000004acd8f8d82487acded6da40c580747851a4c6bad90508073ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b1580156137b557600080fd5b505af11580156137c9573d6000803e3d6000fd5b505050507f454c91ae84fcc766ddda0dcb289f26b3d0176efeacf4061fc219fa6ca8c3048d60405160405180910390a16001935050505090565b505050565b505050565b6000818361381b9190614e35565b905092915050565b6000600267ffffffffffffffff8111156138405761383f614f78565b5b60405190808252806020026020018201604052801561386e5781602001602082028036833780820191505090505b509050308160008151811061388657613885614fa7565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561392b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061394f9190614feb565b8160018151811061396357613962614fa7565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250506139c8307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611efd565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401613a2a959493929190615111565b600060405180830381600087803b158015613a4457600080fd5b505af1158015613a58573d6000803e3d6000fd5b505050505050565b613a8b307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611efd565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d71982308560008061dead426040518863ffffffff1660e01b8152600401613af29695949392919061516b565b60606040518083038185885af1158015613b10573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190613b3591906151cc565b5050505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613b76578082015181840152602081019050613b5b565b60008484015250505050565b6000601f19601f8301169050919050565b6000613b9e82613b3c565b613ba88185613b47565b9350613bb8818560208601613b58565b613bc181613b82565b840191505092915050565b60006020820190508181036000830152613be68184613b93565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613c1e82613bf3565b9050919050565b613c2e81613c13565b8114613c3957600080fd5b50565b600081359050613c4b81613c25565b92915050565b6000819050919050565b613c6481613c51565b8114613c6f57600080fd5b50565b600081359050613c8181613c5b565b92915050565b60008060408385031215613c9e57613c9d613bee565b5b6000613cac85828601613c3c565b9250506020613cbd85828601613c72565b9150509250929050565b60008115159050919050565b613cdc81613cc7565b82525050565b6000602082019050613cf76000830184613cd3565b92915050565b600060208284031215613d1357613d12613bee565b5b6000613d2184828501613c3c565b91505092915050565b6000819050919050565b6000613d4f613d4a613d4584613bf3565b613d2a565b613bf3565b9050919050565b6000613d6182613d34565b9050919050565b6000613d7382613d56565b9050919050565b613d8381613d68565b82525050565b6000602082019050613d9e6000830184613d7a565b92915050565b613dad81613c51565b82525050565b6000602082019050613dc86000830184613da4565b92915050565b600060208284031215613de457613de3613bee565b5b6000613df284828501613c72565b91505092915050565b600080600060608486031215613e1457613e13613bee565b5b6000613e2286828701613c3c565b9350506020613e3386828701613c3c565b9250506040613e4486828701613c72565b9150509250925092565b613e5781613c13565b82525050565b6000602082019050613e726000830184613e4e565b92915050565b600060ff82169050919050565b613e8e81613e78565b82525050565b6000602082019050613ea96000830184613e85565b92915050565b613eb881613cc7565b8114613ec357600080fd5b50565b600081359050613ed581613eaf565b92915050565b600080600060608486031215613ef457613ef3613bee565b5b6000613f0286828701613c72565b9350506020613f1386828701613c72565b9250506040613f2486828701613ec6565b9150509250925092565b60008060408385031215613f4557613f44613bee565b5b6000613f5385828601613c3c565b9250506020613f6485828601613ec6565b9150509250929050565b600080600060608486031215613f8757613f86613bee565b5b6000613f9586828701613c72565b9350506020613fa686828701613c72565b9250506040613fb786828701613c72565b9150509250925092565b600060208284031215613fd757613fd6613bee565b5b6000613fe584828501613ec6565b91505092915050565b6000806040838503121561400557614004613bee565b5b600061401385828601613c3c565b925050602061402485828601613c3c565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061407557607f821691505b6020821081036140885761408761402e565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006140c882613c51565b91506140d383613c51565b92508282026140e181613c51565b915082820484148315176140f8576140f761408e565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061413982613c51565b915061414483613c51565b925082614154576141536140ff565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20302e31250000000000000000000000000000000000602082015250565b60006141bb602f83613b47565b91506141c68261415f565b604082019050919050565b600060208201905081810360008301526141ea816141ae565b9050919050565b60006141fc82613c51565b915061420783613c51565b925082820190508082111561421f5761421e61408e565b5b92915050565b7f63616e6e6f7420736574206275796261636b206d6f7265206f6674656e20746860008201527f616e206576657279203130206d696e7574657300000000000000000000000000602082015250565b6000614281603383613b47565b915061428c82614225565b604082019050919050565b600060208201905081810360008301526142b081614274565b9050919050565b7f4d75737420736574206175746f204c50206275726e2070657263656e7420626560008201527f747765656e20302520616e642031302500000000000000000000000000000000602082015250565b6000614313603083613b47565b915061431e826142b7565b604082019050919050565b6000602082019050818103600083015261434281614306565b9050919050565b7f4d757374206b656570206665657320617420323025206f72206c657373000000600082015250565b600061437f601d83613b47565b915061438a82614349565b602082019050919050565b600060208201905081810360008301526143ae81614372565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b6000614411603983613b47565b915061441c826143b5565b604082019050919050565b6000602082019050818103600083015261444081614404565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006144a3602583613b47565b91506144ae82614447565b604082019050919050565b600060208201905081810360008301526144d281614496565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f302e312500000000000000000000000000000000000000000000000000000000602082015250565b6000614535602483613b47565b9150614540826144d9565b604082019050919050565b6000602082019050818103600083015261456481614528565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b60006145c7603583613b47565b91506145d28261456b565b604082019050919050565b600060208201905081810360008301526145f6816145ba565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20342520746f74616c20737570706c792e0000000000000000000000000000602082015250565b6000614659603283613b47565b9150614664826145fd565b604082019050919050565b600060208201905081810360008301526146888161464c565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006146eb602683613b47565b91506146f68261468f565b604082019050919050565b6000602082019050818103600083015261471a816146de565b9050919050565b7f4d757374207761697420666f7220636f6f6c646f776e20746f2066696e697368600082015250565b6000614757602083613b47565b915061476282614721565b602082019050919050565b600060208201905081810360008301526147868161474a565b9050919050565b7f4d6179206e6f74206e756b65206d6f7265207468616e20313025206f6620746f60008201527f6b656e7320696e204c5000000000000000000000000000000000000000000000602082015250565b60006147e9602a83613b47565b91506147f48261478d565b604082019050919050565b60006020820190508181036000830152614818816147dc565b9050919050565b60008151905061482e81613c5b565b92915050565b60006020828403121561484a57614849613bee565b5b60006148588482850161481f565b91505092915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006148bd602483613b47565b91506148c882614861565b604082019050919050565b600060208201905081810360008301526148ec816148b0565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061494f602283613b47565b915061495a826148f3565b604082019050919050565b6000602082019050818103600083015261497e81614942565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006149bb602083613b47565b91506149c682614985565b602082019050919050565b600060208201905081810360008301526149ea816149ae565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000614a27601d83613b47565b9150614a32826149f1565b602082019050919050565b60006020820190508181036000830152614a5681614a1a565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000614ab9602583613b47565b9150614ac482614a5d565b604082019050919050565b60006020820190508181036000830152614ae881614aac565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000614b4b602383613b47565b9150614b5682614aef565b604082019050919050565b60006020820190508181036000830152614b7a81614b3e565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b6000614bb7601683613b47565b9150614bc282614b81565b602082019050919050565b60006020820190508181036000830152614be681614baa565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60208201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000604082015250565b6000614c6f604983613b47565b9150614c7a82614bed565b606082019050919050565b60006020820190508181036000830152614c9e81614c62565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b6000614d01603583613b47565b9150614d0c82614ca5565b604082019050919050565b60006020820190508181036000830152614d3081614cf4565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b6000614d6d601383613b47565b9150614d7882614d37565b602082019050919050565b60006020820190508181036000830152614d9c81614d60565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b6000614dff603683613b47565b9150614e0a82614da3565b604082019050919050565b60006020820190508181036000830152614e2e81614df2565b9050919050565b6000614e4082613c51565b9150614e4b83613c51565b9250828203905081811115614e6357614e6261408e565b5b92915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000614ec5602683613b47565b9150614ed082614e69565b604082019050919050565b60006020820190508181036000830152614ef481614eb8565b9050919050565b600081905092915050565b50565b6000614f16600083614efb565b9150614f2182614f06565b600082019050919050565b6000614f3782614f09565b9150819050919050565b6000606082019050614f566000830186613da4565b614f636020830185613da4565b614f706040830184613da4565b949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050614fe581613c25565b92915050565b60006020828403121561500157615000613bee565b5b600061500f84828501614fd6565b91505092915050565b6000819050919050565b600061503d61503861503384615018565b613d2a565b613c51565b9050919050565b61504d81615022565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61508881613c13565b82525050565b600061509a838361507f565b60208301905092915050565b6000602082019050919050565b60006150be82615053565b6150c8818561505e565b93506150d38361506f565b8060005b838110156151045781516150eb888261508e565b97506150f6836150a6565b9250506001810190506150d7565b5085935050505092915050565b600060a0820190506151266000830188613da4565b6151336020830187615044565b818103604083015261514581866150b3565b90506151546060830185613e4e565b6151616080830184613da4565b9695505050505050565b600060c0820190506151806000830189613e4e565b61518d6020830188613da4565b61519a6040830187615044565b6151a76060830186615044565b6151b46080830185613e4e565b6151c160a0830184613da4565b979650505050505050565b6000806000606084860312156151e5576151e4613bee565b5b60006151f38682870161481f565b93505060206152048682870161481f565b92505060406152158682870161481f565b915050925092509256fea2646970667358221220a48beb40048fede6483caca2b3461865e5e0997c19cb3f670c5f4988d785329f64736f6c63430008120033
Deployed Bytecode Sourcemap
34658:17207:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23562:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25913:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36083:63;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34732:51;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24682:108;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42421:157;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35285:47;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35112:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35948:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35908;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39843:277;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26694:295;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34835:53;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35195:45;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35155:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24524:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27398:238;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34790:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35383:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42586:126;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35763:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35463:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24853:127;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2854:103;;;;;;;;;;;;;:::i;:::-;;49919:555;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39081:121;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40394:159;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34927:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35656;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40669:403;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38949:124;;;;;;;;;;;;;:::i;:::-;;2206:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34964:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35798:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40561:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23781:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41690:296;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35730:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35339:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35988:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35874:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28139:424;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35247:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25186:193;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42190:223;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36155:57;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35423:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41500:182;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41080:412;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40128:258;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35573:40;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34997:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39353:482;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35622:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25442:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35039:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39210:135;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35693:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3112:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35836:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35079:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51048:814;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23562:100;23616:13;23649:5;23642:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23562:100;:::o;25913:201::-;25996:4;26013:13;26029:12;:10;:12::i;:::-;26013:28;;26052:32;26061:5;26068:7;26077:6;26052:8;:32::i;:::-;26102:4;26095:11;;;25913:201;;;;:::o;36083:63::-;;;;;;;;;;;;;;;;;;;;;;:::o;34732:51::-;;;:::o;24682:108::-;24743:7;24770:12;;24763:19;;24682:108;:::o;42421:157::-;2092:13;:11;:13::i;:::-;42528:9:::1;;;;;;;;;;;42500:38;;42517:9;42500:38;;;;;;;;;;;;42561:9;42549;;:21;;;;;;;;;;;;;;;;;;42421:157:::0;:::o;35285:47::-;;;;:::o;35112:36::-;;;;:::o;35948:33::-;;;;:::o;35908:::-;;;;:::o;39843:277::-;2092:13;:11;:13::i;:::-;39980:4:::1;39972;39967:1;39951:13;:11;:13::i;:::-;:17;;;;:::i;:::-;39950:26;;;;:::i;:::-;39949:35;;;;:::i;:::-;39939:6;:45;;39917:142;;;;;;;;;;;;:::i;:::-;;;;;;;;;40103:8;40093:6;:19;;;;:::i;:::-;40070:20;:42;;;;39843:277:::0;:::o;26694:295::-;26825:4;26842:15;26860:12;:10;:12::i;:::-;26842:30;;26883:38;26899:4;26905:7;26914:6;26883:15;:38::i;:::-;26932:27;26942:4;26948:2;26952:6;26932:9;:27::i;:::-;26977:4;26970:11;;;26694:295;;;;;:::o;34835:53::-;34881:6;34835:53;:::o;35195:45::-;;;;:::o;35155:33::-;;;;;;;;;;;;;:::o;24524:93::-;24582:5;24607:2;24600:9;;24524:93;:::o;27398:238::-;27486:4;27503:13;27519:12;:10;:12::i;:::-;27503:28;;27542:64;27551:5;27558:7;27595:10;27567:25;27577:5;27584:7;27567:9;:25::i;:::-;:38;;;;:::i;:::-;27542:8;:64::i;:::-;27624:4;27617:11;;;27398:238;;;;:::o;34790:38::-;;;:::o;35383:33::-;;;;;;;;;;;;;:::o;42586:126::-;42652:4;42676:19;:28;42696:7;42676:28;;;;;;;;;;;;;;;;;;;;;;;;;42669:35;;42586:126;;;:::o;35763:28::-;;;;:::o;35463:30::-;;;;;;;;;;;;;:::o;24853:127::-;24927:7;24954:9;:18;24964:7;24954:18;;;;;;;;;;;;;;;;24947:25;;24853:127;;;:::o;2854:103::-;2092:13;:11;:13::i;:::-;2919:30:::1;2946:1;2919:18;:30::i;:::-;2854:103::o:0;49919:555::-;2092:13;:11;:13::i;:::-;50121:3:::1;50098:19;:26;;50076:127;;;;;;;;;;;;:::i;:::-;;;;;;;;;50248:4;50236:8;:16;;:33;;;;;50268:1;50256:8;:13;;50236:33;50214:131;;;;;;;;;;;;:::i;:::-;;;;;;;;;50374:19;50356:15;:37;;;;50423:8;50404:16;:27;;;;50458:8;50442:13;;:24;;;;;;;;;;;;;;;;;;49919:555:::0;;;:::o;39081:121::-;39133:4;2092:13;:11;:13::i;:::-;39167:5:::1;39150:14;;:22;;;;;;;;;;;;;;;;;;39190:4;39183:11;;39081:121:::0;:::o;40394:159::-;2092:13;:11;:13::i;:::-;40541:4:::1;40499:31;:39;40531:6;40499:39;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;40394:159:::0;;:::o;34927:30::-;;;;;;;;;;;;;:::o;35656:::-;;;;:::o;40669:403::-;2092:13;:11;:13::i;:::-;40837::::1;40819:15;:31;;;;40879:13;40861:15;:31;;;;40915:7;40903:9;:19;;;;40984:9;;40966:15;;40948;;:33;;;;:::i;:::-;:45;;;;:::i;:::-;40933:12;:60;;;;41028:2;41012:12:::0;::::1;:18;;41004:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;40669:403:::0;;;:::o;38949:124::-;2092:13;:11;:13::i;:::-;39018:4:::1;39002:13;;:20;;;;;;;;;;;;;;;;;;39050:15;39033:14;:32;;;;38949:124::o:0;2206:87::-;2252:7;2279:6;;;;;;;;;;;2272:13;;2206:87;:::o;34964:24::-;;;;;;;;;;;;;:::o;35798:31::-;;;;:::o;40561:100::-;2092:13;:11;:13::i;:::-;40646:7:::1;40632:11;;:21;;;;;;;;;;;;;;;;;;40561:100:::0;:::o;23781:104::-;23837:13;23870:7;23863:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23781:104;:::o;41690:296::-;2092:13;:11;:13::i;:::-;41826::::1;41818:21;;:4;:21;;::::0;41796:128:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;41937:41;41966:4;41972:5;41937:28;:41::i;:::-;41690:296:::0;;:::o;35730:24::-;;;;:::o;35339:35::-;;;;:::o;35988:27::-;;;;:::o;35874:25::-;;;;:::o;28139:424::-;28232:4;28249:13;28265:12;:10;:12::i;:::-;28249:28;;28288:24;28315:25;28325:5;28332:7;28315:9;:25::i;:::-;28288:52;;28379:15;28359:16;:35;;28351:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;28464:60;28473:5;28480:7;28508:15;28489:16;:34;28464:8;:60::i;:::-;28551:4;28544:11;;;;28139:424;;;;:::o;35247:29::-;;;;:::o;25186:193::-;25265:4;25282:13;25298:12;:10;:12::i;:::-;25282:28;;25321;25331:5;25338:2;25342:6;25321:9;:28::i;:::-;25367:4;25360:11;;;25186:193;;;;:::o;42190:223::-;2092:13;:11;:13::i;:::-;42342:15:::1;;;;;;;;;;;42299:59;;42322:18;42299:59;;;;;;;;;;;;42387:18;42369:15;;:36;;;;;;;;;;;;;;;;;;42190:223:::0;:::o;36155:57::-;;;;;;;;;;;;;;;;;;;;;;:::o;35423:33::-;;;;;;;;;;;;;:::o;41500:182::-;2092:13;:11;:13::i;:::-;41616:8:::1;41585:19;:28;41605:7;41585:28;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;41656:7;41640:34;;;41665:8;41640:34;;;;;;:::i;:::-;;;;;;;;41500:182:::0;;:::o;41080:412::-;2092:13;:11;:13::i;:::-;41250::::1;41231:16;:32;;;;41293:13;41274:16;:32;;;;41330:7;41317:10;:20;;;;41402:10;;41383:16;;41364;;:35;;;;:::i;:::-;:48;;;;:::i;:::-;41348:13;:64;;;;41448:2;41431:13;;:19;;41423:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;41080:412:::0;;;:::o;40128:258::-;2092:13;:11;:13::i;:::-;40268:4:::1;40260;40255:1;40239:13;:11;:13::i;:::-;:17;;;;:::i;:::-;40238:26;;;;:::i;:::-;40237:35;;;;:::i;:::-;40227:6;:45;;40205:131;;;;;;;;;;;;:::i;:::-;;;;;;;;;40369:8;40359:6;:19;;;;:::i;:::-;40347:9;:31;;;;40128:258:::0;:::o;35573:40::-;;;;;;;;;;;;;:::o;34997:35::-;;;;:::o;39353:482::-;39449:4;2092:13;:11;:13::i;:::-;39528:6:::1;39523:1;39507:13;:11;:13::i;:::-;:17;;;;:::i;:::-;39506:28;;;;:::i;:::-;39493:9;:41;;39471:144;;;;;;;;;;;;:::i;:::-;;;;;;;;;39683:3;39678:1;39662:13;:11;:13::i;:::-;:17;;;;:::i;:::-;39661:25;;;;:::i;:::-;39648:9;:38;;39626:138;;;;;;;;;;;;:::i;:::-;;;;;;;;;39796:9;39775:18;:30;;;;39823:4;39816:11;;39353:482:::0;;;:::o;35622:27::-;;;;:::o;25442:151::-;25531:7;25558:11;:18;25570:5;25558:18;;;;;;;;;;;;;;;:27;25577:7;25558:27;;;;;;;;;;;;;;;;25551:34;;25442:151;;;;:::o;35039:33::-;;;;:::o;39210:135::-;39270:4;2092:13;:11;:13::i;:::-;39310:5:::1;39287:20;;:28;;;;;;;;;;;;;;;;;;39333:4;39326:11;;39210:135:::0;:::o;35693:30::-;;;;:::o;3112:201::-;2092:13;:11;:13::i;:::-;3221:1:::1;3201:22;;:8;:22;;::::0;3193:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;3277:28;3296:8;3277:18;:28::i;:::-;3112:201:::0;:::o;35836:31::-;;;;:::o;35079:24::-;;;;:::o;51048:814::-;51147:4;2092:13;:11;:13::i;:::-;51232:19:::1;;51209:20;;:42;;;;:::i;:::-;51191:15;:60;51169:142;;;;;;;;;;;;:::i;:::-;;;;;;;;;51341:4;51330:7;:15;;51322:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;51426:15;51403:20;:38;;;;51454:28;51485:4;:14;;;51500:13;51485:29;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;51454:60;;51527:20;51550:44;51588:5;51550:33;51575:7;51550:20;:24;;:33;;;;:::i;:::-;:37;;:44;;;;:::i;:::-;51527:67;;51626:1;51611:12;:16;51607:110;;;51644:61;51660:13;51683:6;51692:12;51644:15;:61::i;:::-;51607:110;51729:19;51766:13;51729:51;;51791:4;:9;;;:11;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;51818:14;;;;;;;;;;51850:4;51843:11;;;;;51048:814:::0;;;:::o;915:98::-;968:7;995:10;988:17;;915:98;:::o;32094:380::-;32247:1;32230:19;;:5;:19;;;32222:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;32328:1;32309:21;;:7;:21;;;32301:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;32412:6;32382:11;:18;32394:5;32382:18;;;;;;;;;;;;;;;:27;32401:7;32382:27;;;;;;;;;;;;;;;:36;;;;32450:7;32434:32;;32443:5;32434:32;;;32459:6;32434:32;;;;;;:::i;:::-;;;;;;;;32094:380;;;:::o;2371:132::-;2446:12;:10;:12::i;:::-;2435:23;;:7;:5;:7::i;:::-;:23;;;2427:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2371:132::o;32765:433::-;32900:24;32927:25;32937:5;32944:7;32927:9;:25::i;:::-;32900:52;;32987:17;32967:16;:37;32963:228;;33045:6;33025:16;:26;;33017:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;33117:51;33126:5;33133:7;33161:6;33142:16;:25;33117:8;:51::i;:::-;32963:228;32889:309;32765:433;;;:::o;42770:4598::-;42918:1;42902:18;;:4;:18;;;42894:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42995:1;42981:16;;:2;:16;;;42973:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;43064:1;43054:6;:11;43050:93;;43082:28;43098:4;43104:2;43108:1;43082:15;:28::i;:::-;43125:7;;43050:93;43159:14;;;;;;;;;;;43155:2296;;;43220:7;:5;:7::i;:::-;43212:15;;:4;:15;;;;:49;;;;;43254:7;:5;:7::i;:::-;43248:13;;:2;:13;;;;43212:49;:86;;;;;43296:1;43282:16;;:2;:16;;;;43212:86;:128;;;;;43333:6;43319:21;;:2;:21;;;;43212:128;:158;;;;;43362:8;;;;;;;;;;;43361:9;43212:158;43190:2250;;;43410:13;;;;;;;;;;;43405:223;;43482:19;:25;43502:4;43482:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;43511:19;:23;43531:2;43511:23;;;;;;;;;;;;;;;;;;;;;;;;;43482:52;43448:160;;;;;;;;;;;;:::i;:::-;;;;;;;;;43405:223;43652:20;;;;;;;;;;;43648:637;;;43733:7;:5;:7::i;:::-;43727:13;;:2;:13;;;;:72;;;;;43783:15;43769:30;;:2;:30;;;;43727:72;:129;;;;;43842:13;43828:28;;:2;:28;;;;43727:129;43697:569;;;44016:12;43945:28;:39;43974:9;43945:39;;;;;;;;;;;;;;;;:83;43907:254;;;;;;;;;;;;:::i;:::-;;;;;;;;;44230:12;44188:28;:39;44217:9;44188:39;;;;;;;;;;;;;;;:54;;;;43697:569;43648:637;44331:25;:31;44357:4;44331:31;;;;;;;;;;;;;;;;;;;;;;;;;:92;;;;;44388:31;:35;44420:2;44388:35;;;;;;;;;;;;;;;;;;;;;;;;;44387:36;44331:92;44305:1120;;;44510:20;;44500:6;:30;;44466:169;;;;;;;;;;;;:::i;:::-;;;;;;;;;44718:9;;44701:13;44711:2;44701:9;:13::i;:::-;44692:6;:22;;;;:::i;:::-;:35;;44658:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;44305:1120;;;44869:25;:29;44895:2;44869:29;;;;;;;;;;;;;;;;;;;;;;;;;:92;;;;;44924:31;:37;44956:4;44924:37;;;;;;;;;;;;;;;;;;;;;;;;;44923:38;44869:92;44843:582;;;45048:20;;45038:6;:30;;45004:170;;;;;;;;;;;;:::i;:::-;;;;;;;;;44843:582;;;45205:31;:35;45237:2;45205:35;;;;;;;;;;;;;;;;;;;;;;;;;45200:225;;45325:9;;45308:13;45318:2;45308:9;:13::i;:::-;45299:6;:22;;;;:::i;:::-;:35;;45265:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;45200:225;44843:582;44305:1120;43190:2250;43155:2296;45463:28;45494:24;45512:4;45494:9;:24::i;:::-;45463:55;;45531:12;45570:18;;45546:20;:42;;45531:57;;45619:7;:35;;;;;45643:11;;;;;;;;;;;45619:35;:61;;;;;45672:8;;;;;;;;;;;45671:9;45619:61;:110;;;;;45698:25;:31;45724:4;45698:31;;;;;;;;;;;;;;;;;;;;;;;;;45697:32;45619:110;:153;;;;;45747:19;:25;45767:4;45747:25;;;;;;;;;;;;;;;;;;;;;;;;;45746:26;45619:153;:194;;;;;45790:19;:23;45810:2;45790:23;;;;;;;;;;;;;;;;;;;;;;;;;45789:24;45619:194;45601:326;;;45851:4;45840:8;;:15;;;;;;;;;;;;;;;;;;45872:10;:8;:10::i;:::-;45910:5;45899:8;;:16;;;;;;;;;;;;;;;;;;45601:326;45958:8;;;;;;;;;;;45957:9;:51;;;;;45979:25;:29;46005:2;45979:29;;;;;;;;;;;;;;;;;;;;;;;;;45957:51;:77;;;;;46021:13;;;;;;;;;;;45957:77;:141;;;;;46083:15;;46066:14;;:32;;;;:::i;:::-;46047:15;:51;;45957:141;:180;;;;;46112:19;:25;46132:4;46112:25;;;;;;;;;;;;;;;;;;;;;;;;;46111:26;45957:180;45939:266;;;46164:29;:27;:29::i;:::-;;45939:266;46217:12;46233:8;;;;;;;;;;;46232:9;46217:24;;46258:19;:25;46278:4;46258:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;46287:19;:23;46307:2;46287:23;;;;;;;;;;;;;;;;;;;;;;;;;46258:52;46254:100;;;46337:5;46327:15;;46254:100;46366:12;46397:7;46393:922;;;46425:25;:29;46451:2;46425:29;;;;;;;;;;;;;;;;;;;;;;;;;:50;;;;;46474:1;46458:13;;:17;46425:50;46421:745;;;46503:34;46533:3;46503:25;46514:13;;46503:6;:10;;:25;;;;:::i;:::-;:29;;:34;;;;:::i;:::-;46496:41;;46606:13;;46586:16;;46579:4;:23;;;;:::i;:::-;46578:41;;;;:::i;:::-;46556:18;;:63;;;;;;;:::i;:::-;;;;;;;;46676:13;;46662:10;;46655:4;:17;;;;:::i;:::-;46654:35;;;;:::i;:::-;46638:12;;:51;;;;;;;:::i;:::-;;;;;;;;46758:13;;46738:16;;46731:4;:23;;;;:::i;:::-;46730:41;;;;:::i;:::-;46708:18;;:63;;;;;;;:::i;:::-;;;;;;;;46421:745;;;46810:25;:31;46836:4;46810:31;;;;;;;;;;;;;;;;;;;;;;;;;:51;;;;;46860:1;46845:12;;:16;46810:51;46806:360;;;46889:33;46918:3;46889:24;46900:12;;46889:6;:10;;:24;;;;:::i;:::-;:28;;:33;;;;:::i;:::-;46882:40;;46990:12;;46971:15;;46964:4;:22;;;;:::i;:::-;46963:39;;;;:::i;:::-;46941:18;;:61;;;;;;;:::i;:::-;;;;;;;;47058:12;;47045:9;;47038:4;:16;;;;:::i;:::-;47037:33;;;;:::i;:::-;47021:12;;:49;;;;;;;:::i;:::-;;;;;;;;47138:12;;47119:15;;47112:4;:22;;;;:::i;:::-;47111:39;;;;:::i;:::-;47089:18;;:61;;;;;;;:::i;:::-;;;;;;;;46806:360;46421:745;47193:1;47186:4;:8;47182:91;;;47215:42;47231:4;47245;47252;47215:15;:42::i;:::-;47182:91;47299:4;47289:14;;;;;:::i;:::-;;;46393:922;47327:33;47343:4;47349:2;47353:6;47327:15;:33::i;:::-;42883:4485;;;;42770:4598;;;;:::o;3473:191::-;3547:16;3566:6;;;;;;;;;;;3547:25;;3592:8;3583:6;;:17;;;;;;;;;;;;;;;;;;3647:8;3616:40;;3637:8;3616:40;;;;;;;;;;;;3536:128;3473:191;:::o;41994:188::-;42111:5;42077:25;:31;42103:4;42077:31;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;42168:5;42134:40;;42162:4;42134:40;;;;;;;;;;;;41994:188;;:::o;9734:98::-;9792:7;9823:1;9819;:5;;;;:::i;:::-;9812:12;;9734:98;;;;:::o;10133:::-;10191:7;10222:1;10218;:5;;;;:::i;:::-;10211:12;;10133:98;;;;:::o;29033:816::-;29180:1;29164:18;;:4;:18;;;29156:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;29257:1;29243:16;;:2;:16;;;29235:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;29312:38;29333:4;29339:2;29343:6;29312:20;:38::i;:::-;29363:19;29385:9;:15;29395:4;29385:15;;;;;;;;;;;;;;;;29363:37;;29434:6;29419:11;:21;;29411:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;29543:6;29529:11;:20;29511:9;:15;29521:4;29511:15;;;;;;;;;;;;;;;:38;;;;29734:6;29717:9;:13;29727:2;29717:13;;;;;;;;;;;;;;;;:23;;;;;;;;;;;29780:2;29765:26;;29774:4;29765:26;;;29784:6;29765:26;;;;;;:::i;:::-;;;;;;;;29804:37;29824:4;29830:2;29834:6;29804:19;:37::i;:::-;29145:704;29033:816;;;:::o;48234:1677::-;48273:23;48299:24;48317:4;48299:9;:24::i;:::-;48273:50;;48334:25;48422:12;;48392:18;;48362;;:48;;;;:::i;:::-;:72;;;;:::i;:::-;48334:100;;48445:12;48493:1;48474:15;:20;:46;;;;48519:1;48498:17;:22;48474:46;48470:85;;;48537:7;;;;;48470:85;48589:18;;48571:15;:36;48567:105;;;48642:18;;48624:36;;48567:105;48684:23;48789:1;48760:17;48729:18;;48711:15;:36;;;;:::i;:::-;48710:67;;;;:::i;:::-;:80;;;;:::i;:::-;48684:106;;48801:26;48830:36;48850:15;48830;:19;;:36;;;;:::i;:::-;48801:65;;48879:25;48907:21;48879:49;;48941:36;48958:18;48941:16;:36::i;:::-;48990:18;49011:44;49037:17;49011:21;:25;;:44;;;;:::i;:::-;48990:65;;49068:23;49094:81;49147:17;49094:34;49109:18;;49094:10;:14;;:34;;;;:::i;:::-;:38;;:81;;;;:::i;:::-;49068:107;;49186:17;49206:51;49239:17;49206:28;49221:12;;49206:10;:14;;:28;;;;:::i;:::-;:32;;:51;;;;:::i;:::-;49186:71;;49270:23;49327:9;49309:15;49296:10;:28;;;;:::i;:::-;:40;;;;:::i;:::-;49270:66;;49370:1;49349:18;:22;;;;49403:1;49382:18;:22;;;;49430:1;49415:12;:16;;;;49465:9;;;;;;;;;;;49457:23;;49489:9;49457:46;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49444:59;;;;;49538:1;49520:15;:19;:42;;;;;49561:1;49543:15;:19;49520:42;49516:278;;;49579:46;49592:15;49609;49579:12;:46::i;:::-;49645:137;49678:18;49715:15;49749:18;;49645:137;;;;;;;;:::i;:::-;;;;;;;;49516:278;49827:15;;;;;;;;;;;49819:29;;49867:21;49819:84;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49806:97;;;;;48262:1649;;;;;;;;;;48234:1677;:::o;50482:558::-;50539:4;50573:15;50556:14;:32;;;;50601:28;50632:4;:14;;;50647:13;50632:29;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;50601:60;;50674:20;50697:77;50758:5;50697:42;50722:16;;50697:20;:24;;:42;;;;:::i;:::-;:46;;:77;;;;:::i;:::-;50674:100;;50806:1;50791:12;:16;50787:110;;;50824:61;50840:13;50863:6;50872:12;50824:15;:61::i;:::-;50787:110;50909:19;50946:13;50909:51;;50971:4;:9;;;:11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50998:12;;;;;;;;;;51028:4;51021:11;;;;;50482:558;:::o;33798:125::-;;;;:::o;34527:124::-;;;;:::o;9377:98::-;9435:7;9466:1;9462;:5;;;;:::i;:::-;9455:12;;9377:98;;;;:::o;47376:475::-;47442:21;47480:1;47466:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47442:40;;47511:4;47493;47498:1;47493:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;;;47537:15;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;47527:4;47532:1;47527:7;;;;;;;;:::i;:::-;;;;;;;:32;;;;;;;;;;;47572:62;47589:4;47604:15;47622:11;47572:8;:62::i;:::-;47647:15;:66;;;47728:11;47754:1;47770:4;47797;47817:15;47647:196;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47431:420;47376:475;:::o;47859:367::-;47940:62;47957:4;47972:15;47990:11;47940:8;:62::i;:::-;48015:15;:31;;;48055:9;48088:4;48108:11;48134:1;48150;34881:6;48192:15;48015:203;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;47859:367;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:246::-;368:1;378:113;392:6;389:1;386:13;378:113;;;477:1;472:3;468:11;462:18;458:1;453:3;449:11;442:39;414:2;411:1;407:10;402:15;;378:113;;;525:1;516:6;511:3;507:16;500:27;349:184;287:246;;;:::o;539:102::-;580:6;631:2;627:7;622:2;615:5;611:14;607:28;597:38;;539:102;;;:::o;647:377::-;735:3;763:39;796:5;763:39;:::i;:::-;818:71;882:6;877:3;818:71;:::i;:::-;811:78;;898:65;956:6;951:3;944:4;937:5;933:16;898:65;:::i;:::-;988:29;1010:6;988:29;:::i;:::-;983:3;979:39;972:46;;739:285;647:377;;;;:::o;1030:313::-;1143:4;1181:2;1170:9;1166:18;1158:26;;1230:9;1224:4;1220:20;1216:1;1205:9;1201:17;1194:47;1258:78;1331:4;1322:6;1258:78;:::i;:::-;1250:86;;1030:313;;;;:::o;1430:117::-;1539:1;1536;1529:12;1676:126;1713:7;1753:42;1746:5;1742:54;1731:65;;1676:126;;;:::o;1808:96::-;1845:7;1874:24;1892:5;1874:24;:::i;:::-;1863:35;;1808:96;;;:::o;1910:122::-;1983:24;2001:5;1983:24;:::i;:::-;1976:5;1973:35;1963:63;;2022:1;2019;2012:12;1963:63;1910:122;:::o;2038:139::-;2084:5;2122:6;2109:20;2100:29;;2138:33;2165:5;2138:33;:::i;:::-;2038:139;;;;:::o;2183:77::-;2220:7;2249:5;2238:16;;2183:77;;;:::o;2266:122::-;2339:24;2357:5;2339:24;:::i;:::-;2332:5;2329:35;2319:63;;2378:1;2375;2368:12;2319:63;2266:122;:::o;2394:139::-;2440:5;2478:6;2465:20;2456:29;;2494:33;2521:5;2494:33;:::i;:::-;2394:139;;;;:::o;2539:474::-;2607:6;2615;2664:2;2652:9;2643:7;2639:23;2635:32;2632:119;;;2670:79;;:::i;:::-;2632:119;2790:1;2815:53;2860:7;2851:6;2840:9;2836:22;2815:53;:::i;:::-;2805:63;;2761:117;2917:2;2943:53;2988:7;2979:6;2968:9;2964:22;2943:53;:::i;:::-;2933:63;;2888:118;2539:474;;;;;:::o;3019:90::-;3053:7;3096:5;3089:13;3082:21;3071:32;;3019:90;;;:::o;3115:109::-;3196:21;3211:5;3196:21;:::i;:::-;3191:3;3184:34;3115:109;;:::o;3230:210::-;3317:4;3355:2;3344:9;3340:18;3332:26;;3368:65;3430:1;3419:9;3415:17;3406:6;3368:65;:::i;:::-;3230:210;;;;:::o;3446:329::-;3505:6;3554:2;3542:9;3533:7;3529:23;3525:32;3522:119;;;3560:79;;:::i;:::-;3522:119;3680:1;3705:53;3750:7;3741:6;3730:9;3726:22;3705:53;:::i;:::-;3695:63;;3651:117;3446:329;;;;:::o;3781:60::-;3809:3;3830:5;3823:12;;3781:60;;;:::o;3847:142::-;3897:9;3930:53;3948:34;3957:24;3975:5;3957:24;:::i;:::-;3948:34;:::i;:::-;3930:53;:::i;:::-;3917:66;;3847:142;;;:::o;3995:126::-;4045:9;4078:37;4109:5;4078:37;:::i;:::-;4065:50;;3995:126;;;:::o;4127:153::-;4204:9;4237:37;4268:5;4237:37;:::i;:::-;4224:50;;4127:153;;;:::o;4286:185::-;4400:64;4458:5;4400:64;:::i;:::-;4395:3;4388:77;4286:185;;:::o;4477:276::-;4597:4;4635:2;4624:9;4620:18;4612:26;;4648:98;4743:1;4732:9;4728:17;4719:6;4648:98;:::i;:::-;4477:276;;;;:::o;4759:118::-;4846:24;4864:5;4846:24;:::i;:::-;4841:3;4834:37;4759:118;;:::o;4883:222::-;4976:4;5014:2;5003:9;4999:18;4991:26;;5027:71;5095:1;5084:9;5080:17;5071:6;5027:71;:::i;:::-;4883:222;;;;:::o;5111:329::-;5170:6;5219:2;5207:9;5198:7;5194:23;5190:32;5187:119;;;5225:79;;:::i;:::-;5187:119;5345:1;5370:53;5415:7;5406:6;5395:9;5391:22;5370:53;:::i;:::-;5360:63;;5316:117;5111:329;;;;:::o;5446:619::-;5523:6;5531;5539;5588:2;5576:9;5567:7;5563:23;5559:32;5556:119;;;5594:79;;:::i;:::-;5556:119;5714:1;5739:53;5784:7;5775:6;5764:9;5760:22;5739:53;:::i;:::-;5729:63;;5685:117;5841:2;5867:53;5912:7;5903:6;5892:9;5888:22;5867:53;:::i;:::-;5857:63;;5812:118;5969:2;5995:53;6040:7;6031:6;6020:9;6016:22;5995:53;:::i;:::-;5985:63;;5940:118;5446:619;;;;;:::o;6071:118::-;6158:24;6176:5;6158:24;:::i;:::-;6153:3;6146:37;6071:118;;:::o;6195:222::-;6288:4;6326:2;6315:9;6311:18;6303:26;;6339:71;6407:1;6396:9;6392:17;6383:6;6339:71;:::i;:::-;6195:222;;;;:::o;6423:86::-;6458:7;6498:4;6491:5;6487:16;6476:27;;6423:86;;;:::o;6515:112::-;6598:22;6614:5;6598:22;:::i;:::-;6593:3;6586:35;6515:112;;:::o;6633:214::-;6722:4;6760:2;6749:9;6745:18;6737:26;;6773:67;6837:1;6826:9;6822:17;6813:6;6773:67;:::i;:::-;6633:214;;;;:::o;6853:116::-;6923:21;6938:5;6923:21;:::i;:::-;6916:5;6913:32;6903:60;;6959:1;6956;6949:12;6903:60;6853:116;:::o;6975:133::-;7018:5;7056:6;7043:20;7034:29;;7072:30;7096:5;7072:30;:::i;:::-;6975:133;;;;:::o;7114:613::-;7188:6;7196;7204;7253:2;7241:9;7232:7;7228:23;7224:32;7221:119;;;7259:79;;:::i;:::-;7221:119;7379:1;7404:53;7449:7;7440:6;7429:9;7425:22;7404:53;:::i;:::-;7394:63;;7350:117;7506:2;7532:53;7577:7;7568:6;7557:9;7553:22;7532:53;:::i;:::-;7522:63;;7477:118;7634:2;7660:50;7702:7;7693:6;7682:9;7678:22;7660:50;:::i;:::-;7650:60;;7605:115;7114:613;;;;;:::o;7733:468::-;7798:6;7806;7855:2;7843:9;7834:7;7830:23;7826:32;7823:119;;;7861:79;;:::i;:::-;7823:119;7981:1;8006:53;8051:7;8042:6;8031:9;8027:22;8006:53;:::i;:::-;7996:63;;7952:117;8108:2;8134:50;8176:7;8167:6;8156:9;8152:22;8134:50;:::i;:::-;8124:60;;8079:115;7733:468;;;;;:::o;8207:619::-;8284:6;8292;8300;8349:2;8337:9;8328:7;8324:23;8320:32;8317:119;;;8355:79;;:::i;:::-;8317:119;8475:1;8500:53;8545:7;8536:6;8525:9;8521:22;8500:53;:::i;:::-;8490:63;;8446:117;8602:2;8628:53;8673:7;8664:6;8653:9;8649:22;8628:53;:::i;:::-;8618:63;;8573:118;8730:2;8756:53;8801:7;8792:6;8781:9;8777:22;8756:53;:::i;:::-;8746:63;;8701:118;8207:619;;;;;:::o;8832:323::-;8888:6;8937:2;8925:9;8916:7;8912:23;8908:32;8905:119;;;8943:79;;:::i;:::-;8905:119;9063:1;9088:50;9130:7;9121:6;9110:9;9106:22;9088:50;:::i;:::-;9078:60;;9034:114;8832:323;;;;:::o;9161:474::-;9229:6;9237;9286:2;9274:9;9265:7;9261:23;9257:32;9254:119;;;9292:79;;:::i;:::-;9254:119;9412:1;9437:53;9482:7;9473:6;9462:9;9458:22;9437:53;:::i;:::-;9427:63;;9383:117;9539:2;9565:53;9610:7;9601:6;9590:9;9586:22;9565:53;:::i;:::-;9555:63;;9510:118;9161:474;;;;;:::o;9641:180::-;9689:77;9686:1;9679:88;9786:4;9783:1;9776:15;9810:4;9807:1;9800:15;9827:320;9871:6;9908:1;9902:4;9898:12;9888:22;;9955:1;9949:4;9945:12;9976:18;9966:81;;10032:4;10024:6;10020:17;10010:27;;9966:81;10094:2;10086:6;10083:14;10063:18;10060:38;10057:84;;10113:18;;:::i;:::-;10057:84;9878:269;9827:320;;;:::o;10153:180::-;10201:77;10198:1;10191:88;10298:4;10295:1;10288:15;10322:4;10319:1;10312:15;10339:410;10379:7;10402:20;10420:1;10402:20;:::i;:::-;10397:25;;10436:20;10454:1;10436:20;:::i;:::-;10431:25;;10491:1;10488;10484:9;10513:30;10531:11;10513:30;:::i;:::-;10502:41;;10692:1;10683:7;10679:15;10676:1;10673:22;10653:1;10646:9;10626:83;10603:139;;10722:18;;:::i;:::-;10603:139;10387:362;10339:410;;;;:::o;10755:180::-;10803:77;10800:1;10793:88;10900:4;10897:1;10890:15;10924:4;10921:1;10914:15;10941:185;10981:1;10998:20;11016:1;10998:20;:::i;:::-;10993:25;;11032:20;11050:1;11032:20;:::i;:::-;11027:25;;11071:1;11061:35;;11076:18;;:::i;:::-;11061:35;11118:1;11115;11111:9;11106:14;;10941:185;;;;:::o;11132:234::-;11272:34;11268:1;11260:6;11256:14;11249:58;11341:17;11336:2;11328:6;11324:15;11317:42;11132:234;:::o;11372:366::-;11514:3;11535:67;11599:2;11594:3;11535:67;:::i;:::-;11528:74;;11611:93;11700:3;11611:93;:::i;:::-;11729:2;11724:3;11720:12;11713:19;;11372:366;;;:::o;11744:419::-;11910:4;11948:2;11937:9;11933:18;11925:26;;11997:9;11991:4;11987:20;11983:1;11972:9;11968:17;11961:47;12025:131;12151:4;12025:131;:::i;:::-;12017:139;;11744:419;;;:::o;12169:191::-;12209:3;12228:20;12246:1;12228:20;:::i;:::-;12223:25;;12262:20;12280:1;12262:20;:::i;:::-;12257:25;;12305:1;12302;12298:9;12291:16;;12326:3;12323:1;12320:10;12317:36;;;12333:18;;:::i;:::-;12317:36;12169:191;;;;:::o;12366:238::-;12506:34;12502:1;12494:6;12490:14;12483:58;12575:21;12570:2;12562:6;12558:15;12551:46;12366:238;:::o;12610:366::-;12752:3;12773:67;12837:2;12832:3;12773:67;:::i;:::-;12766:74;;12849:93;12938:3;12849:93;:::i;:::-;12967:2;12962:3;12958:12;12951:19;;12610:366;;;:::o;12982:419::-;13148:4;13186:2;13175:9;13171:18;13163:26;;13235:9;13229:4;13225:20;13221:1;13210:9;13206:17;13199:47;13263:131;13389:4;13263:131;:::i;:::-;13255:139;;12982:419;;;:::o;13407:235::-;13547:34;13543:1;13535:6;13531:14;13524:58;13616:18;13611:2;13603:6;13599:15;13592:43;13407:235;:::o;13648:366::-;13790:3;13811:67;13875:2;13870:3;13811:67;:::i;:::-;13804:74;;13887:93;13976:3;13887:93;:::i;:::-;14005:2;14000:3;13996:12;13989:19;;13648:366;;;:::o;14020:419::-;14186:4;14224:2;14213:9;14209:18;14201:26;;14273:9;14267:4;14263:20;14259:1;14248:9;14244:17;14237:47;14301:131;14427:4;14301:131;:::i;:::-;14293:139;;14020:419;;;:::o;14445:179::-;14585:31;14581:1;14573:6;14569:14;14562:55;14445:179;:::o;14630:366::-;14772:3;14793:67;14857:2;14852:3;14793:67;:::i;:::-;14786:74;;14869:93;14958:3;14869:93;:::i;:::-;14987:2;14982:3;14978:12;14971:19;;14630:366;;;:::o;15002:419::-;15168:4;15206:2;15195:9;15191:18;15183:26;;15255:9;15249:4;15245:20;15241:1;15230:9;15226:17;15219:47;15283:131;15409:4;15283:131;:::i;:::-;15275:139;;15002:419;;;:::o;15427:244::-;15567:34;15563:1;15555:6;15551:14;15544:58;15636:27;15631:2;15623:6;15619:15;15612:52;15427:244;:::o;15677:366::-;15819:3;15840:67;15904:2;15899:3;15840:67;:::i;:::-;15833:74;;15916:93;16005:3;15916:93;:::i;:::-;16034:2;16029:3;16025:12;16018:19;;15677:366;;;:::o;16049:419::-;16215:4;16253:2;16242:9;16238:18;16230:26;;16302:9;16296:4;16292:20;16288:1;16277:9;16273:17;16266:47;16330:131;16456:4;16330:131;:::i;:::-;16322:139;;16049:419;;;:::o;16474:224::-;16614:34;16610:1;16602:6;16598:14;16591:58;16683:7;16678:2;16670:6;16666:15;16659:32;16474:224;:::o;16704:366::-;16846:3;16867:67;16931:2;16926:3;16867:67;:::i;:::-;16860:74;;16943:93;17032:3;16943:93;:::i;:::-;17061:2;17056:3;17052:12;17045:19;;16704:366;;;:::o;17076:419::-;17242:4;17280:2;17269:9;17265:18;17257:26;;17329:9;17323:4;17319:20;17315:1;17304:9;17300:17;17293:47;17357:131;17483:4;17357:131;:::i;:::-;17349:139;;17076:419;;;:::o;17501:223::-;17641:34;17637:1;17629:6;17625:14;17618:58;17710:6;17705:2;17697:6;17693:15;17686:31;17501:223;:::o;17730:366::-;17872:3;17893:67;17957:2;17952:3;17893:67;:::i;:::-;17886:74;;17969:93;18058:3;17969:93;:::i;:::-;18087:2;18082:3;18078:12;18071:19;;17730:366;;;:::o;18102:419::-;18268:4;18306:2;18295:9;18291:18;18283:26;;18355:9;18349:4;18345:20;18341:1;18330:9;18326:17;18319:47;18383:131;18509:4;18383:131;:::i;:::-;18375:139;;18102:419;;;:::o;18527:240::-;18667:34;18663:1;18655:6;18651:14;18644:58;18736:23;18731:2;18723:6;18719:15;18712:48;18527:240;:::o;18773:366::-;18915:3;18936:67;19000:2;18995:3;18936:67;:::i;:::-;18929:74;;19012:93;19101:3;19012:93;:::i;:::-;19130:2;19125:3;19121:12;19114:19;;18773:366;;;:::o;19145:419::-;19311:4;19349:2;19338:9;19334:18;19326:26;;19398:9;19392:4;19388:20;19384:1;19373:9;19369:17;19362:47;19426:131;19552:4;19426:131;:::i;:::-;19418:139;;19145:419;;;:::o;19570:237::-;19710:34;19706:1;19698:6;19694:14;19687:58;19779:20;19774:2;19766:6;19762:15;19755:45;19570:237;:::o;19813:366::-;19955:3;19976:67;20040:2;20035:3;19976:67;:::i;:::-;19969:74;;20052:93;20141:3;20052:93;:::i;:::-;20170:2;20165:3;20161:12;20154:19;;19813:366;;;:::o;20185:419::-;20351:4;20389:2;20378:9;20374:18;20366:26;;20438:9;20432:4;20428:20;20424:1;20413:9;20409:17;20402:47;20466:131;20592:4;20466:131;:::i;:::-;20458:139;;20185:419;;;:::o;20610:225::-;20750:34;20746:1;20738:6;20734:14;20727:58;20819:8;20814:2;20806:6;20802:15;20795:33;20610:225;:::o;20841:366::-;20983:3;21004:67;21068:2;21063:3;21004:67;:::i;:::-;20997:74;;21080:93;21169:3;21080:93;:::i;:::-;21198:2;21193:3;21189:12;21182:19;;20841:366;;;:::o;21213:419::-;21379:4;21417:2;21406:9;21402:18;21394:26;;21466:9;21460:4;21456:20;21452:1;21441:9;21437:17;21430:47;21494:131;21620:4;21494:131;:::i;:::-;21486:139;;21213:419;;;:::o;21638:182::-;21778:34;21774:1;21766:6;21762:14;21755:58;21638:182;:::o;21826:366::-;21968:3;21989:67;22053:2;22048:3;21989:67;:::i;:::-;21982:74;;22065:93;22154:3;22065:93;:::i;:::-;22183:2;22178:3;22174:12;22167:19;;21826:366;;;:::o;22198:419::-;22364:4;22402:2;22391:9;22387:18;22379:26;;22451:9;22445:4;22441:20;22437:1;22426:9;22422:17;22415:47;22479:131;22605:4;22479:131;:::i;:::-;22471:139;;22198:419;;;:::o;22623:229::-;22763:34;22759:1;22751:6;22747:14;22740:58;22832:12;22827:2;22819:6;22815:15;22808:37;22623:229;:::o;22858:366::-;23000:3;23021:67;23085:2;23080:3;23021:67;:::i;:::-;23014:74;;23097:93;23186:3;23097:93;:::i;:::-;23215:2;23210:3;23206:12;23199:19;;22858:366;;;:::o;23230:419::-;23396:4;23434:2;23423:9;23419:18;23411:26;;23483:9;23477:4;23473:20;23469:1;23458:9;23454:17;23447:47;23511:131;23637:4;23511:131;:::i;:::-;23503:139;;23230:419;;;:::o;23655:143::-;23712:5;23743:6;23737:13;23728:22;;23759:33;23786:5;23759:33;:::i;:::-;23655:143;;;;:::o;23804:351::-;23874:6;23923:2;23911:9;23902:7;23898:23;23894:32;23891:119;;;23929:79;;:::i;:::-;23891:119;24049:1;24074:64;24130:7;24121:6;24110:9;24106:22;24074:64;:::i;:::-;24064:74;;24020:128;23804:351;;;;:::o;24161:223::-;24301:34;24297:1;24289:6;24285:14;24278:58;24370:6;24365:2;24357:6;24353:15;24346:31;24161:223;:::o;24390:366::-;24532:3;24553:67;24617:2;24612:3;24553:67;:::i;:::-;24546:74;;24629:93;24718:3;24629:93;:::i;:::-;24747:2;24742:3;24738:12;24731:19;;24390:366;;;:::o;24762:419::-;24928:4;24966:2;24955:9;24951:18;24943:26;;25015:9;25009:4;25005:20;25001:1;24990:9;24986:17;24979:47;25043:131;25169:4;25043:131;:::i;:::-;25035:139;;24762:419;;;:::o;25187:221::-;25327:34;25323:1;25315:6;25311:14;25304:58;25396:4;25391:2;25383:6;25379:15;25372:29;25187:221;:::o;25414:366::-;25556:3;25577:67;25641:2;25636:3;25577:67;:::i;:::-;25570:74;;25653:93;25742:3;25653:93;:::i;:::-;25771:2;25766:3;25762:12;25755:19;;25414:366;;;:::o;25786:419::-;25952:4;25990:2;25979:9;25975:18;25967:26;;26039:9;26033:4;26029:20;26025:1;26014:9;26010:17;26003:47;26067:131;26193:4;26067:131;:::i;:::-;26059:139;;25786:419;;;:::o;26211:182::-;26351:34;26347:1;26339:6;26335:14;26328:58;26211:182;:::o;26399:366::-;26541:3;26562:67;26626:2;26621:3;26562:67;:::i;:::-;26555:74;;26638:93;26727:3;26638:93;:::i;:::-;26756:2;26751:3;26747:12;26740:19;;26399:366;;;:::o;26771:419::-;26937:4;26975:2;26964:9;26960:18;26952:26;;27024:9;27018:4;27014:20;27010:1;26999:9;26995:17;26988:47;27052:131;27178:4;27052:131;:::i;:::-;27044:139;;26771:419;;;:::o;27196:179::-;27336:31;27332:1;27324:6;27320:14;27313:55;27196:179;:::o;27381:366::-;27523:3;27544:67;27608:2;27603:3;27544:67;:::i;:::-;27537:74;;27620:93;27709:3;27620:93;:::i;:::-;27738:2;27733:3;27729:12;27722:19;;27381:366;;;:::o;27753:419::-;27919:4;27957:2;27946:9;27942:18;27934:26;;28006:9;28000:4;27996:20;27992:1;27981:9;27977:17;27970:47;28034:131;28160:4;28034:131;:::i;:::-;28026:139;;27753:419;;;:::o;28178:224::-;28318:34;28314:1;28306:6;28302:14;28295:58;28387:7;28382:2;28374:6;28370:15;28363:32;28178:224;:::o;28408:366::-;28550:3;28571:67;28635:2;28630:3;28571:67;:::i;:::-;28564:74;;28647:93;28736:3;28647:93;:::i;:::-;28765:2;28760:3;28756:12;28749:19;;28408:366;;;:::o;28780:419::-;28946:4;28984:2;28973:9;28969:18;28961:26;;29033:9;29027:4;29023:20;29019:1;29008:9;29004:17;28997:47;29061:131;29187:4;29061:131;:::i;:::-;29053:139;;28780:419;;;:::o;29205:222::-;29345:34;29341:1;29333:6;29329:14;29322:58;29414:5;29409:2;29401:6;29397:15;29390:30;29205:222;:::o;29433:366::-;29575:3;29596:67;29660:2;29655:3;29596:67;:::i;:::-;29589:74;;29672:93;29761:3;29672:93;:::i;:::-;29790:2;29785:3;29781:12;29774:19;;29433:366;;;:::o;29805:419::-;29971:4;30009:2;29998:9;29994:18;29986:26;;30058:9;30052:4;30048:20;30044:1;30033:9;30029:17;30022:47;30086:131;30212:4;30086:131;:::i;:::-;30078:139;;29805:419;;;:::o;30230:172::-;30370:24;30366:1;30358:6;30354:14;30347:48;30230:172;:::o;30408:366::-;30550:3;30571:67;30635:2;30630:3;30571:67;:::i;:::-;30564:74;;30647:93;30736:3;30647:93;:::i;:::-;30765:2;30760:3;30756:12;30749:19;;30408:366;;;:::o;30780:419::-;30946:4;30984:2;30973:9;30969:18;30961:26;;31033:9;31027:4;31023:20;31019:1;31008:9;31004:17;30997:47;31061:131;31187:4;31061:131;:::i;:::-;31053:139;;30780:419;;;:::o;31205:297::-;31345:34;31341:1;31333:6;31329:14;31322:58;31414:34;31409:2;31401:6;31397:15;31390:59;31483:11;31478:2;31470:6;31466:15;31459:36;31205:297;:::o;31508:366::-;31650:3;31671:67;31735:2;31730:3;31671:67;:::i;:::-;31664:74;;31747:93;31836:3;31747:93;:::i;:::-;31865:2;31860:3;31856:12;31849:19;;31508:366;;;:::o;31880:419::-;32046:4;32084:2;32073:9;32069:18;32061:26;;32133:9;32127:4;32123:20;32119:1;32108:9;32104:17;32097:47;32161:131;32287:4;32161:131;:::i;:::-;32153:139;;31880:419;;;:::o;32305:240::-;32445:34;32441:1;32433:6;32429:14;32422:58;32514:23;32509:2;32501:6;32497:15;32490:48;32305:240;:::o;32551:366::-;32693:3;32714:67;32778:2;32773:3;32714:67;:::i;:::-;32707:74;;32790:93;32879:3;32790:93;:::i;:::-;32908:2;32903:3;32899:12;32892:19;;32551:366;;;:::o;32923:419::-;33089:4;33127:2;33116:9;33112:18;33104:26;;33176:9;33170:4;33166:20;33162:1;33151:9;33147:17;33140:47;33204:131;33330:4;33204:131;:::i;:::-;33196:139;;32923:419;;;:::o;33348:169::-;33488:21;33484:1;33476:6;33472:14;33465:45;33348:169;:::o;33523:366::-;33665:3;33686:67;33750:2;33745:3;33686:67;:::i;:::-;33679:74;;33762:93;33851:3;33762:93;:::i;:::-;33880:2;33875:3;33871:12;33864:19;;33523:366;;;:::o;33895:419::-;34061:4;34099:2;34088:9;34084:18;34076:26;;34148:9;34142:4;34138:20;34134:1;34123:9;34119:17;34112:47;34176:131;34302:4;34176:131;:::i;:::-;34168:139;;33895:419;;;:::o;34320:241::-;34460:34;34456:1;34448:6;34444:14;34437:58;34529:24;34524:2;34516:6;34512:15;34505:49;34320:241;:::o;34567:366::-;34709:3;34730:67;34794:2;34789:3;34730:67;:::i;:::-;34723:74;;34806:93;34895:3;34806:93;:::i;:::-;34924:2;34919:3;34915:12;34908:19;;34567:366;;;:::o;34939:419::-;35105:4;35143:2;35132:9;35128:18;35120:26;;35192:9;35186:4;35182:20;35178:1;35167:9;35163:17;35156:47;35220:131;35346:4;35220:131;:::i;:::-;35212:139;;34939:419;;;:::o;35364:194::-;35404:4;35424:20;35442:1;35424:20;:::i;:::-;35419:25;;35458:20;35476:1;35458:20;:::i;:::-;35453:25;;35502:1;35499;35495:9;35487:17;;35526:1;35520:4;35517:11;35514:37;;;35531:18;;:::i;:::-;35514:37;35364:194;;;;:::o;35564:225::-;35704:34;35700:1;35692:6;35688:14;35681:58;35773:8;35768:2;35760:6;35756:15;35749:33;35564:225;:::o;35795:366::-;35937:3;35958:67;36022:2;36017:3;35958:67;:::i;:::-;35951:74;;36034:93;36123:3;36034:93;:::i;:::-;36152:2;36147:3;36143:12;36136:19;;35795:366;;;:::o;36167:419::-;36333:4;36371:2;36360:9;36356:18;36348:26;;36420:9;36414:4;36410:20;36406:1;36395:9;36391:17;36384:47;36448:131;36574:4;36448:131;:::i;:::-;36440:139;;36167:419;;;:::o;36592:147::-;36693:11;36730:3;36715:18;;36592:147;;;;:::o;36745:114::-;;:::o;36865:398::-;37024:3;37045:83;37126:1;37121:3;37045:83;:::i;:::-;37038:90;;37137:93;37226:3;37137:93;:::i;:::-;37255:1;37250:3;37246:11;37239:18;;36865:398;;;:::o;37269:379::-;37453:3;37475:147;37618:3;37475:147;:::i;:::-;37468:154;;37639:3;37632:10;;37269:379;;;:::o;37654:442::-;37803:4;37841:2;37830:9;37826:18;37818:26;;37854:71;37922:1;37911:9;37907:17;37898:6;37854:71;:::i;:::-;37935:72;38003:2;37992:9;37988:18;37979:6;37935:72;:::i;:::-;38017;38085:2;38074:9;38070:18;38061:6;38017:72;:::i;:::-;37654:442;;;;;;:::o;38102:180::-;38150:77;38147:1;38140:88;38247:4;38244:1;38237:15;38271:4;38268:1;38261:15;38288:180;38336:77;38333:1;38326:88;38433:4;38430:1;38423:15;38457:4;38454:1;38447:15;38474:143;38531:5;38562:6;38556:13;38547:22;;38578:33;38605:5;38578:33;:::i;:::-;38474:143;;;;:::o;38623:351::-;38693:6;38742:2;38730:9;38721:7;38717:23;38713:32;38710:119;;;38748:79;;:::i;:::-;38710:119;38868:1;38893:64;38949:7;38940:6;38929:9;38925:22;38893:64;:::i;:::-;38883:74;;38839:128;38623:351;;;;:::o;38980:85::-;39025:7;39054:5;39043:16;;38980:85;;;:::o;39071:158::-;39129:9;39162:61;39180:42;39189:32;39215:5;39189:32;:::i;:::-;39180:42;:::i;:::-;39162:61;:::i;:::-;39149:74;;39071:158;;;:::o;39235:147::-;39330:45;39369:5;39330:45;:::i;:::-;39325:3;39318:58;39235:147;;:::o;39388:114::-;39455:6;39489:5;39483:12;39473:22;;39388:114;;;:::o;39508:184::-;39607:11;39641:6;39636:3;39629:19;39681:4;39676:3;39672:14;39657:29;;39508:184;;;;:::o;39698:132::-;39765:4;39788:3;39780:11;;39818:4;39813:3;39809:14;39801:22;;39698:132;;;:::o;39836:108::-;39913:24;39931:5;39913:24;:::i;:::-;39908:3;39901:37;39836:108;;:::o;39950:179::-;40019:10;40040:46;40082:3;40074:6;40040:46;:::i;:::-;40118:4;40113:3;40109:14;40095:28;;39950:179;;;;:::o;40135:113::-;40205:4;40237;40232:3;40228:14;40220:22;;40135:113;;;:::o;40284:732::-;40403:3;40432:54;40480:5;40432:54;:::i;:::-;40502:86;40581:6;40576:3;40502:86;:::i;:::-;40495:93;;40612:56;40662:5;40612:56;:::i;:::-;40691:7;40722:1;40707:284;40732:6;40729:1;40726:13;40707:284;;;40808:6;40802:13;40835:63;40894:3;40879:13;40835:63;:::i;:::-;40828:70;;40921:60;40974:6;40921:60;:::i;:::-;40911:70;;40767:224;40754:1;40751;40747:9;40742:14;;40707:284;;;40711:14;41007:3;41000:10;;40408:608;;;40284:732;;;;:::o;41022:831::-;41285:4;41323:3;41312:9;41308:19;41300:27;;41337:71;41405:1;41394:9;41390:17;41381:6;41337:71;:::i;:::-;41418:80;41494:2;41483:9;41479:18;41470:6;41418:80;:::i;:::-;41545:9;41539:4;41535:20;41530:2;41519:9;41515:18;41508:48;41573:108;41676:4;41667:6;41573:108;:::i;:::-;41565:116;;41691:72;41759:2;41748:9;41744:18;41735:6;41691:72;:::i;:::-;41773:73;41841:3;41830:9;41826:19;41817:6;41773:73;:::i;:::-;41022:831;;;;;;;;:::o;41859:807::-;42108:4;42146:3;42135:9;42131:19;42123:27;;42160:71;42228:1;42217:9;42213:17;42204:6;42160:71;:::i;:::-;42241:72;42309:2;42298:9;42294:18;42285:6;42241:72;:::i;:::-;42323:80;42399:2;42388:9;42384:18;42375:6;42323:80;:::i;:::-;42413;42489:2;42478:9;42474:18;42465:6;42413:80;:::i;:::-;42503:73;42571:3;42560:9;42556:19;42547:6;42503:73;:::i;:::-;42586;42654:3;42643:9;42639:19;42630:6;42586:73;:::i;:::-;41859:807;;;;;;;;;:::o;42672:663::-;42760:6;42768;42776;42825:2;42813:9;42804:7;42800:23;42796:32;42793:119;;;42831:79;;:::i;:::-;42793:119;42951:1;42976:64;43032:7;43023:6;43012:9;43008:22;42976:64;:::i;:::-;42966:74;;42922:128;43089:2;43115:64;43171:7;43162:6;43151:9;43147:22;43115:64;:::i;:::-;43105:74;;43060:129;43228:2;43254:64;43310:7;43301:6;43290:9;43286:22;43254:64;:::i;:::-;43244:74;;43199:129;42672:663;;;;;:::o
Swarm Source
ipfs://a48beb40048fede6483caca2b3461865e5e0997c19cb3f670c5f4988d785329f
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.