Token Array
Overview ERC20
Price
$0.01 @ 0.000007 ETH
Fully Diluted Market Cap
Total Supply:
42,031,138.70304 Array
Holders:
369 addresses
Transfers:
-
Contract:
Decimals:
18
Official Site:
[ Download CSV Export ]
[ Download CSV Export ]
OVERVIEW
Array is a #RealYield Launchpad Integrated DEX & Venture Fund that enables projects to raise capital in a decentralized and permissionless environment on Arbitrum and zkSync.Update? Click here to update the token ICO / general information
# | Exchange | Pair | Price | 24H Volume | % Volume | |
---|---|---|---|---|---|---|
There are no matching entries | ||||||
Contract Name:
Array
Compiler Version
v0.8.4+commit.c7e474f2
Contract Source Code (Solidity)
/** *Submitted for verification at Arbiscan.io on 2023-04-14 */ // Sources flattened with hardhat v2.9.3 https://hardhat.org // File @openzeppelin/contracts/utils/math/[email protected] // SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/math/SafeMath.sol) pragma solidity ^0.8.0; // CAUTION // This version of SafeMath should only be used with Solidity 0.8 or later, // because it relies on the compiler's built in overflow checks. /** * @dev Wrappers over Solidity's arithmetic operations. * * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler * now has built in overflow checking. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the substraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { return a + b; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { return a * b; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b <= a, errorMessage); return a - b; } } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a / b; } } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a % b; } } } // File @openzeppelin/contracts/utils/[email protected] // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File @openzeppelin/contracts/security/[email protected] // OpenZeppelin Contracts v4.4.1 (security/Pausable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which allows children to implement an emergency stop * mechanism that can be triggered by an authorized account. * * This module is used through inheritance. It will make available the * modifiers `whenNotPaused` and `whenPaused`, which can be applied to * the functions of your contract. Note that they will not be pausable by * simply including this module, only once the modifiers are put in place. */ abstract contract Pausable is Context { /** * @dev Emitted when the pause is triggered by `account`. */ event Paused(address account); /** * @dev Emitted when the pause is lifted by `account`. */ event Unpaused(address account); bool private _paused; /** * @dev Initializes the contract in unpaused state. */ constructor() { _paused = false; } /** * @dev Returns true if the contract is paused, and false otherwise. */ function paused() public view virtual returns (bool) { return _paused; } /** * @dev Modifier to make a function callable only when the contract is not paused. * * Requirements: * * - The contract must not be paused. */ modifier whenNotPaused() { require(!paused(), "Pausable: paused"); _; } /** * @dev Modifier to make a function callable only when the contract is paused. * * Requirements: * * - The contract must be paused. */ modifier whenPaused() { require(paused(), "Pausable: not paused"); _; } /** * @dev Triggers stopped state. * * Requirements: * * - The contract must not be paused. */ function _pause() internal virtual whenNotPaused { _paused = true; emit Paused(_msgSender()); } /** * @dev Returns to normal state. * * Requirements: * * - The contract must be paused. */ function _unpause() internal virtual whenPaused { _paused = false; emit Unpaused(_msgSender()); } } // File @openzeppelin/contracts/access/[email protected] // OpenZeppelin Contracts v4.4.1 (access/IAccessControl.sol) pragma solidity ^0.8.0; /** * @dev External interface of AccessControl declared to support ERC165 detection. */ interface IAccessControl { /** * @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 {AccessControl-_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 Returns `true` if `account` has been granted `role`. */ function hasRole(bytes32 role, address account) external view returns (bool); /** * @dev Returns the admin role that controls `role`. See {grantRole} and * {revokeRole}. * * To change a role's admin, use {AccessControl-_setRoleAdmin}. */ function getRoleAdmin(bytes32 role) external view returns (bytes32); /** * @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) external; /** * @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) external; /** * @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) external; } // File @openzeppelin/contracts/utils/[email protected] // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) pragma solidity ^0.8.0; /** * @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); } } // File @openzeppelin/contracts/utils/introspection/[email protected] // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @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); } // File @openzeppelin/contracts/utils/introspection/[email protected] // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; /** * @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; } } // File @openzeppelin/contracts/access/[email protected] // OpenZeppelin Contracts (last updated v4.5.0) (access/AccessControl.sol) pragma solidity ^0.8.0; /** * @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 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]{40}) is missing role (0x[0-9a-f]{64})$/ * * _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 virtual 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]{40}) is missing role (0x[0-9a-f]{64})$/ */ function _checkRole(bytes32 role, address account) internal view virtual { 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 virtual 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 revoked `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}. * ==== * * NOTE: This function is deprecated in favor of {_grantRole}. */ 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 { bytes32 previousAdminRole = getRoleAdmin(role); _roles[role].adminRole = adminRole; emit RoleAdminChanged(role, previousAdminRole, adminRole); } /** * @dev Grants `role` to `account`. * * Internal function without access restriction. */ function _grantRole(bytes32 role, address account) internal virtual { if (!hasRole(role, account)) { _roles[role].members[account] = true; emit RoleGranted(role, account, _msgSender()); } } /** * @dev Revokes `role` from `account`. * * Internal function without access restriction. */ function _revokeRole(bytes32 role, address account) internal virtual { if (hasRole(role, account)) { _roles[role].members[account] = false; emit RoleRevoked(role, account, _msgSender()); } } } // File @openzeppelin/contracts/token/ERC20/[email protected] // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `from` to `to` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 amount ) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval( address indexed owner, address indexed spender, uint256 value ); } // File @openzeppelin/contracts/token/ERC20/extensions/[email protected] // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.0; /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); } // File @openzeppelin/contracts/token/ERC20/[email protected] // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/ERC20.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of ERC20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * The default value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless this function is * overridden; * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `to` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address to, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _transfer(owner, to, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on * `transferFrom`. This is semantically equivalent to an infinite approval. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _approve(owner, spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * NOTE: Does not update the allowance if the current allowance * is the maximum `uint256`. * * Requirements: * * - `from` and `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. * - the caller must have allowance for ``from``'s tokens of at least * `amount`. */ function transferFrom( address from, address to, uint256 amount ) public virtual override returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, amount); _transfer(from, to, amount); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { address owner = _msgSender(); _approve(owner, spender, _allowances[owner][spender] + addedValue); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { address owner = _msgSender(); uint256 currentAllowance = _allowances[owner][spender]; require( currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero" ); unchecked { _approve(owner, spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `sender` to `recipient`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. */ function _transfer( address from, address to, uint256 amount ) internal virtual { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(from, to, amount); uint256 fromBalance = _balances[from]; require( fromBalance >= amount, "ERC20: transfer amount exceeds balance" ); unchecked { _balances[from] = fromBalance - amount; } _balances[to] += amount; emit Transfer(from, to, amount); _afterTokenTransfer(from, to, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; _balances[account] += amount; emit Transfer(address(0), account, amount); _afterTokenTransfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account] = accountBalance - amount; } _totalSupply -= amount; emit Transfer(account, address(0), amount); _afterTokenTransfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve( address owner, address spender, uint256 amount ) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Spend `amount` form the allowance of `owner` toward `spender`. * * Does not update the allowance amount in case of infinite allowance. * Revert if not enough allowance is available. * * Might emit an {Approval} event. */ function _spendAllowance( address owner, address spender, uint256 amount ) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { require( currentAllowance >= amount, "ERC20: insufficient allowance" ); unchecked { _approve(owner, spender, currentAllowance - amount); } } } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 amount ) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * has been transferred to `to`. * - when `from` is zero, `amount` tokens have been minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens have been burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 amount ) internal virtual {} } // File @openzeppelin/contracts/token/ERC20/extensions/[email protected] // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/extensions/ERC20Burnable.sol) pragma solidity ^0.8.0; /** * @dev Extension of {ERC20} that allows token holders to destroy both their own * tokens and those that they have an allowance for, in a way that can be * recognized off-chain (via event analysis). */ abstract contract ERC20Burnable is Context, ERC20 { /** * @dev Destroys `amount` tokens from the caller. * * See {ERC20-_burn}. */ function burn(uint256 amount) public virtual { _burn(_msgSender(), amount); } /** * @dev Destroys `amount` tokens from `account`, deducting from the caller's * allowance. * * See {ERC20-_burn} and {ERC20-allowance}. * * Requirements: * * - the caller must have allowance for ``accounts``'s tokens of at least * `amount`. */ function burnFrom(address account, uint256 amount) public virtual { _spendAllowance(account, _msgSender(), amount); _burn(account, amount); } } // File contracts/Array/ERC20Capped.sol // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/ERC20Capped.sol) pragma solidity ^0.8.0; /** * @dev Extension of {ERC20} that adds a cap to the supply of tokens. */ abstract contract ERC20Capped is ERC20, ERC20Burnable { uint256 private _cap; /** * @dev Sets the value of the `cap`. This value is immutable, it can only be * set once during construction. */ constructor(uint256 cap_) { require(cap_ > 0, "ERC20Capped: cap is 0"); _cap = cap_; } /** * @dev Returns the cap on the token's total supply. */ function cap() public view virtual returns (uint256) { return _cap; } /** * @dev See {ERC20-_mint}. */ function _mint(address account, uint256 amount) internal virtual override { require( ERC20.totalSupply() + amount <= cap(), "ERC20Capped: cap exceeded" ); super._mint(account, amount); } } // File contracts/Array/arrayToken.sol pragma solidity ^0.8.0; contract Array is ERC20Capped, Pausable, AccessControl { using SafeMath for uint256; bytes32 public constant MINTER_ROLE = keccak256("MINTER_ROLE"); constructor() ERC20("Array", "Array") ERC20Capped(100000000e18) { _setupRole(DEFAULT_ADMIN_ROLE, msg.sender); _mint(0x1C046D24150B221fFA7f4Aa7F4b735d2a0A5fe0B, 40000000e18); } function mint(address to, uint256 amount) public onlyRole(MINTER_ROLE) { _mint(to, amount); } function pause() public onlyRole(DEFAULT_ADMIN_ROLE) { _pause(); } function unpause() public onlyRole(DEFAULT_ADMIN_ROLE) { _unpause(); } function _beforeTokenTransfer( address from, address to, uint256 amount ) internal override whenNotPaused { super._beforeTokenTransfer(from, to, amount); } }
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":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","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":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MINTER_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":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"cap","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"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":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":[{"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":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040523480156200001157600080fd5b50604080518082018252600580825264417272617960d81b6020808401828152855180870190965292855284015281516a52b7d2dcc80cd2e400000093916200005e9160039190620003b6565b50805162000074906004906020840190620003b6565b50505060008111620000cd5760405162461bcd60e51b815260206004820152601560248201527f45524332304361707065643a206361702069732030000000000000000000000060448201526064015b60405180910390fd5b6005556006805460ff19169055620000e760003362000118565b62000112731c046d24150b221ffa7f4aa7f4b735d2a0a5fe0b6a211654585005212800000062000128565b620004be565b620001248282620001b4565b5050565b60055481620001416200025860201b620004971760201c565b6200014d91906200045c565b11156200019d5760405162461bcd60e51b815260206004820152601960248201527f45524332304361707065643a20636170206578636565646564000000000000006044820152606401620000c4565b6200012482826200025e60201b6200072d1760201c565b60008281526007602090815260408083206001600160a01b038516845290915290205460ff16620001245760008281526007602090815260408083206001600160a01b03851684529091529020805460ff19166001179055620002143390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b60025490565b6001600160a01b038216620002b65760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401620000c4565b620002c46000838362000351565b8060026000828254620002d891906200045c565b90915550506001600160a01b03821660009081526020819052604081208054839290620003079084906200045c565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b60065460ff1615620003995760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b6044820152606401620000c4565b620003b1838383620003b160201b620004e71760201c565b505050565b828054620003c49062000481565b90600052602060002090601f016020900481019282620003e8576000855562000433565b82601f106200040357805160ff191683800117855562000433565b8280016001018555821562000433579182015b828111156200043357825182559160200191906001019062000416565b506200044192915062000445565b5090565b5b8082111562000441576000815560010162000446565b600082198211156200047c57634e487b7160e01b81526011600452602481fd5b500190565b600181811c908216806200049657607f821691505b60208210811415620004b857634e487b7160e01b600052602260045260246000fd5b50919050565b6114ec80620004ce6000396000f3fe608060405234801561001057600080fd5b506004361061018e5760003560e01c806342966c68116100de57806395d89b4111610097578063a9059cbb11610071578063a9059cbb14610330578063d539139314610343578063d547741f1461036a578063dd62ed3e1461037d57600080fd5b806395d89b411461030d578063a217fddf14610315578063a457c2d71461031d57600080fd5b806342966c68146102985780635c975abb146102ab57806370a08231146102b657806379cc6790146102df5780638456cb59146102f257806391d14854146102fa57600080fd5b80632f2ff15d1161014b57806336568abe1161012557806336568abe14610257578063395093511461026a5780633f4ba83a1461027d57806340c10f191461028557600080fd5b80632f2ff15d1461022b578063313ce56714610240578063355274ea1461024f57600080fd5b806301ffc9a71461019357806306fdde03146101bb578063095ea7b3146101d057806318160ddd146101e357806323b872dd146101f5578063248a9ca314610208575b600080fd5b6101a66101a1366004611304565b6103b6565b60405190151581526020015b60405180910390f35b6101c36103ed565b6040516101b291906113a1565b6101a66101de3660046112a1565b61047f565b6002545b6040519081526020016101b2565b6101a6610203366004611266565b61049d565b6101e76102163660046112ca565b60009081526007602052604090206001015490565b61023e6102393660046112e2565b6104c1565b005b604051601281526020016101b2565b6005546101e7565b61023e6102653660046112e2565b6104ec565b6101a66102783660046112a1565b61056f565b61023e6105ae565b61023e6102933660046112a1565b6105c5565b61023e6102a63660046112ca565b6105fa565b60065460ff166101a6565b6101e76102c436600461121a565b6001600160a01b031660009081526020819052604090205490565b61023e6102ed3660046112a1565b610604565b61023e610619565b6101a66103083660046112e2565b61062d565b6101c3610658565b6101e7600081565b6101a661032b3660046112a1565b610667565b6101a661033e3660046112a1565b6106f9565b6101e77f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a681565b61023e6103783660046112e2565b610707565b6101e761038b366004611234565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b60006001600160e01b03198216637965db0b60e01b14806103e757506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600380546103fc90611465565b80601f016020809104026020016040519081016040528092919081815260200182805461042890611465565b80156104755780601f1061044a57610100808354040283529160200191610475565b820191906000526020600020905b81548152906001019060200180831161045857829003601f168201915b5050505050905090565b60003361048d818585610818565b5060019392505050565b60025490565b6000336104ab85828561093c565b6104b68585856109ce565b506001949350505050565b6000828152600760205260409020600101546104dd8133610ba7565b6104e78383610c0b565b505050565b6001600160a01b03811633146105615760405162461bcd60e51b815260206004820152602f60248201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560448201526e103937b632b9903337b91039b2b63360891b60648201526084015b60405180910390fd5b61056b8282610c91565b5050565b3360008181526001602090815260408083206001600160a01b038716845290915281205490919061048d90829086906105a99087906113d4565b610818565b60006105ba8133610ba7565b6105c2610cf8565b50565b7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a66105f08133610ba7565b6104e78383610d8b565b6105c23382610dfa565b61060f82338361093c565b61056b8282610dfa565b60006106258133610ba7565b6105c2610f54565b60009182526007602090815260408084206001600160a01b0393909316845291905290205460ff1690565b6060600480546103fc90611465565b3360008181526001602090815260408083206001600160a01b0387168452909152812054909190838110156106ec5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610558565b6104b68286868403610818565b60003361048d8185856109ce565b6000828152600760205260409020600101546107238133610ba7565b6104e78383610c91565b6001600160a01b0382166107835760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401610558565b61078f60008383610fcf565b80600260008282546107a191906113d4565b90915550506001600160a01b038216600090815260208190526040812080548392906107ce9084906113d4565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b6001600160a01b03831661087a5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610558565b6001600160a01b0382166108db5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610558565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383811660009081526001602090815260408083209386168352929052205460001981146109c857818110156109bb5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610558565b6109c88484848403610818565b50505050565b6001600160a01b038316610a325760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610558565b6001600160a01b038216610a945760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610558565b610a9f838383610fcf565b6001600160a01b03831660009081526020819052604090205481811015610b175760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610558565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290610b4e9084906113d4565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610b9a91815260200190565b60405180910390a36109c8565b610bb1828261062d565b61056b57610bc9816001600160a01b03166014611015565b610bd4836020611015565b604051602001610be592919061132c565b60408051601f198184030181529082905262461bcd60e51b8252610558916004016113a1565b610c15828261062d565b61056b5760008281526007602090815260408083206001600160a01b03851684529091529020805460ff19166001179055610c4d3390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b610c9b828261062d565b1561056b5760008281526007602090815260408083206001600160a01b0385168085529252808320805460ff1916905551339285917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a45050565b60065460ff16610d415760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b6044820152606401610558565b6006805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b60055481610d9860025490565b610da291906113d4565b1115610df05760405162461bcd60e51b815260206004820152601960248201527f45524332304361707065643a20636170206578636565646564000000000000006044820152606401610558565b61056b828261072d565b6001600160a01b038216610e5a5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610558565b610e6682600083610fcf565b6001600160a01b03821660009081526020819052604090205481811015610eda5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610558565b6001600160a01b0383166000908152602081905260408120838303905560028054849290610f0990849061140b565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a3505050565b60065460ff1615610f9a5760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b6044820152606401610558565b6006805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258610d6e3390565b60065460ff16156104e75760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b6044820152606401610558565b606060006110248360026113ec565b61102f9060026113d4565b67ffffffffffffffff81111561105557634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f19166020018201604052801561107f576020820181803683370190505b509050600360fc1b816000815181106110a857634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350600f60fb1b816001815181106110e557634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a90535060006111098460026113ec565b6111149060016113d4565b90505b60018111156111a8576f181899199a1a9b1b9c1cb0b131b232b360811b85600f166010811061115657634e487b7160e01b600052603260045260246000fd5b1a60f81b82828151811061117a57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a90535060049490941c936111a18161144e565b9050611117565b5083156111f75760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e746044820152606401610558565b9392505050565b80356001600160a01b038116811461121557600080fd5b919050565b60006020828403121561122b578081fd5b6111f7826111fe565b60008060408385031215611246578081fd5b61124f836111fe565b915061125d602084016111fe565b90509250929050565b60008060006060848603121561127a578081fd5b611283846111fe565b9250611291602085016111fe565b9150604084013590509250925092565b600080604083850312156112b3578182fd5b6112bc836111fe565b946020939093013593505050565b6000602082840312156112db578081fd5b5035919050565b600080604083850312156112f4578182fd5b8235915061125d602084016111fe565b600060208284031215611315578081fd5b81356001600160e01b0319811681146111f7578182fd5b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000815260008351611364816017850160208801611422565b7001034b99036b4b9b9b4b733903937b6329607d1b6017918401918201528351611395816028840160208801611422565b01602801949350505050565b60208152600082518060208401526113c0816040850160208701611422565b601f01601f19169190910160400192915050565b600082198211156113e7576113e76114a0565b500190565b6000816000190483118215151615611406576114066114a0565b500290565b60008282101561141d5761141d6114a0565b500390565b60005b8381101561143d578181015183820152602001611425565b838111156109c85750506000910152565b60008161145d5761145d6114a0565b506000190190565b600181811c9082168061147957607f821691505b6020821081141561149a57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fdfea26469706673582212207a77794cc68b42b22423e2b8b36a48bf37b2342e06ad5564ef82f48a8a2a255b64736f6c63430008040033
Deployed ByteCode Sourcemap
45003:871:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20428:280;;;;;;:::i;:::-;;:::i;:::-;;;3414:14:1;;3407:22;3389:41;;3377:2;3362:18;20428:280:0;;;;;;;;31565:100;;;:::i;:::-;;;;;;;:::i;34057:242::-;;;;;;:::i;:::-;;:::i;32685:108::-;32773:12;;32685:108;;;3587:25:1;;;3575:2;3560:18;32685:108:0;3542:76:1;34879:295:0;;;;;;:::i;:::-;;:::i;21981:181::-;;;;;;:::i;:::-;22100:7;22132:12;;;:6;:12;;;;;:22;;;;21981:181;22424:188;;;;;;:::i;:::-;;:::i;:::-;;32527:93;;;32610:2;10114:36:1;;10102:2;10087:18;32527:93:0;10069:87:1;44542:83:0;44613:4;;44542:83;;23554:287;;;;;;:::i;:::-;;:::i;35583:272::-;;;;;;:::i;:::-;;:::i;45578:84::-;;;:::i;45375:107::-;;;;;;:::i;:::-;;:::i;43312:91::-;;;;;;:::i;:::-;;:::i;9319:86::-;9390:7;;;;9319:86;;32856:177;;;;;;:::i;:::-;-1:-1:-1;;;;;33007:18:0;32975:7;33007:18;;;;;;;;;;;;32856:177;43722:164;;;;;;:::i;:::-;;:::i;45490:80::-;;;:::i;20800:197::-;;;;;;:::i;:::-;;:::i;31784:104::-;;;:::i;19815:49::-;;19860:4;19815:49;;36358:507;;;;;;:::i;:::-;;:::i;33239:234::-;;;;;;:::i;:::-;;:::i;45098:62::-;;45136:24;45098:62;;22857:190;;;;;;:::i;:::-;;:::i;33536:201::-;;;;;;:::i;:::-;-1:-1:-1;;;;;33702:18:0;;;33670:7;33702:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;33536:201;20428:280;20558:4;-1:-1:-1;;;;;;20600:47:0;;-1:-1:-1;;;20600:47:0;;:100;;-1:-1:-1;;;;;;;;;;17786:40:0;;;20664:36;20580:120;20428:280;-1:-1:-1;;20428:280:0:o;31565:100::-;31619:13;31652:5;31645:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31565:100;:::o;34057:242::-;34176:4;8051:10;34237:32;8051:10;34253:7;34262:6;34237:8;:32::i;:::-;-1:-1:-1;34287:4:0;;34057:242;-1:-1:-1;;;34057:242:0:o;32685:108::-;32773:12;;;32685:108::o;34879:295::-;35010:4;8051:10;35068:38;35084:4;8051:10;35099:6;35068:15;:38::i;:::-;35117:27;35127:4;35133:2;35137:6;35117:9;:27::i;:::-;-1:-1:-1;35162:4:0;;34879:295;-1:-1:-1;;;;34879:295:0:o;22424:188::-;22100:7;22132:12;;;:6;:12;;;;;:22;;;20306:30;20317:4;8051:10;20306;:30::i;:::-;22579:25:::1;22590:4;22596:7;22579:10;:25::i;:::-;22424:188:::0;;;:::o;23554:287::-;-1:-1:-1;;;;;23696:23:0;;8051:10;23696:23;23674:120;;;;-1:-1:-1;;;23674:120:0;;9216:2:1;23674:120:0;;;9198:21:1;9255:2;9235:18;;;9228:30;9294:34;9274:18;;;9267:62;-1:-1:-1;;;9345:18:1;;;9338:45;9400:19;;23674:120:0;;;;;;;;;23807:26;23819:4;23825:7;23807:11;:26::i;:::-;23554:287;;:::o;35583:272::-;8051:10;35698:4;35784:18;;;:11;:18;;;;;;;;-1:-1:-1;;;;;35784:27:0;;;;;;;;;;35698:4;;8051:10;35759:66;;8051:10;;35784:27;;:40;;35814:10;;35784:40;:::i;:::-;35759:8;:66::i;45578:84::-;19860:4;20306:30;19860:4;8051:10;20306;:30::i;:::-;45644:10:::1;:8;:10::i;:::-;45578:84:::0;:::o;45375:107::-;45136:24;20306:30;45136:24;8051:10;20306;:30::i;:::-;45457:17:::1;45463:2;45467:6;45457:5;:17::i;43312:91::-:0;43368:27;8051:10;43388:6;43368:5;:27::i;43722:164::-;43799:46;43815:7;8051:10;43838:6;43799:15;:46::i;:::-;43856:22;43862:7;43871:6;43856:5;:22::i;45490:80::-;19860:4;20306:30;19860:4;8051:10;20306;:30::i;:::-;45554:8:::1;:6;:8::i;20800:197::-:0;20931:4;20960:12;;;:6;:12;;;;;;;;-1:-1:-1;;;;;20960:29:0;;;;;;;;;;;;;;;20800:197::o;31784:104::-;31840:13;31873:7;31866:14;;;;;:::i;36358:507::-;8051:10;36478:4;36566:18;;;:11;:18;;;;;;;;-1:-1:-1;;;;;36566:27:0;;;;;;;;;;36478:4;;8051:10;36626:35;;;;36604:122;;;;-1:-1:-1;;;36604:122:0;;8810:2:1;36604:122:0;;;8792:21:1;8849:2;8829:18;;;8822:30;8888:34;8868:18;;;8861:62;-1:-1:-1;;;8939:18:1;;;8932:35;8984:19;;36604:122:0;8782:227:1;36604:122:0;36762:60;36771:5;36778:7;36806:15;36787:16;:34;36762:8;:60::i;33239:234::-;33354:4;8051:10;33415:28;8051:10;33432:2;33436:6;33415:9;:28::i;22857:190::-;22100:7;22132:12;;;:6;:12;;;;;:22;;;20306:30;20317:4;8051:10;20306;:30::i;:::-;23013:26:::1;23025:4;23031:7;23013:11;:26::i;38339:399::-:0;-1:-1:-1;;;;;38423:21:0;;38415:65;;;;-1:-1:-1;;;38415:65:0;;9632:2:1;38415:65:0;;;9614:21:1;9671:2;9651:18;;;9644:30;9710:33;9690:18;;;9683:61;9761:18;;38415:65:0;9604:181:1;38415:65:0;38493:49;38522:1;38526:7;38535:6;38493:20;:49::i;:::-;38571:6;38555:12;;:22;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;;;38588:18:0;;:9;:18;;;;;;;;;;:28;;38610:6;;38588:9;:28;;38610:6;;38588:28;:::i;:::-;;;;-1:-1:-1;;38632:37:0;;3587:25:1;;;-1:-1:-1;;;;;38632:37:0;;;38649:1;;38632:37;;3575:2:1;3560:18;38632:37:0;;;;;;;23554:287;;:::o;40100:380::-;-1:-1:-1;;;;;40236:19:0;;40228:68;;;;-1:-1:-1;;;40228:68:0;;8405:2:1;40228:68:0;;;8387:21:1;8444:2;8424:18;;;8417:30;8483:34;8463:18;;;8456:62;-1:-1:-1;;;8534:18:1;;;8527:34;8578:19;;40228:68:0;8377:226:1;40228:68:0;-1:-1:-1;;;;;40315:21:0;;40307:68;;;;-1:-1:-1;;;40307:68:0;;5730:2:1;40307:68:0;;;5712:21:1;5769:2;5749:18;;;5742:30;5808:34;5788:18;;;5781:62;-1:-1:-1;;;5859:18:1;;;5852:32;5901:19;;40307:68:0;5702:224:1;40307:68:0;-1:-1:-1;;;;;40388:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;40440:32;;3587:25:1;;;40440:32:0;;3560:18:1;40440:32:0;;;;;;;40100:380;;;:::o;40767:502::-;-1:-1:-1;;;;;33702:18:0;;;40902:24;33702:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;-1:-1:-1;;40969:37:0;;40965:297;;41069:6;41049:16;:26;;41023:117;;;;-1:-1:-1;;;41023:117:0;;6133:2:1;41023:117:0;;;6115:21:1;6172:2;6152:18;;;6145:30;6211:31;6191:18;;;6184:59;6260:18;;41023:117:0;6105:179:1;41023:117:0;41184:51;41193:5;41200:7;41228:6;41209:16;:25;41184:8;:51::i;:::-;40767:502;;;;:::o;37344:708::-;-1:-1:-1;;;;;37475:18:0;;37467:68;;;;-1:-1:-1;;;37467:68:0;;7645:2:1;37467:68:0;;;7627:21:1;7684:2;7664:18;;;7657:30;7723:34;7703:18;;;7696:62;-1:-1:-1;;;7774:18:1;;;7767:35;7819:19;;37467:68:0;7617:227:1;37467:68:0;-1:-1:-1;;;;;37554:16:0;;37546:64;;;;-1:-1:-1;;;37546:64:0;;4574:2:1;37546:64:0;;;4556:21:1;4613:2;4593:18;;;4586:30;4652:34;4632:18;;;4625:62;-1:-1:-1;;;4703:18:1;;;4696:33;4746:19;;37546:64:0;4546:225:1;37546:64:0;37623:38;37644:4;37650:2;37654:6;37623:20;:38::i;:::-;-1:-1:-1;;;;;37696:15:0;;37674:19;37696:15;;;;;;;;;;;37744:21;;;;37722:109;;;;-1:-1:-1;;;37722:109:0;;6491:2:1;37722:109:0;;;6473:21:1;6530:2;6510:18;;;6503:30;6569:34;6549:18;;;6542:62;-1:-1:-1;;;6620:18:1;;;6613:36;6666:19;;37722:109:0;6463:228:1;37722:109:0;-1:-1:-1;;;;;37867:15:0;;;:9;:15;;;;;;;;;;;37885:20;;;37867:38;;37927:13;;;;;;;;:23;;37899:6;;37867:9;37927:23;;37899:6;;37927:23;:::i;:::-;;;;;;;;37983:2;-1:-1:-1;;;;;37968:26:0;37977:4;-1:-1:-1;;;;;37968:26:0;;37987:6;37968:26;;;;3587:25:1;;3575:2;3560:18;;3542:76;37968:26:0;;;;;;;;38007:37;22424:188;21287:505;21376:22;21384:4;21390:7;21376;:22::i;:::-;21371:414;;21564:41;21592:7;-1:-1:-1;;;;;21564:41:0;21602:2;21564:19;:41::i;:::-;21678:38;21706:4;21713:2;21678:19;:38::i;:::-;21469:270;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;21469:270:0;;;;;;;;;;-1:-1:-1;;;21415:358:0;;;;;;;:::i;25124:238::-;25208:22;25216:4;25222:7;25208;:22::i;:::-;25203:152;;25247:12;;;;:6;:12;;;;;;;;-1:-1:-1;;;;;25247:29:0;;;;;;;;;:36;;-1:-1:-1;;25247:36:0;25279:4;25247:36;;;25330:12;8051:10;;7971:98;25330:12;-1:-1:-1;;;;;25303:40:0;25321:7;-1:-1:-1;;;;;25303:40:0;25315:4;25303:40;;;;;;;;;;25124:238;;:::o;25494:239::-;25578:22;25586:4;25592:7;25578;:22::i;:::-;25574:152;;;25649:5;25617:12;;;:6;:12;;;;;;;;-1:-1:-1;;;;;25617:29:0;;;;;;;;;;:37;;-1:-1:-1;;25617:37:0;;;25674:40;8051:10;;25617:12;;25674:40;;25649:5;25674:40;25494:239;;:::o;10378:120::-;9390:7;;;;9914:41;;;;-1:-1:-1;;;9914:41:0;;4978:2:1;9914:41:0;;;4960:21:1;5017:2;4997:18;;;4990:30;-1:-1:-1;;;5036:18:1;;;5029:50;5096:18;;9914:41:0;4950:170:1;9914:41:0;10437:7:::1;:15:::0;;-1:-1:-1;;10437:15:0::1;::::0;;10468:22:::1;8051:10:::0;10477:12:::1;10468:22;::::0;-1:-1:-1;;;;;3205:32:1;;;3187:51;;3175:2;3160:18;10468:22:0::1;;;;;;;10378:120::o:0;44683:244::-;44613:4;;44812:6;44790:19;32773:12;;;32685:108;44790:19;:28;;;;:::i;:::-;:37;;44768:112;;;;-1:-1:-1;;;44768:112:0;;8051:2:1;44768:112:0;;;8033:21:1;8090:2;8070:18;;;8063:30;8129:27;8109:18;;;8102:55;8174:18;;44768:112:0;8023:175:1;44768:112:0;44891:28;44903:7;44912:6;44891:11;:28::i;39071:591::-;-1:-1:-1;;;;;39155:21:0;;39147:67;;;;-1:-1:-1;;;39147:67:0;;7243:2:1;39147:67:0;;;7225:21:1;7282:2;7262:18;;;7255:30;7321:34;7301:18;;;7294:62;-1:-1:-1;;;7372:18:1;;;7365:31;7413:19;;39147:67:0;7215:223:1;39147:67:0;39227:49;39248:7;39265:1;39269:6;39227:20;:49::i;:::-;-1:-1:-1;;;;;39314:18:0;;39289:22;39314:18;;;;;;;;;;;39351:24;;;;39343:71;;;;-1:-1:-1;;;39343:71:0;;5327:2:1;39343:71:0;;;5309:21:1;5366:2;5346:18;;;5339:30;5405:34;5385:18;;;5378:62;-1:-1:-1;;;5456:18:1;;;5449:32;5498:19;;39343:71:0;5299:224:1;39343:71:0;-1:-1:-1;;;;;39450:18:0;;:9;:18;;;;;;;;;;39471:23;;;39450:44;;39516:12;:22;;39488:6;;39450:9;39516:22;;39488:6;;39516:22;:::i;:::-;;;;-1:-1:-1;;39556:37:0;;3587:25:1;;;39582:1:0;;-1:-1:-1;;;;;39556:37:0;;;;;3575:2:1;3560:18;39556:37:0;;;;;;;22424:188;;;:::o;10119:118::-;9390:7;;;;9644:9;9636:38;;;;-1:-1:-1;;;9636:38:0;;6898:2:1;9636:38:0;;;6880:21:1;6937:2;6917:18;;;6910:30;-1:-1:-1;;;6956:18:1;;;6949:46;7012:18;;9636:38:0;6870:166:1;9636:38:0;10179:7:::1;:14:::0;;-1:-1:-1;;10179:14:0::1;10189:4;10179:14;::::0;;10209:20:::1;10216:12;8051:10:::0;;7971:98;45670:201;9390:7;;;;9644:9;9636:38;;;;-1:-1:-1;;;9636:38:0;;6898:2:1;9636:38:0;;;6880:21:1;6937:2;6917:18;;;6910:30;-1:-1:-1;;;6956:18:1;;;6949:46;7012:18;;9636:38:0;6870:166:1;15349:483:0;15451:13;15482:19;15514:10;15518:6;15514:1;:10;:::i;:::-;:14;;15527:1;15514:14;:::i;:::-;15504:25;;;;;;-1:-1:-1;;;15504:25:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;15504:25:0;;15482:47;;-1:-1:-1;;;15540:6:0;15547:1;15540:9;;;;;;-1:-1:-1;;;15540:9:0;;;;;;;;;;;;:15;-1:-1:-1;;;;;15540:15:0;;;;;;;;;-1:-1:-1;;;15566:6:0;15573:1;15566:9;;;;;;-1:-1:-1;;;15566:9:0;;;;;;;;;;;;:15;-1:-1:-1;;;;;15566:15:0;;;;;;;;-1:-1:-1;15597:9:0;15609:10;15613:6;15609:1;:10;:::i;:::-;:14;;15622:1;15609:14;:::i;:::-;15597:26;;15592:135;15629:1;15625;:5;15592:135;;;-1:-1:-1;;;15677:5:0;15685:3;15677:11;15664:25;;;;;-1:-1:-1;;;15664:25:0;;;;;;;;;;;;15652:6;15659:1;15652:9;;;;;;-1:-1:-1;;;15652:9:0;;;;;;;;;;;;:37;-1:-1:-1;;;;;15652:37:0;;;;;;;;-1:-1:-1;15714:1:0;15704:11;;;;;15632:3;;;:::i;:::-;;;15592:135;;;-1:-1:-1;15745:10:0;;15737:55;;;;-1:-1:-1;;;15737:55:0;;4213:2:1;15737:55:0;;;4195:21:1;;;4232:18;;;4225:30;4291:34;4271:18;;;4264:62;4343:18;;15737:55:0;4185:182:1;15737:55:0;15817:6;15349:483;-1:-1:-1;;;15349:483:0:o;14:173:1:-;82:20;;-1:-1:-1;;;;;131:31:1;;121:42;;111:2;;177:1;174;167:12;111:2;63:124;;;:::o;192:196::-;251:6;304:2;292:9;283:7;279:23;275:32;272:2;;;325:6;317;310:22;272:2;353:29;372:9;353:29;:::i;393:270::-;461:6;469;522:2;510:9;501:7;497:23;493:32;490:2;;;543:6;535;528:22;490:2;571:29;590:9;571:29;:::i;:::-;561:39;;619:38;653:2;642:9;638:18;619:38;:::i;:::-;609:48;;480:183;;;;;:::o;668:338::-;745:6;753;761;814:2;802:9;793:7;789:23;785:32;782:2;;;835:6;827;820:22;782:2;863:29;882:9;863:29;:::i;:::-;853:39;;911:38;945:2;934:9;930:18;911:38;:::i;:::-;901:48;;996:2;985:9;981:18;968:32;958:42;;772:234;;;;;:::o;1011:264::-;1079:6;1087;1140:2;1128:9;1119:7;1115:23;1111:32;1108:2;;;1161:6;1153;1146:22;1108:2;1189:29;1208:9;1189:29;:::i;:::-;1179:39;1265:2;1250:18;;;;1237:32;;-1:-1:-1;;;1098:177:1:o;1280:190::-;1339:6;1392:2;1380:9;1371:7;1367:23;1363:32;1360:2;;;1413:6;1405;1398:22;1360:2;-1:-1:-1;1441:23:1;;1350:120;-1:-1:-1;1350:120:1:o;1475:264::-;1543:6;1551;1604:2;1592:9;1583:7;1579:23;1575:32;1572:2;;;1625:6;1617;1610:22;1572:2;1666:9;1653:23;1643:33;;1695:38;1729:2;1718:9;1714:18;1695:38;:::i;1744:306::-;1802:6;1855:2;1843:9;1834:7;1830:23;1826:32;1823:2;;;1876:6;1868;1861:22;1823:2;1907:23;;-1:-1:-1;;;;;;1959:32:1;;1949:43;;1939:2;;2011:6;2003;1996:22;2250:786;2661:25;2656:3;2649:38;2631:3;2716:6;2710:13;2732:62;2787:6;2782:2;2777:3;2773:12;2766:4;2758:6;2754:17;2732:62;:::i;:::-;-1:-1:-1;;;2853:2:1;2813:16;;;2845:11;;;2838:40;2903:13;;2925:63;2903:13;2974:2;2966:11;;2959:4;2947:17;;2925:63;:::i;:::-;3008:17;3027:2;3004:26;;2639:397;-1:-1:-1;;;;2639:397:1:o;3623:383::-;3772:2;3761:9;3754:21;3735:4;3804:6;3798:13;3847:6;3842:2;3831:9;3827:18;3820:34;3863:66;3922:6;3917:2;3906:9;3902:18;3897:2;3889:6;3885:15;3863:66;:::i;:::-;3990:2;3969:15;-1:-1:-1;;3965:29:1;3950:45;;;;3997:2;3946:54;;3744:262;-1:-1:-1;;3744:262:1:o;10161:128::-;10201:3;10232:1;10228:6;10225:1;10222:13;10219:2;;;10238:18;;:::i;:::-;-1:-1:-1;10274:9:1;;10209:80::o;10294:168::-;10334:7;10400:1;10396;10392:6;10388:14;10385:1;10382:21;10377:1;10370:9;10363:17;10359:45;10356:2;;;10407:18;;:::i;:::-;-1:-1:-1;10447:9:1;;10346:116::o;10467:125::-;10507:4;10535:1;10532;10529:8;10526:2;;;10540:18;;:::i;:::-;-1:-1:-1;10577:9:1;;10516:76::o;10597:258::-;10669:1;10679:113;10693:6;10690:1;10687:13;10679:113;;;10769:11;;;10763:18;10750:11;;;10743:39;10715:2;10708:10;10679:113;;;10810:6;10807:1;10804:13;10801:2;;;-1:-1:-1;;10845:1:1;10827:16;;10820:27;10650:205::o;10860:136::-;10899:3;10927:5;10917:2;;10936:18;;:::i;:::-;-1:-1:-1;;;10972:18:1;;10907:89::o;11001:380::-;11080:1;11076:12;;;;11123;;;11144:2;;11198:4;11190:6;11186:17;11176:27;;11144:2;11251;11243:6;11240:14;11220:18;11217:38;11214:2;;;11297:10;11292:3;11288:20;11285:1;11278:31;11332:4;11329:1;11322:15;11360:4;11357:1;11350:15;11214:2;;11056:325;;;:::o;11386:127::-;11447:10;11442:3;11438:20;11435:1;11428:31;11478:4;11475:1;11468:15;11502:4;11499:1;11492:15
Metadata Hash
ipfs://7a77794cc68b42b22423e2b8b36a48bf37b2342e06ad5564ef82f48a8a2a255b