ERC-20
Marketplace
Overview
Max Total Supply
10,000,000,000 RKC
Holders
7,882 ( 0.013%)
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
RakuichiToken
Compiler Version
v0.8.20+commit.a1b79de6
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2024-05-28 */ // Sources flattened with hardhat v2.22.4 https://hardhat.org // SPDX-License-Identifier: MIT // File contracts/interfaces/IERC20.sol // Original license: SPDX_License_Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.20; // Init data string constant TOKEN_NAME = 'RAKUICHI Token'; string constant TOKEN_SYMBOL = 'RKC'; uint constant INITIAL_VOLUME = 10000000000; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `from` to `to` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 amount ) external returns (bool); } // File contracts/interfaces/IERC20Metadata.sol /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); } // File contracts/libraries/Context.sol /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File contracts/interfaces/ERC20.sol /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of ERC20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; mapping(address => bool) public isLocked; 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(); require(isLocked[owner] != true, "Address is blocked transfer"); _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(); require(isLocked[from] != true, "Address is blocked transfer"); _spendAllowance(from, spender, amount); _transfer(from, to, amount); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { address owner = _msgSender(); _approve(owner, spender, allowance(owner, spender) + addedValue); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { address owner = _msgSender(); uint256 currentAllowance = allowance(owner, spender); require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(owner, spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `from` to `to`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. */ function _transfer( address from, address to, uint256 amount ) internal virtual { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(from, to, amount); uint256 fromBalance = _balances[from]; require(fromBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[from] = fromBalance - amount; } _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 Updates `owner` s allowance for `spender` based on spent `amount`. * * Does not update the allowance amount in case of infinite allowance. * Revert if not enough allowance is available. * * Might emit an {Approval} event. */ function _spendAllowance( address owner, address spender, uint256 amount ) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { require(currentAllowance >= amount, "ERC20: insufficient allowance"); unchecked { _approve(owner, spender, currentAllowance - amount); } } } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 amount ) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * has been transferred to `to`. * - when `from` is zero, `amount` tokens have been minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens have been burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 amount ) internal virtual {} function burn(uint256 amount) public virtual returns (bool) { address owner = _msgSender(); _burn(owner, amount); return true; } function _lock(address to, bool value) internal virtual { isLocked[to] = value; } } // File contracts/libraries/Ownable.sol /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File contracts/libraries/OwnerOperator.sol abstract contract OwnerOperator is Ownable { mapping(address => bool) public operators; modifier operatorOrOwner() { require( operators[msg.sender] || owner() == msg.sender, "OwnerOperator: !operator, !owner" ); _; } modifier onlyOperator() { require(operators[msg.sender], "OwnerOperator: !operator"); _; } function addOperator(address operator) external virtual onlyOwner { require( operator != address(0), "OwnerOperator: operator is the zero address" ); operators[operator] = true; } function removeOperator(address operator) external virtual onlyOwner { require( operator != address(0), "OwnerOperator: operator is the zero address" ); operators[operator] = false; } } // File contracts/libraries/EnumerableSet.sol /** * @dev Library for managing * https://en.wikipedia.org/wiki/Set_(abstract_data_type)[sets] of primitive * types. * * Sets have the following properties: * * - Elements are added, removed, and checked for existence in constant time * (O(1)). * - Elements are enumerated in O(n). No guarantees are made on the ordering. * * ```solidity * contract Example { * // Add the library methods * using EnumerableSet for EnumerableSet.AddressSet; * * // Declare a set state variable * EnumerableSet.AddressSet private mySet; * } * ``` * * As of v3.3.0, sets of type `bytes32` (`Bytes32Set`), `address` (`AddressSet`) * and `uint256` (`UintSet`) are supported. * * [WARNING] * ==== * Trying to delete such a structure from storage will likely result in data corruption, rendering the structure * unusable. * See https://github.com/ethereum/solidity/pull/11843[ethereum/solidity#11843] for more info. * * In order to clean an EnumerableSet, you can either remove all elements one by one or create a fresh instance using an * array of EnumerableSet. * ==== */ library EnumerableSet { // To implement this library for multiple types with as little code // repetition as possible, we write it in terms of a generic Set type with // bytes32 values. // The Set implementation uses private functions, and user-facing // implementations (such as AddressSet) are just wrappers around the // underlying Set. // This means that we can only create new EnumerableSets for types that fit // in bytes32. struct Set { // Storage of set values bytes32[] _values; // Position is the index of the value in the `values` array plus 1. // Position 0 is used to mean a value is not in the set. mapping(bytes32 value => uint256) _positions; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function _add(Set storage set, bytes32 value) private returns (bool) { if (!_contains(set, value)) { set._values.push(value); // The value is stored at length-1, but we add 1 to all indexes // and use 0 as a sentinel value set._positions[value] = set._values.length; return true; } else { return false; } } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function _remove(Set storage set, bytes32 value) private returns (bool) { // We cache the value's position to prevent multiple reads from the same storage slot uint256 position = set._positions[value]; if (position != 0) { // Equivalent to contains(set, value) // To delete an element from the _values array in O(1), we swap the element to delete with the last one in // the array, and then remove the last element (sometimes called as 'swap and pop'). // This modifies the order of the array, as noted in {at}. uint256 valueIndex = position - 1; uint256 lastIndex = set._values.length - 1; if (valueIndex != lastIndex) { bytes32 lastValue = set._values[lastIndex]; // Move the lastValue to the index where the value to delete is set._values[valueIndex] = lastValue; // Update the tracked position of the lastValue (that was just moved) set._positions[lastValue] = position; } // Delete the slot where the moved value was stored set._values.pop(); // Delete the tracked position for the deleted slot delete set._positions[value]; return true; } else { return false; } } /** * @dev Returns true if the value is in the set. O(1). */ function _contains(Set storage set, bytes32 value) private view returns (bool) { return set._positions[value] != 0; } /** * @dev Returns the number of values on the set. O(1). */ function _length(Set storage set) private view returns (uint256) { return set._values.length; } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function _at(Set storage set, uint256 index) private view returns (bytes32) { return set._values[index]; } /** * @dev Return the entire set in an array * * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that * this function has an unbounded cost, and using it as part of a state-changing function may render the function * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block. */ function _values(Set storage set) private view returns (bytes32[] memory) { return set._values; } // Bytes32Set struct Bytes32Set { Set _inner; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function add(Bytes32Set storage set, bytes32 value) internal returns (bool) { return _add(set._inner, value); } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function remove(Bytes32Set storage set, bytes32 value) internal returns (bool) { return _remove(set._inner, value); } /** * @dev Returns true if the value is in the set. O(1). */ function contains(Bytes32Set storage set, bytes32 value) internal view returns (bool) { return _contains(set._inner, value); } /** * @dev Returns the number of values in the set. O(1). */ function length(Bytes32Set storage set) internal view returns (uint256) { return _length(set._inner); } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function at(Bytes32Set storage set, uint256 index) internal view returns (bytes32) { return _at(set._inner, index); } /** * @dev Return the entire set in an array * * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that * this function has an unbounded cost, and using it as part of a state-changing function may render the function * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block. */ function values(Bytes32Set storage set) internal view returns (bytes32[] memory) { bytes32[] memory store = _values(set._inner); bytes32[] memory result; /// @solidity memory-safe-assembly assembly { result := store } return result; } // AddressSet struct AddressSet { Set _inner; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function add(AddressSet storage set, address value) internal returns (bool) { return _add(set._inner, bytes32(uint256(uint160(value)))); } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function remove(AddressSet storage set, address value) internal returns (bool) { return _remove(set._inner, bytes32(uint256(uint160(value)))); } /** * @dev Returns true if the value is in the set. O(1). */ function contains(AddressSet storage set, address value) internal view returns (bool) { return _contains(set._inner, bytes32(uint256(uint160(value)))); } /** * @dev Returns the number of values in the set. O(1). */ function length(AddressSet storage set) internal view returns (uint256) { return _length(set._inner); } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function at(AddressSet storage set, uint256 index) internal view returns (address) { return address(uint160(uint256(_at(set._inner, index)))); } /** * @dev Return the entire set in an array * * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that * this function has an unbounded cost, and using it as part of a state-changing function may render the function * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block. */ function values(AddressSet storage set) internal view returns (address[] memory) { bytes32[] memory store = _values(set._inner); address[] memory result; /// @solidity memory-safe-assembly assembly { result := store } return result; } // UintSet struct UintSet { Set _inner; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function add(UintSet storage set, uint256 value) internal returns (bool) { return _add(set._inner, bytes32(value)); } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function remove(UintSet storage set, uint256 value) internal returns (bool) { return _remove(set._inner, bytes32(value)); } /** * @dev Returns true if the value is in the set. O(1). */ function contains(UintSet storage set, uint256 value) internal view returns (bool) { return _contains(set._inner, bytes32(value)); } /** * @dev Returns the number of values in the set. O(1). */ function length(UintSet storage set) internal view returns (uint256) { return _length(set._inner); } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function at(UintSet storage set, uint256 index) internal view returns (uint256) { return uint256(_at(set._inner, index)); } /** * @dev Return the entire set in an array * * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that * this function has an unbounded cost, and using it as part of a state-changing function may render the function * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block. */ function values(UintSet storage set) internal view returns (uint256[] memory) { bytes32[] memory store = _values(set._inner); uint256[] memory result; /// @solidity memory-safe-assembly assembly { result := store } return result; } } // File contracts/RakuichiToken.sol contract RakuichiToken is ERC20, OwnerOperator { constructor() ERC20(TOKEN_NAME, TOKEN_SYMBOL) { _mint(msg.sender, INITIAL_VOLUME * 10 ** 18); } function mint(address to, uint256 amount) public operatorOrOwner { _mint(to, amount); } function lock(address userAddress, bool value) public operatorOrOwner { _lock(userAddress, value); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"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":"operator","type":"address"}],"name":"addOperator","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":"amount","type":"uint256"}],"name":"burn","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":[{"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":"","type":"address"}],"name":"isLocked","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"userAddress","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"lock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"operators","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"}],"name":"removeOperator","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":"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"}]
Contract Creation Code
608060405234801562000010575f80fd5b506040518060400160405280600e81526020017f52414b554943484920546f6b656e0000000000000000000000000000000000008152506040518060400160405280600381526020017f524b43000000000000000000000000000000000000000000000000000000000081525081600490816200008e91906200059d565b508060059081620000a091906200059d565b505050620000c3620000b7620000f560201b60201c565b620000fc60201b60201c565b620000ef33670de0b6b3a76400006402540be400620000e39190620006ae565b620001bf60201b60201c565b620007dc565b5f33905090565b5f60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160065f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000230576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002279062000756565b60405180910390fd5b620002435f83836200032f60201b60201c565b8060035f82825462000256919062000776565b92505081905550805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f828254620002aa919062000776565b925050819055508173ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620003109190620007c1565b60405180910390a36200032b5f83836200033460201b60201c565b5050565b505050565b505050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680620003b557607f821691505b602082108103620003cb57620003ca62000370565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f600883026200042f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620003f2565b6200043b8683620003f2565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f620004856200047f620004798462000453565b6200045c565b62000453565b9050919050565b5f819050919050565b620004a08362000465565b620004b8620004af826200048c565b848454620003fe565b825550505050565b5f90565b620004ce620004c0565b620004db81848462000495565b505050565b5b818110156200050257620004f65f82620004c4565b600181019050620004e1565b5050565b601f82111562000551576200051b81620003d1565b6200052684620003e3565b8101602085101562000536578190505b6200054e6200054585620003e3565b830182620004e0565b50505b505050565b5f82821c905092915050565b5f620005735f198460080262000556565b1980831691505092915050565b5f6200058d838362000562565b9150826002028217905092915050565b620005a88262000339565b67ffffffffffffffff811115620005c457620005c362000343565b5b620005d082546200039d565b620005dd82828562000506565b5f60209050601f83116001811462000613575f8415620005fe578287015190505b6200060a858262000580565b86555062000679565b601f1984166200062386620003d1565b5f5b828110156200064c5784890151825560018201915060208501945060208101905062000625565b868310156200066c578489015162000668601f89168262000562565b8355505b6001600288020188555050505b505050505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f620006ba8262000453565b9150620006c78362000453565b9250828202620006d78162000453565b91508282048414831517620006f157620006f062000681565b5b5092915050565b5f82825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f2061646472657373005f82015250565b5f6200073e601f83620006f8565b91506200074b8262000708565b602082019050919050565b5f6020820190508181035f8301526200076f8162000730565b9050919050565b5f620007828262000453565b91506200078f8362000453565b9250828201905080821115620007aa57620007a962000681565b5b92915050565b620007bb8162000453565b82525050565b5f602082019050620007d65f830184620007b0565b92915050565b61229a80620007ea5f395ff3fe608060405234801561000f575f80fd5b5060043610610135575f3560e01c80635f8f9c5d116100b65780639870d7fe1161007a5780639870d7fe14610361578063a457c2d71461037d578063a9059cbb146103ad578063ac8a584a146103dd578063dd62ed3e146103f9578063f2fde38b1461042957610135565b80635f8f9c5d146102cf57806370a08231146102eb578063715018a61461031b5780638da5cb5b1461032557806395d89b411461034357610135565b8063313ce567116100fd578063313ce56714610205578063395093511461022357806340c10f191461025357806342966c681461026f5780634a4fbeec1461029f57610135565b806306fdde0314610139578063095ea7b31461015757806313e7c9d81461018757806318160ddd146101b757806323b872dd146101d5575b5f80fd5b610141610445565b60405161014e91906116ee565b60405180910390f35b610171600480360381019061016c919061179f565b6104d5565b60405161017e91906117f7565b60405180910390f35b6101a1600480360381019061019c9190611810565b6104f7565b6040516101ae91906117f7565b60405180910390f35b6101bf610514565b6040516101cc919061184a565b60405180910390f35b6101ef60048036038101906101ea9190611863565b61051d565b6040516101fc91906117f7565b60405180910390f35b61020d6105db565b60405161021a91906118ce565b60405180910390f35b61023d6004803603810190610238919061179f565b6105e3565b60405161024a91906117f7565b60405180910390f35b61026d6004803603810190610268919061179f565b610619565b005b610289600480360381019061028491906118e7565b6106ed565b60405161029691906117f7565b60405180910390f35b6102b960048036038101906102b49190611810565b61070d565b6040516102c691906117f7565b60405180910390f35b6102e960048036038101906102e4919061193c565b61072a565b005b61030560048036038101906103009190611810565b6107fe565b604051610312919061184a565b60405180910390f35b610323610843565b005b61032d610856565b60405161033a9190611989565b60405180910390f35b61034b61087e565b60405161035891906116ee565b60405180910390f35b61037b60048036038101906103769190611810565b61090e565b005b6103976004803603810190610392919061179f565b6109dc565b6040516103a491906117f7565b60405180910390f35b6103c760048036038101906103c2919061179f565b610a51565b6040516103d491906117f7565b60405180910390f35b6103f760048036038101906103f29190611810565b610b03565b005b610413600480360381019061040e91906119a2565b610bd0565b604051610420919061184a565b60405180910390f35b610443600480360381019061043e9190611810565b610c52565b005b60606004805461045490611a0d565b80601f016020809104026020016040519081016040528092919081815260200182805461048090611a0d565b80156104cb5780601f106104a2576101008083540402835291602001916104cb565b820191905f5260205f20905b8154815290600101906020018083116104ae57829003601f168201915b5050505050905090565b5f806104df610cd4565b90506104ec818585610cdb565b600191505092915050565b6007602052805f5260405f205f915054906101000a900460ff1681565b5f600354905090565b5f80610527610cd4565b90506001151560025f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff161515036105b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105b090611a87565b60405180910390fd5b6105c4858285610e9e565b6105cf858585610f29565b60019150509392505050565b5f6012905090565b5f806105ed610cd4565b905061060e8185856105ff8589610bd0565b6106099190611ad2565b610cdb565b600191505092915050565b60075f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16806106a057503373ffffffffffffffffffffffffffffffffffffffff16610688610856565b73ffffffffffffffffffffffffffffffffffffffff16145b6106df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106d690611b4f565b60405180910390fd5b6106e9828261119e565b5050565b5f806106f7610cd4565b905061070381846112f5565b6001915050919050565b6002602052805f5260405f205f915054906101000a900460ff1681565b60075f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16806107b157503373ffffffffffffffffffffffffffffffffffffffff16610799610856565b73ffffffffffffffffffffffffffffffffffffffff16145b6107f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107e790611b4f565b60405180910390fd5b6107fa82826114c1565b5050565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b61084b611519565b6108545f611597565b565b5f60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606005805461088d90611a0d565b80601f01602080910402602001604051908101604052809291908181526020018280546108b990611a0d565b80156109045780601f106108db57610100808354040283529160200191610904565b820191905f5260205f20905b8154815290600101906020018083116108e757829003601f168201915b5050505050905090565b610916611519565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610984576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161097b90611bdd565b60405180910390fd5b600160075f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff02191690831515021790555050565b5f806109e6610cd4565b90505f6109f38286610bd0565b905083811015610a38576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a2f90611c6b565b60405180910390fd5b610a458286868403610cdb565b60019250505092915050565b5f80610a5b610cd4565b90506001151560025f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16151503610aed576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ae490611a87565b60405180910390fd5b610af8818585610f29565b600191505092915050565b610b0b611519565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610b79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7090611bdd565b60405180910390fd5b5f60075f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff02191690831515021790555050565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b610c5a611519565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610cc8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cbf90611cf9565b60405180910390fd5b610cd181611597565b50565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610d49576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4090611d87565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610db7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dae90611e15565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610e91919061184a565b60405180910390a3505050565b5f610ea98484610bd0565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610f235781811015610f15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0c90611e7d565b60405180910390fd5b610f228484848403610cdb565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610f97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8e90611f0b565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611005576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ffc90611f99565b60405180910390fd5b61101083838361165a565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015611093576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108a90612027565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550815f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8282546111219190611ad2565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611185919061184a565b60405180910390a361119884848461165f565b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361120c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112039061208f565b60405180910390fd5b6112175f838361165a565b8060035f8282546112289190611ad2565b92505081905550805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825461127a9190611ad2565b925050819055508173ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516112de919061184a565b60405180910390a36112f15f838361165f565b5050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611363576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161135a9061211d565b60405180910390fd5b61136e825f8361165a565b5f805f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050818110156113f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113e8906121ab565b60405180910390fd5b8181035f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508160035f82825461144591906121c9565b925050819055505f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516114a9919061184a565b60405180910390a36114bc835f8461165f565b505050565b8060025f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b611521610cd4565b73ffffffffffffffffffffffffffffffffffffffff1661153f610856565b73ffffffffffffffffffffffffffffffffffffffff1614611595576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161158c90612246565b60405180910390fd5b565b5f60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160065f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b8381101561169b578082015181840152602081019050611680565b5f8484015250505050565b5f601f19601f8301169050919050565b5f6116c082611664565b6116ca818561166e565b93506116da81856020860161167e565b6116e3816116a6565b840191505092915050565b5f6020820190508181035f83015261170681846116b6565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f61173b82611712565b9050919050565b61174b81611731565b8114611755575f80fd5b50565b5f8135905061176681611742565b92915050565b5f819050919050565b61177e8161176c565b8114611788575f80fd5b50565b5f8135905061179981611775565b92915050565b5f80604083850312156117b5576117b461170e565b5b5f6117c285828601611758565b92505060206117d38582860161178b565b9150509250929050565b5f8115159050919050565b6117f1816117dd565b82525050565b5f60208201905061180a5f8301846117e8565b92915050565b5f602082840312156118255761182461170e565b5b5f61183284828501611758565b91505092915050565b6118448161176c565b82525050565b5f60208201905061185d5f83018461183b565b92915050565b5f805f6060848603121561187a5761187961170e565b5b5f61188786828701611758565b935050602061189886828701611758565b92505060406118a98682870161178b565b9150509250925092565b5f60ff82169050919050565b6118c8816118b3565b82525050565b5f6020820190506118e15f8301846118bf565b92915050565b5f602082840312156118fc576118fb61170e565b5b5f6119098482850161178b565b91505092915050565b61191b816117dd565b8114611925575f80fd5b50565b5f8135905061193681611912565b92915050565b5f80604083850312156119525761195161170e565b5b5f61195f85828601611758565b925050602061197085828601611928565b9150509250929050565b61198381611731565b82525050565b5f60208201905061199c5f83018461197a565b92915050565b5f80604083850312156119b8576119b761170e565b5b5f6119c585828601611758565b92505060206119d685828601611758565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680611a2457607f821691505b602082108103611a3757611a366119e0565b5b50919050565b7f4164647265737320697320626c6f636b6564207472616e7366657200000000005f82015250565b5f611a71601b8361166e565b9150611a7c82611a3d565b602082019050919050565b5f6020820190508181035f830152611a9e81611a65565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f611adc8261176c565b9150611ae78361176c565b9250828201905080821115611aff57611afe611aa5565b5b92915050565b7f4f776e65724f70657261746f723a20216f70657261746f722c20216f776e65725f82015250565b5f611b3960208361166e565b9150611b4482611b05565b602082019050919050565b5f6020820190508181035f830152611b6681611b2d565b9050919050565b7f4f776e65724f70657261746f723a206f70657261746f7220697320746865207a5f8201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b5f611bc7602b8361166e565b9150611bd282611b6d565b604082019050919050565b5f6020820190508181035f830152611bf481611bbb565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f611c5560258361166e565b9150611c6082611bfb565b604082019050919050565b5f6020820190508181035f830152611c8281611c49565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f611ce360268361166e565b9150611cee82611c89565b604082019050919050565b5f6020820190508181035f830152611d1081611cd7565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f611d7160248361166e565b9150611d7c82611d17565b604082019050919050565b5f6020820190508181035f830152611d9e81611d65565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f611dff60228361166e565b9150611e0a82611da5565b604082019050919050565b5f6020820190508181035f830152611e2c81611df3565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000005f82015250565b5f611e67601d8361166e565b9150611e7282611e33565b602082019050919050565b5f6020820190508181035f830152611e9481611e5b565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f611ef560258361166e565b9150611f0082611e9b565b604082019050919050565b5f6020820190508181035f830152611f2281611ee9565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f611f8360238361166e565b9150611f8e82611f29565b604082019050919050565b5f6020820190508181035f830152611fb081611f77565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f61201160268361166e565b915061201c82611fb7565b604082019050919050565b5f6020820190508181035f83015261203e81612005565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f2061646472657373005f82015250565b5f612079601f8361166e565b915061208482612045565b602082019050919050565b5f6020820190508181035f8301526120a68161206d565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f206164647265735f8201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b5f61210760218361166e565b9150612112826120ad565b604082019050919050565b5f6020820190508181035f830152612134816120fb565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e5f8201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b5f61219560228361166e565b91506121a08261213b565b604082019050919050565b5f6020820190508181035f8301526121c281612189565b9050919050565b5f6121d38261176c565b91506121de8361176c565b92508282039050818111156121f6576121f5611aa5565b5b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f61223060208361166e565b915061223b826121fc565b602082019050919050565b5f6020820190508181035f83015261225d81612224565b905091905056fea264697066735822122050eb16ce65f22612908030054a5cff84bcf40455232c520701c89f5c52c30d1364736f6c63430008140033
Deployed Bytecode
0x608060405234801561000f575f80fd5b5060043610610135575f3560e01c80635f8f9c5d116100b65780639870d7fe1161007a5780639870d7fe14610361578063a457c2d71461037d578063a9059cbb146103ad578063ac8a584a146103dd578063dd62ed3e146103f9578063f2fde38b1461042957610135565b80635f8f9c5d146102cf57806370a08231146102eb578063715018a61461031b5780638da5cb5b1461032557806395d89b411461034357610135565b8063313ce567116100fd578063313ce56714610205578063395093511461022357806340c10f191461025357806342966c681461026f5780634a4fbeec1461029f57610135565b806306fdde0314610139578063095ea7b31461015757806313e7c9d81461018757806318160ddd146101b757806323b872dd146101d5575b5f80fd5b610141610445565b60405161014e91906116ee565b60405180910390f35b610171600480360381019061016c919061179f565b6104d5565b60405161017e91906117f7565b60405180910390f35b6101a1600480360381019061019c9190611810565b6104f7565b6040516101ae91906117f7565b60405180910390f35b6101bf610514565b6040516101cc919061184a565b60405180910390f35b6101ef60048036038101906101ea9190611863565b61051d565b6040516101fc91906117f7565b60405180910390f35b61020d6105db565b60405161021a91906118ce565b60405180910390f35b61023d6004803603810190610238919061179f565b6105e3565b60405161024a91906117f7565b60405180910390f35b61026d6004803603810190610268919061179f565b610619565b005b610289600480360381019061028491906118e7565b6106ed565b60405161029691906117f7565b60405180910390f35b6102b960048036038101906102b49190611810565b61070d565b6040516102c691906117f7565b60405180910390f35b6102e960048036038101906102e4919061193c565b61072a565b005b61030560048036038101906103009190611810565b6107fe565b604051610312919061184a565b60405180910390f35b610323610843565b005b61032d610856565b60405161033a9190611989565b60405180910390f35b61034b61087e565b60405161035891906116ee565b60405180910390f35b61037b60048036038101906103769190611810565b61090e565b005b6103976004803603810190610392919061179f565b6109dc565b6040516103a491906117f7565b60405180910390f35b6103c760048036038101906103c2919061179f565b610a51565b6040516103d491906117f7565b60405180910390f35b6103f760048036038101906103f29190611810565b610b03565b005b610413600480360381019061040e91906119a2565b610bd0565b604051610420919061184a565b60405180910390f35b610443600480360381019061043e9190611810565b610c52565b005b60606004805461045490611a0d565b80601f016020809104026020016040519081016040528092919081815260200182805461048090611a0d565b80156104cb5780601f106104a2576101008083540402835291602001916104cb565b820191905f5260205f20905b8154815290600101906020018083116104ae57829003601f168201915b5050505050905090565b5f806104df610cd4565b90506104ec818585610cdb565b600191505092915050565b6007602052805f5260405f205f915054906101000a900460ff1681565b5f600354905090565b5f80610527610cd4565b90506001151560025f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff161515036105b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105b090611a87565b60405180910390fd5b6105c4858285610e9e565b6105cf858585610f29565b60019150509392505050565b5f6012905090565b5f806105ed610cd4565b905061060e8185856105ff8589610bd0565b6106099190611ad2565b610cdb565b600191505092915050565b60075f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16806106a057503373ffffffffffffffffffffffffffffffffffffffff16610688610856565b73ffffffffffffffffffffffffffffffffffffffff16145b6106df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106d690611b4f565b60405180910390fd5b6106e9828261119e565b5050565b5f806106f7610cd4565b905061070381846112f5565b6001915050919050565b6002602052805f5260405f205f915054906101000a900460ff1681565b60075f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16806107b157503373ffffffffffffffffffffffffffffffffffffffff16610799610856565b73ffffffffffffffffffffffffffffffffffffffff16145b6107f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107e790611b4f565b60405180910390fd5b6107fa82826114c1565b5050565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b61084b611519565b6108545f611597565b565b5f60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606005805461088d90611a0d565b80601f01602080910402602001604051908101604052809291908181526020018280546108b990611a0d565b80156109045780601f106108db57610100808354040283529160200191610904565b820191905f5260205f20905b8154815290600101906020018083116108e757829003601f168201915b5050505050905090565b610916611519565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610984576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161097b90611bdd565b60405180910390fd5b600160075f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff02191690831515021790555050565b5f806109e6610cd4565b90505f6109f38286610bd0565b905083811015610a38576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a2f90611c6b565b60405180910390fd5b610a458286868403610cdb565b60019250505092915050565b5f80610a5b610cd4565b90506001151560025f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16151503610aed576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ae490611a87565b60405180910390fd5b610af8818585610f29565b600191505092915050565b610b0b611519565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610b79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7090611bdd565b60405180910390fd5b5f60075f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff02191690831515021790555050565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b610c5a611519565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610cc8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cbf90611cf9565b60405180910390fd5b610cd181611597565b50565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610d49576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4090611d87565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610db7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dae90611e15565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610e91919061184a565b60405180910390a3505050565b5f610ea98484610bd0565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610f235781811015610f15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0c90611e7d565b60405180910390fd5b610f228484848403610cdb565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610f97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8e90611f0b565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611005576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ffc90611f99565b60405180910390fd5b61101083838361165a565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015611093576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108a90612027565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550815f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8282546111219190611ad2565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611185919061184a565b60405180910390a361119884848461165f565b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361120c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112039061208f565b60405180910390fd5b6112175f838361165a565b8060035f8282546112289190611ad2565b92505081905550805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825461127a9190611ad2565b925050819055508173ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516112de919061184a565b60405180910390a36112f15f838361165f565b5050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611363576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161135a9061211d565b60405180910390fd5b61136e825f8361165a565b5f805f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050818110156113f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113e8906121ab565b60405180910390fd5b8181035f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508160035f82825461144591906121c9565b925050819055505f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516114a9919061184a565b60405180910390a36114bc835f8461165f565b505050565b8060025f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b611521610cd4565b73ffffffffffffffffffffffffffffffffffffffff1661153f610856565b73ffffffffffffffffffffffffffffffffffffffff1614611595576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161158c90612246565b60405180910390fd5b565b5f60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160065f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b8381101561169b578082015181840152602081019050611680565b5f8484015250505050565b5f601f19601f8301169050919050565b5f6116c082611664565b6116ca818561166e565b93506116da81856020860161167e565b6116e3816116a6565b840191505092915050565b5f6020820190508181035f83015261170681846116b6565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f61173b82611712565b9050919050565b61174b81611731565b8114611755575f80fd5b50565b5f8135905061176681611742565b92915050565b5f819050919050565b61177e8161176c565b8114611788575f80fd5b50565b5f8135905061179981611775565b92915050565b5f80604083850312156117b5576117b461170e565b5b5f6117c285828601611758565b92505060206117d38582860161178b565b9150509250929050565b5f8115159050919050565b6117f1816117dd565b82525050565b5f60208201905061180a5f8301846117e8565b92915050565b5f602082840312156118255761182461170e565b5b5f61183284828501611758565b91505092915050565b6118448161176c565b82525050565b5f60208201905061185d5f83018461183b565b92915050565b5f805f6060848603121561187a5761187961170e565b5b5f61188786828701611758565b935050602061189886828701611758565b92505060406118a98682870161178b565b9150509250925092565b5f60ff82169050919050565b6118c8816118b3565b82525050565b5f6020820190506118e15f8301846118bf565b92915050565b5f602082840312156118fc576118fb61170e565b5b5f6119098482850161178b565b91505092915050565b61191b816117dd565b8114611925575f80fd5b50565b5f8135905061193681611912565b92915050565b5f80604083850312156119525761195161170e565b5b5f61195f85828601611758565b925050602061197085828601611928565b9150509250929050565b61198381611731565b82525050565b5f60208201905061199c5f83018461197a565b92915050565b5f80604083850312156119b8576119b761170e565b5b5f6119c585828601611758565b92505060206119d685828601611758565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680611a2457607f821691505b602082108103611a3757611a366119e0565b5b50919050565b7f4164647265737320697320626c6f636b6564207472616e7366657200000000005f82015250565b5f611a71601b8361166e565b9150611a7c82611a3d565b602082019050919050565b5f6020820190508181035f830152611a9e81611a65565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f611adc8261176c565b9150611ae78361176c565b9250828201905080821115611aff57611afe611aa5565b5b92915050565b7f4f776e65724f70657261746f723a20216f70657261746f722c20216f776e65725f82015250565b5f611b3960208361166e565b9150611b4482611b05565b602082019050919050565b5f6020820190508181035f830152611b6681611b2d565b9050919050565b7f4f776e65724f70657261746f723a206f70657261746f7220697320746865207a5f8201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b5f611bc7602b8361166e565b9150611bd282611b6d565b604082019050919050565b5f6020820190508181035f830152611bf481611bbb565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f611c5560258361166e565b9150611c6082611bfb565b604082019050919050565b5f6020820190508181035f830152611c8281611c49565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f611ce360268361166e565b9150611cee82611c89565b604082019050919050565b5f6020820190508181035f830152611d1081611cd7565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f611d7160248361166e565b9150611d7c82611d17565b604082019050919050565b5f6020820190508181035f830152611d9e81611d65565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f611dff60228361166e565b9150611e0a82611da5565b604082019050919050565b5f6020820190508181035f830152611e2c81611df3565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000005f82015250565b5f611e67601d8361166e565b9150611e7282611e33565b602082019050919050565b5f6020820190508181035f830152611e9481611e5b565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f611ef560258361166e565b9150611f0082611e9b565b604082019050919050565b5f6020820190508181035f830152611f2281611ee9565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f611f8360238361166e565b9150611f8e82611f29565b604082019050919050565b5f6020820190508181035f830152611fb081611f77565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f61201160268361166e565b915061201c82611fb7565b604082019050919050565b5f6020820190508181035f83015261203e81612005565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f2061646472657373005f82015250565b5f612079601f8361166e565b915061208482612045565b602082019050919050565b5f6020820190508181035f8301526120a68161206d565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f206164647265735f8201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b5f61210760218361166e565b9150612112826120ad565b604082019050919050565b5f6020820190508181035f830152612134816120fb565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e5f8201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b5f61219560228361166e565b91506121a08261213b565b604082019050919050565b5f6020820190508181035f8301526121c281612189565b9050919050565b5f6121d38261176c565b91506121de8361176c565b92508282039050818111156121f6576121f5611aa5565b5b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f61223060208361166e565b915061223b826121fc565b602082019050919050565b5f6020820190508181035f83015261225d81612224565b905091905056fea264697066735822122050eb16ce65f22612908030054a5cff84bcf40455232c520701c89f5c52c30d1364736f6c63430008140033
Deployed Bytecode Sourcemap
34592:401:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6630:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9055:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20526:41;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7750:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9836:368;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7592:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10613:238;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34765:101;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;17566:160;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5988:40;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34874:114;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;7921:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19608:103;;;:::i;:::-;;18960:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6849:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20891:237;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;11354:436;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8254:267;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21136:241;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;8584:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19866:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;6630:100;6684:13;6717:5;6710:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6630:100;:::o;9055:201::-;9138:4;9155:13;9171:12;:10;:12::i;:::-;9155:28;;9194:32;9203:5;9210:7;9219:6;9194:8;:32::i;:::-;9244:4;9237:11;;;9055:201;;;;:::o;20526:41::-;;;;;;;;;;;;;;;;;;;;;;:::o;7750:108::-;7811:7;7838:12;;7831:19;;7750:108;:::o;9836:368::-;9967:4;9984:15;10002:12;:10;:12::i;:::-;9984:30;;10051:4;10033:22;;:8;:14;10042:4;10033:14;;;;;;;;;;;;;;;;;;;;;;;;;:22;;;10025:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;10098:38;10114:4;10120:7;10129:6;10098:15;:38::i;:::-;10147:27;10157:4;10163:2;10167:6;10147:9;:27::i;:::-;10192:4;10185:11;;;9836:368;;;;;:::o;7592:93::-;7650:5;7675:2;7668:9;;7592:93;:::o;10613:238::-;10701:4;10718:13;10734:12;:10;:12::i;:::-;10718:28;;10757:64;10766:5;10773:7;10810:10;10782:25;10792:5;10799:7;10782:9;:25::i;:::-;:38;;;;:::i;:::-;10757:8;:64::i;:::-;10839:4;10832:11;;;10613:238;;;;:::o;34765:101::-;20636:9;:21;20646:10;20636:21;;;;;;;;;;;;;;;;;;;;;;;;;:46;;;;20672:10;20661:21;;:7;:5;:7::i;:::-;:21;;;20636:46;20614:128;;;;;;;;;;;;:::i;:::-;;;;;;;;;34841:17:::1;34847:2;34851:6;34841:5;:17::i;:::-;34765:101:::0;;:::o;17566:160::-;17620:4;17637:13;17653:12;:10;:12::i;:::-;17637:28;;17676:20;17682:5;17689:6;17676:5;:20::i;:::-;17714:4;17707:11;;;17566:160;;;:::o;5988:40::-;;;;;;;;;;;;;;;;;;;;;;:::o;34874:114::-;20636:9;:21;20646:10;20636:21;;;;;;;;;;;;;;;;;;;;;;;;;:46;;;;20672:10;20661:21;;:7;:5;:7::i;:::-;:21;;;20636:46;20614:128;;;;;;;;;;;;:::i;:::-;;;;;;;;;34955:25:::1;34961:11;34974:5;34955;:25::i;:::-;34874:114:::0;;:::o;7921:127::-;7995:7;8022:9;:18;8032:7;8022:18;;;;;;;;;;;;;;;;8015:25;;7921:127;;;:::o;19608:103::-;18846:13;:11;:13::i;:::-;19673:30:::1;19700:1;19673:18;:30::i;:::-;19608:103::o:0;18960:87::-;19006:7;19033:6;;;;;;;;;;;19026:13;;18960:87;:::o;6849:104::-;6905:13;6938:7;6931:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6849:104;:::o;20891:237::-;18846:13;:11;:13::i;:::-;21010:1:::1;20990:22;;:8;:22;;::::0;20968:115:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;21116:4;21094:9;:19;21104:8;21094:19;;;;;;;;;;;;;;;;:26;;;;;;;;;;;;;;;;;;20891:237:::0;:::o;11354:436::-;11447:4;11464:13;11480:12;:10;:12::i;:::-;11464:28;;11503:24;11530:25;11540:5;11547:7;11530:9;:25::i;:::-;11503:52;;11594:15;11574:16;:35;;11566:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;11687:60;11696:5;11703:7;11731:15;11712:16;:34;11687:8;:60::i;:::-;11778:4;11771:11;;;;11354:436;;;;:::o;8254:267::-;8333:4;8350:13;8366:12;:10;:12::i;:::-;8350:28;;8416:4;8397:23;;:8;:15;8406:5;8397:15;;;;;;;;;;;;;;;;;;;;;;;;;:23;;;8389:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;8463:28;8473:5;8480:2;8484:6;8463:9;:28::i;:::-;8509:4;8502:11;;;8254:267;;;;:::o;21136:241::-;18846:13;:11;:13::i;:::-;21258:1:::1;21238:22;;:8;:22;;::::0;21216:115:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;21364:5;21342:9;:19;21352:8;21342:19;;;;;;;;;;;;;;;;:27;;;;;;;;;;;;;;;;;;21136:241:::0;:::o;8584:151::-;8673:7;8700:11;:18;8712:5;8700:18;;;;;;;;;;;;;;;:27;8719:7;8700:27;;;;;;;;;;;;;;;;8693:34;;8584:151;;;;:::o;19866:201::-;18846:13;:11;:13::i;:::-;19975:1:::1;19955:22;;:8;:22;;::::0;19947:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;20031:28;20050:8;20031:18;:28::i;:::-;19866:201:::0;:::o;4347:98::-;4400:7;4427:10;4420:17;;4347:98;:::o;14979:380::-;15132:1;15115:19;;:5;:19;;;15107:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15213:1;15194:21;;:7;:21;;;15186:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15297:6;15267:11;:18;15279:5;15267:18;;;;;;;;;;;;;;;:27;15286:7;15267:27;;;;;;;;;;;;;;;:36;;;;15335:7;15319:32;;15328:5;15319:32;;;15344:6;15319:32;;;;;;:::i;:::-;;;;;;;;14979:380;;;:::o;15650:453::-;15785:24;15812:25;15822:5;15829:7;15812:9;:25::i;:::-;15785:52;;15872:17;15852:16;:37;15848:248;;15934:6;15914:16;:26;;15906:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;16018:51;16027:5;16034:7;16062:6;16043:16;:25;16018:8;:51::i;:::-;15848:248;15774:329;15650:453;;;:::o;12260:671::-;12407:1;12391:18;;:4;:18;;;12383:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;12484:1;12470:16;;:2;:16;;;12462:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;12539:38;12560:4;12566:2;12570:6;12539:20;:38::i;:::-;12590:19;12612:9;:15;12622:4;12612:15;;;;;;;;;;;;;;;;12590:37;;12661:6;12646:11;:21;;12638:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;12778:6;12764:11;:20;12746:9;:15;12756:4;12746:15;;;;;;;;;;;;;;;:38;;;;12823:6;12806:9;:13;12816:2;12806:13;;;;;;;;;;;;;;;;:23;;;;;;;:::i;:::-;;;;;;;;12862:2;12847:26;;12856:4;12847:26;;;12866:6;12847:26;;;;;;:::i;:::-;;;;;;;;12886:37;12906:4;12912:2;12916:6;12886:19;:37::i;:::-;12372:559;12260:671;;;:::o;13218:399::-;13321:1;13302:21;;:7;:21;;;13294:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;13372:49;13401:1;13405:7;13414:6;13372:20;:49::i;:::-;13450:6;13434:12;;:22;;;;;;;:::i;:::-;;;;;;;;13489:6;13467:9;:18;13477:7;13467:18;;;;;;;;;;;;;;;;:28;;;;;;;:::i;:::-;;;;;;;;13532:7;13511:37;;13528:1;13511:37;;;13541:6;13511:37;;;;;;:::i;:::-;;;;;;;;13561:48;13589:1;13593:7;13602:6;13561:19;:48::i;:::-;13218:399;;:::o;13950:591::-;14053:1;14034:21;;:7;:21;;;14026:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;14106:49;14127:7;14144:1;14148:6;14106:20;:49::i;:::-;14168:22;14193:9;:18;14203:7;14193:18;;;;;;;;;;;;;;;;14168:43;;14248:6;14230:14;:24;;14222:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;14367:6;14350:14;:23;14329:9;:18;14339:7;14329:18;;;;;;;;;;;;;;;:44;;;;14411:6;14395:12;;:22;;;;;;;:::i;:::-;;;;;;;;14461:1;14435:37;;14444:7;14435:37;;;14465:6;14435:37;;;;;;:::i;:::-;;;;;;;;14485:48;14505:7;14522:1;14526:6;14485:19;:48::i;:::-;14015:526;13950:591;;:::o;17736:95::-;17818:5;17803:8;:12;17812:2;17803:12;;;;;;;;;;;;;;;;:20;;;;;;;;;;;;;;;;;;17736:95;;:::o;19125:132::-;19200:12;:10;:12::i;:::-;19189:23;;:7;:5;:7::i;:::-;:23;;;19181:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;19125:132::o;20227:191::-;20301:16;20320:6;;;;;;;;;;;20301:25;;20346:8;20337:6;;:17;;;;;;;;;;;;;;;;;;20401:8;20370:40;;20391:8;20370:40;;;;;;;;;;;;20290:128;20227:191;:::o;16703:125::-;;;;:::o;17432:124::-;;;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:246::-;368:1;378:113;392:6;389:1;386:13;378:113;;;477:1;472:3;468:11;462:18;458:1;453:3;449:11;442:39;414:2;411:1;407:10;402:15;;378:113;;;525:1;516:6;511:3;507:16;500:27;349:184;287:246;;;:::o;539:102::-;580:6;631:2;627:7;622:2;615:5;611:14;607:28;597:38;;539:102;;;:::o;647:377::-;735:3;763:39;796:5;763:39;:::i;:::-;818:71;882:6;877:3;818:71;:::i;:::-;811:78;;898:65;956:6;951:3;944:4;937:5;933:16;898:65;:::i;:::-;988:29;1010:6;988:29;:::i;:::-;983:3;979:39;972:46;;739:285;647:377;;;;:::o;1030:313::-;1143:4;1181:2;1170:9;1166:18;1158:26;;1230:9;1224:4;1220:20;1216:1;1205:9;1201:17;1194:47;1258:78;1331:4;1322:6;1258:78;:::i;:::-;1250:86;;1030:313;;;;:::o;1430:117::-;1539:1;1536;1529:12;1676:126;1713:7;1753:42;1746:5;1742:54;1731:65;;1676:126;;;:::o;1808:96::-;1845:7;1874:24;1892:5;1874:24;:::i;:::-;1863:35;;1808:96;;;:::o;1910:122::-;1983:24;2001:5;1983:24;:::i;:::-;1976:5;1973:35;1963:63;;2022:1;2019;2012:12;1963:63;1910:122;:::o;2038:139::-;2084:5;2122:6;2109:20;2100:29;;2138:33;2165:5;2138:33;:::i;:::-;2038:139;;;;:::o;2183:77::-;2220:7;2249:5;2238:16;;2183:77;;;:::o;2266:122::-;2339:24;2357:5;2339:24;:::i;:::-;2332:5;2329:35;2319:63;;2378:1;2375;2368:12;2319:63;2266:122;:::o;2394:139::-;2440:5;2478:6;2465:20;2456:29;;2494:33;2521:5;2494:33;:::i;:::-;2394:139;;;;:::o;2539:474::-;2607:6;2615;2664:2;2652:9;2643:7;2639:23;2635:32;2632:119;;;2670:79;;:::i;:::-;2632:119;2790:1;2815:53;2860:7;2851:6;2840:9;2836:22;2815:53;:::i;:::-;2805:63;;2761:117;2917:2;2943:53;2988:7;2979:6;2968:9;2964:22;2943:53;:::i;:::-;2933:63;;2888:118;2539:474;;;;;:::o;3019:90::-;3053:7;3096:5;3089:13;3082:21;3071:32;;3019:90;;;:::o;3115:109::-;3196:21;3211:5;3196:21;:::i;:::-;3191:3;3184:34;3115:109;;:::o;3230:210::-;3317:4;3355:2;3344:9;3340:18;3332:26;;3368:65;3430:1;3419:9;3415:17;3406:6;3368:65;:::i;:::-;3230:210;;;;:::o;3446:329::-;3505:6;3554:2;3542:9;3533:7;3529:23;3525:32;3522:119;;;3560:79;;:::i;:::-;3522:119;3680:1;3705:53;3750:7;3741:6;3730:9;3726:22;3705:53;:::i;:::-;3695:63;;3651:117;3446:329;;;;:::o;3781:118::-;3868:24;3886:5;3868:24;:::i;:::-;3863:3;3856:37;3781:118;;:::o;3905:222::-;3998:4;4036:2;4025:9;4021:18;4013:26;;4049:71;4117:1;4106:9;4102:17;4093:6;4049:71;:::i;:::-;3905:222;;;;:::o;4133:619::-;4210:6;4218;4226;4275:2;4263:9;4254:7;4250:23;4246:32;4243:119;;;4281:79;;:::i;:::-;4243:119;4401:1;4426:53;4471:7;4462:6;4451:9;4447:22;4426:53;:::i;:::-;4416:63;;4372:117;4528:2;4554:53;4599:7;4590:6;4579:9;4575:22;4554:53;:::i;:::-;4544:63;;4499:118;4656:2;4682:53;4727:7;4718:6;4707:9;4703:22;4682:53;:::i;:::-;4672:63;;4627:118;4133:619;;;;;:::o;4758:86::-;4793:7;4833:4;4826:5;4822:16;4811:27;;4758:86;;;:::o;4850:112::-;4933:22;4949:5;4933:22;:::i;:::-;4928:3;4921:35;4850:112;;:::o;4968:214::-;5057:4;5095:2;5084:9;5080:18;5072:26;;5108:67;5172:1;5161:9;5157:17;5148:6;5108:67;:::i;:::-;4968:214;;;;:::o;5188:329::-;5247:6;5296:2;5284:9;5275:7;5271:23;5267:32;5264:119;;;5302:79;;:::i;:::-;5264:119;5422:1;5447:53;5492:7;5483:6;5472:9;5468:22;5447:53;:::i;:::-;5437:63;;5393:117;5188:329;;;;:::o;5523:116::-;5593:21;5608:5;5593:21;:::i;:::-;5586:5;5583:32;5573:60;;5629:1;5626;5619:12;5573:60;5523:116;:::o;5645:133::-;5688:5;5726:6;5713:20;5704:29;;5742:30;5766:5;5742:30;:::i;:::-;5645:133;;;;:::o;5784:468::-;5849:6;5857;5906:2;5894:9;5885:7;5881:23;5877:32;5874:119;;;5912:79;;:::i;:::-;5874:119;6032:1;6057:53;6102:7;6093:6;6082:9;6078:22;6057:53;:::i;:::-;6047:63;;6003:117;6159:2;6185:50;6227:7;6218:6;6207:9;6203:22;6185:50;:::i;:::-;6175:60;;6130:115;5784:468;;;;;:::o;6258:118::-;6345:24;6363:5;6345:24;:::i;:::-;6340:3;6333:37;6258:118;;:::o;6382:222::-;6475:4;6513:2;6502:9;6498:18;6490:26;;6526:71;6594:1;6583:9;6579:17;6570:6;6526:71;:::i;:::-;6382:222;;;;:::o;6610:474::-;6678:6;6686;6735:2;6723:9;6714:7;6710:23;6706:32;6703:119;;;6741:79;;:::i;:::-;6703:119;6861:1;6886:53;6931:7;6922:6;6911:9;6907:22;6886:53;:::i;:::-;6876:63;;6832:117;6988:2;7014:53;7059:7;7050:6;7039:9;7035:22;7014:53;:::i;:::-;7004:63;;6959:118;6610:474;;;;;:::o;7090:180::-;7138:77;7135:1;7128:88;7235:4;7232:1;7225:15;7259:4;7256:1;7249:15;7276:320;7320:6;7357:1;7351:4;7347:12;7337:22;;7404:1;7398:4;7394:12;7425:18;7415:81;;7481:4;7473:6;7469:17;7459:27;;7415:81;7543:2;7535:6;7532:14;7512:18;7509:38;7506:84;;7562:18;;:::i;:::-;7506:84;7327:269;7276:320;;;:::o;7602:177::-;7742:29;7738:1;7730:6;7726:14;7719:53;7602:177;:::o;7785:366::-;7927:3;7948:67;8012:2;8007:3;7948:67;:::i;:::-;7941:74;;8024:93;8113:3;8024:93;:::i;:::-;8142:2;8137:3;8133:12;8126:19;;7785:366;;;:::o;8157:419::-;8323:4;8361:2;8350:9;8346:18;8338:26;;8410:9;8404:4;8400:20;8396:1;8385:9;8381:17;8374:47;8438:131;8564:4;8438:131;:::i;:::-;8430:139;;8157:419;;;:::o;8582:180::-;8630:77;8627:1;8620:88;8727:4;8724:1;8717:15;8751:4;8748:1;8741:15;8768:191;8808:3;8827:20;8845:1;8827:20;:::i;:::-;8822:25;;8861:20;8879:1;8861:20;:::i;:::-;8856:25;;8904:1;8901;8897:9;8890:16;;8925:3;8922:1;8919:10;8916:36;;;8932:18;;:::i;:::-;8916:36;8768:191;;;;:::o;8965:182::-;9105:34;9101:1;9093:6;9089:14;9082:58;8965:182;:::o;9153:366::-;9295:3;9316:67;9380:2;9375:3;9316:67;:::i;:::-;9309:74;;9392:93;9481:3;9392:93;:::i;:::-;9510:2;9505:3;9501:12;9494:19;;9153:366;;;:::o;9525:419::-;9691:4;9729:2;9718:9;9714:18;9706:26;;9778:9;9772:4;9768:20;9764:1;9753:9;9749:17;9742:47;9806:131;9932:4;9806:131;:::i;:::-;9798:139;;9525:419;;;:::o;9950:230::-;10090:34;10086:1;10078:6;10074:14;10067:58;10159:13;10154:2;10146:6;10142:15;10135:38;9950:230;:::o;10186:366::-;10328:3;10349:67;10413:2;10408:3;10349:67;:::i;:::-;10342:74;;10425:93;10514:3;10425:93;:::i;:::-;10543:2;10538:3;10534:12;10527:19;;10186:366;;;:::o;10558:419::-;10724:4;10762:2;10751:9;10747:18;10739:26;;10811:9;10805:4;10801:20;10797:1;10786:9;10782:17;10775:47;10839:131;10965:4;10839:131;:::i;:::-;10831:139;;10558:419;;;:::o;10983:224::-;11123:34;11119:1;11111:6;11107:14;11100:58;11192:7;11187:2;11179:6;11175:15;11168:32;10983:224;:::o;11213:366::-;11355:3;11376:67;11440:2;11435:3;11376:67;:::i;:::-;11369:74;;11452:93;11541:3;11452:93;:::i;:::-;11570:2;11565:3;11561:12;11554:19;;11213:366;;;:::o;11585:419::-;11751:4;11789:2;11778:9;11774:18;11766:26;;11838:9;11832:4;11828:20;11824:1;11813:9;11809:17;11802:47;11866:131;11992:4;11866:131;:::i;:::-;11858:139;;11585:419;;;:::o;12010:225::-;12150:34;12146:1;12138:6;12134:14;12127:58;12219:8;12214:2;12206:6;12202:15;12195:33;12010:225;:::o;12241:366::-;12383:3;12404:67;12468:2;12463:3;12404:67;:::i;:::-;12397:74;;12480:93;12569:3;12480:93;:::i;:::-;12598:2;12593:3;12589:12;12582:19;;12241:366;;;:::o;12613:419::-;12779:4;12817:2;12806:9;12802:18;12794:26;;12866:9;12860:4;12856:20;12852:1;12841:9;12837:17;12830:47;12894:131;13020:4;12894:131;:::i;:::-;12886:139;;12613:419;;;:::o;13038:223::-;13178:34;13174:1;13166:6;13162:14;13155:58;13247:6;13242:2;13234:6;13230:15;13223:31;13038:223;:::o;13267:366::-;13409:3;13430:67;13494:2;13489:3;13430:67;:::i;:::-;13423:74;;13506:93;13595:3;13506:93;:::i;:::-;13624:2;13619:3;13615:12;13608:19;;13267:366;;;:::o;13639:419::-;13805:4;13843:2;13832:9;13828:18;13820:26;;13892:9;13886:4;13882:20;13878:1;13867:9;13863:17;13856:47;13920:131;14046:4;13920:131;:::i;:::-;13912:139;;13639:419;;;:::o;14064:221::-;14204:34;14200:1;14192:6;14188:14;14181:58;14273:4;14268:2;14260:6;14256:15;14249:29;14064:221;:::o;14291:366::-;14433:3;14454:67;14518:2;14513:3;14454:67;:::i;:::-;14447:74;;14530:93;14619:3;14530:93;:::i;:::-;14648:2;14643:3;14639:12;14632:19;;14291:366;;;:::o;14663:419::-;14829:4;14867:2;14856:9;14852:18;14844:26;;14916:9;14910:4;14906:20;14902:1;14891:9;14887:17;14880:47;14944:131;15070:4;14944:131;:::i;:::-;14936:139;;14663:419;;;:::o;15088:179::-;15228:31;15224:1;15216:6;15212:14;15205:55;15088:179;:::o;15273:366::-;15415:3;15436:67;15500:2;15495:3;15436:67;:::i;:::-;15429:74;;15512:93;15601:3;15512:93;:::i;:::-;15630:2;15625:3;15621:12;15614:19;;15273:366;;;:::o;15645:419::-;15811:4;15849:2;15838:9;15834:18;15826:26;;15898:9;15892:4;15888:20;15884:1;15873:9;15869:17;15862:47;15926:131;16052:4;15926:131;:::i;:::-;15918:139;;15645:419;;;:::o;16070:224::-;16210:34;16206:1;16198:6;16194:14;16187:58;16279:7;16274:2;16266:6;16262:15;16255:32;16070:224;:::o;16300:366::-;16442:3;16463:67;16527:2;16522:3;16463:67;:::i;:::-;16456:74;;16539:93;16628:3;16539:93;:::i;:::-;16657:2;16652:3;16648:12;16641:19;;16300:366;;;:::o;16672:419::-;16838:4;16876:2;16865:9;16861:18;16853:26;;16925:9;16919:4;16915:20;16911:1;16900:9;16896:17;16889:47;16953:131;17079:4;16953:131;:::i;:::-;16945:139;;16672:419;;;:::o;17097:222::-;17237:34;17233:1;17225:6;17221:14;17214:58;17306:5;17301:2;17293:6;17289:15;17282:30;17097:222;:::o;17325:366::-;17467:3;17488:67;17552:2;17547:3;17488:67;:::i;:::-;17481:74;;17564:93;17653:3;17564:93;:::i;:::-;17682:2;17677:3;17673:12;17666:19;;17325:366;;;:::o;17697:419::-;17863:4;17901:2;17890:9;17886:18;17878:26;;17950:9;17944:4;17940:20;17936:1;17925:9;17921:17;17914:47;17978:131;18104:4;17978:131;:::i;:::-;17970:139;;17697:419;;;:::o;18122:225::-;18262:34;18258:1;18250:6;18246:14;18239:58;18331:8;18326:2;18318:6;18314:15;18307:33;18122:225;:::o;18353:366::-;18495:3;18516:67;18580:2;18575:3;18516:67;:::i;:::-;18509:74;;18592:93;18681:3;18592:93;:::i;:::-;18710:2;18705:3;18701:12;18694:19;;18353:366;;;:::o;18725:419::-;18891:4;18929:2;18918:9;18914:18;18906:26;;18978:9;18972:4;18968:20;18964:1;18953:9;18949:17;18942:47;19006:131;19132:4;19006:131;:::i;:::-;18998:139;;18725:419;;;:::o;19150:181::-;19290:33;19286:1;19278:6;19274:14;19267:57;19150:181;:::o;19337:366::-;19479:3;19500:67;19564:2;19559:3;19500:67;:::i;:::-;19493:74;;19576:93;19665:3;19576:93;:::i;:::-;19694:2;19689:3;19685:12;19678:19;;19337:366;;;:::o;19709:419::-;19875:4;19913:2;19902:9;19898:18;19890:26;;19962:9;19956:4;19952:20;19948:1;19937:9;19933:17;19926:47;19990:131;20116:4;19990:131;:::i;:::-;19982:139;;19709:419;;;:::o;20134:220::-;20274:34;20270:1;20262:6;20258:14;20251:58;20343:3;20338:2;20330:6;20326:15;20319:28;20134:220;:::o;20360:366::-;20502:3;20523:67;20587:2;20582:3;20523:67;:::i;:::-;20516:74;;20599:93;20688:3;20599:93;:::i;:::-;20717:2;20712:3;20708:12;20701:19;;20360:366;;;:::o;20732:419::-;20898:4;20936:2;20925:9;20921:18;20913:26;;20985:9;20979:4;20975:20;20971:1;20960:9;20956:17;20949:47;21013:131;21139:4;21013:131;:::i;:::-;21005:139;;20732:419;;;:::o;21157:221::-;21297:34;21293:1;21285:6;21281:14;21274:58;21366:4;21361:2;21353:6;21349:15;21342:29;21157:221;:::o;21384:366::-;21526:3;21547:67;21611:2;21606:3;21547:67;:::i;:::-;21540:74;;21623:93;21712:3;21623:93;:::i;:::-;21741:2;21736:3;21732:12;21725:19;;21384:366;;;:::o;21756:419::-;21922:4;21960:2;21949:9;21945:18;21937:26;;22009:9;22003:4;21999:20;21995:1;21984:9;21980:17;21973:47;22037:131;22163:4;22037:131;:::i;:::-;22029:139;;21756:419;;;:::o;22181:194::-;22221:4;22241:20;22259:1;22241:20;:::i;:::-;22236:25;;22275:20;22293:1;22275:20;:::i;:::-;22270:25;;22319:1;22316;22312:9;22304:17;;22343:1;22337:4;22334:11;22331:37;;;22348:18;;:::i;:::-;22331:37;22181:194;;;;:::o;22381:182::-;22521:34;22517:1;22509:6;22505:14;22498:58;22381:182;:::o;22569:366::-;22711:3;22732:67;22796:2;22791:3;22732:67;:::i;:::-;22725:74;;22808:93;22897:3;22808:93;:::i;:::-;22926:2;22921:3;22917:12;22910:19;;22569:366;;;:::o;22941:419::-;23107:4;23145:2;23134:9;23130:18;23122:26;;23194:9;23188:4;23184:20;23180:1;23169:9;23165:17;23158:47;23222:131;23348:4;23222:131;:::i;:::-;23214:139;;22941:419;;;:::o
Swarm Source
ipfs://50eb16ce65f22612908030054a5cff84bcf40455232c520701c89f5c52c30d13
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.