ERC-20
Decentralized Web
Overview
Max Total Supply
100,000,000 OJA
Holders
2,718 (0.00%)
Market
Price
$0.00 @ 0.000001 ETH (-0.56%)
Onchain Market Cap
$193,506.90
Circulating Supply Market Cap
$190,294.68
Other Info
Token Contract (WITH 18 Decimals)
Balance
4,185.697794238342027198 OJAValue
$8.10 ( ~0.00319494486780627 Eth) [0.0042%]Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
OjamuToken
Compiler Version
v0.8.6+commit.11564f7e
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2021-10-03 */ // SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address sender, address recipient, uint256 amount ) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); } /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); } /* * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } /** * @dev 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 guidelines: functions revert instead * of returning `false` on failure. This behavior is nonetheless conventional * and does not conflict with the expectations of ERC20 applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * The default value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5,05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless this function is * overridden; * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address recipient, uint256 amount) public virtual override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { _approve(_msgSender(), spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * Requirements: * * - `sender` and `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. * - the caller must have allowance for ``sender``'s tokens of at least * `amount`. */ function transferFrom( address sender, address recipient, uint256 amount ) public virtual override returns (bool) { _transfer(sender, recipient, amount); uint256 currentAllowance = _allowances[sender][_msgSender()]; require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance"); unchecked { _approve(sender, _msgSender(), currentAllowance - amount); } return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender] + addedValue); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { uint256 currentAllowance = _allowances[_msgSender()][spender]; require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(_msgSender(), spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `sender` to `recipient`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `sender` cannot be the zero address. * - `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. */ function _transfer( address sender, address recipient, uint256 amount ) internal virtual { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(sender, recipient, amount); uint256 senderBalance = _balances[sender]; require(senderBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[sender] = senderBalance - amount; } _balances[recipient] += amount; emit Transfer(sender, recipient, amount); _afterTokenTransfer(sender, recipient, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; _balances[account] += amount; emit Transfer(address(0), account, amount); _afterTokenTransfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account] = accountBalance - amount; } _totalSupply -= amount; emit Transfer(account, address(0), amount); _afterTokenTransfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve( address owner, address spender, uint256 amount ) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 amount ) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * has been transferred to `to`. * - when `from` is zero, `amount` tokens have been minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens have been burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 amount ) internal virtual {} } /** * @dev Standard math utilities missing in the Solidity language. */ library Math { /** * @dev Returns the largest of two numbers. */ function max(uint256 a, uint256 b) internal pure returns (uint256) { return a >= b ? a : b; } /** * @dev Returns the smallest of two numbers. */ function min(uint256 a, uint256 b) internal pure returns (uint256) { return a < b ? a : b; } /** * @dev Returns the average of two numbers. The result is rounded towards * zero. */ function average(uint256 a, uint256 b) internal pure returns (uint256) { // (a + b) / 2 can overflow, so we distribute. return (a / 2) + (b / 2) + (((a % 2) + (b % 2)) / 2); } /** * @dev Returns the ceiling of the division of two numbers. * * This differs from standard division with `/` in that it rounds up instead * of rounding down. */ function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) { // (a + b - 1) / b can overflow on addition, so we distribute. return a / b + (a % b == 0 ? 0 : 1); } } /** * @dev Collection of functions related to array types. */ library Arrays { /** * @dev Searches a sorted `array` and returns the first index that contains * a value greater or equal to `element`. If no such index exists (i.e. all * values in the array are strictly less than `element`), the array length is * returned. Time complexity O(log n). * * `array` is expected to be sorted in ascending order, and to contain no * repeated elements. */ function findUpperBound(uint256[] storage array, uint256 element) internal view returns (uint256) { if (array.length == 0) { return 0; } uint256 low = 0; uint256 high = array.length; while (low < high) { uint256 mid = Math.average(low, high); // Note that mid will always be strictly less than high (i.e. it will be a valid array index) // because Math.average rounds down (it does integer division with truncation). if (array[mid] > element) { high = mid; } else { low = mid + 1; } } // At this point `low` is the exclusive upper bound. We will return the inclusive upper bound. if (low > 0 && array[low - 1] == element) { return low - 1; } else { return low; } } } /** * @title Counters * @author Matt Condon (@shrugs) * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number * of elements in a mapping, issuing ERC721 ids, or counting request ids. * * Include with `using Counters for Counters.Counter;` */ library Counters { struct Counter { // This variable should never be directly accessed by users of the library: interactions must be restricted to // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add // this feature: see https://github.com/ethereum/solidity/issues/4637 uint256 _value; // default: 0 } function current(Counter storage counter) internal view returns (uint256) { return counter._value; } function increment(Counter storage counter) internal { unchecked { counter._value += 1; } } function decrement(Counter storage counter) internal { uint256 value = counter._value; require(value > 0, "Counter: decrement overflow"); unchecked { counter._value = value - 1; } } function reset(Counter storage counter) internal { counter._value = 0; } } /** * @dev This contract extends an ERC20 token with a snapshot mechanism. When a snapshot is created, the balances and * total supply at the time are recorded for later access. * * This can be used to safely create mechanisms based on token balances such as trustless dividends or weighted voting. * In naive implementations it's possible to perform a "double spend" attack by reusing the same balance from different * accounts. By using snapshots to calculate dividends or voting power, those attacks no longer apply. It can also be * used to create an efficient ERC20 forking mechanism. * * Snapshots are created by the internal {_snapshot} function, which will emit the {Snapshot} event and return a * snapshot id. To get the total supply at the time of a snapshot, call the function {totalSupplyAt} with the snapshot * id. To get the balance of an account at the time of a snapshot, call the {balanceOfAt} function with the snapshot id * and the account address. * * NOTE: Snapshot policy can be customized by overriding the {_getCurrentSnapshotId} method. For example, having it * return `block.number` will trigger the creation of snapshot at the begining of each new block. When overridding this * function, be careful about the monotonicity of its result. Non-monotonic snapshot ids will break the contract. * * Implementing snapshots for every block using this method will incur significant gas costs. For a gas-efficient * alternative consider {ERC20Votes}. * * ==== Gas Costs * * Snapshots are efficient. Snapshot creation is _O(1)_. Retrieval of balances or total supply from a snapshot is _O(log * n)_ in the number of snapshots that have been created, although _n_ for a specific account will generally be much * smaller since identical balances in subsequent snapshots are stored as a single entry. * * There is a constant overhead for normal ERC20 transfers due to the additional snapshot bookkeeping. This overhead is * only significant for the first transfer that immediately follows a snapshot for a particular account. Subsequent * transfers will have normal cost until the next snapshot, and so on. */ abstract contract ERC20Snapshot is ERC20 { // Inspired by Jordi Baylina's MiniMeToken to record historical balances: // https://github.com/Giveth/minimd/blob/ea04d950eea153a04c51fa510b068b9dded390cb/contracts/MiniMeToken.sol using Arrays for uint256[]; using Counters for Counters.Counter; // Snapshotted values have arrays of ids and the value corresponding to that id. These could be an array of a // Snapshot struct, but that would impede usage of functions that work on an array. struct Snapshots { uint256[] ids; uint256[] values; } mapping(address => Snapshots) private _accountBalanceSnapshots; Snapshots private _totalSupplySnapshots; // Snapshot ids increase monotonically, with the first value being 1. An id of 0 is invalid. Counters.Counter private _currentSnapshotId; /** * @dev Emitted by {_snapshot} when a snapshot identified by `id` is created. */ event Snapshot(uint256 id); /** * @dev Creates a new snapshot and returns its snapshot id. * * Emits a {Snapshot} event that contains the same id. * * {_snapshot} is `internal` and you have to decide how to expose it externally. Its usage may be restricted to a * set of accounts, for example using {AccessControl}, or it may be open to the public. * * [WARNING] * ==== * While an open way of calling {_snapshot} is required for certain trust minimization mechanisms such as forking, * you must consider that it can potentially be used by attackers in two ways. * * First, it can be used to increase the cost of retrieval of values from snapshots, although it will grow * logarithmically thus rendering this attack ineffective in the long term. Second, it can be used to target * specific accounts and increase the cost of ERC20 transfers for them, in the ways specified in the Gas Costs * section above. * * We haven't measured the actual numbers; if this is something you're interested in please reach out to us. * ==== */ function _snapshot() internal virtual returns (uint256) { _currentSnapshotId.increment(); uint256 currentId = _getCurrentSnapshotId(); emit Snapshot(currentId); return currentId; } /** * @dev Get the current snapshotId */ function _getCurrentSnapshotId() internal view virtual returns (uint256) { return _currentSnapshotId.current(); } /** * @dev Retrieves the balance of `account` at the time `snapshotId` was created. */ function balanceOfAt(address account, uint256 snapshotId) public view virtual returns (uint256) { (bool snapshotted, uint256 value) = _valueAt(snapshotId, _accountBalanceSnapshots[account]); return snapshotted ? value : balanceOf(account); } /** * @dev Retrieves the total supply at the time `snapshotId` was created. */ function totalSupplyAt(uint256 snapshotId) public view virtual returns (uint256) { (bool snapshotted, uint256 value) = _valueAt(snapshotId, _totalSupplySnapshots); return snapshotted ? value : totalSupply(); } // Update balance and/or total supply snapshots before the values are modified. This is implemented // in the _beforeTokenTransfer hook, which is executed for _mint, _burn, and _transfer operations. function _beforeTokenTransfer( address from, address to, uint256 amount ) internal virtual override { super._beforeTokenTransfer(from, to, amount); if (from == address(0)) { // mint _updateAccountSnapshot(to); _updateTotalSupplySnapshot(); } else if (to == address(0)) { // burn _updateAccountSnapshot(from); _updateTotalSupplySnapshot(); } else { // transfer _updateAccountSnapshot(from); _updateAccountSnapshot(to); } } function _valueAt(uint256 snapshotId, Snapshots storage snapshots) private view returns (bool, uint256) { require(snapshotId > 0, "ERC20Snapshot: id is 0"); require(snapshotId <= _getCurrentSnapshotId(), "ERC20Snapshot: nonexistent id"); // When a valid snapshot is queried, there are three possibilities: // a) The queried value was not modified after the snapshot was taken. Therefore, a snapshot entry was never // created for this id, and all stored snapshot ids are smaller than the requested one. The value that corresponds // to this id is the current one. // b) The queried value was modified after the snapshot was taken. Therefore, there will be an entry with the // requested id, and its value is the one to return. // c) More snapshots were created after the requested one, and the queried value was later modified. There will be // no entry for the requested id: the value that corresponds to it is that of the smallest snapshot id that is // larger than the requested one. // // In summary, we need to find an element in an array, returning the index of the smallest value that is larger if // it is not found, unless said value doesn't exist (e.g. when all values are smaller). Arrays.findUpperBound does // exactly this. uint256 index = snapshots.ids.findUpperBound(snapshotId); if (index == snapshots.ids.length) { return (false, 0); } else { return (true, snapshots.values[index]); } } function _updateAccountSnapshot(address account) private { _updateSnapshot(_accountBalanceSnapshots[account], balanceOf(account)); } function _updateTotalSupplySnapshot() private { _updateSnapshot(_totalSupplySnapshots, totalSupply()); } function _updateSnapshot(Snapshots storage snapshots, uint256 currentValue) private { uint256 currentId = _getCurrentSnapshotId(); if (_lastSnapshotId(snapshots.ids) < currentId) { snapshots.ids.push(currentId); snapshots.values.push(currentValue); } } function _lastSnapshotId(uint256[] storage ids) private view returns (uint256) { if (ids.length == 0) { return 0; } else { return ids[ids.length - 1]; } } } /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } } /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } /** * @dev External interface of AccessControl declared to support ERC165 detection. */ interface IAccessControl { function hasRole(bytes32 role, address account) external view returns (bool); function getRoleAdmin(bytes32 role) external view returns (bytes32); function grantRole(bytes32 role, address account) external; function revokeRole(bytes32 role, address account) external; function renounceRole(bytes32 role, address account) external; } /** * @dev Contract module that allows children to implement role-based access * control mechanisms. This is a lightweight version that doesn't allow enumerating role * members except through off-chain means by accessing the contract event logs. Some * applications may benefit from on-chain enumerability, for those cases see * {AccessControlEnumerable}. * * Roles are referred to by their `bytes32` identifier. These should be exposed * in the external API and be unique. The best way to achieve this is by * using `public constant` hash digests: * * ``` * bytes32 public constant MY_ROLE = keccak256("MY_ROLE"); * ``` * * Roles can be used to represent a set of permissions. To restrict access to a * function call, use {hasRole}: * * ``` * function foo() public { * require(hasRole(MY_ROLE, msg.sender)); * ... * } * ``` * * Roles can be granted and revoked dynamically via the {grantRole} and * {revokeRole} functions. Each role has an associated admin role, and only * accounts that have a role's admin role can call {grantRole} and {revokeRole}. * * By default, the admin role for all roles is `DEFAULT_ADMIN_ROLE`, which means * that only accounts with this role will be able to grant or revoke other * roles. More complex role relationships can be created by using * {_setRoleAdmin}. * * WARNING: The `DEFAULT_ADMIN_ROLE` is also its own admin: it has permission to * grant and revoke this role. Extra precautions should be taken to secure * accounts that have been granted it. */ abstract contract AccessControl is Context, IAccessControl, ERC165 { struct RoleData { mapping(address => bool) members; bytes32 adminRole; } mapping(bytes32 => RoleData) private _roles; bytes32 public constant DEFAULT_ADMIN_ROLE = 0x00; /** * @dev Emitted when `newAdminRole` is set as ``role``'s admin role, replacing `previousAdminRole` * * `DEFAULT_ADMIN_ROLE` is the starting admin for all roles, despite * {RoleAdminChanged} not being emitted signaling this. * * _Available since v3.1._ */ event RoleAdminChanged(bytes32 indexed role, bytes32 indexed previousAdminRole, bytes32 indexed newAdminRole); /** * @dev Emitted when `account` is granted `role`. * * `sender` is the account that originated the contract call, an admin role * bearer except when using {_setupRole}. */ event RoleGranted(bytes32 indexed role, address indexed account, address indexed sender); /** * @dev Emitted when `account` is revoked `role`. * * `sender` is the account that originated the contract call: * - if using `revokeRole`, it is the admin role bearer * - if using `renounceRole`, it is the role bearer (i.e. `account`) */ event RoleRevoked(bytes32 indexed role, address indexed account, address indexed sender); /** * @dev Modifier that checks that an account has a specific role. Reverts * with a standardized message including the required role. * * The format of the revert reason is given by the following regular expression: * * /^AccessControl: account (0x[0-9a-f]{20}) is missing role (0x[0-9a-f]{32})$/ * * _Available since v4.1._ */ modifier onlyRole(bytes32 role) { _checkRole(role, _msgSender()); _; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IAccessControl).interfaceId || super.supportsInterface(interfaceId); } /** * @dev Returns `true` if `account` has been granted `role`. */ function hasRole(bytes32 role, address account) public view override returns (bool) { return _roles[role].members[account]; } /** * @dev Revert with a standard message if `account` is missing `role`. * * The format of the revert reason is given by the following regular expression: * * /^AccessControl: account (0x[0-9a-f]{20}) is missing role (0x[0-9a-f]{32})$/ */ function _checkRole(bytes32 role, address account) internal view { if (!hasRole(role, account)) { revert( string( abi.encodePacked( "AccessControl: account ", Strings.toHexString(uint160(account), 20), " is missing role ", Strings.toHexString(uint256(role), 32) ) ) ); } } /** * @dev Returns the admin role that controls `role`. See {grantRole} and * {revokeRole}. * * To change a role's admin, use {_setRoleAdmin}. */ function getRoleAdmin(bytes32 role) public view override returns (bytes32) { return _roles[role].adminRole; } /** * @dev Grants `role` to `account`. * * If `account` had not been already granted `role`, emits a {RoleGranted} * event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function grantRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) { _grantRole(role, account); } /** * @dev Revokes `role` from `account`. * * If `account` had been granted `role`, emits a {RoleRevoked} event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function revokeRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) { _revokeRole(role, account); } /** * @dev Revokes `role` from the calling account. * * Roles are often managed via {grantRole} and {revokeRole}: this function's * purpose is to provide a mechanism for accounts to lose their privileges * if they are compromised (such as when a trusted device is misplaced). * * If the calling account had been granted `role`, emits a {RoleRevoked} * event. * * Requirements: * * - the caller must be `account`. */ function renounceRole(bytes32 role, address account) public virtual override { require(account == _msgSender(), "AccessControl: can only renounce roles for self"); _revokeRole(role, account); } /** * @dev Grants `role` to `account`. * * If `account` had not been already granted `role`, emits a {RoleGranted} * event. Note that unlike {grantRole}, this function doesn't perform any * checks on the calling account. * * [WARNING] * ==== * This function should only be called from the constructor when setting * up the initial roles for the system. * * Using this function in any other way is effectively circumventing the admin * system imposed by {AccessControl}. * ==== */ function _setupRole(bytes32 role, address account) internal virtual { _grantRole(role, account); } /** * @dev Sets `adminRole` as ``role``'s admin role. * * Emits a {RoleAdminChanged} event. */ function _setRoleAdmin(bytes32 role, bytes32 adminRole) internal virtual { emit RoleAdminChanged(role, getRoleAdmin(role), adminRole); _roles[role].adminRole = adminRole; } function _grantRole(bytes32 role, address account) private { if (!hasRole(role, account)) { _roles[role].members[account] = true; emit RoleGranted(role, account, _msgSender()); } } function _revokeRole(bytes32 role, address account) private { if (hasRole(role, account)) { _roles[role].members[account] = false; emit RoleRevoked(role, account, _msgSender()); } } } contract OjamuToken is ERC20Snapshot, AccessControl { uint256 constant INITIAL_SUPPLY = 100000000 * (10**18); bytes32 public constant BURNER_ROLE = keccak256("BURNER_ROLE"); constructor() ERC20("Ojamu Token", "OJA") { _setupRole(DEFAULT_ADMIN_ROLE, _msgSender()); _setupRole(BURNER_ROLE, _msgSender()); _mint(_msgSender(), INITIAL_SUPPLY); } /** * @dev Destroys `amount` tokens from the caller. * * See {ERC20-_burn}. */ function burn(uint256 amount) public { require(hasRole(BURNER_ROLE, msg.sender), "Caller is not BURNER_ROLE"); _burn(_msgSender(), amount); } /** * @dev Creates a new snapshot and returns its snapshot id. * * Emits a {Snapshot} event that contains the same id. */ function snapshot() public { require(hasRole(DEFAULT_ADMIN_ROLE, msg.sender), "Caller is not DEFAULT_ADMIN_ROLE"); _snapshot(); } }
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":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"previousAdminRole","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"newAdminRole","type":"bytes32"}],"name":"RoleAdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleGranted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleRevoked","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"id","type":"uint256"}],"name":"Snapshot","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":[],"name":"BURNER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"snapshotId","type":"uint256"}],"name":"balanceOfAt","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleAdmin","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"grantRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"hasRole","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"renounceRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"revokeRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"snapshot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"uint256","name":"snapshotId","type":"uint256"}],"name":"totalSupplyAt","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040523480156200001157600080fd5b506040518060400160405280600b81526020017f4f6a616d7520546f6b656e0000000000000000000000000000000000000000008152506040518060400160405280600381526020017f4f4a41000000000000000000000000000000000000000000000000000000000081525081600390805190602001906200009692919062000727565b508060049080519060200190620000af92919062000727565b505050620000d66000801b620000ca6200014960201b60201c565b6200015160201b60201c565b620001177f3c11d16cbaffd01df69ce1c404f6340ee057498f5f00246190ea54220576a8486200010b6200014960201b60201c565b6200015160201b60201c565b620001436200012b6200014960201b60201c565b6a52b7d2dcc80cd2e40000006200016760201b60201c565b620009ed565b600033905090565b620001638282620002e060201b60201c565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415620001da576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620001d1906200080f565b60405180910390fd5b620001ee60008383620003d260201b60201c565b80600260008282546200020291906200085f565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546200025991906200085f565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620002c0919062000831565b60405180910390a3620002dc60008383620004cd60201b60201c565b5050565b620002f28282620004d260201b60201c565b620003ce5760016009600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550620003736200014960201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b620003ea8383836200053d60201b62000d0b1760201c565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415620004475762000431826200054260201b60201c565b62000441620005a560201b60201c565b620004c8565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415620004a4576200048e836200054260201b60201c565b6200049e620005a560201b60201c565b620004c7565b620004b5836200054260201b60201c565b620004c6826200054260201b60201c565b5b5b505050565b505050565b60006009600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b505050565b620005a2600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206200059683620005c960201b60201c565b6200061160201b60201c565b50565b620005c76006620005bb6200069d60201b60201c565b6200061160201b60201c565b565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600062000623620006a760201b60201c565b9050806200063a84600001620006c560201b60201c565b1015620006985782600001819080600181540180825580915050600190039060005260206000200160009091909190915055826001018290806001815401808255809150506001900390600052602060002001600090919091909150555b505050565b6000600254905090565b6000620006c060086200071960201b62000d101760201c565b905090565b60008082805490501415620006de576000905062000714565b8160018380549050620006f29190620008bc565b8154811062000706576200070562000995565b5b906000526020600020015490505b919050565b600081600001549050919050565b828054620007359062000901565b90600052602060002090601f016020900481019282620007595760008555620007a5565b82601f106200077457805160ff1916838001178555620007a5565b82800160010185558215620007a5579182015b82811115620007a457825182559160200191906001019062000787565b5b509050620007b49190620007b8565b5090565b5b80821115620007d3576000816000905550600101620007b9565b5090565b6000620007e6601f836200084e565b9150620007f382620009c4565b602082019050919050565b6200080981620008f7565b82525050565b600060208201905081810360008301526200082a81620007d7565b9050919050565b6000602082019050620008486000830184620007fe565b92915050565b600082825260208201905092915050565b60006200086c82620008f7565b91506200087983620008f7565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115620008b157620008b062000937565b5b828201905092915050565b6000620008c982620008f7565b9150620008d683620008f7565b925082821015620008ec57620008eb62000937565b5b828203905092915050565b6000819050919050565b600060028204905060018216806200091a57607f821691505b6020821081141562000931576200093062000966565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b612cfc80620009fd6000396000f3fe608060405234801561001057600080fd5b506004361061014d5760003560e01c806342966c68116100c3578063981b24d01161007c578063981b24d0146103c6578063a217fddf146103f6578063a457c2d714610414578063a9059cbb14610444578063d547741f14610474578063dd62ed3e146104905761014d565b806342966c68146102f25780634ee2cd7e1461030e57806370a082311461033e57806391d148541461036e57806395d89b411461039e5780639711715a146103bc5761014d565b8063248a9ca311610115578063248a9ca31461021e578063282c51f31461024e5780632f2ff15d1461026c578063313ce5671461028857806336568abe146102a657806339509351146102c25761014d565b806301ffc9a71461015257806306fdde0314610182578063095ea7b3146101a057806318160ddd146101d057806323b872dd146101ee575b600080fd5b61016c60048036038101906101679190611eb2565b6104c0565b604051610179919061223f565b60405180910390f35b61018a61053a565b6040516101979190612275565b60405180910390f35b6101ba60048036038101906101b59190611e05565b6105cc565b6040516101c7919061223f565b60405180910390f35b6101d86105ea565b6040516101e59190612477565b60405180910390f35b61020860048036038101906102039190611db2565b6105f4565b604051610215919061223f565b60405180910390f35b61023860048036038101906102339190611e45565b6106ec565b604051610245919061225a565b60405180910390f35b61025661070c565b604051610263919061225a565b60405180910390f35b61028660048036038101906102819190611e72565b610730565b005b610290610759565b60405161029d9190612492565b60405180910390f35b6102c060048036038101906102bb9190611e72565b610762565b005b6102dc60048036038101906102d79190611e05565b6107e5565b6040516102e9919061223f565b60405180910390f35b61030c60048036038101906103079190611edf565b610891565b005b61032860048036038101906103239190611e05565b61090e565b6040516103359190612477565b60405180910390f35b61035860048036038101906103539190611d45565b61097e565b6040516103659190612477565b60405180910390f35b61038860048036038101906103839190611e72565b6109c6565b604051610395919061223f565b60405180910390f35b6103a6610a31565b6040516103b39190612275565b60405180910390f35b6103c4610ac3565b005b6103e060048036038101906103db9190611edf565b610b1a565b6040516103ed9190612477565b60405180910390f35b6103fe610b4b565b60405161040b919061225a565b60405180910390f35b61042e60048036038101906104299190611e05565b610b52565b60405161043b919061223f565b60405180910390f35b61045e60048036038101906104599190611e05565b610c3d565b60405161046b919061223f565b60405180910390f35b61048e60048036038101906104899190611e72565b610c5b565b005b6104aa60048036038101906104a59190611d72565b610c84565b6040516104b79190612477565b60405180910390f35b60007f7965db0b000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610533575061053282610d1e565b5b9050919050565b606060038054610549906126d1565b80601f0160208091040260200160405190810160405280929190818152602001828054610575906126d1565b80156105c25780601f10610597576101008083540402835291602001916105c2565b820191906000526020600020905b8154815290600101906020018083116105a557829003601f168201915b5050505050905090565b60006105e06105d9610d88565b8484610d90565b6001905092915050565b6000600254905090565b6000610601848484610f5b565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061064c610d88565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156106cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106c390612357565b60405180910390fd5b6106e0856106d8610d88565b858403610d90565b60019150509392505050565b600060096000838152602001908152602001600020600101549050919050565b7f3c11d16cbaffd01df69ce1c404f6340ee057498f5f00246190ea54220576a84881565b610739826106ec565b61074a81610745610d88565b6111dc565b6107548383611279565b505050565b60006012905090565b61076a610d88565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146107d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107ce90612457565b60405180910390fd5b6107e1828261135a565b5050565b60006108876107f2610d88565b848460016000610800610d88565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461088291906124d4565b610d90565b6001905092915050565b6108bb7f3c11d16cbaffd01df69ce1c404f6340ee057498f5f00246190ea54220576a848336109c6565b6108fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108f190612377565b60405180910390fd5b61090b610905610d88565b8261143c565b50565b600080600061095b84600560008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020611613565b91509150816109725761096d8561097e565b610974565b805b9250505092915050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60006009600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b606060048054610a40906126d1565b80601f0160208091040260200160405190810160405280929190818152602001828054610a6c906126d1565b8015610ab95780601f10610a8e57610100808354040283529160200191610ab9565b820191906000526020600020905b815481529060010190602001808311610a9c57829003601f168201915b5050505050905090565b610ad06000801b336109c6565b610b0f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b0690612417565b60405180910390fd5b610b17611709565b50565b6000806000610b2a846006611613565b9150915081610b4057610b3b6105ea565b610b42565b805b92505050919050565b6000801b81565b60008060016000610b61610d88565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610c1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1590612437565b60405180910390fd5b610c32610c29610d88565b85858403610d90565b600191505092915050565b6000610c51610c4a610d88565b8484610f5b565b6001905092915050565b610c64826106ec565b610c7581610c70610d88565b6111dc565b610c7f838361135a565b505050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b505050565b600081600001549050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610e00576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610df7906123d7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e70576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6790612317565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610f4e9190612477565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610fcb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fc2906123b7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561103b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611032906122d7565b60405180910390fd5b61104683838361175f565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156110cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110c390612337565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461115f91906124d4565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516111c39190612477565b60405180910390a36111d6848484611819565b50505050565b6111e682826109c6565b6112755761120b8173ffffffffffffffffffffffffffffffffffffffff16601461181e565b6112198360001c602061181e565b60405160200161122a929190612205565b6040516020818303038152906040526040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126c9190612275565b60405180910390fd5b5050565b61128382826109c6565b6113565760016009600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506112fb610d88565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b61136482826109c6565b156114385760006009600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506113dd610d88565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45b5050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156114ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114a390612397565b60405180910390fd5b6114b88260008361175f565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561153e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611535906122f7565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816002600082825461159591906125b5565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516115fa9190612477565b60405180910390a361160e83600084611819565b505050565b60008060008411611659576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611650906123f7565b60405180910390fd5b611661611a5a565b8411156116a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169a90612297565b60405180910390fd5b60006116bb8585600001611a6b90919063ffffffff16565b905083600001805490508114156116d9576000809250925050611702565b60018460010182815481106116f1576116f06127c1565b5b906000526020600020015492509250505b9250929050565b60006117156008611b45565b600061171f611a5a565b90507f8030e83b04d87bef53480e26263266d6ca66863aa8506aca6f2559d18aa1cb67816040516117509190612477565b60405180910390a18091505090565b61176a838383610d0b565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156117b5576117a882611b5b565b6117b0611bae565b611814565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611800576117f383611b5b565b6117fb611bae565b611813565b61180983611b5b565b61181282611b5b565b5b5b505050565b505050565b606060006002836002611831919061255b565b61183b91906124d4565b67ffffffffffffffff811115611854576118536127f0565b5b6040519080825280601f01601f1916602001820160405280156118865781602001600182028036833780820191505090505b5090507f3000000000000000000000000000000000000000000000000000000000000000816000815181106118be576118bd6127c1565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f780000000000000000000000000000000000000000000000000000000000000081600181518110611922576119216127c1565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535060006001846002611962919061255b565b61196c91906124d4565b90505b6001811115611a0c577f3031323334353637383961626364656600000000000000000000000000000000600f8616601081106119ae576119ad6127c1565b5b1a60f81b8282815181106119c5576119c46127c1565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600485901c945080611a05906126a7565b905061196f565b5060008414611a50576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a47906122b7565b60405180910390fd5b8091505092915050565b6000611a666008610d10565b905090565b60008083805490501415611a825760009050611b3f565b600080848054905090505b80821015611ae6576000611aa18383611bc2565b905084868281548110611ab757611ab66127c1565b5b90600052602060002001541115611ad057809150611ae0565b600181611add91906124d4565b92505b50611a8d565b600082118015611b1e57508385600184611b0091906125b5565b81548110611b1157611b106127c1565b5b9060005260206000200154145b15611b3957600182611b3091906125b5565b92505050611b3f565b81925050505b92915050565b6001816000016000828254019250508190555050565b611bab600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020611ba68361097e565b611c29565b50565b611bc06006611bbb6105ea565b611c29565b565b600060028083611bd29190612703565b600285611bdf9190612703565b611be991906124d4565b611bf3919061252a565b600283611c00919061252a565b600285611c0d919061252a565b611c1791906124d4565b611c2191906124d4565b905092915050565b6000611c33611a5a565b905080611c4284600001611ca4565b1015611c9f5782600001819080600181540180825580915050600190039060005260206000200160009091909190915055826001018290806001815401808255809150506001900390600052602060002001600090919091909150555b505050565b60008082805490501415611cbb5760009050611cec565b8160018380549050611ccd91906125b5565b81548110611cde57611cdd6127c1565b5b906000526020600020015490505b919050565b600081359050611d0081612c6a565b92915050565b600081359050611d1581612c81565b92915050565b600081359050611d2a81612c98565b92915050565b600081359050611d3f81612caf565b92915050565b600060208284031215611d5b57611d5a61281f565b5b6000611d6984828501611cf1565b91505092915050565b60008060408385031215611d8957611d8861281f565b5b6000611d9785828601611cf1565b9250506020611da885828601611cf1565b9150509250929050565b600080600060608486031215611dcb57611dca61281f565b5b6000611dd986828701611cf1565b9350506020611dea86828701611cf1565b9250506040611dfb86828701611d30565b9150509250925092565b60008060408385031215611e1c57611e1b61281f565b5b6000611e2a85828601611cf1565b9250506020611e3b85828601611d30565b9150509250929050565b600060208284031215611e5b57611e5a61281f565b5b6000611e6984828501611d06565b91505092915050565b60008060408385031215611e8957611e8861281f565b5b6000611e9785828601611d06565b9250506020611ea885828601611cf1565b9150509250929050565b600060208284031215611ec857611ec761281f565b5b6000611ed684828501611d1b565b91505092915050565b600060208284031215611ef557611ef461281f565b5b6000611f0384828501611d30565b91505092915050565b611f15816125fb565b82525050565b611f2481612607565b82525050565b6000611f35826124ad565b611f3f81856124b8565b9350611f4f818560208601612674565b611f5881612824565b840191505092915050565b6000611f6e826124ad565b611f7881856124c9565b9350611f88818560208601612674565b80840191505092915050565b6000611fa1601d836124b8565b9150611fac82612835565b602082019050919050565b6000611fc46020836124b8565b9150611fcf8261285e565b602082019050919050565b6000611fe76023836124b8565b9150611ff282612887565b604082019050919050565b600061200a6022836124b8565b9150612015826128d6565b604082019050919050565b600061202d6022836124b8565b915061203882612925565b604082019050919050565b60006120506026836124b8565b915061205b82612974565b604082019050919050565b60006120736028836124b8565b915061207e826129c3565b604082019050919050565b60006120966019836124b8565b91506120a182612a12565b602082019050919050565b60006120b96021836124b8565b91506120c482612a3b565b604082019050919050565b60006120dc6025836124b8565b91506120e782612a8a565b604082019050919050565b60006120ff6024836124b8565b915061210a82612ad9565b604082019050919050565b60006121226016836124b8565b915061212d82612b28565b602082019050919050565b60006121456017836124c9565b915061215082612b51565b601782019050919050565b60006121686020836124b8565b915061217382612b7a565b602082019050919050565b600061218b6025836124b8565b915061219682612ba3565b604082019050919050565b60006121ae6011836124c9565b91506121b982612bf2565b601182019050919050565b60006121d1602f836124b8565b91506121dc82612c1b565b604082019050919050565b6121f08161265d565b82525050565b6121ff81612667565b82525050565b600061221082612138565b915061221c8285611f63565b9150612227826121a1565b91506122338284611f63565b91508190509392505050565b60006020820190506122546000830184611f0c565b92915050565b600060208201905061226f6000830184611f1b565b92915050565b6000602082019050818103600083015261228f8184611f2a565b905092915050565b600060208201905081810360008301526122b081611f94565b9050919050565b600060208201905081810360008301526122d081611fb7565b9050919050565b600060208201905081810360008301526122f081611fda565b9050919050565b6000602082019050818103600083015261231081611ffd565b9050919050565b6000602082019050818103600083015261233081612020565b9050919050565b6000602082019050818103600083015261235081612043565b9050919050565b6000602082019050818103600083015261237081612066565b9050919050565b6000602082019050818103600083015261239081612089565b9050919050565b600060208201905081810360008301526123b0816120ac565b9050919050565b600060208201905081810360008301526123d0816120cf565b9050919050565b600060208201905081810360008301526123f0816120f2565b9050919050565b6000602082019050818103600083015261241081612115565b9050919050565b600060208201905081810360008301526124308161215b565b9050919050565b600060208201905081810360008301526124508161217e565b9050919050565b60006020820190508181036000830152612470816121c4565b9050919050565b600060208201905061248c60008301846121e7565b92915050565b60006020820190506124a760008301846121f6565b92915050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b60006124df8261265d565b91506124ea8361265d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561251f5761251e612734565b5b828201905092915050565b60006125358261265d565b91506125408361265d565b9250826125505761254f612763565b5b828204905092915050565b60006125668261265d565b91506125718361265d565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156125aa576125a9612734565b5b828202905092915050565b60006125c08261265d565b91506125cb8361265d565b9250828210156125de576125dd612734565b5b828203905092915050565b60006125f48261263d565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b83811015612692578082015181840152602081019050612677565b838111156126a1576000848401525b50505050565b60006126b28261265d565b915060008214156126c6576126c5612734565b5b600182039050919050565b600060028204905060018216806126e957607f821691505b602082108114156126fd576126fc612792565b5b50919050565b600061270e8261265d565b91506127198361265d565b92508261272957612728612763565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b6000601f19601f8301169050919050565b7f4552433230536e617073686f743a206e6f6e6578697374656e74206964000000600082015250565b7f537472696e67733a20686578206c656e67746820696e73756666696369656e74600082015250565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b7f43616c6c6572206973206e6f74204255524e45525f524f4c4500000000000000600082015250565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433230536e617073686f743a206964206973203000000000000000000000600082015250565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000600082015250565b7f43616c6c6572206973206e6f742044454641554c545f41444d494e5f524f4c45600082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b7f206973206d697373696e6720726f6c6520000000000000000000000000000000600082015250565b7f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560008201527f20726f6c657320666f722073656c660000000000000000000000000000000000602082015250565b612c73816125e9565b8114612c7e57600080fd5b50565b612c8a81612607565b8114612c9557600080fd5b50565b612ca181612611565b8114612cac57600080fd5b50565b612cb88161265d565b8114612cc357600080fd5b5056fea26469706673582212207e194fa2fbccd89f92207af5b16f68d26fd1047fd0a58ac7bb3715b5f7f75a4d64736f6c63430008060033
Deployed Bytecode
0x608060405234801561001057600080fd5b506004361061014d5760003560e01c806342966c68116100c3578063981b24d01161007c578063981b24d0146103c6578063a217fddf146103f6578063a457c2d714610414578063a9059cbb14610444578063d547741f14610474578063dd62ed3e146104905761014d565b806342966c68146102f25780634ee2cd7e1461030e57806370a082311461033e57806391d148541461036e57806395d89b411461039e5780639711715a146103bc5761014d565b8063248a9ca311610115578063248a9ca31461021e578063282c51f31461024e5780632f2ff15d1461026c578063313ce5671461028857806336568abe146102a657806339509351146102c25761014d565b806301ffc9a71461015257806306fdde0314610182578063095ea7b3146101a057806318160ddd146101d057806323b872dd146101ee575b600080fd5b61016c60048036038101906101679190611eb2565b6104c0565b604051610179919061223f565b60405180910390f35b61018a61053a565b6040516101979190612275565b60405180910390f35b6101ba60048036038101906101b59190611e05565b6105cc565b6040516101c7919061223f565b60405180910390f35b6101d86105ea565b6040516101e59190612477565b60405180910390f35b61020860048036038101906102039190611db2565b6105f4565b604051610215919061223f565b60405180910390f35b61023860048036038101906102339190611e45565b6106ec565b604051610245919061225a565b60405180910390f35b61025661070c565b604051610263919061225a565b60405180910390f35b61028660048036038101906102819190611e72565b610730565b005b610290610759565b60405161029d9190612492565b60405180910390f35b6102c060048036038101906102bb9190611e72565b610762565b005b6102dc60048036038101906102d79190611e05565b6107e5565b6040516102e9919061223f565b60405180910390f35b61030c60048036038101906103079190611edf565b610891565b005b61032860048036038101906103239190611e05565b61090e565b6040516103359190612477565b60405180910390f35b61035860048036038101906103539190611d45565b61097e565b6040516103659190612477565b60405180910390f35b61038860048036038101906103839190611e72565b6109c6565b604051610395919061223f565b60405180910390f35b6103a6610a31565b6040516103b39190612275565b60405180910390f35b6103c4610ac3565b005b6103e060048036038101906103db9190611edf565b610b1a565b6040516103ed9190612477565b60405180910390f35b6103fe610b4b565b60405161040b919061225a565b60405180910390f35b61042e60048036038101906104299190611e05565b610b52565b60405161043b919061223f565b60405180910390f35b61045e60048036038101906104599190611e05565b610c3d565b60405161046b919061223f565b60405180910390f35b61048e60048036038101906104899190611e72565b610c5b565b005b6104aa60048036038101906104a59190611d72565b610c84565b6040516104b79190612477565b60405180910390f35b60007f7965db0b000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610533575061053282610d1e565b5b9050919050565b606060038054610549906126d1565b80601f0160208091040260200160405190810160405280929190818152602001828054610575906126d1565b80156105c25780601f10610597576101008083540402835291602001916105c2565b820191906000526020600020905b8154815290600101906020018083116105a557829003601f168201915b5050505050905090565b60006105e06105d9610d88565b8484610d90565b6001905092915050565b6000600254905090565b6000610601848484610f5b565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061064c610d88565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156106cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106c390612357565b60405180910390fd5b6106e0856106d8610d88565b858403610d90565b60019150509392505050565b600060096000838152602001908152602001600020600101549050919050565b7f3c11d16cbaffd01df69ce1c404f6340ee057498f5f00246190ea54220576a84881565b610739826106ec565b61074a81610745610d88565b6111dc565b6107548383611279565b505050565b60006012905090565b61076a610d88565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146107d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107ce90612457565b60405180910390fd5b6107e1828261135a565b5050565b60006108876107f2610d88565b848460016000610800610d88565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461088291906124d4565b610d90565b6001905092915050565b6108bb7f3c11d16cbaffd01df69ce1c404f6340ee057498f5f00246190ea54220576a848336109c6565b6108fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108f190612377565b60405180910390fd5b61090b610905610d88565b8261143c565b50565b600080600061095b84600560008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020611613565b91509150816109725761096d8561097e565b610974565b805b9250505092915050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60006009600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b606060048054610a40906126d1565b80601f0160208091040260200160405190810160405280929190818152602001828054610a6c906126d1565b8015610ab95780601f10610a8e57610100808354040283529160200191610ab9565b820191906000526020600020905b815481529060010190602001808311610a9c57829003601f168201915b5050505050905090565b610ad06000801b336109c6565b610b0f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b0690612417565b60405180910390fd5b610b17611709565b50565b6000806000610b2a846006611613565b9150915081610b4057610b3b6105ea565b610b42565b805b92505050919050565b6000801b81565b60008060016000610b61610d88565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610c1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1590612437565b60405180910390fd5b610c32610c29610d88565b85858403610d90565b600191505092915050565b6000610c51610c4a610d88565b8484610f5b565b6001905092915050565b610c64826106ec565b610c7581610c70610d88565b6111dc565b610c7f838361135a565b505050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b505050565b600081600001549050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610e00576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610df7906123d7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e70576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6790612317565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610f4e9190612477565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610fcb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fc2906123b7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561103b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611032906122d7565b60405180910390fd5b61104683838361175f565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156110cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110c390612337565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461115f91906124d4565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516111c39190612477565b60405180910390a36111d6848484611819565b50505050565b6111e682826109c6565b6112755761120b8173ffffffffffffffffffffffffffffffffffffffff16601461181e565b6112198360001c602061181e565b60405160200161122a929190612205565b6040516020818303038152906040526040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126c9190612275565b60405180910390fd5b5050565b61128382826109c6565b6113565760016009600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506112fb610d88565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b61136482826109c6565b156114385760006009600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506113dd610d88565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45b5050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156114ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114a390612397565b60405180910390fd5b6114b88260008361175f565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561153e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611535906122f7565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816002600082825461159591906125b5565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516115fa9190612477565b60405180910390a361160e83600084611819565b505050565b60008060008411611659576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611650906123f7565b60405180910390fd5b611661611a5a565b8411156116a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169a90612297565b60405180910390fd5b60006116bb8585600001611a6b90919063ffffffff16565b905083600001805490508114156116d9576000809250925050611702565b60018460010182815481106116f1576116f06127c1565b5b906000526020600020015492509250505b9250929050565b60006117156008611b45565b600061171f611a5a565b90507f8030e83b04d87bef53480e26263266d6ca66863aa8506aca6f2559d18aa1cb67816040516117509190612477565b60405180910390a18091505090565b61176a838383610d0b565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156117b5576117a882611b5b565b6117b0611bae565b611814565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611800576117f383611b5b565b6117fb611bae565b611813565b61180983611b5b565b61181282611b5b565b5b5b505050565b505050565b606060006002836002611831919061255b565b61183b91906124d4565b67ffffffffffffffff811115611854576118536127f0565b5b6040519080825280601f01601f1916602001820160405280156118865781602001600182028036833780820191505090505b5090507f3000000000000000000000000000000000000000000000000000000000000000816000815181106118be576118bd6127c1565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f780000000000000000000000000000000000000000000000000000000000000081600181518110611922576119216127c1565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535060006001846002611962919061255b565b61196c91906124d4565b90505b6001811115611a0c577f3031323334353637383961626364656600000000000000000000000000000000600f8616601081106119ae576119ad6127c1565b5b1a60f81b8282815181106119c5576119c46127c1565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600485901c945080611a05906126a7565b905061196f565b5060008414611a50576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a47906122b7565b60405180910390fd5b8091505092915050565b6000611a666008610d10565b905090565b60008083805490501415611a825760009050611b3f565b600080848054905090505b80821015611ae6576000611aa18383611bc2565b905084868281548110611ab757611ab66127c1565b5b90600052602060002001541115611ad057809150611ae0565b600181611add91906124d4565b92505b50611a8d565b600082118015611b1e57508385600184611b0091906125b5565b81548110611b1157611b106127c1565b5b9060005260206000200154145b15611b3957600182611b3091906125b5565b92505050611b3f565b81925050505b92915050565b6001816000016000828254019250508190555050565b611bab600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020611ba68361097e565b611c29565b50565b611bc06006611bbb6105ea565b611c29565b565b600060028083611bd29190612703565b600285611bdf9190612703565b611be991906124d4565b611bf3919061252a565b600283611c00919061252a565b600285611c0d919061252a565b611c1791906124d4565b611c2191906124d4565b905092915050565b6000611c33611a5a565b905080611c4284600001611ca4565b1015611c9f5782600001819080600181540180825580915050600190039060005260206000200160009091909190915055826001018290806001815401808255809150506001900390600052602060002001600090919091909150555b505050565b60008082805490501415611cbb5760009050611cec565b8160018380549050611ccd91906125b5565b81548110611cde57611cdd6127c1565b5b906000526020600020015490505b919050565b600081359050611d0081612c6a565b92915050565b600081359050611d1581612c81565b92915050565b600081359050611d2a81612c98565b92915050565b600081359050611d3f81612caf565b92915050565b600060208284031215611d5b57611d5a61281f565b5b6000611d6984828501611cf1565b91505092915050565b60008060408385031215611d8957611d8861281f565b5b6000611d9785828601611cf1565b9250506020611da885828601611cf1565b9150509250929050565b600080600060608486031215611dcb57611dca61281f565b5b6000611dd986828701611cf1565b9350506020611dea86828701611cf1565b9250506040611dfb86828701611d30565b9150509250925092565b60008060408385031215611e1c57611e1b61281f565b5b6000611e2a85828601611cf1565b9250506020611e3b85828601611d30565b9150509250929050565b600060208284031215611e5b57611e5a61281f565b5b6000611e6984828501611d06565b91505092915050565b60008060408385031215611e8957611e8861281f565b5b6000611e9785828601611d06565b9250506020611ea885828601611cf1565b9150509250929050565b600060208284031215611ec857611ec761281f565b5b6000611ed684828501611d1b565b91505092915050565b600060208284031215611ef557611ef461281f565b5b6000611f0384828501611d30565b91505092915050565b611f15816125fb565b82525050565b611f2481612607565b82525050565b6000611f35826124ad565b611f3f81856124b8565b9350611f4f818560208601612674565b611f5881612824565b840191505092915050565b6000611f6e826124ad565b611f7881856124c9565b9350611f88818560208601612674565b80840191505092915050565b6000611fa1601d836124b8565b9150611fac82612835565b602082019050919050565b6000611fc46020836124b8565b9150611fcf8261285e565b602082019050919050565b6000611fe76023836124b8565b9150611ff282612887565b604082019050919050565b600061200a6022836124b8565b9150612015826128d6565b604082019050919050565b600061202d6022836124b8565b915061203882612925565b604082019050919050565b60006120506026836124b8565b915061205b82612974565b604082019050919050565b60006120736028836124b8565b915061207e826129c3565b604082019050919050565b60006120966019836124b8565b91506120a182612a12565b602082019050919050565b60006120b96021836124b8565b91506120c482612a3b565b604082019050919050565b60006120dc6025836124b8565b91506120e782612a8a565b604082019050919050565b60006120ff6024836124b8565b915061210a82612ad9565b604082019050919050565b60006121226016836124b8565b915061212d82612b28565b602082019050919050565b60006121456017836124c9565b915061215082612b51565b601782019050919050565b60006121686020836124b8565b915061217382612b7a565b602082019050919050565b600061218b6025836124b8565b915061219682612ba3565b604082019050919050565b60006121ae6011836124c9565b91506121b982612bf2565b601182019050919050565b60006121d1602f836124b8565b91506121dc82612c1b565b604082019050919050565b6121f08161265d565b82525050565b6121ff81612667565b82525050565b600061221082612138565b915061221c8285611f63565b9150612227826121a1565b91506122338284611f63565b91508190509392505050565b60006020820190506122546000830184611f0c565b92915050565b600060208201905061226f6000830184611f1b565b92915050565b6000602082019050818103600083015261228f8184611f2a565b905092915050565b600060208201905081810360008301526122b081611f94565b9050919050565b600060208201905081810360008301526122d081611fb7565b9050919050565b600060208201905081810360008301526122f081611fda565b9050919050565b6000602082019050818103600083015261231081611ffd565b9050919050565b6000602082019050818103600083015261233081612020565b9050919050565b6000602082019050818103600083015261235081612043565b9050919050565b6000602082019050818103600083015261237081612066565b9050919050565b6000602082019050818103600083015261239081612089565b9050919050565b600060208201905081810360008301526123b0816120ac565b9050919050565b600060208201905081810360008301526123d0816120cf565b9050919050565b600060208201905081810360008301526123f0816120f2565b9050919050565b6000602082019050818103600083015261241081612115565b9050919050565b600060208201905081810360008301526124308161215b565b9050919050565b600060208201905081810360008301526124508161217e565b9050919050565b60006020820190508181036000830152612470816121c4565b9050919050565b600060208201905061248c60008301846121e7565b92915050565b60006020820190506124a760008301846121f6565b92915050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b60006124df8261265d565b91506124ea8361265d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561251f5761251e612734565b5b828201905092915050565b60006125358261265d565b91506125408361265d565b9250826125505761254f612763565b5b828204905092915050565b60006125668261265d565b91506125718361265d565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156125aa576125a9612734565b5b828202905092915050565b60006125c08261265d565b91506125cb8361265d565b9250828210156125de576125dd612734565b5b828203905092915050565b60006125f48261263d565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b83811015612692578082015181840152602081019050612677565b838111156126a1576000848401525b50505050565b60006126b28261265d565b915060008214156126c6576126c5612734565b5b600182039050919050565b600060028204905060018216806126e957607f821691505b602082108114156126fd576126fc612792565b5b50919050565b600061270e8261265d565b91506127198361265d565b92508261272957612728612763565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b6000601f19601f8301169050919050565b7f4552433230536e617073686f743a206e6f6e6578697374656e74206964000000600082015250565b7f537472696e67733a20686578206c656e67746820696e73756666696369656e74600082015250565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b7f43616c6c6572206973206e6f74204255524e45525f524f4c4500000000000000600082015250565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433230536e617073686f743a206964206973203000000000000000000000600082015250565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000600082015250565b7f43616c6c6572206973206e6f742044454641554c545f41444d494e5f524f4c45600082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b7f206973206d697373696e6720726f6c6520000000000000000000000000000000600082015250565b7f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560008201527f20726f6c657320666f722073656c660000000000000000000000000000000000602082015250565b612c73816125e9565b8114612c7e57600080fd5b50565b612c8a81612607565b8114612c9557600080fd5b50565b612ca181612611565b8114612cac57600080fd5b50565b612cb88161265d565b8114612cc357600080fd5b5056fea26469706673582212207e194fa2fbccd89f92207af5b16f68d26fd1047fd0a58ac7bb3715b5f7f75a4d64736f6c63430008060033
Deployed Bytecode Sourcemap
40923:1003:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36353:204;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6077:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8244:169;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7197:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8895:492;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37764:123;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41046:62;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38149:147;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;7039:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39197:218;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9796:215;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41436:166;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24833:266;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7368:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36649:139;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6296:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41761:154;;;:::i;:::-;;25203:234;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34627:49;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10514:413;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7708:175;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38541:149;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;7946:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36353:204;36438:4;36477:32;36462:47;;;:11;:47;;;;:87;;;;36513:36;36537:11;36513:23;:36::i;:::-;36462:87;36455:94;;36353:204;;;:::o;6077:100::-;6131:13;6164:5;6157:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6077:100;:::o;8244:169::-;8327:4;8344:39;8353:12;:10;:12::i;:::-;8367:7;8376:6;8344:8;:39::i;:::-;8401:4;8394:11;;8244:169;;;;:::o;7197:108::-;7258:7;7285:12;;7278:19;;7197:108;:::o;8895:492::-;9035:4;9052:36;9062:6;9070:9;9081:6;9052:9;:36::i;:::-;9101:24;9128:11;:19;9140:6;9128:19;;;;;;;;;;;;;;;:33;9148:12;:10;:12::i;:::-;9128:33;;;;;;;;;;;;;;;;9101:60;;9200:6;9180:16;:26;;9172:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;9287:57;9296:6;9304:12;:10;:12::i;:::-;9337:6;9318:16;:25;9287:8;:57::i;:::-;9375:4;9368:11;;;8895:492;;;;;:::o;37764:123::-;37830:7;37857:6;:12;37864:4;37857:12;;;;;;;;;;;:22;;;37850:29;;37764:123;;;:::o;41046:62::-;41084:24;41046:62;:::o;38149:147::-;38232:18;38245:4;38232:12;:18::i;:::-;36231:30;36242:4;36248:12;:10;:12::i;:::-;36231:10;:30::i;:::-;38263:25:::1;38274:4;38280:7;38263:10;:25::i;:::-;38149:147:::0;;;:::o;7039:93::-;7097:5;7122:2;7115:9;;7039:93;:::o;39197:218::-;39304:12;:10;:12::i;:::-;39293:23;;:7;:23;;;39285:83;;;;;;;;;;;;:::i;:::-;;;;;;;;;39381:26;39393:4;39399:7;39381:11;:26::i;:::-;39197:218;;:::o;9796:215::-;9884:4;9901:80;9910:12;:10;:12::i;:::-;9924:7;9970:10;9933:11;:25;9945:12;:10;:12::i;:::-;9933:25;;;;;;;;;;;;;;;:34;9959:7;9933:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;9901:8;:80::i;:::-;9999:4;9992:11;;9796:215;;;;:::o;41436:166::-;41492:32;41084:24;41513:10;41492:7;:32::i;:::-;41484:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;41567:27;41573:12;:10;:12::i;:::-;41587:6;41567:5;:27::i;:::-;41436:166;:::o;24833:266::-;24920:7;24941:16;24959:13;24976:55;24985:10;24997:24;:33;25022:7;24997:33;;;;;;;;;;;;;;;24976:8;:55::i;:::-;24940:91;;;;25051:11;:40;;25073:18;25083:7;25073:9;:18::i;:::-;25051:40;;;25065:5;25051:40;25044:47;;;;24833:266;;;;:::o;7368:127::-;7442:7;7469:9;:18;7479:7;7469:18;;;;;;;;;;;;;;;;7462:25;;7368:127;;;:::o;36649:139::-;36727:4;36751:6;:12;36758:4;36751:12;;;;;;;;;;;:20;;:29;36772:7;36751:29;;;;;;;;;;;;;;;;;;;;;;;;;36744:36;;36649:139;;;;:::o;6296:104::-;6352:13;6385:7;6378:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6296:104;:::o;41761:154::-;41807:39;34672:4;41815:18;;41835:10;41807:7;:39::i;:::-;41799:84;;;;;;;;;;;;:::i;:::-;;;;;;;;;41896:11;:9;:11::i;:::-;;41761:154::o;25203:234::-;25275:7;25296:16;25314:13;25331:43;25340:10;25352:21;25331:8;:43::i;:::-;25295:79;;;;25394:11;:35;;25416:13;:11;:13::i;:::-;25394:35;;;25408:5;25394:35;25387:42;;;;25203:234;;;:::o;34627:49::-;34672:4;34627:49;;;:::o;10514:413::-;10607:4;10624:24;10651:11;:25;10663:12;:10;:12::i;:::-;10651:25;;;;;;;;;;;;;;;:34;10677:7;10651:34;;;;;;;;;;;;;;;;10624:61;;10724:15;10704:16;:35;;10696:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;10817:67;10826:12;:10;:12::i;:::-;10840:7;10868:15;10849:16;:34;10817:8;:67::i;:::-;10915:4;10908:11;;;10514:413;;;;:::o;7708:175::-;7794:4;7811:42;7821:12;:10;:12::i;:::-;7835:9;7846:6;7811:9;:42::i;:::-;7871:4;7864:11;;7708:175;;;;:::o;38541:149::-;38625:18;38638:4;38625:12;:18::i;:::-;36231:30;36242:4;36248:12;:10;:12::i;:::-;36231:10;:30::i;:::-;38656:26:::1;38668:4;38674:7;38656:11;:26::i;:::-;38541:149:::0;;;:::o;7946:151::-;8035:7;8062:11;:18;8074:5;8062:18;;;;;;;;;;;;;;;:27;8081:7;8062:27;;;;;;;;;;;;;;;;8055:34;;7946:151;;;;:::o;15178:125::-;;;;:::o;19389:114::-;19454:7;19481;:14;;;19474:21;;19389:114;;;:::o;32167:157::-;32252:4;32291:25;32276:40;;;:11;:40;;;;32269:47;;32167:157;;;:::o;3894:98::-;3947:7;3974:10;3967:17;;3894:98;:::o;14198:380::-;14351:1;14334:19;;:5;:19;;;;14326:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;14432:1;14413:21;;:7;:21;;;;14405:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;14516:6;14486:11;:18;14498:5;14486:18;;;;;;;;;;;;;;;:27;14505:7;14486:27;;;;;;;;;;;;;;;:36;;;;14554:7;14538:32;;14547:5;14538:32;;;14563:6;14538:32;;;;;;:::i;:::-;;;;;;;;14198:380;;;:::o;11417:733::-;11575:1;11557:20;;:6;:20;;;;11549:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;11659:1;11638:23;;:9;:23;;;;11630:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;11714:47;11735:6;11743:9;11754:6;11714:20;:47::i;:::-;11774:21;11798:9;:17;11808:6;11798:17;;;;;;;;;;;;;;;;11774:41;;11851:6;11834:13;:23;;11826:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;11972:6;11956:13;:22;11936:9;:17;11946:6;11936:17;;;;;;;;;;;;;;;:42;;;;12024:6;12000:9;:20;12010:9;12000:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;12065:9;12048:35;;12057:6;12048:35;;;12076:6;12048:35;;;;;;:::i;:::-;;;;;;;;12096:46;12116:6;12124:9;12135:6;12096:19;:46::i;:::-;11538:612;11417:733;;;:::o;37078:497::-;37159:22;37167:4;37173:7;37159;:22::i;:::-;37154:414;;37347:41;37375:7;37347:41;;37385:2;37347:19;:41::i;:::-;37461:38;37489:4;37481:13;;37496:2;37461:19;:38::i;:::-;37252:270;;;;;;;;;:::i;:::-;;;;;;;;;;;;;37198:358;;;;;;;;;;;:::i;:::-;;;;;;;;37154:414;37078:497;;:::o;40445:229::-;40520:22;40528:4;40534:7;40520;:22::i;:::-;40515:152;;40591:4;40559:6;:12;40566:4;40559:12;;;;;;;;;;;:20;;:29;40580:7;40559:29;;;;;;;;;;;;;;;;:36;;;;;;;;;;;;;;;;;;40642:12;:10;:12::i;:::-;40615:40;;40633:7;40615:40;;40627:4;40615:40;;;;;;;;;;40515:152;40445:229;;:::o;40682:230::-;40757:22;40765:4;40771:7;40757;:22::i;:::-;40753:152;;;40828:5;40796:6;:12;40803:4;40796:12;;;;;;;;;;;:20;;:29;40817:7;40796:29;;;;;;;;;;;;;;;;:37;;;;;;;;;;;;;;;;;;40880:12;:10;:12::i;:::-;40853:40;;40871:7;40853:40;;40865:4;40853:40;;;;;;;;;;40753:152;40682:230;;:::o;13169:591::-;13272:1;13253:21;;:7;:21;;;;13245:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;13325:49;13346:7;13363:1;13367:6;13325:20;:49::i;:::-;13387:22;13412:9;:18;13422:7;13412:18;;;;;;;;;;;;;;;;13387:43;;13467:6;13449:14;:24;;13441:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;13586:6;13569:14;:23;13548:9;:18;13558:7;13548:18;;;;;;;;;;;;;;;:44;;;;13630:6;13614:12;;:22;;;;;;;:::i;:::-;;;;;;;;13680:1;13654:37;;13663:7;13654:37;;;13684:6;13654:37;;;;;;:::i;:::-;;;;;;;;13704:48;13724:7;13741:1;13745:6;13704:19;:48::i;:::-;13234:526;13169:591;;:::o;26284:1619::-;26373:4;26379:7;26420:1;26407:10;:14;26399:49;;;;;;;;;;;;:::i;:::-;;;;;;;;;26481:23;:21;:23::i;:::-;26467:10;:37;;26459:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;27677:13;27693:40;27722:10;27693:9;:13;;:28;;:40;;;;:::i;:::-;27677:56;;27759:9;:13;;:20;;;;27750:5;:29;27746:150;;;27804:5;27811:1;27796:17;;;;;;;27746:150;27854:4;27860:9;:16;;27877:5;27860:23;;;;;;;;:::i;:::-;;;;;;;;;;27846:38;;;;;26284:1619;;;;;;:::o;24305:223::-;24352:7;24372:30;:18;:28;:30::i;:::-;24415:17;24435:23;:21;:23::i;:::-;24415:43;;24474:19;24483:9;24474:19;;;;;;:::i;:::-;;;;;;;;24511:9;24504:16;;;24305:223;:::o;25654:622::-;25797:44;25824:4;25830:2;25834:6;25797:26;:44::i;:::-;25874:1;25858:18;;:4;:18;;;25854:415;;;25914:26;25937:2;25914:22;:26::i;:::-;25955:28;:26;:28::i;:::-;25854:415;;;26019:1;26005:16;;:2;:16;;;26001:268;;;26059:28;26082:4;26059:22;:28::i;:::-;26102;:26;:28::i;:::-;26001:268;;;26188:28;26211:4;26188:22;:28::i;:::-;26231:26;26254:2;26231:22;:26::i;:::-;26001:268;25854:415;25654:622;;;:::o;15907:124::-;;;;:::o;30255:451::-;30330:13;30356:19;30401:1;30392:6;30388:1;:10;;;;:::i;:::-;:14;;;;:::i;:::-;30378:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30356:47;;30414:15;:6;30421:1;30414:9;;;;;;;;:::i;:::-;;;;;:15;;;;;;;;;;;30440;:6;30447:1;30440:9;;;;;;;;:::i;:::-;;;;;:15;;;;;;;;;;;30471:9;30496:1;30487:6;30483:1;:10;;;;:::i;:::-;:14;;;;:::i;:::-;30471:26;;30466:135;30503:1;30499;:5;30466:135;;;30538:12;30559:3;30551:5;:11;30538:25;;;;;;;:::i;:::-;;;;;30526:6;30533:1;30526:9;;;;;;;;:::i;:::-;;;;;:37;;;;;;;;;;;30588:1;30578:11;;;;;30506:3;;;;:::i;:::-;;;30466:135;;;;30628:1;30619:5;:10;30611:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;30691:6;30677:21;;;30255:451;;;;:::o;24594:127::-;24658:7;24685:28;:18;:26;:28::i;:::-;24678:35;;24594:127;:::o;17731:918::-;17820:7;17860:1;17844:5;:12;;;;:17;17840:58;;;17885:1;17878:8;;;;17840:58;17910:11;17936:12;17951:5;:12;;;;17936:27;;17976:424;17989:4;17983:3;:10;17976:424;;;18010:11;18024:23;18037:3;18042:4;18024:12;:23::i;:::-;18010:37;;18281:7;18268:5;18274:3;18268:10;;;;;;;;:::i;:::-;;;;;;;;;;:20;18264:125;;;18316:3;18309:10;;18264:125;;;18372:1;18366:3;:7;;;;:::i;:::-;18360:13;;18264:125;17995:405;17976:424;;;18526:1;18520:3;:7;:36;;;;;18549:7;18531:5;18543:1;18537:3;:7;;;;:::i;:::-;18531:14;;;;;;;;:::i;:::-;;;;;;;;;;:25;18520:36;18516:126;;;18586:1;18580:3;:7;;;;:::i;:::-;18573:14;;;;;;18516:126;18627:3;18620:10;;;;17731:918;;;;;:::o;19511:127::-;19618:1;19600:7;:14;;;:19;;;;;;;;;;;19511:127;:::o;27911:146::-;27979:70;27995:24;:33;28020:7;27995:33;;;;;;;;;;;;;;;28030:18;28040:7;28030:9;:18::i;:::-;27979:15;:70::i;:::-;27911:146;:::o;28065:118::-;28122:53;28138:21;28161:13;:11;:13::i;:::-;28122:15;:53::i;:::-;28065:118::o;16610:198::-;16672:7;16798:1;16792;16788;:5;;;;:::i;:::-;16782:1;16778;:5;;;;:::i;:::-;16777:17;;;;:::i;:::-;16776:23;;;;:::i;:::-;16770:1;16766;:5;;;;:::i;:::-;16760:1;16756;:5;;;;:::i;:::-;16755:17;;;;:::i;:::-;:45;;;;:::i;:::-;16748:52;;16610:198;;;;:::o;28191:310::-;28286:17;28306:23;:21;:23::i;:::-;28286:43;;28377:9;28344:30;28360:9;:13;;28344:15;:30::i;:::-;:42;28340:154;;;28403:9;:13;;28422:9;28403:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28447:9;:16;;28469:12;28447:35;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28340:154;28275:226;28191:310;;:::o;28509:212::-;28579:7;28617:1;28603:3;:10;;;;:15;28599:115;;;28642:1;28635:8;;;;28599:115;28683:3;28700:1;28687:3;:10;;;;:14;;;;:::i;:::-;28683:19;;;;;;;;:::i;:::-;;;;;;;;;;28676:26;;28509:212;;;;:::o;7:139:1:-;53:5;91:6;78:20;69:29;;107:33;134:5;107:33;:::i;:::-;59:87;;;;:::o;152:139::-;198:5;236:6;223:20;214:29;;252:33;279:5;252:33;:::i;:::-;204:87;;;;:::o;297:137::-;342:5;380:6;367:20;358:29;;396:32;422:5;396:32;:::i;:::-;348:86;;;;:::o;440:139::-;486:5;524:6;511:20;502:29;;540:33;567:5;540:33;:::i;:::-;492:87;;;;:::o;585:329::-;644:6;693:2;681:9;672:7;668:23;664:32;661:2;;;699:79;;:::i;:::-;661:2;819:1;844:53;889:7;880:6;869:9;865:22;844:53;:::i;:::-;834:63;;790:117;651:263;;;;:::o;920:474::-;988:6;996;1045:2;1033:9;1024:7;1020:23;1016:32;1013:2;;;1051:79;;:::i;:::-;1013:2;1171:1;1196:53;1241:7;1232:6;1221:9;1217:22;1196:53;:::i;:::-;1186:63;;1142:117;1298:2;1324:53;1369:7;1360:6;1349:9;1345:22;1324:53;:::i;:::-;1314:63;;1269:118;1003:391;;;;;:::o;1400:619::-;1477:6;1485;1493;1542:2;1530:9;1521:7;1517:23;1513:32;1510:2;;;1548:79;;:::i;:::-;1510:2;1668:1;1693:53;1738:7;1729:6;1718:9;1714:22;1693:53;:::i;:::-;1683:63;;1639:117;1795:2;1821:53;1866:7;1857:6;1846:9;1842:22;1821:53;:::i;:::-;1811:63;;1766:118;1923:2;1949:53;1994:7;1985:6;1974:9;1970:22;1949:53;:::i;:::-;1939:63;;1894:118;1500:519;;;;;:::o;2025:474::-;2093:6;2101;2150:2;2138:9;2129:7;2125:23;2121:32;2118:2;;;2156:79;;:::i;:::-;2118:2;2276:1;2301:53;2346:7;2337:6;2326:9;2322:22;2301:53;:::i;:::-;2291:63;;2247:117;2403:2;2429:53;2474:7;2465:6;2454:9;2450:22;2429:53;:::i;:::-;2419:63;;2374:118;2108:391;;;;;:::o;2505:329::-;2564:6;2613:2;2601:9;2592:7;2588:23;2584:32;2581:2;;;2619:79;;:::i;:::-;2581:2;2739:1;2764:53;2809:7;2800:6;2789:9;2785:22;2764:53;:::i;:::-;2754:63;;2710:117;2571:263;;;;:::o;2840:474::-;2908:6;2916;2965:2;2953:9;2944:7;2940:23;2936:32;2933:2;;;2971:79;;:::i;:::-;2933:2;3091:1;3116:53;3161:7;3152:6;3141:9;3137:22;3116:53;:::i;:::-;3106:63;;3062:117;3218:2;3244:53;3289:7;3280:6;3269:9;3265:22;3244:53;:::i;:::-;3234:63;;3189:118;2923:391;;;;;:::o;3320:327::-;3378:6;3427:2;3415:9;3406:7;3402:23;3398:32;3395:2;;;3433:79;;:::i;:::-;3395:2;3553:1;3578:52;3622:7;3613:6;3602:9;3598:22;3578:52;:::i;:::-;3568:62;;3524:116;3385:262;;;;:::o;3653:329::-;3712:6;3761:2;3749:9;3740:7;3736:23;3732:32;3729:2;;;3767:79;;:::i;:::-;3729:2;3887:1;3912:53;3957:7;3948:6;3937:9;3933:22;3912:53;:::i;:::-;3902:63;;3858:117;3719:263;;;;:::o;3988:109::-;4069:21;4084:5;4069:21;:::i;:::-;4064:3;4057:34;4047:50;;:::o;4103:118::-;4190:24;4208:5;4190:24;:::i;:::-;4185:3;4178:37;4168:53;;:::o;4227:364::-;4315:3;4343:39;4376:5;4343:39;:::i;:::-;4398:71;4462:6;4457:3;4398:71;:::i;:::-;4391:78;;4478:52;4523:6;4518:3;4511:4;4504:5;4500:16;4478:52;:::i;:::-;4555:29;4577:6;4555:29;:::i;:::-;4550:3;4546:39;4539:46;;4319:272;;;;;:::o;4597:377::-;4703:3;4731:39;4764:5;4731:39;:::i;:::-;4786:89;4868:6;4863:3;4786:89;:::i;:::-;4779:96;;4884:52;4929:6;4924:3;4917:4;4910:5;4906:16;4884:52;:::i;:::-;4961:6;4956:3;4952:16;4945:23;;4707:267;;;;;:::o;4980:366::-;5122:3;5143:67;5207:2;5202:3;5143:67;:::i;:::-;5136:74;;5219:93;5308:3;5219:93;:::i;:::-;5337:2;5332:3;5328:12;5321:19;;5126:220;;;:::o;5352:366::-;5494:3;5515:67;5579:2;5574:3;5515:67;:::i;:::-;5508:74;;5591:93;5680:3;5591:93;:::i;:::-;5709:2;5704:3;5700:12;5693:19;;5498:220;;;:::o;5724:366::-;5866:3;5887:67;5951:2;5946:3;5887:67;:::i;:::-;5880:74;;5963:93;6052:3;5963:93;:::i;:::-;6081:2;6076:3;6072:12;6065:19;;5870:220;;;:::o;6096:366::-;6238:3;6259:67;6323:2;6318:3;6259:67;:::i;:::-;6252:74;;6335:93;6424:3;6335:93;:::i;:::-;6453:2;6448:3;6444:12;6437:19;;6242:220;;;:::o;6468:366::-;6610:3;6631:67;6695:2;6690:3;6631:67;:::i;:::-;6624:74;;6707:93;6796:3;6707:93;:::i;:::-;6825:2;6820:3;6816:12;6809:19;;6614:220;;;:::o;6840:366::-;6982:3;7003:67;7067:2;7062:3;7003:67;:::i;:::-;6996:74;;7079:93;7168:3;7079:93;:::i;:::-;7197:2;7192:3;7188:12;7181:19;;6986:220;;;:::o;7212:366::-;7354:3;7375:67;7439:2;7434:3;7375:67;:::i;:::-;7368:74;;7451:93;7540:3;7451:93;:::i;:::-;7569:2;7564:3;7560:12;7553:19;;7358:220;;;:::o;7584:366::-;7726:3;7747:67;7811:2;7806:3;7747:67;:::i;:::-;7740:74;;7823:93;7912:3;7823:93;:::i;:::-;7941:2;7936:3;7932:12;7925:19;;7730:220;;;:::o;7956:366::-;8098:3;8119:67;8183:2;8178:3;8119:67;:::i;:::-;8112:74;;8195:93;8284:3;8195:93;:::i;:::-;8313:2;8308:3;8304:12;8297:19;;8102:220;;;:::o;8328:366::-;8470:3;8491:67;8555:2;8550:3;8491:67;:::i;:::-;8484:74;;8567:93;8656:3;8567:93;:::i;:::-;8685:2;8680:3;8676:12;8669:19;;8474:220;;;:::o;8700:366::-;8842:3;8863:67;8927:2;8922:3;8863:67;:::i;:::-;8856:74;;8939:93;9028:3;8939:93;:::i;:::-;9057:2;9052:3;9048:12;9041:19;;8846:220;;;:::o;9072:366::-;9214:3;9235:67;9299:2;9294:3;9235:67;:::i;:::-;9228:74;;9311:93;9400:3;9311:93;:::i;:::-;9429:2;9424:3;9420:12;9413:19;;9218:220;;;:::o;9444:402::-;9604:3;9625:85;9707:2;9702:3;9625:85;:::i;:::-;9618:92;;9719:93;9808:3;9719:93;:::i;:::-;9837:2;9832:3;9828:12;9821:19;;9608:238;;;:::o;9852:366::-;9994:3;10015:67;10079:2;10074:3;10015:67;:::i;:::-;10008:74;;10091:93;10180:3;10091:93;:::i;:::-;10209:2;10204:3;10200:12;10193:19;;9998:220;;;:::o;10224:366::-;10366:3;10387:67;10451:2;10446:3;10387:67;:::i;:::-;10380:74;;10463:93;10552:3;10463:93;:::i;:::-;10581:2;10576:3;10572:12;10565:19;;10370:220;;;:::o;10596:402::-;10756:3;10777:85;10859:2;10854:3;10777:85;:::i;:::-;10770:92;;10871:93;10960:3;10871:93;:::i;:::-;10989:2;10984:3;10980:12;10973:19;;10760:238;;;:::o;11004:366::-;11146:3;11167:67;11231:2;11226:3;11167:67;:::i;:::-;11160:74;;11243:93;11332:3;11243:93;:::i;:::-;11361:2;11356:3;11352:12;11345:19;;11150:220;;;:::o;11376:118::-;11463:24;11481:5;11463:24;:::i;:::-;11458:3;11451:37;11441:53;;:::o;11500:112::-;11583:22;11599:5;11583:22;:::i;:::-;11578:3;11571:35;11561:51;;:::o;11618:967::-;12000:3;12022:148;12166:3;12022:148;:::i;:::-;12015:155;;12187:95;12278:3;12269:6;12187:95;:::i;:::-;12180:102;;12299:148;12443:3;12299:148;:::i;:::-;12292:155;;12464:95;12555:3;12546:6;12464:95;:::i;:::-;12457:102;;12576:3;12569:10;;12004:581;;;;;:::o;12591:210::-;12678:4;12716:2;12705:9;12701:18;12693:26;;12729:65;12791:1;12780:9;12776:17;12767:6;12729:65;:::i;:::-;12683:118;;;;:::o;12807:222::-;12900:4;12938:2;12927:9;12923:18;12915:26;;12951:71;13019:1;13008:9;13004:17;12995:6;12951:71;:::i;:::-;12905:124;;;;:::o;13035:313::-;13148:4;13186:2;13175:9;13171:18;13163:26;;13235:9;13229:4;13225:20;13221:1;13210:9;13206:17;13199:47;13263:78;13336:4;13327:6;13263:78;:::i;:::-;13255:86;;13153:195;;;;:::o;13354:419::-;13520:4;13558:2;13547:9;13543:18;13535:26;;13607:9;13601:4;13597:20;13593:1;13582:9;13578:17;13571:47;13635:131;13761:4;13635:131;:::i;:::-;13627:139;;13525:248;;;:::o;13779:419::-;13945:4;13983:2;13972:9;13968:18;13960:26;;14032:9;14026:4;14022:20;14018:1;14007:9;14003:17;13996:47;14060:131;14186:4;14060:131;:::i;:::-;14052:139;;13950:248;;;:::o;14204:419::-;14370:4;14408:2;14397:9;14393:18;14385:26;;14457:9;14451:4;14447:20;14443:1;14432:9;14428:17;14421:47;14485:131;14611:4;14485:131;:::i;:::-;14477:139;;14375:248;;;:::o;14629:419::-;14795:4;14833:2;14822:9;14818:18;14810:26;;14882:9;14876:4;14872:20;14868:1;14857:9;14853:17;14846:47;14910:131;15036:4;14910:131;:::i;:::-;14902:139;;14800:248;;;:::o;15054:419::-;15220:4;15258:2;15247:9;15243:18;15235:26;;15307:9;15301:4;15297:20;15293:1;15282:9;15278:17;15271:47;15335:131;15461:4;15335:131;:::i;:::-;15327:139;;15225:248;;;:::o;15479:419::-;15645:4;15683:2;15672:9;15668:18;15660:26;;15732:9;15726:4;15722:20;15718:1;15707:9;15703:17;15696:47;15760:131;15886:4;15760:131;:::i;:::-;15752:139;;15650:248;;;:::o;15904:419::-;16070:4;16108:2;16097:9;16093:18;16085:26;;16157:9;16151:4;16147:20;16143:1;16132:9;16128:17;16121:47;16185:131;16311:4;16185:131;:::i;:::-;16177:139;;16075:248;;;:::o;16329:419::-;16495:4;16533:2;16522:9;16518:18;16510:26;;16582:9;16576:4;16572:20;16568:1;16557:9;16553:17;16546:47;16610:131;16736:4;16610:131;:::i;:::-;16602:139;;16500:248;;;:::o;16754:419::-;16920:4;16958:2;16947:9;16943:18;16935:26;;17007:9;17001:4;16997:20;16993:1;16982:9;16978:17;16971:47;17035:131;17161:4;17035:131;:::i;:::-;17027:139;;16925:248;;;:::o;17179:419::-;17345:4;17383:2;17372:9;17368:18;17360:26;;17432:9;17426:4;17422:20;17418:1;17407:9;17403:17;17396:47;17460:131;17586:4;17460:131;:::i;:::-;17452:139;;17350:248;;;:::o;17604:419::-;17770:4;17808:2;17797:9;17793:18;17785:26;;17857:9;17851:4;17847:20;17843:1;17832:9;17828:17;17821:47;17885:131;18011:4;17885:131;:::i;:::-;17877:139;;17775:248;;;:::o;18029:419::-;18195:4;18233:2;18222:9;18218:18;18210:26;;18282:9;18276:4;18272:20;18268:1;18257:9;18253:17;18246:47;18310:131;18436:4;18310:131;:::i;:::-;18302:139;;18200:248;;;:::o;18454:419::-;18620:4;18658:2;18647:9;18643:18;18635:26;;18707:9;18701:4;18697:20;18693:1;18682:9;18678:17;18671:47;18735:131;18861:4;18735:131;:::i;:::-;18727:139;;18625:248;;;:::o;18879:419::-;19045:4;19083:2;19072:9;19068:18;19060:26;;19132:9;19126:4;19122:20;19118:1;19107:9;19103:17;19096:47;19160:131;19286:4;19160:131;:::i;:::-;19152:139;;19050:248;;;:::o;19304:419::-;19470:4;19508:2;19497:9;19493:18;19485:26;;19557:9;19551:4;19547:20;19543:1;19532:9;19528:17;19521:47;19585:131;19711:4;19585:131;:::i;:::-;19577:139;;19475:248;;;:::o;19729:222::-;19822:4;19860:2;19849:9;19845:18;19837:26;;19873:71;19941:1;19930:9;19926:17;19917:6;19873:71;:::i;:::-;19827:124;;;;:::o;19957:214::-;20046:4;20084:2;20073:9;20069:18;20061:26;;20097:67;20161:1;20150:9;20146:17;20137:6;20097:67;:::i;:::-;20051:120;;;;:::o;20258:99::-;20310:6;20344:5;20338:12;20328:22;;20317:40;;;:::o;20363:169::-;20447:11;20481:6;20476:3;20469:19;20521:4;20516:3;20512:14;20497:29;;20459:73;;;;:::o;20538:148::-;20640:11;20677:3;20662:18;;20652:34;;;;:::o;20692:305::-;20732:3;20751:20;20769:1;20751:20;:::i;:::-;20746:25;;20785:20;20803:1;20785:20;:::i;:::-;20780:25;;20939:1;20871:66;20867:74;20864:1;20861:81;20858:2;;;20945:18;;:::i;:::-;20858:2;20989:1;20986;20982:9;20975:16;;20736:261;;;;:::o;21003:185::-;21043:1;21060:20;21078:1;21060:20;:::i;:::-;21055:25;;21094:20;21112:1;21094:20;:::i;:::-;21089:25;;21133:1;21123:2;;21138:18;;:::i;:::-;21123:2;21180:1;21177;21173:9;21168:14;;21045:143;;;;:::o;21194:348::-;21234:7;21257:20;21275:1;21257:20;:::i;:::-;21252:25;;21291:20;21309:1;21291:20;:::i;:::-;21286:25;;21479:1;21411:66;21407:74;21404:1;21401:81;21396:1;21389:9;21382:17;21378:105;21375:2;;;21486:18;;:::i;:::-;21375:2;21534:1;21531;21527:9;21516:20;;21242:300;;;;:::o;21548:191::-;21588:4;21608:20;21626:1;21608:20;:::i;:::-;21603:25;;21642:20;21660:1;21642:20;:::i;:::-;21637:25;;21681:1;21678;21675:8;21672:2;;;21686:18;;:::i;:::-;21672:2;21731:1;21728;21724:9;21716:17;;21593:146;;;;:::o;21745:96::-;21782:7;21811:24;21829:5;21811:24;:::i;:::-;21800:35;;21790:51;;;:::o;21847:90::-;21881:7;21924:5;21917:13;21910:21;21899:32;;21889:48;;;:::o;21943:77::-;21980:7;22009:5;21998:16;;21988:32;;;:::o;22026:149::-;22062:7;22102:66;22095:5;22091:78;22080:89;;22070:105;;;:::o;22181:126::-;22218:7;22258:42;22251:5;22247:54;22236:65;;22226:81;;;:::o;22313:77::-;22350:7;22379:5;22368:16;;22358:32;;;:::o;22396:86::-;22431:7;22471:4;22464:5;22460:16;22449:27;;22439:43;;;:::o;22488:307::-;22556:1;22566:113;22580:6;22577:1;22574:13;22566:113;;;22665:1;22660:3;22656:11;22650:18;22646:1;22641:3;22637:11;22630:39;22602:2;22599:1;22595:10;22590:15;;22566:113;;;22697:6;22694:1;22691:13;22688:2;;;22777:1;22768:6;22763:3;22759:16;22752:27;22688:2;22537:258;;;;:::o;22801:171::-;22840:3;22863:24;22881:5;22863:24;:::i;:::-;22854:33;;22909:4;22902:5;22899:15;22896:2;;;22917:18;;:::i;:::-;22896:2;22964:1;22957:5;22953:13;22946:20;;22844:128;;;:::o;22978:320::-;23022:6;23059:1;23053:4;23049:12;23039:22;;23106:1;23100:4;23096:12;23127:18;23117:2;;23183:4;23175:6;23171:17;23161:27;;23117:2;23245;23237:6;23234:14;23214:18;23211:38;23208:2;;;23264:18;;:::i;:::-;23208:2;23029:269;;;;:::o;23304:176::-;23336:1;23353:20;23371:1;23353:20;:::i;:::-;23348:25;;23387:20;23405:1;23387:20;:::i;:::-;23382:25;;23426:1;23416:2;;23431:18;;:::i;:::-;23416:2;23472:1;23469;23465:9;23460:14;;23338:142;;;;:::o;23486:180::-;23534:77;23531:1;23524:88;23631:4;23628:1;23621:15;23655:4;23652:1;23645:15;23672:180;23720:77;23717:1;23710:88;23817:4;23814:1;23807:15;23841:4;23838:1;23831:15;23858:180;23906:77;23903:1;23896:88;24003:4;24000:1;23993:15;24027:4;24024:1;24017:15;24044:180;24092:77;24089:1;24082:88;24189:4;24186:1;24179:15;24213:4;24210:1;24203:15;24230:180;24278:77;24275:1;24268:88;24375:4;24372:1;24365:15;24399:4;24396:1;24389:15;24539:117;24648:1;24645;24638:12;24662:102;24703:6;24754:2;24750:7;24745:2;24738:5;24734:14;24730:28;24720:38;;24710:54;;;:::o;24770:179::-;24910:31;24906:1;24898:6;24894:14;24887:55;24876:73;:::o;24955:182::-;25095:34;25091:1;25083:6;25079:14;25072:58;25061:76;:::o;25143:222::-;25283:34;25279:1;25271:6;25267:14;25260:58;25352:5;25347:2;25339:6;25335:15;25328:30;25249:116;:::o;25371:221::-;25511:34;25507:1;25499:6;25495:14;25488:58;25580:4;25575:2;25567:6;25563:15;25556:29;25477:115;:::o;25598:221::-;25738:34;25734:1;25726:6;25722:14;25715:58;25807:4;25802:2;25794:6;25790:15;25783:29;25704:115;:::o;25825:225::-;25965:34;25961:1;25953:6;25949:14;25942:58;26034:8;26029:2;26021:6;26017:15;26010:33;25931:119;:::o;26056:227::-;26196:34;26192:1;26184:6;26180:14;26173:58;26265:10;26260:2;26252:6;26248:15;26241:35;26162:121;:::o;26289:175::-;26429:27;26425:1;26417:6;26413:14;26406:51;26395:69;:::o;26470:220::-;26610:34;26606:1;26598:6;26594:14;26587:58;26679:3;26674:2;26666:6;26662:15;26655:28;26576:114;:::o;26696:224::-;26836:34;26832:1;26824:6;26820:14;26813:58;26905:7;26900:2;26892:6;26888:15;26881:32;26802:118;:::o;26926:223::-;27066:34;27062:1;27054:6;27050:14;27043:58;27135:6;27130:2;27122:6;27118:15;27111:31;27032:117;:::o;27155:172::-;27295:24;27291:1;27283:6;27279:14;27272:48;27261:66;:::o;27333:173::-;27473:25;27469:1;27461:6;27457:14;27450:49;27439:67;:::o;27512:182::-;27652:34;27648:1;27640:6;27636:14;27629:58;27618:76;:::o;27700:224::-;27840:34;27836:1;27828:6;27824:14;27817:58;27909:7;27904:2;27896:6;27892:15;27885:32;27806:118;:::o;27930:167::-;28070:19;28066:1;28058:6;28054:14;28047:43;28036:61;:::o;28103:234::-;28243:34;28239:1;28231:6;28227:14;28220:58;28312:17;28307:2;28299:6;28295:15;28288:42;28209:128;:::o;28343:122::-;28416:24;28434:5;28416:24;:::i;:::-;28409:5;28406:35;28396:2;;28455:1;28452;28445:12;28396:2;28386:79;:::o;28471:122::-;28544:24;28562:5;28544:24;:::i;:::-;28537:5;28534:35;28524:2;;28583:1;28580;28573:12;28524:2;28514:79;:::o;28599:120::-;28671:23;28688:5;28671:23;:::i;:::-;28664:5;28661:34;28651:2;;28709:1;28706;28699:12;28651:2;28641:78;:::o;28725:122::-;28798:24;28816:5;28798:24;:::i;:::-;28791:5;28788:35;28778:2;;28837:1;28834;28827:12;28778:2;28768:79;:::o
Swarm Source
ipfs://7e194fa2fbccd89f92207af5b16f68d26fd1047fd0a58ac7bb3715b5f7f75a4d
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.