Source Code

;; monster-kingdom
;; contractType: continuous

(impl-trait 'SP2PABAF9FTAJYNFZH93XENAJ8FVY99RRM50D2JG9.nft-trait.nft-trait)
;;(impl-trait .nft-trait.nft-trait)

(define-non-fungible-token monster-kingdom uint)

(define-constant DEPLOYER tx-sender)

(define-constant ERR-NOT-AUTHORIZED u101)
(define-constant ERR-INVALID-USER u102)
(define-constant ERR-LISTING u103)
(define-constant ERR-WRONG-COMMISSION u104)
(define-constant ERR-NOT-FOUND u105)
(define-constant ERR-NFT-MINT u106)
(define-constant ERR-CONTRACT-LOCKED u107)
(define-constant ERR-METADATA-FROZEN u111)
(define-constant ERR-INVALID-PERCENTAGE u114)

(define-data-var last-id uint u0)
(define-data-var artist-address principal 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6)
(define-data-var locked bool false)
(define-data-var metadata-frozen bool false)

(define-map cids uint (string-ascii 64))

(define-public (lock-contract)
  (begin
    (asserts! (or (is-eq tx-sender (var-get artist-address)) (is-eq tx-sender DEPLOYER)) (err ERR-NOT-AUTHORIZED))
    (var-set locked true)
    (ok true)))

(define-public (set-artist-address (address principal))
  (begin
    (asserts! (or (is-eq tx-sender (var-get artist-address)) (is-eq tx-sender DEPLOYER)) (err ERR-INVALID-USER))
    (ok (var-set artist-address address))))

(define-public (burn (token-id uint))
  (begin 
    (asserts! (is-owner token-id tx-sender) (err ERR-NOT-AUTHORIZED))
    (asserts! (is-none (map-get? market token-id)) (err ERR-LISTING))
    (nft-burn? monster-kingdom token-id tx-sender)))

(define-public (set-token-uri (hash (string-ascii 64)) (token-id uint))
  (begin
    (asserts! (or (is-eq tx-sender (var-get artist-address)) (is-eq tx-sender DEPLOYER)) (err ERR-NOT-AUTHORIZED))
    (asserts! (not (var-get metadata-frozen)) (err ERR-METADATA-FROZEN))
    (print { notification: "token-metadata-update", payload: { token-class: "nft", token-ids: (list token-id), contract-id: (as-contract tx-sender) }})
    (map-set cids token-id hash)
    (ok true)))

(define-public (freeze-metadata)
  (begin
    (asserts! (or (is-eq tx-sender (var-get artist-address)) (is-eq tx-sender DEPLOYER)) (err ERR-NOT-AUTHORIZED))
    (var-set metadata-frozen true)
    (ok true)))

(define-private (is-owner (token-id uint) (user principal))
    (is-eq user (unwrap! (nft-get-owner? monster-kingdom token-id) false)))

(define-public (transfer (id uint) (sender principal) (recipient principal))
  (begin
    (asserts! (is-eq tx-sender sender) (err ERR-NOT-AUTHORIZED))
    (asserts! (is-none (map-get? market id)) (err ERR-LISTING))
    (trnsfr id sender recipient)))

(define-read-only (get-owner (token-id uint))
  (ok (nft-get-owner? monster-kingdom token-id)))

(define-read-only (get-last-token-id)
  (ok (var-get last-id)))

(define-read-only (get-token-uri (token-id uint))
  (ok (some (concat "ipfs://" (unwrap-panic (map-get? cids token-id))))))

(define-read-only (get-artist-address)
  (ok (var-get artist-address)))

(define-public (claim (uris (list 25 (string-ascii 64))))
  (mint-many uris))

(define-private (mint-many (uris (list 25 (string-ascii 64))))
  (let 
    (
      (token-id (+ (var-get last-id) u1))
      (art-addr (var-get artist-address))
      (id-reached (fold mint-many-iter uris token-id))
      (current-balance (get-balance tx-sender))
    )
    (asserts! (or (is-eq tx-sender DEPLOYER) (is-eq tx-sender art-addr)) (err ERR-NOT-AUTHORIZED))
    (asserts! (is-eq (var-get locked) false) (err ERR-CONTRACT-LOCKED))
    (var-set last-id (- id-reached u1))
    (map-set token-count tx-sender (+ current-balance (- id-reached token-id)))    
    (ok id-reached)))

(define-private (mint-many-iter (hash (string-ascii 64)) (next-id uint))
  (begin
    (unwrap! (nft-mint? monster-kingdom next-id tx-sender) next-id)
    (map-set cids next-id hash)      
    (+ next-id u1)))

;; NON-CUSTODIAL FUNCTIONS START
(use-trait commission-trait 'SP3D6PV2ACBPEKYJTCMH7HEN02KP87QSP8KTEH335.commission-trait.commission)

(define-map token-count principal uint)
(define-map market uint {price: uint, commission: principal, royalty: uint})

(define-read-only (get-balance (account principal))
  (default-to u0
    (map-get? token-count account)))

(define-private (trnsfr (id uint) (sender principal) (recipient principal))
  (match (nft-transfer? monster-kingdom id sender recipient)
    success
      (let
        ((sender-balance (get-balance sender))
        (recipient-balance (get-balance recipient)))
          (map-set token-count
            sender
            (- sender-balance u1))
          (map-set token-count
            recipient
            (+ recipient-balance u1))
          (ok success))
    error (err error)))

(define-private (is-sender-owner (id uint))
  (let ((owner (unwrap! (nft-get-owner? monster-kingdom id) false)))
    (or (is-eq tx-sender owner) (is-eq contract-caller owner))))

(define-read-only (get-listing-in-ustx (id uint))
  (map-get? market id))

(define-public (list-in-ustx (id uint) (price uint) (comm-trait <commission-trait>))
  (let ((listing  {price: price, commission: (contract-of comm-trait), royalty: (var-get royalty-percent)}))
    (asserts! (is-sender-owner id) (err ERR-NOT-AUTHORIZED))
    (map-set market id listing)
    (print (merge listing {a: "list-in-ustx", id: id}))
    (ok true)))

(define-public (unlist-in-ustx (id uint))
  (begin
    (asserts! (is-sender-owner id) (err ERR-NOT-AUTHORIZED))
    (map-delete market id)
    (print {a: "unlist-in-ustx", id: id})
    (ok true)))

(define-public (buy-in-ustx (id uint) (comm-trait <commission-trait>))
  (let ((owner (unwrap! (nft-get-owner? monster-kingdom id) (err ERR-NOT-FOUND)))
      (listing (unwrap! (map-get? market id) (err ERR-LISTING)))
      (price (get price listing))
      (royalty (get royalty listing)))
    (asserts! (is-eq (contract-of comm-trait) (get commission listing)) (err ERR-WRONG-COMMISSION))
    (try! (stx-transfer? price tx-sender owner))
    (try! (pay-royalty price royalty))
    (try! (contract-call? comm-trait pay id price))
    (try! (trnsfr id owner tx-sender))
    (map-delete market id)
    (print {a: "buy-in-ustx", id: id})
    (ok true)))
    
(define-data-var royalty-percent uint u500)

(define-read-only (get-royalty-percent)
  (ok (var-get royalty-percent)))

(define-public (set-royalty-percent (royalty uint))
  (begin
    (asserts! (or (is-eq tx-sender (var-get artist-address)) (is-eq tx-sender DEPLOYER)) (err ERR-INVALID-USER))
    (asserts! (and (>= royalty u0) (<= royalty u1000)) (err ERR-INVALID-PERCENTAGE))
    (ok (var-set royalty-percent royalty))))

(define-private (pay-royalty (price uint) (royalty uint))
  (let (
    (royalty-amount (/ (* price royalty) u10000))
  )
  (if (and (> royalty-amount u0) (not (is-eq tx-sender (var-get artist-address))))
    (try! (stx-transfer? royalty-amount tx-sender (var-get artist-address)))
    (print false)
  )
  (ok true)))

;; NON-CUSTODIAL FUNCTIONS END

(try! (nft-mint? monster-kingdom u1 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6))
(map-set token-count 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6 (+ (get-balance 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6) u1))
(map-set cids u1 "QmbRMzt5q62yFLNyKqRM8qNBu1XkbgZaiCNLTzRj7ybEqP/json/1.json")
(try! (nft-mint? monster-kingdom u2 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6))
(map-set token-count 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6 (+ (get-balance 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6) u1))
(map-set cids u2 "QmbRMzt5q62yFLNyKqRM8qNBu1XkbgZaiCNLTzRj7ybEqP/json/2.json")
(try! (nft-mint? monster-kingdom u3 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6))
(map-set token-count 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6 (+ (get-balance 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6) u1))
(map-set cids u3 "QmbRMzt5q62yFLNyKqRM8qNBu1XkbgZaiCNLTzRj7ybEqP/json/3.json")
(try! (nft-mint? monster-kingdom u4 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6))
(map-set token-count 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6 (+ (get-balance 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6) u1))
(map-set cids u4 "QmbRMzt5q62yFLNyKqRM8qNBu1XkbgZaiCNLTzRj7ybEqP/json/4.json")
(try! (nft-mint? monster-kingdom u5 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6))
(map-set token-count 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6 (+ (get-balance 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6) u1))
(map-set cids u5 "QmbRMzt5q62yFLNyKqRM8qNBu1XkbgZaiCNLTzRj7ybEqP/json/5.json")
(try! (nft-mint? monster-kingdom u6 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6))
(map-set token-count 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6 (+ (get-balance 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6) u1))
(map-set cids u6 "QmbRMzt5q62yFLNyKqRM8qNBu1XkbgZaiCNLTzRj7ybEqP/json/6.json")
(try! (nft-mint? monster-kingdom u7 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6))
(map-set token-count 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6 (+ (get-balance 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6) u1))
(map-set cids u7 "QmbRMzt5q62yFLNyKqRM8qNBu1XkbgZaiCNLTzRj7ybEqP/json/7.json")
(try! (nft-mint? monster-kingdom u8 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6))
(map-set token-count 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6 (+ (get-balance 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6) u1))
(map-set cids u8 "QmbRMzt5q62yFLNyKqRM8qNBu1XkbgZaiCNLTzRj7ybEqP/json/8.json")
(try! (nft-mint? monster-kingdom u9 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6))
(map-set token-count 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6 (+ (get-balance 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6) u1))
(map-set cids u9 "QmbRMzt5q62yFLNyKqRM8qNBu1XkbgZaiCNLTzRj7ybEqP/json/9.json")
(try! (nft-mint? monster-kingdom u10 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6))
(map-set token-count 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6 (+ (get-balance 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6) u1))
(map-set cids u10 "QmbRMzt5q62yFLNyKqRM8qNBu1XkbgZaiCNLTzRj7ybEqP/json/10.json")
(try! (nft-mint? monster-kingdom u11 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6))
(map-set token-count 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6 (+ (get-balance 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6) u1))
(map-set cids u11 "QmbRMzt5q62yFLNyKqRM8qNBu1XkbgZaiCNLTzRj7ybEqP/json/11.json")
(try! (nft-mint? monster-kingdom u12 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6))
(map-set token-count 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6 (+ (get-balance 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6) u1))
(map-set cids u12 "QmbRMzt5q62yFLNyKqRM8qNBu1XkbgZaiCNLTzRj7ybEqP/json/12.json")
(try! (nft-mint? monster-kingdom u13 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6))
(map-set token-count 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6 (+ (get-balance 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6) u1))
(map-set cids u13 "QmbRMzt5q62yFLNyKqRM8qNBu1XkbgZaiCNLTzRj7ybEqP/json/13.json")
(try! (nft-mint? monster-kingdom u14 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6))
(map-set token-count 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6 (+ (get-balance 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6) u1))
(map-set cids u14 "QmbRMzt5q62yFLNyKqRM8qNBu1XkbgZaiCNLTzRj7ybEqP/json/14.json")
(try! (nft-mint? monster-kingdom u15 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6))
(map-set token-count 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6 (+ (get-balance 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6) u1))
(map-set cids u15 "QmbRMzt5q62yFLNyKqRM8qNBu1XkbgZaiCNLTzRj7ybEqP/json/15.json")
(try! (nft-mint? monster-kingdom u16 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6))
(map-set token-count 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6 (+ (get-balance 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6) u1))
(map-set cids u16 "QmbRMzt5q62yFLNyKqRM8qNBu1XkbgZaiCNLTzRj7ybEqP/json/16.json")
(try! (nft-mint? monster-kingdom u17 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6))
(map-set token-count 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6 (+ (get-balance 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6) u1))
(map-set cids u17 "QmbRMzt5q62yFLNyKqRM8qNBu1XkbgZaiCNLTzRj7ybEqP/json/17.json")
(try! (nft-mint? monster-kingdom u18 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6))
(map-set token-count 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6 (+ (get-balance 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6) u1))
(map-set cids u18 "QmbRMzt5q62yFLNyKqRM8qNBu1XkbgZaiCNLTzRj7ybEqP/json/18.json")
(try! (nft-mint? monster-kingdom u19 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6))
(map-set token-count 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6 (+ (get-balance 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6) u1))
(map-set cids u19 "QmbRMzt5q62yFLNyKqRM8qNBu1XkbgZaiCNLTzRj7ybEqP/json/19.json")
(try! (nft-mint? monster-kingdom u20 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6))
(map-set token-count 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6 (+ (get-balance 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6) u1))
(map-set cids u20 "QmbRMzt5q62yFLNyKqRM8qNBu1XkbgZaiCNLTzRj7ybEqP/json/20.json")
(try! (nft-mint? monster-kingdom u21 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6))
(map-set token-count 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6 (+ (get-balance 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6) u1))
(map-set cids u21 "QmbRMzt5q62yFLNyKqRM8qNBu1XkbgZaiCNLTzRj7ybEqP/json/21.json")
(try! (nft-mint? monster-kingdom u22 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6))
(map-set token-count 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6 (+ (get-balance 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6) u1))
(map-set cids u22 "QmbRMzt5q62yFLNyKqRM8qNBu1XkbgZaiCNLTzRj7ybEqP/json/22.json")
(try! (nft-mint? monster-kingdom u23 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6))
(map-set token-count 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6 (+ (get-balance 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6) u1))
(map-set cids u23 "QmbRMzt5q62yFLNyKqRM8qNBu1XkbgZaiCNLTzRj7ybEqP/json/23.json")
(try! (nft-mint? monster-kingdom u24 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6))
(map-set token-count 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6 (+ (get-balance 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6) u1))
(map-set cids u24 "QmbRMzt5q62yFLNyKqRM8qNBu1XkbgZaiCNLTzRj7ybEqP/json/24.json")
(try! (nft-mint? monster-kingdom u25 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6))
(map-set token-count 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6 (+ (get-balance 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6) u1))
(map-set cids u25 "QmbRMzt5q62yFLNyKqRM8qNBu1XkbgZaiCNLTzRj7ybEqP/json/25.json")
(try! (nft-mint? monster-kingdom u26 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6))
(map-set token-count 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6 (+ (get-balance 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6) u1))
(map-set cids u26 "QmbRMzt5q62yFLNyKqRM8qNBu1XkbgZaiCNLTzRj7ybEqP/json/26.json")
(try! (nft-mint? monster-kingdom u27 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6))
(map-set token-count 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6 (+ (get-balance 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6) u1))
(map-set cids u27 "QmbRMzt5q62yFLNyKqRM8qNBu1XkbgZaiCNLTzRj7ybEqP/json/27.json")
(try! (nft-mint? monster-kingdom u28 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6))
(map-set token-count 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6 (+ (get-balance 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6) u1))
(map-set cids u28 "QmbRMzt5q62yFLNyKqRM8qNBu1XkbgZaiCNLTzRj7ybEqP/json/28.json")
(try! (nft-mint? monster-kingdom u29 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6))
(map-set token-count 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6 (+ (get-balance 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6) u1))
(map-set cids u29 "QmbRMzt5q62yFLNyKqRM8qNBu1XkbgZaiCNLTzRj7ybEqP/json/29.json")
(try! (nft-mint? monster-kingdom u30 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6))
(map-set token-count 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6 (+ (get-balance 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6) u1))
(map-set cids u30 "QmbRMzt5q62yFLNyKqRM8qNBu1XkbgZaiCNLTzRj7ybEqP/json/30.json")
(try! (nft-mint? monster-kingdom u31 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6))
(map-set token-count 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6 (+ (get-balance 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6) u1))
(map-set cids u31 "QmbRMzt5q62yFLNyKqRM8qNBu1XkbgZaiCNLTzRj7ybEqP/json/31.json")
(try! (nft-mint? monster-kingdom u32 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6))
(map-set token-count 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6 (+ (get-balance 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6) u1))
(map-set cids u32 "QmbRMzt5q62yFLNyKqRM8qNBu1XkbgZaiCNLTzRj7ybEqP/json/32.json")
(try! (nft-mint? monster-kingdom u33 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6))
(map-set token-count 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6 (+ (get-balance 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6) u1))
(map-set cids u33 "QmbRMzt5q62yFLNyKqRM8qNBu1XkbgZaiCNLTzRj7ybEqP/json/33.json")
(try! (nft-mint? monster-kingdom u34 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6))
(map-set token-count 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6 (+ (get-balance 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6) u1))
(map-set cids u34 "QmbRMzt5q62yFLNyKqRM8qNBu1XkbgZaiCNLTzRj7ybEqP/json/34.json")
(try! (nft-mint? monster-kingdom u35 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6))
(map-set token-count 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6 (+ (get-balance 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6) u1))
(map-set cids u35 "QmbRMzt5q62yFLNyKqRM8qNBu1XkbgZaiCNLTzRj7ybEqP/json/35.json")
(try! (nft-mint? monster-kingdom u36 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6))
(map-set token-count 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6 (+ (get-balance 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6) u1))
(map-set cids u36 "QmbRMzt5q62yFLNyKqRM8qNBu1XkbgZaiCNLTzRj7ybEqP/json/36.json")
(try! (nft-mint? monster-kingdom u37 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6))
(map-set token-count 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6 (+ (get-balance 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6) u1))
(map-set cids u37 "QmbRMzt5q62yFLNyKqRM8qNBu1XkbgZaiCNLTzRj7ybEqP/json/37.json")
(try! (nft-mint? monster-kingdom u38 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6))
(map-set token-count 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6 (+ (get-balance 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6) u1))
(map-set cids u38 "QmbRMzt5q62yFLNyKqRM8qNBu1XkbgZaiCNLTzRj7ybEqP/json/38.json")
(try! (nft-mint? monster-kingdom u39 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6))
(map-set token-count 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6 (+ (get-balance 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6) u1))
(map-set cids u39 "QmbRMzt5q62yFLNyKqRM8qNBu1XkbgZaiCNLTzRj7ybEqP/json/39.json")
(try! (nft-mint? monster-kingdom u40 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6))
(map-set token-count 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6 (+ (get-balance 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6) u1))
(map-set cids u40 "QmbRMzt5q62yFLNyKqRM8qNBu1XkbgZaiCNLTzRj7ybEqP/json/40.json")
(try! (nft-mint? monster-kingdom u41 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6))
(map-set token-count 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6 (+ (get-balance 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6) u1))
(map-set cids u41 "QmbRMzt5q62yFLNyKqRM8qNBu1XkbgZaiCNLTzRj7ybEqP/json/41.json")
(try! (nft-mint? monster-kingdom u42 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6))
(map-set token-count 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6 (+ (get-balance 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6) u1))
(map-set cids u42 "QmbRMzt5q62yFLNyKqRM8qNBu1XkbgZaiCNLTzRj7ybEqP/json/42.json")
(try! (nft-mint? monster-kingdom u43 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6))
(map-set token-count 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6 (+ (get-balance 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6) u1))
(map-set cids u43 "QmbRMzt5q62yFLNyKqRM8qNBu1XkbgZaiCNLTzRj7ybEqP/json/43.json")
(try! (nft-mint? monster-kingdom u44 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6))
(map-set token-count 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6 (+ (get-balance 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6) u1))
(map-set cids u44 "QmbRMzt5q62yFLNyKqRM8qNBu1XkbgZaiCNLTzRj7ybEqP/json/44.json")
(try! (nft-mint? monster-kingdom u45 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6))
(map-set token-count 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6 (+ (get-balance 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6) u1))
(map-set cids u45 "QmbRMzt5q62yFLNyKqRM8qNBu1XkbgZaiCNLTzRj7ybEqP/json/45.json")
(try! (nft-mint? monster-kingdom u46 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6))
(map-set token-count 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6 (+ (get-balance 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6) u1))
(map-set cids u46 "QmbRMzt5q62yFLNyKqRM8qNBu1XkbgZaiCNLTzRj7ybEqP/json/46.json")
(try! (nft-mint? monster-kingdom u47 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6))
(map-set token-count 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6 (+ (get-balance 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6) u1))
(map-set cids u47 "QmbRMzt5q62yFLNyKqRM8qNBu1XkbgZaiCNLTzRj7ybEqP/json/47.json")
(try! (nft-mint? monster-kingdom u48 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6))
(map-set token-count 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6 (+ (get-balance 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6) u1))
(map-set cids u48 "QmbRMzt5q62yFLNyKqRM8qNBu1XkbgZaiCNLTzRj7ybEqP/json/48.json")
(try! (nft-mint? monster-kingdom u49 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6))
(map-set token-count 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6 (+ (get-balance 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6) u1))
(map-set cids u49 "QmbRMzt5q62yFLNyKqRM8qNBu1XkbgZaiCNLTzRj7ybEqP/json/49.json")
(try! (nft-mint? monster-kingdom u50 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6))
(map-set token-count 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6 (+ (get-balance 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6) u1))
(map-set cids u50 "QmbRMzt5q62yFLNyKqRM8qNBu1XkbgZaiCNLTzRj7ybEqP/json/50.json")
(try! (nft-mint? monster-kingdom u51 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6))
(map-set token-count 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6 (+ (get-balance 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6) u1))
(map-set cids u51 "QmbRMzt5q62yFLNyKqRM8qNBu1XkbgZaiCNLTzRj7ybEqP/json/51.json")
(try! (nft-mint? monster-kingdom u52 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6))
(map-set token-count 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6 (+ (get-balance 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6) u1))
(map-set cids u52 "QmbRMzt5q62yFLNyKqRM8qNBu1XkbgZaiCNLTzRj7ybEqP/json/52.json")
(try! (nft-mint? monster-kingdom u53 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6))
(map-set token-count 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6 (+ (get-balance 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6) u1))
(map-set cids u53 "QmbRMzt5q62yFLNyKqRM8qNBu1XkbgZaiCNLTzRj7ybEqP/json/53.json")
(try! (nft-mint? monster-kingdom u54 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6))
(map-set token-count 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6 (+ (get-balance 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6) u1))
(map-set cids u54 "QmbRMzt5q62yFLNyKqRM8qNBu1XkbgZaiCNLTzRj7ybEqP/json/54.json")
(try! (nft-mint? monster-kingdom u55 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6))
(map-set token-count 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6 (+ (get-balance 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6) u1))
(map-set cids u55 "QmbRMzt5q62yFLNyKqRM8qNBu1XkbgZaiCNLTzRj7ybEqP/json/55.json")
(try! (nft-mint? monster-kingdom u56 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6))
(map-set token-count 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6 (+ (get-balance 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6) u1))
(map-set cids u56 "QmbRMzt5q62yFLNyKqRM8qNBu1XkbgZaiCNLTzRj7ybEqP/json/56.json")
(try! (nft-mint? monster-kingdom u57 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6))
(map-set token-count 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6 (+ (get-balance 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6) u1))
(map-set cids u57 "QmbRMzt5q62yFLNyKqRM8qNBu1XkbgZaiCNLTzRj7ybEqP/json/57.json")
(try! (nft-mint? monster-kingdom u58 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6))
(map-set token-count 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6 (+ (get-balance 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6) u1))
(map-set cids u58 "QmbRMzt5q62yFLNyKqRM8qNBu1XkbgZaiCNLTzRj7ybEqP/json/58.json")
(try! (nft-mint? monster-kingdom u59 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6))
(map-set token-count 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6 (+ (get-balance 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6) u1))
(map-set cids u59 "QmbRMzt5q62yFLNyKqRM8qNBu1XkbgZaiCNLTzRj7ybEqP/json/59.json")
(try! (nft-mint? monster-kingdom u60 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6))
(map-set token-count 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6 (+ (get-balance 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6) u1))
(map-set cids u60 "QmbRMzt5q62yFLNyKqRM8qNBu1XkbgZaiCNLTzRj7ybEqP/json/60.json")
(try! (nft-mint? monster-kingdom u61 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6))
(map-set token-count 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6 (+ (get-balance 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6) u1))
(map-set cids u61 "QmbRMzt5q62yFLNyKqRM8qNBu1XkbgZaiCNLTzRj7ybEqP/json/61.json")
(try! (nft-mint? monster-kingdom u62 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6))
(map-set token-count 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6 (+ (get-balance 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6) u1))
(map-set cids u62 "QmbRMzt5q62yFLNyKqRM8qNBu1XkbgZaiCNLTzRj7ybEqP/json/62.json")
(try! (nft-mint? monster-kingdom u63 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6))
(map-set token-count 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6 (+ (get-balance 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6) u1))
(map-set cids u63 "QmbRMzt5q62yFLNyKqRM8qNBu1XkbgZaiCNLTzRj7ybEqP/json/63.json")
(try! (nft-mint? monster-kingdom u64 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6))
(map-set token-count 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6 (+ (get-balance 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6) u1))
(map-set cids u64 "QmbRMzt5q62yFLNyKqRM8qNBu1XkbgZaiCNLTzRj7ybEqP/json/64.json")
(try! (nft-mint? monster-kingdom u65 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6))
(map-set token-count 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6 (+ (get-balance 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6) u1))
(map-set cids u65 "QmbRMzt5q62yFLNyKqRM8qNBu1XkbgZaiCNLTzRj7ybEqP/json/65.json")
(try! (nft-mint? monster-kingdom u66 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6))
(map-set token-count 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6 (+ (get-balance 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6) u1))
(map-set cids u66 "QmbRMzt5q62yFLNyKqRM8qNBu1XkbgZaiCNLTzRj7ybEqP/json/66.json")
(try! (nft-mint? monster-kingdom u67 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6))
(map-set token-count 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6 (+ (get-balance 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6) u1))
(map-set cids u67 "QmbRMzt5q62yFLNyKqRM8qNBu1XkbgZaiCNLTzRj7ybEqP/json/67.json")
(try! (nft-mint? monster-kingdom u68 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6))
(map-set token-count 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6 (+ (get-balance 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6) u1))
(map-set cids u68 "QmbRMzt5q62yFLNyKqRM8qNBu1XkbgZaiCNLTzRj7ybEqP/json/68.json")
(try! (nft-mint? monster-kingdom u69 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6))
(map-set token-count 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6 (+ (get-balance 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6) u1))
(map-set cids u69 "QmbRMzt5q62yFLNyKqRM8qNBu1XkbgZaiCNLTzRj7ybEqP/json/69.json")
(try! (nft-mint? monster-kingdom u70 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6))
(map-set token-count 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6 (+ (get-balance 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6) u1))
(map-set cids u70 "QmbRMzt5q62yFLNyKqRM8qNBu1XkbgZaiCNLTzRj7ybEqP/json/70.json")
(try! (nft-mint? monster-kingdom u71 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6))
(map-set token-count 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6 (+ (get-balance 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6) u1))
(map-set cids u71 "QmbRMzt5q62yFLNyKqRM8qNBu1XkbgZaiCNLTzRj7ybEqP/json/71.json")
(try! (nft-mint? monster-kingdom u72 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6))
(map-set token-count 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6 (+ (get-balance 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6) u1))
(map-set cids u72 "QmbRMzt5q62yFLNyKqRM8qNBu1XkbgZaiCNLTzRj7ybEqP/json/72.json")
(try! (nft-mint? monster-kingdom u73 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6))
(map-set token-count 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6 (+ (get-balance 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6) u1))
(map-set cids u73 "QmbRMzt5q62yFLNyKqRM8qNBu1XkbgZaiCNLTzRj7ybEqP/json/73.json")
(try! (nft-mint? monster-kingdom u74 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6))
(map-set token-count 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6 (+ (get-balance 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6) u1))
(map-set cids u74 "QmbRMzt5q62yFLNyKqRM8qNBu1XkbgZaiCNLTzRj7ybEqP/json/74.json")
(try! (nft-mint? monster-kingdom u75 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6))
(map-set token-count 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6 (+ (get-balance 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6) u1))
(map-set cids u75 "QmbRMzt5q62yFLNyKqRM8qNBu1XkbgZaiCNLTzRj7ybEqP/json/75.json")
(try! (nft-mint? monster-kingdom u76 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6))
(map-set token-count 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6 (+ (get-balance 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6) u1))
(map-set cids u76 "QmbRMzt5q62yFLNyKqRM8qNBu1XkbgZaiCNLTzRj7ybEqP/json/76.json")
(try! (nft-mint? monster-kingdom u77 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6))
(map-set token-count 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6 (+ (get-balance 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6) u1))
(map-set cids u77 "QmbRMzt5q62yFLNyKqRM8qNBu1XkbgZaiCNLTzRj7ybEqP/json/77.json")
(try! (nft-mint? monster-kingdom u78 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6))
(map-set token-count 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6 (+ (get-balance 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6) u1))
(map-set cids u78 "QmbRMzt5q62yFLNyKqRM8qNBu1XkbgZaiCNLTzRj7ybEqP/json/78.json")
(try! (nft-mint? monster-kingdom u79 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6))
(map-set token-count 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6 (+ (get-balance 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6) u1))
(map-set cids u79 "QmbRMzt5q62yFLNyKqRM8qNBu1XkbgZaiCNLTzRj7ybEqP/json/79.json")
(try! (nft-mint? monster-kingdom u80 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6))
(map-set token-count 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6 (+ (get-balance 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6) u1))
(map-set cids u80 "QmbRMzt5q62yFLNyKqRM8qNBu1XkbgZaiCNLTzRj7ybEqP/json/80.json")
(try! (nft-mint? monster-kingdom u81 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6))
(map-set token-count 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6 (+ (get-balance 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6) u1))
(map-set cids u81 "QmbRMzt5q62yFLNyKqRM8qNBu1XkbgZaiCNLTzRj7ybEqP/json/81.json")
(try! (nft-mint? monster-kingdom u82 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6))
(map-set token-count 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6 (+ (get-balance 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6) u1))
(map-set cids u82 "QmbRMzt5q62yFLNyKqRM8qNBu1XkbgZaiCNLTzRj7ybEqP/json/82.json")
(try! (nft-mint? monster-kingdom u83 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6))
(map-set token-count 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6 (+ (get-balance 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6) u1))
(map-set cids u83 "QmbRMzt5q62yFLNyKqRM8qNBu1XkbgZaiCNLTzRj7ybEqP/json/83.json")
(try! (nft-mint? monster-kingdom u84 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6))
(map-set token-count 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6 (+ (get-balance 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6) u1))
(map-set cids u84 "QmbRMzt5q62yFLNyKqRM8qNBu1XkbgZaiCNLTzRj7ybEqP/json/84.json")
(try! (nft-mint? monster-kingdom u85 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6))
(map-set token-count 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6 (+ (get-balance 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6) u1))
(map-set cids u85 "QmbRMzt5q62yFLNyKqRM8qNBu1XkbgZaiCNLTzRj7ybEqP/json/85.json")
(try! (nft-mint? monster-kingdom u86 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6))
(map-set token-count 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6 (+ (get-balance 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6) u1))
(map-set cids u86 "QmbRMzt5q62yFLNyKqRM8qNBu1XkbgZaiCNLTzRj7ybEqP/json/86.json")
(try! (nft-mint? monster-kingdom u87 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6))
(map-set token-count 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6 (+ (get-balance 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6) u1))
(map-set cids u87 "QmbRMzt5q62yFLNyKqRM8qNBu1XkbgZaiCNLTzRj7ybEqP/json/87.json")
(try! (nft-mint? monster-kingdom u88 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6))
(map-set token-count 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6 (+ (get-balance 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6) u1))
(map-set cids u88 "QmbRMzt5q62yFLNyKqRM8qNBu1XkbgZaiCNLTzRj7ybEqP/json/88.json")
(try! (nft-mint? monster-kingdom u89 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6))
(map-set token-count 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6 (+ (get-balance 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6) u1))
(map-set cids u89 "QmbRMzt5q62yFLNyKqRM8qNBu1XkbgZaiCNLTzRj7ybEqP/json/89.json")
(try! (nft-mint? monster-kingdom u90 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6))
(map-set token-count 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6 (+ (get-balance 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6) u1))
(map-set cids u90 "QmbRMzt5q62yFLNyKqRM8qNBu1XkbgZaiCNLTzRj7ybEqP/json/90.json")
(try! (nft-mint? monster-kingdom u91 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6))
(map-set token-count 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6 (+ (get-balance 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6) u1))
(map-set cids u91 "QmbRMzt5q62yFLNyKqRM8qNBu1XkbgZaiCNLTzRj7ybEqP/json/91.json")
(try! (nft-mint? monster-kingdom u92 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6))
(map-set token-count 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6 (+ (get-balance 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6) u1))
(map-set cids u92 "QmbRMzt5q62yFLNyKqRM8qNBu1XkbgZaiCNLTzRj7ybEqP/json/92.json")
(try! (nft-mint? monster-kingdom u93 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6))
(map-set token-count 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6 (+ (get-balance 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6) u1))
(map-set cids u93 "QmbRMzt5q62yFLNyKqRM8qNBu1XkbgZaiCNLTzRj7ybEqP/json/93.json")
(try! (nft-mint? monster-kingdom u94 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6))
(map-set token-count 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6 (+ (get-balance 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6) u1))
(map-set cids u94 "QmbRMzt5q62yFLNyKqRM8qNBu1XkbgZaiCNLTzRj7ybEqP/json/94.json")
(try! (nft-mint? monster-kingdom u95 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6))
(map-set token-count 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6 (+ (get-balance 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6) u1))
(map-set cids u95 "QmbRMzt5q62yFLNyKqRM8qNBu1XkbgZaiCNLTzRj7ybEqP/json/95.json")
(try! (nft-mint? monster-kingdom u96 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6))
(map-set token-count 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6 (+ (get-balance 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6) u1))
(map-set cids u96 "QmbRMzt5q62yFLNyKqRM8qNBu1XkbgZaiCNLTzRj7ybEqP/json/96.json")
(try! (nft-mint? monster-kingdom u97 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6))
(map-set token-count 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6 (+ (get-balance 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6) u1))
(map-set cids u97 "QmbRMzt5q62yFLNyKqRM8qNBu1XkbgZaiCNLTzRj7ybEqP/json/97.json")
(try! (nft-mint? monster-kingdom u98 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6))
(map-set token-count 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6 (+ (get-balance 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6) u1))
(map-set cids u98 "QmbRMzt5q62yFLNyKqRM8qNBu1XkbgZaiCNLTzRj7ybEqP/json/98.json")
(try! (nft-mint? monster-kingdom u99 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6))
(map-set token-count 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6 (+ (get-balance 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6) u1))
(map-set cids u99 "QmbRMzt5q62yFLNyKqRM8qNBu1XkbgZaiCNLTzRj7ybEqP/json/99.json")
(try! (nft-mint? monster-kingdom u100 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6))
(map-set token-count 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6 (+ (get-balance 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6) u1))
(map-set cids u100 "QmbRMzt5q62yFLNyKqRM8qNBu1XkbgZaiCNLTzRj7ybEqP/json/100.json")
(try! (nft-mint? monster-kingdom u101 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6))
(map-set token-count 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6 (+ (get-balance 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6) u1))
(map-set cids u101 "QmbRMzt5q62yFLNyKqRM8qNBu1XkbgZaiCNLTzRj7ybEqP/json/101.json")
(try! (nft-mint? monster-kingdom u102 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6))
(map-set token-count 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6 (+ (get-balance 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6) u1))
(map-set cids u102 "QmbRMzt5q62yFLNyKqRM8qNBu1XkbgZaiCNLTzRj7ybEqP/json/102.json")
(try! (nft-mint? monster-kingdom u103 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6))
(map-set token-count 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6 (+ (get-balance 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6) u1))
(map-set cids u103 "QmbRMzt5q62yFLNyKqRM8qNBu1XkbgZaiCNLTzRj7ybEqP/json/103.json")
(try! (nft-mint? monster-kingdom u104 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6))
(map-set token-count 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6 (+ (get-balance 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6) u1))
(map-set cids u104 "QmbRMzt5q62yFLNyKqRM8qNBu1XkbgZaiCNLTzRj7ybEqP/json/104.json")
(try! (nft-mint? monster-kingdom u105 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6))
(map-set token-count 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6 (+ (get-balance 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6) u1))
(map-set cids u105 "QmbRMzt5q62yFLNyKqRM8qNBu1XkbgZaiCNLTzRj7ybEqP/json/105.json")
(try! (nft-mint? monster-kingdom u106 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6))
(map-set token-count 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6 (+ (get-balance 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6) u1))
(map-set cids u106 "QmbRMzt5q62yFLNyKqRM8qNBu1XkbgZaiCNLTzRj7ybEqP/json/106.json")
(try! (nft-mint? monster-kingdom u107 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6))
(map-set token-count 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6 (+ (get-balance 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6) u1))
(map-set cids u107 "QmbRMzt5q62yFLNyKqRM8qNBu1XkbgZaiCNLTzRj7ybEqP/json/107.json")
(try! (nft-mint? monster-kingdom u108 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6))
(map-set token-count 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6 (+ (get-balance 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6) u1))
(map-set cids u108 "QmbRMzt5q62yFLNyKqRM8qNBu1XkbgZaiCNLTzRj7ybEqP/json/108.json")
(try! (nft-mint? monster-kingdom u109 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6))
(map-set token-count 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6 (+ (get-balance 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6) u1))
(map-set cids u109 "QmbRMzt5q62yFLNyKqRM8qNBu1XkbgZaiCNLTzRj7ybEqP/json/109.json")
(try! (nft-mint? monster-kingdom u110 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6))
(map-set token-count 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6 (+ (get-balance 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6) u1))
(map-set cids u110 "QmbRMzt5q62yFLNyKqRM8qNBu1XkbgZaiCNLTzRj7ybEqP/json/110.json")
(try! (nft-mint? monster-kingdom u111 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6))
(map-set token-count 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6 (+ (get-balance 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6) u1))
(map-set cids u111 "QmbRMzt5q62yFLNyKqRM8qNBu1XkbgZaiCNLTzRj7ybEqP/json/111.json")
(try! (nft-mint? monster-kingdom u112 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6))
(map-set token-count 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6 (+ (get-balance 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6) u1))
(map-set cids u112 "QmbRMzt5q62yFLNyKqRM8qNBu1XkbgZaiCNLTzRj7ybEqP/json/112.json")
(try! (nft-mint? monster-kingdom u113 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6))
(map-set token-count 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6 (+ (get-balance 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6) u1))
(map-set cids u113 "QmbRMzt5q62yFLNyKqRM8qNBu1XkbgZaiCNLTzRj7ybEqP/json/113.json")
(try! (nft-mint? monster-kingdom u114 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6))
(map-set token-count 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6 (+ (get-balance 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6) u1))
(map-set cids u114 "QmbRMzt5q62yFLNyKqRM8qNBu1XkbgZaiCNLTzRj7ybEqP/json/114.json")
(try! (nft-mint? monster-kingdom u115 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6))
(map-set token-count 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6 (+ (get-balance 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6) u1))
(map-set cids u115 "QmbRMzt5q62yFLNyKqRM8qNBu1XkbgZaiCNLTzRj7ybEqP/json/115.json")
(try! (nft-mint? monster-kingdom u116 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6))
(map-set token-count 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6 (+ (get-balance 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6) u1))
(map-set cids u116 "QmbRMzt5q62yFLNyKqRM8qNBu1XkbgZaiCNLTzRj7ybEqP/json/116.json")
(try! (nft-mint? monster-kingdom u117 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6))
(map-set token-count 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6 (+ (get-balance 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6) u1))
(map-set cids u117 "QmbRMzt5q62yFLNyKqRM8qNBu1XkbgZaiCNLTzRj7ybEqP/json/117.json")
(try! (nft-mint? monster-kingdom u118 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6))
(map-set token-count 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6 (+ (get-balance 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6) u1))
(map-set cids u118 "QmbRMzt5q62yFLNyKqRM8qNBu1XkbgZaiCNLTzRj7ybEqP/json/118.json")
(try! (nft-mint? monster-kingdom u119 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6))
(map-set token-count 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6 (+ (get-balance 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6) u1))
(map-set cids u119 "QmbRMzt5q62yFLNyKqRM8qNBu1XkbgZaiCNLTzRj7ybEqP/json/119.json")
(try! (nft-mint? monster-kingdom u120 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6))
(map-set token-count 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6 (+ (get-balance 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6) u1))
(map-set cids u120 "QmbRMzt5q62yFLNyKqRM8qNBu1XkbgZaiCNLTzRj7ybEqP/json/120.json")
(try! (nft-mint? monster-kingdom u121 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6))
(map-set token-count 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6 (+ (get-balance 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6) u1))
(map-set cids u121 "QmbRMzt5q62yFLNyKqRM8qNBu1XkbgZaiCNLTzRj7ybEqP/json/121.json")
(try! (nft-mint? monster-kingdom u122 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6))
(map-set token-count 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6 (+ (get-balance 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6) u1))
(map-set cids u122 "QmbRMzt5q62yFLNyKqRM8qNBu1XkbgZaiCNLTzRj7ybEqP/json/122.json")
(try! (nft-mint? monster-kingdom u123 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6))
(map-set token-count 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6 (+ (get-balance 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6) u1))
(map-set cids u123 "QmbRMzt5q62yFLNyKqRM8qNBu1XkbgZaiCNLTzRj7ybEqP/json/123.json")
(try! (nft-mint? monster-kingdom u124 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6))
(map-set token-count 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6 (+ (get-balance 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6) u1))
(map-set cids u124 "QmbRMzt5q62yFLNyKqRM8qNBu1XkbgZaiCNLTzRj7ybEqP/json/124.json")
(try! (nft-mint? monster-kingdom u125 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6))
(map-set token-count 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6 (+ (get-balance 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6) u1))
(map-set cids u125 "QmbRMzt5q62yFLNyKqRM8qNBu1XkbgZaiCNLTzRj7ybEqP/json/125.json")
(try! (nft-mint? monster-kingdom u126 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6))
(map-set token-count 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6 (+ (get-balance 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6) u1))
(map-set cids u126 "QmbRMzt5q62yFLNyKqRM8qNBu1XkbgZaiCNLTzRj7ybEqP/json/126.json")
(try! (nft-mint? monster-kingdom u127 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6))
(map-set token-count 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6 (+ (get-balance 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6) u1))
(map-set cids u127 "QmbRMzt5q62yFLNyKqRM8qNBu1XkbgZaiCNLTzRj7ybEqP/json/127.json")
(try! (nft-mint? monster-kingdom u128 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6))
(map-set token-count 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6 (+ (get-balance 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6) u1))
(map-set cids u128 "QmbRMzt5q62yFLNyKqRM8qNBu1XkbgZaiCNLTzRj7ybEqP/json/128.json")
(try! (nft-mint? monster-kingdom u129 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6))
(map-set token-count 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6 (+ (get-balance 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6) u1))
(map-set cids u129 "QmbRMzt5q62yFLNyKqRM8qNBu1XkbgZaiCNLTzRj7ybEqP/json/129.json")
(try! (nft-mint? monster-kingdom u130 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6))
(map-set token-count 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6 (+ (get-balance 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6) u1))
(map-set cids u130 "QmbRMzt5q62yFLNyKqRM8qNBu1XkbgZaiCNLTzRj7ybEqP/json/130.json")
(try! (nft-mint? monster-kingdom u131 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6))
(map-set token-count 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6 (+ (get-balance 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6) u1))
(map-set cids u131 "QmbRMzt5q62yFLNyKqRM8qNBu1XkbgZaiCNLTzRj7ybEqP/json/131.json")
(try! (nft-mint? monster-kingdom u132 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6))
(map-set token-count 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6 (+ (get-balance 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6) u1))
(map-set cids u132 "QmbRMzt5q62yFLNyKqRM8qNBu1XkbgZaiCNLTzRj7ybEqP/json/132.json")
(try! (nft-mint? monster-kingdom u133 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6))
(map-set token-count 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6 (+ (get-balance 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6) u1))
(map-set cids u133 "QmbRMzt5q62yFLNyKqRM8qNBu1XkbgZaiCNLTzRj7ybEqP/json/133.json")
(try! (nft-mint? monster-kingdom u134 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6))
(map-set token-count 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6 (+ (get-balance 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6) u1))
(map-set cids u134 "QmbRMzt5q62yFLNyKqRM8qNBu1XkbgZaiCNLTzRj7ybEqP/json/134.json")
(try! (nft-mint? monster-kingdom u135 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6))
(map-set token-count 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6 (+ (get-balance 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6) u1))
(map-set cids u135 "QmbRMzt5q62yFLNyKqRM8qNBu1XkbgZaiCNLTzRj7ybEqP/json/135.json")
(try! (nft-mint? monster-kingdom u136 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6))
(map-set token-count 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6 (+ (get-balance 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6) u1))
(map-set cids u136 "QmbRMzt5q62yFLNyKqRM8qNBu1XkbgZaiCNLTzRj7ybEqP/json/136.json")
(try! (nft-mint? monster-kingdom u137 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6))
(map-set token-count 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6 (+ (get-balance 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6) u1))
(map-set cids u137 "QmbRMzt5q62yFLNyKqRM8qNBu1XkbgZaiCNLTzRj7ybEqP/json/137.json")
(try! (nft-mint? monster-kingdom u138 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6))
(map-set token-count 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6 (+ (get-balance 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6) u1))
(map-set cids u138 "QmbRMzt5q62yFLNyKqRM8qNBu1XkbgZaiCNLTzRj7ybEqP/json/138.json")
(try! (nft-mint? monster-kingdom u139 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6))
(map-set token-count 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6 (+ (get-balance 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6) u1))
(map-set cids u139 "QmbRMzt5q62yFLNyKqRM8qNBu1XkbgZaiCNLTzRj7ybEqP/json/139.json")
(try! (nft-mint? monster-kingdom u140 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6))
(map-set token-count 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6 (+ (get-balance 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6) u1))
(map-set cids u140 "QmbRMzt5q62yFLNyKqRM8qNBu1XkbgZaiCNLTzRj7ybEqP/json/140.json")
(try! (nft-mint? monster-kingdom u141 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6))
(map-set token-count 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6 (+ (get-balance 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6) u1))
(map-set cids u141 "QmbRMzt5q62yFLNyKqRM8qNBu1XkbgZaiCNLTzRj7ybEqP/json/141.json")
(try! (nft-mint? monster-kingdom u142 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6))
(map-set token-count 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6 (+ (get-balance 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6) u1))
(map-set cids u142 "QmbRMzt5q62yFLNyKqRM8qNBu1XkbgZaiCNLTzRj7ybEqP/json/142.json")
(try! (nft-mint? monster-kingdom u143 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6))
(map-set token-count 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6 (+ (get-balance 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6) u1))
(map-set cids u143 "QmbRMzt5q62yFLNyKqRM8qNBu1XkbgZaiCNLTzRj7ybEqP/json/143.json")
(try! (nft-mint? monster-kingdom u144 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6))
(map-set token-count 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6 (+ (get-balance 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6) u1))
(map-set cids u144 "QmbRMzt5q62yFLNyKqRM8qNBu1XkbgZaiCNLTzRj7ybEqP/json/144.json")
(try! (nft-mint? monster-kingdom u145 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6))
(map-set token-count 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6 (+ (get-balance 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6) u1))
(map-set cids u145 "QmbRMzt5q62yFLNyKqRM8qNBu1XkbgZaiCNLTzRj7ybEqP/json/145.json")
(try! (nft-mint? monster-kingdom u146 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6))
(map-set token-count 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6 (+ (get-balance 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6) u1))
(map-set cids u146 "QmbRMzt5q62yFLNyKqRM8qNBu1XkbgZaiCNLTzRj7ybEqP/json/146.json")
(try! (nft-mint? monster-kingdom u147 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6))
(map-set token-count 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6 (+ (get-balance 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6) u1))
(map-set cids u147 "QmbRMzt5q62yFLNyKqRM8qNBu1XkbgZaiCNLTzRj7ybEqP/json/147.json")
(try! (nft-mint? monster-kingdom u148 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6))
(map-set token-count 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6 (+ (get-balance 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6) u1))
(map-set cids u148 "QmbRMzt5q62yFLNyKqRM8qNBu1XkbgZaiCNLTzRj7ybEqP/json/148.json")
(try! (nft-mint? monster-kingdom u149 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6))
(map-set token-count 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6 (+ (get-balance 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6) u1))
(map-set cids u149 "QmbRMzt5q62yFLNyKqRM8qNBu1XkbgZaiCNLTzRj7ybEqP/json/149.json")
(try! (nft-mint? monster-kingdom u150 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6))
(map-set token-count 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6 (+ (get-balance 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6) u1))
(map-set cids u150 "QmbRMzt5q62yFLNyKqRM8qNBu1XkbgZaiCNLTzRj7ybEqP/json/150.json")
(try! (nft-mint? monster-kingdom u151 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6))
(map-set token-count 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6 (+ (get-balance 'SP4T2H1G07D979KK0F5Q0FEW6T1QWS9M80DK4HM6) u1))
(map-set cids u151 "QmbRMzt5q62yFLNyKqRM8qNBu1XkbgZaiCNLTzRj7ybEqP/json/151.json")
(var-set last-id u151)

(define-data-var license-uri (string-ascii 80) "https://arweave.net/zmc1WTspIhFyVY82bwfAIcIExLFH5lUcHHUN0wXg4W8/3")
(define-data-var license-name (string-ascii 40) "COMMERCIAL-NO-HATE")

(define-read-only (get-license-uri)
  (ok (var-get license-uri)))
  
(define-read-only (get-license-name)
  (ok (var-get license-name)))
  
(define-public (set-license-uri (uri (string-ascii 80)))
  (begin
    (asserts! (or (is-eq tx-sender (var-get artist-address)) (is-eq tx-sender DEPLOYER)) (err ERR-NOT-AUTHORIZED))
    (ok (var-set license-uri uri))))
    
(define-public (set-license-name (name (string-ascii 40)))
  (begin
    (asserts! (or (is-eq tx-sender (var-get artist-address)) (is-eq tx-sender DEPLOYER)) (err ERR-NOT-AUTHORIZED))
    (ok (var-set license-name name))))

Functions (28)

FunctionAccessArgs
lock-contractpublic
set-artist-addresspublicaddress: principal
burnpublictoken-id: uint
set-token-uripublichash: (string-ascii 64
freeze-metadatapublic
is-ownerprivatetoken-id: uint, user: principal
transferpublicid: uint, sender: principal, recipient: principal
get-ownerread-onlytoken-id: uint
get-last-token-idread-only
get-token-uriread-onlytoken-id: uint
get-artist-addressread-only
claimpublicuris: (list 25 (string-ascii 64
mint-manyprivateuris: (list 25 (string-ascii 64
mint-many-iterprivatehash: (string-ascii 64
get-balanceread-onlyaccount: principal
trnsfrprivateid: uint, sender: principal, recipient: principal
is-sender-ownerprivateid: uint
get-listing-in-ustxread-onlyid: uint
list-in-ustxpublicid: uint, price: uint, comm-trait: <commission-trait>
unlist-in-ustxpublicid: uint
buy-in-ustxpublicid: uint, comm-trait: <commission-trait>
get-royalty-percentread-only
set-royalty-percentpublicroyalty: uint
pay-royaltyprivateprice: uint, royalty: uint
get-license-uriread-only
get-license-nameread-only
set-license-uripublicuri: (string-ascii 80
set-license-namepublicname: (string-ascii 40