forked from nevillegrech/gigahorse-toolchain
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathErrorSignature.facts
10386 lines (10386 loc) · 373 KB
/
ErrorSignature.facts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
0x000c73a4 Phase2SaleNotStarted()
0x00125707 ContractNotAllowedToMint()
0x0012747c ErrorExceedPublicSaleWalletLimit()
0x0017107b WrongMerkleProof()
0x003211eb AmountRequestedExceedsMaxSupply()
0x0039e4d7 ERC721Queryable__InvalidQueryRange()
0x003d0663 URIPrefixEmpty()
0x003d4489 MinWeightNotLessThanMaxWeight(uint256,uint256)
0x003f45b5 NativeValueWithERC()
0x0048195d FailedToMint()
0x004afbf4 ZeroTimelockOwnerAddress()
0x005318ee Math__sub_overflow(uint256,uint256)
0x00544b2c ForbiddenCall()
0x0056b3a7 INCOMPLETE_ROUND()
0x0065eb53 OTCEscrow_NotOlympus()
0x007ad4f8 DuplicateEntryError(string)
0x007af3d5 IncorrectPeriod()
0x0080de89 PASS_REQUIRED()
0x00834385 ZoneAlreadyExists(address)
0x0084b0cb PreSaleIsNotOpen()
0x00883d3a CannotStakeTimeLockedItem()
0x008b5315 ContractsNotAllowed()
0x0090ee3a PokerBound()
0x00919bed JobTokenInsufficient()
0x0095e2cc IndexNotFound()
0x0098b41c FJORD_WhitelistMintEnded()
0x009ac0b4 NotEnoughEth(uint256,uint256)
0x00a0dbbb MaxQtyExceeded()
0x00a5a1f5 TokenAlreadyMinted()
0x00b132e0 CapsuleLocked()
0x00b7b97e LoanNotRepaid()
0x00bfb6ab InsufficientPower(uint256,uint256)
0x00bfc921 InvalidPrice()
0x00c0f299 WithdrawFail()
0x00c1367a TooLowRange(uint256,uint256)
0x00c90287 MinLiquidityOutError()
0x00d09c43 InsufficientFundsToBuy(uint256,uint256)
0x00d58153 OwnershipNotInitializedForExtraData()
0x00de313f PriceErr()
0x00ecac01 SaleIsNotActive()
0x00ed7556 OnlyBentoBox()
0x00f20c5d NoSuchKeyset(bytes32)
0x00f9d549 CP_NoPermission()
0x00fa072b FailedOp(uint256,address,string)
0x00fd1bd5 WithdrawInRefundPeriod()
0x00fd66a9 InvalidCurrentStatus()
0x0105f9c0 NonSequentialBatch()
0x01073e94 JobLiquidityUnexistent()
0x0107db85 MintMinSupply()
0x0111b33a ReferalCodeHasAlreadyBeenAssigned()
0x011c1c4a TokenAlreadyRedeemedError()
0x0120268c InvalidUInt64(uint256)
0x012668db MintExceedsMaxAllocation()
0x0127b475 positionAlreadyClosed()
0x012834ae JobUnapproved()
0x01284fd2 InvalidLogicCallNonce(uint256,uint256)
0x012ca0b8 UnexpectedSwapPlan()
0x0137ef78 LeftOutsideField()
0x01437d88 FETH_Expiration_Too_Far_In_Future()
0x01485c8f InvalidStash()
0x014c5020 NotEnoughSigners()
0x0152d868 FJORD_FjordIsNotActive()
0x015be56a IERC721_NON_ERC721_RECEIVER(address)
0x01664123 DonationRequired()
0x01687851 LW__exec__notOwner()
0x016c2aa6 MyNftCollection__AllowlistSaleClosed()
0x016c69db NFT_MAX_RESERVE(uint256,uint256)
0x016ebc80 TokensThatDontExistDontHaveDataOrDoThey()
0x016ff5b2 InvalidCosignSignature()
0x017933b4 PriceMustBeMinimumOne()
0x017cc76a ErrorME24InvalidProof()
0x017e0f56 OnlyRegistrar(address,address)
0x01802671 ZeroAmount(bytes32)
0x01868fb8 Error_InvalidInput()
0x018bd289 FulfillRequestRedrawn()
0x018d10be OnlyLink()
0x01a9d801 CollectionDataLocked()
0x01adf572 ItsTheSameGenerationYoureNotChangingAnything()
0x01aebcb3 AmountExceedsPresaleLimit()
0x01b09f9f IOwnable_NOT_OWNER()
0x01c50729 CantExploreMore()
0x01ca6e9a TokenOwnerOnly()
0x01d27831 OrderOOB(address,uint256,uint256)
0x01d58427 TransferToNonERC5050ReceiverImplementer()
0x01d65ae5 CallerNotTheOwner()
0x01da1572 InvalidOffset()
0x01de8c6d POOL_NOT_FOUND()
0x01e069da SquishiverseItem__HitMaximumSupply()
0x01ea64e8 mintDeadlineReached(string)
0x01f32356 Hootis__TransferFailed()
0x01f4f2d4 QuantityToMintTooHigh()
0x01f53d4c nonExistentTokenID()
0x01f65dd7 SenderNotChild()
0x01f83c78 ERC1155ReceiverRejectedTokens()
0x01f903bc PullFailed()
0x01fc29a8 InvalidEditionData()
0x01fc8010 PandaNft__MaxPerAccountReached()
0x01ff16ca RelicAlreadyWellStudied()
0x0205ca99 NotFeeCollector(address)
0x0208bf39 Owner__initOwner__invalidRecoveryOwnerAddress()
0x020aec17 SMP_OnlyMinter()
0x0211402e ErrMintAndAirdropDisabled()
0x02175c17 OnlyATokenMinter(address,address)
0x021cba9f NotWorked()
0x02224726 Exchange_Invalid_Start_Price(uint256,uint256)
0x02271309 VF_NO_ETHER_BALANCE()
0x022866ce PalettesPigeonsMismatch(uint256,uint256)
0x022e42d0 InvalidChunk()
0x022ecd54 NftIDOutOfRange()
0x023abf81 BatAlreadyClaimed()
0x024cc1c9 WrongNFTReceived()
0x0251bab5 VaultInvalidVault()
0x02549074 InvalidSiloRepository()
0x0260623c CannotWithdrawTimeLockedItem()
0x02625197 MaxStageMint()
0x02635fe0 MintSaleNotActive()
0x0268e9a1 GovernanceRecoverTooSoon(uint256,uint256)
0x026a32f5 OnlyAvailableToAdmins()
0x026fe2ee AA__withdrawDeposit__insufficientBalance()
0x027f4807 NotVaultManager()
0x0283099b PreSaleNotStarted(uint256)
0x02882d50 VaultFYActions__buyCollateralAndModifyDebt_overflow()
0x02899002 numberTooBig(uint256)
0x0289ca6c PreviouslyInitialized()
0x028f351d SupplyInitRevealedTokensWhileInitUnrevealedMintingNotPaused()
0x0295aa98 NotZero()
0x029bc899 MaxFeeNotMatch(uint256,uint256)
0x02a3e698 RecipientMismatch(bytes4)
0x02b9f427 OnlyTwoMintsPerWalletDuringPresale()
0x02bd6bd1 Access_OnlyAdmin()
0x02ca558b Auction_Sale_Amount_Cannot_Be_Zero()
0x02cbc79f UnexpectedCall()
0x02cda8fe UnauthorisedCaller()
0x02cf63b1 Fibswap__addSwapRouter_alreadyApproved()
0x02d715c2 AdminZeroAddress()
0x02e61702 CannotSettleBeforeMaturity()
0x02ec9f73 IncorrectVestId()
0x02f842a8 LUSDAllocator_TreasuryAddressZero()
0x03019b95 PrimeZeroQuantity()
0x03083088 OnlySupplier(address,address)
0x03144823 NotCapsuleOwner(address)
0x033ebefd MetaTrekkers__NonexistentToken()
0x03421124 StageSupplyExceeded()
0x0345ad62 InvalidOptionId()
0x0348eb58 CollectionTooSmall()
0x034a8fdc NonexistentId(uint256)
0x034d5399 RC_OnlyLender(address)
0x035515e3 ERC1155_NotApproved()
0x035fce5b TimestampNotPassedError(uint256,uint256)
0x0364eed2 OperationFailed()
0x0377a3d8 TransferToContractForbidden()
0x037973d6 MintNotEnough()
0x037c597f NotActivated()
0x037f60e5 ExceedMintLimit(string)
0x038118f2 BorrowNotPossible()
0x038ae79e MintedTooMany()
0x03962a7b ExceedsPublicMintLimit()
0x039f2e18 NotStaked()
0x03a0e277 AccountDoesNotExist(address)
0x03a886fc InvalidBaseContractURL()
0x03acfc86 NoLossCollateralAuction__takeCollateral_needsReset()
0x03b16ea5 TrainingNotEnabled()
0x03b356bb ErrTotalSupplyExceeded()
0x03b6c177 NoRemainingPresaleMints()
0x03b6ff88 CurveDepositPoolReverted()
0x03c18cf8 NotAFounder()
0x03c908d2 NotInRetreating()
0x03e118e2 MintForPreExistentToken()
0x03e21ec2 FulfillRequestWithTokenNotOwnedByWinner()
0x03e231b9 ExceedsMaxRoyaltiesPercentage()
0x03e8f3a6 Direct_Sale_Not_Enough_Ether_To_Buy()
0x03eb8b54 InsufficientFunds(uint256,uint256)
0x03ed501d InvalidUUID()
0x03f9bcf2 ArtDataExists()
0x03fbb387 Tenebrae__skipAuction_overflow()
0x04087ba7 WhiteListClosed()
0x04096586 CerbyBasedToken_ContractIsNotPaused()
0x040ef8ec InvalidStakeAmount()
0x0413bccc INVALID_ASSET_ID()
0x0415a836 UnknownAmount()
0x0416bc16 InvalidMintPrice()
0x04194c2c InvalidLockState()
0x043233f6 WithdrawAndUnwrapFailed()
0x04374c68 PublicNotActive()
0x0444d035 OwnershipInvalid()
0x044a6c9d CantSendEthersToWallet()
0x04536519 AddressNotFlagged()
0x0465d635 InterestRateModelDidNotChange()
0x046a2bfb ChunkHasBeenAirdropped()
0x0474812a MintZeroAddress()
0x0483b2fe NoPriceProviderForAsset()
0x0484acf1 EntryAlreadyExistsError()
0x0486d58d NeedToSendMoreETH()
0x0491632f Max5MintsPerTxn()
0x049491b0 TRANCHE_EXPIRY_MISMATCH()
0x049c97cc AddressesAndQtysLengthAreDifferent()
0x04a1d45a ExceedsMaxBasisPoints(uint16)
0x04a5e67c AuctionExpired()
0x04a6f0ea NO_STREAMS()
0x04cc9ce2 WhitelistNotActive()
0x04ce7a46 EllipticCurveAdditionFailed()
0x04cf9120 TicketType()
0x04e71ad6 BorrowOnCompoundFailed()
0x04f186ef MintInvalidSignature()
0x04f1ac1e TransferToDeadAddress()
0x04faf3c5 TotalPublicSupplyReached()
0x0503c3ed NoSwapDataProvided()
0x0504a20d AccessDenied(address)
0x0507a5c0 ApprovalError()
0x0510cc45 SignatureNotMatch()
0x051d2bf4 EditionNumberMustBePositive(address)
0x05332224 AccountNotWhitelisted()
0x054085ce ZeroAddressNotAllowed(address)
0x054453df NotJesus()
0x05485b54 INVALID_POOL()
0x0551b8de NotAvailable(uint256)
0x055d6219 NotEntrustedOrInYourPossession()
0x0561bfa7 AmountMustBeNonZero()
0x0568cbab NotERC721Receiver()
0x05698a80 MasterChefStrategy_Invalid_Address()
0x056af743 CommissionPayoutFailed(uint256)
0x056f5c8c MaxBuyNotMatch(uint256,uint256)
0x0581917a WalletCanOnlyMintNMore(uint256)
0x058d9a1b NotPendingAdmin()
0x0590c513 GlobalWalletLimitOverflow()
0x0590fdf3 FeeNotPaid()
0x0593f6e2 NoConvertibleVNL()
0x05954a1d Dugo_FunctionLocked()
0x059831f7 PayingOutBeforeOfferTaken()
0x05a20600 MaxTokensPerTransactionExceeded(uint256,uint256)
0x05a2a96e NameUnavailable()
0x05a48e0f TooManyConsumers()
0x05a612e3 InvalidVotingPeriod()
0x05b0303e E_ContractIsPaused(string)
0x05b0bff1 DixelClubV2__InvalidRoyalty(uint256)
0x05b2b476 AmountExceedsCap(uint256,uint256,uint256)
0x05b474dd InvalidCopyAmount()
0x05b49f45 ThiefIsHiding()
0x05b54785 NotFoundBeacon()
0x05bb467c InvalidAdminAddress()
0x05bb6f29 MintRandomnessAlreadyRevealed()
0x05bbb113 YieldDirector_NotYourYield()
0x05bd2827 MaxPurchasesReached()
0x05c40665 MinterOnly()
0x05d9c4f2 StrategyETHSwapDataEmpty()
0x05e5a82e FunctionNotAllowed()
0x05ef58b4 PAIR_ALREADY_EXISTS()
0x05f3ac08 CallerNotEOA()
0x05f3e8b8 Rewarder1_PoolExisted()
0x05fc177f TargetInvalid(address)
0x060ec3d8 InvalidTokenURIQuery()
0x06219d8d UnStakeFirst()
0x0625bf0a PermitDeadLineExpired()
0x0627070d SenderPendingProposal()
0x06290e4e MintNotStarted()
0x062948b2 NonZeroDebt(uint256)
0x06317ee2 InsufficientAccess()
0x0633bff2 NonMinter()
0x06427aeb InvalidNonce(uint256,uint256)
0x06429774 CallerIsNotManager()
0x064a479b UNREGISTERED_PAIR()
0x06551f4d MissingAmount()
0x065af08d IdenticalAddress()
0x065cd531 ONLY_PENDING_OWNER()
0x0661b792 MaxSplaining(string)
0x066aa27b NotEarlierThanOriginalDate()
0x066d78c4 Cellar__InvalidCosmosAddress()
0x067ebc70 ConfigurationBalanceMishmatch(uint256,uint256)
0x06838c13 CallerNotNFTContract()
0x0698ebd1 UnstakePeriodExpired()
0x069fcdf3 RollsAreImmutable()
0x06a22f29 OnlyGovernorOrMechanic()
0x06b23a10 BeforePremintStart()
0x06b2f1c7 BelowMinimum(uint256)
0x06bc1040 KeepersMustTakeTurns()
0x06c25258 Fibswap__removeSwapRouter_invalidArgs()
0x06c78984 MethodNotFound()
0x06cc02d1 InvalidSilo()
0x06d8385a MsgValueNotMultipleOfIdsLength()
0x06d919f2 CallerNotAdmin()
0x06dcfd23 IncorrectBuyToken()
0x06de6c6e InvalidDstChainId()
0x06df2bcb FailRewardUpdate()
0x06e03f34 RingStaking_Stakind_Ended()
0x06e70cb2 NoZeroValues()
0x06e94851 RequestedIncorrectAmount()
0x06ecbc54 CallbackNotCalledByHub()
0x06f03003 IncorrectCycleStartTimestamp()
0x06f6808b InvalidTicketPrice()
0x06f7035e LowLevelDelegateCallFailed()
0x06fb10a9 NotAllowlisted()
0x0700a8ec AmountExceedsLocked()
0x070ecc80 InvalidSerumId()
0x070f3fb1 InvalidAdoptionQuantity()
0x07237786 SalesActivation__ClaimNotStarted()
0x0729ab10 OdysseyMarket_InsufficientFunds()
0x072b78c7 Untransferable()
0x07396007 NotRollupOrOwner(address,address,address)
0x073a11f3 ProvenanceLocked()
0x0748c452 PreSaleQtyHasReached()
0x074bb27f InvalidMintingCap()
0x074f1363 TokenOwnershipRequired(uint256,address)
0x074f16d5 AswangTribe_EggNotHatched()
0x07572477 AvailableBalanceTooLow()
0x075fd2b1 UNAUTHORIZED()
0x07637bd8 MintFailed()
0x0766ebc2 WrongCToken()
0x07695030 TokenVault_InvalidTreasuryFeeRate()
0x07703f00 USR_RewardTooLarge()
0x0780727f NotExistingAuction(uint256)
0x0790cf1e WardenNotOperator()
0x0790d4e3 ContractExpired()
0x07953e9a NotEmergency()
0x07985a75 ConfigError(string)
0x079902fb NoGovernorZeroAddress()
0x079bb6b0 onlyWhitelistedAllowed()
0x079ed435 NotAHistoricalToken()
0x079f779c TokenVault_CannotWithdrawStakingToken()
0x07a5cc60 InvalidPhotoData()
0x07ae5744 NotBuyable()
0x07b1849d MissingSystemAddress()
0x07b8358f MintReachedMaxSupply()
0x07b91862 InvalidLayerId()
0x07bb459b cannotWithdrawMoreThan10Eth()
0x07c266e3 RetryableData(address,address,uint256,uint256,uint256,address,address,uint256,uint256,bytes)
0x07cc6bf6 ExceedsMaxPerWallet(uint256,uint256)
0x07cfc1ac NoCanDo()
0x07d54b34 Permissions__CanOnlyRenounceForSelf(address,address)
0x07d57dc2 NoLossCollateralAuction__takeCollateral_noPartialPurchase()
0x07de2154 InvalidMultisig()
0x07ebb5b6 GasUsageNotSet()
0x07f75a1f OneRingCurveRouter_Incorrect_Slippage()
0x07fc4a70 Auctioneer_MarketConcluded(uint256)
0x08063cab VaultCannotDepositWhenYieldNegative()
0x08071741 LockNotKickable()
0x08094908 UnauthorizedSender()
0x08097273 STATE_NoEmergencyUnstake()
0x0809740d JobAlreadyAdded()
0x0811e42a Exchange_Unmatched_Quantity(uint256,uint256)
0x08148803 FailedRefund(address,uint256)
0x0819bdcd SignatureExpired()
0x081aef8e NotMagicCRV()
0x081fed3e AmountExceedsTicketsAvailable(uint256,uint256)
0x08343ac1 ZeroAmountTransfer()
0x0846fdf0 QueryBurnedToken()
0x08498202 NotForToy()
0x0849b496 UNSUPPORTED_UUID()
0x084df959 Only_Staking()
0x08545ce2 InvalidIndex(uint256)
0x085de625 TooEarly()
0x085e7fef CallerNotCurrentReceiver()
0x087099bd Owner__initOwner__invalidOwnerAddress()
0x087426b1 LiquidityRestricted(uint256)
0x08763c58 SetApprovalForAllTargetOperatorIsCaller()
0x0876601b NotEnoughSmokableMaterialLeft()
0x087bd140 WhitelistSaleInactive()
0x0884f430 RepositoryAlreadySet()
0x088734d9 NFTContractAlreadySet()
0x0888c910 Tenebrae__closePosition_debtNotZero()
0x088a874c OnlyOwnerAllowedToTransferOwnership()
0x089059ab UnauthorizedBlacklister(address)
0x08927dbf ZeroValueError()
0x08950648 TWG_InvalidValue()
0x089aba7b CrypTip__ValueMustBeAboveZero()
0x089c9987 RefundNotAllowed()
0x08a0c943 InitUnrevealedTokenMintingIsPaused()
0x08a69c7f MintShouldBeOpened()
0x08bda4d6 GAS_REFUND_FAILED()
0x08bec53d AddressHasAlreadyMinted(address)
0x08c379a0 Error(string)
0x08ca5038 MintQuantityLargerThanMaxPerTX()
0x08d4abb6 WriteError()
0x08d7ec5b TokenIdAlreadyMinted()
0x08dae4ac DISTRIBUTION_AMOUNT_LIMIT_REACHED()
0x08e08454 Error_NotOwner()
0x08e22eae OUT_OF_RANGE()
0x08e8b937 InvalidExpirationTime()
0x08ebbd06 AuctionManager_AuctionEnded()
0x08f3c30c ST()
0x08fc7fce RateNotSet()
0x08ff0d0e LockNotUpperThanTwoYear()
0x09076b20 TrancheAlreadyExists(address)
0x090d06ba SetCollateralFactorOwnerCheck()
0x090d265c NotChadOwner(address,uint256)
0x090f420c NftMarketplace__NotApprovedForNft(address,uint256)
0x0913ae00 OdysseyERC1155_AlreadyInit()
0x091fe61c NotYourToken()
0x09247470 IneligibileTierUpdate(uint256,uint256)
0x0926345f AlreadyCastedVote()
0x092a8dc9 Flash__setParam_unrecognizedParam()
0x0937f52f CompRedeemError()
0x093a1301 RewardsNotStarted()
0x093b290f NotInSquad()
0x093e1cdb ProtectedToken()
0x094701c2 MyNftCollection__InsufficientFunds()
0x095040fa InsufficientTimeRemaining()
0x095bf333 InsufficientShortfall()
0x095f4a51 FeeTierDoesNotExist(uint256)
0x09646b07 ERC721_QueryOnZeroAddress()
0x096d7ecf NftMarketplace__PriceMustBeAboveZero()
0x097b027d BrokenStatusesDiffer()
0x097e1d9b AlreadyDrawn()
0x097f8f34 InvalidModuleAddressToPass()
0x098bf05c PSNotStart(uint256,uint256)
0x098c3d69 NoRefundableValue()
0x098fb561 InsufficientInputAmount()
0x0992f7ad InvalidProposalId()
0x0995c9d5 NotQueuedError(bytes32)
0x0998fbbd FeeRecipientNotPresent()
0x099d5d11 Strategy_TotalSlippageWithdrawal()
0x099dd247 MintWouldExceedAllowedForIndvidualInWhitelist()
0x09a9fccd LiqualityHTLC__InvalidMsgValue()
0x09afe5c5 ExceededMaxPerTransaction()
0x09b77413 ErrorETHValueTooLow()
0x09bb8bdc LaserState__initOwner__invalidAddress()
0x09bde339 InvalidProof()
0x09bf618f NonEmptyTokenId()
0x09c5ac85 LW__exec__callFailed()
0x09cfb455 MismatchedFulfillmentOfferAndConsiderationComponents()
0x09d9d024 ETHDKGRoundRunning()
0x09dd1236 AlreadyDisputed()
0x09dfb909 Initialised()
0x09e9cd49 SendNotAllowed()
0x09ee12d5 NotAContract()
0x09fcb59c OutOfTokens()
0x09fdbc81 DoesNotOwnToken(uint256)
0x09fdca1b StrategyManager_Not_Enough_Money()
0x0a0c23ee NoBidPlaced()
0x0a1b636c AddressAlreadyValidator(address)
0x0a1df327 ContractMustNoLongerBeApproved()
0x0a20ba14 IncorrectTransferAmount()
0x0a309431 InvalidClaimInput()
0x0a339340 VaultNoPerformanceFee()
0x0a33c980 ZeroTwapPeriod()
0x0a344953 OnlyClaimer()
0x0a440713 TransferAmountNotCoverFees()
0x0a47c558 DuplicateAddress()
0x0a4c5cc8 RoyaltyValueOutOfRange()
0x0a53b05d TokenVault_CannotStakeZeroAmount()
0x0a5f3665 ZeroMintQuantity()
0x0a61fb84 YieldDirector_WithdrawalsDisabled()
0x0a6b91be CygnusNebulaOracle__Uint224Overflow()
0x0a6f932d MintEnd()
0x0a776c40 ErrorJustifiedAlready()
0x0a86c02a OnlyOwner(address)
0x0a87e139 Sanity_Check()
0x0a8a6a46 SenderNotExecutorError(address,address)
0x0a8d08b1 LiquidityPairUnexistent()
0x0a917d37 ClaimPaused()
0x0a9feeec ArrayMismatch(uint256,uint256)
0x0aa08757 AllowlistClosed()
0x0aa45730 Scales_InvalidTokenAmount()
0x0aa6aef7 PRBMathUD60x18__AddOverflow(uint256,uint256)
0x0aab7baf OnlyTakesVMTokens()
0x0ab67a72 Vault1155Actions__enterVault_zeroVaultAddress()
0x0ad174ab NonValidRandomWords(uint256)
0x0ad981cc BaseDropTooLow()
0x0ae3514d AlreadyStaked()
0x0ae77720 NoOracleSet()
0x0af806e0 InvalidHash()
0x0afaf133 CannotHaveMoreThanOneAddressInRole()
0x0afd1972 MustMintFromEOA()
0x0b089cc8 InvalidRenderer()
0x0b12853c ExceedsReserveBatchSize()
0x0b17a17b ExceedsMaxSupplyError()
0x0b196999 WrongRate()
0x0b1b4e55 WhitelistNotEnabled()
0x0b21e297 IV_InvalidTokenId1155(address,int256)
0x0b2254ed OwnerInvalid()
0x0b2c866c ErrorPaymentDeficit(uint256,uint256)
0x0b2d3073 VaultCannotTransferOwnershipToSelf()
0x0b309075 USR_MinimumDeposit(uint256,uint256)
0x0b3465c2 AlreadyBought()
0x0b39e1bc notExists()
0x0b3bfdc5 OUTPUT_A_EXCEEDS_252_BITS(uint256)
0x0b3c0f0c ErrorCreatingFunder()
0x0b56c318 NotSkribbleOwner(address)
0x0b586af5 CantCancelExecutedProposal()
0x0b7b8dc6 NotEnoughVotes()
0x0b7d62e2 BatchTooLarge()
0x0b8a724b PathNotMinimal(uint256,uint256)
0x0baa06ba SenderNotAdminRecovery()
0x0bbf9c4d ExceededSupply()
0x0bd04acc SSR__removeGuardian__invalidAddress()
0x0bd662a5 Fibswap__xcall_tooBigSlippage()
0x0bd78de8 VaultFC__exit_overflow()
0x0bd8a3eb SaleEnded()
0x0bdd660c VaultCannotWithdrawWhenYieldNegative()
0x0be64b6e DebtAuction__closeAuction_notLive()
0x0beb0ea1 VRFHasNotReturnedYet()
0x0beb27ba InsufficientCollateralError()
0x0bebdb8b LS__initRecoveryOwners__underflow()
0x0bee6072 InvalidWithdrawalWallet(address)
0x0bf1bcdf LS__activateWallet__invalidOwnerAddress()
0x0bf46a9b AwwwwooError()
0x0c00f214 presaleTokenNotAvailable()
0x0c03962a UnregisteredVault(address)
0x0c05e519 NullMaxDuration()
0x0c1c9c40 RatioNotLowerThanBefore(uint256,uint256)
0x0c275d9e USR_SamePosition(address)
0x0c3dba2a HashError()
0x0c3e7559 SALE_NOT_LIVE()
0x0c5195be DixelClubV2__PublicCollection()
0x0c540f21 WouldPassSupplyCap(uint256)
0x0c5473ba NonexistentVault()
0x0c61d1f6 InvalidSherAmount(uint256,uint256)
0x0c62a72d InvalidBidIncrease()
0x0c65b0f0 RefundCallerNotOwner()
0x0c675c29 RenderDisallowed()
0x0c73eb05 ComptrollerMismatch()
0x0c74abe8 MigrationRequired()
0x0c760937 InvalidImplementation(address)
0x0c7c8d7f InvalidProof(bytes32[])
0x0c7ee8ff UnauthorizedERC2981()
0x0c929e14 SignerCannotSignWork()
0x0ca3305e USR_TooManyDecimals(uint8,uint8)
0x0cb4a9a5 WithdrawFailedFounder()
0x0cbe1b12 VaultFY__initialize_invalidUnderlierToken()
0x0cc4bab9 HasClaimedError()
0x0cc90984 NonCoordinator(address,address)
0x0cdcd020 QuantityMustBeGreaterThanZero()
0x0ce0d58a CannotChangeStartTokenId()
0x0ceb7ecf TraitOutOfRange(uint8)
0x0cef7833 ExceedMaximumPublicSupply()
0x0cf4d030 CustomDuckLimitReached()
0x0cf4f0b3 AlreadyRole()
0x0cf66dec VaultFCActions__vaultRedeemAndExit_zeroToAddress()
0x0cf90f4b ClawbackLocked()
0x0d069d94 ExceedsSupplyLimit()
0x0d15fae9 SiloVersionDoesNotExist()
0x0d33372e NotMultipleOfMaxBatchSize()
0x0d35e921 IncorrectPayment(uint256,uint256)
0x0d38adfa StrategyNotEnoughETH()
0x0d4244d0 VaultFYActions__underlierToFYToken_overflow()
0x0d50c222 INVALID_CALLER()
0x0d52b2b6 OnlyFeeReceiverOneCanDoThis()
0x0d57d92a ValidatorAlreadyAdded()
0x0d5ce69a NoBurnVaultError()
0x0d5da546 GenericConsumer__EntryFieldOracleIsNotContract(uint256,bytes32,address)
0x0d71c2d3 GenericConsumer__LotIsNotUpkeepAllowed(uint256)
0x0d7251e1 BindingNotAllowed()
0x0d78f1df NewWithdrawalWalletIsNullAddress()
0x0d89438e DelegateCallNotAllowed()
0x0d9f4fae KEY_NOT_VALID()
0x0da4274a TooEarlyToClaimRemainder()
0x0da74e7a EntryNonExistentError()
0x0db118b2 CannotExceedPrereleaseCap()
0x0db7e4c7 InvalidSplit__AllocationMustBePositive(uint256)
0x0db90c61 signatureInvalid()
0x0dc149f0 AlreadyInitialized()
0x0dc7722a InvalidMappingsInput()
0x0dd32d1c WrongPayment(uint256,uint256)
0x0dd6a9d2 TokensNotTransferred(uint256,bytes32)
0x0ddac30e OwnerIndexOutOfBounds()
0x0ddea697 LC_ReusedNote()
0x0de050b5 Fiat24UsdcTopUp__NotOperator()
0x0de71155 IssueOnSettle()
0x0decf160 DidNotSendFTMToTaxManager()
0x0deeedc0 MaxDevMinted()
0x0df8f278 MustBeGreaterThanTotalSupply()
0x0dfc0c99 UhOhTheGenerationYouRequestedIsNotEnabled()
0x0e0b9a01 CallError(bytes)
0x0e130bd4 FragmentGroupShouldExist(bytes16)
0x0e13b69d SimulationOnlyEntrypoint()
0x0e18596a MaxStaked()
0x0e23cd4b UnchangedRelocationMode()
0x0e30cf0f CerbyCronJobsExecution_TransactionsAreTemporarilyDisabled()
0x0e3b65cb OneBlockOneFunction()
0x0e3e1166 SeriesNotLoaded()
0x0e442a4a InvalidBaseToken()
0x0e4b1c82 NumRandomBatchesMustBePowerOfTwo()
0x0e4c06c8 ERC2612InvalidSignature()
0x0e5e3b3f ContractUnpaused()
0x0e620e23 LockedToken()
0x0e7198ef CCASaleIsEnd()
0x0eac8973 LiquidateAccrueBorrowInterestFailed(uint256)
0x0eb911d5 InvalidRights()
0x0ebeec3c MigrationNotPermitted()
0x0ec07d06 MintQuantityExceedsMaxPerTransaction(uint256,uint256)
0x0ecbff3c TheFromAddressNeedsToBeTheOwnerPlease()
0x0ed69b86 ColorAlreadyMinted(uint256)
0x0ed6f645 ProofInvalidOrNotInAllowlist()
0x0ed9cff4 UnknownToken(uint256)
0x0ede9759 AgentNotFound(uint256)
0x0eec1fd3 ReentrancePrevented(address)
0x0eeca4a4 LastManStanding()
0x0ef4b931 NotMemeber(address)
0x0efea6bf Limes__liquidate_nullAuction()
0x0effdae4 ConfigNotFound(uint256)
0x0f0aaf73 EntryNotInChangeError()
0x0f0cdd02 MaxGasZero(int256)
0x0f14b92e MaxSupplyZero()
0x0f19dca3 NotOnWhitelist(address)
0x0f2397b4 NotOnFreeMintlist()
0x0f25bbaa NativeSenderBadRole(bytes,uint256)
0x0f2e5b6c Locked()
0x0f3f8610 NoTokensToClaim()
0x0f425d24 ExpiredOffer()
0x0f44c880 StrategyStabilityPoolCannotBeAddressZero()
0x0f5b33f0 MaxSupplyMustBeMinimumOne()
0x0f5fbd9f InvalidPurchasePosterTypeId()
0x0f6268c2 VaultDepositLocked()
0x0f634fbe OnlyFactory(address,address)
0x0f63dbb1 ParticleAlreadyExists()
0x0f6e1a72 OnlyPendingGov()
0x0f7085be InvalidCard(uint8,uint8)
0x0f7b21f2 Dugo_InvalidMaxSupply()
0x0f7c5d73 InvalidNumOfPacks(uint8)
0x0f7eff3a TokenNotEligible()
0x0f87130b Scientists_ScientistAlreadyMinted()
0x0f8dc4f7 AddressZeroNotValid()
0x0f8eeedb Killed()
0x0f911d71 AuctionBidInvalid()
0x0f9d7454 YieldTokenDisabled()
0x0fa86bbc DuplicatePieceId()
0x0fa894ad MintToZero()
0x0fb2645f maxPhaseKeeny()
0x0fbf2263 Error_InvalidMintTime()
0x0fc3ab63 NoEnoughCallbackGas(uint256,uint256)
0x0fc9e0c2 UsedBiggerThanAllowance(address,uint256,uint256)
0x0fcba3be DixelClubV2__InvalidCost(uint256,uint256)
0x0fd63222 ReservedTokenSupplyExhausted()
0x0fd882ab BaseAllocator_AllocatorNotOffline()
0x0fd8a767 RC_CannotDereference(uint256)
0x0fdcade4 PublicMintStopped()
0x0feb0868 Unmigratable()
0x0feba81d MyNftCollection__TransferFailed()
0x0ff59bb6 AlreadyProxied()
0x1003153a NotEnoughWithdrawals()
0x1003181f AwwoooooOnly()
0x1006f1bf sUckERuSeD()
0x1009968f PaintNotOpen()
0x100a4c60 QueryBalanceOfZeroAddress()
0x10165730 MintToExistingOwnerAddress()
0x1027306d AddressQuantitiesMismatch()
0x1027aa0b InvalidSign()
0x102f8cfa AlreadyStrategy()
0x10332dee CallerNotUnPausableAdminException()
0x1034170c SetupNotCompleted(address)
0x1044051e NonEqualArrays()
0x10502ef9 InvalidBridgeConfigLength()
0x105d675f TooManyGoats()
0x105f2f4c AddressAlreadyFlagged()
0x106323b4 NotAWhitelistedAddress()
0x107024af CCVault_NO_REWARDS_EARNED(address)
0x107619cb NonOwnerOrOperator()
0x10762d50 PaymentError(string,uint256,uint256)
0x10800712 LW__recovery__duplicateSigner()
0x1086b1d9 Exchange_Wrong_Price_Value()
0x1087b037 OnlyMutators()
0x108e3d65 FarmingIncentiveFundCantBeAddressZero()
0x108ef443 CallerIsNotLootHolder()
0x1092d33a InvalidOperators()
0x10a79a5b NotValidJob()
0x10c004bc CErc20RedeemError(uint256)
0x10c6aff5 Strategy_AlreadyInitialized()
0x10c70e78 NotEnoughData()
0x10d33c34 ERC1155_MismatchingArraysLength()
0x10d7bcc5 ToEarly(uint256,uint256)
0x10df17a5 TooManyTeamMints(uint256)
0x10df1871 DisputerNotParticipatingInRound(address)
0x10e76e48 VSInvalidCliff()
0x10eb7234 InvalidOracleResults()
0x10f27652 Initialized(address,address,uint256)
0x10f9785e Fiat24UsdcTopUp__ETHAmountMustNotBeZero()
0x10fda3e1 OrderAlreadyFilled(bytes32)
0x11011294 InsufficientValue()
0x1104a786 BadArrayLength(uint256,uint256)
0x1109ddc0 NotCommunityAddress()
0x111c4409 NotMatured()
0x11242bc0 ExceedsMaxMintsAllowlist(uint256,uint256)
0x1124896d NoRefundQuota()
0x112504ea CurationLimitExceeded()
0x112f287b MintInsufficientPayment(uint256)
0x1132aedd TokenIdHasAlreadyBeenLockedByCaller()
0x113a84ee TransferComptrollerRejection(uint256)
0x114c9f78 DepositRestricted(uint256,uint256)
0x115eb99b OnlyBurnerError()
0x1165a652 DeltaNeutralVault_PositionValueExceedLimit()
0x11688601 ParameterOutOfBounds()
0x116f3043 ERC721Offsetable_CollectionNotRevealed()
0x11724cc6 BatchTimedOut()
0x1178532d AmountMustBeIncrementOfStakingIncrement()
0x117c33f3 AccessControl_MissingRole(address,bytes32)
0x117cdf25 Math__div_overflow(uint256,uint256)
0x11845c21 ErrForbidden()
0x11878407 NeedMoreEther()
0x1193ce71 UnsuitableRelativeComparison()
0x119522cf PassOpeningIsClosed()
0x119a7545 IncorrectFee(uint256,uint256,uint256)
0x119bce39 InvalidV()
0x119d7297 InsufficientEnergy(uint256,uint256)
0x119e0505 DifferentAmountSpent()
0x11a1c027 AlreadyFeeCollector(address)
0x11a1e697 InvalidRegistry()
0x11a3fbc6 NoDebt()
0x11a5deb7 LimitedMaxSupply()
0x11b61b6a AlreadyConfigured()
0x11b66a13 WrongValueSentForMint(uint256,uint256,uint256,uint8)
0x11c763d6 TooManyActions()
0x11c767fe ProjectIsMintedAsSeries(address)
0x11cda36c InvalidAccount(address,uint8)
0x11cfd2ad CanNoLongerCall()
0x11d720db ValidatorIsActive()
0x11d74fb8 THIRD_PARTY_CONTRACTS_FLAG_NOT_SET()
0x11d782cf LayerAlreadyBound()
0x11e17887 FrozenMetadata()
0x11e5240f ExceededDepositAmount()
0x11e86f73 UnequalArrayLengths()
0x11ffc7cb FlagZeroAddress()
0x12119202 CurveWithdrawSlippageHit(uint256,uint256,uint256)
0x1221702c MerkleSetterError()
0x123146a6 UnexpectedValue()
0x1239acf0 STILL_VESTING()
0x123ee023 IncompatibleTokens()
0x124403c8 InvalidGeneralSaleQuantity()
0x124550f0 ItemsContractAddressNotSet()
0x12469ef5 RocketPoolGetEthValueReturnedZero()
0x124e2ec8 MaxJuiceSupplyReached()
0x125197d1 NFTMarketReserveAuction_Cannot_Bid_On_Nonexistent_Auction()
0x1258e443 InvalidSlot()
0x125c19b0 IERC721Enumerable_INDEX_OUT_OF_BOUNDS(uint256)
0x1260c112 MandatoryWithdraw()
0x127cd562 InputAddressCanNotBeAddressZero()
0x127f1c8e AccusedDistributedSharesInRound(address)
0x128cc95e QuantityExceedsTotalSupply()
0x129403ec Flash__creditFlashLoan_ceilingExceeded()
0x12a59152 NotMintable()
0x12b08a13 Exchange_Drop_Not_Started_Yet()
0x12b3b8ff KeyAlreadyUsed()
0x12b4401c AgentInstancesSlotsFilled(uint256)
0x12b7e4a9 InvalidCat()
0x12ba286f InvalidSelector(bytes4)
0x12ba7c24 StrategyLQTYSwapDataEmpty()
0x12c07acf Error_VaultSharesNotERC20()
0x12c1eee0 NotEnoughVestedTokens()
0x12c44af2 OwnerZeroAddress()
0x12c96854 UnexistentToken()
0x12cb9a0a OverMaxDebtRatio()
0x12d3f5a3 InvalidNativeOfferItem()
0x12d82e28 SalesNotOverYet()
0x12d8cb1c RewardsInPast()
0x12dece52 ExchangeNotEnabled()
0x12e0dacd TokenNotYetRevealed()
0x12e7f830 MustBeAKing()
0x12ec1834 ReferrerUnqualified()
0x1309a563 IsPaused()
0x130ebf39 ERC721ABase_InsufficientSupply()
0x1311dc6d BadSwapper()
0x131abd72 TokenNotStashed()
0x131bdfd9 OneMintCallPerBlockForContracts()
0x133249b8 InvalidTcrit()
0x13377826 ExceedingTreasurySize()
0x134defe8 Limes__setParam_unrecognizedParam()
0x135012bb AllMintingAlreadyEnded()
0x1353cce7 OnlyATokenBurner(address,address)
0x13658a81 ApprovalToCurrentOwner(address,address)
0x1365a370 UnknownBattle()
0x13666ea3 InvalidPresaleAmount()
0x13683d97 Limes__liquidate_overflow()
0x1369e1af NotBaked()
0x1378c9d9 DixelClubV2Factory__InvalidCreationFee()
0x1379a846 TOKEN_ALREADY_IN_USE()
0x13872147 VetoerOnly()
0x13881bf8 PublicSpotUsed()
0x1390f2a1 IndexOutOfRange()
0x13943a6a ClaimWindowNotOpen()
0x13947fd7 IncorrectMessagePreimage()
0x139aa600 BidTooLarge(uint256,uint256)
0x139ee28d ImageFileOutOfRange(uint256)
0x13a1a2ed MaximumMintsExceeded()
0x13a5d04f OnlyMintPostMerge()
0x13b55423 StartTimeTooLate(uint256,uint256)
0x13bcc66b AllBagFull()
0x13be252b InsufficientAllowance()
0x13ce6b31 IPausable_SALE_NOT_OPEN()
0x13d6d866 GreenGoldHempiClubSmartContract__TransferFailed()
0x13d73d6b MintingLimitExceeded(uint256,uint256)
0x13da22f2 NotActive(uint256,uint256,uint256)
0x13e6d44d TokenFrozenForFraudPeriod()
0x13e8b7fe NotArtists()
0x13ef11a1 DawnSamurais__MintLimitExceeded()
0x13f05809 TooManyTradesPerBlock()
0x13f1abe4 NotStakableContractAddress(address)
0x13f62487 ZeroAddressDestination()
0x13fc6779 EmptyPrevAddrError()
0x13fcc3bc AfterMaturity()
0x1400f5f4 CallerIsNotPanicOwner()
0x14042392 NoFactory()
0x140515b0 ExceedMintLimit(uint256)
0x141711f4 PublicSaleBidTooLow()
0x1418e85e NoOperatorRole()
0x14242cb6 IERC721_INVALID_TRANSFER()
0x1429a2f2 LiquidateComptrollerRejection(uint256)
0x142b8a35 MinterNotPledgeContract()
0x142bddf5 CallerNotAssetManager()
0x1430a115 InsufficientEarlyAccessSpotsError()
0x1433b3cd DebridgeNotFound()
0x143861ec InvalidDonationConfiguration()
0x143bbaa8 AirdropTotalMismatch()
0x14459490 CatAlreadyMinted()
0x14460f20 UnauthorizedMultisig(address)
0x14504e96 MaxQuantityPerTxReached()
0x145ccb7a BountyBoardMissingMinterRoleError()
0x1466ff86 TransactionCallFailed()
0x146bdfa9 INVALID_LINKED_BRIDGE_ADDRESS()
0x148c1871 MintExceedLimit()
0x148c44a6 Vault_Cannot_Deposit_Less_Than_Minimum()
0x148d3405 DixelClubV2Factory__BlankedSymbol()
0x14979d8b RedeemingNotReady()
0x149a8c26 NotEnoughNFTAvailableToMint(uint256,uint256)
0x149edee3 CommissionPayoutAddressIsZeroAddress()
0x14a18f45 NotEnoughCompValuesForOneOf()
0x14a2275f InvalidSetMintLimitsParams()
0x14aa2888 FlashUntrustedLoanInitiator()
0x14ab6f73 OneRingLottery_Ticket_Is_Not_Of_This_Round()
0x14af21f4 NoEtherBalance()
0x14b8bcfa USR_UnsupportedPosition(address)
0x14bcf5c8 InvalidTreasury()
0x14be364b TheGoatsDemandCoin()
0x14c237fb GasLimitOutsideRange()
0x14c2cea3 ERC721ABase_InvalidSignature()
0x14c5f7b6 NotCollateralized()
0x14d10a02 StakeLocked()
0x14d93ba2 IllegalUpgrade(uint256,uint256)
0x14e6bb14 WhitelistOnlyRound()
0x14f28f2b ZeroAddressToken()
0x14f57674 ThiefIsRetired()
0x14f8fce7 UOwnableNotPendingOwnerError(address)
0x14faa177 NotTheOwnerOrApproved(uint256)
0x14ff7338 UnapprovedToken(address)
0x15081319 SetZeroAddress()
0x150fed39 LW__SIMULATION__walletLocked()
0x1511e97a Fibswap__removeLiquidity_amountIsZero()
0x15140c55 InvalidWeaponId()
0x154a6443 InvalidOrDuplicatedParticipant(address)
0x154e0758 InsufficientReservedTokensAvailable()
0x154ed338 MintingNotActive(bool)
0x154ef769 PlaceholderURISet()
0x15504301 ImplementationIsSterile(address)
0x1552d1ee NoExecution()
0x1554dc27 Dugo_MaxSupplyReached()
0x1562001c NoDeposits()
0x156bbc5b NotEnoughFees()
0x156bf2e9 SwapTotalAmountCannotBeZero()
0x1572ebe4 RightOutsideField()
0x1574f9f3 NotPayable()
0x157503d4 InexistentToken()
0x1578538d Finished()
0x1580c37f RaffleUnrevealed()
0x15889eb8 RewardDistributionPeriodHasExpired()
0x158e6d96 NFTDropMarketFixedPriceSale_Mint_Count_Mismatch(uint256)
0x1596fd3f AlreadyClaimed(address,uint8)
0x159c1bf9 GasTooHigh(int256)
0x15a39f35 NotPoolOwner(address,address)
0x15ae6727 InvalidSupply()
0x15b1bdcd PublicMintInactive()
0x15b79c07 MintCapacityReached()
0x15b8da61 InvalidDiscountPrice(uint256)
0x15b9d8b0 DuplicateOrder()
0x15ca7ee1 NotAMOMinter()
0x15cb63b0 InvalidRaffleRegisterTime()
0x15cd15ad ChainlinkSubscriptionNotFound()
0x15d7ffa1 _Exp2InputTooBig(int256)
0x15d98b90 ASYNC_NONZERO_OUTPUT_VALUES(uint256,uint256)
0x15e1e1ee MorphDataClaimed()
0x15e26ff3 OnlyAllowedSeaDrop()
0x15e3b896 DebtAuction__redoAuction_bidAlreadyPlaced()
0x15e54eb6 IsNotCalledFromFCTokenContract()
0x15e6bc82 NotNFTConfigOperator()
0x15eb29ee TooMuchData()
0x15ec4e70 NotEnoughFreebiesLeft()
0x15fc580a DiamondsDepleted()
0x15fcbc9d NumberOfMintsExceeded()
0x15fe38c2 InvalidGeneration()
0x1605dd17 PriceProviderDoesNotExist()
0x160cf4a1 SnapshotsNotInBuffer(uint256)
0x160fca8a TransferFromZeroAddress()
0x1617320f MintToDeadAddress()
0x161ab653 SenderOriginMismatch()
0x161b1f5b OdysseyRouter_TokenIDSupplyMismatch()
0x1629142f BurnPackFailed()
0x1635fc18 NoMoreTokensAvailable()
0x16437be0 SlippageHitError(uint256,uint256)
0x1645c048 ErrorSelfVouching()
0x1647c467 Codex__transferCollateralAndDebt_notSafeSrc()
0x1648fd01 NotAuthorised()
0x16553ad8 ErrorME25ScheduleNotFinishedOrSoldOut()
0x165784e7 NotExistsInWhitelistOrAlreadyClaimed()
0x165e2367 StrategyAlreadyAdded()
0x166021cf MintAmountIncorrect()
0x16702a64 AttackerCollectionNotFound()
0x16706355 SenderNotSubOwnerError(address,uint256)
0x167ccd6c MinterAddressNotSet()
0x16831cf2 ReduceReservesAccrueInterestFailed(uint256)
0x169b037b TransferExceedsBalance()
0x16a6c543 NoCollateralError()
0x16af5a2e SetCollateralFactorValidation()
0x16b03219 ExceedMaximumSupply()
0x16b5016f NFTMarketBuyPrice_Cannot_Buy_At_Lower_Price(uint256)
0x16bcf1bb WRONG_CURATOR_FOR_LISTING(address,address)
0x16c618d8 NotCaller()
0x16c68960 LateForTeamAllocation()
0x16c7c007 BadFeeAmount(uint256,uint256)
0x16cece48 InvalidCaller(address,address)
0x16cf1c09 CompUnderlyingRedeemError()
0x16d0455b CouldNotSendBuildGuidl()
0x16d3d97f AddressNotAccusable(address)
0x16e9ad8f TokenAlreadyStaked()
0x16f22387 TransactionLimit()
0x16f98f86 NoETHSent()
0x16fab9ce IncorrectInterface()
0x170486fe CerbySwapV1_InputCerUsdAmountIsLargerThanMaximumSpecified()
0x170abf7c AmountLargerThanUnlockedAmount()
0x1713a042 OlympusChainlinkBasedSwapper_WrongV3PathLength()
0x171b8e94 ErrorExceedWalletLimit()
0x1721c976 ChainIdZero()
0x17256a4c InvalidPeriod(uint256,uint256)
0x17299549 NotAllowedVoter()
0x172e743e TokenBundleInvalid()
0x172f17f9 MergeCanvas_AlreadyMerged(string)
0x1739bb9a BadArguments()
0x1741ad92 CountCannotBeZero()
0x17475d6c NFT_INVALID_SHARE()
0x17479ac8 InvalidPeriod()
0x17551292 ErrorInIds()
0x1755a584 NoPrintPasses()
0x17581d9e OC_SignatureIsExpired(uint256)
0x175dadad BlockhashNotInStore(uint256)
0x175fb7e5 FeeOverflow(address,uint256)
0x17601743 SeriesDoesNotExist()
0x1772ac98 ERC721Metadata_URIQueryForNonExistentToken()
0x177392d0 InitProject_InvalidTimestampInput()
0x1773e669 NotOwnerOrMonkeVoyagerContract()
0x177466fe BurnAmountExceedsBalance()
0x177e3fc3 ExceedsTotalSupply()
0x177f7c86 BadTraitChoice(uint8)
0x17817dd8 TokenGatedDropAllowedNftTokenCannotBeDropToken()
0x178523c6 NotCompensate(address)
0x178883df PresaleClosed()
0x1798fedb ONLY_LOCK_MANAGER_OR_KEY_GRANTER()
0x1799540d TokenLimitExceeded()
0x179e93a4 RatioAlreadyDefined()
0x17a84242 NotAdmin(address)
0x17b7b3dc MintingEnded(uint256)
0x17c54b96 SetInterestRateModelFreshCheck()
0x17c7be27 ManagerRequired(address)
0x17d431f4 SlippageProtection()
0x17d91786 Error_NoRugOnETHPoS()
0x17defc1b BeforeUnlock()
0x17e0638d TokenVault_InvalidCampaignEndBlock()
0x17e37b5c BatchLengthMismatch()
0x17ecbdce LC_NonceUsed(address,uint160)
0x17ed8646 MAX_KEYS_REACHED()
0x17efbd6b MintDisabled()
0x17f0618d MintedAllowance()
0x17f5d8a7 MinRemoveOutError()
0x17f9926b NotPermitted(address,address,uint256)
0x17fdb093 Exchange_Rejected_Nullish_Quantity()
0x1808a098 UniswapStrategy_NotIncurDebtAddress()
0x1815aa4d InvalidPaymentTokenDecimals()
0x18172285 ExceedMintQuota()
0x18172f9b ClaimPeriodMaxReached()
0x183fb6f6 CallerNotpendingAdmin()
0x1841b4e1 InvalidMsgValue()
0x1845300d InvalidAdminThreshold()
0x184849cf NotEntity()
0x1849aa92 MultipleRoyaltyRecievers()
0x1852970b Vault1155Actions__exitVault_zeroVaultAddress()
0x1853971c NotPendingOwner()
0x18553133 AllPostersOfTypeMinted()
0x185a7ea6 InvalidPriceProviderQuoteToken()
0x185bfbc0 FailedAddLpMarket()
0x185d8a26 SmallerAmount()
0x18660c4d UnstakeOrderCannotBeFilled()
0x18745b39 OdysseyMarket_NoAccess()
0x1879a537 AllCharacterSheetsOfTypeMinted()
0x187afa46 RewardsNotAllowedYet()
0x1880b782 CantMintZero()
0x1886f047 InvalidPotionId()
0x18aec0af EndorseVaultWithSameVersion(address,address)
0x18b247cb NotTokenOwnerOrInsufficientAmount()
0x18b530ed PRBProxyRegistry__ProxyAlreadyExists(address)
0x18bdce2e PartnerAllowanceExceeded()
0x18c3d338 BaseURIIsFrozen()
0x18c640fe NotEnoughInVault()
0x18cdaf97 TRANSFERS_PAUSED()
0x18ce8294 SignatureInvalidV()
0x18d47ac1 CannotWithdrawUnownedItem()
0x18e52d76 ProofInvalidPresale()
0x18e998a5 DutchAuctionNotOver()
0x18f35a5f WhitelistNotStarted()
0x1902fca8 GreenGoldHempiClubSmartContract__UpkeepNotNeeded(uint256,uint256,uint256,uint32)
0x190a97ad BadTreeIndex(uint256)
0x19126e90 LaserFactory__constructor__invalidSingleton()
0x1918d582 notEnoughEthSent(string)
0x192105d7 InitializationFunctionReverted(address,bytes)
0x19236b9e ApprovalNotEnabled()
0x192d1755 ExceededMintSupply()
0x1931a538 IncorrectTokenType()