Token SelfBar
Polygon Sponsored slots available. Book your slot here!
Overview ERC-20
Price
$0.00 @ 0.000000 MATIC
Fully Diluted Market Cap
Total Supply:
5,000,000 SBAR
Holders:
109 addresses
Transfers:
-
Contract:
Decimals:
18
[ Download CSV Export ]
[ Download CSV Export ]
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
SelfbarERC20Token
Compiler Version
v0.8.0+commit.c7dfd78e
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2021-07-21 */ pragma solidity ^0.8.0; // File: @openzeppelin/contracts/token/ERC20/IERC20.sol // SPDX-License-Identifier: MIT /** * @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); } // File: @openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); } // File: @openzeppelin/contracts/utils/Context.sol /* * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } } // File: @openzeppelin/contracts/token/ERC20/ERC20.sol /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin 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}. */ abstract 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 defaut 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"); _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"); _approve(_msgSender(), spender, currentAllowance - subtractedValue); return true; } /** * @dev Moves tokens `amount` from `sender` to `recipient`. * * This is 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"); _balances[sender] = senderBalance - amount; _balances[recipient] += amount; emit Transfer(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: * * - `to` 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); } /** * @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"); _balances[account] = accountBalance - amount; _totalSupply -= amount; emit Transfer(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 to 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 { } } // File: @openzeppelin/contracts/token/ERC20/extensions/ERC20Capped.sol /** * @dev Extension of {ERC20} that adds a cap to the supply of tokens. */ abstract contract ERC20Capped is ERC20 { uint256 immutable 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: @openzeppelin/contracts/token/ERC20/extensions/ERC20Burnable.sol /** * @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 { uint256 currentAllowance = allowance(account, _msgSender()); require(currentAllowance >= amount, "ERC20: burn amount exceeds allowance"); _approve(account, _msgSender(), currentAllowance - amount); _burn(account, amount); } } // File: @openzeppelin/contracts/security/Pausable.sol /** * @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/utils/introspection/IERC165.sol /** * @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/ERC165.sol /** * @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/AccessControl.sol /** * @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; bytes16 private constant alphabet = "0123456789abcdef"; /** * @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] = alphabet[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } /** * @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 ", toHexString(uint160(account), 20), " is missing role ", 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()); } } } // File: contracts/SelfbarERC20Token.sol contract SelfbarERC20Token is ERC20Capped, Pausable, AccessControl { bytes32 public constant MINTER_ROLE = keccak256("MINTER_ROLE"); bytes32 public constant BURNER_ROLE = keccak256("BURNER_ROLE"); bytes32 public constant PAUSER_ROLE = keccak256("PAUSER_ROLE"); constructor( string memory name, string memory symbol, uint256 initialSupply, uint256 cap ) ERC20(name, symbol) ERC20Capped(cap) { _setupRole(DEFAULT_ADMIN_ROLE, msg.sender); ERC20._mint(msg.sender, initialSupply); } function mint(address to, uint256 amount) public { require(hasRole(MINTER_ROLE, msg.sender), "Caller is not a minter"); _mint(to, amount); } function burnFrom(address from, uint256 amount) public { require(hasRole(BURNER_ROLE, msg.sender), "Caller is not a burner"); _burn(from, amount); } function pause() public { require(hasRole(PAUSER_ROLE, _msgSender()), "Caller must have pauser role to pause"); _pause(); } function unpause() public { require(hasRole(PAUSER_ROLE, _msgSender()), "Caller must have pauser role to unpause"); _unpause(); } /** * @dev See {ERC20-_beforeTokenTransfer}. * * Requirements: * * - the contract must not be paused. */ function _beforeTokenTransfer( address from, address to, uint256 amount ) internal virtual override { super._beforeTokenTransfer(from, to, amount); require(!paused(), "ERC20Pausable: token transfer while paused"); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"},{"internalType":"uint256","name":"initialSupply","type":"uint256"},{"internalType":"uint256","name":"cap","type":"uint256"}],"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":"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":[],"name":"MINTER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PAUSER_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":"from","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":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60a06040523480156200001157600080fd5b5060405162003852380380620038528339818101604052810190620000379190620005b3565b8084848160039080519060200190620000529291906200047a565b5080600490805190602001906200006b9291906200047a565b50505060008111620000b4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620000ab906200074e565b60405180910390fd5b8060808181525050506000600560006101000a81548160ff021916908315150217905550620000ed6000801b336200010e60201b60201c565b6200010433836200012460201b62000eab1760201c565b50505050620009c3565b6200012082826200028960201b60201c565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000197576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200018e9062000770565b60405180910390fd5b620001ab600083836200037b60201b60201c565b8060026000828254620001bf919062000849565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825462000216919062000849565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200027d9190620007b4565b60405180910390a35050565b6200029b8282620003eb60201b60201c565b620003775760016006600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506200031c6200045660201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b620003938383836200045e60201b62000fff1760201c565b620003a36200046360201b60201c565b15620003e6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003dd9062000792565b60405180910390fd5b505050565b60006006600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600033905090565b505050565b6000600560009054906101000a900460ff16905090565b8280546200048890620008e6565b90600052602060002090601f016020900481019282620004ac5760008555620004f8565b82601f10620004c757805160ff1916838001178555620004f8565b82800160010185558215620004f8579182015b82811115620004f7578251825591602001919060010190620004da565b5b5090506200050791906200050b565b5090565b5b80821115620005265760008160009055506001016200050c565b5090565b6000620005416200053b8462000805565b620007d1565b9050828152602081018484840111156200055a57600080fd5b62000567848285620008b0565b509392505050565b600082601f8301126200058157600080fd5b8151620005938482602086016200052a565b91505092915050565b600081519050620005ad81620009a9565b92915050565b60008060008060808587031215620005ca57600080fd5b600085015167ffffffffffffffff811115620005e557600080fd5b620005f3878288016200056f565b945050602085015167ffffffffffffffff8111156200061157600080fd5b6200061f878288016200056f565b935050604062000632878288016200059c565b925050606062000645878288016200059c565b91505092959194509250565b60006200066060158362000838565b91507f45524332304361707065643a20636170206973203000000000000000000000006000830152602082019050919050565b6000620006a2601f8362000838565b91507f45524332303a206d696e7420746f20746865207a65726f2061646472657373006000830152602082019050919050565b6000620006e4602a8362000838565b91507f45524332305061757361626c653a20746f6b656e207472616e7366657220776860008301527f696c6520706175736564000000000000000000000000000000000000000000006020830152604082019050919050565b6200074881620008a6565b82525050565b60006020820190508181036000830152620007698162000651565b9050919050565b600060208201905081810360008301526200078b8162000693565b9050919050565b60006020820190508181036000830152620007ad81620006d5565b9050919050565b6000602082019050620007cb60008301846200073d565b92915050565b6000604051905081810181811067ffffffffffffffff82111715620007fb57620007fa6200097a565b5b8060405250919050565b600067ffffffffffffffff8211156200082357620008226200097a565b5b601f19601f8301169050602081019050919050565b600082825260208201905092915050565b60006200085682620008a6565b91506200086383620008a6565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156200089b576200089a6200091c565b5b828201905092915050565b6000819050919050565b60005b83811015620008d0578082015181840152602081019050620008b3565b83811115620008e0576000848401525b50505050565b60006002820490506001821680620008ff57607f821691505b602082108114156200091657620009156200094b565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b620009b481620008a6565b8114620009c057600080fd5b50565b608051612e73620009df60003960006108090152612e736000f3fe608060405234801561001057600080fd5b50600436106101a95760003560e01c806340c10f19116100f9578063a217fddf11610097578063d539139311610071578063d5391393146104d2578063d547741f146104f0578063dd62ed3e1461050c578063e63ab1e91461053c576101a9565b8063a217fddf14610454578063a457c2d714610472578063a9059cbb146104a2576101a9565b806379cc6790116100d357806379cc6790146103e05780638456cb59146103fc57806391d148541461040657806395d89b4114610436576101a9565b806340c10f19146103765780635c975abb1461039257806370a08231146103b0576101a9565b8063282c51f311610166578063355274ea11610140578063355274ea1461030257806336568abe14610320578063395093511461033c5780633f4ba83a1461036c576101a9565b8063282c51f3146102aa5780632f2ff15d146102c8578063313ce567146102e4576101a9565b806301ffc9a7146101ae57806306fdde03146101de578063095ea7b3146101fc57806318160ddd1461022c57806323b872dd1461024a578063248a9ca31461027a575b600080fd5b6101c860048036038101906101c39190611f9e565b61055a565b6040516101d5919061283f565b60405180910390f35b6101e66105d4565b6040516101f39190612875565b60405180910390f35b61021660048036038101906102119190611efd565b610666565b604051610223919061283f565b60405180910390f35b610234610684565b6040516102419190612b17565b60405180910390f35b610264600480360381019061025f9190611eae565b61068e565b604051610271919061283f565b60405180910390f35b610294600480360381019061028f9190611f39565b61078f565b6040516102a1919061285a565b60405180910390f35b6102b26107af565b6040516102bf919061285a565b60405180910390f35b6102e260048036038101906102dd9190611f62565b6107d3565b005b6102ec6107fc565b6040516102f99190612b32565b60405180910390f35b61030a610805565b6040516103179190612b17565b60405180910390f35b61033a60048036038101906103359190611f62565b61082d565b005b61035660048036038101906103519190611efd565b6108b0565b604051610363919061283f565b60405180910390f35b61037461095c565b005b610390600480360381019061038b9190611efd565b6109d6565b005b61039a610a4d565b6040516103a7919061283f565b60405180910390f35b6103ca60048036038101906103c59190611e49565b610a64565b6040516103d79190612b17565b60405180910390f35b6103fa60048036038101906103f59190611efd565b610aac565b005b610404610b23565b005b610420600480360381019061041b9190611f62565b610b9d565b60405161042d919061283f565b60405180910390f35b61043e610c08565b60405161044b9190612875565b60405180910390f35b61045c610c9a565b604051610469919061285a565b60405180910390f35b61048c60048036038101906104879190611efd565b610ca1565b604051610499919061283f565b60405180910390f35b6104bc60048036038101906104b79190611efd565b610d95565b6040516104c9919061283f565b60405180910390f35b6104da610db3565b6040516104e7919061285a565b60405180910390f35b61050a60048036038101906105059190611f62565b610dd7565b005b61052660048036038101906105219190611e72565b610e00565b6040516105339190612b17565b60405180910390f35b610544610e87565b604051610551919061285a565b60405180910390f35b60007f7965db0b000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806105cd57506105cc82611004565b5b9050919050565b6060600380546105e390612d40565b80601f016020809104026020016040519081016040528092919081815260200182805461060f90612d40565b801561065c5780601f106106315761010080835404028352916020019161065c565b820191906000526020600020905b81548152906001019060200180831161063f57829003601f168201915b5050505050905090565b600061067a61067361106e565b8484611076565b6001905092915050565b6000600254905090565b600061069b848484611241565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006106e661106e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610766576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161075d906129d7565b60405180910390fd5b6107838561077261106e565b858461077e9190612c24565b611076565b60019150509392505050565b600060066000838152602001908152602001600020600101549050919050565b7f3c11d16cbaffd01df69ce1c404f6340ee057498f5f00246190ea54220576a84881565b6107dc8261078f565b6107ed816107e861106e565b6114c0565b6107f7838361155d565b505050565b60006012905090565b60007f0000000000000000000000000000000000000000000000000000000000000000905090565b61083561106e565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146108a2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161089990612ab7565b60405180910390fd5b6108ac828261163e565b5050565b60006109526108bd61106e565b8484600160006108cb61106e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461094d9190612b74565b611076565b6001905092915050565b61098d7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a61098861106e565b610b9d565b6109cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109c390612897565b60405180910390fd5b6109d4611720565b565b610a007f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a633610b9d565b610a3f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a3690612997565b60405180910390fd5b610a4982826117c2565b5050565b6000600560009054906101000a900460ff16905090565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610ad67f3c11d16cbaffd01df69ce1c404f6340ee057498f5f00246190ea54220576a84833610b9d565b610b15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b0c906129b7565b60405180910390fd5b610b1f828261182c565b5050565b610b547f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a610b4f61106e565b610b9d565b610b93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8a90612a77565b60405180910390fd5b610b9b611a00565b565b60006006600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b606060048054610c1790612d40565b80601f0160208091040260200160405190810160405280929190818152602001828054610c4390612d40565b8015610c905780601f10610c6557610100808354040283529160200191610c90565b820191906000526020600020905b815481529060010190602001808311610c7357829003601f168201915b5050505050905090565b6000801b81565b60008060016000610cb061106e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610d6d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d6490612a97565b60405180910390fd5b610d8a610d7861106e565b858584610d859190612c24565b611076565b600191505092915050565b6000610da9610da261106e565b8484611241565b6001905092915050565b7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a681565b610de08261078f565b610df181610dec61106e565b6114c0565b610dfb838361163e565b505050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a81565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f1b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f1290612ad7565b60405180910390fd5b610f2760008383611aa3565b8060026000828254610f399190612b74565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610f8e9190612b74565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610ff39190612b17565b60405180910390a35050565b505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156110e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110dd90612a57565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611156576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114d90612937565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516112349190612b17565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156112b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112a890612a17565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611321576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611318906128d7565b60405180910390fd5b61132c838383611aa3565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156113b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113a990612957565b60405180910390fd5b81816113be9190612c24565b6000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461144e9190612b74565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516114b29190612b17565b60405180910390a350505050565b6114ca8282610b9d565b611559576114ef8173ffffffffffffffffffffffffffffffffffffffff166014611afb565b6114fd8360001c6020611afb565b60405160200161150e9291906127ea565b6040516020818303038152906040526040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115509190612875565b60405180910390fd5b5050565b6115678282610b9d565b61163a5760016006600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506115df61106e565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b6116488282610b9d565b1561171c5760006006600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506116c161106e565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45b5050565b611728610a4d565b611767576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161175e906128f7565b60405180910390fd5b6000600560006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa6117ab61106e565b6040516117b89190612824565b60405180910390a1565b6117ca610805565b816117d3610684565b6117dd9190612b74565b111561181e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181590612a37565b60405180910390fd5b6118288282610eab565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561189c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611893906129f7565b60405180910390fd5b6118a882600083611aa3565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561192e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161192590612917565b60405180910390fd5b818161193a9190612c24565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816002600082825461198e9190612c24565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516119f39190612b17565b60405180910390a3505050565b611a08610a4d565b15611a48576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a3f90612977565b60405180910390fd5b6001600560006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611a8c61106e565b604051611a999190612824565b60405180910390a1565b611aae838383610fff565b611ab6610a4d565b15611af6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aed90612af7565b60405180910390fd5b505050565b606060006002836002611b0e9190612bca565b611b189190612b74565b67ffffffffffffffff811115611b57577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611b895781602001600182028036833780820191505090505b5090507f300000000000000000000000000000000000000000000000000000000000000081600081518110611be7577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f780000000000000000000000000000000000000000000000000000000000000081600181518110611c71577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535060006001846002611cb19190612bca565b611cbb9190612b74565b90505b6001811115611da7577f3031323334353637383961626364656600000000000000000000000000000000600f861660108110611d23577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b1a60f81b828281518110611d60577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600485901c945080611da090612d16565b9050611cbe565b5060008414611deb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611de2906128b7565b60405180910390fd5b8091505092915050565b600081359050611e0481612de1565b92915050565b600081359050611e1981612df8565b92915050565b600081359050611e2e81612e0f565b92915050565b600081359050611e4381612e26565b92915050565b600060208284031215611e5b57600080fd5b6000611e6984828501611df5565b91505092915050565b60008060408385031215611e8557600080fd5b6000611e9385828601611df5565b9250506020611ea485828601611df5565b9150509250929050565b600080600060608486031215611ec357600080fd5b6000611ed186828701611df5565b9350506020611ee286828701611df5565b9250506040611ef386828701611e34565b9150509250925092565b60008060408385031215611f1057600080fd5b6000611f1e85828601611df5565b9250506020611f2f85828601611e34565b9150509250929050565b600060208284031215611f4b57600080fd5b6000611f5984828501611e0a565b91505092915050565b60008060408385031215611f7557600080fd5b6000611f8385828601611e0a565b9250506020611f9485828601611df5565b9150509250929050565b600060208284031215611fb057600080fd5b6000611fbe84828501611e1f565b91505092915050565b611fd081612c58565b82525050565b611fdf81612c6a565b82525050565b611fee81612c76565b82525050565b6000611fff82612b4d565b6120098185612b58565b9350612019818560208601612ce3565b61202281612dd0565b840191505092915050565b600061203882612b4d565b6120428185612b69565b9350612052818560208601612ce3565b80840191505092915050565b600061206b602783612b58565b91507f43616c6c6572206d75737420686176652070617573657220726f6c6520746f2060008301527f756e7061757365000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006120d1602083612b58565b91507f537472696e67733a20686578206c656e67746820696e73756666696369656e746000830152602082019050919050565b6000612111602383612b58565b91507f45524332303a207472616e7366657220746f20746865207a65726f206164647260008301527f65737300000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000612177601483612b58565b91507f5061757361626c653a206e6f74207061757365640000000000000000000000006000830152602082019050919050565b60006121b7602283612b58565b91507f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008301527f63650000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061221d602283612b58565b91507f45524332303a20617070726f766520746f20746865207a65726f20616464726560008301527f73730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000612283602683612b58565b91507f45524332303a207472616e7366657220616d6f756e742065786365656473206260008301527f616c616e636500000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006122e9601083612b58565b91507f5061757361626c653a20706175736564000000000000000000000000000000006000830152602082019050919050565b6000612329601683612b58565b91507f43616c6c6572206973206e6f742061206d696e746572000000000000000000006000830152602082019050919050565b6000612369601683612b58565b91507f43616c6c6572206973206e6f742061206275726e6572000000000000000000006000830152602082019050919050565b60006123a9602883612b58565b91507f45524332303a207472616e7366657220616d6f756e742065786365656473206160008301527f6c6c6f77616e63650000000000000000000000000000000000000000000000006020830152604082019050919050565b600061240f602183612b58565b91507f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008301527f73000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000612475602583612b58565b91507f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008301527f64726573730000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006124db601983612b58565b91507f45524332304361707065643a20636170206578636565646564000000000000006000830152602082019050919050565b600061251b602483612b58565b91507f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000612581601783612b69565b91507f416363657373436f6e74726f6c3a206163636f756e74200000000000000000006000830152601782019050919050565b60006125c1602583612b58565b91507f43616c6c6572206d75737420686176652070617573657220726f6c6520746f2060008301527f70617573650000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000612627602583612b58565b91507f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008301527f207a65726f0000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061268d601183612b69565b91507f206973206d697373696e6720726f6c65200000000000000000000000000000006000830152601182019050919050565b60006126cd602f83612b58565b91507f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560008301527f20726f6c657320666f722073656c6600000000000000000000000000000000006020830152604082019050919050565b6000612733601f83612b58565b91507f45524332303a206d696e7420746f20746865207a65726f2061646472657373006000830152602082019050919050565b6000612773602a83612b58565b91507f45524332305061757361626c653a20746f6b656e207472616e7366657220776860008301527f696c6520706175736564000000000000000000000000000000000000000000006020830152604082019050919050565b6127d581612ccc565b82525050565b6127e481612cd6565b82525050565b60006127f582612574565b9150612801828561202d565b915061280c82612680565b9150612818828461202d565b91508190509392505050565b60006020820190506128396000830184611fc7565b92915050565b60006020820190506128546000830184611fd6565b92915050565b600060208201905061286f6000830184611fe5565b92915050565b6000602082019050818103600083015261288f8184611ff4565b905092915050565b600060208201905081810360008301526128b08161205e565b9050919050565b600060208201905081810360008301526128d0816120c4565b9050919050565b600060208201905081810360008301526128f081612104565b9050919050565b600060208201905081810360008301526129108161216a565b9050919050565b60006020820190508181036000830152612930816121aa565b9050919050565b6000602082019050818103600083015261295081612210565b9050919050565b6000602082019050818103600083015261297081612276565b9050919050565b60006020820190508181036000830152612990816122dc565b9050919050565b600060208201905081810360008301526129b08161231c565b9050919050565b600060208201905081810360008301526129d08161235c565b9050919050565b600060208201905081810360008301526129f08161239c565b9050919050565b60006020820190508181036000830152612a1081612402565b9050919050565b60006020820190508181036000830152612a3081612468565b9050919050565b60006020820190508181036000830152612a50816124ce565b9050919050565b60006020820190508181036000830152612a708161250e565b9050919050565b60006020820190508181036000830152612a90816125b4565b9050919050565b60006020820190508181036000830152612ab08161261a565b9050919050565b60006020820190508181036000830152612ad0816126c0565b9050919050565b60006020820190508181036000830152612af081612726565b9050919050565b60006020820190508181036000830152612b1081612766565b9050919050565b6000602082019050612b2c60008301846127cc565b92915050565b6000602082019050612b4760008301846127db565b92915050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b6000612b7f82612ccc565b9150612b8a83612ccc565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612bbf57612bbe612d72565b5b828201905092915050565b6000612bd582612ccc565b9150612be083612ccc565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612c1957612c18612d72565b5b828202905092915050565b6000612c2f82612ccc565b9150612c3a83612ccc565b925082821015612c4d57612c4c612d72565b5b828203905092915050565b6000612c6382612cac565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b83811015612d01578082015181840152602081019050612ce6565b83811115612d10576000848401525b50505050565b6000612d2182612ccc565b91506000821415612d3557612d34612d72565b5b600182039050919050565b60006002820490506001821680612d5857607f821691505b60208210811415612d6c57612d6b612da1565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b612dea81612c58565b8114612df557600080fd5b50565b612e0181612c76565b8114612e0c57600080fd5b50565b612e1881612c80565b8114612e2357600080fd5b50565b612e2f81612ccc565b8114612e3a57600080fd5b5056fea2646970667358221220887e1cd5fdab822501e622e55d26bf3ae515cda5f6e14189a861125695a3211764736f6c63430008000033000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000422ca8b0a00a425000000000000000000000000000000000000000000000000cecb8f27f4200f3a000000000000000000000000000000000000000000000000000000000000000000000753656c664261720000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000045342415200000000000000000000000000000000000000000000000000000000
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000422ca8b0a00a425000000000000000000000000000000000000000000000000cecb8f27f4200f3a000000000000000000000000000000000000000000000000000000000000000000000753656c664261720000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000045342415200000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : name (string): SelfBar
Arg [1] : symbol (string): SBAR
Arg [2] : initialSupply (uint256): 5000000000000000000000000
Arg [3] : cap (uint256): 250000000000000000000000000
-----Encoded View---------------
8 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 0000000000000000000000000000000000000000000422ca8b0a00a425000000
Arg [3] : 000000000000000000000000000000000000000000cecb8f27f4200f3a000000
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000007
Arg [5] : 53656c6642617200000000000000000000000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [7] : 5342415200000000000000000000000000000000000000000000000000000000
Deployed ByteCode Sourcemap
30326:1641:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25858:217;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6390:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8543:169;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7504:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9192:418;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27147:123;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30469:62;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27530:147;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;7348:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15672:83;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28574:216;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10017:215;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31390:152;;;:::i;:::-;;30893:163;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;18254:86;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7673:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31061:171;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31238:146;;;:::i;:::-;;26165:139;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6607:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23508:49;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10733:375;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8011:175;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30400:62;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27920:149;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;8247:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30538:62;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25858:217;25943:4;25982:32;25967:47;;;:11;:47;;;;:100;;;;26031:36;26055:11;26031:23;:36::i;:::-;25967:100;25960:107;;25858:217;;;:::o;6390:100::-;6444:13;6477:5;6470:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6390:100;:::o;8543:169::-;8626:4;8643:39;8652:12;:10;:12::i;:::-;8666:7;8675:6;8643:8;:39::i;:::-;8700:4;8693:11;;8543:169;;;;:::o;7504:108::-;7565:7;7592:12;;7585:19;;7504:108;:::o;9192:418::-;9298:4;9315:36;9325:6;9333:9;9344:6;9315:9;:36::i;:::-;9362:24;9389:11;:19;9401:6;9389:19;;;;;;;;;;;;;;;:33;9409:12;:10;:12::i;:::-;9389:33;;;;;;;;;;;;;;;;9362:60;;9461:6;9441:16;:26;;9433:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;9523:57;9532:6;9540:12;:10;:12::i;:::-;9573:6;9554:16;:25;;;;:::i;:::-;9523:8;:57::i;:::-;9598:4;9591:11;;;9192:418;;;;;:::o;27147:123::-;27213:7;27240:6;:12;27247:4;27240:12;;;;;;;;;;;:22;;;27233:29;;27147:123;;;:::o;30469:62::-;30507:24;30469:62;:::o;27530:147::-;27613:18;27626:4;27613:12;:18::i;:::-;25738:30;25749:4;25755:12;:10;:12::i;:::-;25738:10;:30::i;:::-;27644:25:::1;27655:4;27661:7;27644:10;:25::i;:::-;27530:147:::0;;;:::o;7348:93::-;7406:5;7431:2;7424:9;;7348:93;:::o;15672:83::-;15716:7;15743:4;15736:11;;15672:83;:::o;28574:216::-;28681:12;:10;:12::i;:::-;28670:23;;:7;:23;;;28662:83;;;;;;;;;;;;:::i;:::-;;;;;;;;;28756:26;28768:4;28774:7;28756:11;:26::i;:::-;28574:216;;:::o;10017:215::-;10105:4;10122:80;10131:12;:10;:12::i;:::-;10145:7;10191:10;10154:11;:25;10166:12;:10;:12::i;:::-;10154:25;;;;;;;;;;;;;;;:34;10180:7;10154:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;10122:8;:80::i;:::-;10220:4;10213:11;;10017:215;;;;:::o;31390:152::-;31435:34;30576:24;31456:12;:10;:12::i;:::-;31435:7;:34::i;:::-;31427:86;;;;;;;;;;;;:::i;:::-;;;;;;;;;31524:10;:8;:10::i;:::-;31390:152::o;30893:163::-;30961:32;30438:24;30982:10;30961:7;:32::i;:::-;30953:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;31031:17;31037:2;31041:6;31031:5;:17::i;:::-;30893:163;;:::o;18254:86::-;18301:4;18325:7;;;;;;;;;;;18318:14;;18254:86;:::o;7673:127::-;7747:7;7774:9;:18;7784:7;7774:18;;;;;;;;;;;;;;;;7767:25;;7673:127;;;:::o;31061:171::-;31135:32;30507:24;31156:10;31135:7;:32::i;:::-;31127:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;31205:19;31211:4;31217:6;31205:5;:19::i;:::-;31061:171;;:::o;31238:146::-;31281:34;30576:24;31302:12;:10;:12::i;:::-;31281:7;:34::i;:::-;31273:84;;;;;;;;;;;;:::i;:::-;;;;;;;;;31368:8;:6;:8::i;:::-;31238:146::o;26165:139::-;26243:4;26267:6;:12;26274:4;26267:12;;;;;;;;;;;:20;;:29;26288:7;26267:29;;;;;;;;;;;;;;;;;;;;;;;;;26260:36;;26165:139;;;;:::o;6607:104::-;6663:13;6696:7;6689:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6607:104;:::o;23508:49::-;23553:4;23508:49;;;:::o;10733:375::-;10826:4;10843:24;10870:11;:25;10882:12;:10;:12::i;:::-;10870:25;;;;;;;;;;;;;;;:34;10896:7;10870:34;;;;;;;;;;;;;;;;10843:61;;10943:15;10923:16;:35;;10915:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;11011:67;11020:12;:10;:12::i;:::-;11034:7;11062:15;11043:16;:34;;;;:::i;:::-;11011:8;:67::i;:::-;11096:4;11089:11;;;10733:375;;;;:::o;8011:175::-;8097:4;8114:42;8124:12;:10;:12::i;:::-;8138:9;8149:6;8114:9;:42::i;:::-;8174:4;8167:11;;8011:175;;;;:::o;30400:62::-;30438:24;30400:62;:::o;27920:149::-;28004:18;28017:4;28004:12;:18::i;:::-;25738:30;25749:4;25755:12;:10;:12::i;:::-;25738:10;:30::i;:::-;28035:26:::1;28047:4;28053:7;28035:11;:26::i;:::-;27920:149:::0;;;:::o;8247:151::-;8336:7;8363:11;:18;8375:5;8363:18;;;;;;;;;;;;;;;:27;8382:7;8363:27;;;;;;;;;;;;;;;;8356:34;;8247:151;;;;:::o;30538:62::-;30576:24;30538:62;:::o;12474:334::-;12577:1;12558:21;;:7;:21;;;;12550:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;12626:49;12655:1;12659:7;12668:6;12626:20;:49::i;:::-;12702:6;12686:12;;:22;;;;;;;:::i;:::-;;;;;;;;12741:6;12719:9;:18;12729:7;12719:18;;;;;;;;;;;;;;;;:28;;;;;;;:::i;:::-;;;;;;;;12784:7;12763:37;;12780:1;12763:37;;;12793:6;12763:37;;;;;;:::i;:::-;;;;;;;;12474:334;;:::o;15008:92::-;;;;:::o;21007:157::-;21092:4;21131:25;21116:40;;;:11;:40;;;;21109:47;;21007:157;;;:::o;4021:98::-;4074:7;4101:10;4094:17;;4021:98;:::o;14063:344::-;14182:1;14165:19;;:5;:19;;;;14157:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;14263:1;14244:21;;:7;:21;;;;14236:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;14345:6;14315:11;:18;14327:5;14315:18;;;;;;;;;;;;;;;:27;14334:7;14315:27;;;;;;;;;;;;;;;:36;;;;14383:7;14367:32;;14376:5;14367:32;;;14392:6;14367:32;;;;;;:::i;:::-;;;;;;;;14063:344;;;:::o;11596:598::-;11720:1;11702:20;;:6;:20;;;;11694:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;11804:1;11783:23;;:9;:23;;;;11775:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;11857:47;11878:6;11886:9;11897:6;11857:20;:47::i;:::-;11915:21;11939:9;:17;11949:6;11939:17;;;;;;;;;;;;;;;;11915:41;;11992:6;11975:13;:23;;11967:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;12088:6;12072:13;:22;;;;:::i;:::-;12052:9;:17;12062:6;12052:17;;;;;;;;;;;;;;;:42;;;;12129:6;12105:9;:20;12115:9;12105:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;12168:9;12151:35;;12160:6;12151:35;;;12179:6;12151:35;;;;;;:::i;:::-;;;;;;;;11596:598;;;;:::o;26592:368::-;26672:22;26680:4;26686:7;26672;:22::i;:::-;26668:285;;26804:33;26824:7;26804:33;;26834:2;26804:11;:33::i;:::-;26894:30;26914:4;26906:13;;26921:2;26894:11;:30::i;:::-;26725:214;;;;;;;;;:::i;:::-;;;;;;;;;;;;;26711:230;;;;;;;;;;;:::i;:::-;;;;;;;;26668:285;26592:368;;:::o;29814:229::-;29889:22;29897:4;29903:7;29889;:22::i;:::-;29884:152;;29960:4;29928:6;:12;29935:4;29928:12;;;;;;;;;;;:20;;:29;29949:7;29928:29;;;;;;;;;;;;;;;;:36;;;;;;;;;;;;;;;;;;30011:12;:10;:12::i;:::-;29984:40;;30002:7;29984:40;;29996:4;29984:40;;;;;;;;;;29884:152;29814:229;;:::o;30049:230::-;30124:22;30132:4;30138:7;30124;:22::i;:::-;30120:152;;;30195:5;30163:6;:12;30170:4;30163:12;;;;;;;;;;;:20;;:29;30184:7;30163:29;;;;;;;;;;;;;;;;:37;;;;;;;;;;;;;;;;;;30247:12;:10;:12::i;:::-;30220:40;;30238:7;30220:40;;30232:4;30220:40;;;;;;;;;;30120:152;30049:230;;:::o;19305:120::-;18853:8;:6;:8::i;:::-;18845:41;;;;;;;;;;;;:::i;:::-;;;;;;;;;19374:5:::1;19364:7;;:15;;;;;;;;;;;;;;;;;;19395:22;19404:12;:10;:12::i;:::-;19395:22;;;;;;:::i;:::-;;;;;;;;19305:120::o:0;15811:207::-;15936:5;:3;:5::i;:::-;15926:6;15904:19;:17;:19::i;:::-;:28;;;;:::i;:::-;:37;;15896:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;15982:28;15994:7;16003:6;15982:11;:28::i;:::-;15811:207;;:::o;13139:488::-;13242:1;13223:21;;:7;:21;;;;13215:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;13293:49;13314:7;13331:1;13335:6;13293:20;:49::i;:::-;13353:22;13378:9;:18;13388:7;13378:18;;;;;;;;;;;;;;;;13353:43;;13433:6;13415:14;:24;;13407:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;13527:6;13510:14;:23;;;;:::i;:::-;13489:9;:18;13499:7;13489:18;;;;;;;;;;;;;;;:44;;;;13560:6;13544:12;;:22;;;;;;;:::i;:::-;;;;;;;;13608:1;13582:37;;13591:7;13582:37;;;13612:6;13582:37;;;;;;:::i;:::-;;;;;;;;13139:488;;;:::o;19048:118::-;18578:8;:6;:8::i;:::-;18577:9;18569:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;19118:4:::1;19108:7;;:14;;;;;;;;;;;;;;;;;;19138:20;19145:12;:10;:12::i;:::-;19138:20;;;;;;:::i;:::-;;;;;;;;19048:118::o:0;31694:270::-;31837:44;31864:4;31870:2;31874:6;31837:26;:44::i;:::-;31901:8;:6;:8::i;:::-;31900:9;31892:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;31694:270;;;:::o;23745:447::-;23820:13;23846:19;23891:1;23882:6;23878:1;:10;;;;:::i;:::-;:14;;;;:::i;:::-;23868:25;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23846:47;;23904:15;:6;23911:1;23904:9;;;;;;;;;;;;;;;;;;;:15;;;;;;;;;;;23930;:6;23937:1;23930:9;;;;;;;;;;;;;;;;;;;:15;;;;;;;;;;;23961:9;23986:1;23977:6;23973:1;:10;;;;:::i;:::-;:14;;;;:::i;:::-;23961:26;;23956:131;23993:1;23989;:5;23956:131;;;24028:8;24045:3;24037:5;:11;24028:21;;;;;;;;;;;;;;;;;;24016:6;24023:1;24016:9;;;;;;;;;;;;;;;;;;;:33;;;;;;;;;;;24074:1;24064:11;;;;;23996:3;;;;:::i;:::-;;;23956:131;;;;24114:1;24105:5;:10;24097:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;24177:6;24163:21;;;23745:447;;;;:::o;7:139:1:-;;91:6;78:20;69:29;;107:33;134:5;107:33;:::i;:::-;59:87;;;;:::o;152:139::-;;236:6;223:20;214:29;;252:33;279:5;252:33;:::i;:::-;204:87;;;;:::o;297:137::-;;380:6;367:20;358:29;;396:32;422:5;396:32;:::i;:::-;348:86;;;;:::o;440:139::-;;524:6;511:20;502:29;;540:33;567:5;540:33;:::i;:::-;492:87;;;;:::o;585:262::-;;693:2;681:9;672:7;668:23;664:32;661:2;;;709:1;706;699:12;661:2;752:1;777:53;822:7;813:6;802:9;798:22;777:53;:::i;:::-;767:63;;723:117;651:196;;;;:::o;853:407::-;;;978:2;966:9;957:7;953:23;949:32;946:2;;;994:1;991;984:12;946:2;1037:1;1062:53;1107:7;1098:6;1087:9;1083:22;1062:53;:::i;:::-;1052:63;;1008:117;1164:2;1190:53;1235:7;1226:6;1215:9;1211:22;1190:53;:::i;:::-;1180:63;;1135:118;936:324;;;;;:::o;1266:552::-;;;;1408:2;1396:9;1387:7;1383:23;1379:32;1376:2;;;1424:1;1421;1414:12;1376:2;1467:1;1492:53;1537:7;1528:6;1517:9;1513:22;1492:53;:::i;:::-;1482:63;;1438:117;1594:2;1620:53;1665:7;1656:6;1645:9;1641:22;1620:53;:::i;:::-;1610:63;;1565:118;1722:2;1748:53;1793:7;1784:6;1773:9;1769:22;1748:53;:::i;:::-;1738:63;;1693:118;1366:452;;;;;:::o;1824:407::-;;;1949:2;1937:9;1928:7;1924:23;1920:32;1917:2;;;1965:1;1962;1955:12;1917:2;2008:1;2033:53;2078:7;2069:6;2058:9;2054:22;2033:53;:::i;:::-;2023:63;;1979:117;2135:2;2161:53;2206:7;2197:6;2186:9;2182:22;2161:53;:::i;:::-;2151:63;;2106:118;1907:324;;;;;:::o;2237:262::-;;2345:2;2333:9;2324:7;2320:23;2316:32;2313:2;;;2361:1;2358;2351:12;2313:2;2404:1;2429:53;2474:7;2465:6;2454:9;2450:22;2429:53;:::i;:::-;2419:63;;2375:117;2303:196;;;;:::o;2505:407::-;;;2630:2;2618:9;2609:7;2605:23;2601:32;2598:2;;;2646:1;2643;2636:12;2598:2;2689:1;2714:53;2759:7;2750:6;2739:9;2735:22;2714:53;:::i;:::-;2704:63;;2660:117;2816:2;2842:53;2887:7;2878:6;2867:9;2863:22;2842:53;:::i;:::-;2832:63;;2787:118;2588:324;;;;;:::o;2918:260::-;;3025:2;3013:9;3004:7;3000:23;2996:32;2993:2;;;3041:1;3038;3031:12;2993:2;3084:1;3109:52;3153:7;3144:6;3133:9;3129:22;3109:52;:::i;:::-;3099:62;;3055:116;2983:195;;;;:::o;3184:118::-;3271:24;3289:5;3271:24;:::i;:::-;3266:3;3259:37;3249:53;;:::o;3308:109::-;3389:21;3404:5;3389:21;:::i;:::-;3384:3;3377:34;3367:50;;:::o;3423:118::-;3510:24;3528:5;3510:24;:::i;:::-;3505:3;3498:37;3488:53;;:::o;3547:364::-;;3663:39;3696:5;3663:39;:::i;:::-;3718:71;3782:6;3777:3;3718:71;:::i;:::-;3711:78;;3798:52;3843:6;3838:3;3831:4;3824:5;3820:16;3798:52;:::i;:::-;3875:29;3897:6;3875:29;:::i;:::-;3870:3;3866:39;3859:46;;3639:272;;;;;:::o;3917:377::-;;4051:39;4084:5;4051:39;:::i;:::-;4106:89;4188:6;4183:3;4106:89;:::i;:::-;4099:96;;4204:52;4249:6;4244:3;4237:4;4230:5;4226:16;4204:52;:::i;:::-;4281:6;4276:3;4272:16;4265:23;;4027:267;;;;;:::o;4300:371::-;;4463:67;4527:2;4522:3;4463:67;:::i;:::-;4456:74;;4560:34;4556:1;4551:3;4547:11;4540:55;4626:9;4621:2;4616:3;4612:12;4605:31;4662:2;4657:3;4653:12;4646:19;;4446:225;;;:::o;4677:330::-;;4840:67;4904:2;4899:3;4840:67;:::i;:::-;4833:74;;4937:34;4933:1;4928:3;4924:11;4917:55;4998:2;4993:3;4989:12;4982:19;;4823:184;;;:::o;5013:367::-;;5176:67;5240:2;5235:3;5176:67;:::i;:::-;5169:74;;5273:34;5269:1;5264:3;5260:11;5253:55;5339:5;5334:2;5329:3;5325:12;5318:27;5371:2;5366:3;5362:12;5355:19;;5159:221;;;:::o;5386:318::-;;5549:67;5613:2;5608:3;5549:67;:::i;:::-;5542:74;;5646:22;5642:1;5637:3;5633:11;5626:43;5695:2;5690:3;5686:12;5679:19;;5532:172;;;:::o;5710:366::-;;5873:67;5937:2;5932:3;5873:67;:::i;:::-;5866:74;;5970:34;5966:1;5961:3;5957:11;5950:55;6036:4;6031:2;6026:3;6022:12;6015:26;6067:2;6062:3;6058:12;6051:19;;5856:220;;;:::o;6082:366::-;;6245:67;6309:2;6304:3;6245:67;:::i;:::-;6238:74;;6342:34;6338:1;6333:3;6329:11;6322:55;6408:4;6403:2;6398:3;6394:12;6387:26;6439:2;6434:3;6430:12;6423:19;;6228:220;;;:::o;6454:370::-;;6617:67;6681:2;6676:3;6617:67;:::i;:::-;6610:74;;6714:34;6710:1;6705:3;6701:11;6694:55;6780:8;6775:2;6770:3;6766:12;6759:30;6815:2;6810:3;6806:12;6799:19;;6600:224;;;:::o;6830:314::-;;6993:67;7057:2;7052:3;6993:67;:::i;:::-;6986:74;;7090:18;7086:1;7081:3;7077:11;7070:39;7135:2;7130:3;7126:12;7119:19;;6976:168;;;:::o;7150:320::-;;7313:67;7377:2;7372:3;7313:67;:::i;:::-;7306:74;;7410:24;7406:1;7401:3;7397:11;7390:45;7461:2;7456:3;7452:12;7445:19;;7296:174;;;:::o;7476:320::-;;7639:67;7703:2;7698:3;7639:67;:::i;:::-;7632:74;;7736:24;7732:1;7727:3;7723:11;7716:45;7787:2;7782:3;7778:12;7771:19;;7622:174;;;:::o;7802:372::-;;7965:67;8029:2;8024:3;7965:67;:::i;:::-;7958:74;;8062:34;8058:1;8053:3;8049:11;8042:55;8128:10;8123:2;8118:3;8114:12;8107:32;8165:2;8160:3;8156:12;8149:19;;7948:226;;;:::o;8180:365::-;;8343:67;8407:2;8402:3;8343:67;:::i;:::-;8336:74;;8440:34;8436:1;8431:3;8427:11;8420:55;8506:3;8501:2;8496:3;8492:12;8485:25;8536:2;8531:3;8527:12;8520:19;;8326:219;;;:::o;8551:369::-;;8714:67;8778:2;8773:3;8714:67;:::i;:::-;8707:74;;8811:34;8807:1;8802:3;8798:11;8791:55;8877:7;8872:2;8867:3;8863:12;8856:29;8911:2;8906:3;8902:12;8895:19;;8697:223;;;:::o;8926:323::-;;9089:67;9153:2;9148:3;9089:67;:::i;:::-;9082:74;;9186:27;9182:1;9177:3;9173:11;9166:48;9240:2;9235:3;9231:12;9224:19;;9072:177;;;:::o;9255:368::-;;9418:67;9482:2;9477:3;9418:67;:::i;:::-;9411:74;;9515:34;9511:1;9506:3;9502:11;9495:55;9581:6;9576:2;9571:3;9567:12;9560:28;9614:2;9609:3;9605:12;9598:19;;9401:222;;;:::o;9629:357::-;;9810:85;9892:2;9887:3;9810:85;:::i;:::-;9803:92;;9925:25;9921:1;9916:3;9912:11;9905:46;9977:2;9972:3;9968:12;9961:19;;9793:193;;;:::o;9992:369::-;;10155:67;10219:2;10214:3;10155:67;:::i;:::-;10148:74;;10252:34;10248:1;10243:3;10239:11;10232:55;10318:7;10313:2;10308:3;10304:12;10297:29;10352:2;10347:3;10343:12;10336:19;;10138:223;;;:::o;10367:369::-;;10530:67;10594:2;10589:3;10530:67;:::i;:::-;10523:74;;10627:34;10623:1;10618:3;10614:11;10607:55;10693:7;10688:2;10683:3;10679:12;10672:29;10727:2;10722:3;10718:12;10711:19;;10513:223;;;:::o;10742:351::-;;10923:85;11005:2;11000:3;10923:85;:::i;:::-;10916:92;;11038:19;11034:1;11029:3;11025:11;11018:40;11084:2;11079:3;11075:12;11068:19;;10906:187;;;:::o;11099:379::-;;11262:67;11326:2;11321:3;11262:67;:::i;:::-;11255:74;;11359:34;11355:1;11350:3;11346:11;11339:55;11425:17;11420:2;11415:3;11411:12;11404:39;11469:2;11464:3;11460:12;11453:19;;11245:233;;;:::o;11484:329::-;;11647:67;11711:2;11706:3;11647:67;:::i;:::-;11640:74;;11744:33;11740:1;11735:3;11731:11;11724:54;11804:2;11799:3;11795:12;11788:19;;11630:183;;;:::o;11819:374::-;;11982:67;12046:2;12041:3;11982:67;:::i;:::-;11975:74;;12079:34;12075:1;12070:3;12066:11;12059:55;12145:12;12140:2;12135:3;12131:12;12124:34;12184:2;12179:3;12175:12;12168:19;;11965:228;;;:::o;12199:118::-;12286:24;12304:5;12286:24;:::i;:::-;12281:3;12274:37;12264:53;;:::o;12323:112::-;12406:22;12422:5;12406:22;:::i;:::-;12401:3;12394:35;12384:51;;:::o;12441:967::-;;12845:148;12989:3;12845:148;:::i;:::-;12838:155;;13010:95;13101:3;13092:6;13010:95;:::i;:::-;13003:102;;13122:148;13266:3;13122:148;:::i;:::-;13115:155;;13287:95;13378:3;13369:6;13287:95;:::i;:::-;13280:102;;13399:3;13392:10;;12827:581;;;;;:::o;13414:222::-;;13545:2;13534:9;13530:18;13522:26;;13558:71;13626:1;13615:9;13611:17;13602:6;13558:71;:::i;:::-;13512:124;;;;:::o;13642:210::-;;13767:2;13756:9;13752:18;13744:26;;13780:65;13842:1;13831:9;13827:17;13818:6;13780:65;:::i;:::-;13734:118;;;;:::o;13858:222::-;;13989:2;13978:9;13974:18;13966:26;;14002:71;14070:1;14059:9;14055:17;14046:6;14002:71;:::i;:::-;13956:124;;;;:::o;14086:313::-;;14237:2;14226:9;14222:18;14214:26;;14286:9;14280:4;14276:20;14272:1;14261:9;14257:17;14250:47;14314:78;14387:4;14378:6;14314:78;:::i;:::-;14306:86;;14204:195;;;;:::o;14405:419::-;;14609:2;14598:9;14594:18;14586:26;;14658:9;14652:4;14648:20;14644:1;14633:9;14629:17;14622:47;14686:131;14812:4;14686:131;:::i;:::-;14678:139;;14576:248;;;:::o;14830:419::-;;15034:2;15023:9;15019:18;15011:26;;15083:9;15077:4;15073:20;15069:1;15058:9;15054:17;15047:47;15111:131;15237:4;15111:131;:::i;:::-;15103:139;;15001:248;;;:::o;15255:419::-;;15459:2;15448:9;15444:18;15436:26;;15508:9;15502:4;15498:20;15494:1;15483:9;15479:17;15472:47;15536:131;15662:4;15536:131;:::i;:::-;15528:139;;15426:248;;;:::o;15680:419::-;;15884:2;15873:9;15869:18;15861:26;;15933:9;15927:4;15923:20;15919:1;15908:9;15904:17;15897:47;15961:131;16087:4;15961:131;:::i;:::-;15953:139;;15851:248;;;:::o;16105:419::-;;16309:2;16298:9;16294:18;16286:26;;16358:9;16352:4;16348:20;16344:1;16333:9;16329:17;16322:47;16386:131;16512:4;16386:131;:::i;:::-;16378:139;;16276:248;;;:::o;16530:419::-;;16734:2;16723:9;16719:18;16711:26;;16783:9;16777:4;16773:20;16769:1;16758:9;16754:17;16747:47;16811:131;16937:4;16811:131;:::i;:::-;16803:139;;16701:248;;;:::o;16955:419::-;;17159:2;17148:9;17144:18;17136:26;;17208:9;17202:4;17198:20;17194:1;17183:9;17179:17;17172:47;17236:131;17362:4;17236:131;:::i;:::-;17228:139;;17126:248;;;:::o;17380:419::-;;17584:2;17573:9;17569:18;17561:26;;17633:9;17627:4;17623:20;17619:1;17608:9;17604:17;17597:47;17661:131;17787:4;17661:131;:::i;:::-;17653:139;;17551:248;;;:::o;17805:419::-;;18009:2;17998:9;17994:18;17986:26;;18058:9;18052:4;18048:20;18044:1;18033:9;18029:17;18022:47;18086:131;18212:4;18086:131;:::i;:::-;18078:139;;17976:248;;;:::o;18230:419::-;;18434:2;18423:9;18419:18;18411:26;;18483:9;18477:4;18473:20;18469:1;18458:9;18454:17;18447:47;18511:131;18637:4;18511:131;:::i;:::-;18503:139;;18401:248;;;:::o;18655:419::-;;18859:2;18848:9;18844:18;18836:26;;18908:9;18902:4;18898:20;18894:1;18883:9;18879:17;18872:47;18936:131;19062:4;18936:131;:::i;:::-;18928:139;;18826:248;;;:::o;19080:419::-;;19284:2;19273:9;19269:18;19261:26;;19333:9;19327:4;19323:20;19319:1;19308:9;19304:17;19297:47;19361:131;19487:4;19361:131;:::i;:::-;19353:139;;19251:248;;;:::o;19505:419::-;;19709:2;19698:9;19694:18;19686:26;;19758:9;19752:4;19748:20;19744:1;19733:9;19729:17;19722:47;19786:131;19912:4;19786:131;:::i;:::-;19778:139;;19676:248;;;:::o;19930:419::-;;20134:2;20123:9;20119:18;20111:26;;20183:9;20177:4;20173:20;20169:1;20158:9;20154:17;20147:47;20211:131;20337:4;20211:131;:::i;:::-;20203:139;;20101:248;;;:::o;20355:419::-;;20559:2;20548:9;20544:18;20536:26;;20608:9;20602:4;20598:20;20594:1;20583:9;20579:17;20572:47;20636:131;20762:4;20636:131;:::i;:::-;20628:139;;20526:248;;;:::o;20780:419::-;;20984:2;20973:9;20969:18;20961:26;;21033:9;21027:4;21023:20;21019:1;21008:9;21004:17;20997:47;21061:131;21187:4;21061:131;:::i;:::-;21053:139;;20951:248;;;:::o;21205:419::-;;21409:2;21398:9;21394:18;21386:26;;21458:9;21452:4;21448:20;21444:1;21433:9;21429:17;21422:47;21486:131;21612:4;21486:131;:::i;:::-;21478:139;;21376:248;;;:::o;21630:419::-;;21834:2;21823:9;21819:18;21811:26;;21883:9;21877:4;21873:20;21869:1;21858:9;21854:17;21847:47;21911:131;22037:4;21911:131;:::i;:::-;21903:139;;21801:248;;;:::o;22055:419::-;;22259:2;22248:9;22244:18;22236:26;;22308:9;22302:4;22298:20;22294:1;22283:9;22279:17;22272:47;22336:131;22462:4;22336:131;:::i;:::-;22328:139;;22226:248;;;:::o;22480:419::-;;22684:2;22673:9;22669:18;22661:26;;22733:9;22727:4;22723:20;22719:1;22708:9;22704:17;22697:47;22761:131;22887:4;22761:131;:::i;:::-;22753:139;;22651:248;;;:::o;22905:222::-;;23036:2;23025:9;23021:18;23013:26;;23049:71;23117:1;23106:9;23102:17;23093:6;23049:71;:::i;:::-;23003:124;;;;:::o;23133:214::-;;23260:2;23249:9;23245:18;23237:26;;23273:67;23337:1;23326:9;23322:17;23313:6;23273:67;:::i;:::-;23227:120;;;;:::o;23353:99::-;;23439:5;23433:12;23423:22;;23412:40;;;:::o;23458:169::-;;23576:6;23571:3;23564:19;23616:4;23611:3;23607:14;23592:29;;23554:73;;;;:::o;23633:148::-;;23772:3;23757:18;;23747:34;;;;:::o;23787:305::-;;23846:20;23864:1;23846:20;:::i;:::-;23841:25;;23880:20;23898:1;23880:20;:::i;:::-;23875:25;;24034:1;23966:66;23962:74;23959:1;23956:81;23953:2;;;24040:18;;:::i;:::-;23953:2;24084:1;24081;24077:9;24070:16;;23831:261;;;;:::o;24098:348::-;;24161:20;24179:1;24161:20;:::i;:::-;24156:25;;24195:20;24213:1;24195:20;:::i;:::-;24190:25;;24383:1;24315:66;24311:74;24308:1;24305:81;24300:1;24293:9;24286:17;24282:105;24279:2;;;24390:18;;:::i;:::-;24279:2;24438:1;24435;24431:9;24420:20;;24146:300;;;;:::o;24452:191::-;;24512:20;24530:1;24512:20;:::i;:::-;24507:25;;24546:20;24564:1;24546:20;:::i;:::-;24541:25;;24585:1;24582;24579:8;24576:2;;;24590:18;;:::i;:::-;24576:2;24635:1;24632;24628:9;24620:17;;24497:146;;;;:::o;24649:96::-;;24715:24;24733:5;24715:24;:::i;:::-;24704:35;;24694:51;;;:::o;24751:90::-;;24828:5;24821:13;24814:21;24803:32;;24793:48;;;:::o;24847:77::-;;24913:5;24902:16;;24892:32;;;:::o;24930:149::-;;25006:66;24999:5;24995:78;24984:89;;24974:105;;;:::o;25085:126::-;;25162:42;25155:5;25151:54;25140:65;;25130:81;;;:::o;25217:77::-;;25283:5;25272:16;;25262:32;;;:::o;25300:86::-;;25375:4;25368:5;25364:16;25353:27;;25343:43;;;:::o;25392:307::-;25460:1;25470:113;25484:6;25481:1;25478:13;25470:113;;;25569:1;25564:3;25560:11;25554:18;25550:1;25545:3;25541:11;25534:39;25506:2;25503:1;25499:10;25494:15;;25470:113;;;25601:6;25598:1;25595:13;25592:2;;;25681:1;25672:6;25667:3;25663:16;25656:27;25592:2;25441:258;;;;:::o;25705:171::-;;25767:24;25785:5;25767:24;:::i;:::-;25758:33;;25813:4;25806:5;25803:15;25800:2;;;25821:18;;:::i;:::-;25800:2;25868:1;25861:5;25857:13;25850:20;;25748:128;;;:::o;25882:320::-;;25963:1;25957:4;25953:12;25943:22;;26010:1;26004:4;26000:12;26031:18;26021:2;;26087:4;26079:6;26075:17;26065:27;;26021:2;26149;26141:6;26138:14;26118:18;26115:38;26112:2;;;26168:18;;:::i;:::-;26112:2;25933:269;;;;:::o;26208:180::-;26256:77;26253:1;26246:88;26353:4;26350:1;26343:15;26377:4;26374:1;26367:15;26394:180;26442:77;26439:1;26432:88;26539:4;26536:1;26529:15;26563:4;26560:1;26553:15;26580:102;;26672:2;26668:7;26663:2;26656:5;26652:14;26648:28;26638:38;;26628:54;;;:::o;26688:122::-;26761:24;26779:5;26761:24;:::i;:::-;26754:5;26751:35;26741:2;;26800:1;26797;26790:12;26741:2;26731:79;:::o;26816:122::-;26889:24;26907:5;26889:24;:::i;:::-;26882:5;26879:35;26869:2;;26928:1;26925;26918:12;26869:2;26859:79;:::o;26944:120::-;27016:23;27033:5;27016:23;:::i;:::-;27009:5;27006:34;26996:2;;27054:1;27051;27044:12;26996:2;26986:78;:::o;27070:122::-;27143:24;27161:5;27143:24;:::i;:::-;27136:5;27133:35;27123:2;;27182:1;27179;27172:12;27123:2;27113:79;:::o
Swarm Source
ipfs://887e1cd5fdab822501e622e55d26bf3ae515cda5f6e14189a861125695a32117