Feature Tip: Add private address tag to any address under My Name Tag !
ERC-20
Overview
Max Total Supply
100,000,000 RESET
Holders
29
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
1,180,370 RESETValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
RESET
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-05-02 */ /** *Submitted for verification at Etherscan.io on 2022-04-24 */ /** *Submitted for verification at Etherscan.io on 2022-04-14 */ // SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (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; } } // OpenZeppelin Contracts v4.4.1 (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); } } // OpenZeppelin Contracts (last updated v4.5.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 `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `from` to `to` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 amount ) external returns (bool); /** * @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); } // OpenZeppelin Contracts v4.4.1 (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); } // OpenZeppelin Contracts (last updated v4.5.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 private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * The default value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless this function is * overridden; * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `to` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address to, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _transfer(owner, to, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on * `transferFrom`. This is semantically equivalent to an infinite approval. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _approve(owner, spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * NOTE: Does not update the allowance if the current allowance * is the maximum `uint256`. * * Requirements: * * - `from` and `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. * - the caller must have allowance for ``from``'s tokens of at least * `amount`. */ function transferFrom( address from, address to, uint256 amount ) public virtual override returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, amount); _transfer(from, to, amount); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { address owner = _msgSender(); _approve(owner, spender, _allowances[owner][spender] + addedValue); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { address owner = _msgSender(); uint256 currentAllowance = _allowances[owner][spender]; require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(owner, 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: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. */ function _transfer( address from, address to, uint256 amount ) internal virtual { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(from, to, amount); uint256 fromBalance = _balances[from]; require(fromBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[from] = fromBalance - amount; } _balances[to] += amount; emit Transfer(from, to, amount); _afterTokenTransfer(from, to, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; _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 Spend `amount` form the allowance of `owner` toward `spender`. * * Does not update the allowance amount in case of infinite allowance. * Revert if not enough allowance is available. * * Might emit an {Approval} event. */ function _spendAllowance( address owner, address spender, uint256 amount ) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { require(currentAllowance >= amount, "ERC20: insufficient allowance"); unchecked { _approve(owner, spender, currentAllowance - amount); } } } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 amount ) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * has been transferred to `to`. * - when `from` is zero, `amount` tokens have been minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens have been burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 amount ) internal virtual {} } pragma solidity ^0.8.7; contract RESET is ERC20, Ownable { /* Token Tax */ uint32 public _taxPercision = 100000; address[] public _taxRecipients; uint16 public _taxTotal; bool public _taxActive; mapping(address => uint16) public _taxRecipientAmounts; mapping(address => bool) private _isTaxRecipient; mapping(address => bool) public _whitelisted; /* Events */ event UpdateTaxPercentage(address indexed wallet, uint16 _newTaxAmount); event AddTaxRecipient(address indexed wallet, uint16 _taxAmount); event RemoveFromWhitelist(address indexed wallet); event RemoveTaxRecipient(address indexed wallet); event AddToWhitelist(address indexed wallet); event ToggleTax(bool _active); uint256 private _totalSupply; /** * @dev Constructor. */ constructor() ERC20('MetaReset', 'RESET') payable { _totalSupply = 100000000 * (10**18); _mint(msg.sender, _totalSupply); } /** * @notice overrides ERC20 transferFrom function to introduce tax functionality * @param from address amount is coming from * @param to address amount is going to * @param amount amount being sent */ function transferFrom(address from, address to, uint256 amount) public virtual override returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, amount); require(balanceOf(from) >= amount, "ERC20: transfer amount exceeds balance"); if(_taxActive && !_whitelisted[from] && !_whitelisted[to]) { uint256 tax = amount *_taxTotal / _taxPercision; amount = amount - tax; _transfer(from, address(this), tax); } _transfer(from, to, amount); return true; } /** * @notice : overrides ERC20 transfer function to introduce tax functionality * @param to address amount is going to * @param amount amount being sent */ function transfer(address to, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); require(balanceOf(owner) >= amount, "ERC20: transfer amount exceeds balance"); if(_taxActive && !_whitelisted[owner] && !_whitelisted[to]) { uint256 tax = amount*_taxTotal/_taxPercision; amount = amount - tax; _transfer(owner, address(this), tax); } _transfer(owner, to, amount); return true; } /** * @dev Burns a specific amount of tokens. * @param value The amount of lowest token units to be burned. */ function burn(uint256 value) public { _burn(msg.sender, value); } /* ADMIN Functions */ /** * @notice : toggles the tax on or off */ function toggleTax() external onlyOwner { _taxActive = !_taxActive; emit ToggleTax(_taxActive); } /** * @notice : adds address with tax amount to taxable addresses list * @param wallet address to add * @param _tax tax amount this address receives */ function addTaxRecipient(address wallet, uint16 _tax) external onlyOwner { require(_taxRecipients.length < 100, "Reached maximum number of tax addresses"); require(wallet != address(0), "Cannot add 0 address"); require(!_isTaxRecipient[wallet], "Recipient already added"); require(_tax > 0 && _tax + _taxTotal <= _taxPercision/10, "Total tax amount must be between 0 and 10%"); _isTaxRecipient[wallet] = true; _taxRecipients.push(wallet); _taxRecipientAmounts[wallet] = _tax; _taxTotal = _taxTotal + _tax; emit AddTaxRecipient(wallet, _tax); } /** * @notice : updates address tax amount * @param wallet address to update * @param newTax new tax amount */ function updateTaxPercentage(address wallet, uint16 newTax) external onlyOwner { require(wallet != address(0), "Cannot add 0 address"); require(_isTaxRecipient[wallet], "Not a tax address"); uint16 currentTax = _taxRecipientAmounts[wallet]; require(currentTax != newTax, "Tax already this amount for this address"); if(currentTax < newTax) { uint16 diff = newTax - currentTax; require(_taxTotal + diff <= 10000, "Tax amount too high for current tax rate"); _taxTotal = _taxTotal + diff; } else { uint16 diff = currentTax - newTax; _taxTotal = _taxTotal - diff; } _taxRecipientAmounts[wallet] = newTax; emit UpdateTaxPercentage(wallet, newTax); } /** * @notice : remove address from taxed list * @param wallet address to remove */ function removeTaxRecipient(address wallet) external onlyOwner { require(wallet != address(0), "Cannot add 0 address"); require(_isTaxRecipient[wallet], "Recipient has not been added"); uint16 _tax = _taxRecipientAmounts[wallet]; for(uint8 i = 0; i < _taxRecipients.length; i++) { if(_taxRecipients[i] == wallet) { _taxTotal = _taxTotal - _tax; _taxRecipientAmounts[wallet] = 0; _taxRecipients[i] = _taxRecipients[_taxRecipients.length - 1]; _isTaxRecipient[wallet] = false; _taxRecipients.pop(); emit RemoveTaxRecipient(wallet); break; } } } /** * @notice : add address to tax whitelist * @param wallet address to add to whitelist */ function addToWhitelist(address wallet) external onlyOwner { require(wallet != address(0), "Cant use 0 address"); require(!_whitelisted[wallet], "Address already added"); _whitelisted[wallet] = true; emit AddToWhitelist(wallet); } /** * @notice : add address to whitelist (non taxed) * @param wallet address to remove from whitelist */ function removeFromWhitelist(address wallet) external onlyOwner { require(wallet != address(0), "Cant use 0 address"); require(_whitelisted[wallet], "Address not added"); _whitelisted[wallet] = false; emit RemoveFromWhitelist(wallet); } /** * @notice : resets tax settings to initial state */ function taxReset() external onlyOwner { _taxActive = false; _taxTotal = 0; for(uint8 i = 0; i < _taxRecipients.length; i++) { _taxRecipientAmounts[_taxRecipients[i]] = 0; _isTaxRecipient[_taxRecipients[i]] = false; } delete _taxRecipients; } /** * @notice : withdraws taxable amount to tax recipients */ function distributeTaxes() external onlyOwner { require(balanceOf(address(this)) > 0, "Nothing to withdraw"); uint256 taxableAmount = balanceOf(address(this)); for(uint8 i = 0; i < _taxRecipients.length; i++) { address taxAddress = _taxRecipients[i]; if(i == _taxRecipients.length - 1) { _transfer(address(this), taxAddress, balanceOf(address(this))); } else { uint256 amount = taxableAmount * _taxRecipientAmounts[taxAddress]/_taxTotal; _transfer(address(this), taxAddress, amount); } } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"payable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"wallet","type":"address"},{"indexed":false,"internalType":"uint16","name":"_taxAmount","type":"uint16"}],"name":"AddTaxRecipient","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"wallet","type":"address"}],"name":"AddToWhitelist","type":"event"},{"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":"wallet","type":"address"}],"name":"RemoveFromWhitelist","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"wallet","type":"address"}],"name":"RemoveTaxRecipient","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"_active","type":"bool"}],"name":"ToggleTax","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"wallet","type":"address"},{"indexed":false,"internalType":"uint16","name":"_newTaxAmount","type":"uint16"}],"name":"UpdateTaxPercentage","type":"event"},{"inputs":[],"name":"_taxActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_taxPercision","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_taxRecipientAmounts","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"_taxRecipients","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_taxTotal","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_whitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"wallet","type":"address"},{"internalType":"uint16","name":"_tax","type":"uint16"}],"name":"addTaxRecipient","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"wallet","type":"address"}],"name":"addToWhitelist","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":[{"internalType":"uint256","name":"value","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"distributeTaxes","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"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":[{"internalType":"address","name":"wallet","type":"address"}],"name":"removeFromWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"wallet","type":"address"}],"name":"removeTaxRecipient","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"taxReset","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"toggleTax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"wallet","type":"address"},{"internalType":"uint16","name":"newTax","type":"uint16"}],"name":"updateTaxPercentage","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
6080604052620186a0600560146101000a81548163ffffffff021916908363ffffffff1602179055506040518060400160405280600981526020017f4d657461526573657400000000000000000000000000000000000000000000008152506040518060400160405280600581526020017f52455345540000000000000000000000000000000000000000000000000000008152508160039080519060200190620000ac92919062000365565b508060049080519060200190620000c592919062000365565b505050620000e8620000dc6200011460201b60201c565b6200011c60201b60201c565b6a52b7d2dcc80cd2e4000000600b819055506200010e33600b54620001e260201b60201c565b620005c1565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000255576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200024c906200044d565b60405180910390fd5b62000269600083836200035b60201b60201c565b80600260008282546200027d91906200049d565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254620002d491906200049d565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200033b91906200046f565b60405180910390a362000357600083836200036060201b60201c565b5050565b505050565b505050565b828054620003739062000504565b90600052602060002090601f016020900481019282620003975760008555620003e3565b82601f10620003b257805160ff1916838001178555620003e3565b82800160010185558215620003e3579182015b82811115620003e2578251825591602001919060010190620003c5565b5b509050620003f29190620003f6565b5090565b5b8082111562000411576000816000905550600101620003f7565b5090565b600062000424601f836200048c565b9150620004318262000598565b602082019050919050565b6200044781620004fa565b82525050565b60006020820190508181036000830152620004688162000415565b9050919050565b60006020820190506200048660008301846200043c565b92915050565b600082825260208201905092915050565b6000620004aa82620004fa565b9150620004b783620004fa565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115620004ef57620004ee6200053a565b5b828201905092915050565b6000819050919050565b600060028204905060018216806200051d57607f821691505b6020821081141562000534576200053362000569565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b613f3e80620005d16000396000f3fe608060405234801561001057600080fd5b50600436106101cf5760003560e01c8063619f28ed1161010457806395d89b41116100a2578063dd62ed3e11610071578063dd62ed3e1461050a578063e43252d71461053a578063f2fde38b14610556578063fb369eb014610572576101cf565b806395d89b411461046e578063a457c2d71461048c578063a9059cbb146104bc578063bb47cc0c146104ec576101cf565b806371fc737c116100de57806371fc737c146104205780638ab1d6811461042a5780638da5cb5b146104465780639096565214610464576101cf565b8063619f28ed146103ca57806370a08231146103e6578063715018a614610416576101cf565b806323b872dd116101715780633a5fcb631161014b5780633a5fcb631461034457806342966c68146103745780634be317781461039057806354f12265146103ae576101cf565b806323b872dd146102c6578063313ce567146102f65780633950935114610314576101cf565b806310bf6029116101ad57806310bf60291461025257806310f6da921461025c57806318160ddd146102785780632354ee0314610296576101cf565b806301c4b316146101d457806306fdde0314610204578063095ea7b314610222575b600080fd5b6101ee60048036038101906101e99190612c8c565b610590565b6040516101fb91906131cc565b60405180910390f35b61020c6105b0565b60405161021991906131e7565b60405180910390f35b61023c60048036038101906102379190612d8c565b610642565b60405161024991906131cc565b60405180910390f35b61025a610665565b005b61027660048036038101906102719190612c8c565b610753565b005b610280610be6565b60405161028d9190613504565b60405180910390f35b6102b060048036038101906102ab9190612dcc565b610bf0565b6040516102bd91906131b1565b60405180910390f35b6102e060048036038101906102db9190612cf9565b610c2f565b6040516102ed91906131cc565b60405180910390f35b6102fe610dcc565b60405161030b919061353a565b60405180910390f35b61032e60048036038101906103299190612d8c565b610dd5565b60405161033b91906131cc565b60405180910390f35b61035e60048036038101906103599190612c8c565b610e7f565b60405161036b91906134e9565b60405180910390f35b61038e60048036038101906103899190612dcc565b610ea0565b005b610398610ead565b6040516103a5919061351f565b60405180910390f35b6103c860048036038101906103c39190612d4c565b610ec3565b005b6103e460048036038101906103df9190612d4c565b611291565b005b61040060048036038101906103fb9190612c8c565b611687565b60405161040d9190613504565b60405180910390f35b61041e6116cf565b005b610428611757565b005b610444600480360381019061043f9190612c8c565b61195d565b005b61044e611b73565b60405161045b91906131b1565b60405180910390f35b61046c611b9d565b005b610476611dbe565b60405161048391906131e7565b60405180910390f35b6104a660048036038101906104a19190612d8c565b611e50565b6040516104b391906131cc565b60405180910390f35b6104d660048036038101906104d19190612d8c565b611f3a565b6040516104e391906131cc565b60405180910390f35b6104f46120cb565b60405161050191906134e9565b60405180910390f35b610524600480360381019061051f9190612cb9565b6120df565b6040516105319190613504565b60405180910390f35b610554600480360381019061054f9190612c8c565b612166565b005b610570600480360381019061056b9190612c8c565b61237d565b005b61057a612475565b60405161058791906131cc565b60405180910390f35b600a6020528060005260406000206000915054906101000a900460ff1681565b6060600380546105bf906137c9565b80601f01602080910402602001604051908101604052809291908181526020018280546105eb906137c9565b80156106385780601f1061060d57610100808354040283529160200191610638565b820191906000526020600020905b81548152906001019060200180831161061b57829003601f168201915b5050505050905090565b60008061064d612488565b905061065a818585612490565b600191505092915050565b61066d612488565b73ffffffffffffffffffffffffffffffffffffffff1661068b611b73565b73ffffffffffffffffffffffffffffffffffffffff16146106e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106d890613409565b60405180910390fd5b600760029054906101000a900460ff1615600760026101000a81548160ff0219169083151502179055507fdda4866fd658821eea607c5d6addd0c4a0cc347eb4cea313399e516e66019864600760029054906101000a900460ff1660405161074991906131cc565b60405180910390a1565b61075b612488565b73ffffffffffffffffffffffffffffffffffffffff16610779611b73565b73ffffffffffffffffffffffffffffffffffffffff16146107cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107c690613409565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561083f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161083690613349565b60405180910390fd5b600960008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166108cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108c2906133c9565b60405180910390fd5b6000600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900461ffff16905060005b6006805490508160ff161015610be1578273ffffffffffffffffffffffffffffffffffffffff1660068260ff168154811061095e5761095d6138e1565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415610bce5781600760009054906101000a900461ffff166109c191906136bb565b600760006101000a81548161ffff021916908361ffff1602179055506000600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548161ffff021916908361ffff16021790555060066001600680549050610a4c91906136ef565b81548110610a5d57610a5c6138e1565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660068260ff1681548110610a9f57610a9e6138e1565b5b9060005260206000200160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000600960008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506006805480610b5157610b506138b2565b5b6001900381819060005260206000200160006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905590558273ffffffffffffffffffffffffffffffffffffffff167f4fd6fed175ab0b49d36124b1a61f8b0d9d15ea6289719749317cbb005ccb13f360405160405180910390a2610be1565b8080610bd9906137fb565b915050610920565b505050565b6000600254905090565b60068181548110610c0057600080fd5b906000526020600020016000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600080610c3a612488565b9050610c4785828561265b565b82610c5186611687565b1015610c92576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8990613309565b60405180910390fd5b600760029054906101000a900460ff168015610cf85750600a60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015610d4e5750600a60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15610db5576000600560149054906101000a900463ffffffff1663ffffffff16600760009054906101000a900461ffff1661ffff1685610d8e9190613661565b610d9891906135ff565b90508084610da691906136ef565b9350610db38630836126e7565b505b610dc08585856126e7565b60019150509392505050565b60006012905090565b600080610de0612488565b9050610e74818585600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610e6f91906135a9565b612490565b600191505092915050565b60086020528060005260406000206000915054906101000a900461ffff1681565b610eaa3382612968565b50565b600560149054906101000a900463ffffffff1681565b610ecb612488565b73ffffffffffffffffffffffffffffffffffffffff16610ee9611b73565b73ffffffffffffffffffffffffffffffffffffffff1614610f3f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3690613409565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610faf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fa690613349565b60405180910390fd5b600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661103b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611032906133a9565b60405180910390fd5b6000600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900461ffff1690508161ffff168161ffff1614156110d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110cf90613429565b60405180910390fd5b8161ffff168161ffff16101561119a57600081836110f691906136bb565b905061271081600760009054906101000a900461ffff166111179190613571565b61ffff16111561115c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611153906132c9565b60405180910390fd5b80600760009054906101000a900461ffff166111789190613571565b600760006101000a81548161ffff021916908361ffff160217905550506111e4565b600082826111a891906136bb565b905080600760009054906101000a900461ffff166111c691906136bb565b600760006101000a81548161ffff021916908361ffff160217905550505b81600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548161ffff021916908361ffff1602179055508273ffffffffffffffffffffffffffffffffffffffff167fee47ac5c77f2952467745dc55e7c0f653f25c603443f24d129d62712b57eeb5d8360405161128491906134e9565b60405180910390a2505050565b611299612488565b73ffffffffffffffffffffffffffffffffffffffff166112b7611b73565b73ffffffffffffffffffffffffffffffffffffffff161461130d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130490613409565b60405180910390fd5b606460068054905010611355576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134c90613269565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156113c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113bc90613349565b60405180910390fd5b600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611452576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161144990613329565b60405180910390fd5b60008161ffff161180156114a95750600a600560149054906101000a900463ffffffff166114809190613630565b63ffffffff16600760009054906101000a900461ffff16826114a29190613571565b61ffff1611155b6114e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114df90613389565b60405180910390fd5b6001600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506006829080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548161ffff021916908361ffff16021790555080600760009054906101000a900461ffff166116199190613571565b600760006101000a81548161ffff021916908361ffff1602179055508173ffffffffffffffffffffffffffffffffffffffff167ff0379f3a0fa1271904bae35478eacd47ea582a7e6316fb3d935a46c931f61c258260405161167b91906134e9565b60405180910390a25050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6116d7612488565b73ffffffffffffffffffffffffffffffffffffffff166116f5611b73565b73ffffffffffffffffffffffffffffffffffffffff161461174b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161174290613409565b60405180910390fd5b6117556000612b3f565b565b61175f612488565b73ffffffffffffffffffffffffffffffffffffffff1661177d611b73565b73ffffffffffffffffffffffffffffffffffffffff16146117d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117ca90613409565b60405180910390fd5b60006117de30611687565b1161181e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181590613249565b60405180910390fd5b600061182930611687565b905060005b6006805490508160ff16101561195957600060068260ff1681548110611857576118566138e1565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600160068054905061189691906136ef565b8260ff1614156118b8576118b330826118ae30611687565b6126e7565b611945565b6000600760009054906101000a900461ffff1661ffff16600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900461ffff1661ffff168561192c9190613661565b61193691906135ff565b90506119433083836126e7565b505b508080611951906137fb565b91505061182e565b5050565b611965612488565b73ffffffffffffffffffffffffffffffffffffffff16611983611b73565b73ffffffffffffffffffffffffffffffffffffffff16146119d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119d090613409565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611a49576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a40906134c9565b60405180910390fd5b600a60008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16611ad5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611acc906133e9565b60405180910390fd5b6000600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508073ffffffffffffffffffffffffffffffffffffffff167f1f756c8b089af6b33ee121fee8badac2553a2fa89c0575ea91ff8792617746c260405160405180910390a250565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611ba5612488565b73ffffffffffffffffffffffffffffffffffffffff16611bc3611b73565b73ffffffffffffffffffffffffffffffffffffffff1614611c19576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c1090613409565b60405180910390fd5b6000600760026101000a81548160ff0219169083151502179055506000600760006101000a81548161ffff021916908361ffff16021790555060005b6006805490508160ff161015611dad5760006008600060068460ff1681548110611c8257611c816138e1565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548161ffff021916908361ffff16021790555060006009600060068460ff1681548110611d1e57611d1d6138e1565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080611da5906137fb565b915050611c55565b5060066000611dbc9190612c0f565b565b606060048054611dcd906137c9565b80601f0160208091040260200160405190810160405280929190818152602001828054611df9906137c9565b8015611e465780601f10611e1b57610100808354040283529160200191611e46565b820191906000526020600020905b815481529060010190602001808311611e2957829003601f168201915b5050505050905090565b600080611e5b612488565b90506000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905083811015611f21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f18906134a9565b60405180910390fd5b611f2e8286868403612490565b60019250505092915050565b600080611f45612488565b905082611f5182611687565b1015611f92576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f8990613309565b60405180910390fd5b600760029054906101000a900460ff168015611ff85750600a60008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b801561204e5750600a60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156120b5576000600560149054906101000a900463ffffffff1663ffffffff16600760009054906101000a900461ffff1661ffff168561208e9190613661565b61209891906135ff565b905080846120a691906136ef565b93506120b38230836126e7565b505b6120c08185856126e7565b600191505092915050565b600760009054906101000a900461ffff1681565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b61216e612488565b73ffffffffffffffffffffffffffffffffffffffff1661218c611b73565b73ffffffffffffffffffffffffffffffffffffffff16146121e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121d990613409565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612252576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612249906134c9565b60405180910390fd5b600a60008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156122df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122d690613369565b60405180910390fd5b6001600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508073ffffffffffffffffffffffffffffffffffffffff167f75b2135d1c8c3519f3c09c43fe6527089ef09f40c7981ebf0ed46e79e79032c760405160405180910390a250565b612385612488565b73ffffffffffffffffffffffffffffffffffffffff166123a3611b73565b73ffffffffffffffffffffffffffffffffffffffff16146123f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123f090613409565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612469576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161246090613289565b60405180910390fd5b61247281612b3f565b50565b600760029054906101000a900460ff1681565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612500576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124f790613489565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612570576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612567906132a9565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161264e9190613504565b60405180910390a3505050565b600061266784846120df565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146126e157818110156126d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126ca906132e9565b60405180910390fd5b6126e08484848403612490565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612757576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161274e90613469565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156127c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127be90613209565b60405180910390fd5b6127d2838383612c05565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015612858576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161284f90613309565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546128eb91906135a9565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161294f9190613504565b60405180910390a3612962848484612c0a565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156129d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129cf90613449565b60405180910390fd5b6129e482600083612c05565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015612a6a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a6190613229565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160026000828254612ac191906136ef565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051612b269190613504565b60405180910390a3612b3a83600084612c0a565b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b505050565b5080546000825590600052602060002090810190612c2d9190612c30565b50565b5b80821115612c49576000816000905550600101612c31565b5090565b600081359050612c5c81613ec3565b92915050565b600081359050612c7181613eda565b92915050565b600081359050612c8681613ef1565b92915050565b600060208284031215612ca257612ca1613910565b5b6000612cb084828501612c4d565b91505092915050565b60008060408385031215612cd057612ccf613910565b5b6000612cde85828601612c4d565b9250506020612cef85828601612c4d565b9150509250929050565b600080600060608486031215612d1257612d11613910565b5b6000612d2086828701612c4d565b9350506020612d3186828701612c4d565b9250506040612d4286828701612c77565b9150509250925092565b60008060408385031215612d6357612d62613910565b5b6000612d7185828601612c4d565b9250506020612d8285828601612c62565b9150509250929050565b60008060408385031215612da357612da2613910565b5b6000612db185828601612c4d565b9250506020612dc285828601612c77565b9150509250929050565b600060208284031215612de257612de1613910565b5b6000612df084828501612c77565b91505092915050565b612e0281613723565b82525050565b612e1181613735565b82525050565b6000612e2282613555565b612e2c8185613560565b9350612e3c818560208601613796565b612e4581613915565b840191505092915050565b6000612e5d602383613560565b9150612e6882613926565b604082019050919050565b6000612e80602283613560565b9150612e8b82613975565b604082019050919050565b6000612ea3601383613560565b9150612eae826139c4565b602082019050919050565b6000612ec6602783613560565b9150612ed1826139ed565b604082019050919050565b6000612ee9602683613560565b9150612ef482613a3c565b604082019050919050565b6000612f0c602283613560565b9150612f1782613a8b565b604082019050919050565b6000612f2f602883613560565b9150612f3a82613ada565b604082019050919050565b6000612f52601d83613560565b9150612f5d82613b29565b602082019050919050565b6000612f75602683613560565b9150612f8082613b52565b604082019050919050565b6000612f98601783613560565b9150612fa382613ba1565b602082019050919050565b6000612fbb601483613560565b9150612fc682613bca565b602082019050919050565b6000612fde601583613560565b9150612fe982613bf3565b602082019050919050565b6000613001602a83613560565b915061300c82613c1c565b604082019050919050565b6000613024601183613560565b915061302f82613c6b565b602082019050919050565b6000613047601c83613560565b915061305282613c94565b602082019050919050565b600061306a601183613560565b915061307582613cbd565b602082019050919050565b600061308d602083613560565b915061309882613ce6565b602082019050919050565b60006130b0602883613560565b91506130bb82613d0f565b604082019050919050565b60006130d3602183613560565b91506130de82613d5e565b604082019050919050565b60006130f6602583613560565b915061310182613dad565b604082019050919050565b6000613119602483613560565b915061312482613dfc565b604082019050919050565b600061313c602583613560565b915061314782613e4b565b604082019050919050565b600061315f601283613560565b915061316a82613e9a565b602082019050919050565b61317e81613741565b82525050565b61318d8161376f565b82525050565b61319c81613779565b82525050565b6131ab81613789565b82525050565b60006020820190506131c66000830184612df9565b92915050565b60006020820190506131e16000830184612e08565b92915050565b600060208201905081810360008301526132018184612e17565b905092915050565b6000602082019050818103600083015261322281612e50565b9050919050565b6000602082019050818103600083015261324281612e73565b9050919050565b6000602082019050818103600083015261326281612e96565b9050919050565b6000602082019050818103600083015261328281612eb9565b9050919050565b600060208201905081810360008301526132a281612edc565b9050919050565b600060208201905081810360008301526132c281612eff565b9050919050565b600060208201905081810360008301526132e281612f22565b9050919050565b6000602082019050818103600083015261330281612f45565b9050919050565b6000602082019050818103600083015261332281612f68565b9050919050565b6000602082019050818103600083015261334281612f8b565b9050919050565b6000602082019050818103600083015261336281612fae565b9050919050565b6000602082019050818103600083015261338281612fd1565b9050919050565b600060208201905081810360008301526133a281612ff4565b9050919050565b600060208201905081810360008301526133c281613017565b9050919050565b600060208201905081810360008301526133e28161303a565b9050919050565b600060208201905081810360008301526134028161305d565b9050919050565b6000602082019050818103600083015261342281613080565b9050919050565b60006020820190508181036000830152613442816130a3565b9050919050565b60006020820190508181036000830152613462816130c6565b9050919050565b60006020820190508181036000830152613482816130e9565b9050919050565b600060208201905081810360008301526134a28161310c565b9050919050565b600060208201905081810360008301526134c28161312f565b9050919050565b600060208201905081810360008301526134e281613152565b9050919050565b60006020820190506134fe6000830184613175565b92915050565b60006020820190506135196000830184613184565b92915050565b60006020820190506135346000830184613193565b92915050565b600060208201905061354f60008301846131a2565b92915050565b600081519050919050565b600082825260208201905092915050565b600061357c82613741565b915061358783613741565b92508261ffff0382111561359e5761359d613825565b5b828201905092915050565b60006135b48261376f565b91506135bf8361376f565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156135f4576135f3613825565b5b828201905092915050565b600061360a8261376f565b91506136158361376f565b92508261362557613624613854565b5b828204905092915050565b600061363b82613779565b915061364683613779565b92508261365657613655613854565b5b828204905092915050565b600061366c8261376f565b91506136778361376f565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156136b0576136af613825565b5b828202905092915050565b60006136c682613741565b91506136d183613741565b9250828210156136e4576136e3613825565b5b828203905092915050565b60006136fa8261376f565b91506137058361376f565b92508282101561371857613717613825565b5b828203905092915050565b600061372e8261374f565b9050919050565b60008115159050919050565b600061ffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600063ffffffff82169050919050565b600060ff82169050919050565b60005b838110156137b4578082015181840152602081019050613799565b838111156137c3576000848401525b50505050565b600060028204905060018216806137e157607f821691505b602082108114156137f5576137f4613883565b5b50919050565b600061380682613789565b915060ff82141561381a57613819613825565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600080fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b7f4e6f7468696e6720746f20776974686472617700000000000000000000000000600082015250565b7f52656163686564206d6178696d756d206e756d626572206f662074617820616460008201527f6472657373657300000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f54617820616d6f756e7420746f6f206869676820666f722063757272656e742060008201527f7461782072617465000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f526563697069656e7420616c7265616479206164646564000000000000000000600082015250565b7f43616e6e6f742061646420302061646472657373000000000000000000000000600082015250565b7f4164647265737320616c72656164792061646465640000000000000000000000600082015250565b7f546f74616c2074617820616d6f756e74206d757374206265206265747765656e60008201527f203020616e642031302500000000000000000000000000000000000000000000602082015250565b7f4e6f742061207461782061646472657373000000000000000000000000000000600082015250565b7f526563697069656e7420686173206e6f74206265656e20616464656400000000600082015250565b7f41646472657373206e6f74206164646564000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f54617820616c7265616479207468697320616d6f756e7420666f72207468697360008201527f2061646472657373000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b7f43616e7420757365203020616464726573730000000000000000000000000000600082015250565b613ecc81613723565b8114613ed757600080fd5b50565b613ee381613741565b8114613eee57600080fd5b50565b613efa8161376f565b8114613f0557600080fd5b5056fea264697066735822122066412704139ab7a488a310a86fe3426fc9fb053e95d1e9f92fbfe1a8be899d4f64736f6c63430008070033
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101cf5760003560e01c8063619f28ed1161010457806395d89b41116100a2578063dd62ed3e11610071578063dd62ed3e1461050a578063e43252d71461053a578063f2fde38b14610556578063fb369eb014610572576101cf565b806395d89b411461046e578063a457c2d71461048c578063a9059cbb146104bc578063bb47cc0c146104ec576101cf565b806371fc737c116100de57806371fc737c146104205780638ab1d6811461042a5780638da5cb5b146104465780639096565214610464576101cf565b8063619f28ed146103ca57806370a08231146103e6578063715018a614610416576101cf565b806323b872dd116101715780633a5fcb631161014b5780633a5fcb631461034457806342966c68146103745780634be317781461039057806354f12265146103ae576101cf565b806323b872dd146102c6578063313ce567146102f65780633950935114610314576101cf565b806310bf6029116101ad57806310bf60291461025257806310f6da921461025c57806318160ddd146102785780632354ee0314610296576101cf565b806301c4b316146101d457806306fdde0314610204578063095ea7b314610222575b600080fd5b6101ee60048036038101906101e99190612c8c565b610590565b6040516101fb91906131cc565b60405180910390f35b61020c6105b0565b60405161021991906131e7565b60405180910390f35b61023c60048036038101906102379190612d8c565b610642565b60405161024991906131cc565b60405180910390f35b61025a610665565b005b61027660048036038101906102719190612c8c565b610753565b005b610280610be6565b60405161028d9190613504565b60405180910390f35b6102b060048036038101906102ab9190612dcc565b610bf0565b6040516102bd91906131b1565b60405180910390f35b6102e060048036038101906102db9190612cf9565b610c2f565b6040516102ed91906131cc565b60405180910390f35b6102fe610dcc565b60405161030b919061353a565b60405180910390f35b61032e60048036038101906103299190612d8c565b610dd5565b60405161033b91906131cc565b60405180910390f35b61035e60048036038101906103599190612c8c565b610e7f565b60405161036b91906134e9565b60405180910390f35b61038e60048036038101906103899190612dcc565b610ea0565b005b610398610ead565b6040516103a5919061351f565b60405180910390f35b6103c860048036038101906103c39190612d4c565b610ec3565b005b6103e460048036038101906103df9190612d4c565b611291565b005b61040060048036038101906103fb9190612c8c565b611687565b60405161040d9190613504565b60405180910390f35b61041e6116cf565b005b610428611757565b005b610444600480360381019061043f9190612c8c565b61195d565b005b61044e611b73565b60405161045b91906131b1565b60405180910390f35b61046c611b9d565b005b610476611dbe565b60405161048391906131e7565b60405180910390f35b6104a660048036038101906104a19190612d8c565b611e50565b6040516104b391906131cc565b60405180910390f35b6104d660048036038101906104d19190612d8c565b611f3a565b6040516104e391906131cc565b60405180910390f35b6104f46120cb565b60405161050191906134e9565b60405180910390f35b610524600480360381019061051f9190612cb9565b6120df565b6040516105319190613504565b60405180910390f35b610554600480360381019061054f9190612c8c565b612166565b005b610570600480360381019061056b9190612c8c565b61237d565b005b61057a612475565b60405161058791906131cc565b60405180910390f35b600a6020528060005260406000206000915054906101000a900460ff1681565b6060600380546105bf906137c9565b80601f01602080910402602001604051908101604052809291908181526020018280546105eb906137c9565b80156106385780601f1061060d57610100808354040283529160200191610638565b820191906000526020600020905b81548152906001019060200180831161061b57829003601f168201915b5050505050905090565b60008061064d612488565b905061065a818585612490565b600191505092915050565b61066d612488565b73ffffffffffffffffffffffffffffffffffffffff1661068b611b73565b73ffffffffffffffffffffffffffffffffffffffff16146106e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106d890613409565b60405180910390fd5b600760029054906101000a900460ff1615600760026101000a81548160ff0219169083151502179055507fdda4866fd658821eea607c5d6addd0c4a0cc347eb4cea313399e516e66019864600760029054906101000a900460ff1660405161074991906131cc565b60405180910390a1565b61075b612488565b73ffffffffffffffffffffffffffffffffffffffff16610779611b73565b73ffffffffffffffffffffffffffffffffffffffff16146107cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107c690613409565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561083f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161083690613349565b60405180910390fd5b600960008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166108cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108c2906133c9565b60405180910390fd5b6000600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900461ffff16905060005b6006805490508160ff161015610be1578273ffffffffffffffffffffffffffffffffffffffff1660068260ff168154811061095e5761095d6138e1565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415610bce5781600760009054906101000a900461ffff166109c191906136bb565b600760006101000a81548161ffff021916908361ffff1602179055506000600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548161ffff021916908361ffff16021790555060066001600680549050610a4c91906136ef565b81548110610a5d57610a5c6138e1565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660068260ff1681548110610a9f57610a9e6138e1565b5b9060005260206000200160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000600960008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506006805480610b5157610b506138b2565b5b6001900381819060005260206000200160006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905590558273ffffffffffffffffffffffffffffffffffffffff167f4fd6fed175ab0b49d36124b1a61f8b0d9d15ea6289719749317cbb005ccb13f360405160405180910390a2610be1565b8080610bd9906137fb565b915050610920565b505050565b6000600254905090565b60068181548110610c0057600080fd5b906000526020600020016000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600080610c3a612488565b9050610c4785828561265b565b82610c5186611687565b1015610c92576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8990613309565b60405180910390fd5b600760029054906101000a900460ff168015610cf85750600a60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015610d4e5750600a60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15610db5576000600560149054906101000a900463ffffffff1663ffffffff16600760009054906101000a900461ffff1661ffff1685610d8e9190613661565b610d9891906135ff565b90508084610da691906136ef565b9350610db38630836126e7565b505b610dc08585856126e7565b60019150509392505050565b60006012905090565b600080610de0612488565b9050610e74818585600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610e6f91906135a9565b612490565b600191505092915050565b60086020528060005260406000206000915054906101000a900461ffff1681565b610eaa3382612968565b50565b600560149054906101000a900463ffffffff1681565b610ecb612488565b73ffffffffffffffffffffffffffffffffffffffff16610ee9611b73565b73ffffffffffffffffffffffffffffffffffffffff1614610f3f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3690613409565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610faf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fa690613349565b60405180910390fd5b600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661103b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611032906133a9565b60405180910390fd5b6000600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900461ffff1690508161ffff168161ffff1614156110d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110cf90613429565b60405180910390fd5b8161ffff168161ffff16101561119a57600081836110f691906136bb565b905061271081600760009054906101000a900461ffff166111179190613571565b61ffff16111561115c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611153906132c9565b60405180910390fd5b80600760009054906101000a900461ffff166111789190613571565b600760006101000a81548161ffff021916908361ffff160217905550506111e4565b600082826111a891906136bb565b905080600760009054906101000a900461ffff166111c691906136bb565b600760006101000a81548161ffff021916908361ffff160217905550505b81600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548161ffff021916908361ffff1602179055508273ffffffffffffffffffffffffffffffffffffffff167fee47ac5c77f2952467745dc55e7c0f653f25c603443f24d129d62712b57eeb5d8360405161128491906134e9565b60405180910390a2505050565b611299612488565b73ffffffffffffffffffffffffffffffffffffffff166112b7611b73565b73ffffffffffffffffffffffffffffffffffffffff161461130d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130490613409565b60405180910390fd5b606460068054905010611355576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134c90613269565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156113c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113bc90613349565b60405180910390fd5b600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611452576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161144990613329565b60405180910390fd5b60008161ffff161180156114a95750600a600560149054906101000a900463ffffffff166114809190613630565b63ffffffff16600760009054906101000a900461ffff16826114a29190613571565b61ffff1611155b6114e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114df90613389565b60405180910390fd5b6001600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506006829080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548161ffff021916908361ffff16021790555080600760009054906101000a900461ffff166116199190613571565b600760006101000a81548161ffff021916908361ffff1602179055508173ffffffffffffffffffffffffffffffffffffffff167ff0379f3a0fa1271904bae35478eacd47ea582a7e6316fb3d935a46c931f61c258260405161167b91906134e9565b60405180910390a25050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6116d7612488565b73ffffffffffffffffffffffffffffffffffffffff166116f5611b73565b73ffffffffffffffffffffffffffffffffffffffff161461174b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161174290613409565b60405180910390fd5b6117556000612b3f565b565b61175f612488565b73ffffffffffffffffffffffffffffffffffffffff1661177d611b73565b73ffffffffffffffffffffffffffffffffffffffff16146117d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117ca90613409565b60405180910390fd5b60006117de30611687565b1161181e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181590613249565b60405180910390fd5b600061182930611687565b905060005b6006805490508160ff16101561195957600060068260ff1681548110611857576118566138e1565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600160068054905061189691906136ef565b8260ff1614156118b8576118b330826118ae30611687565b6126e7565b611945565b6000600760009054906101000a900461ffff1661ffff16600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900461ffff1661ffff168561192c9190613661565b61193691906135ff565b90506119433083836126e7565b505b508080611951906137fb565b91505061182e565b5050565b611965612488565b73ffffffffffffffffffffffffffffffffffffffff16611983611b73565b73ffffffffffffffffffffffffffffffffffffffff16146119d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119d090613409565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611a49576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a40906134c9565b60405180910390fd5b600a60008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16611ad5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611acc906133e9565b60405180910390fd5b6000600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508073ffffffffffffffffffffffffffffffffffffffff167f1f756c8b089af6b33ee121fee8badac2553a2fa89c0575ea91ff8792617746c260405160405180910390a250565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611ba5612488565b73ffffffffffffffffffffffffffffffffffffffff16611bc3611b73565b73ffffffffffffffffffffffffffffffffffffffff1614611c19576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c1090613409565b60405180910390fd5b6000600760026101000a81548160ff0219169083151502179055506000600760006101000a81548161ffff021916908361ffff16021790555060005b6006805490508160ff161015611dad5760006008600060068460ff1681548110611c8257611c816138e1565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548161ffff021916908361ffff16021790555060006009600060068460ff1681548110611d1e57611d1d6138e1565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080611da5906137fb565b915050611c55565b5060066000611dbc9190612c0f565b565b606060048054611dcd906137c9565b80601f0160208091040260200160405190810160405280929190818152602001828054611df9906137c9565b8015611e465780601f10611e1b57610100808354040283529160200191611e46565b820191906000526020600020905b815481529060010190602001808311611e2957829003601f168201915b5050505050905090565b600080611e5b612488565b90506000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905083811015611f21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f18906134a9565b60405180910390fd5b611f2e8286868403612490565b60019250505092915050565b600080611f45612488565b905082611f5182611687565b1015611f92576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f8990613309565b60405180910390fd5b600760029054906101000a900460ff168015611ff85750600a60008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b801561204e5750600a60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156120b5576000600560149054906101000a900463ffffffff1663ffffffff16600760009054906101000a900461ffff1661ffff168561208e9190613661565b61209891906135ff565b905080846120a691906136ef565b93506120b38230836126e7565b505b6120c08185856126e7565b600191505092915050565b600760009054906101000a900461ffff1681565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b61216e612488565b73ffffffffffffffffffffffffffffffffffffffff1661218c611b73565b73ffffffffffffffffffffffffffffffffffffffff16146121e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121d990613409565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612252576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612249906134c9565b60405180910390fd5b600a60008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156122df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122d690613369565b60405180910390fd5b6001600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508073ffffffffffffffffffffffffffffffffffffffff167f75b2135d1c8c3519f3c09c43fe6527089ef09f40c7981ebf0ed46e79e79032c760405160405180910390a250565b612385612488565b73ffffffffffffffffffffffffffffffffffffffff166123a3611b73565b73ffffffffffffffffffffffffffffffffffffffff16146123f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123f090613409565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612469576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161246090613289565b60405180910390fd5b61247281612b3f565b50565b600760029054906101000a900460ff1681565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612500576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124f790613489565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612570576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612567906132a9565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161264e9190613504565b60405180910390a3505050565b600061266784846120df565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146126e157818110156126d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126ca906132e9565b60405180910390fd5b6126e08484848403612490565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612757576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161274e90613469565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156127c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127be90613209565b60405180910390fd5b6127d2838383612c05565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015612858576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161284f90613309565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546128eb91906135a9565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161294f9190613504565b60405180910390a3612962848484612c0a565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156129d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129cf90613449565b60405180910390fd5b6129e482600083612c05565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015612a6a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a6190613229565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160026000828254612ac191906136ef565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051612b269190613504565b60405180910390a3612b3a83600084612c0a565b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b505050565b5080546000825590600052602060002090810190612c2d9190612c30565b50565b5b80821115612c49576000816000905550600101612c31565b5090565b600081359050612c5c81613ec3565b92915050565b600081359050612c7181613eda565b92915050565b600081359050612c8681613ef1565b92915050565b600060208284031215612ca257612ca1613910565b5b6000612cb084828501612c4d565b91505092915050565b60008060408385031215612cd057612ccf613910565b5b6000612cde85828601612c4d565b9250506020612cef85828601612c4d565b9150509250929050565b600080600060608486031215612d1257612d11613910565b5b6000612d2086828701612c4d565b9350506020612d3186828701612c4d565b9250506040612d4286828701612c77565b9150509250925092565b60008060408385031215612d6357612d62613910565b5b6000612d7185828601612c4d565b9250506020612d8285828601612c62565b9150509250929050565b60008060408385031215612da357612da2613910565b5b6000612db185828601612c4d565b9250506020612dc285828601612c77565b9150509250929050565b600060208284031215612de257612de1613910565b5b6000612df084828501612c77565b91505092915050565b612e0281613723565b82525050565b612e1181613735565b82525050565b6000612e2282613555565b612e2c8185613560565b9350612e3c818560208601613796565b612e4581613915565b840191505092915050565b6000612e5d602383613560565b9150612e6882613926565b604082019050919050565b6000612e80602283613560565b9150612e8b82613975565b604082019050919050565b6000612ea3601383613560565b9150612eae826139c4565b602082019050919050565b6000612ec6602783613560565b9150612ed1826139ed565b604082019050919050565b6000612ee9602683613560565b9150612ef482613a3c565b604082019050919050565b6000612f0c602283613560565b9150612f1782613a8b565b604082019050919050565b6000612f2f602883613560565b9150612f3a82613ada565b604082019050919050565b6000612f52601d83613560565b9150612f5d82613b29565b602082019050919050565b6000612f75602683613560565b9150612f8082613b52565b604082019050919050565b6000612f98601783613560565b9150612fa382613ba1565b602082019050919050565b6000612fbb601483613560565b9150612fc682613bca565b602082019050919050565b6000612fde601583613560565b9150612fe982613bf3565b602082019050919050565b6000613001602a83613560565b915061300c82613c1c565b604082019050919050565b6000613024601183613560565b915061302f82613c6b565b602082019050919050565b6000613047601c83613560565b915061305282613c94565b602082019050919050565b600061306a601183613560565b915061307582613cbd565b602082019050919050565b600061308d602083613560565b915061309882613ce6565b602082019050919050565b60006130b0602883613560565b91506130bb82613d0f565b604082019050919050565b60006130d3602183613560565b91506130de82613d5e565b604082019050919050565b60006130f6602583613560565b915061310182613dad565b604082019050919050565b6000613119602483613560565b915061312482613dfc565b604082019050919050565b600061313c602583613560565b915061314782613e4b565b604082019050919050565b600061315f601283613560565b915061316a82613e9a565b602082019050919050565b61317e81613741565b82525050565b61318d8161376f565b82525050565b61319c81613779565b82525050565b6131ab81613789565b82525050565b60006020820190506131c66000830184612df9565b92915050565b60006020820190506131e16000830184612e08565b92915050565b600060208201905081810360008301526132018184612e17565b905092915050565b6000602082019050818103600083015261322281612e50565b9050919050565b6000602082019050818103600083015261324281612e73565b9050919050565b6000602082019050818103600083015261326281612e96565b9050919050565b6000602082019050818103600083015261328281612eb9565b9050919050565b600060208201905081810360008301526132a281612edc565b9050919050565b600060208201905081810360008301526132c281612eff565b9050919050565b600060208201905081810360008301526132e281612f22565b9050919050565b6000602082019050818103600083015261330281612f45565b9050919050565b6000602082019050818103600083015261332281612f68565b9050919050565b6000602082019050818103600083015261334281612f8b565b9050919050565b6000602082019050818103600083015261336281612fae565b9050919050565b6000602082019050818103600083015261338281612fd1565b9050919050565b600060208201905081810360008301526133a281612ff4565b9050919050565b600060208201905081810360008301526133c281613017565b9050919050565b600060208201905081810360008301526133e28161303a565b9050919050565b600060208201905081810360008301526134028161305d565b9050919050565b6000602082019050818103600083015261342281613080565b9050919050565b60006020820190508181036000830152613442816130a3565b9050919050565b60006020820190508181036000830152613462816130c6565b9050919050565b60006020820190508181036000830152613482816130e9565b9050919050565b600060208201905081810360008301526134a28161310c565b9050919050565b600060208201905081810360008301526134c28161312f565b9050919050565b600060208201905081810360008301526134e281613152565b9050919050565b60006020820190506134fe6000830184613175565b92915050565b60006020820190506135196000830184613184565b92915050565b60006020820190506135346000830184613193565b92915050565b600060208201905061354f60008301846131a2565b92915050565b600081519050919050565b600082825260208201905092915050565b600061357c82613741565b915061358783613741565b92508261ffff0382111561359e5761359d613825565b5b828201905092915050565b60006135b48261376f565b91506135bf8361376f565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156135f4576135f3613825565b5b828201905092915050565b600061360a8261376f565b91506136158361376f565b92508261362557613624613854565b5b828204905092915050565b600061363b82613779565b915061364683613779565b92508261365657613655613854565b5b828204905092915050565b600061366c8261376f565b91506136778361376f565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156136b0576136af613825565b5b828202905092915050565b60006136c682613741565b91506136d183613741565b9250828210156136e4576136e3613825565b5b828203905092915050565b60006136fa8261376f565b91506137058361376f565b92508282101561371857613717613825565b5b828203905092915050565b600061372e8261374f565b9050919050565b60008115159050919050565b600061ffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600063ffffffff82169050919050565b600060ff82169050919050565b60005b838110156137b4578082015181840152602081019050613799565b838111156137c3576000848401525b50505050565b600060028204905060018216806137e157607f821691505b602082108114156137f5576137f4613883565b5b50919050565b600061380682613789565b915060ff82141561381a57613819613825565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600080fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b7f4e6f7468696e6720746f20776974686472617700000000000000000000000000600082015250565b7f52656163686564206d6178696d756d206e756d626572206f662074617820616460008201527f6472657373657300000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f54617820616d6f756e7420746f6f206869676820666f722063757272656e742060008201527f7461782072617465000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f526563697069656e7420616c7265616479206164646564000000000000000000600082015250565b7f43616e6e6f742061646420302061646472657373000000000000000000000000600082015250565b7f4164647265737320616c72656164792061646465640000000000000000000000600082015250565b7f546f74616c2074617820616d6f756e74206d757374206265206265747765656e60008201527f203020616e642031302500000000000000000000000000000000000000000000602082015250565b7f4e6f742061207461782061646472657373000000000000000000000000000000600082015250565b7f526563697069656e7420686173206e6f74206265656e20616464656400000000600082015250565b7f41646472657373206e6f74206164646564000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f54617820616c7265616479207468697320616d6f756e7420666f72207468697360008201527f2061646472657373000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b7f43616e7420757365203020616464726573730000000000000000000000000000600082015250565b613ecc81613723565b8114613ed757600080fd5b50565b613ee381613741565b8114613eee57600080fd5b50565b613efa8161376f565b8114613f0557600080fd5b5056fea264697066735822122066412704139ab7a488a310a86fe3426fc9fb053e95d1e9f92fbfe1a8be899d4f64736f6c63430008070033
Deployed Bytecode Sourcemap
19854:7274:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20173:44;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9032:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11383:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22642:116;;;:::i;:::-;;24592:681;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10152:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19958:31;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21068:571;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9994:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12868:240;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20057:54;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22467:77;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;19915:36;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23713:762;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;22949:613;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10323:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2666:103;;;:::i;:::-;;26533:592;;;:::i;:::-;;25791:271;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2015:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26141:304;;;:::i;:::-;;9251:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13611:438;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21838:485;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19996:23;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10912:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25393:265;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2924:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;20026:22;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20173:44;;;;;;;;;;;;;;;;;;;;;;:::o;9032:100::-;9086:13;9119:5;9112:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9032:100;:::o;11383:201::-;11466:4;11483:13;11499:12;:10;:12::i;:::-;11483:28;;11522:32;11531:5;11538:7;11547:6;11522:8;:32::i;:::-;11572:4;11565:11;;;11383:201;;;;:::o;22642:116::-;2246:12;:10;:12::i;:::-;2235:23;;:7;:5;:7::i;:::-;:23;;;2227:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;22705:10:::1;;;;;;;;;;;22704:11;22691:10;;:24;;;;;;;;;;;;;;;;;;22729:21;22739:10;;;;;;;;;;;22729:21;;;;;;:::i;:::-;;;;;;;;22642:116::o:0;24592:681::-;2246:12;:10;:12::i;:::-;2235:23;;:7;:5;:7::i;:::-;:23;;;2227:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;24690:1:::1;24672:20;;:6;:20;;;;24664:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;24734:15;:23;24750:6;24734:23;;;;;;;;;;;;;;;;;;;;;;;;;24726:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;24799:11;24813:20;:28;24834:6;24813:28;;;;;;;;;;;;;;;;;;;;;;;;;24799:42;;24856:7;24852:414;24873:14;:21;;;;24869:1;:25;;;24852:414;;;24936:6;24915:27;;:14;24930:1;24915:17;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;:27;;;24912:345;;;24981:4;24969:9;;;;;;;;;;;:16;;;;:::i;:::-;24957:9;;:28;;;;;;;;;;;;;;;;;;25029:1;24998:20;:28;25019:6;24998:28;;;;;;;;;;;;;;;;:32;;;;;;;;;;;;;;;;;;25063:14;25102:1;25078:14;:21;;;;:25;;;;:::i;:::-;25063:41;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;25043:14;25058:1;25043:17;;;;;;;;;;:::i;:::-;;;;;;;;;;:61;;;;;;;;;;;;;;;;;;25143:5;25117:15;:23;25133:6;25117:23;;;;;;;;;;;;;;;;:31;;;;;;;;;;;;;;;;;;25161:14;:20;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;25218:6;25199:26;;;;;;;;;;;;25240:5;;24912:345;24896:3;;;;;:::i;:::-;;;;24852:414;;;;24655:618;24592:681:::0;:::o;10152:108::-;10213:7;10240:12;;10233:19;;10152:108;:::o;19958:31::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;21068:571::-;21165:4;21182:15;21200:12;:10;:12::i;:::-;21182:30;;21223:38;21239:4;21245:7;21254:6;21223:15;:38::i;:::-;21299:6;21280:15;21290:4;21280:9;:15::i;:::-;:25;;21272:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;21362:10;;;;;;;;;;;:33;;;;;21377:12;:18;21390:4;21377:18;;;;;;;;;;;;;;;;;;;;;;;;;21376:19;21362:33;:54;;;;;21400:12;:16;21413:2;21400:16;;;;;;;;;;;;;;;;;;;;;;;;;21399:17;21362:54;21359:213;;;21431:11;21465:13;;;;;;;;;;;21445:33;;21453:9;;;;;;;;;;;21445:17;;:6;:17;;;;:::i;:::-;:33;;;;:::i;:::-;21431:47;;21509:3;21500:6;:12;;;;:::i;:::-;21491:21;;21525:35;21535:4;21549;21556:3;21525:9;:35::i;:::-;21418:154;21359:213;21582:27;21592:4;21598:2;21602:6;21582:9;:27::i;:::-;21627:4;21620:11;;;21068:571;;;;;:::o;9994:93::-;10052:5;10077:2;10070:9;;9994:93;:::o;12868:240::-;12956:4;12973:13;12989:12;:10;:12::i;:::-;12973:28;;13012:66;13021:5;13028:7;13067:10;13037:11;:18;13049:5;13037:18;;;;;;;;;;;;;;;:27;13056:7;13037:27;;;;;;;;;;;;;;;;:40;;;;:::i;:::-;13012:8;:66::i;:::-;13096:4;13089:11;;;12868:240;;;;:::o;20057:54::-;;;;;;;;;;;;;;;;;;;;;;:::o;22467:77::-;22512:24;22518:10;22530:5;22512;:24::i;:::-;22467:77;:::o;19915:36::-;;;;;;;;;;;;;:::o;23713:762::-;2246:12;:10;:12::i;:::-;2235:23;;:7;:5;:7::i;:::-;:23;;;2227:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;23827:1:::1;23809:20;;:6;:20;;;;23801:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;23871:15;:23;23887:6;23871:23;;;;;;;;;;;;;;;;;;;;;;;;;23863:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;23927:17;23947:20;:28;23968:6;23947:28;;;;;;;;;;;;;;;;;;;;;;;;;23927:48;;24006:6;23992:20;;:10;:20;;;;23984:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;24084:6;24071:19;;:10;:19;;;24068:305;;;24103:11;24126:10;24117:6;:19;;;;:::i;:::-;24103:33;;24175:5;24167:4;24155:9;;;;;;;;;;;:16;;;;:::i;:::-;:25;;;;24147:78;;;;;;;;;;;;:::i;:::-;;;;;;;;;24260:4;24248:9;;;;;;;;;;;:16;;;;:::i;:::-;24236:9;;:28;;;;;;;;;;;;;;;;;;24092:182;24068:305;;;24291:11;24318:6;24305:10;:19;;;;:::i;:::-;24291:33;;24359:4;24347:9;;;;;;;;;;;:16;;;;:::i;:::-;24335:9;;:28;;;;;;;;;;;;;;;;;;24280:93;24068:305;24412:6;24381:20;:28;24402:6;24381:28;;;;;;;;;;;;;;;;:37;;;;;;;;;;;;;;;;;;24452:6;24432:35;;;24460:6;24432:35;;;;;;:::i;:::-;;;;;;;;23792:683;23713:762:::0;;:::o;22949:613::-;2246:12;:10;:12::i;:::-;2235:23;;:7;:5;:7::i;:::-;:23;;;2227:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;23063:3:::1;23039:14;:21;;;;:27;23031:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;23145:1;23127:20;;:6;:20;;;;23119:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;23190:15;:23;23206:6;23190:23;;;;;;;;;;;;;;;;;;;;;;;;;23189:24;23181:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;23265:1;23258:4;:8;;;:48;;;;;23304:2;23290:13;;;;;;;;;;;:16;;;;:::i;:::-;23270:36;;23277:9;;;;;;;;;;;23270:4;:16;;;;:::i;:::-;:36;;;;23258:48;23250:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;23390:4;23364:15;:23;23380:6;23364:23;;;;;;;;;;;;;;;;:30;;;;;;;;;;;;;;;;;;23403:14;23423:6;23403:27;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23470:4;23439:20;:28;23460:6;23439:28;;;;;;;;;;;;;;;;:35;;;;;;;;;;;;;;;;;;23507:4;23495:9;;;;;;;;;;;:16;;;;:::i;:::-;23483:9;;:28;;;;;;;;;;;;;;;;;;23541:6;23525:29;;;23549:4;23525:29;;;;;;:::i;:::-;;;;;;;;22949:613:::0;;:::o;10323:127::-;10397:7;10424:9;:18;10434:7;10424:18;;;;;;;;;;;;;;;;10417:25;;10323:127;;;:::o;2666:103::-;2246:12;:10;:12::i;:::-;2235:23;;:7;:5;:7::i;:::-;:23;;;2227:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2731:30:::1;2758:1;2731:18;:30::i;:::-;2666:103::o:0;26533:592::-;2246:12;:10;:12::i;:::-;2235:23;;:7;:5;:7::i;:::-;:23;;;2227:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;26623:1:::1;26596:24;26614:4;26596:9;:24::i;:::-;:28;26588:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;26657:21;26681:24;26699:4;26681:9;:24::i;:::-;26657:48;;26718:7;26714:404;26735:14;:21;;;;26731:1;:25;;;26714:404;;;26774:18;26795:14;26810:1;26795:17;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;26774:38;;26855:1;26831:14;:21;;;;:25;;;;:::i;:::-;26826:1;:30;;;26823:286;;;26872:62;26890:4;26897:10;26909:24;26927:4;26909:9;:24::i;:::-;26872:9;:62::i;:::-;26823:286;;;26965:14;27031:9;;;;;;;;;;;26982:58;;26998:20;:32;27019:10;26998:32;;;;;;;;;;;;;;;;;;;;;;;;;26982:48;;:13;:48;;;;:::i;:::-;:58;;;;:::i;:::-;26965:75;;27053:44;27071:4;27078:10;27090:6;27053:9;:44::i;:::-;26952:157;26823:286;26763:355;26758:3;;;;;:::i;:::-;;;;26714:404;;;;26579:546;26533:592::o:0;25791:271::-;2246:12;:10;:12::i;:::-;2235:23;;:7;:5;:7::i;:::-;:23;;;2227:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;25890:1:::1;25872:20;;:6;:20;;;;25864:51;;;;;;;;;;;;:::i;:::-;;;;;;;;;25932:12;:20;25945:6;25932:20;;;;;;;;;;;;;;;;;;;;;;;;;25924:50;;;;;;;;;;;;:::i;:::-;;;;;;;;;26006:5;25983:12;:20;25996:6;25983:20;;;;;;;;;;;;;;;;:28;;;;;;;;;;;;;;;;;;26047:6;26027:27;;;;;;;;;;;;25791:271:::0;:::o;2015:87::-;2061:7;2088:6;;;;;;;;;;;2081:13;;2015:87;:::o;26141:304::-;2246:12;:10;:12::i;:::-;2235:23;;:7;:5;:7::i;:::-;:23;;;2227:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;26202:5:::1;26189:10;;:18;;;;;;;;;;;;;;;;;;26228:1;26216:9;;:13;;;;;;;;;;;;;;;;;;26244:7;26240:166;26261:14;:21;;;;26257:1;:25;;;26240:166;;;26342:1;26300:20;:39;26321:14;26336:1;26321:17;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;26300:39;;;;;;;;;;;;;;;;:43;;;;;;;;;;;;;;;;;;26391:5;26354:15;:34;26370:14;26385:1;26370:17;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;26354:34;;;;;;;;;;;;;;;;:42;;;;;;;;;;;;;;;;;;26284:3;;;;;:::i;:::-;;;;26240:166;;;;26423:14;;26416:21;;;;:::i;:::-;26141:304::o:0;9251:104::-;9307:13;9340:7;9333:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9251:104;:::o;13611:438::-;13704:4;13721:13;13737:12;:10;:12::i;:::-;13721:28;;13760:24;13787:11;:18;13799:5;13787:18;;;;;;;;;;;;;;;:27;13806:7;13787:27;;;;;;;;;;;;;;;;13760:54;;13853:15;13833:16;:35;;13825:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;13946:60;13955:5;13962:7;13990:15;13971:16;:34;13946:8;:60::i;:::-;14037:4;14030:11;;;;13611:438;;;;:::o;21838:485::-;21917:4;21932:13;21948:12;:10;:12::i;:::-;21932:28;;21997:6;21977:16;21987:5;21977:9;:16::i;:::-;:26;;21969:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;22058:10;;;;;;;;;;;:34;;;;;22073:12;:19;22086:5;22073:19;;;;;;;;;;;;;;;;;;;;;;;;;22072:20;22058:34;:55;;;;;22097:12;:16;22110:2;22097:16;;;;;;;;;;;;;;;;;;;;;;;;;22096:17;22058:55;22055:204;;;22126:11;22157:13;;;;;;;;;;;22140:30;;22147:9;;;;;;;;;;;22140:16;;:6;:16;;;;:::i;:::-;:30;;;;:::i;:::-;22126:44;;22199:3;22190:6;:12;;;;:::i;:::-;22181:21;;22213:36;22223:5;22238:4;22245:3;22213:9;:36::i;:::-;22115:144;22055:204;22267:28;22277:5;22284:2;22288:6;22267:9;:28::i;:::-;22311:4;22304:11;;;21838:485;;;;:::o;19996:23::-;;;;;;;;;;;;;:::o;10912:151::-;11001:7;11028:11;:18;11040:5;11028:18;;;;;;;;;;;;;;;:27;11047:7;11028:27;;;;;;;;;;;;;;;;11021:34;;10912:151;;;;:::o;25393:265::-;2246:12;:10;:12::i;:::-;2235:23;;:7;:5;:7::i;:::-;:23;;;2227:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;25487:1:::1;25469:20;;:6;:20;;;;25461:51;;;;;;;;;;;;:::i;:::-;;;;;;;;;25530:12;:20;25543:6;25530:20;;;;;;;;;;;;;;;;;;;;;;;;;25529:21;25521:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;25608:4;25585:12;:20;25598:6;25585:20;;;;;;;;;;;;;;;;:27;;;;;;;;;;;;;;;;;;25643:6;25628:22;;;;;;;;;;;;25393:265:::0;:::o;2924:201::-;2246:12;:10;:12::i;:::-;2235:23;;:7;:5;:7::i;:::-;:23;;;2227:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3033:1:::1;3013:22;;:8;:22;;;;3005:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;3089:28;3108:8;3089:18;:28::i;:::-;2924:201:::0;:::o;20026:22::-;;;;;;;;;;;;;:::o;798:98::-;851:7;878:10;871:17;;798:98;:::o;17247:380::-;17400:1;17383:19;;:5;:19;;;;17375:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;17481:1;17462:21;;:7;:21;;;;17454:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;17565:6;17535:11;:18;17547:5;17535:18;;;;;;;;;;;;;;;:27;17554:7;17535:27;;;;;;;;;;;;;;;:36;;;;17603:7;17587:32;;17596:5;17587:32;;;17612:6;17587:32;;;;;;:::i;:::-;;;;;;;;17247:380;;;:::o;17914:453::-;18049:24;18076:25;18086:5;18093:7;18076:9;:25::i;:::-;18049:52;;18136:17;18116:16;:37;18112:248;;18198:6;18178:16;:26;;18170:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18282:51;18291:5;18298:7;18326:6;18307:16;:25;18282:8;:51::i;:::-;18112:248;18038:329;17914:453;;;:::o;14528:671::-;14675:1;14659:18;;:4;:18;;;;14651:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;14752:1;14738:16;;:2;:16;;;;14730:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;14807:38;14828:4;14834:2;14838:6;14807:20;:38::i;:::-;14858:19;14880:9;:15;14890:4;14880:15;;;;;;;;;;;;;;;;14858:37;;14929:6;14914:11;:21;;14906:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;15046:6;15032:11;:20;15014:9;:15;15024:4;15014:15;;;;;;;;;;;;;;;:38;;;;15091:6;15074:9;:13;15084:2;15074:13;;;;;;;;;;;;;;;;:23;;;;;;;:::i;:::-;;;;;;;;15130:2;15115:26;;15124:4;15115:26;;;15134:6;15115:26;;;;;;:::i;:::-;;;;;;;;15154:37;15174:4;15180:2;15184:6;15154:19;:37::i;:::-;14640:559;14528:671;;;:::o;16218:591::-;16321:1;16302:21;;:7;:21;;;;16294:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;16374:49;16395:7;16412:1;16416:6;16374:20;:49::i;:::-;16436:22;16461:9;:18;16471:7;16461:18;;;;;;;;;;;;;;;;16436:43;;16516:6;16498:14;:24;;16490:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;16635:6;16618:14;:23;16597:9;:18;16607:7;16597:18;;;;;;;;;;;;;;;:44;;;;16679:6;16663:12;;:22;;;;;;;:::i;:::-;;;;;;;;16729:1;16703:37;;16712:7;16703:37;;;16733:6;16703:37;;;;;;:::i;:::-;;;;;;;;16753:48;16773:7;16790:1;16794:6;16753:19;:48::i;:::-;16283:526;16218:591;;:::o;3285:191::-;3359:16;3378:6;;;;;;;;;;;3359:25;;3404:8;3395:6;;:17;;;;;;;;;;;;;;;;;;3459:8;3428:40;;3449:8;3428:40;;;;;;;;;;;;3348:128;3285:191;:::o;18967:125::-;;;;:::o;19696:124::-;;;;:::o;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:139:1:-;53:5;91:6;78:20;69:29;;107:33;134:5;107:33;:::i;:::-;7:139;;;;:::o;152:137::-;197:5;235:6;222:20;213:29;;251:32;277:5;251:32;:::i;:::-;152:137;;;;:::o;295:139::-;341:5;379:6;366:20;357:29;;395:33;422:5;395:33;:::i;:::-;295:139;;;;:::o;440:329::-;499:6;548:2;536:9;527:7;523:23;519:32;516:119;;;554:79;;:::i;:::-;516:119;674:1;699:53;744:7;735:6;724:9;720:22;699:53;:::i;:::-;689:63;;645:117;440:329;;;;:::o;775:474::-;843:6;851;900:2;888:9;879:7;875:23;871:32;868:119;;;906:79;;:::i;:::-;868:119;1026:1;1051:53;1096:7;1087:6;1076:9;1072:22;1051:53;:::i;:::-;1041:63;;997:117;1153:2;1179:53;1224:7;1215:6;1204:9;1200:22;1179:53;:::i;:::-;1169:63;;1124:118;775:474;;;;;:::o;1255:619::-;1332:6;1340;1348;1397:2;1385:9;1376:7;1372:23;1368:32;1365:119;;;1403:79;;:::i;:::-;1365:119;1523:1;1548:53;1593:7;1584:6;1573:9;1569:22;1548:53;:::i;:::-;1538:63;;1494:117;1650:2;1676:53;1721:7;1712:6;1701:9;1697:22;1676:53;:::i;:::-;1666:63;;1621:118;1778:2;1804:53;1849:7;1840:6;1829:9;1825:22;1804:53;:::i;:::-;1794:63;;1749:118;1255:619;;;;;:::o;1880:472::-;1947:6;1955;2004:2;1992:9;1983:7;1979:23;1975:32;1972:119;;;2010:79;;:::i;:::-;1972:119;2130:1;2155:53;2200:7;2191:6;2180:9;2176:22;2155:53;:::i;:::-;2145:63;;2101:117;2257:2;2283:52;2327:7;2318:6;2307:9;2303:22;2283:52;:::i;:::-;2273:62;;2228:117;1880:472;;;;;:::o;2358:474::-;2426:6;2434;2483:2;2471:9;2462:7;2458:23;2454:32;2451:119;;;2489:79;;:::i;:::-;2451:119;2609:1;2634:53;2679:7;2670:6;2659:9;2655:22;2634:53;:::i;:::-;2624:63;;2580:117;2736:2;2762:53;2807:7;2798:6;2787:9;2783:22;2762:53;:::i;:::-;2752:63;;2707:118;2358:474;;;;;:::o;2838:329::-;2897:6;2946:2;2934:9;2925:7;2921:23;2917:32;2914:119;;;2952:79;;:::i;:::-;2914:119;3072:1;3097:53;3142:7;3133:6;3122:9;3118:22;3097:53;:::i;:::-;3087:63;;3043:117;2838:329;;;;:::o;3173:118::-;3260:24;3278:5;3260:24;:::i;:::-;3255:3;3248:37;3173:118;;:::o;3297:109::-;3378:21;3393:5;3378:21;:::i;:::-;3373:3;3366:34;3297:109;;:::o;3412:364::-;3500:3;3528:39;3561:5;3528:39;:::i;:::-;3583:71;3647:6;3642:3;3583:71;:::i;:::-;3576:78;;3663:52;3708:6;3703:3;3696:4;3689:5;3685:16;3663:52;:::i;:::-;3740:29;3762:6;3740:29;:::i;:::-;3735:3;3731:39;3724:46;;3504:272;3412:364;;;;:::o;3782:366::-;3924:3;3945:67;4009:2;4004:3;3945:67;:::i;:::-;3938:74;;4021:93;4110:3;4021:93;:::i;:::-;4139:2;4134:3;4130:12;4123:19;;3782:366;;;:::o;4154:::-;4296:3;4317:67;4381:2;4376:3;4317:67;:::i;:::-;4310:74;;4393:93;4482:3;4393:93;:::i;:::-;4511:2;4506:3;4502:12;4495:19;;4154:366;;;:::o;4526:::-;4668:3;4689:67;4753:2;4748:3;4689:67;:::i;:::-;4682:74;;4765:93;4854:3;4765:93;:::i;:::-;4883:2;4878:3;4874:12;4867:19;;4526:366;;;:::o;4898:::-;5040:3;5061:67;5125:2;5120:3;5061:67;:::i;:::-;5054:74;;5137:93;5226:3;5137:93;:::i;:::-;5255:2;5250:3;5246:12;5239:19;;4898:366;;;:::o;5270:::-;5412:3;5433:67;5497:2;5492:3;5433:67;:::i;:::-;5426:74;;5509:93;5598:3;5509:93;:::i;:::-;5627:2;5622:3;5618:12;5611:19;;5270:366;;;:::o;5642:::-;5784:3;5805:67;5869:2;5864:3;5805:67;:::i;:::-;5798:74;;5881:93;5970:3;5881:93;:::i;:::-;5999:2;5994:3;5990:12;5983:19;;5642:366;;;:::o;6014:::-;6156:3;6177:67;6241:2;6236:3;6177:67;:::i;:::-;6170:74;;6253:93;6342:3;6253:93;:::i;:::-;6371:2;6366:3;6362:12;6355:19;;6014:366;;;:::o;6386:::-;6528:3;6549:67;6613:2;6608:3;6549:67;:::i;:::-;6542:74;;6625:93;6714:3;6625:93;:::i;:::-;6743:2;6738:3;6734:12;6727:19;;6386:366;;;:::o;6758:::-;6900:3;6921:67;6985:2;6980:3;6921:67;:::i;:::-;6914:74;;6997:93;7086:3;6997:93;:::i;:::-;7115:2;7110:3;7106:12;7099:19;;6758:366;;;:::o;7130:::-;7272:3;7293:67;7357:2;7352:3;7293:67;:::i;:::-;7286:74;;7369:93;7458:3;7369:93;:::i;:::-;7487:2;7482:3;7478:12;7471:19;;7130:366;;;:::o;7502:::-;7644:3;7665:67;7729:2;7724:3;7665:67;:::i;:::-;7658:74;;7741:93;7830:3;7741:93;:::i;:::-;7859:2;7854:3;7850:12;7843:19;;7502:366;;;:::o;7874:::-;8016:3;8037:67;8101:2;8096:3;8037:67;:::i;:::-;8030:74;;8113:93;8202:3;8113:93;:::i;:::-;8231:2;8226:3;8222:12;8215:19;;7874:366;;;:::o;8246:::-;8388:3;8409:67;8473:2;8468:3;8409:67;:::i;:::-;8402:74;;8485:93;8574:3;8485:93;:::i;:::-;8603:2;8598:3;8594:12;8587:19;;8246:366;;;:::o;8618:::-;8760:3;8781:67;8845:2;8840:3;8781:67;:::i;:::-;8774:74;;8857:93;8946:3;8857:93;:::i;:::-;8975:2;8970:3;8966:12;8959:19;;8618:366;;;:::o;8990:::-;9132:3;9153:67;9217:2;9212:3;9153:67;:::i;:::-;9146:74;;9229:93;9318:3;9229:93;:::i;:::-;9347:2;9342:3;9338:12;9331:19;;8990:366;;;:::o;9362:::-;9504:3;9525:67;9589:2;9584:3;9525:67;:::i;:::-;9518:74;;9601:93;9690:3;9601:93;:::i;:::-;9719:2;9714:3;9710:12;9703:19;;9362:366;;;:::o;9734:::-;9876:3;9897:67;9961:2;9956:3;9897:67;:::i;:::-;9890:74;;9973:93;10062:3;9973:93;:::i;:::-;10091:2;10086:3;10082:12;10075:19;;9734:366;;;:::o;10106:::-;10248:3;10269:67;10333:2;10328:3;10269:67;:::i;:::-;10262:74;;10345:93;10434:3;10345:93;:::i;:::-;10463:2;10458:3;10454:12;10447:19;;10106:366;;;:::o;10478:::-;10620:3;10641:67;10705:2;10700:3;10641:67;:::i;:::-;10634:74;;10717:93;10806:3;10717:93;:::i;:::-;10835:2;10830:3;10826:12;10819:19;;10478:366;;;:::o;10850:::-;10992:3;11013:67;11077:2;11072:3;11013:67;:::i;:::-;11006:74;;11089:93;11178:3;11089:93;:::i;:::-;11207:2;11202:3;11198:12;11191:19;;10850:366;;;:::o;11222:::-;11364:3;11385:67;11449:2;11444:3;11385:67;:::i;:::-;11378:74;;11461:93;11550:3;11461:93;:::i;:::-;11579:2;11574:3;11570:12;11563:19;;11222:366;;;:::o;11594:::-;11736:3;11757:67;11821:2;11816:3;11757:67;:::i;:::-;11750:74;;11833:93;11922:3;11833:93;:::i;:::-;11951:2;11946:3;11942:12;11935:19;;11594:366;;;:::o;11966:::-;12108:3;12129:67;12193:2;12188:3;12129:67;:::i;:::-;12122:74;;12205:93;12294:3;12205:93;:::i;:::-;12323:2;12318:3;12314:12;12307:19;;11966:366;;;:::o;12338:115::-;12423:23;12440:5;12423:23;:::i;:::-;12418:3;12411:36;12338:115;;:::o;12459:118::-;12546:24;12564:5;12546:24;:::i;:::-;12541:3;12534:37;12459:118;;:::o;12583:115::-;12668:23;12685:5;12668:23;:::i;:::-;12663:3;12656:36;12583:115;;:::o;12704:112::-;12787:22;12803:5;12787:22;:::i;:::-;12782:3;12775:35;12704:112;;:::o;12822:222::-;12915:4;12953:2;12942:9;12938:18;12930:26;;12966:71;13034:1;13023:9;13019:17;13010:6;12966:71;:::i;:::-;12822:222;;;;:::o;13050:210::-;13137:4;13175:2;13164:9;13160:18;13152:26;;13188:65;13250:1;13239:9;13235:17;13226:6;13188:65;:::i;:::-;13050:210;;;;:::o;13266:313::-;13379:4;13417:2;13406:9;13402:18;13394:26;;13466:9;13460:4;13456:20;13452:1;13441:9;13437:17;13430:47;13494:78;13567:4;13558:6;13494:78;:::i;:::-;13486:86;;13266:313;;;;:::o;13585:419::-;13751:4;13789:2;13778:9;13774:18;13766:26;;13838:9;13832:4;13828:20;13824:1;13813:9;13809:17;13802:47;13866:131;13992:4;13866:131;:::i;:::-;13858:139;;13585:419;;;:::o;14010:::-;14176:4;14214:2;14203:9;14199:18;14191:26;;14263:9;14257:4;14253:20;14249:1;14238:9;14234:17;14227:47;14291:131;14417:4;14291:131;:::i;:::-;14283:139;;14010:419;;;:::o;14435:::-;14601:4;14639:2;14628:9;14624:18;14616:26;;14688:9;14682:4;14678:20;14674:1;14663:9;14659:17;14652:47;14716:131;14842:4;14716:131;:::i;:::-;14708:139;;14435:419;;;:::o;14860:::-;15026:4;15064:2;15053:9;15049:18;15041:26;;15113:9;15107:4;15103:20;15099:1;15088:9;15084:17;15077:47;15141:131;15267:4;15141:131;:::i;:::-;15133:139;;14860:419;;;:::o;15285:::-;15451:4;15489:2;15478:9;15474:18;15466:26;;15538:9;15532:4;15528:20;15524:1;15513:9;15509:17;15502:47;15566:131;15692:4;15566:131;:::i;:::-;15558:139;;15285:419;;;:::o;15710:::-;15876:4;15914:2;15903:9;15899:18;15891:26;;15963:9;15957:4;15953:20;15949:1;15938:9;15934:17;15927:47;15991:131;16117:4;15991:131;:::i;:::-;15983:139;;15710:419;;;:::o;16135:::-;16301:4;16339:2;16328:9;16324:18;16316:26;;16388:9;16382:4;16378:20;16374:1;16363:9;16359:17;16352:47;16416:131;16542:4;16416:131;:::i;:::-;16408:139;;16135:419;;;:::o;16560:::-;16726:4;16764:2;16753:9;16749:18;16741:26;;16813:9;16807:4;16803:20;16799:1;16788:9;16784:17;16777:47;16841:131;16967:4;16841:131;:::i;:::-;16833:139;;16560:419;;;:::o;16985:::-;17151:4;17189:2;17178:9;17174:18;17166:26;;17238:9;17232:4;17228:20;17224:1;17213:9;17209:17;17202:47;17266:131;17392:4;17266:131;:::i;:::-;17258:139;;16985:419;;;:::o;17410:::-;17576:4;17614:2;17603:9;17599:18;17591:26;;17663:9;17657:4;17653:20;17649:1;17638:9;17634:17;17627:47;17691:131;17817:4;17691:131;:::i;:::-;17683:139;;17410:419;;;:::o;17835:::-;18001:4;18039:2;18028:9;18024:18;18016:26;;18088:9;18082:4;18078:20;18074:1;18063:9;18059:17;18052:47;18116:131;18242:4;18116:131;:::i;:::-;18108:139;;17835:419;;;:::o;18260:::-;18426:4;18464:2;18453:9;18449:18;18441:26;;18513:9;18507:4;18503:20;18499:1;18488:9;18484:17;18477:47;18541:131;18667:4;18541:131;:::i;:::-;18533:139;;18260:419;;;:::o;18685:::-;18851:4;18889:2;18878:9;18874:18;18866:26;;18938:9;18932:4;18928:20;18924:1;18913:9;18909:17;18902:47;18966:131;19092:4;18966:131;:::i;:::-;18958:139;;18685:419;;;:::o;19110:::-;19276:4;19314:2;19303:9;19299:18;19291:26;;19363:9;19357:4;19353:20;19349:1;19338:9;19334:17;19327:47;19391:131;19517:4;19391:131;:::i;:::-;19383:139;;19110:419;;;:::o;19535:::-;19701:4;19739:2;19728:9;19724:18;19716:26;;19788:9;19782:4;19778:20;19774:1;19763:9;19759:17;19752:47;19816:131;19942:4;19816:131;:::i;:::-;19808:139;;19535:419;;;:::o;19960:::-;20126:4;20164:2;20153:9;20149:18;20141:26;;20213:9;20207:4;20203:20;20199:1;20188:9;20184:17;20177:47;20241:131;20367:4;20241:131;:::i;:::-;20233:139;;19960:419;;;:::o;20385:::-;20551:4;20589:2;20578:9;20574:18;20566:26;;20638:9;20632:4;20628:20;20624:1;20613:9;20609:17;20602:47;20666:131;20792:4;20666:131;:::i;:::-;20658:139;;20385:419;;;:::o;20810:::-;20976:4;21014:2;21003:9;20999:18;20991:26;;21063:9;21057:4;21053:20;21049:1;21038:9;21034:17;21027:47;21091:131;21217:4;21091:131;:::i;:::-;21083:139;;20810:419;;;:::o;21235:::-;21401:4;21439:2;21428:9;21424:18;21416:26;;21488:9;21482:4;21478:20;21474:1;21463:9;21459:17;21452:47;21516:131;21642:4;21516:131;:::i;:::-;21508:139;;21235:419;;;:::o;21660:::-;21826:4;21864:2;21853:9;21849:18;21841:26;;21913:9;21907:4;21903:20;21899:1;21888:9;21884:17;21877:47;21941:131;22067:4;21941:131;:::i;:::-;21933:139;;21660:419;;;:::o;22085:::-;22251:4;22289:2;22278:9;22274:18;22266:26;;22338:9;22332:4;22328:20;22324:1;22313:9;22309:17;22302:47;22366:131;22492:4;22366:131;:::i;:::-;22358:139;;22085:419;;;:::o;22510:::-;22676:4;22714:2;22703:9;22699:18;22691:26;;22763:9;22757:4;22753:20;22749:1;22738:9;22734:17;22727:47;22791:131;22917:4;22791:131;:::i;:::-;22783:139;;22510:419;;;:::o;22935:::-;23101:4;23139:2;23128:9;23124:18;23116:26;;23188:9;23182:4;23178:20;23174:1;23163:9;23159:17;23152:47;23216:131;23342:4;23216:131;:::i;:::-;23208:139;;22935:419;;;:::o;23360:218::-;23451:4;23489:2;23478:9;23474:18;23466:26;;23502:69;23568:1;23557:9;23553:17;23544:6;23502:69;:::i;:::-;23360:218;;;;:::o;23584:222::-;23677:4;23715:2;23704:9;23700:18;23692:26;;23728:71;23796:1;23785:9;23781:17;23772:6;23728:71;:::i;:::-;23584:222;;;;:::o;23812:218::-;23903:4;23941:2;23930:9;23926:18;23918:26;;23954:69;24020:1;24009:9;24005:17;23996:6;23954:69;:::i;:::-;23812:218;;;;:::o;24036:214::-;24125:4;24163:2;24152:9;24148:18;24140:26;;24176:67;24240:1;24229:9;24225:17;24216:6;24176:67;:::i;:::-;24036:214;;;;:::o;24337:99::-;24389:6;24423:5;24417:12;24407:22;;24337:99;;;:::o;24442:169::-;24526:11;24560:6;24555:3;24548:19;24600:4;24595:3;24591:14;24576:29;;24442:169;;;;:::o;24617:242::-;24656:3;24675:19;24692:1;24675:19;:::i;:::-;24670:24;;24708:19;24725:1;24708:19;:::i;:::-;24703:24;;24801:1;24793:6;24789:14;24786:1;24783:21;24780:47;;;24807:18;;:::i;:::-;24780:47;24851:1;24848;24844:9;24837:16;;24617:242;;;;:::o;24865:305::-;24905:3;24924:20;24942:1;24924:20;:::i;:::-;24919:25;;24958:20;24976:1;24958:20;:::i;:::-;24953:25;;25112:1;25044:66;25040:74;25037:1;25034:81;25031:107;;;25118:18;;:::i;:::-;25031:107;25162:1;25159;25155:9;25148:16;;24865:305;;;;:::o;25176:185::-;25216:1;25233:20;25251:1;25233:20;:::i;:::-;25228:25;;25267:20;25285:1;25267:20;:::i;:::-;25262:25;;25306:1;25296:35;;25311:18;;:::i;:::-;25296:35;25353:1;25350;25346:9;25341:14;;25176:185;;;;:::o;25367:182::-;25406:1;25423:19;25440:1;25423:19;:::i;:::-;25418:24;;25456:19;25473:1;25456:19;:::i;:::-;25451:24;;25494:1;25484:35;;25499:18;;:::i;:::-;25484:35;25541:1;25538;25534:9;25529:14;;25367:182;;;;:::o;25555:348::-;25595:7;25618:20;25636:1;25618:20;:::i;:::-;25613:25;;25652:20;25670:1;25652:20;:::i;:::-;25647:25;;25840:1;25772:66;25768:74;25765:1;25762:81;25757:1;25750:9;25743:17;25739:105;25736:131;;;25847:18;;:::i;:::-;25736:131;25895:1;25892;25888:9;25877:20;;25555:348;;;;:::o;25909:188::-;25948:4;25968:19;25985:1;25968:19;:::i;:::-;25963:24;;26001:19;26018:1;26001:19;:::i;:::-;25996:24;;26039:1;26036;26033:8;26030:34;;;26044:18;;:::i;:::-;26030:34;26089:1;26086;26082:9;26074:17;;25909:188;;;;:::o;26103:191::-;26143:4;26163:20;26181:1;26163:20;:::i;:::-;26158:25;;26197:20;26215:1;26197:20;:::i;:::-;26192:25;;26236:1;26233;26230:8;26227:34;;;26241:18;;:::i;:::-;26227:34;26286:1;26283;26279:9;26271:17;;26103:191;;;;:::o;26300:96::-;26337:7;26366:24;26384:5;26366:24;:::i;:::-;26355:35;;26300:96;;;:::o;26402:90::-;26436:7;26479:5;26472:13;26465:21;26454:32;;26402:90;;;:::o;26498:89::-;26534:7;26574:6;26567:5;26563:18;26552:29;;26498:89;;;:::o;26593:126::-;26630:7;26670:42;26663:5;26659:54;26648:65;;26593:126;;;:::o;26725:77::-;26762:7;26791:5;26780:16;;26725:77;;;:::o;26808:93::-;26844:7;26884:10;26877:5;26873:22;26862:33;;26808:93;;;:::o;26907:86::-;26942:7;26982:4;26975:5;26971:16;26960:27;;26907:86;;;:::o;26999:307::-;27067:1;27077:113;27091:6;27088:1;27085:13;27077:113;;;27176:1;27171:3;27167:11;27161:18;27157:1;27152:3;27148:11;27141:39;27113:2;27110:1;27106:10;27101:15;;27077:113;;;27208:6;27205:1;27202:13;27199:101;;;27288:1;27279:6;27274:3;27270:16;27263:27;27199:101;27048:258;26999:307;;;:::o;27312:320::-;27356:6;27393:1;27387:4;27383:12;27373:22;;27440:1;27434:4;27430:12;27461:18;27451:81;;27517:4;27509:6;27505:17;27495:27;;27451:81;27579:2;27571:6;27568:14;27548:18;27545:38;27542:84;;;27598:18;;:::i;:::-;27542:84;27363:269;27312:320;;;:::o;27638:167::-;27675:3;27698:22;27714:5;27698:22;:::i;:::-;27689:31;;27742:4;27735:5;27732:15;27729:41;;;27750:18;;:::i;:::-;27729:41;27797:1;27790:5;27786:13;27779:20;;27638:167;;;:::o;27811:180::-;27859:77;27856:1;27849:88;27956:4;27953:1;27946:15;27980:4;27977:1;27970:15;27997:180;28045:77;28042:1;28035:88;28142:4;28139:1;28132:15;28166:4;28163:1;28156:15;28183:180;28231:77;28228:1;28221:88;28328:4;28325:1;28318:15;28352:4;28349:1;28342:15;28369:180;28417:77;28414:1;28407:88;28514:4;28511:1;28504:15;28538:4;28535:1;28528:15;28555:180;28603:77;28600:1;28593:88;28700:4;28697:1;28690:15;28724:4;28721:1;28714:15;28864:117;28973:1;28970;28963:12;28987:102;29028:6;29079:2;29075:7;29070:2;29063:5;29059:14;29055:28;29045:38;;28987:102;;;:::o;29095:222::-;29235:34;29231:1;29223:6;29219:14;29212:58;29304:5;29299:2;29291:6;29287:15;29280:30;29095:222;:::o;29323:221::-;29463:34;29459:1;29451:6;29447:14;29440:58;29532:4;29527:2;29519:6;29515:15;29508:29;29323:221;:::o;29550:169::-;29690:21;29686:1;29678:6;29674:14;29667:45;29550:169;:::o;29725:226::-;29865:34;29861:1;29853:6;29849:14;29842:58;29934:9;29929:2;29921:6;29917:15;29910:34;29725:226;:::o;29957:225::-;30097:34;30093:1;30085:6;30081:14;30074:58;30166:8;30161:2;30153:6;30149:15;30142:33;29957:225;:::o;30188:221::-;30328:34;30324:1;30316:6;30312:14;30305:58;30397:4;30392:2;30384:6;30380:15;30373:29;30188:221;:::o;30415:227::-;30555:34;30551:1;30543:6;30539:14;30532:58;30624:10;30619:2;30611:6;30607:15;30600:35;30415:227;:::o;30648:179::-;30788:31;30784:1;30776:6;30772:14;30765:55;30648:179;:::o;30833:225::-;30973:34;30969:1;30961:6;30957:14;30950:58;31042:8;31037:2;31029:6;31025:15;31018:33;30833:225;:::o;31064:173::-;31204:25;31200:1;31192:6;31188:14;31181:49;31064:173;:::o;31243:170::-;31383:22;31379:1;31371:6;31367:14;31360:46;31243:170;:::o;31419:171::-;31559:23;31555:1;31547:6;31543:14;31536:47;31419:171;:::o;31596:229::-;31736:34;31732:1;31724:6;31720:14;31713:58;31805:12;31800:2;31792:6;31788:15;31781:37;31596:229;:::o;31831:167::-;31971:19;31967:1;31959:6;31955:14;31948:43;31831:167;:::o;32004:178::-;32144:30;32140:1;32132:6;32128:14;32121:54;32004:178;:::o;32188:167::-;32328:19;32324:1;32316:6;32312:14;32305:43;32188:167;:::o;32361:182::-;32501:34;32497:1;32489:6;32485:14;32478:58;32361:182;:::o;32549:227::-;32689:34;32685:1;32677:6;32673:14;32666:58;32758:10;32753:2;32745:6;32741:15;32734:35;32549:227;:::o;32782:220::-;32922:34;32918:1;32910:6;32906:14;32899:58;32991:3;32986:2;32978:6;32974:15;32967:28;32782:220;:::o;33008:224::-;33148:34;33144:1;33136:6;33132:14;33125:58;33217:7;33212:2;33204:6;33200:15;33193:32;33008:224;:::o;33238:223::-;33378:34;33374:1;33366:6;33362:14;33355:58;33447:6;33442:2;33434:6;33430:15;33423:31;33238:223;:::o;33467:224::-;33607:34;33603:1;33595:6;33591:14;33584:58;33676:7;33671:2;33663:6;33659:15;33652:32;33467:224;:::o;33697:168::-;33837:20;33833:1;33825:6;33821:14;33814:44;33697:168;:::o;33871:122::-;33944:24;33962:5;33944:24;:::i;:::-;33937:5;33934:35;33924:63;;33983:1;33980;33973:12;33924:63;33871:122;:::o;33999:120::-;34071:23;34088:5;34071:23;:::i;:::-;34064:5;34061:34;34051:62;;34109:1;34106;34099:12;34051:62;33999:120;:::o;34125:122::-;34198:24;34216:5;34198:24;:::i;:::-;34191:5;34188:35;34178:63;;34237:1;34234;34227:12;34178:63;34125:122;:::o
Swarm Source
ipfs://66412704139ab7a488a310a86fe3426fc9fb053e95d1e9f92fbfe1a8be899d4f
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.