ERC-20
Overview
Max Total Supply
1,000 $1000
Holders
64
Total Transfers
-
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
$1000
Compiler Version
v0.8.10+commit.fc410830
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-10-06 */ /** BASED contract? */ // SPDX-License-Identifier: MIT pragma solidity =0.8.10 >=0.8.10 >=0.8.0 <0.9.0; pragma experimental ABIEncoderV2; ////// lib/openzeppelin-contracts/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.0 (utils/Context.sol) /* pragma solidity ^0.8.0; */ /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } ////// lib/openzeppelin-contracts/contracts/access/Ownable.sol // OpenZeppelin Contracts v4.4.0 (access/Ownable.sol) /* pragma solidity ^0.8.0; */ /* import "../utils/Context.sol"; */ /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } ////// lib/openzeppelin-contracts/contracts/token/ERC20/IERC20.sol // OpenZeppelin Contracts v4.4.0 (token/ERC20/IERC20.sol) /* pragma solidity ^0.8.0; */ /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address sender, address recipient, uint256 amount ) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); } ////// lib/openzeppelin-contracts/contracts/token/ERC20/extensions/IERC20Metadata.sol // OpenZeppelin Contracts v4.4.0 (token/ERC20/extensions/IERC20Metadata.sol) /* pragma solidity ^0.8.0; */ /* import "../IERC20.sol"; */ /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); } ////// lib/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol // OpenZeppelin Contracts v4.4.0 (token/ERC20/ERC20.sol) /* pragma solidity ^0.8.0; */ /* import "./IERC20.sol"; */ /* import "./extensions/IERC20Metadata.sol"; */ /* import "../../utils/Context.sol"; */ /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of ERC20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * The default value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless this function is * overridden; * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address recipient, uint256 amount) public virtual override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { _approve(_msgSender(), spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * Requirements: * * - `sender` and `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. * - the caller must have allowance for ``sender``'s tokens of at least * `amount`. */ function transferFrom( address sender, address recipient, uint256 amount ) public virtual override returns (bool) { _transfer(sender, recipient, amount); uint256 currentAllowance = _allowances[sender][_msgSender()]; require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance"); unchecked { _approve(sender, _msgSender(), currentAllowance - amount); } return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender] + addedValue); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { uint256 currentAllowance = _allowances[_msgSender()][spender]; require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(_msgSender(), spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `sender` to `recipient`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `sender` cannot be the zero address. * - `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. */ function _transfer( address sender, address recipient, uint256 amount ) internal virtual { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(sender, recipient, amount); uint256 senderBalance = _balances[sender]; require(senderBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[sender] = senderBalance - amount; } _balances[recipient] += amount; emit Transfer(sender, recipient, amount); _afterTokenTransfer(sender, recipient, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; _balances[account] += amount; emit Transfer(address(0), account, amount); _afterTokenTransfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account] = accountBalance - amount; } _totalSupply -= amount; emit Transfer(account, address(0), amount); _afterTokenTransfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve( address owner, address spender, uint256 amount ) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 amount ) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * has been transferred to `to`. * - when `from` is zero, `amount` tokens have been minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens have been burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 amount ) internal virtual {} } ////// lib/openzeppelin-contracts/contracts/utils/math/SafeMath.sol // OpenZeppelin Contracts v4.4.0 (utils/math/SafeMath.sol) /* pragma solidity ^0.8.0; */ // CAUTION // This version of SafeMath should only be used with Solidity 0.8 or later, // because it relies on the compiler's built in overflow checks. /** * @dev Wrappers over Solidity's arithmetic operations. * * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler * now has built in overflow checking. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the substraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { return a + b; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { return a * b; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b <= a, errorMessage); return a - b; } } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a / b; } } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a % b; } } } ////// src/IUniswapV2Factory.sol /* pragma solidity 0.8.10; */ /* pragma experimental ABIEncoderV2; */ interface IUniswapV2Factory { event PairCreated( address indexed token0, address indexed token1, address pair, uint256 ); function feeTo() external view returns (address); function feeToSetter() external view returns (address); function getPair(address tokenA, address tokenB) external view returns (address pair); function allPairs(uint256) external view returns (address pair); function allPairsLength() external view returns (uint256); function createPair(address tokenA, address tokenB) external returns (address pair); function setFeeTo(address) external; function setFeeToSetter(address) external; } ////// src/IUniswapV2Pair.sol /* pragma solidity 0.8.10; */ /* pragma experimental ABIEncoderV2; */ interface IUniswapV2Pair { event Approval( address indexed owner, address indexed spender, uint256 value ); event Transfer(address indexed from, address indexed to, uint256 value); function name() external pure returns (string memory); function symbol() external pure returns (string memory); function decimals() external pure returns (uint8); function totalSupply() external view returns (uint256); function balanceOf(address owner) external view returns (uint256); function allowance(address owner, address spender) external view returns (uint256); function approve(address spender, uint256 value) external returns (bool); function transfer(address to, uint256 value) external returns (bool); function transferFrom( address from, address to, uint256 value ) external returns (bool); function DOMAIN_SEPARATOR() external view returns (bytes32); function PERMIT_TYPEHASH() external pure returns (bytes32); function nonces(address owner) external view returns (uint256); function permit( address owner, address spender, uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s ) external; event Mint(address indexed sender, uint256 amount0, uint256 amount1); event Burn( address indexed sender, uint256 amount0, uint256 amount1, address indexed to ); event Swap( address indexed sender, uint256 amount0In, uint256 amount1In, uint256 amount0Out, uint256 amount1Out, address indexed to ); event Sync(uint112 reserve0, uint112 reserve1); function MINIMUM_LIQUIDITY() external pure returns (uint256); function factory() external view returns (address); function token0() external view returns (address); function token1() external view returns (address); function getReserves() external view returns ( uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast ); function price0CumulativeLast() external view returns (uint256); function price1CumulativeLast() external view returns (uint256); function kLast() external view returns (uint256); function mint(address to) external returns (uint256 liquidity); function burn(address to) external returns (uint256 amount0, uint256 amount1); function swap( uint256 amount0Out, uint256 amount1Out, address to, bytes calldata data ) external; function skim(address to) external; function sync() external; function initialize(address, address) external; } ////// src/IUniswapV2Router02.sol /* pragma solidity 0.8.10; */ /* pragma experimental ABIEncoderV2; */ interface IUniswapV2Router02 { function factory() external pure returns (address); function WETH() external pure returns (address); function addLiquidity( address tokenA, address tokenB, uint256 amountADesired, uint256 amountBDesired, uint256 amountAMin, uint256 amountBMin, address to, uint256 deadline ) external returns ( uint256 amountA, uint256 amountB, uint256 liquidity ); function addLiquidityETH( address token, uint256 amountTokenDesired, uint256 amountTokenMin, uint256 amountETHMin, address to, uint256 deadline ) external payable returns ( uint256 amountToken, uint256 amountETH, uint256 liquidity ); function swapExactTokensForTokensSupportingFeeOnTransferTokens( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external; function swapExactETHForTokensSupportingFeeOnTransferTokens( uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external payable; function swapExactTokensForETHSupportingFeeOnTransferTokens( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external; } /* pragma solidity >=0.8.10; */ /* import {IUniswapV2Router02} from "./IUniswapV2Router02.sol"; */ /* import {IUniswapV2Factory} from "./IUniswapV2Factory.sol"; */ /* import {IUniswapV2Pair} from "./IUniswapV2Pair.sol"; */ /* import {IERC20} from "lib/openzeppelin-contracts/contracts/token/ERC20/IERC20.sol"; */ /* import {ERC20} from "lib/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol"; */ /* import {Ownable} from "lib/openzeppelin-contracts/contracts/access/Ownable.sol"; */ /* import {SafeMath} from "lib/openzeppelin-contracts/contracts/utils/math/SafeMath.sol"; */ contract $1000 is ERC20, Ownable { using SafeMath for uint256; IUniswapV2Router02 public immutable uniswapV2Router; address public immutable uniswapV2Pair; address public constant deadAddress = address(0xdead); bool private swapping; // EVERYTHING BELOW IS DISABLED uint256 public maxTransactionAmount; uint256 public swapTokensAtAmount; uint256 public maxWallet; uint256 public percentForLPBurn = 25; // 25 = .25% bool public lpBurnEnabled = true; uint256 public lpBurnFrequency = 3600 seconds; uint256 public lastLpBurnTime; uint256 public manualBurnFrequency = 30 minutes; uint256 public lastManualLpBurnTime; // EVERYTHING ON ABOVE IS DISABLED bool public limitsInEffect = true; bool public tradingActive = false; bool public swapEnabled = false; // Anti-bot and anti-whale mappings and variables mapping(address => uint256) private _holderLastTransferTimestamp; // to hold last Transfers temporarily during launch bool public transferDelayEnabled = true; uint256 public buyTotalFees; uint256 public 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; /******************/ // exlcude from fees and max transaction amount mapping(address => bool) private _isExcludedFromFees; mapping(address => bool) public _isExcludedMaxTransactionAmount; // store addresses that a automatic market maker pairs. Any transfer *to* these addresses // could be subject to a maximum transfer amount mapping(address => bool) public automatedMarketMakerPairs; event UpdateUniswapV2Router( address indexed newAddress, address indexed oldAddress ); event ExcludeFromFees(address indexed account, bool isExcluded); event SetAutomatedMarketMakerPair(address indexed pair, bool indexed value); event 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("$1000 Experiment", "$1000") { IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02( 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D ); excludeFromMaxTransaction(address(_uniswapV2Router), true); uniswapV2Router = _uniswapV2Router; uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()) .createPair(address(this), _uniswapV2Router.WETH()); excludeFromMaxTransaction(address(uniswapV2Pair), true); uint256 totalSupply = 1000 * 1e18; maxTransactionAmount = 10 * 1e18; // 1% from total supply maxTransactionAmountTxn maxWallet = 20 * 1e18; // 2% from total supply maxWallet swapTokensAtAmount = (totalSupply * 5) / 10000; // 0.05% swap wallet excludeFromMaxTransaction(owner(), true); excludeFromMaxTransaction(address(this), true); excludeFromMaxTransaction(address(0xdead), true); /* _mint is an internal function in ERC20.sol that is only called here, and CANNOT be called ever again */ _mint(msg.sender, totalSupply); } receive() external payable {} // once enabled, can never be turned off function BeginExperiment() external onlyOwner { tradingActive = true; swapEnabled = true; lastLpBurnTime = block.timestamp; } // remove limits after token is stable function removeLimits() external onlyOwner returns (bool) { limitsInEffect = false; return true; } function excludeFromMaxTransaction(address updAds, bool isEx) public onlyOwner { _isExcludedMaxTransactionAmount[updAds] = isEx; } event BoughtEarly(address indexed sniper); function _transfer( address from, address to, uint256 amount ) internal override { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); if (amount == 0) { super._transfer(from, to, 0); return; } if (limitsInEffect) { if ( from != owner() && to != owner() && to != address(0) && to != address(0xdead) && !swapping ) { if (!tradingActive) { require( _isExcludedFromFees[from] || _isExcludedFromFees[to], "Trading is not active." ); } // at launch if the transfer delay is enabled, ensure the block timestamps for purchasers is set -- during launch. if (transferDelayEnabled) { if ( to != owner() && to != address(uniswapV2Router) && to != address(uniswapV2Pair) ) { require( _holderLastTransferTimestamp[tx.origin] < block.number, "_transfer:: Transfer Delay enabled. Only one purchase per block allowed." ); _holderLastTransferTimestamp[tx.origin] = block.number; } } //when buy if ( automatedMarketMakerPairs[from] && !_isExcludedMaxTransactionAmount[to] ) { require( amount <= maxTransactionAmount, "Buy transfer amount exceeds the maxTransactionAmount." ); require( amount + balanceOf(to) <= maxWallet, "Max wallet exceeded" ); } //when sell else if ( automatedMarketMakerPairs[to] && !_isExcludedMaxTransactionAmount[from] ) { require( amount <= maxTransactionAmount, "Sell transfer amount exceeds the maxTransactionAmount." ); } else if (!_isExcludedMaxTransactionAmount[to]) { require( amount + balanceOf(to) <= maxWallet, "Max wallet exceeded" ); } } } uint256 contractTokenBalance = balanceOf(address(this)); bool canSwap = contractTokenBalance >= swapTokensAtAmount; if ( canSwap && swapEnabled && !swapping && !automatedMarketMakerPairs[from] && !_isExcludedFromFees[from] && !_isExcludedFromFees[to] ) { swapping = true; swapBack(); swapping = false; } if ( !swapping && automatedMarketMakerPairs[to] && lpBurnEnabled && block.timestamp >= lastLpBurnTime + lpBurnFrequency && !_isExcludedFromFees[from] ) { } bool takeFee = !swapping; // if any account belongs to _isExcludedFromFee account then remove the fee if (_isExcludedFromFees[from] || _isExcludedFromFees[to]) { takeFee = false; } uint256 fees = 0; // only take fees on buys/sells, do not take on wallet transfers if (takeFee) { // on sell if (automatedMarketMakerPairs[to] && sellTotalFees > 0) { fees = amount.mul(sellTotalFees).div(100); tokensForLiquidity += (fees * sellLiquidityFee) / sellTotalFees; tokensForDev += (fees * sellDevFee) / sellTotalFees; tokensForMarketing += (fees * sellMarketingFee) / sellTotalFees; } // on buy else if (automatedMarketMakerPairs[from] && buyTotalFees > 0) { fees = amount.mul(buyTotalFees).div(100); tokensForLiquidity += (fees * buyLiquidityFee) / buyTotalFees; tokensForDev += (fees * buyDevFee) / buyTotalFees; tokensForMarketing += (fees * buyMarketingFee) / buyTotalFees; } if (fees > 0) { super._transfer(from, address(this), fees); } amount -= fees; } super._transfer(from, to, amount); } function swapTokensForEth(uint256 tokenAmount) private { // generate the uniswap pair path of token -> weth address[] memory path = new address[](2); path[0] = address(this); path[1] = uniswapV2Router.WETH(); _approve(address(this), address(uniswapV2Router), tokenAmount); // make the swap uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens( tokenAmount, 0, // accept any amount of ETH path, address(this), block.timestamp ); } function addLiquidity(uint256 tokenAmount, uint256 ethAmount) private { // approve token transfer to cover all possible scenarios _approve(address(this), address(uniswapV2Router), tokenAmount); // add the liquidity uniswapV2Router.addLiquidityETH{value: ethAmount}( address(this), tokenAmount, 0, // slippage is unavoidable 0, // slippage is unavoidable deadAddress, block.timestamp ); } function swapBack() private { uint256 contractBalance = balanceOf(address(this)); uint256 totalTokensToSwap = tokensForLiquidity + tokensForMarketing + tokensForDev; if (contractBalance == 0 || totalTokensToSwap == 0) { return; } if (contractBalance > swapTokensAtAmount * 20) { contractBalance = swapTokensAtAmount * 20; } // Halve the amount of liquidity tokens uint256 liquidityTokens = (contractBalance * tokensForLiquidity) / totalTokensToSwap / 2; uint256 amountToSwapForETH = contractBalance.sub(liquidityTokens); uint256 initialETHBalance = address(this).balance; swapTokensForEth(amountToSwapForETH); uint256 ethBalance = address(this).balance.sub(initialETHBalance); uint256 ethForMarketing = ethBalance.mul(tokensForMarketing).div( totalTokensToSwap ); uint256 ethForDev = ethBalance.mul(tokensForDev).div(totalTokensToSwap); uint256 ethForLiquidity = ethBalance - ethForMarketing - ethForDev; tokensForLiquidity = 0; tokensForMarketing = 0; tokensForDev = 0; if (liquidityTokens > 0 && ethForLiquidity > 0) { addLiquidity(liquidityTokens, ethForLiquidity); emit SwapAndLiquify( amountToSwapForETH, ethForLiquidity, tokensForLiquidity ); } } }
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":[],"name":"BeginExperiment","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":[{"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":[],"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":[],"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":[],"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":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"transferDelayEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"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"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60c060405260196009556001600a60006101000a81548160ff021916908315150217905550610e10600b55610708600d556001600f60006101000a81548160ff0219169083151502179055506000600f60016101000a81548160ff0219169083151502179055506000600f60026101000a81548160ff0219169083151502179055506001601160006101000a81548160ff021916908315150217905550348015620000a957600080fd5b506040518060400160405280601081526020017f2431303030204578706572696d656e74000000000000000000000000000000008152506040518060400160405280600581526020017f243130303000000000000000000000000000000000000000000000000000000081525081600390805190602001906200012e92919062000791565b5080600490805190602001906200014792919062000791565b5050506200016a6200015e6200042c60201b60201c565b6200043460201b60201c565b6000737a250d5630b4cf539739df2c5dacb4c659f2488d905062000196816001620004fa60201b60201c565b8073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000216573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200023c9190620008ab565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620002a4573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002ca9190620008ab565b6040518363ffffffff1660e01b8152600401620002e9929190620008ee565b6020604051808303816000875af115801562000309573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200032f9190620008ab565b73ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff16815250506200037760a0516001620004fa60201b60201c565b6000683635c9adc5dea000009050678ac7230489e800006006819055506801158e460913d00000600881905550612710600582620003b6919062000954565b620003c29190620009e4565b600781905550620003ea620003dc620005e460201b60201c565b6001620004fa60201b60201c565b620003fd306001620004fa60201b60201c565b6200041261dead6001620004fa60201b60201c565b6200042433826200060e60201b60201c565b505062000c01565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6200050a6200042c60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1662000530620005e460201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000589576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620005809062000a7d565b60405180910390fd5b80601e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000681576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620006789062000aef565b60405180910390fd5b62000695600083836200078760201b60201c565b8060026000828254620006a9919062000b11565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825462000700919062000b11565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000767919062000b7f565b60405180910390a362000783600083836200078c60201b60201c565b5050565b505050565b505050565b8280546200079f9062000bcb565b90600052602060002090601f016020900481019282620007c357600085556200080f565b82601f10620007de57805160ff19168380011785556200080f565b828001600101855582156200080f579182015b828111156200080e578251825591602001919060010190620007f1565b5b5090506200081e919062000822565b5090565b5b808211156200083d57600081600090555060010162000823565b5090565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000620008738262000846565b9050919050565b620008858162000866565b81146200089157600080fd5b50565b600081519050620008a5816200087a565b92915050565b600060208284031215620008c457620008c362000841565b5b6000620008d48482850162000894565b91505092915050565b620008e88162000866565b82525050565b6000604082019050620009056000830185620008dd565b620009146020830184620008dd565b9392505050565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000961826200091b565b91506200096e836200091b565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615620009aa57620009a962000925565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000620009f1826200091b565b9150620009fe836200091b565b92508262000a115762000a10620009b5565b5b828204905092915050565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600062000a6560208362000a1c565b915062000a728262000a2d565b602082019050919050565b6000602082019050818103600083015262000a988162000a56565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000ad7601f8362000a1c565b915062000ae48262000a9f565b602082019050919050565b6000602082019050818103600083015262000b0a8162000ac8565b9050919050565b600062000b1e826200091b565b915062000b2b836200091b565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000b635762000b6262000925565b5b828201905092915050565b62000b79816200091b565b82525050565b600060208201905062000b96600083018462000b6e565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000be457607f821691505b6020821081141562000bfb5762000bfa62000b9c565b5b50919050565b60805160a051613b8462000c5860003960008181610e280152611928015260008181610b5b015281816118d0015281816128f4015281816129d5015281816129fc01528181612a980152612abf0152613b846000f3fe6080604052600436106102765760003560e01c8063751039fc1161014f578063a4c82a00116100c1578063d85ba0631161007a578063d85ba06314610975578063dd62ed3e146109a0578063e2f45605146109dd578063f11a24d314610a08578063f637434214610a33578063f8b45b0514610a5e5761027d565b8063a4c82a001461084f578063a9059cbb1461087a578063b62496f5146108b7578063bbc0c742146108f4578063c876d0b91461091f578063c8c8ebe41461094a5761027d565b806395d89b411161011357806395d89b411461073b5780639c3b4fdc146107665780639ec22c0e146107915780639fccce32146107bc578063a0d82dc5146107e7578063a457c2d7146108125761027d565b8063751039fc146106665780637571336a146106915780637bce5a04146106ba5780638da5cb5b146106e557806392136913146107105761027d565b80632c3e486c116101e857806349bd5a5e116101ac57806349bd5a5e146105665780634a62bb65146105915780636a486a8e146105bc5780636ddd1713146105e757806370a0823114610612578063715018a61461064f5761027d565b80632c3e486c146104915780632e82f1a0146104bc578063313ce567146104e75780633950935114610512578063474d08921461054f5761027d565b8063184c16c51161023a578063184c16c51461037d578063199ffc72146103a85780631a8145bb146103d35780631f3fed8f146103fe57806323b872dd1461042957806327c8f835146104665761027d565b806306fdde0314610282578063095ea7b3146102ad57806310d5de53146102ea5780631694505e1461032757806318160ddd146103525761027d565b3661027d57005b600080fd5b34801561028e57600080fd5b50610297610a89565b6040516102a49190612c07565b60405180910390f35b3480156102b957600080fd5b506102d460048036038101906102cf9190612cc2565b610b1b565b6040516102e19190612d1d565b60405180910390f35b3480156102f657600080fd5b50610311600480360381019061030c9190612d38565b610b39565b60405161031e9190612d1d565b60405180910390f35b34801561033357600080fd5b5061033c610b59565b6040516103499190612dc4565b60405180910390f35b34801561035e57600080fd5b50610367610b7d565b6040516103749190612dee565b60405180910390f35b34801561038957600080fd5b50610392610b87565b60405161039f9190612dee565b60405180910390f35b3480156103b457600080fd5b506103bd610b8d565b6040516103ca9190612dee565b60405180910390f35b3480156103df57600080fd5b506103e8610b93565b6040516103f59190612dee565b60405180910390f35b34801561040a57600080fd5b50610413610b99565b6040516104209190612dee565b60405180910390f35b34801561043557600080fd5b50610450600480360381019061044b9190612e09565b610b9f565b60405161045d9190612d1d565b60405180910390f35b34801561047257600080fd5b5061047b610c97565b6040516104889190612e6b565b60405180910390f35b34801561049d57600080fd5b506104a6610c9d565b6040516104b39190612dee565b60405180910390f35b3480156104c857600080fd5b506104d1610ca3565b6040516104de9190612d1d565b60405180910390f35b3480156104f357600080fd5b506104fc610cb6565b6040516105099190612ea2565b60405180910390f35b34801561051e57600080fd5b5061053960048036038101906105349190612cc2565b610cbf565b6040516105469190612d1d565b60405180910390f35b34801561055b57600080fd5b50610564610d6b565b005b34801561057257600080fd5b5061057b610e26565b6040516105889190612e6b565b60405180910390f35b34801561059d57600080fd5b506105a6610e4a565b6040516105b39190612d1d565b60405180910390f35b3480156105c857600080fd5b506105d1610e5d565b6040516105de9190612dee565b60405180910390f35b3480156105f357600080fd5b506105fc610e63565b6040516106099190612d1d565b60405180910390f35b34801561061e57600080fd5b5061063960048036038101906106349190612d38565b610e76565b6040516106469190612dee565b60405180910390f35b34801561065b57600080fd5b50610664610ebe565b005b34801561067257600080fd5b5061067b610f46565b6040516106889190612d1d565b60405180910390f35b34801561069d57600080fd5b506106b860048036038101906106b39190612ee9565b610fe6565b005b3480156106c657600080fd5b506106cf6110bd565b6040516106dc9190612dee565b60405180910390f35b3480156106f157600080fd5b506106fa6110c3565b6040516107079190612e6b565b60405180910390f35b34801561071c57600080fd5b506107256110ed565b6040516107329190612dee565b60405180910390f35b34801561074757600080fd5b506107506110f3565b60405161075d9190612c07565b60405180910390f35b34801561077257600080fd5b5061077b611185565b6040516107889190612dee565b60405180910390f35b34801561079d57600080fd5b506107a661118b565b6040516107b39190612dee565b60405180910390f35b3480156107c857600080fd5b506107d1611191565b6040516107de9190612dee565b60405180910390f35b3480156107f357600080fd5b506107fc611197565b6040516108099190612dee565b60405180910390f35b34801561081e57600080fd5b5061083960048036038101906108349190612cc2565b61119d565b6040516108469190612d1d565b60405180910390f35b34801561085b57600080fd5b50610864611288565b6040516108719190612dee565b60405180910390f35b34801561088657600080fd5b506108a1600480360381019061089c9190612cc2565b61128e565b6040516108ae9190612d1d565b60405180910390f35b3480156108c357600080fd5b506108de60048036038101906108d99190612d38565b6112ac565b6040516108eb9190612d1d565b60405180910390f35b34801561090057600080fd5b506109096112cc565b6040516109169190612d1d565b60405180910390f35b34801561092b57600080fd5b506109346112df565b6040516109419190612d1d565b60405180910390f35b34801561095657600080fd5b5061095f6112f2565b60405161096c9190612dee565b60405180910390f35b34801561098157600080fd5b5061098a6112f8565b6040516109979190612dee565b60405180910390f35b3480156109ac57600080fd5b506109c760048036038101906109c29190612f29565b6112fe565b6040516109d49190612dee565b60405180910390f35b3480156109e957600080fd5b506109f2611385565b6040516109ff9190612dee565b60405180910390f35b348015610a1457600080fd5b50610a1d61138b565b604051610a2a9190612dee565b60405180910390f35b348015610a3f57600080fd5b50610a48611391565b604051610a559190612dee565b60405180910390f35b348015610a6a57600080fd5b50610a73611397565b604051610a809190612dee565b60405180910390f35b606060038054610a9890612f98565b80601f0160208091040260200160405190810160405280929190818152602001828054610ac490612f98565b8015610b115780601f10610ae657610100808354040283529160200191610b11565b820191906000526020600020905b815481529060010190602001808311610af457829003601f168201915b5050505050905090565b6000610b2f610b2861139d565b84846113a5565b6001905092915050565b601e6020528060005260406000206000915054906101000a900460ff1681565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600254905090565b600d5481565b60095481565b601b5481565b601a5481565b6000610bac848484611570565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610bf761139d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610c77576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6e9061303c565b60405180910390fd5b610c8b85610c8361139d565b8584036113a5565b60019150509392505050565b61dead81565b600b5481565b600a60009054906101000a900460ff1681565b60006012905090565b6000610d61610ccc61139d565b848460016000610cda61139d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610d5c919061308b565b6113a5565b6001905092915050565b610d7361139d565b73ffffffffffffffffffffffffffffffffffffffff16610d916110c3565b73ffffffffffffffffffffffffffffffffffffffff1614610de7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dde9061312d565b60405180910390fd5b6001600f60016101000a81548160ff0219169083151502179055506001600f60026101000a81548160ff02191690831515021790555042600c81905550565b7f000000000000000000000000000000000000000000000000000000000000000081565b600f60009054906101000a900460ff1681565b60165481565b600f60029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610ec661139d565b73ffffffffffffffffffffffffffffffffffffffff16610ee46110c3565b73ffffffffffffffffffffffffffffffffffffffff1614610f3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f319061312d565b60405180910390fd5b610f4460006122fa565b565b6000610f5061139d565b73ffffffffffffffffffffffffffffffffffffffff16610f6e6110c3565b73ffffffffffffffffffffffffffffffffffffffff1614610fc4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fbb9061312d565b60405180910390fd5b6000600f60006101000a81548160ff0219169083151502179055506001905090565b610fee61139d565b73ffffffffffffffffffffffffffffffffffffffff1661100c6110c3565b73ffffffffffffffffffffffffffffffffffffffff1614611062576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110599061312d565b60405180910390fd5b80601e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b60135481565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60175481565b60606004805461110290612f98565b80601f016020809104026020016040519081016040528092919081815260200182805461112e90612f98565b801561117b5780601f106111505761010080835404028352916020019161117b565b820191906000526020600020905b81548152906001019060200180831161115e57829003601f168201915b5050505050905090565b60155481565b600e5481565b601c5481565b60195481565b600080600160006111ac61139d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611269576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611260906131bf565b60405180910390fd5b61127d61127461139d565b858584036113a5565b600191505092915050565b600c5481565b60006112a261129b61139d565b8484611570565b6001905092915050565b601f6020528060005260406000206000915054906101000a900460ff1681565b600f60019054906101000a900460ff1681565b601160009054906101000a900460ff1681565b60065481565b60125481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60075481565b60145481565b60185481565b60085481565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611415576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161140c90613251565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611485576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147c906132e3565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516115639190612dee565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156115e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115d790613375565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611650576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161164790613407565b60405180910390fd5b600081141561166a57611665838360006123c0565b6122f5565b600f60009054906101000a900460ff1615611d2d576116876110c3565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156116f557506116c56110c3565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561172e5750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611768575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156117815750600560149054906101000a900460ff16155b15611d2c57600f60019054906101000a900460ff1661187b57601d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168061183b5750601d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b61187a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161187190613473565b60405180910390fd5b5b601160009054906101000a900460ff1615611a43576118986110c3565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415801561191f57507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561197757507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b15611a425743601060003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054106119fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119f49061352b565b60405180910390fd5b43601060003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015611ae65750601e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15611b8d57600654811115611b30576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b27906135bd565b60405180910390fd5b600854611b3c83610e76565b82611b47919061308b565b1115611b88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b7f90613629565b60405180910390fd5b611d2b565b601f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015611c305750601e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15611c7f57600654811115611c7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c71906136bb565b60405180910390fd5b611d2a565b601e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16611d2957600854611cdc83610e76565b82611ce7919061308b565b1115611d28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d1f90613629565b60405180910390fd5b5b5b5b5b5b6000611d3830610e76565b905060006007548210159050808015611d5d5750600f60029054906101000a900460ff165b8015611d765750600560149054906101000a900460ff16155b8015611dcc5750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015611e225750601d60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015611e785750601d60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15611ebc576001600560146101000a81548160ff021916908315150217905550611ea0612641565b6000600560146101000a81548160ff0219169083151502179055505b600560149054906101000a900460ff16158015611f225750601f60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b8015611f3a5750600a60009054906101000a900460ff165b8015611f555750600b54600c54611f51919061308b565b4210155b8015611fab5750601d60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b506000600560149054906101000a900460ff16159050601d60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806120625750601d60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561206c57600090505b600081156122e557601f60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156120cf57506000601654115b1561219c576120fc60646120ee6016548861280990919063ffffffff16565b61281f90919063ffffffff16565b90506016546018548261210f91906136db565b6121199190613764565b601b600082825461212a919061308b565b925050819055506016546019548261214291906136db565b61214c9190613764565b601c600082825461215d919061308b565b925050819055506016546017548261217591906136db565b61217f9190613764565b601a6000828254612190919061308b565b925050819055506122c1565b601f60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156121f757506000601254115b156122c05761222460646122166012548861280990919063ffffffff16565b61281f90919063ffffffff16565b90506012546014548261223791906136db565b6122419190613764565b601b6000828254612252919061308b565b925050819055506012546015548261226a91906136db565b6122749190613764565b601c6000828254612285919061308b565b925050819055506012546013548261229d91906136db565b6122a79190613764565b601a60008282546122b8919061308b565b925050819055505b5b60008111156122d6576122d58730836123c0565b5b80856122e29190613795565b94505b6122f08787876123c0565b505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612430576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161242790613375565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156124a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161249790613407565b60405180910390fd5b6124ab838383612835565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015612531576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125289061383b565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546125c4919061308b565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516126289190612dee565b60405180910390a361263b84848461283a565b50505050565b600061264c30610e76565b90506000601c54601a54601b54612663919061308b565b61266d919061308b565b9050600082148061267e5750600081145b1561268a575050612807565b601460075461269991906136db565b8211156126b25760146007546126af91906136db565b91505b6000600282601b54856126c591906136db565b6126cf9190613764565b6126d99190613764565b905060006126f0828561283f90919063ffffffff16565b9050600047905061270082612855565b6000612715824761283f90919063ffffffff16565b9050600061274086612732601a548561280990919063ffffffff16565b61281f90919063ffffffff16565b9050600061276b8761275d601c548661280990919063ffffffff16565b61281f90919063ffffffff16565b9050600081838561277c9190613795565b6127869190613795565b90506000601b819055506000601a819055506000601c819055506000871180156127b05750600081115b156127fd576127bf8782612a92565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618682601b546040516127f49392919061385b565b60405180910390a15b5050505050505050505b565b6000818361281791906136db565b905092915050565b6000818361282d9190613764565b905092915050565b505050565b505050565b6000818361284d9190613795565b905092915050565b6000600267ffffffffffffffff81111561287257612871613892565b5b6040519080825280602002602001820160405280156128a05781602001602082028036833780820191505090505b50905030816000815181106128b8576128b76138c1565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561295d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906129819190613905565b81600181518110612995576129946138c1565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250506129fa307f0000000000000000000000000000000000000000000000000000000000000000846113a5565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401612a5c959493929190613a2b565b600060405180830381600087803b158015612a7657600080fd5b505af1158015612a8a573d6000803e3d6000fd5b505050505050565b612abd307f0000000000000000000000000000000000000000000000000000000000000000846113a5565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f305d71982308560008061dead426040518863ffffffff1660e01b8152600401612b2496959493929190613a85565b60606040518083038185885af1158015612b42573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190612b679190613afb565b5050505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612ba8578082015181840152602081019050612b8d565b83811115612bb7576000848401525b50505050565b6000601f19601f8301169050919050565b6000612bd982612b6e565b612be38185612b79565b9350612bf3818560208601612b8a565b612bfc81612bbd565b840191505092915050565b60006020820190508181036000830152612c218184612bce565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612c5982612c2e565b9050919050565b612c6981612c4e565b8114612c7457600080fd5b50565b600081359050612c8681612c60565b92915050565b6000819050919050565b612c9f81612c8c565b8114612caa57600080fd5b50565b600081359050612cbc81612c96565b92915050565b60008060408385031215612cd957612cd8612c29565b5b6000612ce785828601612c77565b9250506020612cf885828601612cad565b9150509250929050565b60008115159050919050565b612d1781612d02565b82525050565b6000602082019050612d326000830184612d0e565b92915050565b600060208284031215612d4e57612d4d612c29565b5b6000612d5c84828501612c77565b91505092915050565b6000819050919050565b6000612d8a612d85612d8084612c2e565b612d65565b612c2e565b9050919050565b6000612d9c82612d6f565b9050919050565b6000612dae82612d91565b9050919050565b612dbe81612da3565b82525050565b6000602082019050612dd96000830184612db5565b92915050565b612de881612c8c565b82525050565b6000602082019050612e036000830184612ddf565b92915050565b600080600060608486031215612e2257612e21612c29565b5b6000612e3086828701612c77565b9350506020612e4186828701612c77565b9250506040612e5286828701612cad565b9150509250925092565b612e6581612c4e565b82525050565b6000602082019050612e806000830184612e5c565b92915050565b600060ff82169050919050565b612e9c81612e86565b82525050565b6000602082019050612eb76000830184612e93565b92915050565b612ec681612d02565b8114612ed157600080fd5b50565b600081359050612ee381612ebd565b92915050565b60008060408385031215612f0057612eff612c29565b5b6000612f0e85828601612c77565b9250506020612f1f85828601612ed4565b9150509250929050565b60008060408385031215612f4057612f3f612c29565b5b6000612f4e85828601612c77565b9250506020612f5f85828601612c77565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612fb057607f821691505b60208210811415612fc457612fc3612f69565b5b50919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b6000613026602883612b79565b915061303182612fca565b604082019050919050565b6000602082019050818103600083015261305581613019565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061309682612c8c565b91506130a183612c8c565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156130d6576130d561305c565b5b828201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613117602083612b79565b9150613122826130e1565b602082019050919050565b600060208201905081810360008301526131468161310a565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006131a9602583612b79565b91506131b48261314d565b604082019050919050565b600060208201905081810360008301526131d88161319c565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061323b602483612b79565b9150613246826131df565b604082019050919050565b6000602082019050818103600083015261326a8161322e565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006132cd602283612b79565b91506132d882613271565b604082019050919050565b600060208201905081810360008301526132fc816132c0565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061335f602583612b79565b915061336a82613303565b604082019050919050565b6000602082019050818103600083015261338e81613352565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006133f1602383612b79565b91506133fc82613395565b604082019050919050565b60006020820190508181036000830152613420816133e4565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b600061345d601683612b79565b915061346882613427565b602082019050919050565b6000602082019050818103600083015261348c81613450565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60208201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000604082015250565b6000613515604983612b79565b915061352082613493565b606082019050919050565b6000602082019050818103600083015261354481613508565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b60006135a7603583612b79565b91506135b28261354b565b604082019050919050565b600060208201905081810360008301526135d68161359a565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b6000613613601383612b79565b915061361e826135dd565b602082019050919050565b6000602082019050818103600083015261364281613606565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b60006136a5603683612b79565b91506136b082613649565b604082019050919050565b600060208201905081810360008301526136d481613698565b9050919050565b60006136e682612c8c565b91506136f183612c8c565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561372a5761372961305c565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061376f82612c8c565b915061377a83612c8c565b92508261378a57613789613735565b5b828204905092915050565b60006137a082612c8c565b91506137ab83612c8c565b9250828210156137be576137bd61305c565b5b828203905092915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000613825602683612b79565b9150613830826137c9565b604082019050919050565b6000602082019050818103600083015261385481613818565b9050919050565b60006060820190506138706000830186612ddf565b61387d6020830185612ddf565b61388a6040830184612ddf565b949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000815190506138ff81612c60565b92915050565b60006020828403121561391b5761391a612c29565b5b6000613929848285016138f0565b91505092915050565b6000819050919050565b600061395761395261394d84613932565b612d65565b612c8c565b9050919050565b6139678161393c565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6139a281612c4e565b82525050565b60006139b48383613999565b60208301905092915050565b6000602082019050919050565b60006139d88261396d565b6139e28185613978565b93506139ed83613989565b8060005b83811015613a1e578151613a0588826139a8565b9750613a10836139c0565b9250506001810190506139f1565b5085935050505092915050565b600060a082019050613a406000830188612ddf565b613a4d602083018761395e565b8181036040830152613a5f81866139cd565b9050613a6e6060830185612e5c565b613a7b6080830184612ddf565b9695505050505050565b600060c082019050613a9a6000830189612e5c565b613aa76020830188612ddf565b613ab4604083018761395e565b613ac1606083018661395e565b613ace6080830185612e5c565b613adb60a0830184612ddf565b979650505050505050565b600081519050613af581612c96565b92915050565b600080600060608486031215613b1457613b13612c29565b5b6000613b2286828701613ae6565b9350506020613b3386828701613ae6565b9250506040613b4486828701613ae6565b915050925092509256fea264697066735822122024971ae53f0f6b1053212636dc5101f4c74a229f1334e06a148668bdd4a885ed64736f6c634300080a0033
Deployed Bytecode
0x6080604052600436106102765760003560e01c8063751039fc1161014f578063a4c82a00116100c1578063d85ba0631161007a578063d85ba06314610975578063dd62ed3e146109a0578063e2f45605146109dd578063f11a24d314610a08578063f637434214610a33578063f8b45b0514610a5e5761027d565b8063a4c82a001461084f578063a9059cbb1461087a578063b62496f5146108b7578063bbc0c742146108f4578063c876d0b91461091f578063c8c8ebe41461094a5761027d565b806395d89b411161011357806395d89b411461073b5780639c3b4fdc146107665780639ec22c0e146107915780639fccce32146107bc578063a0d82dc5146107e7578063a457c2d7146108125761027d565b8063751039fc146106665780637571336a146106915780637bce5a04146106ba5780638da5cb5b146106e557806392136913146107105761027d565b80632c3e486c116101e857806349bd5a5e116101ac57806349bd5a5e146105665780634a62bb65146105915780636a486a8e146105bc5780636ddd1713146105e757806370a0823114610612578063715018a61461064f5761027d565b80632c3e486c146104915780632e82f1a0146104bc578063313ce567146104e75780633950935114610512578063474d08921461054f5761027d565b8063184c16c51161023a578063184c16c51461037d578063199ffc72146103a85780631a8145bb146103d35780631f3fed8f146103fe57806323b872dd1461042957806327c8f835146104665761027d565b806306fdde0314610282578063095ea7b3146102ad57806310d5de53146102ea5780631694505e1461032757806318160ddd146103525761027d565b3661027d57005b600080fd5b34801561028e57600080fd5b50610297610a89565b6040516102a49190612c07565b60405180910390f35b3480156102b957600080fd5b506102d460048036038101906102cf9190612cc2565b610b1b565b6040516102e19190612d1d565b60405180910390f35b3480156102f657600080fd5b50610311600480360381019061030c9190612d38565b610b39565b60405161031e9190612d1d565b60405180910390f35b34801561033357600080fd5b5061033c610b59565b6040516103499190612dc4565b60405180910390f35b34801561035e57600080fd5b50610367610b7d565b6040516103749190612dee565b60405180910390f35b34801561038957600080fd5b50610392610b87565b60405161039f9190612dee565b60405180910390f35b3480156103b457600080fd5b506103bd610b8d565b6040516103ca9190612dee565b60405180910390f35b3480156103df57600080fd5b506103e8610b93565b6040516103f59190612dee565b60405180910390f35b34801561040a57600080fd5b50610413610b99565b6040516104209190612dee565b60405180910390f35b34801561043557600080fd5b50610450600480360381019061044b9190612e09565b610b9f565b60405161045d9190612d1d565b60405180910390f35b34801561047257600080fd5b5061047b610c97565b6040516104889190612e6b565b60405180910390f35b34801561049d57600080fd5b506104a6610c9d565b6040516104b39190612dee565b60405180910390f35b3480156104c857600080fd5b506104d1610ca3565b6040516104de9190612d1d565b60405180910390f35b3480156104f357600080fd5b506104fc610cb6565b6040516105099190612ea2565b60405180910390f35b34801561051e57600080fd5b5061053960048036038101906105349190612cc2565b610cbf565b6040516105469190612d1d565b60405180910390f35b34801561055b57600080fd5b50610564610d6b565b005b34801561057257600080fd5b5061057b610e26565b6040516105889190612e6b565b60405180910390f35b34801561059d57600080fd5b506105a6610e4a565b6040516105b39190612d1d565b60405180910390f35b3480156105c857600080fd5b506105d1610e5d565b6040516105de9190612dee565b60405180910390f35b3480156105f357600080fd5b506105fc610e63565b6040516106099190612d1d565b60405180910390f35b34801561061e57600080fd5b5061063960048036038101906106349190612d38565b610e76565b6040516106469190612dee565b60405180910390f35b34801561065b57600080fd5b50610664610ebe565b005b34801561067257600080fd5b5061067b610f46565b6040516106889190612d1d565b60405180910390f35b34801561069d57600080fd5b506106b860048036038101906106b39190612ee9565b610fe6565b005b3480156106c657600080fd5b506106cf6110bd565b6040516106dc9190612dee565b60405180910390f35b3480156106f157600080fd5b506106fa6110c3565b6040516107079190612e6b565b60405180910390f35b34801561071c57600080fd5b506107256110ed565b6040516107329190612dee565b60405180910390f35b34801561074757600080fd5b506107506110f3565b60405161075d9190612c07565b60405180910390f35b34801561077257600080fd5b5061077b611185565b6040516107889190612dee565b60405180910390f35b34801561079d57600080fd5b506107a661118b565b6040516107b39190612dee565b60405180910390f35b3480156107c857600080fd5b506107d1611191565b6040516107de9190612dee565b60405180910390f35b3480156107f357600080fd5b506107fc611197565b6040516108099190612dee565b60405180910390f35b34801561081e57600080fd5b5061083960048036038101906108349190612cc2565b61119d565b6040516108469190612d1d565b60405180910390f35b34801561085b57600080fd5b50610864611288565b6040516108719190612dee565b60405180910390f35b34801561088657600080fd5b506108a1600480360381019061089c9190612cc2565b61128e565b6040516108ae9190612d1d565b60405180910390f35b3480156108c357600080fd5b506108de60048036038101906108d99190612d38565b6112ac565b6040516108eb9190612d1d565b60405180910390f35b34801561090057600080fd5b506109096112cc565b6040516109169190612d1d565b60405180910390f35b34801561092b57600080fd5b506109346112df565b6040516109419190612d1d565b60405180910390f35b34801561095657600080fd5b5061095f6112f2565b60405161096c9190612dee565b60405180910390f35b34801561098157600080fd5b5061098a6112f8565b6040516109979190612dee565b60405180910390f35b3480156109ac57600080fd5b506109c760048036038101906109c29190612f29565b6112fe565b6040516109d49190612dee565b60405180910390f35b3480156109e957600080fd5b506109f2611385565b6040516109ff9190612dee565b60405180910390f35b348015610a1457600080fd5b50610a1d61138b565b604051610a2a9190612dee565b60405180910390f35b348015610a3f57600080fd5b50610a48611391565b604051610a559190612dee565b60405180910390f35b348015610a6a57600080fd5b50610a73611397565b604051610a809190612dee565b60405180910390f35b606060038054610a9890612f98565b80601f0160208091040260200160405190810160405280929190818152602001828054610ac490612f98565b8015610b115780601f10610ae657610100808354040283529160200191610b11565b820191906000526020600020905b815481529060010190602001808311610af457829003601f168201915b5050505050905090565b6000610b2f610b2861139d565b84846113a5565b6001905092915050565b601e6020528060005260406000206000915054906101000a900460ff1681565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6000600254905090565b600d5481565b60095481565b601b5481565b601a5481565b6000610bac848484611570565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610bf761139d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610c77576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6e9061303c565b60405180910390fd5b610c8b85610c8361139d565b8584036113a5565b60019150509392505050565b61dead81565b600b5481565b600a60009054906101000a900460ff1681565b60006012905090565b6000610d61610ccc61139d565b848460016000610cda61139d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610d5c919061308b565b6113a5565b6001905092915050565b610d7361139d565b73ffffffffffffffffffffffffffffffffffffffff16610d916110c3565b73ffffffffffffffffffffffffffffffffffffffff1614610de7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dde9061312d565b60405180910390fd5b6001600f60016101000a81548160ff0219169083151502179055506001600f60026101000a81548160ff02191690831515021790555042600c81905550565b7f000000000000000000000000901cb8c05114fb46f4bd703b007ec15036cb4d9181565b600f60009054906101000a900460ff1681565b60165481565b600f60029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610ec661139d565b73ffffffffffffffffffffffffffffffffffffffff16610ee46110c3565b73ffffffffffffffffffffffffffffffffffffffff1614610f3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f319061312d565b60405180910390fd5b610f4460006122fa565b565b6000610f5061139d565b73ffffffffffffffffffffffffffffffffffffffff16610f6e6110c3565b73ffffffffffffffffffffffffffffffffffffffff1614610fc4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fbb9061312d565b60405180910390fd5b6000600f60006101000a81548160ff0219169083151502179055506001905090565b610fee61139d565b73ffffffffffffffffffffffffffffffffffffffff1661100c6110c3565b73ffffffffffffffffffffffffffffffffffffffff1614611062576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110599061312d565b60405180910390fd5b80601e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b60135481565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60175481565b60606004805461110290612f98565b80601f016020809104026020016040519081016040528092919081815260200182805461112e90612f98565b801561117b5780601f106111505761010080835404028352916020019161117b565b820191906000526020600020905b81548152906001019060200180831161115e57829003601f168201915b5050505050905090565b60155481565b600e5481565b601c5481565b60195481565b600080600160006111ac61139d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611269576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611260906131bf565b60405180910390fd5b61127d61127461139d565b858584036113a5565b600191505092915050565b600c5481565b60006112a261129b61139d565b8484611570565b6001905092915050565b601f6020528060005260406000206000915054906101000a900460ff1681565b600f60019054906101000a900460ff1681565b601160009054906101000a900460ff1681565b60065481565b60125481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60075481565b60145481565b60185481565b60085481565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611415576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161140c90613251565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611485576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147c906132e3565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516115639190612dee565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156115e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115d790613375565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611650576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161164790613407565b60405180910390fd5b600081141561166a57611665838360006123c0565b6122f5565b600f60009054906101000a900460ff1615611d2d576116876110c3565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156116f557506116c56110c3565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561172e5750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611768575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156117815750600560149054906101000a900460ff16155b15611d2c57600f60019054906101000a900460ff1661187b57601d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168061183b5750601d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b61187a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161187190613473565b60405180910390fd5b5b601160009054906101000a900460ff1615611a43576118986110c3565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415801561191f57507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561197757507f000000000000000000000000901cb8c05114fb46f4bd703b007ec15036cb4d9173ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b15611a425743601060003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054106119fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119f49061352b565b60405180910390fd5b43601060003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015611ae65750601e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15611b8d57600654811115611b30576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b27906135bd565b60405180910390fd5b600854611b3c83610e76565b82611b47919061308b565b1115611b88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b7f90613629565b60405180910390fd5b611d2b565b601f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015611c305750601e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15611c7f57600654811115611c7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c71906136bb565b60405180910390fd5b611d2a565b601e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16611d2957600854611cdc83610e76565b82611ce7919061308b565b1115611d28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d1f90613629565b60405180910390fd5b5b5b5b5b5b6000611d3830610e76565b905060006007548210159050808015611d5d5750600f60029054906101000a900460ff165b8015611d765750600560149054906101000a900460ff16155b8015611dcc5750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015611e225750601d60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015611e785750601d60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15611ebc576001600560146101000a81548160ff021916908315150217905550611ea0612641565b6000600560146101000a81548160ff0219169083151502179055505b600560149054906101000a900460ff16158015611f225750601f60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b8015611f3a5750600a60009054906101000a900460ff165b8015611f555750600b54600c54611f51919061308b565b4210155b8015611fab5750601d60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b506000600560149054906101000a900460ff16159050601d60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806120625750601d60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561206c57600090505b600081156122e557601f60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156120cf57506000601654115b1561219c576120fc60646120ee6016548861280990919063ffffffff16565b61281f90919063ffffffff16565b90506016546018548261210f91906136db565b6121199190613764565b601b600082825461212a919061308b565b925050819055506016546019548261214291906136db565b61214c9190613764565b601c600082825461215d919061308b565b925050819055506016546017548261217591906136db565b61217f9190613764565b601a6000828254612190919061308b565b925050819055506122c1565b601f60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156121f757506000601254115b156122c05761222460646122166012548861280990919063ffffffff16565b61281f90919063ffffffff16565b90506012546014548261223791906136db565b6122419190613764565b601b6000828254612252919061308b565b925050819055506012546015548261226a91906136db565b6122749190613764565b601c6000828254612285919061308b565b925050819055506012546013548261229d91906136db565b6122a79190613764565b601a60008282546122b8919061308b565b925050819055505b5b60008111156122d6576122d58730836123c0565b5b80856122e29190613795565b94505b6122f08787876123c0565b505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612430576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161242790613375565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156124a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161249790613407565b60405180910390fd5b6124ab838383612835565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015612531576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125289061383b565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546125c4919061308b565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516126289190612dee565b60405180910390a361263b84848461283a565b50505050565b600061264c30610e76565b90506000601c54601a54601b54612663919061308b565b61266d919061308b565b9050600082148061267e5750600081145b1561268a575050612807565b601460075461269991906136db565b8211156126b25760146007546126af91906136db565b91505b6000600282601b54856126c591906136db565b6126cf9190613764565b6126d99190613764565b905060006126f0828561283f90919063ffffffff16565b9050600047905061270082612855565b6000612715824761283f90919063ffffffff16565b9050600061274086612732601a548561280990919063ffffffff16565b61281f90919063ffffffff16565b9050600061276b8761275d601c548661280990919063ffffffff16565b61281f90919063ffffffff16565b9050600081838561277c9190613795565b6127869190613795565b90506000601b819055506000601a819055506000601c819055506000871180156127b05750600081115b156127fd576127bf8782612a92565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618682601b546040516127f49392919061385b565b60405180910390a15b5050505050505050505b565b6000818361281791906136db565b905092915050565b6000818361282d9190613764565b905092915050565b505050565b505050565b6000818361284d9190613795565b905092915050565b6000600267ffffffffffffffff81111561287257612871613892565b5b6040519080825280602002602001820160405280156128a05781602001602082028036833780820191505090505b50905030816000815181106128b8576128b76138c1565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561295d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906129819190613905565b81600181518110612995576129946138c1565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250506129fa307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846113a5565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401612a5c959493929190613a2b565b600060405180830381600087803b158015612a7657600080fd5b505af1158015612a8a573d6000803e3d6000fd5b505050505050565b612abd307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846113a5565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d71982308560008061dead426040518863ffffffff1660e01b8152600401612b2496959493929190613a85565b60606040518083038185885af1158015612b42573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190612b679190613afb565b5050505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612ba8578082015181840152602081019050612b8d565b83811115612bb7576000848401525b50505050565b6000601f19601f8301169050919050565b6000612bd982612b6e565b612be38185612b79565b9350612bf3818560208601612b8a565b612bfc81612bbd565b840191505092915050565b60006020820190508181036000830152612c218184612bce565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612c5982612c2e565b9050919050565b612c6981612c4e565b8114612c7457600080fd5b50565b600081359050612c8681612c60565b92915050565b6000819050919050565b612c9f81612c8c565b8114612caa57600080fd5b50565b600081359050612cbc81612c96565b92915050565b60008060408385031215612cd957612cd8612c29565b5b6000612ce785828601612c77565b9250506020612cf885828601612cad565b9150509250929050565b60008115159050919050565b612d1781612d02565b82525050565b6000602082019050612d326000830184612d0e565b92915050565b600060208284031215612d4e57612d4d612c29565b5b6000612d5c84828501612c77565b91505092915050565b6000819050919050565b6000612d8a612d85612d8084612c2e565b612d65565b612c2e565b9050919050565b6000612d9c82612d6f565b9050919050565b6000612dae82612d91565b9050919050565b612dbe81612da3565b82525050565b6000602082019050612dd96000830184612db5565b92915050565b612de881612c8c565b82525050565b6000602082019050612e036000830184612ddf565b92915050565b600080600060608486031215612e2257612e21612c29565b5b6000612e3086828701612c77565b9350506020612e4186828701612c77565b9250506040612e5286828701612cad565b9150509250925092565b612e6581612c4e565b82525050565b6000602082019050612e806000830184612e5c565b92915050565b600060ff82169050919050565b612e9c81612e86565b82525050565b6000602082019050612eb76000830184612e93565b92915050565b612ec681612d02565b8114612ed157600080fd5b50565b600081359050612ee381612ebd565b92915050565b60008060408385031215612f0057612eff612c29565b5b6000612f0e85828601612c77565b9250506020612f1f85828601612ed4565b9150509250929050565b60008060408385031215612f4057612f3f612c29565b5b6000612f4e85828601612c77565b9250506020612f5f85828601612c77565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612fb057607f821691505b60208210811415612fc457612fc3612f69565b5b50919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b6000613026602883612b79565b915061303182612fca565b604082019050919050565b6000602082019050818103600083015261305581613019565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061309682612c8c565b91506130a183612c8c565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156130d6576130d561305c565b5b828201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613117602083612b79565b9150613122826130e1565b602082019050919050565b600060208201905081810360008301526131468161310a565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006131a9602583612b79565b91506131b48261314d565b604082019050919050565b600060208201905081810360008301526131d88161319c565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061323b602483612b79565b9150613246826131df565b604082019050919050565b6000602082019050818103600083015261326a8161322e565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006132cd602283612b79565b91506132d882613271565b604082019050919050565b600060208201905081810360008301526132fc816132c0565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061335f602583612b79565b915061336a82613303565b604082019050919050565b6000602082019050818103600083015261338e81613352565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006133f1602383612b79565b91506133fc82613395565b604082019050919050565b60006020820190508181036000830152613420816133e4565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b600061345d601683612b79565b915061346882613427565b602082019050919050565b6000602082019050818103600083015261348c81613450565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60208201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000604082015250565b6000613515604983612b79565b915061352082613493565b606082019050919050565b6000602082019050818103600083015261354481613508565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b60006135a7603583612b79565b91506135b28261354b565b604082019050919050565b600060208201905081810360008301526135d68161359a565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b6000613613601383612b79565b915061361e826135dd565b602082019050919050565b6000602082019050818103600083015261364281613606565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b60006136a5603683612b79565b91506136b082613649565b604082019050919050565b600060208201905081810360008301526136d481613698565b9050919050565b60006136e682612c8c565b91506136f183612c8c565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561372a5761372961305c565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061376f82612c8c565b915061377a83612c8c565b92508261378a57613789613735565b5b828204905092915050565b60006137a082612c8c565b91506137ab83612c8c565b9250828210156137be576137bd61305c565b5b828203905092915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000613825602683612b79565b9150613830826137c9565b604082019050919050565b6000602082019050818103600083015261385481613818565b9050919050565b60006060820190506138706000830186612ddf565b61387d6020830185612ddf565b61388a6040830184612ddf565b949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000815190506138ff81612c60565b92915050565b60006020828403121561391b5761391a612c29565b5b6000613929848285016138f0565b91505092915050565b6000819050919050565b600061395761395261394d84613932565b612d65565b612c8c565b9050919050565b6139678161393c565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6139a281612c4e565b82525050565b60006139b48383613999565b60208301905092915050565b6000602082019050919050565b60006139d88261396d565b6139e28185613978565b93506139ed83613989565b8060005b83811015613a1e578151613a0588826139a8565b9750613a10836139c0565b9250506001810190506139f1565b5085935050505092915050565b600060a082019050613a406000830188612ddf565b613a4d602083018761395e565b8181036040830152613a5f81866139cd565b9050613a6e6060830185612e5c565b613a7b6080830184612ddf565b9695505050505050565b600060c082019050613a9a6000830189612e5c565b613aa76020830188612ddf565b613ab4604083018761395e565b613ac1606083018661395e565b613ace6080830185612e5c565b613adb60a0830184612ddf565b979650505050505050565b600081519050613af581612c96565b92915050565b600080600060608486031215613b1457613b13612c29565b5b6000613b2286828701613ae6565b9350506020613b3386828701613ae6565b9250506040613b4486828701613ae6565b915050925092509256fea264697066735822122024971ae53f0f6b1053212636dc5101f4c74a229f1334e06a148668bdd4a885ed64736f6c634300080a0033
Deployed Bytecode Sourcemap
32400:12065:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9228:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11395:169;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34025:63;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32475:51;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10348:108;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33001:47;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32818:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33809:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33769;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12046:492;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32578:53;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32913:45;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32874:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10190:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12947:215;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36253:157;;;;;;;;;;;;;:::i;:::-;;32533:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33137:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33624:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33217:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10519:127;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2821:103;;;;;;;;;;;;;:::i;:::-;;36462:121;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36591:167;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33517:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2170:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33659:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9447:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33591:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33055:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33849:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33735:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13665:413;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32965:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10859:175;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34246:57;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33177:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33435:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32705:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33483:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11097:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32747:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33554:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33697:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32787:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9228:100;9282:13;9315:5;9308:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9228:100;:::o;11395:169::-;11478:4;11495:39;11504:12;:10;:12::i;:::-;11518:7;11527:6;11495:8;:39::i;:::-;11552:4;11545:11;;11395:169;;;;:::o;34025:63::-;;;;;;;;;;;;;;;;;;;;;;:::o;32475:51::-;;;:::o;10348:108::-;10409:7;10436:12;;10429:19;;10348:108;:::o;33001:47::-;;;;:::o;32818:36::-;;;;:::o;33809:33::-;;;;:::o;33769:::-;;;;:::o;12046:492::-;12186:4;12203:36;12213:6;12221:9;12232:6;12203:9;:36::i;:::-;12252:24;12279:11;:19;12291:6;12279:19;;;;;;;;;;;;;;;:33;12299:12;:10;:12::i;:::-;12279:33;;;;;;;;;;;;;;;;12252:60;;12351:6;12331:16;:26;;12323:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;12438:57;12447:6;12455:12;:10;:12::i;:::-;12488:6;12469:16;:25;12438:8;:57::i;:::-;12526:4;12519:11;;;12046:492;;;;;:::o;32578:53::-;32624:6;32578:53;:::o;32913:45::-;;;;:::o;32874:32::-;;;;;;;;;;;;;:::o;10190:93::-;10248:5;10273:2;10266:9;;10190:93;:::o;12947:215::-;13035:4;13052:80;13061:12;:10;:12::i;:::-;13075:7;13121:10;13084:11;:25;13096:12;:10;:12::i;:::-;13084:25;;;;;;;;;;;;;;;:34;13110:7;13084:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;13052:8;:80::i;:::-;13150:4;13143:11;;12947:215;;;;:::o;36253:157::-;2401:12;:10;:12::i;:::-;2390:23;;:7;:5;:7::i;:::-;:23;;;2382:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;36326:4:::1;36310:13;;:20;;;;;;;;;;;;;;;;;;36355:4;36341:11;;:18;;;;;;;;;;;;;;;;;;36387:15;36370:14;:32;;;;36253:157::o:0;32533:38::-;;;:::o;33137:33::-;;;;;;;;;;;;;:::o;33624:28::-;;;;:::o;33217:31::-;;;;;;;;;;;;;:::o;10519:127::-;10593:7;10620:9;:18;10630:7;10620:18;;;;;;;;;;;;;;;;10613:25;;10519:127;;;:::o;2821:103::-;2401:12;:10;:12::i;:::-;2390:23;;:7;:5;:7::i;:::-;:23;;;2382:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2886:30:::1;2913:1;2886:18;:30::i;:::-;2821:103::o:0;36462:121::-;36514:4;2401:12;:10;:12::i;:::-;2390:23;;:7;:5;:7::i;:::-;:23;;;2382:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;36548:5:::1;36531:14;;:22;;;;;;;;;;;;;;;;;;36571:4;36564:11;;36462:121:::0;:::o;36591:167::-;2401:12;:10;:12::i;:::-;2390:23;;:7;:5;:7::i;:::-;:23;;;2382:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;36746:4:::1;36704:31;:39;36736:6;36704:39;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;36591:167:::0;;:::o;33517:30::-;;;;:::o;2170:87::-;2216:7;2243:6;;;;;;;;;;;2236:13;;2170:87;:::o;33659:31::-;;;;:::o;9447:104::-;9503:13;9536:7;9529:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9447:104;:::o;33591:24::-;;;;:::o;33055:35::-;;;;:::o;33849:27::-;;;;:::o;33735:25::-;;;;:::o;13665:413::-;13758:4;13775:24;13802:11;:25;13814:12;:10;:12::i;:::-;13802:25;;;;;;;;;;;;;;;:34;13828:7;13802:34;;;;;;;;;;;;;;;;13775:61;;13875:15;13855:16;:35;;13847:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;13968:67;13977:12;:10;:12::i;:::-;13991:7;14019:15;14000:16;:34;13968:8;:67::i;:::-;14066:4;14059:11;;;13665:413;;;;:::o;32965:29::-;;;;:::o;10859:175::-;10945:4;10962:42;10972:12;:10;:12::i;:::-;10986:9;10997:6;10962:9;:42::i;:::-;11022:4;11015:11;;10859:175;;;;:::o;34246:57::-;;;;;;;;;;;;;;;;;;;;;;:::o;33177:33::-;;;;;;;;;;;;;:::o;33435:39::-;;;;;;;;;;;;;:::o;32705:35::-;;;;:::o;33483:27::-;;;;:::o;11097:151::-;11186:7;11213:11;:18;11225:5;11213:18;;;;;;;;;;;;;;;:27;11232:7;11213:27;;;;;;;;;;;;;;;;11206:34;;11097:151;;;;:::o;32747:33::-;;;;:::o;33554:30::-;;;;:::o;33697:31::-;;;;:::o;32787:24::-;;;;:::o;843:98::-;896:7;923:10;916:17;;843:98;:::o;17349:380::-;17502:1;17485:19;;:5;:19;;;;17477:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;17583:1;17564:21;;:7;:21;;;;17556:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;17667:6;17637:11;:18;17649:5;17637:18;;;;;;;;;;;;;;;:27;17656:7;17637:27;;;;;;;;;;;;;;;:36;;;;17705:7;17689:32;;17698:5;17689:32;;;17714:6;17689:32;;;;;;:::i;:::-;;;;;;;;17349:380;;;:::o;36816:4967::-;36964:1;36948:18;;:4;:18;;;;36940:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37041:1;37027:16;;:2;:16;;;;37019:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;37110:1;37100:6;:11;37096:93;;;37128:28;37144:4;37150:2;37154:1;37128:15;:28::i;:::-;37171:7;;37096:93;37205:14;;;;;;;;;;;37201:2487;;;37266:7;:5;:7::i;:::-;37258:15;;:4;:15;;;;:49;;;;;37300:7;:5;:7::i;:::-;37294:13;;:2;:13;;;;37258:49;:86;;;;;37342:1;37328:16;;:2;:16;;;;37258:86;:128;;;;;37379:6;37365:21;;:2;:21;;;;37258:128;:158;;;;;37408:8;;;;;;;;;;;37407:9;37258:158;37236:2441;;;37456:13;;;;;;;;;;;37451:223;;37528:19;:25;37548:4;37528:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;37557:19;:23;37577:2;37557:23;;;;;;;;;;;;;;;;;;;;;;;;;37528:52;37494:160;;;;;;;;;;;;:::i;:::-;;;;;;;;;37451:223;37830:20;;;;;;;;;;;37826:641;;;37911:7;:5;:7::i;:::-;37905:13;;:2;:13;;;;:72;;;;;37961:15;37947:30;;:2;:30;;;;37905:72;:129;;;;;38020:13;38006:28;;:2;:28;;;;37905:129;37875:573;;;38198:12;38123:28;:39;38152:9;38123:39;;;;;;;;;;;;;;;;:87;38085:258;;;;;;;;;;;;:::i;:::-;;;;;;;;;38412:12;38370:28;:39;38399:9;38370:39;;;;;;;;;;;;;;;:54;;;;37875:573;37826:641;38541:25;:31;38567:4;38541:31;;;;;;;;;;;;;;;;;;;;;;;;;:92;;;;;38598:31;:35;38630:2;38598:35;;;;;;;;;;;;;;;;;;;;;;;;;38597:36;38541:92;38515:1147;;;38720:20;;38710:6;:30;;38676:169;;;;;;;;;;;;:::i;:::-;;;;;;;;;38928:9;;38911:13;38921:2;38911:9;:13::i;:::-;38902:6;:22;;;;:::i;:::-;:35;;38868:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;38515:1147;;;39106:25;:29;39132:2;39106:29;;;;;;;;;;;;;;;;;;;;;;;;;:92;;;;;39161:31;:37;39193:4;39161:37;;;;;;;;;;;;;;;;;;;;;;;;;39160:38;39106:92;39080:582;;;39285:20;;39275:6;:30;;39241:170;;;;;;;;;;;;:::i;:::-;;;;;;;;;39080:582;;;39442:31;:35;39474:2;39442:35;;;;;;;;;;;;;;;;;;;;;;;;;39437:225;;39562:9;;39545:13;39555:2;39545:9;:13::i;:::-;39536:6;:22;;;;:::i;:::-;:35;;39502:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;39437:225;39080:582;38515:1147;37236:2441;37201:2487;39700:28;39731:24;39749:4;39731:9;:24::i;:::-;39700:55;;39768:12;39807:18;;39783:20;:42;;39768:57;;39856:7;:35;;;;;39880:11;;;;;;;;;;;39856:35;:61;;;;;39909:8;;;;;;;;;;;39908:9;39856:61;:110;;;;;39935:25;:31;39961:4;39935:31;;;;;;;;;;;;;;;;;;;;;;;;;39934:32;39856:110;:153;;;;;39984:19;:25;40004:4;39984:25;;;;;;;;;;;;;;;;;;;;;;;;;39983:26;39856:153;:194;;;;;40027:19;:23;40047:2;40027:23;;;;;;;;;;;;;;;;;;;;;;;;;40026:24;39856:194;39838:326;;;40088:4;40077:8;;:15;;;;;;;;;;;;;;;;;;40109:10;:8;:10::i;:::-;40147:5;40136:8;;:16;;;;;;;;;;;;;;;;;;39838:326;40195:8;;;;;;;;;;;40194:9;:55;;;;;40220:25;:29;40246:2;40220:29;;;;;;;;;;;;;;;;;;;;;;;;;40194:55;:85;;;;;40266:13;;;;;;;;;;;40194:85;:153;;;;;40332:15;;40315:14;;:32;;;;:::i;:::-;40296:15;:51;;40194:153;:196;;;;;40365:19;:25;40385:4;40365:25;;;;;;;;;;;;;;;;;;;;;;;;;40364:26;40194:196;40176:238;40426:12;40442:8;;;;;;;;;;;40441:9;40426:24;;40552:19;:25;40572:4;40552:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;40581:19;:23;40601:2;40581:23;;;;;;;;;;;;;;;;;;;;;;;;;40552:52;40548:100;;;40631:5;40621:15;;40548:100;40660:12;40765:7;40761:969;;;40817:25;:29;40843:2;40817:29;;;;;;;;;;;;;;;;;;;;;;;;;:50;;;;;40866:1;40850:13;;:17;40817:50;40813:768;;;40895:34;40925:3;40895:25;40906:13;;40895:6;:10;;:25;;;;:::i;:::-;:29;;:34;;;;:::i;:::-;40888:41;;40998:13;;40978:16;;40971:4;:23;;;;:::i;:::-;40970:41;;;;:::i;:::-;40948:18;;:63;;;;;;;:::i;:::-;;;;;;;;41068:13;;41054:10;;41047:4;:17;;;;:::i;:::-;41046:35;;;;:::i;:::-;41030:12;;:51;;;;;;;:::i;:::-;;;;;;;;41150:13;;41130:16;;41123:4;:23;;;;:::i;:::-;41122:41;;;;:::i;:::-;41100:18;;:63;;;;;;;:::i;:::-;;;;;;;;40813:768;;;41225:25;:31;41251:4;41225:31;;;;;;;;;;;;;;;;;;;;;;;;;:51;;;;;41275:1;41260:12;;:16;41225:51;41221:360;;;41304:33;41333:3;41304:24;41315:12;;41304:6;:10;;:24;;;;:::i;:::-;:28;;:33;;;;:::i;:::-;41297:40;;41405:12;;41386:15;;41379:4;:22;;;;:::i;:::-;41378:39;;;;:::i;:::-;41356:18;;:61;;;;;;;:::i;:::-;;;;;;;;41473:12;;41460:9;;41453:4;:16;;;;:::i;:::-;41452:33;;;;:::i;:::-;41436:12;;:49;;;;;;;:::i;:::-;;;;;;;;41553:12;;41534:15;;41527:4;:22;;;;:::i;:::-;41526:39;;;;:::i;:::-;41504:18;;:61;;;;;;;:::i;:::-;;;;;;;;41221:360;40813:768;41608:1;41601:4;:8;41597:91;;;41630:42;41646:4;41660;41667;41630:15;:42::i;:::-;41597:91;41714:4;41704:14;;;;;:::i;:::-;;;40761:969;41742:33;41758:4;41764:2;41768:6;41742:15;:33::i;:::-;36929:4854;;;;36816:4967;;;;:::o;3082:191::-;3156:16;3175:6;;;;;;;;;;;3156:25;;3201:8;3192:6;;:17;;;;;;;;;;;;;;;;;;3256:8;3225:40;;3246:8;3225:40;;;;;;;;;;;;3145:128;3082:191;:::o;14568:733::-;14726:1;14708:20;;:6;:20;;;;14700:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;14810:1;14789:23;;:9;:23;;;;14781:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;14865:47;14886:6;14894:9;14905:6;14865:20;:47::i;:::-;14925:21;14949:9;:17;14959:6;14949:17;;;;;;;;;;;;;;;;14925:41;;15002:6;14985:13;:23;;14977:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;15123:6;15107:13;:22;15087:9;:17;15097:6;15087:17;;;;;;;;;;;;;;;:42;;;;15175:6;15151:9;:20;15161:9;15151:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;15216:9;15199:35;;15208:6;15199:35;;;15227:6;15199:35;;;;;;:::i;:::-;;;;;;;;15247:46;15267:6;15275:9;15286:6;15247:19;:46::i;:::-;14689:612;14568:733;;;:::o;42913:1549::-;42952:23;42978:24;42996:4;42978:9;:24::i;:::-;42952:50;;43013:25;43109:12;;43075:18;;43041;;:52;;;;:::i;:::-;:80;;;;:::i;:::-;43013:108;;43157:1;43138:15;:20;:46;;;;43183:1;43162:17;:22;43138:46;43134:85;;;43201:7;;;;43134:85;43274:2;43253:18;;:23;;;;:::i;:::-;43235:15;:41;43231:115;;;43332:2;43311:18;;:23;;;;:::i;:::-;43293:41;;43231:115;43407:23;43520:1;43487:17;43452:18;;43434:15;:36;;;;:::i;:::-;43433:71;;;;:::i;:::-;:88;;;;:::i;:::-;43407:114;;43532:26;43561:36;43581:15;43561;:19;;:36;;;;:::i;:::-;43532:65;;43610:25;43638:21;43610:49;;43672:36;43689:18;43672:16;:36::i;:::-;43721:18;43742:44;43768:17;43742:21;:25;;:44;;;;:::i;:::-;43721:65;;43799:23;43825:81;43878:17;43825:34;43840:18;;43825:10;:14;;:34;;;;:::i;:::-;:38;;:81;;;;:::i;:::-;43799:107;;43917:17;43937:51;43970:17;43937:28;43952:12;;43937:10;:14;;:28;;;;:::i;:::-;:32;;:51;;;;:::i;:::-;43917:71;;44001:23;44058:9;44040:15;44027:10;:28;;;;:::i;:::-;:40;;;;:::i;:::-;44001:66;;44101:1;44080:18;:22;;;;44134:1;44113:18;:22;;;;44161:1;44146:12;:16;;;;44199:1;44181:15;:19;:42;;;;;44222:1;44204:15;:19;44181:42;44177:278;;;44240:46;44253:15;44270;44240:12;:46::i;:::-;44306:137;44339:18;44376:15;44410:18;;44306:137;;;;;;;;:::i;:::-;;;;;;;;44177:278;42941:1521;;;;;;;;;42913:1549;:::o;22802:98::-;22860:7;22891:1;22887;:5;;;;:::i;:::-;22880:12;;22802:98;;;;:::o;23201:::-;23259:7;23290:1;23286;:5;;;;:::i;:::-;23279:12;;23201:98;;;;:::o;18329:125::-;;;;:::o;19058:124::-;;;;:::o;22445:98::-;22503:7;22534:1;22530;:5;;;;:::i;:::-;22523:12;;22445:98;;;;:::o;41791:589::-;41917:21;41955:1;41941:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41917:40;;41986:4;41968;41973:1;41968:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;;;42012:15;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;42002:4;42007:1;42002:7;;;;;;;;:::i;:::-;;;;;;;:32;;;;;;;;;;;42047:62;42064:4;42079:15;42097:11;42047:8;:62::i;:::-;42148:15;:66;;;42229:11;42255:1;42299:4;42326;42346:15;42148:224;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41846:534;41791:589;:::o;42388:517::-;42536:62;42553:4;42568:15;42586:11;42536:8;:62::i;:::-;42641:15;:31;;;42680:9;42713:4;42733:11;42759:1;42802;32624:6;42871:15;42641:256;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;42388:517;;:::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:307::-;355:1;365:113;379:6;376:1;373:13;365:113;;;464:1;459:3;455:11;449:18;445:1;440:3;436:11;429:39;401:2;398:1;394:10;389:15;;365:113;;;496:6;493:1;490:13;487:101;;;576:1;567:6;562:3;558:16;551:27;487:101;336:258;287:307;;;:::o;600:102::-;641:6;692:2;688:7;683:2;676:5;672:14;668:28;658:38;;600:102;;;:::o;708:364::-;796:3;824:39;857:5;824:39;:::i;:::-;879:71;943:6;938:3;879:71;:::i;:::-;872:78;;959:52;1004:6;999:3;992:4;985:5;981:16;959:52;:::i;:::-;1036:29;1058:6;1036:29;:::i;:::-;1031:3;1027:39;1020:46;;800:272;708:364;;;;:::o;1078:313::-;1191:4;1229:2;1218:9;1214:18;1206:26;;1278:9;1272:4;1268:20;1264:1;1253:9;1249:17;1242:47;1306:78;1379:4;1370:6;1306:78;:::i;:::-;1298:86;;1078:313;;;;:::o;1478:117::-;1587:1;1584;1577:12;1724:126;1761:7;1801:42;1794:5;1790:54;1779:65;;1724:126;;;:::o;1856:96::-;1893:7;1922:24;1940:5;1922:24;:::i;:::-;1911:35;;1856:96;;;:::o;1958:122::-;2031:24;2049:5;2031:24;:::i;:::-;2024:5;2021:35;2011:63;;2070:1;2067;2060:12;2011:63;1958:122;:::o;2086:139::-;2132:5;2170:6;2157:20;2148:29;;2186:33;2213:5;2186:33;:::i;:::-;2086:139;;;;:::o;2231:77::-;2268:7;2297:5;2286:16;;2231:77;;;:::o;2314:122::-;2387:24;2405:5;2387:24;:::i;:::-;2380:5;2377:35;2367:63;;2426:1;2423;2416:12;2367:63;2314:122;:::o;2442:139::-;2488:5;2526:6;2513:20;2504:29;;2542:33;2569:5;2542:33;:::i;:::-;2442:139;;;;:::o;2587:474::-;2655:6;2663;2712:2;2700:9;2691:7;2687:23;2683:32;2680:119;;;2718:79;;:::i;:::-;2680:119;2838:1;2863:53;2908:7;2899:6;2888:9;2884:22;2863:53;:::i;:::-;2853:63;;2809:117;2965:2;2991:53;3036:7;3027:6;3016:9;3012:22;2991:53;:::i;:::-;2981:63;;2936:118;2587:474;;;;;:::o;3067:90::-;3101:7;3144:5;3137:13;3130:21;3119:32;;3067:90;;;:::o;3163:109::-;3244:21;3259:5;3244:21;:::i;:::-;3239:3;3232:34;3163:109;;:::o;3278:210::-;3365:4;3403:2;3392:9;3388:18;3380:26;;3416:65;3478:1;3467:9;3463:17;3454:6;3416:65;:::i;:::-;3278:210;;;;:::o;3494:329::-;3553:6;3602:2;3590:9;3581:7;3577:23;3573:32;3570:119;;;3608:79;;:::i;:::-;3570:119;3728:1;3753:53;3798:7;3789:6;3778:9;3774:22;3753:53;:::i;:::-;3743:63;;3699:117;3494:329;;;;:::o;3829:60::-;3857:3;3878:5;3871:12;;3829:60;;;:::o;3895:142::-;3945:9;3978:53;3996:34;4005:24;4023:5;4005:24;:::i;:::-;3996:34;:::i;:::-;3978:53;:::i;:::-;3965:66;;3895:142;;;:::o;4043:126::-;4093:9;4126:37;4157:5;4126:37;:::i;:::-;4113:50;;4043:126;;;:::o;4175:153::-;4252:9;4285:37;4316:5;4285:37;:::i;:::-;4272:50;;4175:153;;;:::o;4334:185::-;4448:64;4506:5;4448:64;:::i;:::-;4443:3;4436:77;4334:185;;:::o;4525:276::-;4645:4;4683:2;4672:9;4668:18;4660:26;;4696:98;4791:1;4780:9;4776:17;4767:6;4696:98;:::i;:::-;4525:276;;;;:::o;4807:118::-;4894:24;4912:5;4894:24;:::i;:::-;4889:3;4882:37;4807:118;;:::o;4931:222::-;5024:4;5062:2;5051:9;5047:18;5039:26;;5075:71;5143:1;5132:9;5128:17;5119:6;5075:71;:::i;:::-;4931:222;;;;:::o;5159:619::-;5236:6;5244;5252;5301:2;5289:9;5280:7;5276:23;5272:32;5269:119;;;5307:79;;:::i;:::-;5269:119;5427:1;5452:53;5497:7;5488:6;5477:9;5473:22;5452:53;:::i;:::-;5442:63;;5398:117;5554:2;5580:53;5625:7;5616:6;5605:9;5601:22;5580:53;:::i;:::-;5570:63;;5525:118;5682:2;5708:53;5753:7;5744:6;5733:9;5729:22;5708:53;:::i;:::-;5698:63;;5653:118;5159:619;;;;;:::o;5784:118::-;5871:24;5889:5;5871:24;:::i;:::-;5866:3;5859:37;5784:118;;:::o;5908:222::-;6001:4;6039:2;6028:9;6024:18;6016:26;;6052:71;6120:1;6109:9;6105:17;6096:6;6052:71;:::i;:::-;5908:222;;;;:::o;6136:86::-;6171:7;6211:4;6204:5;6200:16;6189:27;;6136:86;;;:::o;6228:112::-;6311:22;6327:5;6311:22;:::i;:::-;6306:3;6299:35;6228:112;;:::o;6346:214::-;6435:4;6473:2;6462:9;6458:18;6450:26;;6486:67;6550:1;6539:9;6535:17;6526:6;6486:67;:::i;:::-;6346:214;;;;:::o;6566:116::-;6636:21;6651:5;6636:21;:::i;:::-;6629:5;6626:32;6616:60;;6672:1;6669;6662:12;6616:60;6566:116;:::o;6688:133::-;6731:5;6769:6;6756:20;6747:29;;6785:30;6809:5;6785:30;:::i;:::-;6688:133;;;;:::o;6827:468::-;6892:6;6900;6949:2;6937:9;6928:7;6924:23;6920:32;6917:119;;;6955:79;;:::i;:::-;6917:119;7075:1;7100:53;7145:7;7136:6;7125:9;7121:22;7100:53;:::i;:::-;7090:63;;7046:117;7202:2;7228:50;7270:7;7261:6;7250:9;7246:22;7228:50;:::i;:::-;7218:60;;7173:115;6827:468;;;;;:::o;7301:474::-;7369:6;7377;7426:2;7414:9;7405:7;7401:23;7397:32;7394:119;;;7432:79;;:::i;:::-;7394:119;7552:1;7577:53;7622:7;7613:6;7602:9;7598:22;7577:53;:::i;:::-;7567:63;;7523:117;7679:2;7705:53;7750:7;7741:6;7730:9;7726:22;7705:53;:::i;:::-;7695:63;;7650:118;7301:474;;;;;:::o;7781:180::-;7829:77;7826:1;7819:88;7926:4;7923:1;7916:15;7950:4;7947:1;7940:15;7967:320;8011:6;8048:1;8042:4;8038:12;8028:22;;8095:1;8089:4;8085:12;8116:18;8106:81;;8172:4;8164:6;8160:17;8150:27;;8106:81;8234:2;8226:6;8223:14;8203:18;8200:38;8197:84;;;8253:18;;:::i;:::-;8197:84;8018:269;7967:320;;;:::o;8293:227::-;8433:34;8429:1;8421:6;8417:14;8410:58;8502:10;8497:2;8489:6;8485:15;8478:35;8293:227;:::o;8526:366::-;8668:3;8689:67;8753:2;8748:3;8689:67;:::i;:::-;8682:74;;8765:93;8854:3;8765:93;:::i;:::-;8883:2;8878:3;8874:12;8867:19;;8526:366;;;:::o;8898:419::-;9064:4;9102:2;9091:9;9087:18;9079:26;;9151:9;9145:4;9141:20;9137:1;9126:9;9122:17;9115:47;9179:131;9305:4;9179:131;:::i;:::-;9171:139;;8898:419;;;:::o;9323:180::-;9371:77;9368:1;9361:88;9468:4;9465:1;9458:15;9492:4;9489:1;9482:15;9509:305;9549:3;9568:20;9586:1;9568:20;:::i;:::-;9563:25;;9602:20;9620:1;9602:20;:::i;:::-;9597:25;;9756:1;9688:66;9684:74;9681:1;9678:81;9675:107;;;9762:18;;:::i;:::-;9675:107;9806:1;9803;9799:9;9792:16;;9509:305;;;;:::o;9820:182::-;9960:34;9956:1;9948:6;9944:14;9937:58;9820:182;:::o;10008:366::-;10150:3;10171:67;10235:2;10230:3;10171:67;:::i;:::-;10164:74;;10247:93;10336:3;10247:93;:::i;:::-;10365:2;10360:3;10356:12;10349:19;;10008:366;;;:::o;10380:419::-;10546:4;10584:2;10573:9;10569:18;10561:26;;10633:9;10627:4;10623:20;10619:1;10608:9;10604:17;10597:47;10661:131;10787:4;10661:131;:::i;:::-;10653:139;;10380:419;;;:::o;10805:224::-;10945:34;10941:1;10933:6;10929:14;10922:58;11014:7;11009:2;11001:6;10997:15;10990:32;10805:224;:::o;11035:366::-;11177:3;11198:67;11262:2;11257:3;11198:67;:::i;:::-;11191:74;;11274:93;11363:3;11274:93;:::i;:::-;11392:2;11387:3;11383:12;11376:19;;11035:366;;;:::o;11407:419::-;11573:4;11611:2;11600:9;11596:18;11588:26;;11660:9;11654:4;11650:20;11646:1;11635:9;11631:17;11624:47;11688:131;11814:4;11688:131;:::i;:::-;11680:139;;11407:419;;;:::o;11832:223::-;11972:34;11968:1;11960:6;11956:14;11949:58;12041:6;12036:2;12028:6;12024:15;12017:31;11832:223;:::o;12061:366::-;12203:3;12224:67;12288:2;12283:3;12224:67;:::i;:::-;12217:74;;12300:93;12389:3;12300:93;:::i;:::-;12418:2;12413:3;12409:12;12402:19;;12061:366;;;:::o;12433:419::-;12599:4;12637:2;12626:9;12622:18;12614:26;;12686:9;12680:4;12676:20;12672:1;12661:9;12657:17;12650:47;12714:131;12840:4;12714:131;:::i;:::-;12706:139;;12433:419;;;:::o;12858:221::-;12998:34;12994:1;12986:6;12982:14;12975:58;13067:4;13062:2;13054:6;13050:15;13043:29;12858:221;:::o;13085:366::-;13227:3;13248:67;13312:2;13307:3;13248:67;:::i;:::-;13241:74;;13324:93;13413:3;13324:93;:::i;:::-;13442:2;13437:3;13433:12;13426:19;;13085:366;;;:::o;13457:419::-;13623:4;13661:2;13650:9;13646:18;13638:26;;13710:9;13704:4;13700:20;13696:1;13685:9;13681:17;13674:47;13738:131;13864:4;13738:131;:::i;:::-;13730:139;;13457:419;;;:::o;13882:224::-;14022:34;14018:1;14010:6;14006:14;13999:58;14091:7;14086:2;14078:6;14074:15;14067:32;13882:224;:::o;14112:366::-;14254:3;14275:67;14339:2;14334:3;14275:67;:::i;:::-;14268:74;;14351:93;14440:3;14351:93;:::i;:::-;14469:2;14464:3;14460:12;14453:19;;14112:366;;;:::o;14484:419::-;14650:4;14688:2;14677:9;14673:18;14665:26;;14737:9;14731:4;14727:20;14723:1;14712:9;14708:17;14701:47;14765:131;14891:4;14765:131;:::i;:::-;14757:139;;14484:419;;;:::o;14909:222::-;15049:34;15045:1;15037:6;15033:14;15026:58;15118:5;15113:2;15105:6;15101:15;15094:30;14909:222;:::o;15137:366::-;15279:3;15300:67;15364:2;15359:3;15300:67;:::i;:::-;15293:74;;15376:93;15465:3;15376:93;:::i;:::-;15494:2;15489:3;15485:12;15478:19;;15137:366;;;:::o;15509:419::-;15675:4;15713:2;15702:9;15698:18;15690:26;;15762:9;15756:4;15752:20;15748:1;15737:9;15733:17;15726:47;15790:131;15916:4;15790:131;:::i;:::-;15782:139;;15509:419;;;:::o;15934:172::-;16074:24;16070:1;16062:6;16058:14;16051:48;15934:172;:::o;16112:366::-;16254:3;16275:67;16339:2;16334:3;16275:67;:::i;:::-;16268:74;;16351:93;16440:3;16351:93;:::i;:::-;16469:2;16464:3;16460:12;16453:19;;16112:366;;;:::o;16484:419::-;16650:4;16688:2;16677:9;16673:18;16665:26;;16737:9;16731:4;16727:20;16723:1;16712:9;16708:17;16701:47;16765:131;16891:4;16765:131;:::i;:::-;16757:139;;16484:419;;;:::o;16909:297::-;17049:34;17045:1;17037:6;17033:14;17026:58;17118:34;17113:2;17105:6;17101:15;17094:59;17187:11;17182:2;17174:6;17170:15;17163:36;16909:297;:::o;17212:366::-;17354:3;17375:67;17439:2;17434:3;17375:67;:::i;:::-;17368:74;;17451:93;17540:3;17451:93;:::i;:::-;17569:2;17564:3;17560:12;17553:19;;17212:366;;;:::o;17584:419::-;17750:4;17788:2;17777:9;17773:18;17765:26;;17837:9;17831:4;17827:20;17823:1;17812:9;17808:17;17801:47;17865:131;17991:4;17865:131;:::i;:::-;17857:139;;17584:419;;;:::o;18009:240::-;18149:34;18145:1;18137:6;18133:14;18126:58;18218:23;18213:2;18205:6;18201:15;18194:48;18009:240;:::o;18255:366::-;18397:3;18418:67;18482:2;18477:3;18418:67;:::i;:::-;18411:74;;18494:93;18583:3;18494:93;:::i;:::-;18612:2;18607:3;18603:12;18596:19;;18255:366;;;:::o;18627:419::-;18793:4;18831:2;18820:9;18816:18;18808:26;;18880:9;18874:4;18870:20;18866:1;18855:9;18851:17;18844:47;18908:131;19034:4;18908:131;:::i;:::-;18900:139;;18627:419;;;:::o;19052:169::-;19192:21;19188:1;19180:6;19176:14;19169:45;19052:169;:::o;19227:366::-;19369:3;19390:67;19454:2;19449:3;19390:67;:::i;:::-;19383:74;;19466:93;19555:3;19466:93;:::i;:::-;19584:2;19579:3;19575:12;19568:19;;19227:366;;;:::o;19599:419::-;19765:4;19803:2;19792:9;19788:18;19780:26;;19852:9;19846:4;19842:20;19838:1;19827:9;19823:17;19816:47;19880:131;20006:4;19880:131;:::i;:::-;19872:139;;19599:419;;;:::o;20024:241::-;20164:34;20160:1;20152:6;20148:14;20141:58;20233:24;20228:2;20220:6;20216:15;20209:49;20024:241;:::o;20271:366::-;20413:3;20434:67;20498:2;20493:3;20434:67;:::i;:::-;20427:74;;20510:93;20599:3;20510:93;:::i;:::-;20628:2;20623:3;20619:12;20612:19;;20271:366;;;:::o;20643:419::-;20809:4;20847:2;20836:9;20832:18;20824:26;;20896:9;20890:4;20886:20;20882:1;20871:9;20867:17;20860:47;20924:131;21050:4;20924:131;:::i;:::-;20916:139;;20643:419;;;:::o;21068:348::-;21108:7;21131:20;21149:1;21131:20;:::i;:::-;21126:25;;21165:20;21183:1;21165:20;:::i;:::-;21160:25;;21353:1;21285:66;21281:74;21278:1;21275:81;21270:1;21263:9;21256:17;21252:105;21249:131;;;21360:18;;:::i;:::-;21249:131;21408:1;21405;21401:9;21390:20;;21068:348;;;;:::o;21422:180::-;21470:77;21467:1;21460:88;21567:4;21564:1;21557:15;21591:4;21588:1;21581:15;21608:185;21648:1;21665:20;21683:1;21665:20;:::i;:::-;21660:25;;21699:20;21717:1;21699:20;:::i;:::-;21694:25;;21738:1;21728:35;;21743:18;;:::i;:::-;21728:35;21785:1;21782;21778:9;21773:14;;21608:185;;;;:::o;21799:191::-;21839:4;21859:20;21877:1;21859:20;:::i;:::-;21854:25;;21893:20;21911:1;21893:20;:::i;:::-;21888:25;;21932:1;21929;21926:8;21923:34;;;21937:18;;:::i;:::-;21923:34;21982:1;21979;21975:9;21967:17;;21799:191;;;;:::o;21996:225::-;22136:34;22132:1;22124:6;22120:14;22113:58;22205:8;22200:2;22192:6;22188:15;22181:33;21996:225;:::o;22227:366::-;22369:3;22390:67;22454:2;22449:3;22390:67;:::i;:::-;22383:74;;22466:93;22555:3;22466:93;:::i;:::-;22584:2;22579:3;22575:12;22568:19;;22227:366;;;:::o;22599:419::-;22765:4;22803:2;22792:9;22788:18;22780:26;;22852:9;22846:4;22842:20;22838:1;22827:9;22823:17;22816:47;22880:131;23006:4;22880:131;:::i;:::-;22872:139;;22599:419;;;:::o;23024:442::-;23173:4;23211:2;23200:9;23196:18;23188:26;;23224:71;23292:1;23281:9;23277:17;23268:6;23224:71;:::i;:::-;23305:72;23373:2;23362:9;23358:18;23349:6;23305:72;:::i;:::-;23387;23455:2;23444:9;23440:18;23431:6;23387:72;:::i;:::-;23024:442;;;;;;:::o;23472:180::-;23520:77;23517:1;23510:88;23617:4;23614:1;23607:15;23641:4;23638:1;23631:15;23658:180;23706:77;23703:1;23696:88;23803:4;23800:1;23793:15;23827:4;23824:1;23817:15;23844:143;23901:5;23932:6;23926:13;23917:22;;23948:33;23975:5;23948:33;:::i;:::-;23844:143;;;;:::o;23993:351::-;24063:6;24112:2;24100:9;24091:7;24087:23;24083:32;24080:119;;;24118:79;;:::i;:::-;24080:119;24238:1;24263:64;24319:7;24310:6;24299:9;24295:22;24263:64;:::i;:::-;24253:74;;24209:128;23993:351;;;;:::o;24350:85::-;24395:7;24424:5;24413:16;;24350:85;;;:::o;24441:158::-;24499:9;24532:61;24550:42;24559:32;24585:5;24559:32;:::i;:::-;24550:42;:::i;:::-;24532:61;:::i;:::-;24519:74;;24441:158;;;:::o;24605:147::-;24700:45;24739:5;24700:45;:::i;:::-;24695:3;24688:58;24605:147;;:::o;24758:114::-;24825:6;24859:5;24853:12;24843:22;;24758:114;;;:::o;24878:184::-;24977:11;25011:6;25006:3;24999:19;25051:4;25046:3;25042:14;25027:29;;24878:184;;;;:::o;25068:132::-;25135:4;25158:3;25150:11;;25188:4;25183:3;25179:14;25171:22;;25068:132;;;:::o;25206:108::-;25283:24;25301:5;25283:24;:::i;:::-;25278:3;25271:37;25206:108;;:::o;25320:179::-;25389:10;25410:46;25452:3;25444:6;25410:46;:::i;:::-;25488:4;25483:3;25479:14;25465:28;;25320:179;;;;:::o;25505:113::-;25575:4;25607;25602:3;25598:14;25590:22;;25505:113;;;:::o;25654:732::-;25773:3;25802:54;25850:5;25802:54;:::i;:::-;25872:86;25951:6;25946:3;25872:86;:::i;:::-;25865:93;;25982:56;26032:5;25982:56;:::i;:::-;26061:7;26092:1;26077:284;26102:6;26099:1;26096:13;26077:284;;;26178:6;26172:13;26205:63;26264:3;26249:13;26205:63;:::i;:::-;26198:70;;26291:60;26344:6;26291:60;:::i;:::-;26281:70;;26137:224;26124:1;26121;26117:9;26112:14;;26077:284;;;26081:14;26377:3;26370:10;;25778:608;;;25654:732;;;;:::o;26392:831::-;26655:4;26693:3;26682:9;26678:19;26670:27;;26707:71;26775:1;26764:9;26760:17;26751:6;26707:71;:::i;:::-;26788:80;26864:2;26853:9;26849:18;26840:6;26788:80;:::i;:::-;26915:9;26909:4;26905:20;26900:2;26889:9;26885:18;26878:48;26943:108;27046:4;27037:6;26943:108;:::i;:::-;26935:116;;27061:72;27129:2;27118:9;27114:18;27105:6;27061:72;:::i;:::-;27143:73;27211:3;27200:9;27196:19;27187:6;27143:73;:::i;:::-;26392:831;;;;;;;;:::o;27229:807::-;27478:4;27516:3;27505:9;27501:19;27493:27;;27530:71;27598:1;27587:9;27583:17;27574:6;27530:71;:::i;:::-;27611:72;27679:2;27668:9;27664:18;27655:6;27611:72;:::i;:::-;27693:80;27769:2;27758:9;27754:18;27745:6;27693:80;:::i;:::-;27783;27859:2;27848:9;27844:18;27835:6;27783:80;:::i;:::-;27873:73;27941:3;27930:9;27926:19;27917:6;27873:73;:::i;:::-;27956;28024:3;28013:9;28009:19;28000:6;27956:73;:::i;:::-;27229:807;;;;;;;;;:::o;28042:143::-;28099:5;28130:6;28124:13;28115:22;;28146:33;28173:5;28146:33;:::i;:::-;28042:143;;;;:::o;28191:663::-;28279:6;28287;28295;28344:2;28332:9;28323:7;28319:23;28315:32;28312:119;;;28350:79;;:::i;:::-;28312:119;28470:1;28495:64;28551:7;28542:6;28531:9;28527:22;28495:64;:::i;:::-;28485:74;;28441:128;28608:2;28634:64;28690:7;28681:6;28670:9;28666:22;28634:64;:::i;:::-;28624:74;;28579:129;28747:2;28773:64;28829:7;28820:6;28809:9;28805:22;28773:64;:::i;:::-;28763:74;;28718:129;28191:663;;;;;:::o
Swarm Source
ipfs://24971ae53f0f6b1053212636dc5101f4c74a229f1334e06a148668bdd4a885ed
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.