0 txs
0 calls
constructor
No constructor.
functions
allowance
viewfunction allowance(address owner, address spender) view returns (uint256)
balanceOf
viewfunction balanceOf(address account) view returns (uint256)
BTC
viewfunction BTC() view returns (uint256)
btcDepositIds
viewfunction btcDepositIds(bytes32) view returns (bool)
CONVERTER_ROLE
viewfunction CONVERTER_ROLE() view returns (bytes32)
decimals
purefunction decimals() pure returns (uint8)
DEFAULT_ADMIN_ROLE
viewfunction DEFAULT_ADMIN_ROLE() view returns (bytes32)
DUST_LIMIT
viewfunction DUST_LIMIT() view returns (uint256)
encodeInvoice
viewfunction encodeInvoice(tuple invoice) view returns (bytes)
encodeTotalSupplyUpdate
viewfunction encodeTotalSupplyUpdate(uint256 nonce, uint256 delta) view returns (bytes)
getMintInvoiceHash
viewfunction getMintInvoiceHash(tuple invoice) view returns (bytes32)
getPooledBTCByShares
viewfunction getPooledBTCByShares(uint256 sharesAmount) view returns (uint256)
getRoleAdmin
viewfunction getRoleAdmin(bytes32 role) view returns (bytes32)
getShares
viewfunction getShares(address account) view returns (uint256)
getSharesByPooledBTC
viewfunction getSharesByPooledBTC(uint256 btcAmount) view returns (uint256)
getTotalSupplyUpdateHash
viewfunction getTotalSupplyUpdateHash(uint256 nonce, uint256 delta) view returns (bytes32)
hasRole
viewfunction hasRole(bytes32 role, address account) view returns (bool)
lastRewardTimestamp
viewfunction lastRewardTimestamp() view returns (uint256)
maxRewardPercent
viewfunction maxRewardPercent() view returns (uint256)
MESSAGE_MINT
viewfunction MESSAGE_MINT() view returns (bytes)
MESSAGE_UPDATE_TOTAL_SUPPLY
viewfunction MESSAGE_UPDATE_TOTAL_SUPPLY() view returns (bytes)
minTimeBetweenRewards
viewfunction minTimeBetweenRewards() view returns (uint256)
minWithdrawAmount
viewfunction minWithdrawAmount() view returns (uint256)
name
viewfunction name() view returns (string)
network
viewfunction network() view returns (uint8)
paused
viewfunction paused() view returns (bool)
PAUSER_ROLE
viewfunction PAUSER_ROLE() view returns (bytes32)
redeemCounter
viewfunction redeemCounter() view returns (uint256)
supportsInterface
viewfunction supportsInterface(bytes4 interfaceId) view returns (bool)
symbol
viewfunction symbol() view returns (string)
totalShares
viewfunction totalShares() view returns (uint256)
totalSupply
viewfunction totalSupply() view returns (uint256)
totalSupplyUpdateNonce
viewfunction totalSupplyUpdateNonce() view returns (uint256)
validatorRegistry
viewfunction validatorRegistry() view returns (address)
addConverter
nonpayablefunction addConverter(address converter)
addPauser
nonpayablefunction addPauser(address pauser)
approve
nonpayablefunction approve(address spender, uint256 value) returns (bool)
converterBurn
nonpayablefunction converterBurn(address from, uint256 amount)
converterMint
nonpayablefunction converterMint(address recipient, uint256 amount)
grantRole
nonpayablefunction grantRole(bytes32 role, address account)
initialize
nonpayablefunction initialize(uint8 _network, address _validatorRegistry, address _admin, address _pauser)
mint
nonpayablefunction mint(tuple invoice, bytes signature)
mintRewards
nonpayablefunction mintRewards(uint256 nonce, uint256 delta, bytes signature)
pause
nonpayablefunction pause()
redeem
nonpayablefunction redeem(uint256 _amount, string BTCAddress)
reinitializeV2
nonpayablefunction reinitializeV2()
removeConverter
nonpayablefunction removeConverter(address converter)
removePauser
nonpayablefunction removePauser(address pauser)
renounceRole
nonpayablefunction renounceRole(bytes32 role, address callerConfirmation)
revokeRole
nonpayablefunction revokeRole(bytes32 role, address account)
setMaxRewardPercent
nonpayablefunction setMaxRewardPercent(uint256 _maxRewardPercent)
setMinTimeBetweenRewards
nonpayablefunction setMinTimeBetweenRewards(uint256 _minTimeBetweenRewards)
setMinWithdrawAmount
nonpayablefunction setMinWithdrawAmount(uint256 _minWithdrawAmount)
setValidatorRegistry
nonpayablefunction setValidatorRegistry(address _validatorRegistry)
transfer
nonpayablefunction transfer(address to, uint256 value) returns (bool)
transferFrom
nonpayablefunction transferFrom(address from, address to, uint256 value) returns (bool)
unpause
nonpayablefunction unpause()
events
Approval
event Approval(address indexed owner, address indexed spender, uint256 value)
ConverterBurn
event ConverterBurn(address indexed converter, address indexed from, uint256 amount)
ConverterMint
event ConverterMint(address indexed converter, address indexed recipient, uint256 amount)
Initialized
event Initialized(uint64 version)
MintBtcEvent
event MintBtcEvent(address indexed _to, uint256 _value, bytes32 _btcDepositId)
Paused
event Paused(address account)
RedeemBtcEvent
event RedeemBtcEvent(address indexed _from, string _BTCAddress, uint256 _value, uint256 _id)
RoleAdminChanged
event RoleAdminChanged(bytes32 indexed role, bytes32 indexed previousAdminRole, bytes32 indexed newAdminRole)
RoleGranted
event RoleGranted(bytes32 indexed role, address indexed account, address indexed sender)
RoleRevoked
event RoleRevoked(bytes32 indexed role, address indexed account, address indexed sender)
TotalSupplyUpdatedEvent
event TotalSupplyUpdatedEvent(uint256 _nonce, uint256 _totalBTCSupply, uint256 _totalShares)
Transfer
event Transfer(address indexed from, address indexed to, uint256 value)
Unpaused
event Unpaused(address account)
errors
AccessControlBadConfirmation
error AccessControlBadConfirmation()
AccessControlUnauthorizedAccount
error AccessControlUnauthorizedAccount(address account, bytes32 neededRole)
AmountBelowMinWithdraw
error AmountBelowMinWithdraw()
CannotBurnFromZeroAddress
error CannotBurnFromZeroAddress()
CannotMintToZeroAddress
error CannotMintToZeroAddress()
DeltaIsZero
error DeltaIsZero()
EnforcedPause
error EnforcedPause()
ERC20InsufficientAllowance
error ERC20InsufficientAllowance(address spender, uint256 allowance, uint256 needed)
ERC20InsufficientBalance
error ERC20InsufficientBalance(address sender, uint256 balance, uint256 needed)
ERC20InvalidApprover
error ERC20InvalidApprover(address approver)
ERC20InvalidReceiver
error ERC20InvalidReceiver(address receiver)
ERC20InvalidSender
error ERC20InvalidSender(address sender)
ERC20InvalidSpender
error ERC20InvalidSpender(address spender)
ExpectedPause
error ExpectedPause()
InsufficientBalance
error InsufficientBalance()
InvalidAddress
error InvalidAddress()
InvalidBTCAddress
error InvalidBTCAddress()
InvalidInitialization
error InvalidInitialization()
InvalidTotalSharesOrPooledBTC
error InvalidTotalSharesOrPooledBTC()
InvalidTotalSupplyNonce
error InvalidTotalSupplyNonce()
InvalidValidatorSignature
error InvalidValidatorSignature()
MaxRewardPercentTooHigh
error MaxRewardPercentTooHigh()
MintAlreadyProcessed
error MintAlreadyProcessed()
MintAmountTooBig
error MintAmountTooBig()
MintAmountZero
error MintAmountZero()
MinTimeBetweenRewardsTooLow
error MinTimeBetweenRewardsTooLow()
MintToContractAddress
error MintToContractAddress()
MinWithdrawTooLow
error MinWithdrawTooLow()
NotInitializing
error NotInitializing()
RewardTooBig
error RewardTooBig()
RewardTooFrequent
error RewardTooFrequent()
UpdateAlreadyProcessed
error UpdateAlreadyProcessed()
creation bytecode
0x6080604052348015600e575f5ffd5b506126688061001c5f395ff3fe608060405234801561000f575f5ffd5b5060043610610372575f3560e01c80636739afca116101d4578063a7ce456511610109578063dd62ed3e116100a9578063e737557f11610079578063e737557f14610737578063f04da65b14610770578063f376ebbb14610798578063f8077fae146107c2575f5ffd5b8063dd62ed3e146106ea578063e07fbd00146106fd578063e0a0461014610710578063e63ab1e914610723575f5ffd5b8063b0390325116100e4578063b0390325146106b3578063c4115874146106bc578063c87b7a23146106c4578063d547741f146106d7575f5ffd5b8063a7ce45651461068e578063a9059cbb14610697578063af7f131f146106aa575f5ffd5b80638c659bf2116101745780639cee94921161014f5780639cee94921461064e5780639e76a007146106615780639fd9568714610674578063a217fddf14610687575f5ffd5b80638c659bf21461062057806391d148541461063357806395d89b4114610646575f5ffd5b806370a08231116101af57806370a08231146105df57806380239a04146105f257806382dc1ec4146106055780638456cb5914610618575f5ffd5b80636739afca146105995780636b2c0f55146105b95780636ce1c4dc146105cc575f5ffd5b8063313ce567116102aa578063457e1a491161024a5780635abdb0dc116102255780635abdb0dc1461052a5780635c975abb1461053d578063603c6a6714610554578063607375a114610586575f5ffd5b8063457e1a49146104fb578063497730501461050457806355573c7714610517575f5ffd5b806336568abe1161028557806336568abe146104cf5780633a98ef39146104e25780633f4ba83a146104ea57806342193473146104f2575f5ffd5b8063313ce567146104a45780633357325e146104b35780633395b75a146104c6575f5ffd5b806323b872dd1161031557806325e0a33f116102f057806325e0a33f146104605780632792949d146104735780632f2ff15d1461047e5780632f4cfd4714610491575f5ffd5b806323b872dd14610427578063248a9ca31461043a57806324b76fd51461044d575f5ffd5b8063095ea7b311610350578063095ea7b3146103d557806313776a8d146103e857806318160ddd1461040a57806321172f3b14610412575f5ffd5b806301ffc9a714610376578063026034f01461039e57806306fdde03146103c0575b5f5ffd5b610389610384366004611f58565b6107cb565b60405190151581526020015b60405180910390f35b6103896103ac366004611f7f565b60096020525f908152604090205460ff1681565b6103c8610801565b6040516103959190611fc4565b6103896103e3366004611fea565b6108c1565b6103fc5f5160206126135f395f51905f5281565b604051908152602001610395565b6004546103fc565b610425610420366004612059565b6108d8565b005b6103896104353660046120a8565b610b3d565b6103fc610448366004611f7f565b610b60565b61042561045b3660046120e6565b610b80565b61042561046e366004611f7f565b610cc5565b6103fc6305f5e10081565b61042561048c36600461212e565b610cf8565b61042561049f366004611fea565b610d1a565b60405160088152602001610395565b6104256104c1366004611fea565b610db0565b6103fc60065481565b6104256104dd36600461212e565b610e3d565b6005546103fc565b610425610e75565b6103fc61022281565b6103fc60015481565b61042561051236600461215c565b610e97565b6103fc610525366004611f7f565b610eea565b610425610538366004611f7f565b610f33565b5f5160206125f35f395f51905f525460ff16610389565b6103c8604051806040016040528060138152602001725354524f4f4d5f4d494e545f494e564f49434560681b81525081565b610425610594366004612177565b610f66565b5f546105ac90600160a01b900460ff1681565b6040516103959190612207565b6104256105c736600461215c565b611137565b6104256105da36600461215c565b61115c565b6103fc6105ed36600461215c565b61117d565b6103fc610600366004612215565b6111b6565b61042561061336600461215c565b611269565b61042561128a565b6103c861062e366004612215565b6112a9565b61038961064136600461212e565b6112ee565b6103c8611324565b61042561065c366004611f7f565b611362565b61042561066f36600461215c565b611394565b61042561068236600461224b565b6113b5565b6103fc5f81565b6103fc60025481565b6103896106a5366004611fea565b6114ae565b6103fc60035481565b6103fc60075481565b6104256114bb565b6103fc6106d2366004611f7f565b611585565b6104256106e536600461212e565b6115c4565b6103fc6106f8366004612282565b6115e0565b6103fc61070b3660046122ae565b611629565b6103c861071e3660046122ae565b6116cd565b6103fc5f5160206125b35f395f51905f5281565b6103c86040518060400160405280601a8152602001795354524f4f4d5f5550444154455f544f54414c5f535550504c5960301b81525081565b6103fc61077e36600461215c565b6001600160a01b03165f908152600a602052604090205490565b5f546107aa906001600160a01b031681565b6040516001600160a01b039091168152602001610395565b6103fc60085481565b5f6001600160e01b03198216637965db0b60e01b14806107fb57506301ffc9a760e01b6001600160e01b03198316145b92915050565b7f52c63247e1f47db19d5ce0460030c497f067ca4cebf71ba98eeadabe20bace0380546060915f5160206125935f395f51905f529161083f906122c8565b80601f016020809104026020016040519081016040528092919081815260200182805461086b906122c8565b80156108b65780601f1061088d576101008083540402835291602001916108b6565b820191905f5260205f20905b81548152906001019060200180831161089957829003601f168201915b505050505091505090565b5f336108ce818585611730565b5060019392505050565b6108e061173d565b6040518060400160405280601a8152602001795354524f4f4d5f5550444154455f544f54414c5f535550504c5960301b81525061091d85856112a9565b5f546040516311ee58a960e01b8152859185916001600160a01b03909116906311ee58a990610956908790879087908790600401612322565b602060405180830381865afa158015610971573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906109959190612366565b6109b257604051636227817160e01b815260040160405180910390fd5b60035488146109d4576040516336b118d760e11b815260040160405180910390fd5b600160035f8282546109e69190612399565b90915550505f879003610a0c57604051630aa7fcbb60e21b815260040160405180910390fd5b600754600854610a1c9190612399565b421015610a3b576040516283cb6b60e51b815260040160405180910390fd5b5f612710600654600454610a4f91906123ac565b610a5991906123c3565b905080881115610a7c57604051630779a2a360e31b815260040160405180910390fd5b5f610a878a8a6111b6565b5f8181526009602052604090205490915060ff1615610ab95760405163ce199d1760e01b815260040160405180910390fd5b5f818152600960205260408120805460ff19166001179055600480548b9290610ae3908490612399565b909155505042600855600454600554604080518d815260208101939093528201527f339ea31e567d96bc11133446c07d2afa7b1a67accc22bd1b6149fd58d1b934409060600160405180910390a150505050505050505050565b5f33610b4a85828561176f565b610b558585856117d1565b506001949350505050565b5f9081525f5160206125d35f395f51905f52602052604090206001015490565b610b8861173d565b600154831015610bab57604051633813eacd60e21b815260040160405180910390fd5b5f54600160a01b900460ff166003811115610bc857610bc86121d3565b604051632ce1e0f560e01b815273a38676cf96a5528655ed441583e0aa92b393393091632ce1e0f591610c029190869086906004016123e2565b602060405180830381865af4158015610c1d573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610c419190612366565b610c5e576040516312d58f2760e21b815260040160405180910390fd5b610c68338461182e565b600160025f828254610c7a9190612399565b909155505060025460405133917f83c16822c691a011b471d2653b84faff158a050c4e117390a6c008ecdefcc14e91610cb89186918691899161240b565b60405180910390a2505050565b5f610ccf81611862565b61a8c0821015610cf25760405163a7bbe41d60e01b815260040160405180910390fd5b50600755565b610d0182610b60565b610d0a81611862565b610d14838361186c565b50505050565b610d2261173d565b5f5160206126135f395f51905f52610d3981611862565b6001600160a01b038316610d60576040516389a4ea1960e01b815260040160405180910390fd5b610d6a838361190d565b6040518281526001600160a01b0384169033907f76bf2183ddbd3f44507ad7d1989ec6ce8bb5a1974f0862fbf29060dea8431d0e906020015b60405180910390a3505050565b610db861173d565b5f5160206126135f395f51905f52610dcf81611862565b6001600160a01b038316610df65760405163a30d2d8760e01b815260040160405180910390fd5b610e00838361182e565b6040518281526001600160a01b0384169033907f25af8198e0603d11f941e41fdf3659a6cb1f571031869d21c0401cb12e7ad56790602001610da3565b6001600160a01b0381163314610e665760405163334bd91960e11b815260040160405180910390fd5b610e708282611941565b505050565b5f5160206125b35f395f51905f52610e8c81611862565b610e946119ba565b50565b5f610ea181611862565b6001600160a01b038216610ec85760405163e6c4247b60e01b815260040160405180910390fd5b505f80546001600160a01b0319166001600160a01b0392909216919091179055565b5f6005545f1480610efb5750600454155b15610f19576040516340a3daff60e11b815260040160405180910390fd5b600554600454610f2990846123ac565b6107fb91906123c3565b5f610f3d81611862565b610222821015610f60576040516343a87e9960e11b815260040160405180910390fd5b50600155565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a008054600160401b810460ff16159067ffffffffffffffff165f81158015610fab5750825b90505f8267ffffffffffffffff166001148015610fc75750303b155b905081158015610fd5575080155b15610ff35760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff19166001178555831561101d57845460ff60401b1916600160401b1785555b61106b6040518060400160405280600e81526020016d29ba3937b7b6902134ba31b7b4b760911b8152506040518060400160405280600681526020016573747242544360d01b815250611a19565b611073611a2b565b61107b611a3b565b61108488611a43565b611b586001555f80548a919060ff60a01b1916600160a01b8360038111156110ae576110ae6121d3565b02179055506110bd5f8861186c565b506110d55f5160206125b35f395f51905f528761186c565b506064600655620151806007555f600855831561112c57845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15b505050505050505050565b5f61114181611862565b6111585f5160206125b35f395f51905f52836115c4565b5050565b5f61116681611862565b6111585f5160206126135f395f51905f5283610cf8565b5f6005545f0361118e57505f919050565b6005546004546001600160a01b0384165f908152600a6020526040902054610f2991906123ac565b5f805460408051808201909152601a8152795354524f4f4d5f5550444154455f544f54414c5f535550504c5960301b60208201526001600160a01b039091169063bca0ac069061120686866112a9565b6040518363ffffffff1660e01b8152600401611223929190612431565b602060405180830381865afa15801561123e573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906112629190612455565b9392505050565b5f61127381611862565b6111585f5160206125b35f395f51905f5283610cf8565b5f5160206125b35f395f51905f526112a181611862565b610e94611a6c565b604080516020810184905290810182905230606090811b6bffffffffffffffffffffffff19168183015290607401604051602081830303815290604052905092915050565b5f9182525f5160206125d35f395f51905f52602090815260408084206001600160a01b0393909316845291905290205460ff1690565b7f52c63247e1f47db19d5ce0460030c497f067ca4cebf71ba98eeadabe20bace0480546060915f5160206125935f395f51905f529161083f906122c8565b5f61136c81611862565b606482111561138e57604051630737692960e31b815260040160405180910390fd5b50600655565b5f61139e81611862565b6111585f5160206126135f395f51905f52836115c4565b6113bd61173d565b604051806040016040528060138152602001725354524f4f4d5f4d494e545f494e564f49434560681b8152506113f2846116cd565b5f546040516311ee58a960e01b8152859185916001600160a01b03909116906311ee58a99061142b908790879087908790600401612322565b602060405180830381865afa158015611446573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061146a9190612366565b61148757604051636227817160e01b815260040160405180910390fd5b6114a56040880180359061149e9060208b0161215c565b8935611ab4565b50505050505050565b5f336108ce8185856117d1565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00805460029190600160401b900460ff16806115055750805467ffffffffffffffff808416911610155b156115235760405163f92ee8a960e01b815260040160405180910390fd5b805468ffffffffffffffffff191667ffffffffffffffff8316908117600160401b1760ff60401b191682556040519081527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15050565b5f6005545f14806115965750600454155b156115b4576040516340a3daff60e11b815260040160405180910390fd5b600454600554610f2990846123ac565b6115cd82610b60565b6115d681611862565b610d148383611941565b6001600160a01b039182165f9081527f52c63247e1f47db19d5ce0460030c497f067ca4cebf71ba98eeadabe20bace016020908152604080832093909416825291909152205490565b5f80546040805180820190915260138152725354524f4f4d5f4d494e545f494e564f49434560681b60208201526001600160a01b039091169063bca0ac0690611671856116cd565b6040518363ffffffff1660e01b815260040161168e929190612431565b602060405180830381865afa1580156116a9573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906107fb9190612455565b60606116df604083016020840161215c565b604080516bffffffffffffffffffffffff19606093841b81166020830152918501356034820152843560548201523090921b1660748201526088016040516020818303038152906040529050919050565b610e708383836001611bc0565b5f5160206125f35f395f51905f525460ff161561176d5760405163d93c066560e01b815260040160405180910390fd5b565b5f61177a84846115e0565b90505f198114610d1457818110156117c357604051637dc7a0d960e11b81526001600160a01b038416600482015260248101829052604481018390526064015b60405180910390fd5b610d1484848484035f611bc0565b6001600160a01b0383166117fa57604051634b637e8f60e11b81525f60048201526024016117ba565b6001600160a01b0382166118235760405163ec442f0560e01b81525f60048201526024016117ba565b610e70838383611ca4565b6001600160a01b03821661185757604051634b637e8f60e11b81525f60048201526024016117ba565b611158825f83611ca4565b610e948133611e37565b5f5f5160206125d35f395f51905f5261188584846112ee565b611904575f848152602082815260408083206001600160a01b03871684529091529020805460ff191660011790556118ba3390565b6001600160a01b0316836001600160a01b0316857f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a460019150506107fb565b5f9150506107fb565b6001600160a01b0382166119365760405163ec442f0560e01b81525f60048201526024016117ba565b6111585f8383611ca4565b5f5f5160206125d35f395f51905f5261195a84846112ee565b15611904575f848152602082815260408083206001600160a01b0387168085529252808320805460ff1916905551339287917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a460019150506107fb565b6119c2611e70565b5f5160206125f35f395f51905f52805460ff191681557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a150565b611a21611e9f565b6111588282611ee8565b611a33611e9f565b61176d611f38565b61176d611e9f565b611a4b611e9f565b5f80546001600160a01b0319166001600160a01b0392909216919091179055565b611a7461173d565b5f5160206125f35f395f51905f52805460ff191660011781557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258336119fb565b825f03611ad457604051631cebf66f60e11b815260040160405180910390fd5b611ae66305f5e1006301406f406123ac565b8310611b0557604051636006659960e11b815260040160405180910390fd5b306001600160a01b03831603611b2e5760405163603acaa960e11b815260040160405180910390fd5b5f8181526009602052604090205460ff1615611b5d57604051637bdb87d160e01b815260040160405180910390fd5b5f818152600960205260409020805460ff19166001179055611b7f828461190d565b60408051848152602081018390526001600160a01b038416917fb73f3e96d1e157f064cb3a8d0abed06bcec05e5515bf7486364c027dab6aa4699101610cb8565b5f5160206125935f395f51905f526001600160a01b038516611bf75760405163e602df0560e01b81525f60048201526024016117ba565b6001600160a01b038416611c2057604051634a1406b160e11b81525f60048201526024016117ba565b6001600160a01b038086165f90815260018301602090815260408083209388168352929052208390558115611c9d57836001600160a01b0316856001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92585604051611c9491815260200190565b60405180910390a35b5050505050565b6001600160a01b038316611d2a575f6005545f1480611cc35750600454155b611cd557611cd082611585565b611cd7565b815b90508160045f828254611cea9190612399565b925050819055508060055f828254611d029190612399565b90915550506001600160a01b0383165f908152600a6020526040902080549091019055611df2565b5f611d348461117d565b905081811015611d5757604051631e9acf1760e31b815260040160405180910390fd5b5f611d6183611585565b90506001600160a01b038416611dc2578260045f828254611d82919061246c565b925050819055508060055f828254611d9a919061246c565b90915550506001600160a01b0385165f908152600a6020526040902080548290039055611def565b6001600160a01b038086165f908152600a6020526040808220805485900390559186168152208054820190555b50505b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610da391815260200190565b611e4182826112ee565b6111585760405163e2517d3f60e01b81526001600160a01b0382166004820152602481018390526044016117ba565b5f5160206125f35f395f51905f525460ff1661176d57604051638dfc202b60e01b815260040160405180910390fd5b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a0054600160401b900460ff1661176d57604051631afcd79f60e31b815260040160405180910390fd5b611ef0611e9f565b5f5160206125935f395f51905f527f52c63247e1f47db19d5ce0460030c497f067ca4cebf71ba98eeadabe20bace03611f2984826124d7565b5060048101610d1483826124d7565b611f40611e9f565b5f5160206125f35f395f51905f52805460ff19169055565b5f60208284031215611f68575f5ffd5b81356001600160e01b031981168114611262575f5ffd5b5f60208284031215611f8f575f5ffd5b5035919050565b5f81518084528060208401602086015e5f602082860101526020601f19601f83011685010191505092915050565b602081525f6112626020830184611f96565b6001600160a01b0381168114610e94575f5ffd5b5f5f60408385031215611ffb575f5ffd5b823561200681611fd6565b946020939093013593505050565b5f5f83601f840112612024575f5ffd5b50813567ffffffffffffffff81111561203b575f5ffd5b602083019150836020828501011115612052575f5ffd5b9250929050565b5f5f5f5f6060858703121561206c575f5ffd5b8435935060208501359250604085013567ffffffffffffffff811115612090575f5ffd5b61209c87828801612014565b95989497509550505050565b5f5f5f606084860312156120ba575f5ffd5b83356120c581611fd6565b925060208401356120d581611fd6565b929592945050506040919091013590565b5f5f5f604084860312156120f8575f5ffd5b83359250602084013567ffffffffffffffff811115612115575f5ffd5b61212186828701612014565b9497909650939450505050565b5f5f6040838503121561213f575f5ffd5b82359150602083013561215181611fd6565b809150509250929050565b5f6020828403121561216c575f5ffd5b813561126281611fd6565b5f5f5f5f6080858703121561218a575f5ffd5b843560048110612198575f5ffd5b935060208501356121a881611fd6565b925060408501356121b881611fd6565b915060608501356121c881611fd6565b939692955090935050565b634e487b7160e01b5f52602160045260245ffd5b6004811061220357634e487b7160e01b5f52602160045260245ffd5b9052565b602081016107fb82846121e7565b5f5f60408385031215612226575f5ffd5b50508035926020909101359150565b5f60608284031215612245575f5ffd5b50919050565b5f5f5f6080848603121561225d575f5ffd5b6122678585612235565b9250606084013567ffffffffffffffff811115612115575f5ffd5b5f5f60408385031215612293575f5ffd5b823561229e81611fd6565b9150602083013561215181611fd6565b5f606082840312156122be575f5ffd5b6112628383612235565b600181811c908216806122dc57607f821691505b60208210810361224557634e487b7160e01b5f52602260045260245ffd5b81835281816020850137505f828201602090810191909152601f909101601f19169091010190565b606081525f6123346060830187611f96565b82810360208401526123468187611f96565b9050828103604084015261235b8185876122fa565b979650505050505050565b5f60208284031215612376575f5ffd5b81518015158114611262575f5ffd5b634e487b7160e01b5f52601160045260245ffd5b808201808211156107fb576107fb612385565b80820281158282048414176107fb576107fb612385565b5f826123dd57634e487b7160e01b5f52601260045260245ffd5b500490565b6123ec81856121e7565b604060208201525f6124026040830184866122fa565b95945050505050565b606081525f61241e6060830186886122fa565b6020830194909452506040015292915050565b604081525f6124436040830185611f96565b82810360208401526124028185611f96565b5f60208284031215612465575f5ffd5b5051919050565b818103818111156107fb576107fb612385565b634e487b7160e01b5f52604160045260245ffd5b601f821115610e7057805f5260205f20601f840160051c810160208510156124b85750805b601f840160051c820191505b81811015611c9d575f81556001016124c4565b815167ffffffffffffffff8111156124f1576124f161247f565b612505816124ff84546122c8565b84612493565b6020601f821160018114612537575f83156125205750848201515b5f19600385901b1c1916600184901b178455611c9d565b5f84815260208120601f198516915b828110156125665787850151825560209485019460019092019101612546565b508482101561258357868401515f19600387901b60f8161c191681555b50505050600190811b0190555056fe52c63247e1f47db19d5ce0460030c497f067ca4cebf71ba98eeadabe20bace0065d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a02dd7bc7dec4dceedda775e58dd541e08a116c6c53815c0bd028192f7b626800cd5ed15c6e187e77e9aee88184c21f4f2182ab5827cb3b7e07fbedcd63f033001cf336fddcc7dc48127faf7a5b80ee54fce73ef647eecd31c24bb6cce3ac3eefa2646970667358221220615d07ad16d8af3fbf22247db02ea5466fba4fa8419352e86ddfee780fa7660f64736f6c634300081b0033