Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
Latest 25 from a total of 144 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Withdraw | 21021670 | 44 days ago | IN | 0 ETH | 0.00131146 | ||||
Set Fee | 20096138 | 173 days ago | IN | 0 ETH | 0.00013031 | ||||
Set Fee | 20065456 | 177 days ago | IN | 0 ETH | 0.00059236 | ||||
Set Fee | 20043979 | 180 days ago | IN | 0 ETH | 0.00019449 | ||||
Mint | 19830286 | 210 days ago | IN | 0 ETH | 0.00034427 | ||||
Set Fee | 19801132 | 214 days ago | IN | 0 ETH | 0.00013047 | ||||
Set Fee | 19757892 | 220 days ago | IN | 0 ETH | 0.00013644 | ||||
Set Fee | 19744201 | 222 days ago | IN | 0 ETH | 0.00016068 | ||||
Burn | 19704823 | 228 days ago | IN | 0.07504178 ETH | 0.00066198 | ||||
Set Fee | 19700146 | 228 days ago | IN | 0 ETH | 0.00017931 | ||||
Set Fee | 19699810 | 228 days ago | IN | 0 ETH | 0.00020574 | ||||
Set Fee | 19693563 | 229 days ago | IN | 0 ETH | 0.00019477 | ||||
Set Fee | 19692683 | 229 days ago | IN | 0 ETH | 0.0002502 | ||||
Set Fee | 19656457 | 234 days ago | IN | 0 ETH | 0.0002816 | ||||
Set Fee | 19656358 | 234 days ago | IN | 0 ETH | 0.00031274 | ||||
Set Fee | 19655466 | 235 days ago | IN | 0 ETH | 0.00035325 | ||||
Set Fee | 19655463 | 235 days ago | IN | 0 ETH | 0.00039876 | ||||
Set Fee | 19635566 | 237 days ago | IN | 0 ETH | 0.00044447 | ||||
Set Fee | 19622762 | 239 days ago | IN | 0 ETH | 0.00045961 | ||||
Set Fee | 19621569 | 239 days ago | IN | 0 ETH | 0.00053888 | ||||
Set Fee | 19620963 | 239 days ago | IN | 0 ETH | 0.00057104 | ||||
Set Fee | 19609663 | 241 days ago | IN | 0 ETH | 0.0005097 | ||||
Set Fee | 19606984 | 241 days ago | IN | 0 ETH | 0.00039934 | ||||
Set Fee | 19597785 | 243 days ago | IN | 0 ETH | 0.00055434 | ||||
Set Fee | 19597484 | 243 days ago | IN | 0 ETH | 0.00066182 |
Latest 6 internal transactions
Advanced mode:
Parent Transaction Hash | Block | From | To | |||
---|---|---|---|---|---|---|
21021670 | 44 days ago | 0.08096016 ETH | ||||
19295786 | 285 days ago | Contract Creation | 0 ETH | |||
19295782 | 285 days ago | Contract Creation | 0 ETH | |||
19295780 | 285 days ago | Contract Creation | 0 ETH | |||
19295776 | 285 days ago | Contract Creation | 0 ETH | |||
19295772 | 285 days ago | Contract Creation | 0 ETH |
Loading...
Loading
Similar Match Source Code This contract matches the deployed Bytecode of the Source Code for Contract 0x0aa622a5...219853Aa0 The constructor portion of the code might be different and could alter the actual behaviour of the contract
Contract Name:
UNIPORT20Bridge
Compiler Version
v0.8.19+commit.7dd6d404
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2024-02-06 */ // Sources flattened with hardhat v2.19.2 https://hardhat.org // SPDX-License-Identifier: MIT // File @openzeppelin/contracts/utils/[email protected] // Original license: SPDX_License_Identifier: MIT // 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/access/[email protected] // Original license: SPDX_License_Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby disabling any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File contracts/interfaces/IUNIPORT20Bridge.sol // Original license: SPDX_License_Identifier: MIT pragma solidity ^0.8.0; interface IUNIPORT20Bridge { function parameters() external view returns (string memory name, string memory symbol, uint8 decimals); } // File contracts/UNIPORT20.sol // Original license: SPDX_License_Identifier: MIT pragma solidity ^0.8.0; contract UNIPORT20 { string public name; string public symbol; uint8 public immutable decimals; address public immutable bridge; uint256 public totalSupply; mapping (address => uint256) public balanceOf; mapping (address => mapping(address => uint256)) public allowance; mapping (address => uint256) public nonces; bytes32 public DOMAIN_SEPARATOR; bytes32 public constant PERMIT_TYPEHASH = keccak256("Permit(address owner,address spender,uint256 value,uint256 nonce,uint256 deadline)"); bytes32 public constant DOMAIN_TYPEHASH = keccak256("EIP712Domain(string name,string version,uint256 chainId,address verifyingContract)"); event Approval(address indexed owner, address indexed spender, uint256 value); event Transfer(address indexed from, address indexed to, uint256 value); constructor() { (name, symbol, decimals) = IUNIPORT20Bridge(msg.sender).parameters(); bridge = msg.sender; uint256 chainId; assembly { chainId := chainid() } DOMAIN_SEPARATOR = keccak256(abi.encode(DOMAIN_TYPEHASH, keccak256(bytes(name)), keccak256(bytes('1')), chainId, address(this))); } function mint(address to, uint256 amount) external { require(msg.sender == bridge, "unauthorized"); _mint(to, amount); } function burn(uint256 amount) external { require(msg.sender == bridge, "unauthorized"); _burn(msg.sender, amount); } function approve(address spender, uint256 amount) external returns (bool) { allowance[msg.sender][spender] = amount; emit Approval(msg.sender, spender, amount); return true; } function transfer(address to, uint256 amount) external returns (bool) { balanceOf[msg.sender] -= amount; unchecked { balanceOf[to] += amount; } emit Transfer(msg.sender, to, amount); return true; } function transferFrom(address from, address to, uint256 amount) external returns (bool) { uint256 allowed = allowance[from][msg.sender]; if (allowed != type(uint256).max) allowance[from][msg.sender] = allowed - amount; balanceOf[from] -= amount; unchecked { balanceOf[to] += amount; } emit Transfer(from, to, amount); return true; } function permit(address owner, address spender, uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s) external { require(deadline >= block.timestamp, 'EXPIRED'); unchecked { bytes32 digest = keccak256( abi.encodePacked( '\x19\x01', DOMAIN_SEPARATOR, keccak256(abi.encode(PERMIT_TYPEHASH, owner, spender, value, nonces[owner]++, deadline)) ) ); address recoveredAddress = ecrecover(digest, v, r, s); require(recoveredAddress != address(0) && recoveredAddress == owner, 'INVALID_SIGNATURE'); allowance[recoveredAddress][spender] = value; } emit Approval(owner, spender, value); } function _mint(address to, uint256 amount) internal { totalSupply += amount; unchecked { balanceOf[to] += amount; } emit Transfer(address(0), to, amount); } function _burn(address from, uint256 amount) internal { balanceOf[from] -= amount; unchecked { totalSupply -= amount; } emit Transfer(from, address(0), amount); } } // File @openzeppelin/contracts/security/[email protected] // Original license: SPDX_License_Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (security/ReentrancyGuard.sol) pragma solidity ^0.8.0; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and making it call a * `private` function that does the actual work. */ modifier nonReentrant() { _nonReentrantBefore(); _; _nonReentrantAfter(); } function _nonReentrantBefore() private { // On the first call to nonReentrant, _status will be _NOT_ENTERED require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; } function _nonReentrantAfter() private { // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } /** * @dev Returns true if the reentrancy guard is currently set to "entered", which indicates there is a * `nonReentrant` function in the call stack. */ function _reentrancyGuardEntered() internal view returns (bool) { return _status == _ENTERED; } } // File @openzeppelin/contracts/utils/structs/[email protected] // Original license: SPDX_License_Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (utils/structs/EnumerableSet.sol) // This file was procedurally generated from scripts/generate/templates/EnumerableSet.js. pragma solidity ^0.8.0; /** * @dev Library for managing * https://en.wikipedia.org/wiki/Set_(abstract_data_type)[sets] of primitive * types. * * Sets have the following properties: * * - Elements are added, removed, and checked for existence in constant time * (O(1)). * - Elements are enumerated in O(n). No guarantees are made on the ordering. * * ```solidity * contract Example { * // Add the library methods * using EnumerableSet for EnumerableSet.AddressSet; * * // Declare a set state variable * EnumerableSet.AddressSet private mySet; * } * ``` * * As of v3.3.0, sets of type `bytes32` (`Bytes32Set`), `address` (`AddressSet`) * and `uint256` (`UintSet`) are supported. * * [WARNING] * ==== * Trying to delete such a structure from storage will likely result in data corruption, rendering the structure * unusable. * See https://github.com/ethereum/solidity/pull/11843[ethereum/solidity#11843] for more info. * * In order to clean an EnumerableSet, you can either remove all elements one by one or create a fresh instance using an * array of EnumerableSet. * ==== */ library EnumerableSet { // To implement this library for multiple types with as little code // repetition as possible, we write it in terms of a generic Set type with // bytes32 values. // The Set implementation uses private functions, and user-facing // implementations (such as AddressSet) are just wrappers around the // underlying Set. // This means that we can only create new EnumerableSets for types that fit // in bytes32. struct Set { // Storage of set values bytes32[] _values; // Position of the value in the `values` array, plus 1 because index 0 // means a value is not in the set. mapping(bytes32 => uint256) _indexes; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function _add(Set storage set, bytes32 value) private returns (bool) { if (!_contains(set, value)) { set._values.push(value); // The value is stored at length-1, but we add 1 to all indexes // and use 0 as a sentinel value set._indexes[value] = set._values.length; return true; } else { return false; } } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function _remove(Set storage set, bytes32 value) private returns (bool) { // We read and store the value's index to prevent multiple reads from the same storage slot uint256 valueIndex = set._indexes[value]; if (valueIndex != 0) { // Equivalent to contains(set, value) // To delete an element from the _values array in O(1), we swap the element to delete with the last one in // the array, and then remove the last element (sometimes called as 'swap and pop'). // This modifies the order of the array, as noted in {at}. uint256 toDeleteIndex = valueIndex - 1; uint256 lastIndex = set._values.length - 1; if (lastIndex != toDeleteIndex) { bytes32 lastValue = set._values[lastIndex]; // Move the last value to the index where the value to delete is set._values[toDeleteIndex] = lastValue; // Update the index for the moved value set._indexes[lastValue] = valueIndex; // Replace lastValue's index to valueIndex } // Delete the slot where the moved value was stored set._values.pop(); // Delete the index for the deleted slot delete set._indexes[value]; return true; } else { return false; } } /** * @dev Returns true if the value is in the set. O(1). */ function _contains(Set storage set, bytes32 value) private view returns (bool) { return set._indexes[value] != 0; } /** * @dev Returns the number of values on the set. O(1). */ function _length(Set storage set) private view returns (uint256) { return set._values.length; } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function _at(Set storage set, uint256 index) private view returns (bytes32) { return set._values[index]; } /** * @dev Return the entire set in an array * * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that * this function has an unbounded cost, and using it as part of a state-changing function may render the function * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block. */ function _values(Set storage set) private view returns (bytes32[] memory) { return set._values; } // Bytes32Set struct Bytes32Set { Set _inner; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function add(Bytes32Set storage set, bytes32 value) internal returns (bool) { return _add(set._inner, value); } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function remove(Bytes32Set storage set, bytes32 value) internal returns (bool) { return _remove(set._inner, value); } /** * @dev Returns true if the value is in the set. O(1). */ function contains(Bytes32Set storage set, bytes32 value) internal view returns (bool) { return _contains(set._inner, value); } /** * @dev Returns the number of values in the set. O(1). */ function length(Bytes32Set storage set) internal view returns (uint256) { return _length(set._inner); } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function at(Bytes32Set storage set, uint256 index) internal view returns (bytes32) { return _at(set._inner, index); } /** * @dev Return the entire set in an array * * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that * this function has an unbounded cost, and using it as part of a state-changing function may render the function * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block. */ function values(Bytes32Set storage set) internal view returns (bytes32[] memory) { bytes32[] memory store = _values(set._inner); bytes32[] memory result; /// @solidity memory-safe-assembly assembly { result := store } return result; } // AddressSet struct AddressSet { Set _inner; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function add(AddressSet storage set, address value) internal returns (bool) { return _add(set._inner, bytes32(uint256(uint160(value)))); } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function remove(AddressSet storage set, address value) internal returns (bool) { return _remove(set._inner, bytes32(uint256(uint160(value)))); } /** * @dev Returns true if the value is in the set. O(1). */ function contains(AddressSet storage set, address value) internal view returns (bool) { return _contains(set._inner, bytes32(uint256(uint160(value)))); } /** * @dev Returns the number of values in the set. O(1). */ function length(AddressSet storage set) internal view returns (uint256) { return _length(set._inner); } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function at(AddressSet storage set, uint256 index) internal view returns (address) { return address(uint160(uint256(_at(set._inner, index)))); } /** * @dev Return the entire set in an array * * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that * this function has an unbounded cost, and using it as part of a state-changing function may render the function * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block. */ function values(AddressSet storage set) internal view returns (address[] memory) { bytes32[] memory store = _values(set._inner); address[] memory result; /// @solidity memory-safe-assembly assembly { result := store } return result; } // UintSet struct UintSet { Set _inner; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function add(UintSet storage set, uint256 value) internal returns (bool) { return _add(set._inner, bytes32(value)); } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function remove(UintSet storage set, uint256 value) internal returns (bool) { return _remove(set._inner, bytes32(value)); } /** * @dev Returns true if the value is in the set. O(1). */ function contains(UintSet storage set, uint256 value) internal view returns (bool) { return _contains(set._inner, bytes32(value)); } /** * @dev Returns the number of values in the set. O(1). */ function length(UintSet storage set) internal view returns (uint256) { return _length(set._inner); } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function at(UintSet storage set, uint256 index) internal view returns (uint256) { return uint256(_at(set._inner, index)); } /** * @dev Return the entire set in an array * * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that * this function has an unbounded cost, and using it as part of a state-changing function may render the function * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block. */ function values(UintSet storage set) internal view returns (uint256[] memory) { bytes32[] memory store = _values(set._inner); uint256[] memory result; /// @solidity memory-safe-assembly assembly { result := store } return result; } } // File contracts/UNIPORT20Bridge.sol // Original license: SPDX_License_Identifier: MIT pragma solidity ^0.8.0; contract UNIPORT20Bridge is Ownable, ReentrancyGuard { using EnumerableSet for EnumerableSet.AddressSet; bytes32 private constant DOMAIN_NAME = keccak256("UniPort"); bytes32 public constant DOMAIN_TYPEHASH = keccak256( "EIP712Domain(string name,string version,uint256 chainId,address verifyingContract)" ); bytes32 public constant MINT_TYPEHASH = keccak256( abi.encodePacked( "BridgeMint(address token,address to,uint256 amount,uint256 srcChainId,string txid)" ) ); // bytes32 public DOMAIN_SEPARATOR; struct Parameters { string name; string symbol; uint8 decimals; } bool private entered; Parameters public parameters; address public feeManager; uint256 public threshold; // dstChainId fee mapping(uint256 => uint256) public chainFees; // dstChainId mapping(uint256 => bool) public supportChains; EnumerableSet.AddressSet private signersSet; mapping(bytes32 => bool) public used; // symbol => contract mapping(string => address) public symbolContracts; event FeeManagerChanged( address indexed oldFeeManger, address indexed newFeeManger ); event ThresholdChanged( uint indexed oldThreshold, uint indexed newThreshold ); event FeeChanged( uint256 indexed chainId, uint256 indexed oldFee, uint256 indexed newFee ); event SupportChainsChanged(uint256 indexed chainId, bool indexed supply); event UNIOPORT20Created( address indexed sender, address indexed uniport20, string symbol ); event BridgeMinted( address indexed token, address indexed to, uint256 indexed amount, uint256 srcChainId, string txid ); event BridgeBurned( address indexed token, address indexed from, uint256 indexed amount, uint256 chainId, uint256 fee, string receiver ); event SignerAdded(address indexed sender, address indexed account); event SignerRemoved(address indexed sender, address indexed account); modifier onlyFeeManager() { require(msg.sender == feeManager, "invalid fee manger"); _; } constructor(address[] memory _signers, address _feeManager) { require(_signers.length > 0, "zero signers length"); for (uint256 i = 0; i < _signers.length; i++) { address _addr = _signers[i]; require(_addr != address(0), "zero address"); require(signersSet.add(_addr), "duplicated signer"); } feeManager = _feeManager; emit FeeManagerChanged(address(0), _feeManager); threshold = 1; } function createUNIPORT20( string memory name, string memory symbol, uint8 decimals ) external onlyOwner returns (address token) { parameters = Parameters({ name: name, symbol: symbol, decimals: decimals }); token = address( new UNIPORT20{salt: keccak256(abi.encode(name, symbol, decimals))}() ); delete parameters; symbolContracts[symbol] = token; emit UNIOPORT20Created(msg.sender, token, symbol); } function mint( address token, address to, uint256 amount, uint256 srcChainId, string memory txid, bytes memory signatures ) external nonReentrant { uint256 _threshold = threshold; require(_threshold > 0, "invalid threshold"); require(signatures.length >= _threshold * 65, "invalid signature"); bytes32 digest = buildMintSeparator( token, to, amount, srcChainId, txid ); require(!used[digest], "digest reuse"); used[digest] = true; address[] memory _signers = new address[](_threshold); uint8 v; bytes32 r; bytes32 s; for (uint256 i = 0; i < _threshold; i++) { (v, r, s) = signatureSplit(signatures, i); address signer = ecrecover(digest, v, r, s); require(isSigner(signer), "invalid signer"); for (uint256 j = 0; j < i; j++) { require(_signers[j] != signer, "duplicated"); } _signers[i] = signer; if (i + 1 > _threshold) { break; } } UNIPORT20(token).mint(to, amount); emit BridgeMinted(token, to, amount, srcChainId, txid); } function signatureSplit( bytes memory signatures, uint256 index ) internal pure returns (uint8 v, bytes32 r, bytes32 s) { // solhint-disable-next-line no-inline-assembly assembly { let signaturePos := mul(0x41, index) r := mload(add(signatures, add(signaturePos, 0x20))) s := mload(add(signatures, add(signaturePos, 0x40))) v := and(mload(add(signatures, add(signaturePos, 0x41))), 0xff) } } function burn( address token, uint256 amount, uint256 dstChainId, string memory receiver ) external payable nonReentrant { require(msg.value >= chainFees[dstChainId], "invalid fee"); require(supportChains[dstChainId], "invalid dst chain"); UNIPORT20(token).transferFrom(msg.sender, address(this), amount); UNIPORT20(token).burn(amount); emit BridgeBurned( token, msg.sender, amount, dstChainId, chainFees[dstChainId], receiver ); } function withdraw(address to) external onlyOwner { uint256 balance = address(this).balance; payable(to).transfer(balance); } function setFeeManager(address _feeManager) external onlyOwner { emit FeeManagerChanged(feeManager, _feeManager); feeManager = _feeManager; } function setThreshold(uint256 _threshold) external onlyOwner { emit ThresholdChanged(threshold, _threshold); threshold = _threshold; } function setFee(uint256 _chainId, uint256 _fee) public onlyFeeManager { require(supportChains[_chainId], "invalid dst chain"); emit FeeChanged(_chainId, chainFees[_chainId], _fee); chainFees[_chainId] = _fee; } function setFees(uint256[] calldata _chainIds, uint256[] calldata _fees) external onlyFeeManager { require(_chainIds.length == _fees.length, "invalid length"); for (uint256 i = 0; i < _chainIds.length; i++) { setFee(_chainIds[i], _fees[i]); } } function setSupportChains( uint256 _chainId, bool _supply ) external onlyFeeManager { emit SupportChainsChanged(_chainId, _supply); supportChains[_chainId] = _supply; } function addSigner(address account) external onlyOwner { require(signersSet.add(account), "already exists"); emit SignerAdded(msg.sender, account); } function removeSigner(address account) external onlyOwner { require(signersSet.remove(account), "non-existent"); emit SignerRemoved(msg.sender, account); } function DOMAIN_SEPARATOR() public view returns (bytes32) { uint256 chainId; assembly { chainId := chainid() } return keccak256( abi.encode( DOMAIN_TYPEHASH, DOMAIN_NAME, keccak256(bytes("1")), chainId, address(this) ) ); } function buildMintSeparator( address token, address to, uint256 amount, uint256 scrChainId, string memory txid ) public view returns (bytes32) { uint256 chainId; assembly { chainId := chainid() } return keccak256( abi.encodePacked( "\x19\x01", keccak256( abi.encode( DOMAIN_TYPEHASH, DOMAIN_NAME, keccak256(bytes("1")), chainId, address(this) ) ), keccak256( abi.encode( MINT_TYPEHASH, token, to, amount, scrChainId, keccak256(bytes(txid)) ) ) ) ); } function signers() external view returns (address[] memory) { return signersSet.values(); } function isSigner(address addr) public view returns (bool) { return signersSet.contains(addr); } function signerCount() external view returns (uint256) { return signersSet.length(); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address[]","name":"_signers","type":"address[]"},{"internalType":"address","name":"_feeManager","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"token","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"uint256","name":"amount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"chainId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"fee","type":"uint256"},{"indexed":false,"internalType":"string","name":"receiver","type":"string"}],"name":"BridgeBurned","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"token","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"amount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"srcChainId","type":"uint256"},{"indexed":false,"internalType":"string","name":"txid","type":"string"}],"name":"BridgeMinted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"chainId","type":"uint256"},{"indexed":true,"internalType":"uint256","name":"oldFee","type":"uint256"},{"indexed":true,"internalType":"uint256","name":"newFee","type":"uint256"}],"name":"FeeChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"oldFeeManger","type":"address"},{"indexed":true,"internalType":"address","name":"newFeeManger","type":"address"}],"name":"FeeManagerChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"sender","type":"address"},{"indexed":true,"internalType":"address","name":"account","type":"address"}],"name":"SignerAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"sender","type":"address"},{"indexed":true,"internalType":"address","name":"account","type":"address"}],"name":"SignerRemoved","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"chainId","type":"uint256"},{"indexed":true,"internalType":"bool","name":"supply","type":"bool"}],"name":"SupportChainsChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"oldThreshold","type":"uint256"},{"indexed":true,"internalType":"uint256","name":"newThreshold","type":"uint256"}],"name":"ThresholdChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"sender","type":"address"},{"indexed":true,"internalType":"address","name":"uniport20","type":"address"},{"indexed":false,"internalType":"string","name":"symbol","type":"string"}],"name":"UNIOPORT20Created","type":"event"},{"inputs":[],"name":"DOMAIN_SEPARATOR","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DOMAIN_TYPEHASH","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MINT_TYPEHASH","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"addSigner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"token","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"uint256","name":"scrChainId","type":"uint256"},{"internalType":"string","name":"txid","type":"string"}],"name":"buildMintSeparator","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"token","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"uint256","name":"dstChainId","type":"uint256"},{"internalType":"string","name":"receiver","type":"string"}],"name":"burn","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"chainFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"},{"internalType":"uint8","name":"decimals","type":"uint8"}],"name":"createUNIPORT20","outputs":[{"internalType":"address","name":"token","type":"address"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"feeManager","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"isSigner","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"token","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"uint256","name":"srcChainId","type":"uint256"},{"internalType":"string","name":"txid","type":"string"},{"internalType":"bytes","name":"signatures","type":"bytes"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"parameters","outputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"},{"internalType":"uint8","name":"decimals","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"removeSigner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_chainId","type":"uint256"},{"internalType":"uint256","name":"_fee","type":"uint256"}],"name":"setFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_feeManager","type":"address"}],"name":"setFeeManager","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"_chainIds","type":"uint256[]"},{"internalType":"uint256[]","name":"_fees","type":"uint256[]"}],"name":"setFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_chainId","type":"uint256"},{"internalType":"bool","name":"_supply","type":"bool"}],"name":"setSupportChains","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_threshold","type":"uint256"}],"name":"setThreshold","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"signerCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"signers","outputs":[{"internalType":"address[]","name":"","type":"address[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"supportChains","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"","type":"string"}],"name":"symbolContracts","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"threshold","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"name":"used","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Deployed Bytecode
0x608060405260043610620001db5760003560e01c80637ca548c611620000ff578063d0fb02031162000095578063eb12d61e116200006c578063eb12d61e14620006ab578063f2fde38b14620006d0578063f75ba66114620006f5578063f76fc35e146200071a57600080fd5b8063d0fb02031462000632578063dacd25f51462000661578063e59e8e5e146200068657600080fd5b80638da5cb5b11620000d65780638da5cb5b1462000578578063960bfe0414620005a5578063b07c411f14620005ca578063b443384e14620005fe57600080fd5b80637ca548c614620005015780637df73e27146200051957806389035730146200054f57600080fd5b806342cde4e811620001755780634def1b39116200014c5780634def1b39146200047a57806351cff8d9146200049f57806352f7c98814620004c4578063715018a614620004e957600080fd5b806342cde4e8146200041657806346f0975a146200042e578063472d35b9146200045557600080fd5b8063202f4a5311620001b6578063202f4a53146200029a57806320606b7014620002da5780633644e5151462000310578063375fede514620003f157600080fd5b80630d3d9ed514620001e05780630e316ab7146200025c5780631d4ac1761462000283575b600080fd5b348015620001ed57600080fd5b5062000232620001ff36600462002191565b8051602081830181018051600d8252928201919093012091525473ffffffffffffffffffffffffffffffffffffffff1681565b60405173ffffffffffffffffffffffffffffffffffffffff90911681526020015b60405180910390f35b3480156200026957600080fd5b50620002816200027b366004620021fc565b62000732565b005b62000281620002943660046200221a565b620007fb565b348015620002a757600080fd5b50620002cb620002b936600462002281565b60086020526000908152604090205481565b60405190815260200162000253565b348015620002e757600080fd5b50620002cb7f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f81565b3480156200031d57600080fd5b50604080518082018252600181527f310000000000000000000000000000000000000000000000000000000000000060209182015281517f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f818301527f0844e63a685bc6bba01623ec94ac3783654fe504aef23f59e811b9b32caed2e0818401527fc89efdaa54c0f20c7adf612882df0950f5a951637e0307cdcb4c672f298b8bc660608201524660808201523060a0808301919091528351808303909101815260c09091019092528151910120620002cb565b348015620003fe57600080fd5b506200028162000410366004620022ea565b62000aab565b3480156200042357600080fd5b50620002cb60075481565b3480156200043b57600080fd5b506200044662000c03565b6040516200025391906200235d565b3480156200046257600080fd5b506200028162000474366004620021fc565b62000c16565b3480156200048757600080fd5b50620002cb62000499366004620023b9565b62000cae565b348015620004ac57600080fd5b5062000281620004be366004620021fc565b62000efc565b348015620004d157600080fd5b5062000281620004e336600462002433565b62000f51565b348015620004f657600080fd5b50620002816200109a565b3480156200050e57600080fd5b50620002cb620010b2565b3480156200052657600080fd5b506200053e62000538366004620021fc565b620010c0565b604051901515815260200162000253565b3480156200055c57600080fd5b5062000567620010d5565b6040516200025393929190620024c8565b3480156200058557600080fd5b5060005473ffffffffffffffffffffffffffffffffffffffff1662000232565b348015620005b257600080fd5b5062000281620005c436600462002281565b6200120e565b348015620005d757600080fd5b506200053e620005e936600462002281565b600c6020526000908152604090205460ff1681565b3480156200060b57600080fd5b506200053e6200061d36600462002281565b60096020526000908152604090205460ff1681565b3480156200063f57600080fd5b50600654620002329073ffffffffffffffffffffffffffffffffffffffff1681565b3480156200066e57600080fd5b50620002816200068036600462002514565b6200124c565b3480156200069357600080fd5b5062000232620006a536600462002547565b6200133c565b348015620006b857600080fd5b5062000281620006ca366004620021fc565b62001519565b348015620006dd57600080fd5b5062000281620006ef366004620021fc565b620015de565b3480156200070257600080fd5b506200028162000714366004620025cd565b6200169b565b3480156200072757600080fd5b50620002cb62001bef565b6200073c62001c88565b62000749600a8262001d0b565b620007b5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600c60248201527f6e6f6e2d6578697374656e74000000000000000000000000000000000000000060448201526064015b60405180910390fd5b60405173ffffffffffffffffffffffffffffffffffffffff82169033907f98d1ebbe00ae92a5de96a0f49742a8afa89f42363592bc2e7cfaaed68b45e7a690600090a350565b6200080562001d36565b6000828152600860205260409020543410156200087f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600b60248201527f696e76616c6964206665650000000000000000000000000000000000000000006044820152606401620007ac565b60008281526009602052604090205460ff16620008f9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601160248201527f696e76616c69642064737420636861696e0000000000000000000000000000006044820152606401620007ac565b6040517f23b872dd0000000000000000000000000000000000000000000000000000000081523360048201523060248201526044810184905273ffffffffffffffffffffffffffffffffffffffff8516906323b872dd906064016020604051808303816000875af115801562000973573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000999919062002684565b506040517f42966c680000000000000000000000000000000000000000000000000000000081526004810184905273ffffffffffffffffffffffffffffffffffffffff8516906342966c6890602401600060405180830381600087803b15801562000a0357600080fd5b505af115801562000a18573d6000803e3d6000fd5b50505050823373ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fb4e750eabfb33f34d3cacb0610ff3c4e5c8f0ddce3c9c198afe143643b33facb8560086000888152602001908152602001600020548660405162000a9393929190620026a4565b60405180910390a462000aa560018055565b50505050565b60065473ffffffffffffffffffffffffffffffffffffffff16331462000b2e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601260248201527f696e76616c696420666565206d616e67657200000000000000000000000000006044820152606401620007ac565b82811462000b99576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600e60248201527f696e76616c6964206c656e6774680000000000000000000000000000000000006044820152606401620007ac565b60005b8381101562000bfc5762000be785858381811062000bbe5762000bbe620026ce565b9050602002013584848481811062000bda5762000bda620026ce565b9050602002013562000f51565b8062000bf3816200272c565b91505062000b9c565b5050505050565b606062000c11600a62001dab565b905090565b62000c2062001c88565b60065460405173ffffffffffffffffffffffffffffffffffffffff8084169216907facbd074db1a997c1632eb3d55a4c9813e0883267f14740568d0535dc23077ce490600090a3600680547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b604080518082018252600181527f310000000000000000000000000000000000000000000000000000000000000060209182015281517f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f918101919091527f0844e63a685bc6bba01623ec94ac3783654fe504aef23f59e811b9b32caed2e0918101919091527fc89efdaa54c0f20c7adf612882df0950f5a951637e0307cdcb4c672f298b8bc6606082015246608082018190523060a083015260009160c0016040516020818303038152906040528051906020012060405160200162000e04907f4272696467654d696e74286164647265737320746f6b656e2c6164647265737381527f20746f2c75696e7432353620616d6f756e742c75696e7432353620737263436860208201527f61696e49642c737472696e672074786964290000000000000000000000000000604082015260520190565b604080518083037fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe001815282825280516020918201208751888301209184015273ffffffffffffffffffffffffffffffffffffffff808c169284019290925290891660608301526080820188905260a0820187905260c082015260e0016040516020818303038152906040528051906020012060405160200162000eda9291907f190100000000000000000000000000000000000000000000000000000000000081526002810192909252602282015260420190565b6040516020818303038152906040528051906020012091505095945050505050565b62000f0662001c88565b604051479073ffffffffffffffffffffffffffffffffffffffff83169082156108fc029083906000818181858888f1935050505015801562000f4c573d6000803e3d6000fd5b505050565b60065473ffffffffffffffffffffffffffffffffffffffff16331462000fd4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601260248201527f696e76616c696420666565206d616e67657200000000000000000000000000006044820152606401620007ac565b60008281526009602052604090205460ff166200104e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601160248201527f696e76616c69642064737420636861696e0000000000000000000000000000006044820152606401620007ac565b600082815260086020526040808220549051839285917f91c52d7e3437bc917e155cb9a0148c1ec719a07f87330f08c8522cfb7f99bae69190a460009182526008602052604090912055565b620010a462001c88565b620010b0600062001dba565b565b600062000c11600a62001e2f565b6000620010cf600a8362001e3a565b92915050565b600380548190620010e69062002767565b80601f0160208091040260200160405190810160405280929190818152602001828054620011149062002767565b8015620011655780601f10620011395761010080835404028352916020019162001165565b820191906000526020600020905b8154815290600101906020018083116200114757829003601f168201915b5050505050908060010180546200117c9062002767565b80601f0160208091040260200160405190810160405280929190818152602001828054620011aa9062002767565b8015620011fb5780601f10620011cf57610100808354040283529160200191620011fb565b820191906000526020600020905b815481529060010190602001808311620011dd57829003601f168201915b5050506002909301549192505060ff1683565b6200121862001c88565b6007546040518291907f3164947cf0f49f08dd0cd80e671535b1e11590d347c55dcaa97ba3c24a96b33a90600090a3600755565b60065473ffffffffffffffffffffffffffffffffffffffff163314620012cf576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601260248201527f696e76616c696420666565206d616e67657200000000000000000000000000006044820152606401620007ac565b6040518115159083907f6041053fe6df4dea2d2927d089a12266192ea39eba120d0475f98255b84caf1490600090a360009182526009602052604090912080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016911515919091179055565b60006200134862001c88565b604080516060810182528581526020810185905260ff84169181019190915260038062001376878262002806565b50602082015160018201906200138d908262002806565b5060409182015160029190910180547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001660ff90921691909117905551620013de90859085908590602001620024c8565b60405160208183030381529060405280519060200120604051620014029062002042565b8190604051809103906000f590508015801562001423573d6000803e3d6000fd5b5090506003600062001436828262002050565b6200144660018301600062002050565b5060020180547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001690556040518190600d90620014859086906200292d565b908152604051908190036020018120805473ffffffffffffffffffffffffffffffffffffffff9384167fffffffffffffffffffffffff00000000000000000000000000000000000000009091161790559082169033907f141825212b3ec30910865df0e1c255ebdd2fde34fe5957f08e2a5d1e031ae5f0906200150a9087906200294b565b60405180910390a39392505050565b6200152362001c88565b62001530600a8262001e6a565b62001598576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600e60248201527f616c7265616479206578697374730000000000000000000000000000000000006044820152606401620007ac565b60405173ffffffffffffffffffffffffffffffffffffffff82169033907f12146497b3b826918ec47f0cac7272a09ed06b30c16c030e99ec48ff5dd60b4790600090a350565b620015e862001c88565b73ffffffffffffffffffffffffffffffffffffffff81166200168d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401620007ac565b620016988162001dba565b50565b620016a562001d36565b6007548062001711576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601160248201527f696e76616c6964207468726573686f6c640000000000000000000000000000006044820152606401620007ac565b6200171e81604162002960565b825110156200178a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601160248201527f696e76616c6964207369676e61747572650000000000000000000000000000006044820152606401620007ac565b60006200179b888888888862000cae565b6000818152600c602052604090205490915060ff161562001819576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600c60248201527f64696765737420726575736500000000000000000000000000000000000000006044820152606401620007ac565b6000818152600c6020526040812080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001660011790558267ffffffffffffffff8111156200186c576200186c620020a4565b60405190808252806020026020018201604052801562001896578160200160208202803683370190505b50905060008080805b8681101562001ae257602060418083028a01918201516040830151929091015160ff1691604080516000808252602082018084528c905260ff861692820192909252606081018490526080810183905293975091955093509060019060a0016020604051602081039080840390855afa15801562001921573d6000803e3d6000fd5b5050506020604051035190506200193881620010c0565b620019a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600e60248201527f696e76616c6964207369676e65720000000000000000000000000000000000006044820152606401620007ac565b60005b8281101562001a74578173ffffffffffffffffffffffffffffffffffffffff16878281518110620019d857620019d8620026ce565b602002602001015173ffffffffffffffffffffffffffffffffffffffff160362001a5f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600a60248201527f6475706c696361746564000000000000000000000000000000000000000000006044820152606401620007ac565b8062001a6b816200272c565b915050620019a3565b508086838151811062001a8b5762001a8b620026ce565b73ffffffffffffffffffffffffffffffffffffffff909216602092830291909101909101528762001abe8360016200297a565b111562001acc575062001ae2565b508062001ad9816200272c565b9150506200189f565b506040517f40c10f1900000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff8c81166004830152602482018c90528d16906340c10f1990604401600060405180830381600087803b15801562001b5457600080fd5b505af115801562001b69573d6000803e3d6000fd5b50505050898b73ffffffffffffffffffffffffffffffffffffffff168d73ffffffffffffffffffffffffffffffffffffffff167f4b1c977610d2b18d5a8ae68467e64dddc69eea90cfdd2a2eab4064bf335e00ed8c8c60405162001bcf92919062002990565b60405180910390a450505050505062001be760018055565b505050505050565b60405160200162001c6f907f4272696467654d696e74286164647265737320746f6b656e2c6164647265737381527f20746f2c75696e7432353620616d6f756e742c75696e7432353620737263436860208201527f61696e49642c737472696e672074786964290000000000000000000000000000604082015260520190565b6040516020818303038152906040528051906020012081565b60005473ffffffffffffffffffffffffffffffffffffffff163314620010b0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401620007ac565b600062001d2f8373ffffffffffffffffffffffffffffffffffffffff841662001e8e565b9392505050565b60026001540362001da4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401620007ac565b6002600155565b6060600062001d2f8362001f92565b6000805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6000620010cf825490565b73ffffffffffffffffffffffffffffffffffffffff81166000908152600183016020526040812054151562001d2f565b600062001d2f8373ffffffffffffffffffffffffffffffffffffffff841662001ff0565b6000818152600183016020526040812054801562001f8757600062001eb5600183620029ab565b855490915060009062001ecb90600190620029ab565b905081811462001f3757600086600001828154811062001eef5762001eef620026ce565b906000526020600020015490508087600001848154811062001f155762001f15620026ce565b6000918252602080832090910192909255918252600188019052604090208390555b855486908062001f4b5762001f4b620029c1565b600190038181906000526020600020016000905590558560010160008681526020019081526020016000206000905560019350505050620010cf565b6000915050620010cf565b60608160000180548060200260200160405190810160405280929190818152602001828054801562001fe457602002820191906000526020600020905b81548152602001906001019080831162001fcf575b50505050509050919050565b60008181526001830160205260408120546200203957508154600181810184556000848152602080822090930184905584548482528286019093526040902091909155620010cf565b506000620010cf565b61130480620029f183390190565b5080546200205e9062002767565b6000825580601f106200206f575050565b601f0160209004906000526020600020908101906200169891905b80821115620020a057600081556001016200208a565b5090565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600067ffffffffffffffff80841115620020f157620020f1620020a4565b604051601f85017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0908116603f011681019082821181831017156200213a576200213a620020a4565b816040528093508581528686860111156200215457600080fd5b858560208301376000602087830101525050509392505050565b600082601f8301126200218057600080fd5b62001d2f83833560208501620020d3565b600060208284031215620021a457600080fd5b813567ffffffffffffffff811115620021bc57600080fd5b620021ca848285016200216e565b949350505050565b803573ffffffffffffffffffffffffffffffffffffffff81168114620021f757600080fd5b919050565b6000602082840312156200220f57600080fd5b62001d2f82620021d2565b600080600080608085870312156200223157600080fd5b6200223c85620021d2565b93506020850135925060408501359150606085013567ffffffffffffffff8111156200226757600080fd5b62002275878288016200216e565b91505092959194509250565b6000602082840312156200229457600080fd5b5035919050565b60008083601f840112620022ae57600080fd5b50813567ffffffffffffffff811115620022c757600080fd5b6020830191508360208260051b8501011115620022e357600080fd5b9250929050565b600080600080604085870312156200230157600080fd5b843567ffffffffffffffff808211156200231a57600080fd5b62002328888389016200229b565b909650945060208701359150808211156200234257600080fd5b5062002351878288016200229b565b95989497509550505050565b6020808252825182820181905260009190848201906040850190845b81811015620023ad57835173ffffffffffffffffffffffffffffffffffffffff168352928401929184019160010162002379565b50909695505050505050565b600080600080600060a08688031215620023d257600080fd5b620023dd86620021d2565b9450620023ed60208701620021d2565b93506040860135925060608601359150608086013567ffffffffffffffff8111156200241857600080fd5b62002426888289016200216e565b9150509295509295909350565b600080604083850312156200244757600080fd5b50508035926020909101359150565b60005b838110156200247357818101518382015260200162002459565b50506000910152565b600081518084526200249681602086016020860162002456565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169290920160200192915050565b606081526000620024dd60608301866200247c565b8281036020840152620024f181866200247c565b91505060ff83166040830152949350505050565b80151581146200169857600080fd5b600080604083850312156200252857600080fd5b8235915060208301356200253c8162002505565b809150509250929050565b6000806000606084860312156200255d57600080fd5b833567ffffffffffffffff808211156200257657600080fd5b62002584878388016200216e565b945060208601359150808211156200259b57600080fd5b50620025aa868287016200216e565b925050604084013560ff81168114620025c257600080fd5b809150509250925092565b60008060008060008060c08789031215620025e757600080fd5b620025f287620021d2565b95506200260260208801620021d2565b94506040870135935060608701359250608087013567ffffffffffffffff808211156200262e57600080fd5b6200263c8a838b016200216e565b935060a08901359150808211156200265357600080fd5b508701601f810189136200266657600080fd5b6200267789823560208401620020d3565b9150509295509295509295565b6000602082840312156200269757600080fd5b815162001d2f8162002505565b838152826020820152606060408201526000620026c560608301846200247c565b95945050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203620027605762002760620026fd565b5060010190565b600181811c908216806200277c57607f821691505b602082108103620027b6577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b601f82111562000f4c57600081815260208120601f850160051c81016020861015620027e55750805b601f850160051c820191505b8181101562001be757828155600101620027f1565b815167ffffffffffffffff811115620028235762002823620020a4565b6200283b8162002834845462002767565b84620027bc565b602080601f8311600181146200289157600084156200285a5750858301515b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff600386901b1c1916600185901b17855562001be7565b6000858152602081207fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe08616915b82811015620028e057888601518255948401946001909101908401620028bf565b50858210156200291d57878501517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff600388901b60f8161c191681555b5050505050600190811b01905550565b600082516200294181846020870162002456565b9190910192915050565b60208152600062001d2f60208301846200247c565b8082028115828204841417620010cf57620010cf620026fd565b80820180821115620010cf57620010cf620026fd565b828152604060208201526000620021ca60408301846200247c565b81810381811115620010cf57620010cf620026fd565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fdfe60c06040523480156200001157600080fd5b50336001600160a01b031663890357306040518163ffffffff1660e01b8152600401600060405180830381865afa15801562000051573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526200007b919081019062000229565b60ff811660805260008060016200009385826200033d565b50620000a2905084826200033d565b50503360a052505060405146907f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f90620000df9060009062000409565b60408051918290038220828201825260018352603160f81b6020938401528151928301939093528101919091527fc89efdaa54c0f20c7adf612882df0950f5a951637e0307cdcb4c672f298b8bc66060820152608081018290523060a082015260c00160408051601f1981840301815291905280516020909101206006555062000487565b634e487b7160e01b600052604160045260246000fd5b600082601f8301126200018c57600080fd5b81516001600160401b0380821115620001a957620001a962000164565b604051601f8301601f19908116603f01168101908282118183101715620001d457620001d462000164565b81604052838152602092508683858801011115620001f157600080fd5b600091505b83821015620002155785820183015181830184015290820190620001f6565b600093810190920192909252949350505050565b6000806000606084860312156200023f57600080fd5b83516001600160401b03808211156200025757600080fd5b62000265878388016200017a565b945060208601519150808211156200027c57600080fd5b506200028b868287016200017a565b925050604084015160ff81168114620002a357600080fd5b809150509250925092565b600181811c90821680620002c357607f821691505b602082108103620002e457634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200033857600081815260208120601f850160051c81016020861015620003135750805b601f850160051c820191505b8181101562000334578281556001016200031f565b5050505b505050565b81516001600160401b0381111562000359576200035962000164565b62000371816200036a8454620002ae565b84620002ea565b602080601f831160018114620003a95760008415620003905750858301515b600019600386901b1c1916600185901b17855562000334565b600085815260208120601f198616915b82811015620003da57888601518255948401946001909101908401620003b9565b5085821015620003f95787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b60008083546200041981620002ae565b600182811680156200043457600181146200044a576200047b565b60ff19841687528215158302870194506200047b565b8760005260208060002060005b85811015620004725781548a82015290840190820162000457565b50505082870194505b50929695505050505050565b60805160a051610e49620004bb600039600081816102e10152818161058c015261063e015260006101de0152610e496000f3fe608060405234801561001057600080fd5b506004361061011b5760003560e01c806340c10f19116100b257806395d89b4111610081578063d505accf11610066578063d505accf1461029e578063dd62ed3e146102b1578063e78cea92146102dc57600080fd5b806395d89b4114610283578063a9059cbb1461028b57600080fd5b806340c10f191461021b57806342966c681461023057806370a08231146102435780637ecebe001461026357600080fd5b806323b872dd116100ee57806323b872dd1461019f57806330adf81f146101b2578063313ce567146101d95780633644e5151461021257600080fd5b806306fdde0314610120578063095ea7b31461013e57806318160ddd1461016157806320606b7014610178575b600080fd5b610128610328565b6040516101359190610b8f565b60405180910390f35b61015161014c366004610c24565b6103b6565b6040519015158152602001610135565b61016a60025481565b604051908152602001610135565b61016a7f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f81565b6101516101ad366004610c4e565b610430565b61016a7f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c981565b6102007f000000000000000000000000000000000000000000000000000000000000000081565b60405160ff9091168152602001610135565b61016a60065481565b61022e610229366004610c24565b610574565b005b61022e61023e366004610c8a565b610626565b61016a610251366004610ca3565b60036020526000908152604090205481565b61016a610271366004610ca3565b60056020526000908152604090205481565b6101286106d2565b610151610299366004610c24565b6106df565b61022e6102ac366004610cc5565b610764565b61016a6102bf366004610d38565b600460209081526000928352604080842090915290825290205481565b6103037f000000000000000000000000000000000000000000000000000000000000000081565b60405173ffffffffffffffffffffffffffffffffffffffff9091168152602001610135565b6000805461033590610d6b565b80601f016020809104026020016040519081016040528092919081815260200182805461036190610d6b565b80156103ae5780601f10610383576101008083540402835291602001916103ae565b820191906000526020600020905b81548152906001019060200180831161039157829003601f168201915b505050505081565b33600081815260046020908152604080832073ffffffffffffffffffffffffffffffffffffffff8716808552925280832085905551919290917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259061041e9086815260200190565b60405180910390a35060015b92915050565b73ffffffffffffffffffffffffffffffffffffffff831660009081526004602090815260408083203384529091528120547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146104c4576104928382610ded565b73ffffffffffffffffffffffffffffffffffffffff861660009081526004602090815260408083203384529091529020555b73ffffffffffffffffffffffffffffffffffffffff8516600090815260036020526040812080548592906104f9908490610ded565b909155505073ffffffffffffffffffffffffffffffffffffffff808516600081815260036020526040908190208054870190555190918716907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906105619087815260200190565b60405180910390a3506001949350505050565b3373ffffffffffffffffffffffffffffffffffffffff7f00000000000000000000000000000000000000000000000000000000000000001614610618576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600c60248201527f756e617574686f72697a6564000000000000000000000000000000000000000060448201526064015b60405180910390fd5b6106228282610a88565b5050565b3373ffffffffffffffffffffffffffffffffffffffff7f000000000000000000000000000000000000000000000000000000000000000016146106c5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600c60248201527f756e617574686f72697a65640000000000000000000000000000000000000000604482015260640161060f565b6106cf3382610b01565b50565b6001805461033590610d6b565b33600090815260036020526040812080548391908390610700908490610ded565b909155505073ffffffffffffffffffffffffffffffffffffffff8316600081815260036020526040908190208054850190555133907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9061041e9086815260200190565b428410156107ce576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600760248201527f4558504952454400000000000000000000000000000000000000000000000000604482015260640161060f565b60065473ffffffffffffffffffffffffffffffffffffffff88811660008181526005602090815260408083208054600180820190925582517f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c98186015280840196909652958d166060860152608085018c905260a085019590955260c08085018b90528151808603909101815260e0850182528051908301207f19010000000000000000000000000000000000000000000000000000000000006101008601526101028501969096526101228085019690965280518085039096018652610142840180825286519683019690962095839052610162840180825286905260ff89166101828501526101a284018890526101c28401879052519193926101e2808201937fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe081019281900390910190855afa15801561092f573d6000803e3d6000fd5b50506040517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0015191505073ffffffffffffffffffffffffffffffffffffffff8116158015906109aa57508873ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16145b610a10576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601160248201527f494e56414c49445f5349474e4154555245000000000000000000000000000000604482015260640161060f565b73ffffffffffffffffffffffffffffffffffffffff90811660009081526004602090815260408083208b8516808552908352928190208a905551898152919350918a16917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a350505050505050565b8060026000828254610a9a9190610e00565b909155505073ffffffffffffffffffffffffffffffffffffffff82166000818152600360209081526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91015b60405180910390a35050565b73ffffffffffffffffffffffffffffffffffffffff821660009081526003602052604081208054839290610b36908490610ded565b909155505060028054829003905560405181815260009073ffffffffffffffffffffffffffffffffffffffff8416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90602001610af5565b600060208083528351808285015260005b81811015610bbc57858101830151858201604001528201610ba0565b5060006040828601015260407fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f8301168501019250505092915050565b803573ffffffffffffffffffffffffffffffffffffffff81168114610c1f57600080fd5b919050565b60008060408385031215610c3757600080fd5b610c4083610bfb565b946020939093013593505050565b600080600060608486031215610c6357600080fd5b610c6c84610bfb565b9250610c7a60208501610bfb565b9150604084013590509250925092565b600060208284031215610c9c57600080fd5b5035919050565b600060208284031215610cb557600080fd5b610cbe82610bfb565b9392505050565b600080600080600080600060e0888a031215610ce057600080fd5b610ce988610bfb565b9650610cf760208901610bfb565b95506040880135945060608801359350608088013560ff81168114610d1b57600080fd5b9699959850939692959460a0840135945060c09093013592915050565b60008060408385031215610d4b57600080fd5b610d5483610bfb565b9150610d6260208401610bfb565b90509250929050565b600181811c90821680610d7f57607f821691505b602082108103610db8577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b8181038181111561042a5761042a610dbe565b8082018082111561042a5761042a610dbe56fea2646970667358221220d6745340b24e7bf905a9c300af0a897afcd7dda7229a04c4e4b70c134ca2a07364736f6c63430008130033a2646970667358221220aa85f6073451c711f8778bb32e246549f7be03b90cc4fc77e8360ae18634233864736f6c63430008130033
Deployed Bytecode Sourcemap
24743:9510:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25882:49;;;;;;;;;;-1:-1:-1;25882:49:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1629:42:1;1617:55;;;1599:74;;1587:2;1572:18;25882:49:0;;;;;;;;32137:178;;;;;;;;;;-1:-1:-1;32137:178:0;;;;;:::i;:::-;;:::i;:::-;;30075:613;;;;;;:::i;:::-;;:::i;25634:44::-;;;;;;;;;;-1:-1:-1;25634:44:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;;2945:25:1;;;2933:2;2918:18;25634:44:0;2799:177:1;24926:170:0;;;;;;;;;;;;24977:119;24926:170;;32323:442;;;;;;;;;;-1:-1:-1;32646:10:0;;;;;;;;;;;;;;;;;32531:211;;24977:119;32531:211;;;11709:25:1;24899:20:0;11750:18:1;;;11743:34;32636:21:0;11793:18:1;;;11786:34;32453:9:0;11836:18:1;;;11829:34;32718:4:0;11879:19:1;;;;11872:84;;;;32531:211:0;;;;;;;;;;11681:19:1;;;;32531:211:0;;;32503:254;;;;;32323:442;;31438:289;;;;;;;;;;-1:-1:-1;31438:289:0;;;;;:::i;:::-;;:::i;25575:24::-;;;;;;;;;;;;;;;;33919:105;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;30851:164::-;;;;;;;;;;-1:-1:-1;30851:164:0;;;;;:::i;:::-;;:::i;32773:1138::-;;;;;;;;;;-1:-1:-1;32773:1138:0;;;;;:::i;:::-;;:::i;30696:147::-;;;;;;;;;;-1:-1:-1;30696:147:0;;;;;:::i;:::-;;:::i;31188:242::-;;;;;;;;;;-1:-1:-1;31188:242:0;;;;;:::i;:::-;;:::i;2979:103::-;;;;;;;;;;;;;:::i;34150:100::-;;;;;;;;;;;;;:::i;34032:110::-;;;;;;;;;;-1:-1:-1;34032:110:0;;;;;:::i;:::-;;:::i;:::-;;;6030:14:1;;6023:22;6005:41;;5993:2;5978:18;34032:110:0;5865:187:1;25506:28:0;;;;;;;;;;;;;:::i;:::-;;;;;;;;;:::i;2338:87::-;;;;;;;;;;-1:-1:-1;2384:7:0;2411:6;;;2338:87;;31023:157;;;;;;;;;;-1:-1:-1;31023:157:0;;;;;:::i;:::-;;:::i;25810:36::-;;;;;;;;;;-1:-1:-1;25810:36:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;25704:45;;;;;;;;;;-1:-1:-1;25704:45:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;25541:25;;;;;;;;;;-1:-1:-1;25541:25:0;;;;;;;;31735:214;;;;;;;;;;-1:-1:-1;31735:214:0;;;;;:::i;:::-;;:::i;27659:552::-;;;;;;;;;;-1:-1:-1;27659:552:0;;;;;:::i;:::-;;:::i;31957:172::-;;;;;;;;;;-1:-1:-1;31957:172:0;;;;;:::i;:::-;;:::i;3237:201::-;;;;;;;;;;-1:-1:-1;3237:201:0;;;;;:::i;:::-;;:::i;28219:1342::-;;;;;;;;;;-1:-1:-1;28219:1342:0;;;;;:::i;:::-;;:::i;25103:218::-;;;;;;;;;;;;;:::i;32137:178::-;2224:13;:11;:13::i;:::-;32214:26:::1;:10;32232:7:::0;32214:17:::1;:26::i;:::-;32206:51;;;::::0;::::1;::::0;;9605:2:1;32206:51:0::1;::::0;::::1;9587:21:1::0;9644:2;9624:18;;;9617:30;9683:14;9663:18;;;9656:42;9715:18;;32206:51:0::1;;;;;;;;;32273:34;::::0;::::1;::::0;::::1;::::0;32287:10:::1;::::0;32273:34:::1;::::0;;;::::1;32137:178:::0;:::o;30075:613::-;10285:21;:19;:21::i;:::-;30269::::1;::::0;;;:9:::1;:21;::::0;;;;;30256:9:::1;:34;;30248:58;;;::::0;::::1;::::0;;9946:2:1;30248:58:0::1;::::0;::::1;9928:21:1::0;9985:2;9965:18;;;9958:30;10024:13;10004:18;;;9997:41;10055:18;;30248:58:0::1;9744:335:1::0;30248:58:0::1;30327:25;::::0;;;:13:::1;:25;::::0;;;;;::::1;;30319:55;;;::::0;::::1;::::0;;10286:2:1;30319:55:0::1;::::0;::::1;10268:21:1::0;10325:2;10305:18;;;10298:30;10364:19;10344:18;;;10337:47;10401:18;;30319:55:0::1;10084:341:1::0;30319:55:0::1;30387:64;::::0;;;;30417:10:::1;30387:64;::::0;::::1;10693:34:1::0;30437:4:0::1;10743:18:1::0;;;10736:43;10795:18;;;10788:34;;;30387:29:0::1;::::0;::::1;::::0;::::1;::::0;10605:18:1;;30387:64:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;30462:29:0::1;::::0;;;;::::1;::::0;::::1;2945:25:1::0;;;30462:21:0::1;::::0;::::1;::::0;::::1;::::0;2918:18:1;;30462:29:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;30579:6;30554:10;30507:173;;30534:5;30507:173;;;30600:10;30625:9;:21;30635:10;30625:21;;;;;;;;;;;;30661:8;30507:173;;;;;;;;:::i;:::-;;;;;;;;10329:20:::0;9723:1;10849:22;;10666:213;10329:20;30075:613;;;;:::o;31438:289::-;27104:10;;;;27090;:24;27082:55;;;;;;;12169:2:1;27082:55:0;;;12151:21:1;12208:2;12188:18;;;12181:30;12247:20;12227:18;;;12220:48;12285:18;;27082:55:0;11967:342:1;27082:55:0;31554:32;;::::1;31546:59;;;::::0;::::1;::::0;;12516:2:1;31546:59:0::1;::::0;::::1;12498:21:1::0;12555:2;12535:18;;;12528:30;12594:16;12574:18;;;12567:44;12628:18;;31546:59:0::1;12314:338:1::0;31546:59:0::1;31621:9;31616:104;31636:20:::0;;::::1;31616:104;;;31678:30;31685:9;;31695:1;31685:12;;;;;;;:::i;:::-;;;;;;;31699:5;;31705:1;31699:8;;;;;;;:::i;:::-;;;;;;;31678:6;:30::i;:::-;31658:3:::0;::::1;::::0;::::1;:::i;:::-;;;;31616:104;;;;31438:289:::0;;;;:::o;33919:105::-;33961:16;33997:19;:10;:17;:19::i;:::-;33990:26;;33919:105;:::o;30851:164::-;2224:13;:11;:13::i;:::-;30948:10:::1;::::0;30930:42:::1;::::0;::::1;::::0;;::::1;::::0;30948:10:::1;::::0;30930:42:::1;::::0;30948:10:::1;::::0;30930:42:::1;30983:10;:24:::0;;;::::1;;::::0;;;::::1;::::0;;;::::1;::::0;;30851:164::o;32773:1138::-;33363:10;;;;;;;;;;;;;;;;;33224:259;;24977:119;33224:259;;;11709:25:1;;;;24899:20:0;11750:18:1;;;11743:34;;;;33353:21:0;11793:18:1;;;11786:34;33038:9:0;11836:18:1;;;11829:34;;;33451:4:0;11879:19:1;;;11872:84;-1:-1:-1;;11681:19:1;;33224:259:0;;;;;;;;;;;;33188:318;;;;;;25176:134;;;;;;13449:34:1;13437:47;;13514:34;13509:2;13500:12;;13493:56;13579:20;13574:2;13565:12;;13558:42;13625:2;13616:12;;13235:399;25176:134:0;;;;;;;;;;;;;;25152:169;;25176:134;25152:169;;;;33797:22;;;;;;33565:281;;;13926:25:1;13970:42;14048:15;;;14028:18;;;14021:43;;;;14100:15;;;14080:18;;;14073:43;14132:18;;;14125:34;;;14175:19;;;14168:35;;;14219:19;;;14212:35;13898:19;;33565:281:0;;;;;;;;;;;;33529:340;;;;;;33116:772;;;;;;;;14528:66:1;14516:79;;14620:1;14611:11;;14604:27;;;;14656:2;14647:12;;14640:28;14693:2;14684:12;;14258:444;33116:772:0;;;;;;;;;;;;;33088:815;;;;;;33068:835;;;32773:1138;;;;;;;:::o;30696:147::-;2224:13;:11;:13::i;:::-;30806:29:::1;::::0;30774:21:::1;::::0;30806:20:::1;::::0;::::1;::::0;:29;::::1;;;::::0;30774:21;;30756:15:::1;30806:29:::0;30756:15;30806:29;30774:21;30806:20;:29;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;30745:98;30696:147:::0;:::o;31188:242::-;27104:10;;;;27090;:24;27082:55;;;;;;;12169:2:1;27082:55:0;;;12151:21:1;12208:2;12188:18;;;12181:30;12247:20;12227:18;;;12220:48;12285:18;;27082:55:0;11967:342:1;27082:55:0;31277:23:::1;::::0;;;:13:::1;:23;::::0;;;;;::::1;;31269:53;;;::::0;::::1;::::0;;10286:2:1;31269:53:0::1;::::0;::::1;10268:21:1::0;10325:2;10305:18;;;10298:30;10364:19;10344:18;;;10337:47;10401:18;;31269:53:0::1;10084:341:1::0;31269:53:0::1;31359:19;::::0;;;:9:::1;:19;::::0;;;;;;31338:47;;31380:4;;31369:8;;31338:47:::1;::::0;31359:19;31338:47:::1;31396:19;::::0;;;:9:::1;:19;::::0;;;;;:26;31188:242::o;2979:103::-;2224:13;:11;:13::i;:::-;3044:30:::1;3071:1;3044:18;:30::i;:::-;2979:103::o:0;34150:100::-;34196:7;34223:19;:10;:17;:19::i;34032:110::-;34085:4;34109:25;:10;34129:4;34109:19;:25::i;:::-;34102:32;34032:110;-1:-1:-1;;34032:110:0:o;25506:28::-;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;25506:28:0;;;;;;;-1:-1:-1;;25506:28:0;;;:::o;31023:157::-;2224:13;:11;:13::i;:::-;31117:9:::1;::::0;31100:39:::1;::::0;31128:10;;31117:9;31100:39:::1;::::0;;;::::1;31150:9;:22:::0;31023:157::o;31735:214::-;27104:10;;;;27090;:24;27082:55;;;;;;;12169:2:1;27082:55:0;;;12151:21:1;12208:2;12188:18;;;12181:30;12247:20;12227:18;;;12220:48;12285:18;;27082:55:0;11967:342:1;27082:55:0;31858:39:::1;::::0;;::::1;;::::0;31879:8;;31858:39:::1;::::0;;;::::1;31908:23;::::0;;;:13:::1;:23;::::0;;;;;:33;;;::::1;::::0;::::1;;::::0;;;::::1;::::0;;31735:214::o;27659:552::-;27804:13;2224;:11;:13::i;:::-;27843:110:::1;::::0;;::::1;::::0;::::1;::::0;;;;;::::1;::::0;::::1;::::0;;;::::1;::::0;::::1;::::0;;;;;;;27830:10:::1;::::0;:123:::1;27875:4:::0;27830:10;:123:::1;:::i;:::-;-1:-1:-1::0;27830:123:0::1;::::0;::::1;::::0;::::1;::::0;::::1;::::0;::::1;::::0;;::::1;:::i;:::-;-1:-1:-1::0;27830:123:0::1;::::0;;::::1;::::0;::::1;::::0;;;::::1;::::0;;;::::1;;::::0;;::::1;::::0;;;::::1;::::0;;28024:34;::::1;::::0;28035:4;;28041:6;;28049:8;;28024:34:::1;;;:::i;:::-;;;;;;;;;;;;;28014:45;;;;;;27994:68;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;27964:109:0;-1:-1:-1;28091:10:0::1;;28084:17;28091:10:::0;;28084:17:::1;:::i;:::-;;;::::0;::::1;;;:::i;:::-;-1:-1:-1::0;28084:17:0::1;;::::0;;;::::1;::::0;;28112:23:::1;::::0;28138:5;;28112:15:::1;::::0;:23:::1;::::0;28128:6;;28112:23:::1;:::i;:::-;::::0;;;::::1;::::0;;;;;::::1;::::0;;;:31;;::::1;::::0;;::::1;::::0;;;::::1;;::::0;;28159:44;;::::1;::::0;28177:10:::1;::::0;28159:44:::1;::::0;::::1;::::0;28196:6;;28159:44:::1;:::i;:::-;;;;;;;;27659:552:::0;;;;;:::o;31957:172::-;2224:13;:11;:13::i;:::-;32031:23:::1;:10;32046:7:::0;32031:14:::1;:23::i;:::-;32023:50;;;::::0;::::1;::::0;;18253:2:1;32023:50:0::1;::::0;::::1;18235:21:1::0;18292:2;18272:18;;;18265:30;18331:16;18311:18;;;18304:44;18365:18;;32023:50:0::1;18051:338:1::0;32023:50:0::1;32089:32;::::0;::::1;::::0;::::1;::::0;32101:10:::1;::::0;32089:32:::1;::::0;;;::::1;31957:172:::0;:::o;3237:201::-;2224:13;:11;:13::i;:::-;3326:22:::1;::::0;::::1;3318:73;;;::::0;::::1;::::0;;18596:2:1;3318:73:0::1;::::0;::::1;18578:21:1::0;18635:2;18615:18;;;18608:30;18674:34;18654:18;;;18647:62;18745:8;18725:18;;;18718:36;18771:19;;3318:73:0::1;18394:402:1::0;3318:73:0::1;3402:28;3421:8;3402:18;:28::i;:::-;3237:201:::0;:::o;28219:1342::-;10285:21;:19;:21::i;:::-;28456:9:::1;::::0;28484:14;28476:44:::1;;;::::0;::::1;::::0;;19003:2:1;28476:44:0::1;::::0;::::1;18985:21:1::0;19042:2;19022:18;;;19015:30;19081:19;19061:18;;;19054:47;19118:18;;28476:44:0::1;18801:341:1::0;28476:44:0::1;28560:15;:10:::0;28573:2:::1;28560:15;:::i;:::-;28539:10;:17;:36;;28531:66;;;::::0;::::1;::::0;;19522:2:1;28531:66:0::1;::::0;::::1;19504:21:1::0;19561:2;19541:18;;;19534:30;19600:19;19580:18;;;19573:47;19637:18;;28531:66:0::1;19320:341:1::0;28531:66:0::1;28610:14;28627:131;28660:5;28680:2;28697:6;28718:10;28743:4;28627:18;:131::i;:::-;28778:12;::::0;;;:4:::1;:12;::::0;;;;;28610:148;;-1:-1:-1;28778:12:0::1;;28777:13;28769:38;;;::::0;::::1;::::0;;19868:2:1;28769:38:0::1;::::0;::::1;19850:21:1::0;19907:2;19887:18;;;19880:30;19946:14;19926:18;;;19919:42;19978:18;;28769:38:0::1;19666:336:1::0;28769:38:0::1;28818:12;::::0;;;:4:::1;:12;::::0;;;;:19;;;::::1;28833:4;28818:19;::::0;;28892:10;28878:25:::1;::::0;::::1;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;-1:-1:-1;28878:25:0::1;-1:-1:-1::0;28850:53:0;-1:-1:-1;28916:7:0::1;::::0;;;28976:465:::1;29000:10;28996:1;:14;28976:465;;;29899:4:::0;29828;29824:16;;;29865:40;;;;;29859:47;29965:4;29931:40;;29925:47;30001:40;;;;29995:47;30044:4;29991:58;;29105:26:::1;::::0;;29088:14:::1;29105:26:::0;;;::::1;::::0;::::1;::::0;;;20234:25:1;;;20307:4;20295:17;;20275:18;;;20268:45;;;;20329:18;;;20322:34;;;20372:18;;;20365:34;;;29032:41:0;;-1:-1:-1;29032:41:0;;-1:-1:-1;29032:41:0;-1:-1:-1;29088:14:0;29105:26:::1;::::0;20206:19:1;;29105:26:0::1;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;29088:43;;29154:16;29163:6;29154:8;:16::i;:::-;29146:43;;;::::0;::::1;::::0;;20612:2:1;29146:43:0::1;::::0;::::1;20594:21:1::0;20651:2;20631:18;;;20624:30;20690:16;20670:18;;;20663:44;20724:18;;29146:43:0::1;20410:338:1::0;29146:43:0::1;29209:9;29204:111;29228:1;29224;:5;29204:111;;;29278:6;29263:21;;:8;29272:1;29263:11;;;;;;;;:::i;:::-;;;;;;;:21;;::::0;29255:44:::1;;;::::0;::::1;::::0;;20955:2:1;29255:44:0::1;::::0;::::1;20937:21:1::0;20994:2;20974:18;;;20967:30;21033:12;21013:18;;;21006:40;21063:18;;29255:44:0::1;20753:334:1::0;29255:44:0::1;29231:3:::0;::::1;::::0;::::1;:::i;:::-;;;;29204:111;;;;29343:6;29329:8;29338:1;29329:11;;;;;;;;:::i;:::-;:20;::::0;;::::1;:11;::::0;;::::1;::::0;;;;;;;:20;29378:10;29370:5:::1;:1:::0;29374::::1;29370:5;:::i;:::-;:18;29366:64;;;29409:5;;;29366:64;-1:-1:-1::0;29012:3:0;::::1;::::0;::::1;:::i;:::-;;;;28976:465;;;-1:-1:-1::0;29453:33:0::1;::::0;;;;:21:::1;21414:55:1::0;;;29453:33:0::1;::::0;::::1;21396:74:1::0;21486:18;;;21479:34;;;29453:21:0;::::1;::::0;::::1;::::0;21369:18:1;;29453:33:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;29528:6;29524:2;29504:49;;29517:5;29504:49;;;29536:10;29548:4;29504:49;;;;;;;:::i;:::-;;;;;;;;28424:1137;;;;;;10329:20:::0;9723:1;10849:22;;10666:213;10329:20;28219:1342;;;;;;:::o;25103:218::-;25176:134;;;;;;13449:34:1;13437:47;;13514:34;13509:2;13500:12;;13493:56;13579:20;13574:2;13565:12;;13558:42;13625:2;13616:12;;13235:399;25176:134:0;;;;;;;;;;;;;25152:169;;;;;;25103:218;:::o;2503:132::-;2384:7;2411:6;2567:23;2411:6;914:10;2567:23;2559:68;;;;;;;22022:2:1;2559:68:0;;;22004:21:1;;;22041:18;;;22034:30;22100:34;22080:18;;;22073:62;22152:18;;2559:68:0;21820:356:1;20149:158:0;20222:4;20246:53;20254:3;20274:23;;;20246:7;:53::i;:::-;20239:60;20149:158;-1:-1:-1;;;20149:158:0:o;10365:293::-;9767:1;10499:7;;:19;10491:63;;;;;;;22383:2:1;10491:63:0;;;22365:21:1;22422:2;22402:18;;;22395:30;22461:33;22441:18;;;22434:61;22512:18;;10491:63:0;22181:355:1;10491:63:0;9767:1;10632:7;:18;10365:293::o;21825:310::-;21888:16;21917:22;21942:19;21950:3;21942:7;:19::i;3598:191::-;3672:16;3691:6;;;3708:17;;;;;;;;;;3741:40;;3691:6;;;;;;;3741:40;;3672:16;3741:40;3661:128;3598:191;:::o;20646:117::-;20709:7;20736:19;20744:3;15946:18;;15863:109;20393:167;20527:23;;;20473:4;15745:19;;;:12;;;:19;;;;;;:24;;20497:55;15648:129;19821:152;19891:4;19915:50;19920:3;19940:23;;;19915:4;:50::i;14142:1420::-;14208:4;14347:19;;;:12;;;:19;;;;;;14383:15;;14379:1176;;14758:21;14782:14;14795:1;14782:10;:14;:::i;:::-;14831:18;;14758:38;;-1:-1:-1;14811:17:0;;14831:22;;14852:1;;14831:22;:::i;:::-;14811:42;;14887:13;14874:9;:26;14870:405;;14921:17;14941:3;:11;;14953:9;14941:22;;;;;;;;:::i;:::-;;;;;;;;;14921:42;;15095:9;15066:3;:11;;15078:13;15066:26;;;;;;;;:::i;:::-;;;;;;;;;;;;:38;;;;15180:23;;;:12;;;:23;;;;;:36;;;14870:405;15356:17;;:3;;:17;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;15451:3;:12;;:19;15464:5;15451:19;;;;;;;;;;;15444:26;;;15494:4;15487:11;;;;;;;14379:1176;15538:5;15531:12;;;;;16996:111;17052:16;17088:3;:11;;17081:18;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16996:111;;;:::o;13552:414::-;13615:4;15745:19;;;:12;;;:19;;;;;;13632:327;;-1:-1:-1;13675:23:0;;;;;;;;:11;:23;;;;;;;;;;;;;13858:18;;13836:19;;;:12;;;:19;;;;;;:40;;;;13891:11;;13632:327;-1:-1:-1;13942:5:0;13935:12;;-1:-1:-1;;;;;;;;:::o;:::-;;;;;;;:::i;:::-;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;14:184:1:-;66:77;63:1;56:88;163:4;160:1;153:15;187:4;184:1;177:15;203:691;268:5;298:18;339:2;331:6;328:14;325:40;;;345:18;;:::i;:::-;479:2;473:9;545:2;533:15;;384:66;529:24;;;555:2;525:33;521:42;509:55;;;579:18;;;599:22;;;576:46;573:72;;;625:18;;:::i;:::-;665:10;661:2;654:22;694:6;685:15;;724:6;716;709:22;764:3;755:6;750:3;746:16;743:25;740:45;;;781:1;778;771:12;740:45;831:6;826:3;819:4;811:6;807:17;794:44;886:1;879:4;870:6;862;858:19;854:30;847:41;;;;203:691;;;;;:::o;899:222::-;942:5;995:3;988:4;980:6;976:17;972:27;962:55;;1013:1;1010;1003:12;962:55;1035:80;1111:3;1102:6;1089:20;1082:4;1074:6;1070:17;1035:80;:::i;1126:322::-;1195:6;1248:2;1236:9;1227:7;1223:23;1219:32;1216:52;;;1264:1;1261;1254:12;1216:52;1304:9;1291:23;1337:18;1329:6;1326:30;1323:50;;;1369:1;1366;1359:12;1323:50;1392;1434:7;1425:6;1414:9;1410:22;1392:50;:::i;:::-;1382:60;1126:322;-1:-1:-1;;;;1126:322:1:o;1684:196::-;1752:20;;1812:42;1801:54;;1791:65;;1781:93;;1870:1;1867;1860:12;1781:93;1684:196;;;:::o;1885:186::-;1944:6;1997:2;1985:9;1976:7;1972:23;1968:32;1965:52;;;2013:1;2010;2003:12;1965:52;2036:29;2055:9;2036:29;:::i;2076:533::-;2172:6;2180;2188;2196;2249:3;2237:9;2228:7;2224:23;2220:33;2217:53;;;2266:1;2263;2256:12;2217:53;2289:29;2308:9;2289:29;:::i;:::-;2279:39;;2365:2;2354:9;2350:18;2337:32;2327:42;;2416:2;2405:9;2401:18;2388:32;2378:42;;2471:2;2460:9;2456:18;2443:32;2498:18;2490:6;2487:30;2484:50;;;2530:1;2527;2520:12;2484:50;2553;2595:7;2586:6;2575:9;2571:22;2553:50;:::i;:::-;2543:60;;;2076:533;;;;;;;:::o;2614:180::-;2673:6;2726:2;2714:9;2705:7;2701:23;2697:32;2694:52;;;2742:1;2739;2732:12;2694:52;-1:-1:-1;2765:23:1;;2614:180;-1:-1:-1;2614:180:1:o;3163:367::-;3226:8;3236:6;3290:3;3283:4;3275:6;3271:17;3267:27;3257:55;;3308:1;3305;3298:12;3257:55;-1:-1:-1;3331:20:1;;3374:18;3363:30;;3360:50;;;3406:1;3403;3396:12;3360:50;3443:4;3435:6;3431:17;3419:29;;3503:3;3496:4;3486:6;3483:1;3479:14;3471:6;3467:27;3463:38;3460:47;3457:67;;;3520:1;3517;3510:12;3457:67;3163:367;;;;;:::o;3535:773::-;3657:6;3665;3673;3681;3734:2;3722:9;3713:7;3709:23;3705:32;3702:52;;;3750:1;3747;3740:12;3702:52;3790:9;3777:23;3819:18;3860:2;3852:6;3849:14;3846:34;;;3876:1;3873;3866:12;3846:34;3915:70;3977:7;3968:6;3957:9;3953:22;3915:70;:::i;:::-;4004:8;;-1:-1:-1;3889:96:1;-1:-1:-1;4092:2:1;4077:18;;4064:32;;-1:-1:-1;4108:16:1;;;4105:36;;;4137:1;4134;4127:12;4105:36;;4176:72;4240:7;4229:8;4218:9;4214:24;4176:72;:::i;:::-;3535:773;;;;-1:-1:-1;4267:8:1;-1:-1:-1;;;;3535:773:1:o;4313:681::-;4484:2;4536:21;;;4606:13;;4509:18;;;4628:22;;;4455:4;;4484:2;4707:15;;;;4681:2;4666:18;;;4455:4;4750:218;4764:6;4761:1;4758:13;4750:218;;;4829:13;;4844:42;4825:62;4813:75;;4943:15;;;;4908:12;;;;4786:1;4779:9;4750:218;;;-1:-1:-1;4985:3:1;;4313:681;-1:-1:-1;;;;;;4313:681:1:o;4999:608::-;5104:6;5112;5120;5128;5136;5189:3;5177:9;5168:7;5164:23;5160:33;5157:53;;;5206:1;5203;5196:12;5157:53;5229:29;5248:9;5229:29;:::i;:::-;5219:39;;5277:38;5311:2;5300:9;5296:18;5277:38;:::i;:::-;5267:48;;5362:2;5351:9;5347:18;5334:32;5324:42;;5413:2;5402:9;5398:18;5385:32;5375:42;;5468:3;5457:9;5453:19;5440:33;5496:18;5488:6;5485:30;5482:50;;;5528:1;5525;5518:12;5482:50;5551;5593:7;5584:6;5573:9;5569:22;5551:50;:::i;:::-;5541:60;;;4999:608;;;;;;;;:::o;5612:248::-;5680:6;5688;5741:2;5729:9;5720:7;5716:23;5712:32;5709:52;;;5757:1;5754;5747:12;5709:52;-1:-1:-1;;5780:23:1;;;5850:2;5835:18;;;5822:32;;-1:-1:-1;5612:248:1:o;6057:250::-;6142:1;6152:113;6166:6;6163:1;6160:13;6152:113;;;6242:11;;;6236:18;6223:11;;;6216:39;6188:2;6181:10;6152:113;;;-1:-1:-1;;6299:1:1;6281:16;;6274:27;6057:250::o;6312:330::-;6354:3;6392:5;6386:12;6419:6;6414:3;6407:19;6435:76;6504:6;6497:4;6492:3;6488:14;6481:4;6474:5;6470:16;6435:76;:::i;:::-;6556:2;6544:15;6561:66;6540:88;6531:98;;;;6631:4;6527:109;;6312:330;-1:-1:-1;;6312:330:1:o;6647:461::-;6868:2;6857:9;6850:21;6831:4;6894:45;6935:2;6924:9;6920:18;6912:6;6894:45;:::i;:::-;6987:9;6979:6;6975:22;6970:2;6959:9;6955:18;6948:50;7015:33;7041:6;7033;7015:33;:::i;:::-;7007:41;;;7096:4;7088:6;7084:17;7079:2;7068:9;7064:18;7057:45;6647:461;;;;;;:::o;7298:118::-;7384:5;7377:13;7370:21;7363:5;7360:32;7350:60;;7406:1;7403;7396:12;7421:309;7486:6;7494;7547:2;7535:9;7526:7;7522:23;7518:32;7515:52;;;7563:1;7560;7553:12;7515:52;7599:9;7586:23;7576:33;;7659:2;7648:9;7644:18;7631:32;7672:28;7694:5;7672:28;:::i;:::-;7719:5;7709:15;;;7421:309;;;;;:::o;7735:700::-;7830:6;7838;7846;7899:2;7887:9;7878:7;7874:23;7870:32;7867:52;;;7915:1;7912;7905:12;7867:52;7955:9;7942:23;7984:18;8025:2;8017:6;8014:14;8011:34;;;8041:1;8038;8031:12;8011:34;8064:50;8106:7;8097:6;8086:9;8082:22;8064:50;:::i;:::-;8054:60;;8167:2;8156:9;8152:18;8139:32;8123:48;;8196:2;8186:8;8183:16;8180:36;;;8212:1;8209;8202:12;8180:36;;8235:52;8279:7;8268:8;8257:9;8253:24;8235:52;:::i;:::-;8225:62;;;8337:2;8326:9;8322:18;8309:32;8381:4;8374:5;8370:16;8363:5;8360:27;8350:55;;8401:1;8398;8391:12;8350:55;8424:5;8414:15;;;7735:700;;;;;:::o;8440:958::-;8563:6;8571;8579;8587;8595;8603;8656:3;8644:9;8635:7;8631:23;8627:33;8624:53;;;8673:1;8670;8663:12;8624:53;8696:29;8715:9;8696:29;:::i;:::-;8686:39;;8744:38;8778:2;8767:9;8763:18;8744:38;:::i;:::-;8734:48;;8829:2;8818:9;8814:18;8801:32;8791:42;;8880:2;8869:9;8865:18;8852:32;8842:42;;8935:3;8924:9;8920:19;8907:33;8959:18;9000:2;8992:6;8989:14;8986:34;;;9016:1;9013;9006:12;8986:34;9039:50;9081:7;9072:6;9061:9;9057:22;9039:50;:::i;:::-;9029:60;;9142:3;9131:9;9127:19;9114:33;9098:49;;9172:2;9162:8;9159:16;9156:36;;;9188:1;9185;9178:12;9156:36;-1:-1:-1;9211:24:1;;9266:4;9258:13;;9254:27;-1:-1:-1;9244:55:1;;9295:1;9292;9285:12;9244:55;9318:74;9384:7;9379:2;9366:16;9361:2;9357;9353:11;9318:74;:::i;:::-;9308:84;;;8440:958;;;;;;;;:::o;10833:245::-;10900:6;10953:2;10941:9;10932:7;10928:23;10924:32;10921:52;;;10969:1;10966;10959:12;10921:52;11001:9;10995:16;11020:28;11042:5;11020:28;:::i;11083:362::-;11288:6;11277:9;11270:25;11331:6;11326:2;11315:9;11311:18;11304:34;11374:2;11369;11358:9;11354:18;11347:30;11251:4;11394:45;11435:2;11424:9;11420:18;11412:6;11394:45;:::i;:::-;11386:53;11083:362;-1:-1:-1;;;;;11083:362:1:o;12657:184::-;12709:77;12706:1;12699:88;12806:4;12803:1;12796:15;12830:4;12827:1;12820:15;12846:184;12898:77;12895:1;12888:88;12995:4;12992:1;12985:15;13019:4;13016:1;13009:15;13035:195;13074:3;13105:66;13098:5;13095:77;13092:103;;13175:18;;:::i;:::-;-1:-1:-1;13222:1:1;13211:13;;13035:195::o;14707:437::-;14786:1;14782:12;;;;14829;;;14850:61;;14904:4;14896:6;14892:17;14882:27;;14850:61;14957:2;14949:6;14946:14;14926:18;14923:38;14920:218;;14994:77;14991:1;14984:88;15095:4;15092:1;15085:15;15123:4;15120:1;15113:15;14920:218;;14707:437;;;:::o;15275:545::-;15377:2;15372:3;15369:11;15366:448;;;15413:1;15438:5;15434:2;15427:17;15483:4;15479:2;15469:19;15553:2;15541:10;15537:19;15534:1;15530:27;15524:4;15520:38;15589:4;15577:10;15574:20;15571:47;;;-1:-1:-1;15612:4:1;15571:47;15667:2;15662:3;15658:12;15655:1;15651:20;15645:4;15641:31;15631:41;;15722:82;15740:2;15733:5;15730:13;15722:82;;;15785:17;;;15766:1;15755:13;15722:82;;16056:1471;16182:3;16176:10;16209:18;16201:6;16198:30;16195:56;;;16231:18;;:::i;:::-;16260:97;16350:6;16310:38;16342:4;16336:11;16310:38;:::i;:::-;16304:4;16260:97;:::i;:::-;16412:4;;16476:2;16465:14;;16493:1;16488:782;;;;17314:1;17331:6;17328:89;;;-1:-1:-1;17383:19:1;;;17377:26;17328:89;15962:66;15953:1;15949:11;;;15945:84;15941:89;15931:100;16037:1;16033:11;;;15928:117;17430:81;;16458:1063;;16488:782;15222:1;15215:14;;;15259:4;15246:18;;16536:66;16524:79;;;16701:236;16715:7;16712:1;16709:14;16701:236;;;16804:19;;;16798:26;16783:42;;16896:27;;;;16864:1;16852:14;;;;16731:19;;16701:236;;;16705:3;16965:6;16956:7;16953:19;16950:261;;;17026:19;;;17020:26;17127:66;17109:1;17105:14;;;17121:3;17101:24;17097:97;17093:102;17078:118;17063:134;;16950:261;-1:-1:-1;;;;;17257:1:1;17241:14;;;17237:22;17224:36;;-1:-1:-1;16056:1471:1:o;17532:289::-;17663:3;17701:6;17695:13;17717:66;17776:6;17771:3;17764:4;17756:6;17752:17;17717:66;:::i;:::-;17799:16;;;;;17532:289;-1:-1:-1;;17532:289:1:o;17826:220::-;17975:2;17964:9;17957:21;17938:4;17995:45;18036:2;18025:9;18021:18;18013:6;17995:45;:::i;19147:168::-;19220:9;;;19251;;19268:15;;;19262:22;;19248:37;19238:71;;19289:18;;:::i;21092:125::-;21157:9;;;21178:10;;;21175:36;;;21191:18;;:::i;21524:291::-;21701:6;21690:9;21683:25;21744:2;21739;21728:9;21724:18;21717:30;21664:4;21764:45;21805:2;21794:9;21790:18;21782:6;21764:45;:::i;22541:128::-;22608:9;;;22629:11;;;22626:37;;;22643:18;;:::i;22674:184::-;22726:77;22723:1;22716:88;22823:4;22820:1;22813:15;22847:4;22844:1;22837:15
Swarm Source
ipfs://aa85f6073451c711f8778bb32e246549f7be03b90cc4fc77e8360ae186342338
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|---|---|---|---|---|
POL | 100.00% | $0.686149 | 14.8894 | $10.22 |
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.