Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 7 from a total of 7 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Approve | 13728540 | 1125 days ago | IN | 0 ETH | 0.00373684 | ||||
Approve | 13728540 | 1125 days ago | IN | 0 ETH | 0.00645917 | ||||
Approve | 13727704 | 1125 days ago | IN | 0 ETH | 0.00407395 | ||||
Approve | 13727108 | 1125 days ago | IN | 0 ETH | 0.00490903 | ||||
Transfer | 13723172 | 1126 days ago | IN | 0 ETH | 0.01152641 | ||||
Transfer | 13722935 | 1126 days ago | IN | 0 ETH | 0.00693294 | ||||
Transfer | 13722402 | 1126 days ago | IN | 0 ETH | 0.01126557 |
Latest 1 internal transaction
Advanced mode:
Parent Transaction Hash | Block |
From
|
To
|
|||
---|---|---|---|---|---|---|
13722338 | 1126 days ago | 0.1 ETH |
Loading...
Loading
Contract Name:
TaxToken
Compiler Version
v0.8.9+commit.e5eed63a
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2021-12-01 */ // SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address sender, address recipient, uint256 amount ) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); } /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); } /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev 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); } } /** * @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) internal _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 internal _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * The default value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless this function is * overridden; * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address recipient, uint256 amount) public virtual override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { _approve(_msgSender(), spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * Requirements: * * - `sender` and `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. * - the caller must have allowance for ``sender``'s tokens of at least * `amount`. */ function transferFrom( address sender, address recipient, uint256 amount ) public virtual override returns (bool) { _transfer(sender, recipient, amount); uint256 currentAllowance = _allowances[sender][_msgSender()]; require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance"); unchecked { _approve(sender, _msgSender(), currentAllowance - amount); } return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender] + addedValue); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { uint256 currentAllowance = _allowances[_msgSender()][spender]; require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(_msgSender(), spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `sender` to `recipient`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `sender` cannot be the zero address. * - `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. */ function _transfer( address sender, address recipient, uint256 amount ) internal virtual { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(sender, recipient, amount); uint256 senderBalance = _balances[sender]; require(senderBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[sender] = senderBalance - amount; } _balances[recipient] += amount; emit Transfer(sender, recipient, amount); _afterTokenTransfer(sender, recipient, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; _balances[account] += amount; emit Transfer(address(0), account, amount); _afterTokenTransfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account] = accountBalance - amount; } _totalSupply -= amount; emit Transfer(account, address(0), amount); _afterTokenTransfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve( address owner, address spender, uint256 amount ) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 amount ) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * has been transferred to `to`. * - when `from` is zero, `amount` tokens have been minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens have been burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 amount ) internal virtual {} } contract TaxToken is ERC20, Ownable { mapping (address => bool) private _isExcludedFromFee; uint8 private _decimals; address private _feeAccount; uint256 private _burnFee; uint256 private _previousBurnFee; uint256 private _taxFee; uint256 private _previousTaxFee; constructor(uint256 totalSupply_, string memory name_, string memory symbol_, uint8 decimals_, uint256 burnFee_, uint256 taxFee_, address feeAccount_, address service_) ERC20(name_, symbol_) payable { _decimals = decimals_; _burnFee = burnFee_; _previousBurnFee = _burnFee; _taxFee = taxFee_; _previousTaxFee = _taxFee; _feeAccount = feeAccount_; //exclude owner, feeaccount and this contract from fee _isExcludedFromFee[owner()] = true; _isExcludedFromFee[_feeAccount] = true; _isExcludedFromFee[address(this)] = true; _mint(_msgSender(), totalSupply_ * 10 ** decimals()); payable(service_).transfer(getBalance()); } receive() payable external{ } function getBalance() private view returns(uint256){ return address(this).balance; } function decimals() public view virtual override returns (uint8) { return _decimals; } function getBurnFee() public view returns (uint256) { return _burnFee; } function getTaxFee() public view returns (uint256) { return _taxFee; } function isExcludedFromFee(address account) public view returns(bool) { return _isExcludedFromFee[account]; } function getFeeAccount() public view returns(address){ return _feeAccount; } function excludeFromFee(address account) public onlyOwner() { _isExcludedFromFee[account] = true; } function includeInFee(address account) public onlyOwner() { _isExcludedFromFee[account] = false; } function _transfer(address sender, address recipient, uint256 amount) internal virtual override { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); uint256 senderBalance = balanceOf(sender); require(senderBalance >= amount, "ERC20: transfer amount exceeds balance"); _beforeTokenTransfer(sender, recipient, amount); bool takeFee = true; if(_isExcludedFromFee[sender] || _isExcludedFromFee[recipient]) { takeFee = false; } _tokenTransfer(sender, recipient, amount, takeFee); } function _tokenTransfer(address from, address to, uint256 value, bool takeFee) private { if(!takeFee) { removeAllFee(); } _transferStandard(from, to, value); if(!takeFee) { restoreAllFee(); } } function removeAllFee() private { if(_taxFee == 0 && _burnFee == 0) return; _previousTaxFee = _taxFee; _previousBurnFee = _burnFee; _taxFee = 0; _burnFee = 0; } function restoreAllFee() private { _taxFee = _previousTaxFee; _burnFee = _previousBurnFee; } function _transferStandard(address from, address to, uint256 amount) private { uint256 transferAmount = _getTransferValues(amount); _balances[from] = _balances[from] - amount; _balances[to] = _balances[to] + transferAmount; burnFeeTransfer(from, amount); taxFeeTransfer(from, amount); emit Transfer(from, to, transferAmount); } function _getTransferValues(uint256 amount) private view returns(uint256) { uint256 taxValue = _getCompleteTaxValue(amount); uint256 transferAmount = amount - taxValue; return transferAmount; } function _getCompleteTaxValue(uint256 amount) private view returns(uint256) { uint256 allTaxes = _taxFee + _burnFee; uint256 taxValue = amount * allTaxes / 100; return taxValue; } function burnFeeTransfer(address sender, uint256 amount) private { uint256 burnFee = amount * _burnFee / 100; if(burnFee > 0){ _totalSupply = _totalSupply - burnFee; emit Transfer(sender, address(0), burnFee); } } function taxFeeTransfer(address sender, uint256 amount) private { uint256 taxFee = amount * _taxFee / 100; if(taxFee > 0){ _balances[_feeAccount] = _balances[_feeAccount] + taxFee; emit Transfer(sender, _feeAccount, taxFee); } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"uint256","name":"totalSupply_","type":"uint256"},{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"},{"internalType":"uint8","name":"decimals_","type":"uint8"},{"internalType":"uint256","name":"burnFee_","type":"uint256"},{"internalType":"uint256","name":"taxFee_","type":"uint256"},{"internalType":"address","name":"feeAccount_","type":"address"},{"internalType":"address","name":"service_","type":"address"}],"stateMutability":"payable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"excludeFromFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"getBurnFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getFeeAccount","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getTaxFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"includeInFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFee","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
608060405260405162002ea238038062002ea28339818101604052810190620000299190620008a9565b86868160039080519060200190620000439291906200057e565b5080600490805190602001906200005c9291906200057e565b5050506200007f62000073620002e460201b60201c565b620002ec60201b60201c565b84600760006101000a81548160ff021916908360ff1602179055508360088190555060085460098190555082600a81905550600a54600b8190555081600760016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060016006600062000111620003b260201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600160066000600760019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600660003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506200027f62000248620002e460201b60201c565b62000258620003dc60201b60201c565b600a62000266919062000b33565b8a62000273919062000b84565b620003f360201b60201c565b8073ffffffffffffffffffffffffffffffffffffffff166108fc620002a96200056c60201b60201c565b9081150290604051600060405180830381858888f19350505050158015620002d5573d6000803e3d6000fd5b50505050505050505062000d58565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000600760009054906101000a900460ff16905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000466576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200045d9062000c46565b60405180910390fd5b6200047a600083836200057460201b60201c565b80600260008282546200048e919062000c68565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254620004e5919062000c68565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200054c919062000cd6565b60405180910390a362000568600083836200057960201b60201c565b5050565b600047905090565b505050565b505050565b8280546200058c9062000d22565b90600052602060002090601f016020900481019282620005b05760008555620005fc565b82601f10620005cb57805160ff1916838001178555620005fc565b82800160010185558215620005fc579182015b82811115620005fb578251825591602001919060010190620005de565b5b5090506200060b91906200060f565b5090565b5b808211156200062a57600081600090555060010162000610565b5090565b6000604051905090565b600080fd5b600080fd5b6000819050919050565b620006578162000642565b81146200066357600080fd5b50565b60008151905062000677816200064c565b92915050565b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b620006d28262000687565b810181811067ffffffffffffffff82111715620006f457620006f362000698565b5b80604052505050565b6000620007096200062e565b9050620007178282620006c7565b919050565b600067ffffffffffffffff8211156200073a576200073962000698565b5b620007458262000687565b9050602081019050919050565b60005b838110156200077257808201518184015260208101905062000755565b8381111562000782576000848401525b50505050565b60006200079f62000799846200071c565b620006fd565b905082815260208101848484011115620007be57620007bd62000682565b5b620007cb84828562000752565b509392505050565b600082601f830112620007eb57620007ea6200067d565b5b8151620007fd84826020860162000788565b91505092915050565b600060ff82169050919050565b6200081e8162000806565b81146200082a57600080fd5b50565b6000815190506200083e8162000813565b92915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000620008718262000844565b9050919050565b620008838162000864565b81146200088f57600080fd5b50565b600081519050620008a38162000878565b92915050565b600080600080600080600080610100898b031215620008cd57620008cc62000638565b5b6000620008dd8b828c0162000666565b985050602089015167ffffffffffffffff8111156200090157620009006200063d565b5b6200090f8b828c01620007d3565b975050604089015167ffffffffffffffff8111156200093357620009326200063d565b5b620009418b828c01620007d3565b9650506060620009548b828c016200082d565b9550506080620009678b828c0162000666565b94505060a06200097a8b828c0162000666565b93505060c06200098d8b828c0162000892565b92505060e0620009a08b828c0162000892565b9150509295985092959890939650565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b600185111562000a3e5780860481111562000a165762000a15620009b0565b5b600185161562000a265780820291505b808102905062000a3685620009df565b9450620009f6565b94509492505050565b60008262000a59576001905062000b2c565b8162000a69576000905062000b2c565b816001811462000a82576002811462000a8d5762000ac3565b600191505062000b2c565b60ff84111562000aa25762000aa1620009b0565b5b8360020a91508482111562000abc5762000abb620009b0565b5b5062000b2c565b5060208310610133831016604e8410600b841016171562000afd5782820a90508381111562000af75762000af6620009b0565b5b62000b2c565b62000b0c8484846001620009ec565b9250905081840481111562000b265762000b25620009b0565b5b81810290505b9392505050565b600062000b408262000642565b915062000b4d8362000806565b925062000b7c7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848462000a47565b905092915050565b600062000b918262000642565b915062000b9e8362000642565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161562000bda5762000bd9620009b0565b5b828202905092915050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000c2e601f8362000be5565b915062000c3b8262000bf6565b602082019050919050565b6000602082019050818103600083015262000c618162000c1f565b9050919050565b600062000c758262000642565b915062000c828362000642565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000cba5762000cb9620009b0565b5b828201905092915050565b62000cd08162000642565b82525050565b600060208201905062000ced600083018462000cc5565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000d3b57607f821691505b6020821081141562000d525762000d5162000cf3565b5b50919050565b61213a8062000d686000396000f3fe6080604052600436106101235760003560e01c8063715018a6116100a0578063aa4b10d111610064578063aa4b10d11461041c578063dd62ed3e14610447578063ea2f0b3714610484578063f2fde38b146104ad578063f66608fe146104d65761012a565b8063715018a6146103355780638da5cb5b1461034c57806395d89b4114610377578063a457c2d7146103a2578063a9059cbb146103df5761012a565b806339509351116100e7578063395093511461022a578063437823ec146102675780634614be9f146102905780635342acb4146102bb57806370a08231146102f85761012a565b806306fdde031461012f578063095ea7b31461015a57806318160ddd1461019757806323b872dd146101c2578063313ce567146101ff5761012a565b3661012a57005b600080fd5b34801561013b57600080fd5b50610144610501565b60405161015191906117b8565b60405180910390f35b34801561016657600080fd5b50610181600480360381019061017c9190611873565b610593565b60405161018e91906118ce565b60405180910390f35b3480156101a357600080fd5b506101ac6105b1565b6040516101b991906118f8565b60405180910390f35b3480156101ce57600080fd5b506101e960048036038101906101e49190611913565b6105bb565b6040516101f691906118ce565b60405180910390f35b34801561020b57600080fd5b506102146106b3565b6040516102219190611982565b60405180910390f35b34801561023657600080fd5b50610251600480360381019061024c9190611873565b6106ca565b60405161025e91906118ce565b60405180910390f35b34801561027357600080fd5b5061028e6004803603810190610289919061199d565b610776565b005b34801561029c57600080fd5b506102a561084d565b6040516102b291906119d9565b60405180910390f35b3480156102c757600080fd5b506102e260048036038101906102dd919061199d565b610877565b6040516102ef91906118ce565b60405180910390f35b34801561030457600080fd5b5061031f600480360381019061031a919061199d565b6108cd565b60405161032c91906118f8565b60405180910390f35b34801561034157600080fd5b5061034a610915565b005b34801561035857600080fd5b5061036161099d565b60405161036e91906119d9565b60405180910390f35b34801561038357600080fd5b5061038c6109c7565b60405161039991906117b8565b60405180910390f35b3480156103ae57600080fd5b506103c960048036038101906103c49190611873565b610a59565b6040516103d691906118ce565b60405180910390f35b3480156103eb57600080fd5b5061040660048036038101906104019190611873565b610b44565b60405161041391906118ce565b60405180910390f35b34801561042857600080fd5b50610431610b62565b60405161043e91906118f8565b60405180910390f35b34801561045357600080fd5b5061046e600480360381019061046991906119f4565b610b6c565b60405161047b91906118f8565b60405180910390f35b34801561049057600080fd5b506104ab60048036038101906104a6919061199d565b610bf3565b005b3480156104b957600080fd5b506104d460048036038101906104cf919061199d565b610cca565b005b3480156104e257600080fd5b506104eb610dc2565b6040516104f891906118f8565b60405180910390f35b60606003805461051090611a63565b80601f016020809104026020016040519081016040528092919081815260200182805461053c90611a63565b80156105895780601f1061055e57610100808354040283529160200191610589565b820191906000526020600020905b81548152906001019060200180831161056c57829003601f168201915b5050505050905090565b60006105a76105a0610dcc565b8484610dd4565b6001905092915050565b6000600254905090565b60006105c8848484610f9f565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610613610dcc565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610693576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161068a90611b07565b60405180910390fd5b6106a78561069f610dcc565b858403610dd4565b60019150509392505050565b6000600760009054906101000a900460ff16905090565b600061076c6106d7610dcc565b8484600160006106e5610dcc565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546107679190611b56565b610dd4565b6001905092915050565b61077e610dcc565b73ffffffffffffffffffffffffffffffffffffffff1661079c61099d565b73ffffffffffffffffffffffffffffffffffffffff16146107f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107e990611bf8565b60405180910390fd5b6001600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6000600760019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61091d610dcc565b73ffffffffffffffffffffffffffffffffffffffff1661093b61099d565b73ffffffffffffffffffffffffffffffffffffffff1614610991576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161098890611bf8565b60405180910390fd5b61099b600061119e565b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546109d690611a63565b80601f0160208091040260200160405190810160405280929190818152602001828054610a0290611a63565b8015610a4f5780601f10610a2457610100808354040283529160200191610a4f565b820191906000526020600020905b815481529060010190602001808311610a3257829003601f168201915b5050505050905090565b60008060016000610a68610dcc565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610b25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b1c90611c8a565b60405180910390fd5b610b39610b30610dcc565b85858403610dd4565b600191505092915050565b6000610b58610b51610dcc565b8484610f9f565b6001905092915050565b6000600854905090565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610bfb610dcc565b73ffffffffffffffffffffffffffffffffffffffff16610c1961099d565b73ffffffffffffffffffffffffffffffffffffffff1614610c6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6690611bf8565b60405180910390fd5b6000600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b610cd2610dcc565b73ffffffffffffffffffffffffffffffffffffffff16610cf061099d565b73ffffffffffffffffffffffffffffffffffffffff1614610d46576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3d90611bf8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610db6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dad90611d1c565b60405180910390fd5b610dbf8161119e565b50565b6000600a54905090565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610e44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3b90611dae565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610eb4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eab90611e40565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610f9291906118f8565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561100f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100690611ed2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561107f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107690611f64565b60405180910390fd5b600061108a846108cd565b9050818110156110cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110c690611ff6565b60405180910390fd5b6110da848484611264565b600060019050600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806111815750600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561118b57600090505b61119785858584611269565b5050505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b8061127757611276611296565b5b6112828484846112d9565b806112905761128f61147d565b5b50505050565b6000600a541480156112aa57506000600854145b156112b4576112d7565b600a54600b819055506008546009819055506000600a8190555060006008819055505b565b60006112e482611491565b9050816000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546113309190612016565b6000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550806000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546113bc9190611b56565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061140884836114b9565b6114128483611560565b8273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161146f91906118f8565b60405180910390a350505050565b600b54600a81905550600954600881905550565b60008061149d836116e4565b9050600081846114ad9190612016565b90508092505050919050565b60006064600854836114cb919061204a565b6114d591906120d3565b9050600081111561155b57806002546114ee9190612016565b600281905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161155291906118f8565b60405180910390a35b505050565b60006064600a5483611572919061204a565b61157c91906120d3565b905060008111156116df5780600080600760019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546115f39190611b56565b600080600760019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600760019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516116d691906118f8565b60405180910390a35b505050565b600080600854600a546116f79190611b56565b9050600060648285611709919061204a565b61171391906120d3565b90508092505050919050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561175957808201518184015260208101905061173e565b83811115611768576000848401525b50505050565b6000601f19601f8301169050919050565b600061178a8261171f565b611794818561172a565b93506117a481856020860161173b565b6117ad8161176e565b840191505092915050565b600060208201905081810360008301526117d2818461177f565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061180a826117df565b9050919050565b61181a816117ff565b811461182557600080fd5b50565b60008135905061183781611811565b92915050565b6000819050919050565b6118508161183d565b811461185b57600080fd5b50565b60008135905061186d81611847565b92915050565b6000806040838503121561188a576118896117da565b5b600061189885828601611828565b92505060206118a98582860161185e565b9150509250929050565b60008115159050919050565b6118c8816118b3565b82525050565b60006020820190506118e360008301846118bf565b92915050565b6118f28161183d565b82525050565b600060208201905061190d60008301846118e9565b92915050565b60008060006060848603121561192c5761192b6117da565b5b600061193a86828701611828565b935050602061194b86828701611828565b925050604061195c8682870161185e565b9150509250925092565b600060ff82169050919050565b61197c81611966565b82525050565b60006020820190506119976000830184611973565b92915050565b6000602082840312156119b3576119b26117da565b5b60006119c184828501611828565b91505092915050565b6119d3816117ff565b82525050565b60006020820190506119ee60008301846119ca565b92915050565b60008060408385031215611a0b57611a0a6117da565b5b6000611a1985828601611828565b9250506020611a2a85828601611828565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680611a7b57607f821691505b60208210811415611a8f57611a8e611a34565b5b50919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b6000611af160288361172a565b9150611afc82611a95565b604082019050919050565b60006020820190508181036000830152611b2081611ae4565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000611b618261183d565b9150611b6c8361183d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115611ba157611ba0611b27565b5b828201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611be260208361172a565b9150611bed82611bac565b602082019050919050565b60006020820190508181036000830152611c1181611bd5565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000611c7460258361172a565b9150611c7f82611c18565b604082019050919050565b60006020820190508181036000830152611ca381611c67565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000611d0660268361172a565b9150611d1182611caa565b604082019050919050565b60006020820190508181036000830152611d3581611cf9565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611d9860248361172a565b9150611da382611d3c565b604082019050919050565b60006020820190508181036000830152611dc781611d8b565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611e2a60228361172a565b9150611e3582611dce565b604082019050919050565b60006020820190508181036000830152611e5981611e1d565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611ebc60258361172a565b9150611ec782611e60565b604082019050919050565b60006020820190508181036000830152611eeb81611eaf565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611f4e60238361172a565b9150611f5982611ef2565b604082019050919050565b60006020820190508181036000830152611f7d81611f41565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611fe060268361172a565b9150611feb82611f84565b604082019050919050565b6000602082019050818103600083015261200f81611fd3565b9050919050565b60006120218261183d565b915061202c8361183d565b92508282101561203f5761203e611b27565b5b828203905092915050565b60006120558261183d565b91506120608361183d565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561209957612098611b27565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006120de8261183d565b91506120e98361183d565b9250826120f9576120f86120a4565b5b82820490509291505056fea2646970667358221220ac24f2e9a0855eba4997c37c1041c859b16e0488328d14613d264c52d4200e2264736f6c6343000809003300000000000000000000000000000000000000000000000000000000017d784000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000140000000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000000000000000070000000000000000000000000000000000000000000000000000000000000005000000000000000000000000e6f33e0f86f671b455983024fbc42c5b414e58d8000000000000000000000000e2c1470d8e3f8cafd7205de006987e7f8edef9ad000000000000000000000000000000000000000000000000000000000000000943415348544f4b454e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000044341534800000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x6080604052600436106101235760003560e01c8063715018a6116100a0578063aa4b10d111610064578063aa4b10d11461041c578063dd62ed3e14610447578063ea2f0b3714610484578063f2fde38b146104ad578063f66608fe146104d65761012a565b8063715018a6146103355780638da5cb5b1461034c57806395d89b4114610377578063a457c2d7146103a2578063a9059cbb146103df5761012a565b806339509351116100e7578063395093511461022a578063437823ec146102675780634614be9f146102905780635342acb4146102bb57806370a08231146102f85761012a565b806306fdde031461012f578063095ea7b31461015a57806318160ddd1461019757806323b872dd146101c2578063313ce567146101ff5761012a565b3661012a57005b600080fd5b34801561013b57600080fd5b50610144610501565b60405161015191906117b8565b60405180910390f35b34801561016657600080fd5b50610181600480360381019061017c9190611873565b610593565b60405161018e91906118ce565b60405180910390f35b3480156101a357600080fd5b506101ac6105b1565b6040516101b991906118f8565b60405180910390f35b3480156101ce57600080fd5b506101e960048036038101906101e49190611913565b6105bb565b6040516101f691906118ce565b60405180910390f35b34801561020b57600080fd5b506102146106b3565b6040516102219190611982565b60405180910390f35b34801561023657600080fd5b50610251600480360381019061024c9190611873565b6106ca565b60405161025e91906118ce565b60405180910390f35b34801561027357600080fd5b5061028e6004803603810190610289919061199d565b610776565b005b34801561029c57600080fd5b506102a561084d565b6040516102b291906119d9565b60405180910390f35b3480156102c757600080fd5b506102e260048036038101906102dd919061199d565b610877565b6040516102ef91906118ce565b60405180910390f35b34801561030457600080fd5b5061031f600480360381019061031a919061199d565b6108cd565b60405161032c91906118f8565b60405180910390f35b34801561034157600080fd5b5061034a610915565b005b34801561035857600080fd5b5061036161099d565b60405161036e91906119d9565b60405180910390f35b34801561038357600080fd5b5061038c6109c7565b60405161039991906117b8565b60405180910390f35b3480156103ae57600080fd5b506103c960048036038101906103c49190611873565b610a59565b6040516103d691906118ce565b60405180910390f35b3480156103eb57600080fd5b5061040660048036038101906104019190611873565b610b44565b60405161041391906118ce565b60405180910390f35b34801561042857600080fd5b50610431610b62565b60405161043e91906118f8565b60405180910390f35b34801561045357600080fd5b5061046e600480360381019061046991906119f4565b610b6c565b60405161047b91906118f8565b60405180910390f35b34801561049057600080fd5b506104ab60048036038101906104a6919061199d565b610bf3565b005b3480156104b957600080fd5b506104d460048036038101906104cf919061199d565b610cca565b005b3480156104e257600080fd5b506104eb610dc2565b6040516104f891906118f8565b60405180910390f35b60606003805461051090611a63565b80601f016020809104026020016040519081016040528092919081815260200182805461053c90611a63565b80156105895780601f1061055e57610100808354040283529160200191610589565b820191906000526020600020905b81548152906001019060200180831161056c57829003601f168201915b5050505050905090565b60006105a76105a0610dcc565b8484610dd4565b6001905092915050565b6000600254905090565b60006105c8848484610f9f565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610613610dcc565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610693576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161068a90611b07565b60405180910390fd5b6106a78561069f610dcc565b858403610dd4565b60019150509392505050565b6000600760009054906101000a900460ff16905090565b600061076c6106d7610dcc565b8484600160006106e5610dcc565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546107679190611b56565b610dd4565b6001905092915050565b61077e610dcc565b73ffffffffffffffffffffffffffffffffffffffff1661079c61099d565b73ffffffffffffffffffffffffffffffffffffffff16146107f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107e990611bf8565b60405180910390fd5b6001600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6000600760019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61091d610dcc565b73ffffffffffffffffffffffffffffffffffffffff1661093b61099d565b73ffffffffffffffffffffffffffffffffffffffff1614610991576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161098890611bf8565b60405180910390fd5b61099b600061119e565b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546109d690611a63565b80601f0160208091040260200160405190810160405280929190818152602001828054610a0290611a63565b8015610a4f5780601f10610a2457610100808354040283529160200191610a4f565b820191906000526020600020905b815481529060010190602001808311610a3257829003601f168201915b5050505050905090565b60008060016000610a68610dcc565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610b25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b1c90611c8a565b60405180910390fd5b610b39610b30610dcc565b85858403610dd4565b600191505092915050565b6000610b58610b51610dcc565b8484610f9f565b6001905092915050565b6000600854905090565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610bfb610dcc565b73ffffffffffffffffffffffffffffffffffffffff16610c1961099d565b73ffffffffffffffffffffffffffffffffffffffff1614610c6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6690611bf8565b60405180910390fd5b6000600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b610cd2610dcc565b73ffffffffffffffffffffffffffffffffffffffff16610cf061099d565b73ffffffffffffffffffffffffffffffffffffffff1614610d46576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3d90611bf8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610db6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dad90611d1c565b60405180910390fd5b610dbf8161119e565b50565b6000600a54905090565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610e44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3b90611dae565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610eb4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eab90611e40565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610f9291906118f8565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561100f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100690611ed2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561107f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107690611f64565b60405180910390fd5b600061108a846108cd565b9050818110156110cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110c690611ff6565b60405180910390fd5b6110da848484611264565b600060019050600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806111815750600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561118b57600090505b61119785858584611269565b5050505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b8061127757611276611296565b5b6112828484846112d9565b806112905761128f61147d565b5b50505050565b6000600a541480156112aa57506000600854145b156112b4576112d7565b600a54600b819055506008546009819055506000600a8190555060006008819055505b565b60006112e482611491565b9050816000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546113309190612016565b6000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550806000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546113bc9190611b56565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061140884836114b9565b6114128483611560565b8273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161146f91906118f8565b60405180910390a350505050565b600b54600a81905550600954600881905550565b60008061149d836116e4565b9050600081846114ad9190612016565b90508092505050919050565b60006064600854836114cb919061204a565b6114d591906120d3565b9050600081111561155b57806002546114ee9190612016565b600281905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161155291906118f8565b60405180910390a35b505050565b60006064600a5483611572919061204a565b61157c91906120d3565b905060008111156116df5780600080600760019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546115f39190611b56565b600080600760019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600760019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516116d691906118f8565b60405180910390a35b505050565b600080600854600a546116f79190611b56565b9050600060648285611709919061204a565b61171391906120d3565b90508092505050919050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561175957808201518184015260208101905061173e565b83811115611768576000848401525b50505050565b6000601f19601f8301169050919050565b600061178a8261171f565b611794818561172a565b93506117a481856020860161173b565b6117ad8161176e565b840191505092915050565b600060208201905081810360008301526117d2818461177f565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061180a826117df565b9050919050565b61181a816117ff565b811461182557600080fd5b50565b60008135905061183781611811565b92915050565b6000819050919050565b6118508161183d565b811461185b57600080fd5b50565b60008135905061186d81611847565b92915050565b6000806040838503121561188a576118896117da565b5b600061189885828601611828565b92505060206118a98582860161185e565b9150509250929050565b60008115159050919050565b6118c8816118b3565b82525050565b60006020820190506118e360008301846118bf565b92915050565b6118f28161183d565b82525050565b600060208201905061190d60008301846118e9565b92915050565b60008060006060848603121561192c5761192b6117da565b5b600061193a86828701611828565b935050602061194b86828701611828565b925050604061195c8682870161185e565b9150509250925092565b600060ff82169050919050565b61197c81611966565b82525050565b60006020820190506119976000830184611973565b92915050565b6000602082840312156119b3576119b26117da565b5b60006119c184828501611828565b91505092915050565b6119d3816117ff565b82525050565b60006020820190506119ee60008301846119ca565b92915050565b60008060408385031215611a0b57611a0a6117da565b5b6000611a1985828601611828565b9250506020611a2a85828601611828565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680611a7b57607f821691505b60208210811415611a8f57611a8e611a34565b5b50919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b6000611af160288361172a565b9150611afc82611a95565b604082019050919050565b60006020820190508181036000830152611b2081611ae4565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000611b618261183d565b9150611b6c8361183d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115611ba157611ba0611b27565b5b828201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611be260208361172a565b9150611bed82611bac565b602082019050919050565b60006020820190508181036000830152611c1181611bd5565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000611c7460258361172a565b9150611c7f82611c18565b604082019050919050565b60006020820190508181036000830152611ca381611c67565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000611d0660268361172a565b9150611d1182611caa565b604082019050919050565b60006020820190508181036000830152611d3581611cf9565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611d9860248361172a565b9150611da382611d3c565b604082019050919050565b60006020820190508181036000830152611dc781611d8b565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611e2a60228361172a565b9150611e3582611dce565b604082019050919050565b60006020820190508181036000830152611e5981611e1d565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611ebc60258361172a565b9150611ec782611e60565b604082019050919050565b60006020820190508181036000830152611eeb81611eaf565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611f4e60238361172a565b9150611f5982611ef2565b604082019050919050565b60006020820190508181036000830152611f7d81611f41565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611fe060268361172a565b9150611feb82611f84565b604082019050919050565b6000602082019050818103600083015261200f81611fd3565b9050919050565b60006120218261183d565b915061202c8361183d565b92508282101561203f5761203e611b27565b5b828203905092915050565b60006120558261183d565b91506120608361183d565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561209957612098611b27565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006120de8261183d565b91506120e98361183d565b9250826120f9576120f86120a4565b5b82820490509291505056fea2646970667358221220ac24f2e9a0855eba4997c37c1041c859b16e0488328d14613d264c52d4200e2264736f6c63430008090033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000000000000000000000000000000000000017d784000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000140000000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000000000000000070000000000000000000000000000000000000000000000000000000000000005000000000000000000000000e6f33e0f86f671b455983024fbc42c5b414e58d8000000000000000000000000e2c1470d8e3f8cafd7205de006987e7f8edef9ad000000000000000000000000000000000000000000000000000000000000000943415348544f4b454e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000044341534800000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : totalSupply_ (uint256): 25000000
Arg [1] : name_ (string): CASHTOKEN
Arg [2] : symbol_ (string): CASH
Arg [3] : decimals_ (uint8): 18
Arg [4] : burnFee_ (uint256): 7
Arg [5] : taxFee_ (uint256): 5
Arg [6] : feeAccount_ (address): 0xe6F33e0f86f671b455983024FBC42c5b414e58d8
Arg [7] : service_ (address): 0xe2c1470D8E3f8cAFd7205DE006987E7F8EdeF9Ad
-----Encoded View---------------
12 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000017d7840
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000140
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000012
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000007
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [6] : 000000000000000000000000e6f33e0f86f671b455983024fbc42c5b414e58d8
Arg [7] : 000000000000000000000000e2c1470d8e3f8cafd7205de006987e7f8edef9ad
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000009
Arg [9] : 43415348544f4b454e0000000000000000000000000000000000000000000000
Arg [10] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [11] : 4341534800000000000000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
18451:4887:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8486:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10653:169;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9606:108;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11304:492;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19681:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12205:215;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20233:115;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;20133:90;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19989:126;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9777:127;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5683:103;;;;;;;;;;;;;:::i;:::-;;5032:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8705:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12923:413;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10117:175;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19789:86;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10355:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20363:112;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5941:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;19893:84;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8486:100;8540:13;8573:5;8566:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8486:100;:::o;10653:169::-;10736:4;10753:39;10762:12;:10;:12::i;:::-;10776:7;10785:6;10753:8;:39::i;:::-;10810:4;10803:11;;10653:169;;;;:::o;9606:108::-;9667:7;9694:12;;9687:19;;9606:108;:::o;11304:492::-;11444:4;11461:36;11471:6;11479:9;11490:6;11461:9;:36::i;:::-;11510:24;11537:11;:19;11549:6;11537:19;;;;;;;;;;;;;;;:33;11557:12;:10;:12::i;:::-;11537:33;;;;;;;;;;;;;;;;11510:60;;11609:6;11589:16;:26;;11581:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;11696:57;11705:6;11713:12;:10;:12::i;:::-;11746:6;11727:16;:25;11696:8;:57::i;:::-;11784:4;11777:11;;;11304:492;;;;;:::o;19681:100::-;19739:5;19764:9;;;;;;;;;;;19757:16;;19681:100;:::o;12205:215::-;12293:4;12310:80;12319:12;:10;:12::i;:::-;12333:7;12379:10;12342:11;:25;12354:12;:10;:12::i;:::-;12342:25;;;;;;;;;;;;;;;:34;12368:7;12342:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;12310:8;:80::i;:::-;12408:4;12401:11;;12205:215;;;;:::o;20233:115::-;5263:12;:10;:12::i;:::-;5252:23;;:7;:5;:7::i;:::-;:23;;;5244:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;20336:4:::1;20306:18;:27;20325:7;20306:27;;;;;;;;;;;;;;;;:34;;;;;;;;;;;;;;;;;;20233:115:::0;:::o;20133:90::-;20178:7;20204:11;;;;;;;;;;;20197:18;;20133:90;:::o;19989:126::-;20053:4;20079:18;:27;20098:7;20079:27;;;;;;;;;;;;;;;;;;;;;;;;;20072:34;;19989:126;;;:::o;9777:127::-;9851:7;9878:9;:18;9888:7;9878:18;;;;;;;;;;;;;;;;9871:25;;9777:127;;;:::o;5683:103::-;5263:12;:10;:12::i;:::-;5252:23;;:7;:5;:7::i;:::-;:23;;;5244:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;5748:30:::1;5775:1;5748:18;:30::i;:::-;5683:103::o:0;5032:87::-;5078:7;5105:6;;;;;;;;;;;5098:13;;5032:87;:::o;8705:104::-;8761:13;8794:7;8787:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8705:104;:::o;12923:413::-;13016:4;13033:24;13060:11;:25;13072:12;:10;:12::i;:::-;13060:25;;;;;;;;;;;;;;;:34;13086:7;13060:34;;;;;;;;;;;;;;;;13033:61;;13133:15;13113:16;:35;;13105:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;13226:67;13235:12;:10;:12::i;:::-;13249:7;13277:15;13258:16;:34;13226:8;:67::i;:::-;13324:4;13317:11;;;12923:413;;;;:::o;10117:175::-;10203:4;10220:42;10230:12;:10;:12::i;:::-;10244:9;10255:6;10220:9;:42::i;:::-;10280:4;10273:11;;10117:175;;;;:::o;19789:86::-;19832:7;19859:8;;19852:15;;19789:86;:::o;10355:151::-;10444:7;10471:11;:18;10483:5;10471:18;;;;;;;;;;;;;;;:27;10490:7;10471:27;;;;;;;;;;;;;;;;10464:34;;10355:151;;;;:::o;20363:112::-;5263:12;:10;:12::i;:::-;5252:23;;:7;:5;:7::i;:::-;:23;;;5244:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;20462:5:::1;20432:18;:27;20451:7;20432:27;;;;;;;;;;;;;;;;:35;;;;;;;;;;;;;;;;;;20363:112:::0;:::o;5941:201::-;5263:12;:10;:12::i;:::-;5252:23;;:7;:5;:7::i;:::-;:23;;;5244:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;6050:1:::1;6030:22;;:8;:22;;;;6022:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;6106:28;6125:8;6106:18;:28::i;:::-;5941:201:::0;:::o;19893:84::-;19935:7;19962;;19955:14;;19893:84;:::o;3895:98::-;3948:7;3975:10;3968:17;;3895:98;:::o;16607:380::-;16760:1;16743:19;;:5;:19;;;;16735:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;16841:1;16822:21;;:7;:21;;;;16814:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;16925:6;16895:11;:18;16907:5;16895:18;;;;;;;;;;;;;;;:27;16914:7;16895:27;;;;;;;;;;;;;;;:36;;;;16963:7;16947:32;;16956:5;16947:32;;;16972:6;16947:32;;;;;;:::i;:::-;;;;;;;;16607:380;;;:::o;20483:693::-;20616:1;20598:20;;:6;:20;;;;20590:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;20700:1;20679:23;;:9;:23;;;;20671:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;20753:21;20777:17;20787:6;20777:9;:17::i;:::-;20753:41;;20830:6;20813:13;:23;;20805:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;20892:47;20913:6;20921:9;20932:6;20892:20;:47::i;:::-;20952:12;20967:4;20952:19;;20995:18;:26;21014:6;20995:26;;;;;;;;;;;;;;;;;;;;;;;;;:59;;;;21025:18;:29;21044:9;21025:29;;;;;;;;;;;;;;;;;;;;;;;;;20995:59;20992:106;;;21081:5;21071:15;;20992:106;21118:50;21133:6;21141:9;21152:6;21160:7;21118:14;:50::i;:::-;20579:597;;20483:693;;;:::o;6302:191::-;6376:16;6395:6;;;;;;;;;;;6376:25;;6421:8;6412:6;;:17;;;;;;;;;;;;;;;;;;6476:8;6445:40;;6466:8;6445:40;;;;;;;;;;;;6365:128;6302:191;:::o;17587:125::-;;;;:::o;21184:289::-;21286:7;21282:54;;21310:14;:12;:14::i;:::-;21282:54;21356:34;21374:4;21380:2;21384:5;21356:17;:34::i;:::-;21415:7;21411:55;;21439:15;:13;:15::i;:::-;21411:55;21184:289;;;;:::o;21481:246::-;21540:1;21529:7;;:12;:29;;;;;21557:1;21545:8;;:13;21529:29;21526:41;;;21560:7;;21526:41;21609:7;;21591:15;:25;;;;21648:8;;21629:16;:27;;;;21691:1;21681:7;:11;;;;21716:1;21705:8;:12;;;;21481:246;:::o;21876:416::-;21964:22;21989:26;22008:6;21989:18;:26::i;:::-;21964:51;;22072:6;22054:9;:15;22064:4;22054:15;;;;;;;;;;;;;;;;:24;;;;:::i;:::-;22036:9;:15;22046:4;22036:15;;;;;;;;;;;;;;;:42;;;;22121:14;22105:9;:13;22115:2;22105:13;;;;;;;;;;;;;;;;:30;;;;:::i;:::-;22089:9;:13;22099:2;22089:13;;;;;;;;;;;;;;;:46;;;;22156:29;22172:4;22178:6;22156:15;:29::i;:::-;22196:28;22211:4;22217:6;22196:14;:28::i;:::-;22265:2;22250:34;;22259:4;22250:34;;;22269:14;22250:34;;;;;;:::i;:::-;;;;;;;;21953:339;21876:416;;;:::o;21743:121::-;21799:15;;21789:7;:25;;;;21838:16;;21827:8;:27;;;;21743:121::o;22300:225::-;22365:7;22385:16;22404:28;22425:6;22404:20;:28::i;:::-;22385:47;;22443:22;22477:8;22468:6;:17;;;;:::i;:::-;22443:42;;22503:14;22496:21;;;;22300:225;;;:::o;22766:271::-;22842:15;22880:3;22869:8;;22860:6;:17;;;;:::i;:::-;:23;;;;:::i;:::-;22842:41;;22907:1;22897:7;:11;22894:136;;;22954:7;22939:12;;:22;;;;:::i;:::-;22924:12;:37;;;;23006:1;22981:37;;22990:6;22981:37;;;23010:7;22981:37;;;;;;:::i;:::-;;;;;;;;22894:136;22831:206;22766:271;;:::o;23049:286::-;23124:14;23160:3;23150:7;;23141:6;:16;;;;:::i;:::-;:22;;;;:::i;:::-;23124:39;;23186:1;23177:6;:10;23174:154;;;23253:6;23228:9;:22;23238:11;;;;;;;;;;;23228:22;;;;;;;;;;;;;;;;:31;;;;:::i;:::-;23203:9;:22;23213:11;;;;;;;;;;;23203:22;;;;;;;;;;;;;;;:56;;;;23296:11;;;;;;;;;;;23279:37;;23288:6;23279:37;;;23309:6;23279:37;;;;;;:::i;:::-;;;;;;;;23174:154;23113:222;23049:286;;:::o;22537:211::-;22604:7;22624:16;22653:8;;22643:7;;:18;;;;:::i;:::-;22624:37;;22672:16;22711:3;22700:8;22691:6;:17;;;;:::i;:::-;:23;;;;:::i;:::-;22672:42;;22732:8;22725:15;;;;22537:211;;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:307::-;355:1;365:113;379:6;376:1;373:13;365:113;;;464:1;459:3;455:11;449:18;445:1;440:3;436:11;429:39;401:2;398:1;394:10;389:15;;365:113;;;496:6;493:1;490:13;487:101;;;576:1;567:6;562:3;558:16;551:27;487:101;336:258;287:307;;;:::o;600:102::-;641:6;692:2;688:7;683:2;676:5;672:14;668:28;658:38;;600:102;;;:::o;708:364::-;796:3;824:39;857:5;824:39;:::i;:::-;879:71;943:6;938:3;879:71;:::i;:::-;872:78;;959:52;1004:6;999:3;992:4;985:5;981:16;959:52;:::i;:::-;1036:29;1058:6;1036:29;:::i;:::-;1031:3;1027:39;1020:46;;800:272;708:364;;;;:::o;1078:313::-;1191:4;1229:2;1218:9;1214:18;1206:26;;1278:9;1272:4;1268:20;1264:1;1253:9;1249:17;1242:47;1306:78;1379:4;1370:6;1306:78;:::i;:::-;1298:86;;1078:313;;;;:::o;1478:117::-;1587:1;1584;1577:12;1724:126;1761:7;1801:42;1794:5;1790:54;1779:65;;1724:126;;;:::o;1856:96::-;1893:7;1922:24;1940:5;1922:24;:::i;:::-;1911:35;;1856:96;;;:::o;1958:122::-;2031:24;2049:5;2031:24;:::i;:::-;2024:5;2021:35;2011:63;;2070:1;2067;2060:12;2011:63;1958:122;:::o;2086:139::-;2132:5;2170:6;2157:20;2148:29;;2186:33;2213:5;2186:33;:::i;:::-;2086:139;;;;:::o;2231:77::-;2268:7;2297:5;2286:16;;2231:77;;;:::o;2314:122::-;2387:24;2405:5;2387:24;:::i;:::-;2380:5;2377:35;2367:63;;2426:1;2423;2416:12;2367:63;2314:122;:::o;2442:139::-;2488:5;2526:6;2513:20;2504:29;;2542:33;2569:5;2542:33;:::i;:::-;2442:139;;;;:::o;2587:474::-;2655:6;2663;2712:2;2700:9;2691:7;2687:23;2683:32;2680:119;;;2718:79;;:::i;:::-;2680:119;2838:1;2863:53;2908:7;2899:6;2888:9;2884:22;2863:53;:::i;:::-;2853:63;;2809:117;2965:2;2991:53;3036:7;3027:6;3016:9;3012:22;2991:53;:::i;:::-;2981:63;;2936:118;2587:474;;;;;:::o;3067:90::-;3101:7;3144:5;3137:13;3130:21;3119:32;;3067:90;;;:::o;3163:109::-;3244:21;3259:5;3244:21;:::i;:::-;3239:3;3232:34;3163:109;;:::o;3278:210::-;3365:4;3403:2;3392:9;3388:18;3380:26;;3416:65;3478:1;3467:9;3463:17;3454:6;3416:65;:::i;:::-;3278:210;;;;:::o;3494:118::-;3581:24;3599:5;3581:24;:::i;:::-;3576:3;3569:37;3494:118;;:::o;3618:222::-;3711:4;3749:2;3738:9;3734:18;3726:26;;3762:71;3830:1;3819:9;3815:17;3806:6;3762:71;:::i;:::-;3618:222;;;;:::o;3846:619::-;3923:6;3931;3939;3988:2;3976:9;3967:7;3963:23;3959:32;3956:119;;;3994:79;;:::i;:::-;3956:119;4114:1;4139:53;4184:7;4175:6;4164:9;4160:22;4139:53;:::i;:::-;4129:63;;4085:117;4241:2;4267:53;4312:7;4303:6;4292:9;4288:22;4267:53;:::i;:::-;4257:63;;4212:118;4369:2;4395:53;4440:7;4431:6;4420:9;4416:22;4395:53;:::i;:::-;4385:63;;4340:118;3846:619;;;;;:::o;4471:86::-;4506:7;4546:4;4539:5;4535:16;4524:27;;4471:86;;;:::o;4563:112::-;4646:22;4662:5;4646:22;:::i;:::-;4641:3;4634:35;4563:112;;:::o;4681:214::-;4770:4;4808:2;4797:9;4793:18;4785:26;;4821:67;4885:1;4874:9;4870:17;4861:6;4821:67;:::i;:::-;4681:214;;;;:::o;4901:329::-;4960:6;5009:2;4997:9;4988:7;4984:23;4980:32;4977:119;;;5015:79;;:::i;:::-;4977:119;5135:1;5160:53;5205:7;5196:6;5185:9;5181:22;5160:53;:::i;:::-;5150:63;;5106:117;4901:329;;;;:::o;5236:118::-;5323:24;5341:5;5323:24;:::i;:::-;5318:3;5311:37;5236:118;;:::o;5360:222::-;5453:4;5491:2;5480:9;5476:18;5468:26;;5504:71;5572:1;5561:9;5557:17;5548:6;5504:71;:::i;:::-;5360:222;;;;:::o;5588:474::-;5656:6;5664;5713:2;5701:9;5692:7;5688:23;5684:32;5681:119;;;5719:79;;:::i;:::-;5681:119;5839:1;5864:53;5909:7;5900:6;5889:9;5885:22;5864:53;:::i;:::-;5854:63;;5810:117;5966:2;5992:53;6037:7;6028:6;6017:9;6013:22;5992:53;:::i;:::-;5982:63;;5937:118;5588:474;;;;;:::o;6068:180::-;6116:77;6113:1;6106:88;6213:4;6210:1;6203:15;6237:4;6234:1;6227:15;6254:320;6298:6;6335:1;6329:4;6325:12;6315:22;;6382:1;6376:4;6372:12;6403:18;6393:81;;6459:4;6451:6;6447:17;6437:27;;6393:81;6521:2;6513:6;6510:14;6490:18;6487:38;6484:84;;;6540:18;;:::i;:::-;6484:84;6305:269;6254:320;;;:::o;6580:227::-;6720:34;6716:1;6708:6;6704:14;6697:58;6789:10;6784:2;6776:6;6772:15;6765:35;6580:227;:::o;6813:366::-;6955:3;6976:67;7040:2;7035:3;6976:67;:::i;:::-;6969:74;;7052:93;7141:3;7052:93;:::i;:::-;7170:2;7165:3;7161:12;7154:19;;6813:366;;;:::o;7185:419::-;7351:4;7389:2;7378:9;7374:18;7366:26;;7438:9;7432:4;7428:20;7424:1;7413:9;7409:17;7402:47;7466:131;7592:4;7466:131;:::i;:::-;7458:139;;7185:419;;;:::o;7610:180::-;7658:77;7655:1;7648:88;7755:4;7752:1;7745:15;7779:4;7776:1;7769:15;7796:305;7836:3;7855:20;7873:1;7855:20;:::i;:::-;7850:25;;7889:20;7907:1;7889:20;:::i;:::-;7884:25;;8043:1;7975:66;7971:74;7968:1;7965:81;7962:107;;;8049:18;;:::i;:::-;7962:107;8093:1;8090;8086:9;8079:16;;7796:305;;;;:::o;8107:182::-;8247:34;8243:1;8235:6;8231:14;8224:58;8107:182;:::o;8295:366::-;8437:3;8458:67;8522:2;8517:3;8458:67;:::i;:::-;8451:74;;8534:93;8623:3;8534:93;:::i;:::-;8652:2;8647:3;8643:12;8636:19;;8295:366;;;:::o;8667:419::-;8833:4;8871:2;8860:9;8856:18;8848:26;;8920:9;8914:4;8910:20;8906:1;8895:9;8891:17;8884:47;8948:131;9074:4;8948:131;:::i;:::-;8940:139;;8667:419;;;:::o;9092:224::-;9232:34;9228:1;9220:6;9216:14;9209:58;9301:7;9296:2;9288:6;9284:15;9277:32;9092:224;:::o;9322:366::-;9464:3;9485:67;9549:2;9544:3;9485:67;:::i;:::-;9478:74;;9561:93;9650:3;9561:93;:::i;:::-;9679:2;9674:3;9670:12;9663:19;;9322:366;;;:::o;9694:419::-;9860:4;9898:2;9887:9;9883:18;9875:26;;9947:9;9941:4;9937:20;9933:1;9922:9;9918:17;9911:47;9975:131;10101:4;9975:131;:::i;:::-;9967:139;;9694:419;;;:::o;10119:225::-;10259:34;10255:1;10247:6;10243:14;10236:58;10328:8;10323:2;10315:6;10311:15;10304:33;10119:225;:::o;10350:366::-;10492:3;10513:67;10577:2;10572:3;10513:67;:::i;:::-;10506:74;;10589:93;10678:3;10589:93;:::i;:::-;10707:2;10702:3;10698:12;10691:19;;10350:366;;;:::o;10722:419::-;10888:4;10926:2;10915:9;10911:18;10903:26;;10975:9;10969:4;10965:20;10961:1;10950:9;10946:17;10939:47;11003:131;11129:4;11003:131;:::i;:::-;10995:139;;10722:419;;;:::o;11147:223::-;11287:34;11283:1;11275:6;11271:14;11264:58;11356:6;11351:2;11343:6;11339:15;11332:31;11147:223;:::o;11376:366::-;11518:3;11539:67;11603:2;11598:3;11539:67;:::i;:::-;11532:74;;11615:93;11704:3;11615:93;:::i;:::-;11733:2;11728:3;11724:12;11717:19;;11376:366;;;:::o;11748:419::-;11914:4;11952:2;11941:9;11937:18;11929:26;;12001:9;11995:4;11991:20;11987:1;11976:9;11972:17;11965:47;12029:131;12155:4;12029:131;:::i;:::-;12021:139;;11748:419;;;:::o;12173:221::-;12313:34;12309:1;12301:6;12297:14;12290:58;12382:4;12377:2;12369:6;12365:15;12358:29;12173:221;:::o;12400:366::-;12542:3;12563:67;12627:2;12622:3;12563:67;:::i;:::-;12556:74;;12639:93;12728:3;12639:93;:::i;:::-;12757:2;12752:3;12748:12;12741:19;;12400:366;;;:::o;12772:419::-;12938:4;12976:2;12965:9;12961:18;12953:26;;13025:9;13019:4;13015:20;13011:1;13000:9;12996:17;12989:47;13053:131;13179:4;13053:131;:::i;:::-;13045:139;;12772:419;;;:::o;13197:224::-;13337:34;13333:1;13325:6;13321:14;13314:58;13406:7;13401:2;13393:6;13389:15;13382:32;13197:224;:::o;13427:366::-;13569:3;13590:67;13654:2;13649:3;13590:67;:::i;:::-;13583:74;;13666:93;13755:3;13666:93;:::i;:::-;13784:2;13779:3;13775:12;13768:19;;13427:366;;;:::o;13799:419::-;13965:4;14003:2;13992:9;13988:18;13980:26;;14052:9;14046:4;14042:20;14038:1;14027:9;14023:17;14016:47;14080:131;14206:4;14080:131;:::i;:::-;14072:139;;13799:419;;;:::o;14224:222::-;14364:34;14360:1;14352:6;14348:14;14341:58;14433:5;14428:2;14420:6;14416:15;14409:30;14224:222;:::o;14452:366::-;14594:3;14615:67;14679:2;14674:3;14615:67;:::i;:::-;14608:74;;14691:93;14780:3;14691:93;:::i;:::-;14809:2;14804:3;14800:12;14793:19;;14452:366;;;:::o;14824:419::-;14990:4;15028:2;15017:9;15013:18;15005:26;;15077:9;15071:4;15067:20;15063:1;15052:9;15048:17;15041:47;15105:131;15231:4;15105:131;:::i;:::-;15097:139;;14824:419;;;:::o;15249:225::-;15389:34;15385:1;15377:6;15373:14;15366:58;15458:8;15453:2;15445:6;15441:15;15434:33;15249:225;:::o;15480:366::-;15622:3;15643:67;15707:2;15702:3;15643:67;:::i;:::-;15636:74;;15719:93;15808:3;15719:93;:::i;:::-;15837:2;15832:3;15828:12;15821:19;;15480:366;;;:::o;15852:419::-;16018:4;16056:2;16045:9;16041:18;16033:26;;16105:9;16099:4;16095:20;16091:1;16080:9;16076:17;16069:47;16133:131;16259:4;16133:131;:::i;:::-;16125:139;;15852:419;;;:::o;16277:191::-;16317:4;16337:20;16355:1;16337:20;:::i;:::-;16332:25;;16371:20;16389:1;16371:20;:::i;:::-;16366:25;;16410:1;16407;16404:8;16401:34;;;16415:18;;:::i;:::-;16401:34;16460:1;16457;16453:9;16445:17;;16277:191;;;;:::o;16474:348::-;16514:7;16537:20;16555:1;16537:20;:::i;:::-;16532:25;;16571:20;16589:1;16571:20;:::i;:::-;16566:25;;16759:1;16691:66;16687:74;16684:1;16681:81;16676:1;16669:9;16662:17;16658:105;16655:131;;;16766:18;;:::i;:::-;16655:131;16814:1;16811;16807:9;16796:20;;16474:348;;;;:::o;16828:180::-;16876:77;16873:1;16866:88;16973:4;16970:1;16963:15;16997:4;16994:1;16987:15;17014:185;17054:1;17071:20;17089:1;17071:20;:::i;:::-;17066:25;;17105:20;17123:1;17105:20;:::i;:::-;17100:25;;17144:1;17134:35;;17149:18;;:::i;:::-;17134:35;17191:1;17188;17184:9;17179:14;;17014:185;;;;:::o
Swarm Source
ipfs://ac24f2e9a0855eba4997c37c1041c859b16e0488328d14613d264c52d4200e22
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.