@beechcms/api 0.6.0-preview.2 → 0.6.0-preview.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +4 -4
- package/assets/dashboard/BeechLogo.svg +18 -18
- package/assets/dashboard/BeechLogoLIght.svg +48 -48
- package/assets/dashboard/assets/chart-BwlCt-IA.js +39 -0
- package/assets/dashboard/assets/geist-cyrillic-ext-wght-normal-DjL33-gN.woff2 +0 -0
- package/assets/dashboard/assets/geist-cyrillic-wght-normal-BEAKL7Jp.woff2 +0 -0
- package/assets/dashboard/assets/geist-latin-ext-wght-normal-DC-KSUi6.woff2 +0 -0
- package/assets/dashboard/assets/geist-latin-wght-normal-BgDaEnEv.woff2 +0 -0
- package/assets/dashboard/assets/geist-vietnamese-wght-normal-6IgcOCM7.woff2 +0 -0
- package/assets/dashboard/assets/index-BcVN-DNy.js +642 -0
- package/assets/dashboard/assets/index-Cf1yRCqG.css +1 -0
- package/assets/dashboard/assets/lora-cyrillic-ext-wght-normal-YcVxMP-u.woff2 +0 -0
- package/assets/dashboard/assets/lora-cyrillic-wght-normal-UWPuZLjM.woff2 +0 -0
- package/assets/dashboard/assets/lora-latin-ext-wght-normal-C2Wlntb9.woff2 +0 -0
- package/assets/dashboard/assets/lora-latin-wght-normal-BiLcIKcI.woff2 +0 -0
- package/assets/dashboard/assets/lora-math-wght-normal-sOy7rEfW.woff2 +0 -0
- package/assets/dashboard/assets/lora-symbols-wght-normal-DQ5VrUkH.woff2 +0 -0
- package/assets/dashboard/assets/lora-vietnamese-wght-normal-CfJ7gtf3.woff2 +0 -0
- package/assets/dashboard/assets/pie-chart-recharts-BMWpjFzf.js +1 -0
- package/assets/dashboard/assets/timeseries-chart-recharts-8_GwAFR0.js +1 -0
- package/assets/dashboard/beechLogoDark.svg +48 -48
- package/assets/dashboard/index.html +18 -18
- package/assets/dashboard/noResult.svg +42 -42
- package/assets/dashboard/sol.svg +3 -3
- package/assets/dashboard/undraw_enter_nwx3.svg +36 -36
- package/dist/auth/__fixtures__/in-memory-hash-provider.d.ts +5 -0
- package/dist/auth/__fixtures__/static-token-service.d.ts +6 -0
- package/dist/auth/bcrypt-hash-provider.d.ts +8 -0
- package/dist/auth/constants.d.ts +10 -0
- package/dist/auth/jose-token-service.d.ts +14 -0
- package/dist/auth/login.d.ts +32 -0
- package/dist/auth/refresh.d.ts +1 -0
- package/dist/factory.d.ts +45 -0
- package/dist/features/automations/action-executors/create-entry.executor.d.ts +7 -0
- package/dist/features/automations/action-executors/edit-field.executor.d.ts +7 -0
- package/dist/features/automations/action-executors/index.d.ts +13 -0
- package/dist/features/automations/action-executors/send-mail.executor.d.ts +7 -0
- package/dist/features/automations/action-executors/set-variable.executor.d.ts +15 -0
- package/dist/features/automations/action-executors/webhook.executor.d.ts +7 -0
- package/dist/features/automations/automation-runner.d.ts +13 -0
- package/dist/features/automations/automation-runner.utils.d.ts +3 -0
- package/dist/features/automations/automations.handler.d.ts +7 -0
- package/dist/features/automations/automations.schema.d.ts +191 -0
- package/dist/features/automations/context-resolver.d.ts +8 -0
- package/dist/features/automations/cron-runner.d.ts +9 -0
- package/dist/features/automations/cron-runner.utils.d.ts +1 -0
- package/dist/features/automations/filter-translation.d.ts +9 -0
- package/dist/features/automations/index.d.ts +7 -0
- package/dist/features/automations/template-grammar.d.ts +73 -0
- package/dist/features/automations/var-access-resolver.d.ts +6 -0
- package/dist/features/automations/when-evaluator.d.ts +3 -0
- package/dist/features/automations/when-pushdown.d.ts +2 -0
- package/dist/features/backrefs/backrefs.handler.d.ts +3 -0
- package/dist/features/backrefs/d1-backref.repository.d.ts +17 -0
- package/dist/features/backrefs/index.d.ts +1 -0
- package/dist/features/content/constants.d.ts +12 -0
- package/dist/features/content/handlers/bulk.handler.d.ts +3 -0
- package/dist/features/content/handlers/create.d.ts +3 -0
- package/dist/features/content/handlers/delete.d.ts +3 -0
- package/dist/features/content/handlers/facets.d.ts +3 -0
- package/dist/features/content/handlers/get.d.ts +4 -0
- package/dist/features/content/handlers/helpers.d.ts +12 -0
- package/dist/features/content/handlers/list.d.ts +3 -0
- package/dist/features/content/handlers/update.d.ts +3 -0
- package/dist/features/content/index.d.ts +4 -0
- package/dist/features/dashboard-layout/dashboard-layout.handler.d.ts +7 -0
- package/dist/features/dashboard-layout/index.d.ts +1 -0
- package/dist/features/draft/draft.handler.d.ts +4 -0
- package/dist/features/draft/draft.middleware.d.ts +9 -0
- package/dist/features/draft/index.d.ts +1 -0
- package/{src/features/email/email.provider.ts → dist/features/email/email.provider.d.ts} +19 -24
- package/dist/features/email/email.service.d.ts +13 -0
- package/dist/features/email/email.types.d.ts +94 -0
- package/{src/features/email/index.ts → dist/features/email/index.d.ts} +3 -16
- package/dist/features/email/providers/resend.d.ts +36 -0
- package/dist/features/email/providers/smtp.d.ts +11 -0
- package/dist/features/email/templates/automation-mail.d.ts +8 -0
- package/dist/features/email/templates/password-changed.d.ts +15 -0
- package/dist/features/email/templates/password-reset.d.ts +18 -0
- package/dist/features/email/templates/shell.d.ts +58 -0
- package/dist/features/notifications/index.d.ts +1 -0
- package/dist/features/notifications/notifications.handler.d.ts +15 -0
- package/dist/features/password-reset/index.d.ts +6 -0
- package/dist/features/password-reset/request.d.ts +10 -0
- package/dist/features/password-reset/reset.d.ts +9 -0
- package/dist/features/rotate-field/index.d.ts +1 -0
- package/dist/features/rotate-field/rotate-field.handler.d.ts +7 -0
- package/dist/features/rotate-field/rotate-field.schema.d.ts +11 -0
- package/dist/features/schema/schema.handler.d.ts +7 -0
- package/dist/features/seeds/index.d.ts +1 -0
- package/dist/features/seeds/seeds.handler.d.ts +6 -0
- package/dist/features/settings/settings.handler.d.ts +7 -0
- package/dist/features/setup/index.d.ts +7 -0
- package/dist/features/stats/index.d.ts +1 -0
- package/dist/features/stats/stats.handler.d.ts +7 -0
- package/dist/features/webhooks/index.d.ts +3 -0
- package/dist/index.d.ts +7 -0
- package/dist/index.js +9732 -0
- package/dist/media-utils.d.ts +25 -0
- package/dist/middleware/auth-providers.middleware.d.ts +8 -0
- package/dist/middleware/observability.middleware.d.ts +20 -0
- package/dist/middleware/queue.middleware.d.ts +11 -0
- package/dist/middleware/rate-limit.middleware.d.ts +9 -0
- package/dist/middleware/repository.middleware.d.ts +34 -0
- package/dist/middleware/seed-registry.middleware.d.ts +10 -0
- package/dist/middleware/storage.middleware.d.ts +7 -0
- package/dist/middleware.d.ts +11 -0
- package/dist/public/access-policy.d.ts +12 -0
- package/dist/public/api-key-middleware.d.ts +6 -0
- package/dist/public/cache-utils.d.ts +10 -0
- package/dist/public/entry-projection.d.ts +2 -0
- package/dist/public/idempotency.d.ts +9 -0
- package/dist/public/index.d.ts +11 -0
- package/dist/public/problem-details.d.ts +31 -0
- package/dist/public/public-add.d.ts +3 -0
- package/dist/public/public-edit.d.ts +5 -0
- package/dist/public/public-errors.d.ts +13 -0
- package/dist/public/public-read.d.ts +3 -0
- package/dist/public/public-routes.d.ts +3 -0
- package/dist/public/query-builder.d.ts +28 -0
- package/dist/public/rate-limit-middleware.d.ts +3 -0
- package/dist/public/read-list.d.ts +26 -0
- package/dist/public/read-single.d.ts +22 -0
- package/dist/public/response-builder.d.ts +22 -0
- package/dist/public/sanitize.d.ts +23 -0
- package/{src/public/slug-utils.ts → dist/public/slug-utils.d.ts} +3 -10
- package/dist/rate-limit/cloudflare-rate-limiter.d.ts +6 -0
- package/dist/rate-limit/in-memory-rate-limiter.d.ts +7 -0
- package/dist/rate-limit/no-op-rate-limiter.d.ts +4 -0
- package/dist/search-utils.d.ts +54 -0
- package/dist/search.d.ts +6 -0
- package/dist/shared/apply-policies.d.ts +10 -0
- package/dist/shared/automations.repository.d1.d.ts +12 -0
- package/dist/shared/background-notification-service.d.ts +18 -0
- package/dist/shared/base.repository.d1.d.ts +18 -0
- package/dist/shared/cloudflare-queue-service.d.ts +11 -0
- package/dist/shared/content-utils.d.ts +21 -0
- package/dist/shared/content.repository.d1.d.ts +68 -0
- package/dist/shared/d1-activity-log.repository.d.ts +13 -0
- package/dist/shared/d1-activity-logger.d.ts +20 -0
- package/dist/shared/d1-analytics.repository.d.ts +20 -0
- package/dist/shared/d1-content-scan.repository.d.ts +7 -0
- package/dist/shared/d1-notification.repository.d.ts +17 -0
- package/dist/shared/d1-password-reset-token.repository.d.ts +10 -0
- package/dist/shared/d1-search.repository.d.ts +14 -0
- package/dist/shared/d1-session.repository.d.ts +12 -0
- package/dist/shared/d1-setup-checklist.repository.d.ts +12 -0
- package/dist/shared/d1-user.repository.d.ts +18 -0
- package/dist/shared/d1-widget.repository.d.ts +31 -0
- package/dist/shared/dashboard-layout.repository.d1.d.ts +9 -0
- package/dist/shared/demo-data-sql.d.ts +1 -0
- package/dist/shared/demo-data.repository.d1.d.ts +6 -0
- package/dist/shared/execution-context-scheduler.d.ts +6 -0
- package/dist/shared/fixed-clock.d.ts +13 -0
- package/dist/shared/fts-sync.d.ts +1 -0
- package/dist/shared/idempotency.repository.d1.d.ts +16 -0
- package/dist/shared/in-memory-activity-logger.d.ts +11 -0
- package/dist/shared/in-memory-notification-service.d.ts +11 -0
- package/dist/shared/in-memory-queue-service.d.ts +16 -0
- package/dist/shared/in-memory-seed.repository.d.ts +18 -0
- package/dist/shared/media.repository.d1.d.ts +35 -0
- package/dist/shared/qstash-notification-service.d.ts +18 -0
- package/dist/shared/query-utils.d.ts +36 -0
- package/dist/shared/queue-consumer.d.ts +9 -0
- package/dist/shared/request-utils.d.ts +13 -0
- package/dist/shared/schema-mutator.d1.d.ts +12 -0
- package/dist/shared/seed-layout.repository.d1.d.ts +9 -0
- package/dist/shared/seed-registry-cache.d.ts +12 -0
- package/dist/shared/seed.repository.d1.d.ts +13 -0
- package/dist/shared/sequential-id-generator.d.ts +13 -0
- package/dist/shared/site-settings.repository.d1.d.ts +7 -0
- package/dist/shared/storage/factory.d.ts +8 -0
- package/dist/shared/storage/s3-bucket.d.ts +43 -0
- package/dist/shared/storage-utils.d.ts +7 -0
- package/dist/shared/system-stats.repository.d1.d.ts +25 -0
- package/dist/types.d.ts +87 -0
- package/dist/upload.d.ts +16 -0
- package/dist/widget.d.ts +7 -0
- package/migrations/0000_v040_base.sql +265 -265
- package/migrations/0029_automations.sql +14 -14
- package/migrations/0030_test_seeds.sql +125 -125
- package/package.json +28 -18
- package/assets/dashboard/assets/chart-BrJFdsGZ.js +0 -39
- package/assets/dashboard/assets/index-CIaoMxuB.css +0 -1
- package/assets/dashboard/assets/index-wTKgygsg.js +0 -636
- package/assets/dashboard/assets/pie-chart-recharts-BEaE1FOE.js +0 -1
- package/assets/dashboard/assets/timeseries-chart-recharts-DmWM6imF.js +0 -1
- package/src/auth/__fixtures__/in-memory-hash-provider.ts +0 -17
- package/src/auth/__fixtures__/static-token-service.ts +0 -22
- package/src/auth/bcrypt-hash-provider.ts +0 -24
- package/src/auth/constants.ts +0 -14
- package/src/auth/generate-refresh-token.test.ts +0 -23
- package/src/auth/hash-provider.test.ts +0 -55
- package/src/auth/jose-token-service.ts +0 -62
- package/src/auth/jwt-claims-passthrough.test.ts +0 -87
- package/src/auth/login.test.ts +0 -100
- package/src/auth/login.ts +0 -78
- package/src/auth/refresh.ts +0 -11
- package/src/auth/token-service.test.ts +0 -90
- package/src/factory.ts +0 -370
- package/src/features/automations/__tests__/action-executors.test.ts +0 -255
- package/src/features/automations/__tests__/automation-runner.test.ts +0 -196
- package/src/features/automations/__tests__/automation-runner.utils.test.ts +0 -60
- package/src/features/automations/__tests__/automations.handler.test.ts +0 -264
- package/src/features/automations/__tests__/automations.repository.test.ts +0 -163
- package/src/features/automations/__tests__/automations.schema.test.ts +0 -224
- package/src/features/automations/__tests__/context-resolver.test.ts +0 -126
- package/src/features/automations/__tests__/cron-runner.test.ts +0 -267
- package/src/features/automations/__tests__/cron-runner.utils.test.ts +0 -144
- package/src/features/automations/__tests__/set-variable.executor.test.ts +0 -383
- package/src/features/automations/__tests__/template-grammar.test.ts +0 -308
- package/src/features/automations/__tests__/webhook.executor.test.ts +0 -142
- package/src/features/automations/__tests__/when-evaluator.test.ts +0 -274
- package/src/features/automations/__tests__/when-pushdown.test.ts +0 -281
- package/src/features/automations/action-executors/create-entry.executor.ts +0 -27
- package/src/features/automations/action-executors/edit-field.executor.ts +0 -26
- package/src/features/automations/action-executors/index.ts +0 -37
- package/src/features/automations/action-executors/send-mail.executor.ts +0 -53
- package/src/features/automations/action-executors/set-variable.executor.ts +0 -159
- package/src/features/automations/action-executors/webhook.executor.ts +0 -67
- package/src/features/automations/automation-runner.ts +0 -85
- package/src/features/automations/automation-runner.utils.ts +0 -47
- package/src/features/automations/automations.handler.ts +0 -197
- package/src/features/automations/automations.schema.ts +0 -177
- package/src/features/automations/context-resolver.ts +0 -152
- package/src/features/automations/cron-runner.ts +0 -140
- package/src/features/automations/cron-runner.utils.ts +0 -44
- package/src/features/automations/filter-translation.ts +0 -46
- package/src/features/automations/index.ts +0 -16
- package/src/features/automations/template-grammar.ts +0 -245
- package/src/features/automations/var-access-resolver.ts +0 -140
- package/src/features/automations/when-evaluator.ts +0 -87
- package/src/features/automations/when-pushdown.ts +0 -57
- package/src/features/backrefs/__tests__/backrefs.handler.test.ts +0 -359
- package/src/features/backrefs/backrefs.handler.ts +0 -168
- package/src/features/backrefs/d1-backref.repository.ts +0 -84
- package/src/features/backrefs/index.ts +0 -5
- package/src/features/content/constants.ts +0 -16
- package/src/features/content/handlers/bulk.handler.ts +0 -185
- package/src/features/content/handlers/create.ts +0 -129
- package/src/features/content/handlers/delete.ts +0 -62
- package/src/features/content/handlers/facets.ts +0 -49
- package/src/features/content/handlers/get.ts +0 -120
- package/src/features/content/handlers/helpers.test.ts +0 -180
- package/src/features/content/handlers/helpers.ts +0 -93
- package/src/features/content/handlers/list.ts +0 -174
- package/src/features/content/handlers/update.ts +0 -174
- package/src/features/content/index.ts +0 -26
- package/src/features/dashboard-layout/__tests__/dashboard-layout.handler.test.ts +0 -388
- package/src/features/dashboard-layout/dashboard-layout.handler.ts +0 -206
- package/src/features/dashboard-layout/index.ts +0 -5
- package/src/features/draft/draft.handler.ts +0 -195
- package/src/features/draft/draft.middleware.ts +0 -66
- package/src/features/draft/index.ts +0 -5
- package/src/features/email/email.service.ts +0 -98
- package/src/features/email/email.types.ts +0 -119
- package/src/features/email/providers/resend.ts +0 -67
- package/src/features/email/providers/smtp.ts +0 -55
- package/src/features/email/templates/automation-mail.ts +0 -19
- package/src/features/email/templates/password-changed.ts +0 -63
- package/src/features/email/templates/password-reset.ts +0 -68
- package/src/features/email/templates/shell.ts +0 -96
- package/src/features/notifications/index.ts +0 -5
- package/src/features/notifications/notifications.handler.ts +0 -105
- package/src/features/password-reset/index.ts +0 -19
- package/src/features/password-reset/request.ts +0 -92
- package/src/features/password-reset/reset.ts +0 -102
- package/src/features/rotate-field/index.ts +0 -5
- package/src/features/rotate-field/rotate-field.handler.ts +0 -132
- package/src/features/rotate-field/rotate-field.schema.ts +0 -17
- package/src/features/schema/schema.handler.ts +0 -131
- package/src/features/seeds/index.ts +0 -5
- package/src/features/seeds/seeds.handler.test.ts +0 -1199
- package/src/features/seeds/seeds.handler.ts +0 -558
- package/src/features/settings/__tests__/settings.handler.test.ts +0 -555
- package/src/features/settings/settings.handler.ts +0 -392
- package/src/features/setup/index.ts +0 -288
- package/src/features/stats/index.ts +0 -5
- package/src/features/stats/stats.handler.ts +0 -420
- package/src/features/webhooks/index.ts +0 -63
- package/src/index.ts +0 -65
- package/src/media-utils.ts +0 -82
- package/src/middleware/auth-providers.middleware.test.ts +0 -85
- package/src/middleware/auth-providers.middleware.ts +0 -45
- package/src/middleware/observability.middleware.test.ts +0 -93
- package/src/middleware/observability.middleware.ts +0 -70
- package/src/middleware/rate-limit.middleware.ts +0 -45
- package/src/middleware/repository.middleware.ts +0 -117
- package/src/middleware/seed-registry.middleware.test.ts +0 -97
- package/src/middleware/seed-registry.middleware.ts +0 -21
- package/src/middleware/storage.middleware.ts +0 -25
- package/src/middleware.ts +0 -45
- package/src/public/access-policy.ts +0 -27
- package/src/public/api-key-middleware.ts +0 -57
- package/src/public/cache-utils.ts +0 -38
- package/src/public/entry-projection.ts +0 -46
- package/src/public/idempotency.ts +0 -23
- package/src/public/index.ts +0 -16
- package/src/public/problem-details.ts +0 -124
- package/src/public/public-add.ts +0 -114
- package/src/public/public-edit.ts +0 -163
- package/src/public/public-errors.ts +0 -19
- package/src/public/public-read.ts +0 -63
- package/src/public/public-routes.ts +0 -88
- package/src/public/query-builder.test.ts +0 -224
- package/src/public/query-builder.ts +0 -156
- package/src/public/rate-limit-middleware.ts +0 -34
- package/src/public/read-list.ts +0 -54
- package/src/public/read-single.ts +0 -48
- package/src/public/response-builder.ts +0 -30
- package/src/public/sanitize.ts +0 -69
- package/src/rate-limit/cloudflare-rate-limiter.test.ts +0 -30
- package/src/rate-limit/cloudflare-rate-limiter.ts +0 -15
- package/src/rate-limit/in-memory-rate-limiter.test.ts +0 -37
- package/src/rate-limit/in-memory-rate-limiter.ts +0 -17
- package/src/rate-limit/no-op-rate-limiter.test.ts +0 -22
- package/src/rate-limit/no-op-rate-limiter.ts +0 -11
- package/src/search-utils.test.ts +0 -211
- package/src/search-utils.ts +0 -213
- package/src/search.ts +0 -65
- package/src/shared/apply-policies.test.ts +0 -81
- package/src/shared/apply-policies.ts +0 -67
- package/src/shared/automations.repository.d1.ts +0 -150
- package/src/shared/background-notification-service.test.ts +0 -62
- package/src/shared/background-notification-service.ts +0 -52
- package/src/shared/base.repository.d1.ts +0 -32
- package/src/shared/content-utils.test.ts +0 -165
- package/src/shared/content-utils.ts +0 -86
- package/src/shared/content.repository.d1.test.ts +0 -507
- package/src/shared/content.repository.d1.ts +0 -851
- package/src/shared/d1-activity-log.repository.test.ts +0 -140
- package/src/shared/d1-activity-log.repository.ts +0 -105
- package/src/shared/d1-activity-logger.test.ts +0 -86
- package/src/shared/d1-activity-logger.ts +0 -67
- package/src/shared/d1-analytics.repository.test.ts +0 -78
- package/src/shared/d1-analytics.repository.ts +0 -85
- package/src/shared/d1-content-scan.repository.test.ts +0 -80
- package/src/shared/d1-content-scan.repository.ts +0 -37
- package/src/shared/d1-notification.repository.test.ts +0 -128
- package/src/shared/d1-notification.repository.ts +0 -118
- package/src/shared/d1-password-reset-token.repository.test.ts +0 -81
- package/src/shared/d1-password-reset-token.repository.ts +0 -56
- package/src/shared/d1-search.repository.test.ts +0 -87
- package/src/shared/d1-search.repository.ts +0 -88
- package/src/shared/d1-session.repository.test.ts +0 -125
- package/src/shared/d1-session.repository.ts +0 -102
- package/src/shared/d1-setup-checklist.repository.ts +0 -36
- package/src/shared/d1-user.repository.test.ts +0 -151
- package/src/shared/d1-user.repository.ts +0 -119
- package/src/shared/d1-widget.repository.test.ts +0 -267
- package/src/shared/d1-widget.repository.ts +0 -385
- package/src/shared/dashboard-layout.repository.d1.test.ts +0 -135
- package/src/shared/dashboard-layout.repository.d1.ts +0 -58
- package/src/shared/demo-data-sql.ts +0 -216
- package/src/shared/demo-data.repository.d1.ts +0 -20
- package/src/shared/execution-context-scheduler.ts +0 -13
- package/src/shared/fixed-clock.ts +0 -25
- package/src/shared/fts-sync.ts +0 -8
- package/src/shared/idempotency.repository.d1.test.ts +0 -83
- package/src/shared/idempotency.repository.d1.ts +0 -60
- package/src/shared/in-memory-activity-logger.ts +0 -19
- package/src/shared/in-memory-notification-service.ts +0 -19
- package/src/shared/in-memory-seed.repository.ts +0 -58
- package/src/shared/media.repository.d1.test.ts +0 -107
- package/src/shared/media.repository.d1.ts +0 -68
- package/src/shared/qstash-notification-service.test.ts +0 -67
- package/src/shared/qstash-notification-service.ts +0 -55
- package/src/shared/query-utils.ts +0 -141
- package/src/shared/request-utils.ts +0 -26
- package/src/shared/schema-mutator.d1.test.ts +0 -142
- package/src/shared/schema-mutator.d1.ts +0 -64
- package/src/shared/seed-layout.repository.d1.test.ts +0 -114
- package/src/shared/seed-layout.repository.d1.ts +0 -62
- package/src/shared/seed-registry-cache.test.ts +0 -68
- package/src/shared/seed-registry-cache.ts +0 -49
- package/src/shared/seed.repository.d1.test.ts +0 -143
- package/src/shared/seed.repository.d1.ts +0 -98
- package/src/shared/sequential-id-generator.ts +0 -33
- package/src/shared/site-settings.repository.d1.ts +0 -53
- package/src/shared/storage/factory.ts +0 -41
- package/src/shared/storage/s3-bucket.ts +0 -195
- package/src/shared/storage-utils.ts +0 -40
- package/src/shared/system-stats.repository.d1.test.ts +0 -58
- package/src/shared/system-stats.repository.d1.ts +0 -48
- package/src/types.ts +0 -90
- package/src/upload.ts +0 -198
- package/src/widget.test.ts +0 -85
- package/src/widget.ts +0 -251
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const DEMO_DATA_SQL = "\nINSERT OR IGNORE INTO content_clienti (id, slug, status, name, email, company, tier, account_status, mrr, created_at, updated_at)\nVALUES\n('9c243575-ba74-4904-a393-ec249c00f600', 'elisa-colombo', 'published', 'Elisa Colombo', 'elisa.colombo@vertexdigital.com', 'Vertex Digital', 'pro', 'active', 160, 1765815488, 1765815488),\n('94492212-a39d-4faf-a284-5d0e7613b294', 'davide-ferrari', 'published', 'Davide Ferrari', 'davide.ferrari@innovasolutions.it', 'Innova Solutions', 'pro', 'active', 144, 1765922169, 1765922169),\n('0e1b9935-1e9a-4a40-a252-794e4bbab765', 'filippo-lombardi', 'published', 'Filippo Lombardi', 'filippo.lombardi@novalabs.dev', 'Nova Labs', 'free', 'churned', 0, 1766051701, 1766051701),\n('3257b68a-c48c-4514-b365-9795cd57ba4f', 'elisa-gallo', 'published', 'Elisa Gallo', 'elisa.gallo@alphadynamics.io', 'Alpha Dynamics', 'pro', 'active', 125, 1766064312, 1766064312),\n('a0e7b58d-5411-4ee3-ba2e-e39dc83efd5f', 'matteo-conti', 'published', 'Matteo Conti', 'matteo.conti@cloudbase.app', 'CloudBase', 'free', 'active', 0, 1766360722, 1766360722),\n('45f84037-73ae-4898-856e-1439dd6df51f', 'anna-ferrari', 'published', 'Anna Ferrari', 'anna.ferrari@nextgenit.com', 'NextGen IT', 'pro', 'active', 169, 1766419055, 1766419055),\n('ede827b1-5283-4899-ad5c-f2aa16830408', 'camilla-pellegrini', 'published', 'Camilla Pellegrini', 'camilla.pellegrini@globalnet.io', 'GlobalNet', 'enterprise', 'active', 1036, 1766545776, 1766545776),\n('2b44f02f-a10c-4f16-a846-4d2a0cf82a7d', 'beatrice-caruso', 'published', 'Beatrice Caruso', 'beatrice.caruso@cobaltworks.dev', 'Cobalt Works', 'free', 'active', 0, 1766799291, 1766799291),\n('3ba278a0-b709-48da-abca-dab8b092c32a', 'elisa-esposito', 'published', 'Elisa Esposito', 'elisa.esposito@datasync.com', 'DataSync', 'enterprise', 'active', 2350, 1766900782, 1766900782),\n('2ad3a9ad-2c0b-4eec-a1f4-307a77b340bc', 'davide-conti', 'published', 'Davide Conti', 'davide.conti@evergreentech.com', 'Evergreen Tech', 'free', 'active', 0, 1766944363, 1766944363),\n('da024835-e13d-483d-ab80-16832a5d0db0', 'martina-barbieri', 'published', 'Martina Barbieri', 'martina.barbieri@skylineventures.com', 'Skyline Ventures', 'free', 'active', 0, 1767278287, 1767278287),\n('a7dafdd4-8a27-4e9d-958e-e9961ebe1874', 'silvia-caruso', 'published', 'Silvia Caruso', 'silvia.caruso@skylineventures.com', 'Skyline Ventures', 'free', 'churned', 0, 1767363904, 1767363904),\n('edc28f24-0148-4282-9d26-4e0ffb98cba7', 'sofia-fontana', 'published', 'Sofia Fontana', 'sofia.fontana@northwindsoftware.io', 'Northwind Software', 'enterprise', 'active', 2155, 1767512048, 1767512048),\n('3b87c9ef-789d-4fe3-aa6c-f2fee8a77860', 'paola-mariani', 'published', 'Paola Mariani', 'paola.mariani@quantumreach.io', 'Quantum Reach', 'pro', 'active', 133, 1767609780, 1767609780),\n('e1229482-a001-4d3b-9038-5f0eaf0ff992', 'tommaso-gallo', 'published', 'Tommaso Gallo', 'tommaso.gallo@bluepeaksystems.io', 'BluePeak Systems', 'pro', 'active', 44, 1767628588, 1767628588),\n('fda06725-9b09-48d7-b5b1-e28f089bd10c', 'gabriele-conti', 'published', 'Gabriele Conti', 'gabriele.conti@pixelforge.studio', 'Pixel Forge', 'pro', 'active', 50, 1767787960, 1767787960),\n('32bbdf11-c96b-459f-9157-cab99d411e87', 'stefano-greco', 'published', 'Stefano Greco', 'stefano.greco@acmecorp.io', 'Acme Corp', 'free', 'active', 0, 1767875818, 1767875818),\n('43e4d2df-d812-4429-a905-c3ec11ce0e85', 'irene-moretti', 'published', 'Irene Moretti', 'irene.moretti@cobaltworks.dev', 'Cobalt Works', 'free', 'active', 0, 1768010070, 1768010070),\n('8861b8c0-50a2-4b45-bf27-e625ba476ab9', 'paola-marino', 'published', 'Paola Marino', 'paola.marino@evergreentech.com', 'Evergreen Tech', 'free', 'active', 0, 1768056100, 1768056100),\n('baa00dcc-e8c7-4a06-b06b-be15ef92f6fd', 'paola-barbieri', 'published', 'Paola Barbieri', 'paola.barbieri@alphadynamics.io', 'Alpha Dynamics', 'free', 'active', 0, 1768308110, 1768308110),\n('06420806-4150-4ac9-a1cf-4d3b84b54979', 'camilla-esposito', 'published', 'Camilla Esposito', 'camilla.esposito@skylineventures.com', 'Skyline Ventures', 'pro', 'active', 45, 1768331053, 1768331053),\n('aadd47e5-af81-4efe-bc94-97c82d483290', 'stefano-santoro', 'published', 'Stefano Santoro', 'stefano.santoro@globalnet.io', 'GlobalNet', 'enterprise', 'active', 1600, 1768518150, 1768518150),\n('96a5695b-81cd-4817-b0a9-22b0204fea5e', 'irene-bianchi', 'published', 'Irene Bianchi', 'irene.bianchi@betasystems.com', 'Beta Systems', 'enterprise', 'active', 2374, 1768750188, 1768750188),\n('fba1abc3-dcdf-4b09-82b3-b54c3d4a1ff5', 'federico-de-luca', 'published', 'Federico De Luca', 'federico.deluca@datasync.com', 'DataSync', 'free', 'active', 0, 1768903175, 1768903175),\n('bc46cdb0-468b-4722-834a-6e8a4bffc4b0', 'gabriele-romano', 'published', 'Gabriele Romano', 'gabriele.romano@skylineventures.com', 'Skyline Ventures', 'pro', 'active', 132, 1768915814, 1768915814),\n('6e969045-d791-4d0d-a200-bf04c22c698b', 'simone-de-luca', 'published', 'Simone De Luca', 'simone.deluca@datasync.com', 'DataSync', 'pro', 'active', 86, 1769035960, 1769035960),\n('029299ed-2d10-4c1b-9136-2975398209cf', 'martina-ferrari', 'published', 'Martina Ferrari', 'martina.ferrari@silverlinegroup.io', 'Silverline Group', 'free', 'active', 0, 1769124952, 1769124952),\n('2078bb84-68a9-4510-9437-b36d77469369', 'gabriele-giordano', 'published', 'Gabriele Giordano', 'gabriele.giordano@lumendigital.com', 'Lumen Digital', 'free', 'churned', 0, 1769195072, 1769195072),\n('16596278-61b5-41f8-bd37-d3c3b6fa890f', 'alessandro-conti', 'published', 'Alessandro Conti', 'alessandro.conti@nextgenit.com', 'NextGen IT', 'pro', 'active', 49, 1769270333, 1769270333),\n('f8d01fa9-fced-4799-98c0-6f474be6c63a', 'giulia-romano', 'published', 'Giulia Romano', 'giulia.romano@datasync.com', 'DataSync', 'pro', 'active', 100, 1769352138, 1769352138),\n('0f05c2b4-cd65-4621-8754-6713025e5dfa', 'sofia-fontana-1', 'published', 'Sofia Fontana', 'sofia.fontana@meridianlabs.dev', 'Meridian Labs', 'free', 'active', 0, 1769486616, 1769486616),\n('4e7fe795-9100-499e-9794-077001283bd3', 'sofia-conti', 'published', 'Sofia Conti', 'sofia.conti@brightlinemedia.it', 'Brightline Media', 'free', 'active', 0, 1769536958, 1769536958),\n('a45a4ade-a1fa-4ae6-9094-24177e412572', 'elisa-giordano', 'published', 'Elisa Giordano', 'elisa.giordano@silverlinegroup.io', 'Silverline Group', 'pro', 'active', 73, 1769652295, 1769652295),\n('18951e9d-8701-4b61-a359-899b7041218d', 'lorenzo-rossi', 'published', 'Lorenzo Rossi', 'lorenzo.rossi@evergreentech.com', 'Evergreen Tech', 'free', 'active', 0, 1769743742, 1769743742),\n('e2559d37-60b9-419b-93be-382112802167', 'laura-ricci', 'published', 'Laura Ricci', 'laura.ricci@vertexdigital.com', 'Vertex Digital', 'enterprise', 'active', 2223, 1769805426, 1769805426),\n('9b66d549-e60e-4d34-a890-cb16a31b6a8b', 'tommaso-gallo-1', 'published', 'Tommaso Gallo', 'tommaso.gallo@lumendigital.com', 'Lumen Digital', 'free', 'active', 0, 1769891548, 1769891548),\n('eba78b68-d1c6-42ce-a32d-b2c9d6ac9617', 'matteo-marino', 'published', 'Matteo Marino', 'matteo.marino@brightlinemedia.it', 'Brightline Media', 'pro', 'active', 133, 1769960277, 1769960277),\n('e89d5239-f51d-42c1-a783-8c78f0b81185', 'irene-conti', 'published', 'Irene Conti', 'irene.conti@lumendigital.com', 'Lumen Digital', 'pro', 'active', 162, 1770063346, 1770063346),\n('c5410938-ba65-49f5-b102-ccc930ea478d', 'nicola-mancini', 'published', 'Nicola Mancini', 'nicola.mancini@lumendigital.com', 'Lumen Digital', 'enterprise', 'active', 2083, 1770151113, 1770151113),\n('f6213536-e3f5-49ba-a8a7-cdb0dcc05bd0', 'stefano-ferrari', 'published', 'Stefano Ferrari', 'stefano.ferrari@techflow.dev', 'TechFlow', 'enterprise', 'active', 1042, 1770241123, 1770241123),\n('6ddc0ea2-1171-4151-9fe0-6206ab222bce', 'davide-greco', 'published', 'Davide Greco', 'davide.greco@northwindsoftware.io', 'Northwind Software', 'free', 'active', 0, 1770267935, 1770267935),\n('2a019050-fad7-4f07-bcbd-1749a4088b28', 'francesca-bruno', 'published', 'Francesca Bruno', 'francesca.bruno@northwindsoftware.io', 'Northwind Software', 'enterprise', 'active', 1582, 1770366753, 1770366753),\n('e6355098-9a47-4f21-b739-ae398c760b02', 'elisa-esposito-1', 'published', 'Elisa Esposito', 'elisa.esposito@forgeandco.io', 'Forge & Co', 'pro', 'churned', 0, 1770457232, 1770457232),\n('9f805fa1-ab81-4ff3-af19-5c0454ece830', 'marco-pellegrini', 'published', 'Marco Pellegrini', 'marco.pellegrini@orbitcommerce.com', 'Orbit Commerce', 'pro', 'active', 75, 1770514679, 1770514679),\n('5881fb10-d95d-4252-8813-b265eb32ea8a', 'riccardo-lombardi', 'published', 'Riccardo Lombardi', 'riccardo.lombardi@vertexdigital.com', 'Vertex Digital', 'free', 'active', 0, 1770614835, 1770614835),\n('c7de919b-04f6-45e3-ba4c-4d37ce9c0d0d', 'marco-pellegrini-1', 'published', 'Marco Pellegrini', 'marco.pellegrini@cobaltworks.dev', 'Cobalt Works', 'pro', 'active', 136, 1770646474, 1770646474),\n('ee020c2d-81c8-4011-934d-e84fbca7bd78', 'francesca-ferrari', 'published', 'Francesca Ferrari', 'francesca.ferrari@forgeandco.io', 'Forge & Co', 'free', 'active', 0, 1770782118, 1770782118),\n('99e8276c-0e20-4fad-abce-83df07771dce', 'elena-caruso', 'published', 'Elena Caruso', 'elena.caruso@alphadynamics.io', 'Alpha Dynamics', 'enterprise', 'active', 1689, 1770804563, 1770804563),\n('a9b3efb9-3f0d-4667-ad11-5d680036319f', 'davide-colombo', 'published', 'Davide Colombo', 'davide.colombo@globalnet.io', 'GlobalNet', 'enterprise', 'active', 1716, 1770863263, 1770863263),\n('c7bdbde2-646b-467c-a714-37df847c3881', 'davide-bianchi', 'published', 'Davide Bianchi', 'davide.bianchi@vertexdigital.com', 'Vertex Digital', 'free', 'active', 0, 1770881756, 1770881756),\n('aef98b7c-54f9-4c0e-8af3-03aadd6ca499', 'chiara-barbieri', 'published', 'Chiara Barbieri', 'chiara.barbieri@globalnet.io', 'GlobalNet', 'free', 'active', 0, 1770932874, 1770932874),\n('61665b60-025d-4115-9a36-d7bb7a36b725', 'luca-fontana', 'published', 'Luca Fontana', 'luca.fontana@pixelforge.studio', 'Pixel Forge', 'free', 'active', 0, 1770924742, 1770924742),\n('d006eeae-3062-4c6c-aa19-d2561b9697da', 'camilla-greco', 'published', 'Camilla Greco', 'camilla.greco@forgeandco.io', 'Forge & Co', 'enterprise', 'active', 713, 1771043105, 1771043105),\n('77a393d7-b907-47e5-9f4b-4ad30d994aab', 'silvia-mariani', 'published', 'Silvia Mariani', 'silvia.mariani@pixelforge.studio', 'Pixel Forge', 'free', 'active', 0, 1771122413, 1771122413),\n('7bf6b496-73ee-425f-8224-047f320337d1', 'sofia-mariani', 'published', 'Sofia Mariani', 'sofia.mariani@vertexdigital.com', 'Vertex Digital', 'pro', 'active', 110, 1771115008, 1771115008),\n('58a9de57-fae6-4a75-85bc-287684e76494', 'marco-ferrari', 'published', 'Marco Ferrari', 'marco.ferrari@evergreentech.com', 'Evergreen Tech', 'free', 'active', 0, 1771167627, 1771167627),\n('1b88a5f0-6b12-4e42-9919-dd905592e32d', 'laura-colombo', 'published', 'Laura Colombo', 'laura.colombo@evergreentech.com', 'Evergreen Tech', 'free', 'active', 0, 1771308983, 1771308983),\n('bd6870c9-cabc-4e93-bc81-5dee7807eeae', 'sofia-rossi', 'published', 'Sofia Rossi', 'sofia.rossi@sunriseanalytics.com', 'Sunrise Analytics', 'pro', 'active', 110, 1771266635, 1771266635),\n('53a11531-a9ce-4223-9c6e-3f589a8b5567', 'gabriele-mancini', 'published', 'Gabriele Mancini', 'gabriele.mancini@quantumreach.io', 'Quantum Reach', 'free', 'active', 0, 1771409463, 1771409463),\n('5c42a4af-067d-41cc-b1e5-d8a6fbe83885', 'valentina-ricci', 'published', 'Valentina Ricci', 'valentina.ricci@sunriseanalytics.com', 'Sunrise Analytics', 'enterprise', 'active', 1182, 1771454648, 1771454648),\n('c839e77e-a766-40c7-8967-ed74224fcc36', 'martina-gallo', 'published', 'Martina Gallo', 'martina.gallo@sunriseanalytics.com', 'Sunrise Analytics', 'pro', 'active', 105, 1771512153, 1771512153),\n('82d103a6-8103-4d52-8d8c-fbc4ec29ad61', 'federico-moretti', 'published', 'Federico Moretti', 'federico.moretti@pixelforge.studio', 'Pixel Forge', 'free', 'churned', 0, 1771652128, 1771652128),\n('1a9a1a11-492c-4538-9ac7-85cdb117535b', 'silvia-rossi', 'published', 'Silvia Rossi', 'silvia.rossi@sunriseanalytics.com', 'Sunrise Analytics', 'free', 'active', 0, 1771692972, 1771692972),\n('13a57c21-d57b-47e0-8ea5-df2b16d2bec3', 'filippo-mancini', 'published', 'Filippo Mancini', 'filippo.mancini@datasync.com', 'DataSync', 'enterprise', 'active', 1950, 1771705903, 1771705903),\n('3647cfa0-592f-4c44-a5d0-8cf1f233ceea', 'valentina-de-luca', 'published', 'Valentina De Luca', 'valentina.deluca@sunriseanalytics.com', 'Sunrise Analytics', 'pro', 'active', 172, 1771819875, 1771819875),\n('a4c5f792-5e05-4acd-aa90-b87f2ab000c0', 'chiara-fontana', 'published', 'Chiara Fontana', 'chiara.fontana@skylineventures.com', 'Skyline Ventures', 'free', 'active', 0, 1771810557, 1771810557),\n('8a2dfd71-3be4-4728-aa64-393591f2db59', 'stefano-mariani', 'published', 'Stefano Mariani', 'stefano.mariani@orbitcommerce.com', 'Orbit Commerce', 'pro', 'active', 89, 1771875080, 1771875080),\n('204fac0b-9c17-41e2-be22-3e7aea409681', 'lorenzo-rossi-1', 'published', 'Lorenzo Rossi', 'lorenzo.rossi@nextgenit.com', 'NextGen IT', 'pro', 'active', 64, 1772010616, 1772010616),\n('ebce70d5-61ef-41af-89f5-01a3271f0d10', 'silvia-colombo', 'published', 'Silvia Colombo', 'silvia.colombo@quantumreach.io', 'Quantum Reach', 'free', 'active', 0, 1772047972, 1772047972),\n('eebcc98c-1c55-49b7-82b3-e8c4431370bb', 'giulia-marino', 'published', 'Giulia Marino', 'giulia.marino@novalabs.dev', 'Nova Labs', 'pro', 'churned', 0, 1772114903, 1772114903),\n('c0482688-7d51-4883-9b17-b611be69efa5', 'elisa-pellegrini', 'published', 'Elisa Pellegrini', 'elisa.pellegrini@novalabs.dev', 'Nova Labs', 'free', 'active', 0, 1772152512, 1772152512),\n('74a0af98-e16e-4534-afec-3c8d441d453b', 'federico-marino', 'published', 'Federico Marino', 'federico.marino@skylineventures.com', 'Skyline Ventures', 'enterprise', 'active', 1790, 1772205965, 1772205965),\n('c3a20305-b9f5-4e51-8643-9fc2ebe31aa7', 'simone-pellegrini', 'published', 'Simone Pellegrini', 'simone.pellegrini@pixelforge.studio', 'Pixel Forge', 'pro', 'active', 130, 1772335907, 1772335907),\n('2b2b1eab-e6b3-49d6-a0cf-f6048a5e3780', 'lorenzo-fontana', 'published', 'Lorenzo Fontana', 'lorenzo.fontana@pixelforge.studio', 'Pixel Forge', 'free', 'active', 0, 1772358495, 1772358495),\n('86bc8726-c3e6-4f3e-8e53-4a7276e9ea58', 'gabriele-rizzo', 'published', 'Gabriele Rizzo', 'gabriele.rizzo@novalabs.dev', 'Nova Labs', 'free', 'active', 0, 1772395738, 1772395738),\n('92ee9f15-47f6-46a7-ab03-a7bff8705dad', 'martina-esposito', 'published', 'Martina Esposito', 'martina.esposito@meridianlabs.dev', 'Meridian Labs', 'pro', 'churned', 0, 1772374322, 1772374322),\n('70aad252-4e50-40ba-afc1-3ecba08e4082', 'beatrice-mancini', 'published', 'Beatrice Mancini', 'beatrice.mancini@betasystems.com', 'Beta Systems', 'pro', 'active', 159, 1772472735, 1772472735),\n('09491488-2528-4232-a3e5-2fd5c2c63544', 'davide-marino', 'published', 'Davide Marino', 'davide.marino@quantumreach.io', 'Quantum Reach', 'pro', 'active', 139, 1772510185, 1772510185),\n('8856f016-2a70-4bfd-883c-56c1ff94e81f', 'luca-mariani', 'published', 'Luca Mariani', 'luca.mariani@sunriseanalytics.com', 'Sunrise Analytics', 'free', 'active', 0, 1772591442, 1772591442),\n('8c62523a-2323-4de3-897f-e4bfc7e40671', 'matteo-lombardi', 'published', 'Matteo Lombardi', 'matteo.lombardi@northwindsoftware.io', 'Northwind Software', 'enterprise', 'active', 1453, 1772703690, 1772703690),\n('98067136-2774-4e9d-8454-36130829c3af', 'chiara-santoro', 'published', 'Chiara Santoro', 'chiara.santoro@alphadynamics.io', 'Alpha Dynamics', 'enterprise', 'churned', 0, 1772709022, 1772709022),\n('61b9bfe2-5627-49ad-ac8d-626c4e2902bf', 'anna-ricci', 'published', 'Anna Ricci', 'anna.ricci@novalabs.dev', 'Nova Labs', 'free', 'active', 0, 1772732462, 1772732462),\n('0a6c8747-2324-4654-90af-80b985d4ed43', 'chiara-fontana-1', 'published', 'Chiara Fontana', 'chiara.fontana@cobaltworks.dev', 'Cobalt Works', 'pro', 'active', 154, 1772847325, 1772847325),\n('01f81f7d-9237-4763-9bff-c26e08a28243', 'silvia-rossi-1', 'published', 'Silvia Rossi', 'silvia.rossi@meridianlabs.dev', 'Meridian Labs', 'free', 'active', 0, 1772857270, 1772857270),\n('74af70bb-6f15-4fe1-9084-84142d64fd24', 'sofia-caruso', 'published', 'Sofia Caruso', 'sofia.caruso@pixelforge.studio', 'Pixel Forge', 'free', 'active', 0, 1772939989, 1772939989),\n('4e9967c2-1b54-4fc0-bdb3-64b23195d875', 'matteo-mancini', 'published', 'Matteo Mancini', 'matteo.mancini@pixelforge.studio', 'Pixel Forge', 'free', 'churned', 0, 1773016610, 1773016610),\n('f5b1467f-2510-46d1-b052-672d13f15f07', 'paola-pellegrini', 'published', 'Paola Pellegrini', 'paola.pellegrini@silverlinegroup.io', 'Silverline Group', 'free', 'active', 0, 1773049461, 1773049461),\n('c5354f2b-5425-438f-bb67-28c545d8f958', 'federico-mancini', 'published', 'Federico Mancini', 'federico.mancini@bluepeaksystems.io', 'BluePeak Systems', 'pro', 'active', 55, 1773130781, 1773130781),\n('38006071-e48e-4e5f-a900-8fb831f71087', 'filippo-lombardi-1', 'published', 'Filippo Lombardi', 'filippo.lombardi@sunriseanalytics.com', 'Sunrise Analytics', 'free', 'active', 0, 1773080984, 1773080984),\n('f4a0bf8a-b74f-4a10-bc20-11c9881ad000', 'marco-lombardi', 'published', 'Marco Lombardi', 'marco.lombardi@betasystems.com', 'Beta Systems', 'pro', 'active', 56, 1773171363, 1773171363),\n('4ca8c244-4177-4d09-bca7-1e9c68d9c9dc', 'simone-rizzo', 'published', 'Simone Rizzo', 'simone.rizzo@orbitcommerce.com', 'Orbit Commerce', 'free', 'active', 0, 1773180505, 1773180505),\n('85511691-7a1d-4da7-8c00-c07eb62f014c', 'francesca-santoro', 'published', 'Francesca Santoro', 'francesca.santoro@skylineventures.com', 'Skyline Ventures', 'pro', 'active', 163, 1773297206, 1773297206),\n('6c4fd4c5-fda3-477f-9a9d-3ec19310737d', 'elisa-barbieri', 'published', 'Elisa Barbieri', 'elisa.barbieri@novalabs.dev', 'Nova Labs', 'free', 'active', 0, 1773369614, 1773369614),\n('5fb9ae70-4511-48a1-9e88-b5dc9fe5a778', 'filippo-conti', 'published', 'Filippo Conti', 'filippo.conti@quantumreach.io', 'Quantum Reach', 'enterprise', 'active', 859, 1773339605, 1773339605),\n('48aeb5ba-b5e1-4894-ae5e-6bf1b358acd1', 'simone-esposito', 'published', 'Simone Esposito', 'simone.esposito@skylineventures.com', 'Skyline Ventures', 'free', 'active', 0, 1773423330, 1773423330),\n('b974ba28-0122-4b96-bb4a-bfe31e2a778f', 'laura-bianchi', 'published', 'Laura Bianchi', 'laura.bianchi@innovasolutions.it', 'Innova Solutions', 'free', 'active', 0, 1773438381, 1773438381),\n('9d9fd9f5-dd60-4cf7-9863-11ae30aad79f', 'alessandro-bruno', 'published', 'Alessandro Bruno', 'alessandro.bruno@cloudbase.app', 'CloudBase', 'free', 'active', 0, 1773543232, 1773543232),\n('00d9a2ce-1195-4839-bc61-7c512fe1bdb9', 'francesca-bianchi', 'published', 'Francesca Bianchi', 'francesca.bianchi@bluepeaksystems.io', 'BluePeak Systems', 'pro', 'active', 39, 1773537952, 1773537952),\n('47195146-d267-406d-8f17-dec101d601f7', 'gabriele-greco', 'published', 'Gabriele Greco', 'gabriele.greco@forgeandco.io', 'Forge & Co', 'free', 'active', 0, 1773581904, 1773581904),\n('2720c436-42d6-4a49-83dc-3fcd4ab94c24', 'alessandro-esposito', 'published', 'Alessandro Esposito', 'alessandro.esposito@orbitcommerce.com', 'Orbit Commerce', 'free', 'active', 0, 1773694574, 1773694574),\n('4deedf0e-9b29-448c-a01f-b64db138b6dd', 'valentina-moretti', 'published', 'Valentina Moretti', 'valentina.moretti@brightlinemedia.it', 'Brightline Media', 'pro', 'active', 164, 1773744864, 1773744864),\n('5c3ac8c3-15fb-456c-a640-70c013ed2070', 'chiara-de-luca', 'published', 'Chiara De Luca', 'chiara.deluca@alphadynamics.io', 'Alpha Dynamics', 'free', 'active', 0, 1773817168, 1773817168),\n('3e30eb5c-5939-4435-a1de-00f38a057e0c', 'elena-romano', 'published', 'Elena Romano', 'elena.romano@forgeandco.io', 'Forge & Co', 'pro', 'active', 145, 1773782565, 1773782565),\n('c9d31bd2-9cc7-4e15-a7f4-4e1ad8338288', 'andrea-costa', 'published', 'Andrea Costa', 'andrea.costa@evergreentech.com', 'Evergreen Tech', 'free', 'active', 0, 1773910114, 1773910114),\n('c6bcd154-a41e-47e0-b9e6-d9923cce7998', 'martina-santoro', 'published', 'Martina Santoro', 'martina.santoro@quantumreach.io', 'Quantum Reach', 'free', 'active', 0, 1773875534, 1773875534),\n('9284e6af-aff9-418b-baa7-1c59b1a04292', 'nicola-de-luca', 'published', 'Nicola De Luca', 'nicola.deluca@northwindsoftware.io', 'Northwind Software', 'free', 'active', 0, 1773981542, 1773981542),\n('bf510b81-d1f1-492b-80a4-8b1f4e83bff9', 'chiara-mariani', 'published', 'Chiara Mariani', 'chiara.mariani@vertexdigital.com', 'Vertex Digital', 'pro', 'active', 66, 1773970498, 1773970498),\n('5ae8eb4d-84ba-435b-93ca-acda535bf029', 'irene-ferrari', 'published', 'Irene Ferrari', 'irene.ferrari@globalnet.io', 'GlobalNet', 'free', 'active', 0, 1774052120, 1774052120),\n('e0deee07-bc13-441a-bc52-60a7508894a8', 'chiara-esposito', 'published', 'Chiara Esposito', 'chiara.esposito@quantumreach.io', 'Quantum Reach', 'enterprise', 'active', 1579, 1774169473, 1774169473),\n('09d1e9ee-7d60-4851-8e12-4215f3380c09', 'martina-moretti', 'published', 'Martina Moretti', 'martina.moretti@vertexdigital.com', 'Vertex Digital', 'enterprise', 'active', 1006, 1774153446, 1774153446),\n('eb3008c1-26e2-4d23-b02f-83774c9c248d', 'paola-santoro', 'published', 'Paola Santoro', 'paola.santoro@lumendigital.com', 'Lumen Digital', 'free', 'active', 0, 1774228952, 1774228952),\n('d883aa42-2456-4f18-a8c0-247aae70c134', 'lorenzo-caruso', 'published', 'Lorenzo Caruso', 'lorenzo.caruso@evergreentech.com', 'Evergreen Tech', 'free', 'active', 0, 1774328476, 1774328476),\n('ec9e8f9a-3333-4e9b-8f49-4ec0c07f891f', 'anna-moretti', 'published', 'Anna Moretti', 'anna.moretti@silverlinegroup.io', 'Silverline Group', 'free', 'active', 0, 1774277788, 1774277788),\n('634bff5b-68ff-453f-99e6-72570d074cd4', 'irene-ferrari-1', 'published', 'Irene Ferrari', 'irene.ferrari@forgeandco.io', 'Forge & Co', 'enterprise', 'active', 2073, 1774371810, 1774371810),\n('0ad629e5-8450-49a1-b4d5-4f777de2bd5e', 'matteo-rizzo', 'published', 'Matteo Rizzo', 'matteo.rizzo@bluepeaksystems.io', 'BluePeak Systems', 'free', 'active', 0, 1774360809, 1774360809),\n('4d7d0ec0-430f-463e-8892-dff55f003e3c', 'chiara-caruso', 'published', 'Chiara Caruso', 'chiara.caruso@cobaltworks.dev', 'Cobalt Works', 'pro', 'churned', 0, 1774443660, 1774443660),\n('ddb38f7a-51bf-43e4-a7d0-133b8652a4f9', 'luca-mancini', 'published', 'Luca Mancini', 'luca.mancini@betasystems.com', 'Beta Systems', 'enterprise', 'active', 1289, 1774467441, 1774467441),\n('c13d9324-56ae-4a89-b6f3-4be0be9e662f', 'beatrice-lombardi', 'published', 'Beatrice Lombardi', 'beatrice.lombardi@betasystems.com', 'Beta Systems', 'pro', 'active', 161, 1774613381, 1774613381),\n('b6e7d802-f387-441e-8b0b-c089b72a1e90', 'tommaso-fontana', 'published', 'Tommaso Fontana', 'tommaso.fontana@techflow.dev', 'TechFlow', 'free', 'active', 0, 1774599259, 1774599259),\n('b78a3271-509e-4fd9-bf69-24577ab2bccc', 'filippo-moretti', 'published', 'Filippo Moretti', 'filippo.moretti@techflow.dev', 'TechFlow', 'pro', 'active', 71, 1774683711, 1774683711),\n('b7705a60-adee-4b67-81dc-7a0d05a94485', 'davide-ferrari-1', 'published', 'Davide Ferrari', 'davide.ferrari@techflow.dev', 'TechFlow', 'free', 'active', 0, 1774620961, 1774620961),\n('6909dd1c-6392-4013-af56-f35e273c3a66', 'valentina-rizzo', 'published', 'Valentina Rizzo', 'valentina.rizzo@skylineventures.com', 'Skyline Ventures', 'free', 'active', 0, 1774775276, 1774775276),\n('e5b6d3d3-a3a4-458c-9d56-ea93d90a1042', 'silvia-de-luca', 'published', 'Silvia De Luca', 'silvia.deluca@lumendigital.com', 'Lumen Digital', 'free', 'active', 0, 1774736987, 1774736987),\n('80888cd7-7fcd-4958-b790-c900201e4564', 'elisa-conti', 'published', 'Elisa Conti', 'elisa.conti@skylineventures.com', 'Skyline Ventures', 'pro', 'active', 136, 1774808205, 1774808205),\n('8ffe19d9-4801-4f67-abd7-76ac986ccedb', 'giulia-costa', 'published', 'Giulia Costa', 'giulia.costa@nextgenit.com', 'NextGen IT', 'free', 'churned', 0, 1774831716, 1774831716),\n('114870cd-01a0-4c49-ad0e-5e967fd42e8b', 'beatrice-fontana', 'published', 'Beatrice Fontana', 'beatrice.fontana@acmecorp.io', 'Acme Corp', 'free', 'active', 0, 1774893047, 1774893047),\n('82d14734-9dc4-4c48-86f8-c7bc1d2fbcc4', 'simone-gallo', 'published', 'Simone Gallo', 'simone.gallo@techflow.dev', 'TechFlow', 'free', 'active', 0, 1774906363, 1774906363),\n('7c0178fc-ab34-4812-898f-4d3daec24e02', 'riccardo-esposito', 'published', 'Riccardo Esposito', 'riccardo.esposito@cobaltworks.dev', 'Cobalt Works', 'pro', 'active', 128, 1775001987, 1775001987),\n('5ce7b90c-1b5f-489a-a0aa-d6c79f2db106', 'anna-santoro', 'published', 'Anna Santoro', 'anna.santoro@northwindsoftware.io', 'Northwind Software', 'free', 'active', 0, 1774981115, 1774981115),\n('9e037244-70d2-4ae2-aada-0a8a92588adb', 'irene-mariani', 'published', 'Irene Mariani', 'irene.mariani@silverlinegroup.io', 'Silverline Group', 'enterprise', 'active', 1842, 1775084131, 1775084131),\n('ea6bfeac-d72f-4cf3-b42f-4337a2d3ba3f', 'stefano-bianchi', 'published', 'Stefano Bianchi', 'stefano.bianchi@quantumreach.io', 'Quantum Reach', 'pro', 'active', 132, 1775106769, 1775106769),\n('5b405c11-a333-42fa-a44f-039903ebf8cc', 'silvia-mariani-1', 'published', 'Silvia Mariani', 'silvia.mariani@bluepeaksystems.io', 'BluePeak Systems', 'pro', 'active', 142, 1775145405, 1775145405),\n('410d7519-1772-42bc-b067-dd1c8942429a', 'stefano-caruso', 'published', 'Stefano Caruso', 'stefano.caruso@orbitcommerce.com', 'Orbit Commerce', 'pro', 'active', 40, 1775149967, 1775149967),\n('eb7b3aba-7629-4d9c-a59e-a985400d7c2c', 'camilla-barbieri', 'published', 'Camilla Barbieri', 'camilla.barbieri@lumendigital.com', 'Lumen Digital', 'free', 'churned', 0, 1775267891, 1775267891),\n('11a948ba-400b-4636-a0c5-235d7cff18fc', 'alessandro-esposito-1', 'published', 'Alessandro Esposito', 'alessandro.esposito@datasync.com', 'DataSync', 'pro', 'active', 63, 1775268983, 1775268983),\n('a1f6190f-c373-4977-9150-3dc9b379ef16', 'matteo-giordano', 'published', 'Matteo Giordano', 'matteo.giordano@nextgenit.com', 'NextGen IT', 'pro', 'active', 102, 1775387098, 1775387098),\n('0aefdbf3-599c-4650-a865-7774517c0aaf', 'alessandro-mancini', 'published', 'Alessandro Mancini', 'alessandro.mancini@quantumreach.io', 'Quantum Reach', 'pro', 'active', 112, 1775324947, 1775324947),\n('3eee89f9-28fd-4cfb-a29e-73c90f7429dd', 'davide-gallo', 'published', 'Davide Gallo', 'davide.gallo@silverlinegroup.io', 'Silverline Group', 'free', 'active', 0, 1775424928, 1775424928),\n('b2411a37-1276-4a1d-b074-542d29e88a95', 'francesca-gallo', 'published', 'Francesca Gallo', 'francesca.gallo@orbitcommerce.com', 'Orbit Commerce', 'free', 'active', 0, 1775463387, 1775463387),\n('35e79d15-ca97-4e93-bda8-0715f9d23e00', 'camilla-bruno', 'published', 'Camilla Bruno', 'camilla.bruno@acmecorp.io', 'Acme Corp', 'free', 'active', 0, 1775540561, 1775540561),\n('14dc2ddb-0e56-4da3-b185-aee1c315120d', 'valentina-lombardi', 'published', 'Valentina Lombardi', 'valentina.lombardi@evergreentech.com', 'Evergreen Tech', 'free', 'active', 0, 1775546550, 1775546550),\n('f5c7a0b1-abe0-4bca-9984-59a465342a85', 'elena-mariani', 'published', 'Elena Mariani', 'elena.mariani@quantumreach.io', 'Quantum Reach', 'free', 'active', 0, 1775639463, 1775639463),\n('f7206b99-9e7c-45b0-b1a5-ca8d449a987d', 'gabriele-romano-1', 'published', 'Gabriele Romano', 'gabriele.romano@betasystems.com', 'Beta Systems', 'pro', 'active', 146, 1775645043, 1775645043),\n('39457a00-f6ae-4a76-8827-7247484d452d', 'irene-caruso', 'published', 'Irene Caruso', 'irene.caruso@quantumreach.io', 'Quantum Reach', 'free', 'active', 0, 1775682527, 1775682527),\n('f13572b0-d5ae-4b14-a3ec-132e5fe9ceae', 'stefano-de-luca', 'published', 'Stefano De Luca', 'stefano.deluca@skylineventures.com', 'Skyline Ventures', 'free', 'active', 0, 1775704888, 1775704888),\n('aa500940-c2f3-40f9-97a8-4181677b54cf', 'elena-bruno', 'published', 'Elena Bruno', 'elena.bruno@datasync.com', 'DataSync', 'free', 'churned', 0, 1775746527, 1775746527),\n('5f89bc44-c3b0-4163-b61e-dc785a459d69', 'francesca-bianchi-1', 'published', 'Francesca Bianchi', 'francesca.bianchi@datasync.com', 'DataSync', 'free', 'active', 0, 1775768526, 1775768526),\n('f7dd4180-f793-425a-8c41-9043bc9b8af3', 'camilla-conti', 'published', 'Camilla Conti', 'camilla.conti@globalnet.io', 'GlobalNet', 'free', 'active', 0, 1775891180, 1775891180),\n('cfc313d1-b386-4bac-9f3e-dcfd79714e8c', 'federico-lombardi', 'published', 'Federico Lombardi', 'federico.lombardi@quantumreach.io', 'Quantum Reach', 'pro', 'active', 110, 1775833751, 1775833751),\n('c7f74a59-d53b-4846-9299-213bef30f1ed', 'sofia-caruso-1', 'published', 'Sofia Caruso', 'sofia.caruso@evergreentech.com', 'Evergreen Tech', 'free', 'active', 0, 1775892756, 1775892756),\n('b4275859-e432-4f54-adea-b1c262833cce', 'tommaso-romano', 'published', 'Tommaso Romano', 'tommaso.romano@bluepeaksystems.io', 'BluePeak Systems', 'free', 'active', 0, 1775939436, 1775939436),\n('1d5fa5ec-7453-4f7b-8a69-b3d5aefc1ae2', 'luca-caruso', 'published', 'Luca Caruso', 'luca.caruso@innovasolutions.it', 'Innova Solutions', 'enterprise', 'active', 952, 1775973874, 1775973874),\n('a1c303c8-8ca7-4d37-b625-b124ed52b96e', 'davide-esposito', 'published', 'Davide Esposito', 'davide.esposito@meridianlabs.dev', 'Meridian Labs', 'free', 'active', 0, 1776062916, 1776062916),\n('a7534440-3e4a-4fd9-8165-5d90a4f5299f', 'silvia-santoro', 'published', 'Silvia Santoro', 'silvia.santoro@quantumreach.io', 'Quantum Reach', 'free', 'active', 0, 1776035049, 1776035049),\n('116e0432-63cc-41aa-b967-f3c8e5b00a36', 'irene-mariani-1', 'published', 'Irene Mariani', 'irene.mariani@bluepeaksystems.io', 'BluePeak Systems', 'free', 'active', 0, 1776063924, 1776063924),\n('1c41ea21-41b6-4e2b-bd2e-865b329a3948', 'lorenzo-marino', 'published', 'Lorenzo Marino', 'lorenzo.marino@lumendigital.com', 'Lumen Digital', 'free', 'churned', 0, 1776114510, 1776114510),\n('de4e4ac9-a6d3-4758-ad85-a099cb1767ce', 'tommaso-costa', 'published', 'Tommaso Costa', 'tommaso.costa@techflow.dev', 'TechFlow', 'pro', 'active', 103, 1776121350, 1776121350),\n('b0b20a7c-6247-473e-b7a8-30aadb5e6192', 'elena-ferrari', 'published', 'Elena Ferrari', 'elena.ferrari@brightlinemedia.it', 'Brightline Media', 'pro', 'active', 114, 1776188142, 1776188142),\n('13d11bbb-26a0-43e9-a8f0-b3ce489a55d9', 'matteo-gallo', 'published', 'Matteo Gallo', 'matteo.gallo@quantumreach.io', 'Quantum Reach', 'free', 'churned', 0, 1776187193, 1776187193),\n('a7e984a4-7fbb-47dd-9b25-001b4b4d2714', 'elisa-bruno', 'published', 'Elisa Bruno', 'elisa.bruno@bluepeaksystems.io', 'BluePeak Systems', 'free', 'active', 0, 1776311856, 1776311856),\n('7487af79-a1b4-49a3-922c-d9c32e534cf9', 'filippo-mancini-1', 'published', 'Filippo Mancini', 'filippo.mancini@vertexdigital.com', 'Vertex Digital', 'free', 'active', 0, 1776322316, 1776322316),\n('e45c5fd5-5815-4553-b4ca-f7d08ab69704', 'silvia-fontana', 'published', 'Silvia Fontana', 'silvia.fontana@techflow.dev', 'TechFlow', 'free', 'active', 0, 1776340734, 1776340734),\n('171853fd-4f3b-405d-8a38-237ce4a29208', 'luca-giordano', 'published', 'Luca Giordano', 'luca.giordano@innovasolutions.it', 'Innova Solutions', 'free', 'active', 0, 1776415223, 1776415223),\n('ad2c0f4e-6e1a-42fa-a127-1f962f4a2fe7', 'valentina-fontana', 'published', 'Valentina Fontana', 'valentina.fontana@silverlinegroup.io', 'Silverline Group', 'free', 'active', 0, 1776417698, 1776417698),\n('e80b18e5-7d62-477c-814e-b547feedf5c7', 'giulia-romano-1', 'published', 'Giulia Romano', 'giulia.romano@evergreentech.com', 'Evergreen Tech', 'free', 'active', 0, 1776447795, 1776447795),\n('bf0cab3d-f0d8-4cda-926f-a391a861535f', 'sofia-barbieri', 'published', 'Sofia Barbieri', 'sofia.barbieri@betasystems.com', 'Beta Systems', 'free', 'active', 0, 1776440063, 1776440063),\n('12e09a24-a636-4064-87a5-3acd541bded9', 'elisa-marino', 'published', 'Elisa Marino', 'elisa.marino@sunriseanalytics.com', 'Sunrise Analytics', 'free', 'active', 0, 1776601188, 1776601188),\n('10e170a1-ee37-4c6e-a432-f0d3de7811ca', 'luca-conti', 'published', 'Luca Conti', 'luca.conti@alphadynamics.io', 'Alpha Dynamics', 'free', 'active', 0, 1776540943, 1776540943),\n('9d0f556f-172b-4e10-be4c-2059dda23734', 'martina-caruso', 'published', 'Martina Caruso', 'martina.caruso@skylineventures.com', 'Skyline Ventures', 'pro', 'active', 139, 1776616719, 1776616719),\n('59f810e9-ee58-4892-99a4-092853422742', 'sofia-romano', 'published', 'Sofia Romano', 'sofia.romano@globalnet.io', 'GlobalNet', 'pro', 'active', 122, 1776674107, 1776674107),\n('c2a0748c-0778-47b9-812d-531fe9ee6bd0', 'filippo-bruno', 'published', 'Filippo Bruno', 'filippo.bruno@betasystems.com', 'Beta Systems', 'free', 'active', 0, 1776664881, 1776664881),\n('c106ca5b-7a22-48d3-ab66-97e9e6b04c54', 'sofia-giordano', 'published', 'Sofia Giordano', 'sofia.giordano@novalabs.dev', 'Nova Labs', 'free', 'active', 0, 1776767589, 1776767589),\n('dba63ae6-2647-4381-9279-01de53f95ef1', 'riccardo-esposito-1', 'published', 'Riccardo Esposito', 'riccardo.esposito@pixelforge.studio', 'Pixel Forge', 'free', 'active', 0, 1776696009, 1776696009),\n('80cae293-f6c2-42b8-9cf7-b7590fdd2c68', 'alessandro-bruno-1', 'published', 'Alessandro Bruno', 'alessandro.bruno@innovasolutions.it', 'Innova Solutions', 'free', 'active', 0, 1776689531, 1776689531),\n('caadffc8-5bcc-4250-9fce-f0d27aedac14', 'chiara-santoro-1', 'published', 'Chiara Santoro', 'chiara.santoro@nextgenit.com', 'NextGen IT', 'enterprise', 'active', 2316, 1776816575, 1776816575),\n('01b6fdb8-06a4-4b69-87a5-c24cd39a2c52', 'marco-mariani', 'published', 'Marco Mariani', 'marco.mariani@cobaltworks.dev', 'Cobalt Works', 'free', 'active', 0, 1776795775, 1776795775),\n('9004f054-6a4c-47a3-b1e3-8ef524937439', 'lorenzo-conti', 'published', 'Lorenzo Conti', 'lorenzo.conti@globalnet.io', 'GlobalNet', 'enterprise', 'active', 1412, 1776881962, 1776881962),\n('49a2a828-bdc2-455d-a69d-401ec4790927', 'francesca-conti', 'published', 'Francesca Conti', 'francesca.conti@globalnet.io', 'GlobalNet', 'enterprise', 'churned', 0, 1776900704, 1776900704),\n('960efb2f-263f-4054-ba17-3001dbf1b871', 'elena-lombardi', 'published', 'Elena Lombardi', 'elena.lombardi@bluepeaksystems.io', 'BluePeak Systems', 'enterprise', 'active', 630, 1776980256, 1776980256),\n('20054e67-3d21-48d5-8d08-107071186d19', 'laura-ricci-1', 'published', 'Laura Ricci', 'laura.ricci@globalnet.io', 'GlobalNet', 'free', 'churned', 0, 1776979578, 1776979578),\n('457402b8-d6ad-433c-833a-8a3ec88e968a', 'filippo-rizzo', 'published', 'Filippo Rizzo', 'filippo.rizzo@skylineventures.com', 'Skyline Ventures', 'free', 'active', 0, 1777087917, 1777087917),\n('bb51f933-7912-4929-8551-0d9177a8cdf0', 'chiara-mariani-1', 'published', 'Chiara Mariani', 'chiara.mariani@lumendigital.com', 'Lumen Digital', 'pro', 'active', 122, 1777090696, 1777090696),\n('8f41a746-a7c8-4f4e-be63-f1a19e6329d4', 'riccardo-costa', 'published', 'Riccardo Costa', 'riccardo.costa@brightlinemedia.it', 'Brightline Media', 'free', 'active', 0, 1777051382, 1777051382),\n('2e3d9d89-5edd-4dd9-be8e-2ee15f776bf3', 'davide-esposito-1', 'published', 'Davide Esposito', 'davide.esposito@cloudbase.app', 'CloudBase', 'enterprise', 'churned', 0, 1777196858, 1777196858),\n('2a653519-6f16-4b42-8f85-16e70188c2c5', 'elena-ricci', 'published', 'Elena Ricci', 'elena.ricci@northwindsoftware.io', 'Northwind Software', 'enterprise', 'churned', 0, 1777191214, 1777191214),\n('f07e5f6e-c76c-421f-b39e-f8b27d2d447d', 'nicola-rossi', 'published', 'Nicola Rossi', 'nicola.rossi@silverlinegroup.io', 'Silverline Group', 'pro', 'active', 91, 1777142824, 1777142824),\n('01ffa1ad-7e35-4146-8c68-ef59c5dec013', 'riccardo-santoro', 'published', 'Riccardo Santoro', 'riccardo.santoro@skylineventures.com', 'Skyline Ventures', 'free', 'churned', 0, 1777265238, 1777265238),\n('8657c754-5c85-4c60-89c6-95942ecc3c06', 'beatrice-santoro', 'published', 'Beatrice Santoro', 'beatrice.santoro@novalabs.dev', 'Nova Labs', 'enterprise', 'churned', 0, 1777265299, 1777265299),\n('c79c4569-6380-4081-a95b-e7d5152f1c7b', 'alessandro-ferrari', 'published', 'Alessandro Ferrari', 'alessandro.ferrari@techflow.dev', 'TechFlow', 'pro', 'active', 146, 1777296953, 1777296953),\n('4252e4be-e5be-496f-9e1b-d67404a9f98e', 'chiara-giordano', 'published', 'Chiara Giordano', 'chiara.giordano@forgeandco.io', 'Forge & Co', 'pro', 'active', 94, 1777373478, 1777373478),\n('4a545264-3d94-455e-9309-5689fa6b2440', 'riccardo-ferrari', 'published', 'Riccardo Ferrari', 'riccardo.ferrari@pixelforge.studio', 'Pixel Forge', 'free', 'churned', 0, 1777466161, 1777466161),\n('08db9d21-5843-4662-86db-fbe2657b14bd', 'gabriele-rossi', 'published', 'Gabriele Rossi', 'gabriele.rossi@datasync.com', 'DataSync', 'pro', 'active', 83, 1777394118, 1777394118),\n('d12d9fb0-35dc-4539-849f-41a5ddf067f2', 'chiara-costa', 'published', 'Chiara Costa', 'chiara.costa@alphadynamics.io', 'Alpha Dynamics', 'free', 'churned', 0, 1777391232, 1777391232),\n('0fdfa888-e652-4a20-928d-71a8552cd329', 'andrea-barbieri', 'published', 'Andrea Barbieri', 'andrea.barbieri@cobaltworks.dev', 'Cobalt Works', 'free', 'active', 0, 1777551200, 1777551200),\n('b9336fbb-7d36-4d03-a04a-760764af9cbb', 'gabriele-gallo', 'published', 'Gabriele Gallo', 'gabriele.gallo@silverlinegroup.io', 'Silverline Group', 'free', 'active', 0, 1777505489, 1777505489),\n('fce0a281-8965-4e69-8d8c-948ca3eb372f', 'gabriele-romano-2', 'published', 'Gabriele Romano', 'gabriele.romano@pixelforge.studio', 'Pixel Forge', 'pro', 'active', 179, 1777514728, 1777514728),\n('cec661ac-98a2-4320-a17d-18b8ea18d629', 'beatrice-marino', 'published', 'Beatrice Marino', 'beatrice.marino@datasync.com', 'DataSync', 'enterprise', 'active', 1775, 1777616831, 1777616831),\n('605eb550-0080-4690-9c91-780c06c1546f', 'sofia-caruso-2', 'published', 'Sofia Caruso', 'sofia.caruso@nextgenit.com', 'NextGen IT', 'free', 'active', 0, 1777636109, 1777636109),\n('fcb834e9-0b45-496b-b7f2-e7f782955b3e', 'riccardo-santoro-1', 'published', 'Riccardo Santoro', 'riccardo.santoro@techflow.dev', 'TechFlow', 'free', 'active', 0, 1777678393, 1777678393),\n('71554a94-2d91-4db1-91bd-c8c868cb7549', 'paola-conti', 'published', 'Paola Conti', 'paola.conti@sunriseanalytics.com', 'Sunrise Analytics', 'pro', 'active', 96, 1777719920, 1777719920),\n('45d536ae-00b3-48a3-b3d3-6e11e54ebc00', 'paola-colombo', 'published', 'Paola Colombo', 'paola.colombo@innovasolutions.it', 'Innova Solutions', 'free', 'churned', 0, 1777761155, 1777761155),\n('090691fb-e63b-48d3-81ad-b78eba2627d5', 'valentina-colombo', 'published', 'Valentina Colombo', 'valentina.colombo@novalabs.dev', 'Nova Labs', 'free', 'active', 0, 1777797751, 1777797751),\n('856e32e7-8c0b-492b-928e-d8c18a30d8fc', 'matteo-ferrari', 'published', 'Matteo Ferrari', 'matteo.ferrari@techflow.dev', 'TechFlow', 'pro', 'active', 149, 1777762528, 1777762528),\n('57e1d0f7-7804-44ef-a302-d7db9a204301', 'gabriele-lombardi', 'published', 'Gabriele Lombardi', 'gabriele.lombardi@datasync.com', 'DataSync', 'enterprise', 'active', 1285, 1777876026, 1777876026),\n('a9ded7c4-81c8-4e6c-b471-9326837f676d', 'sofia-esposito', 'published', 'Sofia Esposito', 'sofia.esposito@datasync.com', 'DataSync', 'free', 'active', 0, 1777874826, 1777874826),\n('fb6ffa66-1a05-4ab7-ae3c-c4d5cfc9e818', 'luca-rossi', 'published', 'Luca Rossi', 'luca.rossi@nextgenit.com', 'NextGen IT', 'free', 'active', 0, 1777819673, 1777819673),\n('9e39720c-bfe7-4e6b-bece-6f14b711d14b', 'matteo-de-luca', 'published', 'Matteo De Luca', 'matteo.deluca@sunriseanalytics.com', 'Sunrise Analytics', 'pro', 'active', 106, 1777916992, 1777916992),\n('d7373d4e-e90f-48a1-bbb0-f1183215da89', 'marco-santoro', 'published', 'Marco Santoro', 'marco.santoro@vertexdigital.com', 'Vertex Digital', 'pro', 'active', 127, 1777906650, 1777906650),\n('11badde2-c2e5-4d10-8e1c-16ddcaf6e90a', 'irene-marino', 'published', 'Irene Marino', 'irene.marino@silverlinegroup.io', 'Silverline Group', 'enterprise', 'active', 1236, 1778024231, 1778024231),\n('9ac099ea-57a7-49bc-ae25-b39213e7f6d8', 'marco-rossi', 'published', 'Marco Rossi', 'marco.rossi@lumendigital.com', 'Lumen Digital', 'pro', 'active', 169, 1778023203, 1778023203),\n('335c0ba5-8120-461b-a2fe-e1d476a366a7', 'andrea-colombo', 'published', 'Andrea Colombo', 'andrea.colombo@northwindsoftware.io', 'Northwind Software', 'free', 'active', 0, 1778100572, 1778100572),\n('fcf30b55-9cbf-4852-b8ab-3d55a7a569ab', 'chiara-fontana-2', 'published', 'Chiara Fontana', 'chiara.fontana@novalabs.dev', 'Nova Labs', 'pro', 'active', 40, 1778145705, 1778145705),\n('30f3dcfd-6c71-43ba-9bf0-b7b2218fb48e', 'irene-giordano', 'published', 'Irene Giordano', 'irene.giordano@innovasolutions.it', 'Innova Solutions', 'pro', 'active', 157, 1778146109, 1778146109),\n('2cf4de53-f29a-42c2-ac89-562b376aec9c', 'sofia-gallo', 'published', 'Sofia Gallo', 'sofia.gallo@brightlinemedia.it', 'Brightline Media', 'free', 'active', 0, 1778185719, 1778185719),\n('4e34af73-80b0-45ca-9137-098494ee9300', 'anna-bianchi', 'published', 'Anna Bianchi', 'anna.bianchi@globalnet.io', 'GlobalNet', 'enterprise', 'churned', 0, 1778201816, 1778201816),\n('721c6a5a-bb70-49a8-ba3c-ab0ab878eb43', 'martina-de-luca', 'published', 'Martina De Luca', 'martina.deluca@quantumreach.io', 'Quantum Reach', 'pro', 'active', 37, 1778177634, 1778177634),\n('9f60c14e-ca36-4278-9b66-b034a2b89023', 'beatrice-rossi', 'published', 'Beatrice Rossi', 'beatrice.rossi@orbitcommerce.com', 'Orbit Commerce', 'pro', 'active', 38, 1778317541, 1778317541),\n('903b39b6-4d7c-47e4-b9ba-f1cf6b0a879a', 'andrea-rizzo', 'published', 'Andrea Rizzo', 'andrea.rizzo@nextgenit.com', 'NextGen IT', 'free', 'active', 0, 1778293041, 1778293041),\n('7268bd44-436c-4af9-b9f0-4abcc755ad1b', 'silvia-rossi-2', 'published', 'Silvia Rossi', 'silvia.rossi@cobaltworks.dev', 'Cobalt Works', 'pro', 'active', 125, 1778359337, 1778359337),\n('c523ad34-cff9-4f7b-826f-9f71bcd05c16', 'federico-costa', 'published', 'Federico Costa', 'federico.costa@brightlinemedia.it', 'Brightline Media', 'enterprise', 'active', 1157, 1778343472, 1778343472),\n('1ea5cc77-b2e2-47e2-9218-c6f86df9988f', 'alessandro-pellegrini', 'published', 'Alessandro Pellegrini', 'alessandro.pellegrini@globalnet.io', 'GlobalNet', 'pro', 'active', 84, 1778427405, 1778427405),\n('f5ad8dae-34b0-44a2-b267-19a9f4b4da7f', 'beatrice-rossi-1', 'published', 'Beatrice Rossi', 'beatrice.rossi@evergreentech.com', 'Evergreen Tech', 'pro', 'active', 74, 1778433543, 1778433543),\n('7526282f-0bdc-4e47-97cb-90aa48c4fcf6', 'paola-mariani-1', 'published', 'Paola Mariani', 'paola.mariani@orbitcommerce.com', 'Orbit Commerce', 'enterprise', 'active', 2306, 1778518733, 1778518733),\n('ae90662a-267c-4bd4-ad19-3d22722f0043', 'federico-bianchi', 'published', 'Federico Bianchi', 'federico.bianchi@cobaltworks.dev', 'Cobalt Works', 'free', 'active', 0, 1778564413, 1778564413),\n('7c9d28db-2601-41aa-8c6f-34310c4a0274', 'davide-greco-1', 'published', 'Davide Greco', 'davide.greco@sunriseanalytics.com', 'Sunrise Analytics', 'pro', 'churned', 0, 1778555975, 1778555975),\n('334359e1-2285-4f11-9fe0-f2768c210afd', 'paola-costa', 'published', 'Paola Costa', 'paola.costa@alphadynamics.io', 'Alpha Dynamics', 'enterprise', 'active', 2071, 1778615852, 1778615852),\n('57e7f372-b870-423e-a41c-a20b7cd31868', 'simone-pellegrini-1', 'published', 'Simone Pellegrini', 'simone.pellegrini@betasystems.com', 'Beta Systems', 'enterprise', 'active', 2258, 1778599751, 1778599751),\n('c6dca0d1-16b3-44ac-b713-0addb25d2e77', 'camilla-conti-1', 'published', 'Camilla Conti', 'camilla.conti@betasystems.com', 'Beta Systems', 'free', 'active', 0, 1778632700, 1778632700),\n('1a00eaf9-fba9-4cc7-bb41-6b3b837bf23b', 'filippo-caruso', 'published', 'Filippo Caruso', 'filippo.caruso@skylineventures.com', 'Skyline Ventures', 'enterprise', 'active', 1317, 1778693952, 1778693952),\n('19170025-a919-454a-a805-1b55f819b3ec', 'sofia-esposito-1', 'published', 'Sofia Esposito', 'sofia.esposito@datasync.com', 'DataSync', 'free', 'active', 0, 1778685531, 1778685531),\n('f6401cdd-c762-46d1-bcaa-46ed4775985b', 'valentina-santoro', 'published', 'Valentina Santoro', 'valentina.santoro@forgeandco.io', 'Forge & Co', 'enterprise', 'active', 1967, 1778795873, 1778795873),\n('5757c7bc-0785-4535-ab94-fb3f4235f1a3', 'federico-bianchi-1', 'published', 'Federico Bianchi', 'federico.bianchi@novalabs.dev', 'Nova Labs', 'free', 'active', 0, 1778801914, 1778801914),\n('6ab05f45-33c5-4208-8ee2-ba349c55e71f', 'sofia-rizzo', 'published', 'Sofia Rizzo', 'sofia.rizzo@novalabs.dev', 'Nova Labs', 'pro', 'active', 40, 1778877119, 1778877119),\n('28304a6a-a77d-44ad-8ed7-d93ea1320a2c', 'riccardo-bruno', 'published', 'Riccardo Bruno', 'riccardo.bruno@skylineventures.com', 'Skyline Ventures', 'pro', 'active', 166, 1778894135, 1778894135),\n('1e027fc8-0b9b-4591-a3f8-d80ddfa41c0e', 'andrea-greco', 'published', 'Andrea Greco', 'andrea.greco@evergreentech.com', 'Evergreen Tech', 'free', 'active', 0, 1778914913, 1778914913),\n('db1419c7-1e88-4281-8567-3a5cad8b725a', 'martina-rossi', 'published', 'Martina Rossi', 'martina.rossi@acmecorp.io', 'Acme Corp', 'enterprise', 'active', 1079, 1778965433, 1778965433),\n('23b44a43-0a86-4dfb-81a3-272c2a69f293', 'matteo-barbieri', 'published', 'Matteo Barbieri', 'matteo.barbieri@pixelforge.studio', 'Pixel Forge', 'pro', 'churned', 0, 1779017037, 1779017037),\n('fc16041f-689c-4298-81ac-022a78aed139', 'stefano-mancini', 'published', 'Stefano Mancini', 'stefano.mancini@acmecorp.io', 'Acme Corp', 'enterprise', 'churned', 0, 1778981780, 1778981780),\n('342f593a-f285-4881-bdd7-d2feb03e16d2', 'francesca-marino', 'published', 'Francesca Marino', 'francesca.marino@silverlinegroup.io', 'Silverline Group', 'enterprise', 'active', 1712, 1779059829, 1779059829),\n('9a1e645c-d5fe-4f64-94cd-4ce706e47f29', 'stefano-costa', 'published', 'Stefano Costa', 'stefano.costa@alphadynamics.io', 'Alpha Dynamics', 'pro', 'active', 108, 1779088977, 1779088977),\n('3f5abab4-f655-4245-819f-92934a4f90c4', 'lorenzo-marino-1', 'published', 'Lorenzo Marino', 'lorenzo.marino@innovasolutions.it', 'Innova Solutions', 'free', 'active', 0, 1779064070, 1779064070),\n('70b30c50-20c4-47d1-94a3-7fa057728173', 'riccardo-pellegrini', 'published', 'Riccardo Pellegrini', 'riccardo.pellegrini@cloudbase.app', 'CloudBase', 'free', 'active', 0, 1779113528, 1779113528),\n('3352b69d-6ac9-4629-a442-baebd5957e0a', 'gabriele-mariani', 'published', 'Gabriele Mariani', 'gabriele.mariani@quantumreach.io', 'Quantum Reach', 'enterprise', 'active', 1490, 1779180878, 1779180878),\n('7ed1e417-7c74-4039-844c-06ca224c4be6', 'giulia-giordano', 'published', 'Giulia Giordano', 'giulia.giordano@skylineventures.com', 'Skyline Ventures', 'free', 'active', 0, 1779178929, 1779178929),\n('6c1b900d-a174-4076-bc1a-a3906b3ae9f0', 'matteo-bruno', 'published', 'Matteo Bruno', 'matteo.bruno@novalabs.dev', 'Nova Labs', 'free', 'active', 0, 1779223557, 1779223557),\n('3a1a6958-c9c3-4ed4-ae01-59ce9d67cb07', 'valentina-colombo-1', 'published', 'Valentina Colombo', 'valentina.colombo@evergreentech.com', 'Evergreen Tech', 'free', 'active', 0, 1779211111, 1779211111),\n('ecf85ee6-c806-40c6-97e4-541c19736a2b', 'lorenzo-barbieri', 'published', 'Lorenzo Barbieri', 'lorenzo.barbieri@betasystems.com', 'Beta Systems', 'pro', 'active', 131, 1779220347, 1779220347),\n('76170140-2d9b-476c-a364-a491ced389f5', 'paola-caruso', 'published', 'Paola Caruso', 'paola.caruso@vertexdigital.com', 'Vertex Digital', 'free', 'active', 0, 1779285499, 1779285499),\n('3514ad4f-9b20-4a5d-bfef-fa84591b8937', 'filippo-de-luca', 'published', 'Filippo De Luca', 'filippo.deluca@globalnet.io', 'GlobalNet', 'free', 'active', 0, 1779283307, 1779283307),\n('52eeff6a-2726-42ef-a6a8-65c5f04e27ec', 'silvia-giordano', 'published', 'Silvia Giordano', 'silvia.giordano@alphadynamics.io', 'Alpha Dynamics', 'pro', 'active', 51, 1779388117, 1779388117),\n('f2abafa4-c0c5-428b-b393-9b382f5aa642', 'irene-greco', 'published', 'Irene Greco', 'irene.greco@lumendigital.com', 'Lumen Digital', 'free', 'active', 0, 1779436130, 1779436130),\n('54e546c7-7738-416e-a546-69f8f6a5601a', 'valentina-ferrari', 'published', 'Valentina Ferrari', 'valentina.ferrari@pixelforge.studio', 'Pixel Forge', 'free', 'active', 0, 1779539397, 1779539397),\n('e15ef4ad-6126-49c5-aa76-9de2e14dc101', 'stefano-fontana', 'published', 'Stefano Fontana', 'stefano.fontana@datasync.com', 'DataSync', 'free', 'active', 0, 1779529938, 1779529938),\n('a6b9e155-7fdf-467e-87a6-96c61e504282', 'paola-bianchi', 'published', 'Paola Bianchi', 'paola.bianchi@vertexdigital.com', 'Vertex Digital', 'free', 'churned', 0, 1779488364, 1779488364),\n('e2359357-e263-4c30-986c-53b32311e0ff', 'nicola-ferrari', 'published', 'Nicola Ferrari', 'nicola.ferrari@forgeandco.io', 'Forge & Co', 'free', 'active', 0, 1779553631, 1779553631),\n('2c824e8d-cbec-4b76-a6e7-632e6313389b', 'laura-mancini', 'published', 'Laura Mancini', 'laura.mancini@innovasolutions.it', 'Innova Solutions', 'free', 'churned', 0, 1779544358, 1779544358),\n('580c89a6-53d9-476d-a005-02258f438d34', 'giulia-greco', 'published', 'Giulia Greco', 'giulia.greco@bluepeaksystems.io', 'BluePeak Systems', 'enterprise', 'active', 1404, 1779590980, 1779590980),\n('b3498d6e-f46d-4242-ade3-6db7e2e989ef', 'francesca-rizzo', 'published', 'Francesca Rizzo', 'francesca.rizzo@brightlinemedia.it', 'Brightline Media', 'free', 'active', 0, 1779640914, 1779640914),\n('48dd30f1-5ab6-464a-89bc-d8a906f0bcef', 'anna-colombo', 'published', 'Anna Colombo', 'anna.colombo@betasystems.com', 'Beta Systems', 'free', 'active', 0, 1779648179, 1779648179),\n('8b4f77eb-a6b2-45b5-801d-46229de02346', 'elena-mariani-1', 'published', 'Elena Mariani', 'elena.mariani@techflow.dev', 'TechFlow', 'pro', 'active', 122, 1779661660, 1779661660),\n('0eaab274-ba25-47dd-a361-9dab73c23e8b', 'chiara-esposito-1', 'published', 'Chiara Esposito', 'chiara.esposito@skylineventures.com', 'Skyline Ventures', 'pro', 'active', 41, 1779785033, 1779785033),\n('8a023fd4-1b8f-48d3-9c7b-dba5cf0c1874', 'giulia-giordano-1', 'published', 'Giulia Giordano', 'giulia.giordano@cobaltworks.dev', 'Cobalt Works', 'free', 'active', 0, 1779717993, 1779717993),\n('5ddae246-3972-4019-b7e8-c5361c6db2a8', 'silvia-rizzo', 'published', 'Silvia Rizzo', 'silvia.rizzo@betasystems.com', 'Beta Systems', 'enterprise', 'active', 1530, 1779729491, 1779729491),\n('c41d8e85-f7c1-4fff-b0e7-ca5530149815', 'camilla-de-luca', 'published', 'Camilla De Luca', 'camilla.deluca@skylineventures.com', 'Skyline Ventures', 'enterprise', 'active', 1889, 1779818040, 1779818040),\n('8d06ac08-d212-4915-a124-bdc218d10495', 'riccardo-conti', 'published', 'Riccardo Conti', 'riccardo.conti@forgeandco.io', 'Forge & Co', 'enterprise', 'churned', 0, 1779827699, 1779827699),\n('52422cc0-fe3e-4c0c-bc53-cf0fd068c259', 'valentina-bruno', 'published', 'Valentina Bruno', 'valentina.bruno@innovasolutions.it', 'Innova Solutions', 'pro', 'active', 70, 1779965996, 1779965996),\n('cebe13a4-0289-41c1-b1f8-f2a77837263e', 'filippo-rizzo-1', 'published', 'Filippo Rizzo', 'filippo.rizzo@alphadynamics.io', 'Alpha Dynamics', 'free', 'active', 0, 1779957291, 1779957291),\n('e909e6b7-34a9-44ff-8be2-4c6b65fb9382', 'tommaso-gallo-2', 'published', 'Tommaso Gallo', 'tommaso.gallo@alphadynamics.io', 'Alpha Dynamics', 'pro', 'active', 57, 1779959988, 1779959988),\n('c713cc13-99e4-425f-89e8-a5edb44a5668', 'anna-ricci-1', 'published', 'Anna Ricci', 'anna.ricci@silverlinegroup.io', 'Silverline Group', 'pro', 'active', 94, 1780028589, 1780028589),\n('2e193b87-43a6-4054-9793-44112e810d81', 'elena-santoro', 'published', 'Elena Santoro', 'elena.santoro@alphadynamics.io', 'Alpha Dynamics', 'enterprise', 'active', 1798, 1780045944, 1780045944),\n('5055d5be-b0c2-4894-88f2-0cc61902f094', 'irene-ferrari-2', 'published', 'Irene Ferrari', 'irene.ferrari@nextgenit.com', 'NextGen IT', 'pro', 'active', 135, 1780009673, 1780009673),\n('0a872d78-8d55-4b89-af7a-f6cee03527b7', 'giulia-esposito', 'published', 'Giulia Esposito', 'giulia.esposito@bluepeaksystems.io', 'BluePeak Systems', 'pro', 'churned', 0, 1780073815, 1780073815),\n('0801e9cf-e294-4615-874f-bde119498c65', 'sofia-conti-1', 'published', 'Sofia Conti', 'sofia.conti@meridianlabs.dev', 'Meridian Labs', 'free', 'active', 0, 1780081568, 1780081568),\n('42231dbe-86a7-4469-8ab2-328a178a0a6b', 'irene-de-luca', 'published', 'Irene De Luca', 'irene.deluca@vertexdigital.com', 'Vertex Digital', 'free', 'active', 0, 1780075951, 1780075951),\n('4a68d784-bfe9-4862-a30b-7dde67760b93', 'paola-caruso-1', 'published', 'Paola Caruso', 'paola.caruso@forgeandco.io', 'Forge & Co', 'enterprise', 'active', 1337, 1780192251, 1780192251),\n('00d0f4cf-684b-4b0b-b107-402bd8f09c90', 'lorenzo-conti-1', 'published', 'Lorenzo Conti', 'lorenzo.conti@silverlinegroup.io', 'Silverline Group', 'free', 'active', 0, 1780149524, 1780149524),\n('69873194-8eb0-49c2-9758-7d9c992ce068', 'tommaso-barbieri', 'published', 'Tommaso Barbieri', 'tommaso.barbieri@silverlinegroup.io', 'Silverline Group', 'free', 'churned', 0, 1780176787, 1780176787),\n('27fc18d7-2bde-4415-b411-6fa98ddfda49', 'simone-esposito-1', 'published', 'Simone Esposito', 'simone.esposito@pixelforge.studio', 'Pixel Forge', 'enterprise', 'active', 1975, 1780293241, 1780293241),\n('9c9fd18d-f358-4097-9bac-fab005ee73c8', 'anna-gallo', 'published', 'Anna Gallo', 'anna.gallo@novalabs.dev', 'Nova Labs', 'pro', 'active', 61, 1780239387, 1780239387),\n('520ac195-253b-4fa7-8c97-27ef350d2436', 'riccardo-marino', 'published', 'Riccardo Marino', 'riccardo.marino@silverlinegroup.io', 'Silverline Group', 'pro', 'active', 176, 1780257693, 1780257693),\n('fa6d72cc-7276-4f02-8842-8c3516d380df', 'luca-marino', 'published', 'Luca Marino', 'luca.marino@skylineventures.com', 'Skyline Ventures', 'free', 'active', 0, 1780382011, 1780382011),\n('74c75480-3716-419d-84f5-533f56b363fd', 'francesca-conti-1', 'published', 'Francesca Conti', 'francesca.conti@cobaltworks.dev', 'Cobalt Works', 'pro', 'active', 41, 1780318274, 1780318274),\n('f2c52e25-ee59-4fb8-9881-12da1003c980', 'andrea-lombardi', 'published', 'Andrea Lombardi', 'andrea.lombardi@orbitcommerce.com', 'Orbit Commerce', 'enterprise', 'churned', 0, 1780330288, 1780330288),\n('ea9dfab6-7d80-41bd-a377-87531238cb64', 'laura-mariani', 'published', 'Laura Mariani', 'laura.mariani@skylineventures.com', 'Skyline Ventures', 'free', 'active', 0, 1780445848, 1780445848),\n('0db86090-ba43-4559-adc9-cb4065f70a95', 'laura-rizzo', 'published', 'Laura Rizzo', 'laura.rizzo@northwindsoftware.io', 'Northwind Software', 'pro', 'active', 135, 1780481155, 1780481155),\n('3b5a78c6-ed9e-442e-b67a-01e91089df08', 'camilla-greco-1', 'published', 'Camilla Greco', 'camilla.greco@evergreentech.com', 'Evergreen Tech', 'pro', 'active', 161, 1780457212, 1780457212),\n('7671f12c-ed13-477f-a61f-04eebb647289', 'gabriele-greco-1', 'published', 'Gabriele Greco', 'gabriele.greco@lumendigital.com', 'Lumen Digital', 'enterprise', 'active', 1076, 1780554820, 1780554820),\n('c5ae7375-0cc2-4970-9f6b-298803ba596c', 'chiara-colombo', 'published', 'Chiara Colombo', 'chiara.colombo@datasync.com', 'DataSync', 'pro', 'active', 180, 1780514546, 1780514546),\n('7d97ce37-6f6f-44be-b35b-f796a69378ff', 'riccardo-ricci', 'published', 'Riccardo Ricci', 'riccardo.ricci@bluepeaksystems.io', 'BluePeak Systems', 'free', 'active', 0, 1780497864, 1780497864),\n('1d64f038-fcb3-411a-a15d-e24548a8a77d', 'elena-pellegrini', 'published', 'Elena Pellegrini', 'elena.pellegrini@techflow.dev', 'TechFlow', 'pro', 'active', 46, 1780591864, 1780591864),\n('36bf3765-5c3c-4ed9-bd18-fb9909a6254f', 'federico-de-luca-1', 'published', 'Federico De Luca', 'federico.deluca@forgeandco.io', 'Forge & Co', 'free', 'active', 0, 1780628796, 1780628796),\n('f7a5e209-14f4-4df0-b8e3-992c459c0960', 'simone-rossi', 'published', 'Simone Rossi', 'simone.rossi@skylineventures.com', 'Skyline Ventures', 'pro', 'active', 162, 1780601469, 1780601469),\n('3582882b-9027-4dbb-a354-63bf6a9c6632', 'federico-conti', 'published', 'Federico Conti', 'federico.conti@vertexdigital.com', 'Vertex Digital', 'free', 'active', 0, 1780737125, 1780737125),\n('46863df1-7ab5-467e-b6cc-f97f3eb6f78f', 'lorenzo-ferrari', 'published', 'Lorenzo Ferrari', 'lorenzo.ferrari@cloudbase.app', 'CloudBase', 'free', 'active', 0, 1780729612, 1780729612),\n('6b2cbef2-5c6c-4124-b1cf-f15a8bf48cf1', 'filippo-ricci', 'published', 'Filippo Ricci', 'filippo.ricci@alphadynamics.io', 'Alpha Dynamics', 'enterprise', 'active', 2216, 1780748746, 1780748746),\n('f2a383f8-1247-4ad1-bc48-09f88c301c25', 'gabriele-mancini-1', 'published', 'Gabriele Mancini', 'gabriele.mancini@acmecorp.io', 'Acme Corp', 'enterprise', 'active', 2378, 1780758281, 1780758281),\n('b5e04f32-5b53-4f94-aad8-8c5ee885a2dd', 'sofia-bruno', 'published', 'Sofia Bruno', 'sofia.bruno@meridianlabs.dev', 'Meridian Labs', 'free', 'active', 0, 1780794605, 1780794605),\n('3a752e5b-99f5-4ce2-8baf-10d054194bae', 'lorenzo-pellegrini', 'published', 'Lorenzo Pellegrini', 'lorenzo.pellegrini@evergreentech.com', 'Evergreen Tech', 'pro', 'active', 149, 1780843406, 1780843406),\n('e198eb2b-3e65-4483-99b5-62b2c9c29748', 'filippo-giordano', 'published', 'Filippo Giordano', 'filippo.giordano@cloudbase.app', 'CloudBase', 'pro', 'active', 103, 1780843819, 1780843819),\n('8dc25e59-7339-4cb3-aea6-aa0374f030be', 'camilla-giordano', 'published', 'Camilla Giordano', 'camilla.giordano@evergreentech.com', 'Evergreen Tech', 'pro', 'active', 83, 1780903140, 1780903140),\n('9a936c42-46b4-4b59-9348-5f5cc1cbaa5e', 'laura-barbieri', 'published', 'Laura Barbieri', 'laura.barbieri@novalabs.dev', 'Nova Labs', 'free', 'active', 0, 1780981651, 1780981651),\n('bd0563ab-2966-447b-aefb-53b410a34c37', 'andrea-colombo-1', 'published', 'Andrea Colombo', 'andrea.colombo@evergreentech.com', 'Evergreen Tech', 'pro', 'churned', 0, 1780980896, 1780980896),\n('261f546f-a936-44e5-bcbb-d552dbe11b7d', 'stefano-pellegrini', 'published', 'Stefano Pellegrini', 'stefano.pellegrini@bluepeaksystems.io', 'BluePeak Systems', 'free', 'active', 0, 1780974134, 1780974134),\n('67b6a388-ab64-45b5-b61a-f6ede8ca36f7', 'simone-rizzo-1', 'published', 'Simone Rizzo', 'simone.rizzo@betasystems.com', 'Beta Systems', 'free', 'active', 0, 1781085648, 1781085648),\n('82d5f9ae-edfe-4a90-8b30-986fc4428672', 'sofia-bianchi', 'published', 'Sofia Bianchi', 'sofia.bianchi@skylineventures.com', 'Skyline Ventures', 'pro', 'active', 146, 1781009763, 1781009763),\n('825221ff-ada0-4f75-a541-3ecd19747aca', 'luca-ferrari', 'published', 'Luca Ferrari', 'luca.ferrari@evergreentech.com', 'Evergreen Tech', 'pro', 'active', 123, 1781086854, 1781086854),\n('9f06bd03-e197-4709-bbe2-21b830ac6723', 'stefano-caruso-1', 'published', 'Stefano Caruso', 'stefano.caruso@quantumreach.io', 'Quantum Reach', 'free', 'active', 0, 1781099310, 1781099310),\n('c94729db-3fa5-48e0-8675-3658cd92e790', 'laura-fontana', 'published', 'Laura Fontana', 'laura.fontana@evergreentech.com', 'Evergreen Tech', 'free', 'churned', 0, 1781156965, 1781156965),\n('7ab9ec6f-615a-4a43-a988-49e5bd5d74ca', 'simone-conti', 'published', 'Simone Conti', 'simone.conti@alphadynamics.io', 'Alpha Dynamics', 'free', 'active', 0, 1781176555, 1781176555),\n('662c8831-fb08-46ad-9afd-d7cf800558c2', 'luca-moretti', 'published', 'Luca Moretti', 'luca.moretti@silverlinegroup.io', 'Silverline Group', 'free', 'active', 0, 1781242900, 1781242900),\n('e21360e3-dec8-4b3c-9702-4819b2993d03', 'camilla-bianchi', 'published', 'Camilla Bianchi', 'camilla.bianchi@orbitcommerce.com', 'Orbit Commerce', 'free', 'active', 0, 1781190458, 1781190458),\n('11712799-22fa-4ca0-8574-877c2d0f3c8d', 'alessandro-de-luca', 'published', 'Alessandro De Luca', 'alessandro.deluca@sunriseanalytics.com', 'Sunrise Analytics', 'free', 'active', 0, 1781215967, 1781215967),\n('b17022ff-ceed-48f0-841c-05af4ee7ba8e', 'silvia-colombo-1', 'published', 'Silvia Colombo', 'silvia.colombo@cloudbase.app', 'CloudBase', 'enterprise', 'active', 2205, 1781292724, 1781292724),\n('627c6e5b-cda5-4947-a8d0-0d0f70b3a247', 'matteo-pellegrini', 'published', 'Matteo Pellegrini', 'matteo.pellegrini@orbitcommerce.com', 'Orbit Commerce', 'free', 'active', 0, 1781275571, 1781275571),\n('fd610eb0-f3d8-483b-ad78-256ef812c663', 'matteo-ferrari-1', 'published', 'Matteo Ferrari', 'matteo.ferrari@brightlinemedia.it', 'Brightline Media', 'pro', 'active', 55, 1781344927, 1781344927);\n\nINSERT OR IGNORE INTO content_abbonamenti (id, slug, status, customer_id, amount, billing_cycle, payment_status, created_at, updated_at)\nVALUES\n('959c5be7-0cee-4372-a09e-41ad13b33551', 'sub-1', 'published', '9c243575-ba74-4904-a393-ec249c00f600', 138, 'monthly', 'active', 1766760724, 1766760724),\n('c816a4d2-12f5-4a2d-a0d0-670fc6912572', 'sub-2', 'published', '94492212-a39d-4faf-a284-5d0e7613b294', 166, 'monthly', 'active', 1766570312, 1766570312),\n('6fdde1a1-9b61-4d73-b644-21522096e5c8', 'sub-3', 'published', '0e1b9935-1e9a-4a40-a252-794e4bbab765', 0, 'monthly', 'canceled', 1766530444, 1766530444),\n('a671cfba-b4e9-4983-b8cf-47a245f2613d', 'sub-4', 'published', '3257b68a-c48c-4514-b365-9795cd57ba4f', 92, 'monthly', 'past_due', 1766956990, 1766956990),\n('8d631c18-39a9-4969-b686-7c5ca43777da', 'sub-5', 'published', '3257b68a-c48c-4514-b365-9795cd57ba4f', 43, 'monthly', 'active', 1773942693, 1773942693),\n('80370878-ee09-488d-92d8-a94dfe713509', 'sub-6', 'published', 'a0e7b58d-5411-4ee3-ba2e-e39dc83efd5f', 0, 'annual', 'active', 1767118263, 1767118263),\n('3e415794-3683-4aa1-ad33-15eb593c92d3', 'sub-7', 'published', 'a0e7b58d-5411-4ee3-ba2e-e39dc83efd5f', 0, 'monthly', 'active', 1770949590, 1770949590),\n('96473070-ad22-4d5e-83d4-906c314439b3', 'sub-8', 'published', '45f84037-73ae-4898-856e-1439dd6df51f', 165, 'monthly', 'active', 1767172856, 1767172856),\n('43a4420f-23d0-4bfa-aca3-9cd02c217e2f', 'sub-9', 'published', '45f84037-73ae-4898-856e-1439dd6df51f', 107, 'monthly', 'active', 1774617307, 1774617307),\n('09b90bb1-2920-410e-8fd3-50eb3b045f55', 'sub-10', 'published', 'ede827b1-5283-4899-ad5c-f2aa16830408', 2230, 'monthly', 'active', 1767298963, 1767298963),\n('d9cab65e-2141-4a25-8f6d-cda85373ac89', 'sub-11', 'published', '2b44f02f-a10c-4f16-a846-4d2a0cf82a7d', 0, 'monthly', 'active', 1767162717, 1767162717),\n('a13e23b8-890d-4c12-afda-0912ace04a86', 'sub-12', 'published', '2b44f02f-a10c-4f16-a846-4d2a0cf82a7d', 0, 'annual', 'active', 1773929216, 1773929216),\n('ae25d41a-8927-45f6-9071-f8d4ef758ac0', 'sub-13', 'published', '3ba278a0-b709-48da-abca-dab8b092c32a', 2346, 'monthly', 'active', 1768086086, 1768086086),\n('34f602bf-ade7-4968-9939-fe595be14635', 'sub-14', 'published', '3ba278a0-b709-48da-abca-dab8b092c32a', 554, 'monthly', 'active', 1775654670, 1775654670),\n('15fedb66-5e69-4c6e-bc2c-67c1125f80d6', 'sub-15', 'published', '2ad3a9ad-2c0b-4eec-a1f4-307a77b340bc', 0, 'monthly', 'active', 1766979386, 1766979386),\n('6f7a4750-fb21-4051-bb3b-a9e1497d48ae', 'sub-16', 'published', '2ad3a9ad-2c0b-4eec-a1f4-307a77b340bc', 0, 'monthly', 'active', 1775567040, 1775567040),\n('ba8b6537-6a94-4ac7-922d-e459ccb8e902', 'sub-17', 'published', 'da024835-e13d-483d-ab80-16832a5d0db0', 0, 'monthly', 'active', 1768237325, 1768237325),\n('32e7f918-3223-4689-9473-e143c8334340', 'sub-18', 'published', 'a7dafdd4-8a27-4e9d-958e-e9961ebe1874', 0, 'monthly', 'canceled', 1768333052, 1768333052),\n('d9e1024d-2cbe-48b9-bd95-3d79114ca4fd', 'sub-19', 'published', 'edc28f24-0148-4282-9d26-4e0ffb98cba7', 1121, 'monthly', 'active', 1768229344, 1768229344),\n('cfbb94bf-4c8f-44c5-bde1-ec9fe8b5e363', 'sub-20', 'published', 'edc28f24-0148-4282-9d26-4e0ffb98cba7', 944, 'annual', 'active', 1773957546, 1773957546),\n('c53e43fa-d61c-43a5-ac05-1c3f646b4210', 'sub-21', 'published', '3b87c9ef-789d-4fe3-aa6c-f2fee8a77860', 104, 'monthly', 'active', 1768616441, 1768616441),\n('3673a3f2-ee73-4624-9761-3c4950d127a2', 'sub-22', 'published', 'e1229482-a001-4d3b-9038-5f0eaf0ff992', 83, 'monthly', 'active', 1768123325, 1768123325),\n('c51cdbcf-c65d-4464-9604-fd1f59cd6357', 'sub-23', 'published', 'e1229482-a001-4d3b-9038-5f0eaf0ff992', 71, 'annual', 'active', 1777732766, 1777732766),\n('43845e77-67a5-4ce8-9ce8-f0a2a1aa3904', 'sub-24', 'published', 'fda06725-9b09-48d7-b5b1-e28f089bd10c', 145, 'monthly', 'active', 1768292875, 1768292875),\n('a898a890-121b-45fb-9d08-afca7c995fe2', 'sub-25', 'published', '32bbdf11-c96b-459f-9157-cab99d411e87', 0, 'annual', 'active', 1768842626, 1768842626),\n('010e7882-c88b-4ffe-9e7a-ca6ae71e2c2b', 'sub-26', 'published', '43e4d2df-d812-4429-a905-c3ec11ce0e85', 0, 'monthly', 'active', 1768293364, 1768293364),\n('9c488c04-78fd-4a46-a37a-bf4547845faf', 'sub-27', 'published', '43e4d2df-d812-4429-a905-c3ec11ce0e85', 0, 'monthly', 'active', 1775362449, 1775362449),\n('0df05838-7586-49ab-88ed-12fcfb89a491', 'sub-28', 'published', '8861b8c0-50a2-4b45-bf27-e625ba476ab9', 0, 'annual', 'active', 1768605328, 1768605328),\n('88ff5142-43f9-432e-8014-927da8625222', 'sub-29', 'published', '8861b8c0-50a2-4b45-bf27-e625ba476ab9', 0, 'monthly', 'active', 1771533159, 1771533159),\n('1d9292e9-f139-4341-8984-4db060dfd066', 'sub-30', 'published', 'baa00dcc-e8c7-4a06-b06b-be15ef92f6fd', 0, 'monthly', 'active', 1768616009, 1768616009),\n('e8e72822-41be-4a34-9e47-e03f10f5aa7d', 'sub-31', 'published', '06420806-4150-4ac9-a1cf-4d3b84b54979', 76, 'monthly', 'active', 1769265778, 1769265778),\n('3c94fce3-93a0-4344-8e00-e052e39661a3', 'sub-32', 'published', '06420806-4150-4ac9-a1cf-4d3b84b54979', 82, 'monthly', 'active', 1775028129, 1775028129),\n('01a874f7-35f4-4941-8471-0b187b591597', 'sub-33', 'published', 'aadd47e5-af81-4efe-bc94-97c82d483290', 2289, 'monthly', 'active', 1768676685, 1768676685),\n('55355751-158b-4c33-abba-ecf9ae198f0b', 'sub-34', 'published', '96a5695b-81cd-4817-b0a9-22b0204fea5e', 1524, 'monthly', 'active', 1769288851, 1769288851),\n('1b8898c3-b3d4-4e96-9470-21bcb1624cee', 'sub-35', 'published', 'fba1abc3-dcdf-4b09-82b3-b54c3d4a1ff5', 0, 'monthly', 'active', 1769766222, 1769766222),\n('48e6af17-3090-4a32-8e3e-043453ac9c1c', 'sub-36', 'published', 'bc46cdb0-468b-4722-834a-6e8a4bffc4b0', 48, 'monthly', 'active', 1769460341, 1769460341),\n('63679db4-1919-46d8-8856-416408b38685', 'sub-37', 'published', 'bc46cdb0-468b-4722-834a-6e8a4bffc4b0', 135, 'monthly', 'past_due', 1773295353, 1773295353),\n('36d08527-0818-44c9-b2c0-2b350d89e88d', 'sub-38', 'published', '6e969045-d791-4d0d-a200-bf04c22c698b', 161, 'monthly', 'active', 1769899502, 1769899502),\n('13100b11-e828-4d02-b056-33ab246450cb', 'sub-39', 'published', '029299ed-2d10-4c1b-9136-2975398209cf', 0, 'monthly', 'active', 1769616831, 1769616831),\n('99503c2a-6644-4def-aab8-54704c10bea4', 'sub-40', 'published', '2078bb84-68a9-4510-9437-b36d77469369', 0, 'monthly', 'canceled', 1770158558, 1770158558),\n('b51cdf80-4519-4fb4-97cc-61946fbd7769', 'sub-41', 'published', '2078bb84-68a9-4510-9437-b36d77469369', 0, 'monthly', 'canceled', 1778268358, 1778268358),\n('5927ab8a-355e-4315-8692-9a29156a1c1b', 'sub-42', 'published', '16596278-61b5-41f8-bd37-d3c3b6fa890f', 70, 'annual', 'active', 1770476010, 1770476010),\n('a423588d-9bad-4618-8398-abd22fab9728', 'sub-43', 'published', '16596278-61b5-41f8-bd37-d3c3b6fa890f', 114, 'annual', 'active', 1775867463, 1775867463),\n('307aa64d-584e-4ba7-9dba-8fecc64d5619', 'sub-44', 'published', 'f8d01fa9-fced-4799-98c0-6f474be6c63a', 105, 'annual', 'active', 1769651693, 1769651693),\n('61470d23-a9b5-4515-92d1-e5de7e8ee6f1', 'sub-45', 'published', '0f05c2b4-cd65-4621-8754-6713025e5dfa', 0, 'monthly', 'active', 1770032950, 1770032950),\n('273b17c0-c0f7-41c4-a22b-d50675fb9e5d', 'sub-46', 'published', '4e7fe795-9100-499e-9794-077001283bd3', 0, 'monthly', 'active', 1770007870, 1770007870),\n('733f14af-b79b-4abf-a764-296412b2d1d3', 'sub-47', 'published', 'a45a4ade-a1fa-4ae6-9094-24177e412572', 106, 'annual', 'active', 1770797013, 1770797013),\n('50a5f9e9-2ce0-4a42-97dc-31ae94a70624', 'sub-48', 'published', '18951e9d-8701-4b61-a359-899b7041218d', 0, 'annual', 'active', 1770542089, 1770542089),\n('ff77a0a7-a831-4f5d-8026-e570596eb828', 'sub-49', 'published', 'e2559d37-60b9-419b-93be-382112802167', 1752, 'monthly', 'active', 1770718676, 1770718676),\n('113e1cb6-506e-431e-b296-4e51c27c0364', 'sub-50', 'published', 'e2559d37-60b9-419b-93be-382112802167', 2273, 'annual', 'active', 1775522259, 1775522259),\n('73cfeee7-85a3-4ca2-80e2-795d8ce59145', 'sub-51', 'published', '9b66d549-e60e-4d34-a890-cb16a31b6a8b', 0, 'monthly', 'past_due', 1770283844, 1770283844),\n('5fa9b00a-8420-4df0-8458-19d6315181ac', 'sub-52', 'published', 'eba78b68-d1c6-42ce-a32d-b2c9d6ac9617', 153, 'annual', 'past_due', 1770315625, 1770315625),\n('538d7da5-8835-4f8b-8c75-c257e41ee02c', 'sub-53', 'published', 'e89d5239-f51d-42c1-a783-8c78f0b81185', 77, 'monthly', 'past_due', 1770820741, 1770820741),\n('ceab2e8f-4f59-47a9-9367-7d555d945ceb', 'sub-54', 'published', 'c5410938-ba65-49f5-b102-ccc930ea478d', 2354, 'annual', 'active', 1771132797, 1771132797),\n('ad93aa08-9259-4901-9771-c54f5c932e87', 'sub-55', 'published', 'c5410938-ba65-49f5-b102-ccc930ea478d', 1720, 'monthly', 'active', 1780187872, 1780187872),\n('ab38670b-1a08-477c-bc00-1c0fa2ad2fa3', 'sub-56', 'published', 'f6213536-e3f5-49ba-a8a7-cdb0dcc05bd0', 636, 'monthly', 'active', 1770782699, 1770782699),\n('b970650e-8ce3-4440-9a2e-59882d4adf5e', 'sub-57', 'published', 'f6213536-e3f5-49ba-a8a7-cdb0dcc05bd0', 720, 'annual', 'past_due', 1777409090, 1777409090),\n('568c6168-52d7-468b-b47e-67b1510c739c', 'sub-58', 'published', '6ddc0ea2-1171-4151-9fe0-6206ab222bce', 0, 'monthly', 'active', 1770785762, 1770785762),\n('1acc36d1-4fb9-4fcc-9b0a-0ad07b56cb01', 'sub-59', 'published', '6ddc0ea2-1171-4151-9fe0-6206ab222bce', 0, 'monthly', 'active', 1776425459, 1776425459),\n('d7dcc335-165e-42d9-89f6-df801f78b19a', 'sub-60', 'published', '2a019050-fad7-4f07-bcbd-1749a4088b28', 1946, 'monthly', 'past_due', 1771137481, 1771137481),\n('18526256-1d51-4b8c-8647-5aa331712139', 'sub-61', 'published', 'e6355098-9a47-4f21-b739-ae398c760b02', 116, 'monthly', 'canceled', 1771220918, 1771220918),\n('cacadf5a-484c-4be3-8a28-5eea85b4c20f', 'sub-62', 'published', '9f805fa1-ab81-4ff3-af19-5c0454ece830', 89, 'monthly', 'active', 1771209168, 1771209168),\n('d7304582-9ec4-4814-9c4e-773a4573a71b', 'sub-63', 'published', '5881fb10-d95d-4252-8813-b265eb32ea8a', 0, 'monthly', 'active', 1770909021, 1770909021),\n('e73b75b2-0d28-4d5b-830e-3dcb52004188', 'sub-64', 'published', '5881fb10-d95d-4252-8813-b265eb32ea8a', 0, 'annual', 'active', 1780483844, 1780483844),\n('4435b2ac-6627-4472-9163-e7c101f980ee', 'sub-65', 'published', 'c7de919b-04f6-45e3-ba4c-4d37ce9c0d0d', 163, 'monthly', 'active', 1771570165, 1771570165),\n('21c80574-9a2c-4538-be70-b77f8603cf5c', 'sub-66', 'published', 'c7de919b-04f6-45e3-ba4c-4d37ce9c0d0d', 88, 'monthly', 'active', 1774137884, 1774137884),\n('b0c86e13-e929-4bd7-95c7-25735e948cd6', 'sub-67', 'published', 'ee020c2d-81c8-4011-934d-e84fbca7bd78', 0, 'monthly', 'active', 1771648589, 1771648589),\n('d72cb258-f34c-494c-a833-472f61381fa0', 'sub-68', 'published', '99e8276c-0e20-4fad-abce-83df07771dce', 2237, 'annual', 'active', 1771655698, 1771655698),\n('b47ab0ff-bac7-48b4-93dd-71aed3a16323', 'sub-69', 'published', '99e8276c-0e20-4fad-abce-83df07771dce', 1880, 'annual', 'active', 1776399054, 1776399054),\n('dcbd6024-1fbf-49f3-a3dd-2fe5d75d44bf', 'sub-70', 'published', 'a9b3efb9-3f0d-4667-ad11-5d680036319f', 987, 'annual', 'active', 1771632080, 1771632080),\n('035450cb-4470-466d-b511-2c4af9f621ce', 'sub-71', 'published', 'c7bdbde2-646b-467c-a714-37df847c3881', 0, 'monthly', 'active', 1771072481, 1771072481),\n('7582ed6c-2d7f-493a-855d-a20a17a654cd', 'sub-72', 'published', 'aef98b7c-54f9-4c0e-8af3-03aadd6ca499', 0, 'annual', 'past_due', 1771114823, 1771114823),\n('bed46945-6e66-494a-aa81-6f80236eb0f2', 'sub-73', 'published', 'aef98b7c-54f9-4c0e-8af3-03aadd6ca499', 0, 'monthly', 'past_due', 1779805191, 1779805191),\n('11a78b1c-668a-46c1-a32b-5b544196a032', 'sub-74', 'published', '61665b60-025d-4115-9a36-d7bb7a36b725', 0, 'annual', 'active', 1771246664, 1771246664),\n('f859942c-a016-49fa-95ab-4701927fec55', 'sub-75', 'published', 'd006eeae-3062-4c6c-aa19-d2561b9697da', 2298, 'monthly', 'active', 1771366397, 1771366397),\n('c6596068-a0cb-442a-b639-7ea8f9bcaa54', 'sub-76', 'published', '77a393d7-b907-47e5-9f4b-4ad30d994aab', 0, 'monthly', 'active', 1772287355, 1772287355),\n('68776bdc-084a-4fca-a828-43477ca467d2', 'sub-77', 'published', '7bf6b496-73ee-425f-8224-047f320337d1', 127, 'monthly', 'active', 1771543508, 1771543508),\n('4db5f92b-0d7c-4571-9bff-bbc2cc140ec7', 'sub-78', 'published', '58a9de57-fae6-4a75-85bc-287684e76494', 0, 'monthly', 'active', 1772186779, 1772186779),\n('0970305e-8989-4fd4-aa43-a8e0d6e7a724', 'sub-79', 'published', '1b88a5f0-6b12-4e42-9919-dd905592e32d', 0, 'annual', 'active', 1771494695, 1771494695),\n('ea6c48a9-2e69-4220-8dce-450ee42b98a1', 'sub-80', 'published', 'bd6870c9-cabc-4e93-bc81-5dee7807eeae', 47, 'annual', 'active', 1771325307, 1771325307),\n('1c9ccd5a-39a3-4bc1-a892-bd9e7d272e23', 'sub-81', 'published', 'bd6870c9-cabc-4e93-bc81-5dee7807eeae', 56, 'monthly', 'active', 1781354766, 1781354766),\n('f17add28-5ae8-46a2-b30e-cfd22f0a7397', 'sub-82', 'published', '53a11531-a9ce-4223-9c6e-3f589a8b5567', 0, 'monthly', 'active', 1772584603, 1772584603),\n('c11dd9ee-ec73-4d95-8ab2-25c965e7ce7c', 'sub-83', 'published', '53a11531-a9ce-4223-9c6e-3f589a8b5567', 0, 'annual', 'active', 1776387763, 1776387763),\n('caa655f0-de15-4252-b63b-698ed7a21e2f', 'sub-84', 'published', '5c42a4af-067d-41cc-b1e5-d8a6fbe83885', 1136, 'monthly', 'active', 1772533192, 1772533192),\n('69520dad-75eb-4ae8-a396-ac7081aa6be7', 'sub-85', 'published', '5c42a4af-067d-41cc-b1e5-d8a6fbe83885', 2035, 'annual', 'active', 1776235176, 1776235176),\n('3e812b8a-a1a9-4ce0-a8d5-a612a6adee9b', 'sub-86', 'published', 'c839e77e-a766-40c7-8967-ed74224fcc36', 104, 'annual', 'active', 1771723586, 1771723586),\n('1e89656c-9082-421d-941d-ec7de7532c4e', 'sub-87', 'published', '82d103a6-8103-4d52-8d8c-fbc4ec29ad61', 0, 'monthly', 'canceled', 1772242858, 1772242858),\n('11aada8e-9a11-4a9f-a5c4-4118e2539efb', 'sub-88', 'published', '1a9a1a11-492c-4538-9ac7-85cdb117535b', 0, 'monthly', 'active', 1772561723, 1772561723),\n('af0ebbbb-ed8c-4e14-b674-ced2f6163c0d', 'sub-89', 'published', '1a9a1a11-492c-4538-9ac7-85cdb117535b', 0, 'monthly', 'active', 1777036546, 1777036546),\n('9d868413-e8f9-473b-adf7-e824f8f615c3', 'sub-90', 'published', '13a57c21-d57b-47e0-8ea5-df2b16d2bec3', 1380, 'annual', 'active', 1772698894, 1772698894),\n('2901a719-e18a-42a2-a9d1-f09927a89977', 'sub-91', 'published', '3647cfa0-592f-4c44-a5d0-8cf1f233ceea', 175, 'annual', 'active', 1772422760, 1772422760),\n('00f5fbfb-27c9-4a47-8bc8-215935fb5557', 'sub-92', 'published', '3647cfa0-592f-4c44-a5d0-8cf1f233ceea', 94, 'annual', 'active', 1779229917, 1779229917),\n('88e8e4fa-4243-463a-aad3-39d41655d4fc', 'sub-93', 'published', 'a4c5f792-5e05-4acd-aa90-b87f2ab000c0', 0, 'annual', 'active', 1773002118, 1773002118),\n('cfe63314-973d-4d46-90df-cff26d49a4d6', 'sub-94', 'published', 'a4c5f792-5e05-4acd-aa90-b87f2ab000c0', 0, 'monthly', 'active', 1776261561, 1776261561),\n('e2da378a-a366-43b0-bafd-02743d6dfd7c', 'sub-95', 'published', '8a2dfd71-3be4-4728-aa64-393591f2db59', 156, 'monthly', 'active', 1771967917, 1771967917),\n('1715f1d4-6111-426c-ad70-b7eba030ab03', 'sub-96', 'published', '204fac0b-9c17-41e2-be22-3e7aea409681', 156, 'annual', 'active', 1772520587, 1772520587),\n('fd99197b-11bb-426f-958a-d774288ceb70', 'sub-97', 'published', '204fac0b-9c17-41e2-be22-3e7aea409681', 111, 'monthly', 'active', 1781354766, 1781354766),\n('3fe2f6ab-9e5b-4dd3-9c42-1a87789a133d', 'sub-98', 'published', 'ebce70d5-61ef-41af-89f5-01a3271f0d10', 0, 'monthly', 'active', 1772352021, 1772352021),\n('7e50edb2-c9b6-4d0e-a2a4-5cd963352131', 'sub-99', 'published', 'ebce70d5-61ef-41af-89f5-01a3271f0d10', 0, 'monthly', 'active', 1781354766, 1781354766),\n('c3a568a2-061e-495d-9e76-bb1f1a751fff', 'sub-100', 'published', 'eebcc98c-1c55-49b7-82b3-e8c4431370bb', 141, 'monthly', 'canceled', 1772187081, 1772187081),\n('3a1c8e1e-0e98-4a2d-a69d-09e6a7cb6e1c', 'sub-101', 'published', 'c0482688-7d51-4883-9b17-b611be69efa5', 0, 'monthly', 'active', 1772725763, 1772725763),\n('d45eaf55-2fdd-441b-8937-c2f7c8af33fa', 'sub-102', 'published', '74a0af98-e16e-4534-afec-3c8d441d453b', 1323, 'monthly', 'active', 1772733572, 1772733572),\n('b632953e-f869-472b-835d-0bf62b1b727f', 'sub-103', 'published', 'c3a20305-b9f5-4e51-8643-9fc2ebe31aa7', 178, 'monthly', 'active', 1772374143, 1772374143),\n('d4faf197-3507-4ed2-b20a-3cd70cd04544', 'sub-104', 'published', 'c3a20305-b9f5-4e51-8643-9fc2ebe31aa7', 151, 'monthly', 'active', 1775050751, 1775050751),\n('be22fcc7-2655-4dd5-9757-744c62273508', 'sub-105', 'published', '2b2b1eab-e6b3-49d6-a0cf-f6048a5e3780', 0, 'monthly', 'active', 1773226760, 1773226760),\n('509aa175-e5d3-4e46-8cac-2b70813b1a22', 'sub-106', 'published', '86bc8726-c3e6-4f3e-8e53-4a7276e9ea58', 0, 'monthly', 'active', 1773268018, 1773268018),\n('e7d1a0ae-ed3a-41ff-8b67-ca2703608134', 'sub-107', 'published', '92ee9f15-47f6-46a7-ab03-a7bff8705dad', 163, 'monthly', 'canceled', 1772529332, 1772529332),\n('425422fa-16e4-4022-8646-39e0da46674e', 'sub-108', 'published', '70aad252-4e50-40ba-afc1-3ecba08e4082', 68, 'monthly', 'active', 1773558195, 1773558195),\n('dc389917-ac86-47c2-b8eb-b8f3b33fbb19', 'sub-109', 'published', '09491488-2528-4232-a3e5-2fd5c2c63544', 51, 'monthly', 'active', 1773368169, 1773368169),\n('8e6b49fa-18e6-4bab-94aa-2999c9006380', 'sub-110', 'published', '8856f016-2a70-4bfd-883c-56c1ff94e81f', 0, 'monthly', 'past_due', 1773093580, 1773093580),\n('a04d8230-af53-4f04-9864-2b67e8c6b372', 'sub-111', 'published', '8856f016-2a70-4bfd-883c-56c1ff94e81f', 0, 'monthly', 'active', 1780023304, 1780023304),\n('2e64c2d7-3a86-441b-a96e-f48936919b57', 'sub-112', 'published', '8c62523a-2323-4de3-897f-e4bfc7e40671', 906, 'monthly', 'active', 1772821087, 1772821087),\n('d65c77a4-6b78-4abb-9f43-a5e8e80005cf', 'sub-113', 'published', '8c62523a-2323-4de3-897f-e4bfc7e40671', 1733, 'annual', 'active', 1778840098, 1778840098),\n('9be18e00-b53a-40fd-8193-43fdfe664f19', 'sub-114', 'published', '98067136-2774-4e9d-8454-36130829c3af', 2070, 'annual', 'canceled', 1773470935, 1773470935),\n('5da7315b-4a3a-440a-987d-0e0394791564', 'sub-115', 'published', '61b9bfe2-5627-49ad-ac8d-626c4e2902bf', 0, 'monthly', 'active', 1772977979, 1772977979),\n('f1209366-4aa2-4b34-b5a0-1e489471d16a', 'sub-116', 'published', '61b9bfe2-5627-49ad-ac8d-626c4e2902bf', 0, 'monthly', 'active', 1775922167, 1775922167),\n('5d07f070-6d3b-4454-9969-5c91411a8b45', 'sub-117', 'published', '0a6c8747-2324-4654-90af-80b985d4ed43', 38, 'monthly', 'active', 1772970531, 1772970531),\n('b8bdb613-5085-46c4-ae09-da4e76d7ddc9', 'sub-118', 'published', '01f81f7d-9237-4763-9bff-c26e08a28243', 0, 'monthly', 'active', 1773356412, 1773356412),\n('5acf63d2-4ab4-4b4f-9fa7-526cc589900f', 'sub-119', 'published', '01f81f7d-9237-4763-9bff-c26e08a28243', 0, 'annual', 'active', 1778807199, 1778807199),\n('54efa14b-d0f7-4879-90e8-6c0c24ed8e6e', 'sub-120', 'published', '74af70bb-6f15-4fe1-9084-84142d64fd24', 0, 'monthly', 'active', 1773118553, 1773118553),\n('5880cfd3-9f93-4668-b0cb-20ddd30a16cd', 'sub-121', 'published', '4e9967c2-1b54-4fc0-bdb3-64b23195d875', 0, 'annual', 'canceled', 1773147334, 1773147334),\n('2e573125-672e-4365-a6f3-4a078b64238e', 'sub-122', 'published', 'f5b1467f-2510-46d1-b052-672d13f15f07', 0, 'annual', 'active', 1773505100, 1773505100),\n('2e7ad15d-8f6c-4a6a-a6f1-ccc57f315506', 'sub-123', 'published', 'c5354f2b-5425-438f-bb67-28c545d8f958', 53, 'annual', 'active', 1773696386, 1773696386),\n('cdf41a65-26a7-4bf5-956e-8f063f497aa7', 'sub-124', 'published', '38006071-e48e-4e5f-a900-8fb831f71087', 0, 'annual', 'active', 1773460686, 1773460686),\n('36cf202e-39de-4d92-9c8a-aba34c22eb29', 'sub-125', 'published', 'f4a0bf8a-b74f-4a10-bc20-11c9881ad000', 173, 'monthly', 'active', 1773238994, 1773238994),\n('a2c7d2f4-d50e-41c0-be4f-08d0be5168ca', 'sub-126', 'published', '4ca8c244-4177-4d09-bca7-1e9c68d9c9dc', 0, 'monthly', 'active', 1774375502, 1774375502),\n('24a0087c-ef99-49b2-9ea7-8513bb774939', 'sub-127', 'published', '4ca8c244-4177-4d09-bca7-1e9c68d9c9dc', 0, 'monthly', 'active', 1781354766, 1781354766),\n('91aef2f8-0082-4874-85a5-0f969fd6389d', 'sub-128', 'published', '85511691-7a1d-4da7-8c00-c07eb62f014c', 108, 'monthly', 'active', 1774366618, 1774366618),\n('c9952be6-8570-4ed8-a62a-b10503311f0a', 'sub-129', 'published', '6c4fd4c5-fda3-477f-9a9d-3ec19310737d', 0, 'monthly', 'active', 1773842789, 1773842789),\n('ea0d981d-0252-493f-ae62-863aaac39a47', 'sub-130', 'published', '5fb9ae70-4511-48a1-9e88-b5dc9fe5a778', 1427, 'annual', 'active', 1774095331, 1774095331),\n('b46f8608-a3bb-4cf7-9018-33dff1b96004', 'sub-131', 'published', '48aeb5ba-b5e1-4894-ae5e-6bf1b358acd1', 0, 'monthly', 'active', 1774214504, 1774214504),\n('96be4720-dbb0-4a43-982c-200f79b0a1e6', 'sub-132', 'published', 'b974ba28-0122-4b96-bb4a-bfe31e2a778f', 0, 'monthly', 'active', 1774275905, 1774275905),\n('5897dc4e-cbb1-4a92-ab92-9bfb6e09155f', 'sub-133', 'published', 'b974ba28-0122-4b96-bb4a-bfe31e2a778f', 0, 'monthly', 'active', 1778285502, 1778285502),\n('61a10b3e-14cc-4634-b039-381fc9079aeb', 'sub-134', 'published', '9d9fd9f5-dd60-4cf7-9863-11ae30aad79f', 0, 'monthly', 'active', 1774057705, 1774057705),\n('3a6a77c7-1fd5-4afe-9d75-da6256cd0f70', 'sub-135', 'published', '00d9a2ce-1195-4839-bc61-7c512fe1bdb9', 139, 'monthly', 'active', 1774074294, 1774074294),\n('e3d43d5d-e1d4-4381-8fc6-f286f62becae', 'sub-136', 'published', '47195146-d267-406d-8f17-dec101d601f7', 0, 'monthly', 'active', 1773602960, 1773602960),\n('0a1fd5db-0825-46bc-8729-92f1bf052a22', 'sub-137', 'published', '2720c436-42d6-4a49-83dc-3fcd4ab94c24', 0, 'annual', 'active', 1773836527, 1773836527),\n('9f829099-6a86-499e-a2f3-b4a5355d0970', 'sub-138', 'published', '2720c436-42d6-4a49-83dc-3fcd4ab94c24', 0, 'monthly', 'active', 1781354766, 1781354766),\n('a158b3f1-afb7-4b34-afa2-537948aa570f', 'sub-139', 'published', '4deedf0e-9b29-448c-a01f-b64db138b6dd', 62, 'monthly', 'active', 1774465007, 1774465007),\n('dd1f54c7-8c74-4315-9fcd-ab40e8175ee8', 'sub-140', 'published', '4deedf0e-9b29-448c-a01f-b64db138b6dd', 152, 'monthly', 'past_due', 1781090341, 1781090341),\n('97577328-22f3-4cfb-8f81-f70cb7e48fa9', 'sub-141', 'published', '5c3ac8c3-15fb-456c-a640-70c013ed2070', 0, 'monthly', 'active', 1774518109, 1774518109),\n('31c55c27-49bb-4a7e-944b-fc30578e99e7', 'sub-142', 'published', '5c3ac8c3-15fb-456c-a640-70c013ed2070', 0, 'annual', 'active', 1778622453, 1778622453),\n('9be4047b-87e0-4e83-a677-52e788b8f282', 'sub-143', 'published', '3e30eb5c-5939-4435-a1de-00f38a057e0c', 90, 'monthly', 'active', 1774873466, 1774873466),\n('08f19a60-41fa-4f23-bcd6-562289f261e2', 'sub-144', 'published', 'c9d31bd2-9cc7-4e15-a7f4-4e1ad8338288', 0, 'monthly', 'active', 1774646836, 1774646836),\n('3f5ef5e5-dfc0-4753-86e4-44ccf0b30237', 'sub-145', 'published', 'c6bcd154-a41e-47e0-b9e6-d9923cce7998', 0, 'monthly', 'active', 1774357527, 1774357527),\n('2becd691-b0bc-4bc3-a9e6-d04dff7d9363', 'sub-146', 'published', '9284e6af-aff9-418b-baa7-1c59b1a04292', 0, 'monthly', 'active', 1774992341, 1774992341),\n('9964633c-69f8-43b9-8365-6038ab2f053e', 'sub-147', 'published', '9284e6af-aff9-418b-baa7-1c59b1a04292', 0, 'monthly', 'active', 1780497155, 1780497155),\n('ac1a8eb0-505d-4f4a-b739-f59db6c15b9c', 'sub-148', 'published', 'bf510b81-d1f1-492b-80a4-8b1f4e83bff9', 95, 'monthly', 'active', 1774483454, 1774483454),\n('73c3385a-daaa-482b-a028-0f6f270c11c9', 'sub-149', 'published', '5ae8eb4d-84ba-435b-93ca-acda535bf029', 0, 'monthly', 'active', 1775164273, 1775164273),\n('2a3d385d-c216-4972-b60c-fd3aaad64ad7', 'sub-150', 'published', 'e0deee07-bc13-441a-bc52-60a7508894a8', 2284, 'monthly', 'active', 1774775643, 1774775643),\n('62061264-70b2-48ec-a9a8-c554ff7f9574', 'sub-151', 'published', '09d1e9ee-7d60-4851-8e12-4215f3380c09', 795, 'monthly', 'active', 1775249790, 1775249790),\n('dc9de086-7a31-4a2f-8509-960560bbb8e2', 'sub-152', 'published', '09d1e9ee-7d60-4851-8e12-4215f3380c09', 1594, 'monthly', 'active', 1781354766, 1781354766),\n('1a9246f4-9b67-46fb-bfdb-12e2ebfe0348', 'sub-153', 'published', 'eb3008c1-26e2-4d23-b02f-83774c9c248d', 0, 'monthly', 'active', 1774925052, 1774925052),\n('22bce1f4-5adc-4416-8884-69c431e64913', 'sub-154', 'published', 'd883aa42-2456-4f18-a8c0-247aae70c134', 0, 'annual', 'active', 1775358783, 1775358783),\n('137ecf59-34f9-4b9d-ba16-42e918601aad', 'sub-155', 'published', 'ec9e8f9a-3333-4e9b-8f49-4ec0c07f891f', 0, 'monthly', 'active', 1774353037, 1774353037),\n('59acbde6-c8e4-4e01-9208-60da3763be59', 'sub-156', 'published', '634bff5b-68ff-453f-99e6-72570d074cd4', 1724, 'annual', 'active', 1775498603, 1775498603),\n('688a20de-d5d8-4ae8-b490-32ee8c89681f', 'sub-157', 'published', '0ad629e5-8450-49a1-b4d5-4f777de2bd5e', 0, 'annual', 'active', 1774624794, 1774624794),\n('18cd2a3f-14ad-439d-a3e9-a20826081b9c', 'sub-158', 'published', '0ad629e5-8450-49a1-b4d5-4f777de2bd5e', 0, 'monthly', 'active', 1777727466, 1777727466),\n('99b1d66d-01ab-46b4-bc58-d3a07c529292', 'sub-159', 'published', '4d7d0ec0-430f-463e-8892-dff55f003e3c', 112, 'monthly', 'canceled', 1774654648, 1774654648),\n('d9194e0d-ec0d-4096-9174-0f9bf35a4296', 'sub-160', 'published', 'ddb38f7a-51bf-43e4-a7d0-133b8652a4f9', 1304, 'monthly', 'active', 1775116801, 1775116801),\n('e5964ef2-413a-44d0-a410-e80ab1f855c6', 'sub-161', 'published', 'c13d9324-56ae-4a89-b6f3-4be0be9e662f', 77, 'annual', 'active', 1775161979, 1775161979),\n('6f55f518-aac6-4e8e-9702-13ea3864d33c', 'sub-162', 'published', 'c13d9324-56ae-4a89-b6f3-4be0be9e662f', 62, 'monthly', 'active', 1778207432, 1778207432),\n('a8c87981-471d-4d2e-9fb6-8daceda89343', 'sub-163', 'published', 'b6e7d802-f387-441e-8b0b-c089b72a1e90', 0, 'monthly', 'active', 1774974628, 1774974628),\n('c6161d72-9508-4c2c-93e8-a3208ed991b6', 'sub-164', 'published', 'b78a3271-509e-4fd9-bf69-24577ab2bccc', 175, 'monthly', 'active', 1774950010, 1774950010),\n('1195bbcd-3504-4a02-8a19-3747f36e547d', 'sub-165', 'published', 'b7705a60-adee-4b67-81dc-7a0d05a94485', 0, 'monthly', 'active', 1775754442, 1775754442),\n('371d36ea-575c-42cd-b240-38081cd69fdd', 'sub-166', 'published', 'b7705a60-adee-4b67-81dc-7a0d05a94485', 0, 'annual', 'active', 1779907276, 1779907276),\n('ad0fa0be-8b3b-4f13-a62d-48eb7a662f32', 'sub-167', 'published', '6909dd1c-6392-4013-af56-f35e273c3a66', 0, 'monthly', 'active', 1775301681, 1775301681),\n('6946d8ac-2cb2-4b43-a670-b4a91512baa2', 'sub-168', 'published', 'e5b6d3d3-a3a4-458c-9d56-ea93d90a1042', 0, 'monthly', 'active', 1775331283, 1775331283),\n('d0280c1a-2e4c-4c48-b48d-8ce31a19e796', 'sub-169', 'published', 'e5b6d3d3-a3a4-458c-9d56-ea93d90a1042', 0, 'monthly', 'active', 1781354766, 1781354766),\n('00f3786a-0dea-4096-83fc-b5f63af4f849', 'sub-170', 'published', '80888cd7-7fcd-4958-b790-c900201e4564', 40, 'monthly', 'active', 1775168124, 1775168124),\n('9b562f9d-f076-40de-ad9b-85f1f2a73190', 'sub-171', 'published', '8ffe19d9-4801-4f67-abd7-76ac986ccedb', 0, 'monthly', 'canceled', 1774940280, 1774940280),\n('881aa600-216e-485f-a171-a56bad67e922', 'sub-172', 'published', '114870cd-01a0-4c49-ad0e-5e967fd42e8b', 0, 'monthly', 'active', 1776096979, 1776096979),\n('d77f95d1-112c-480e-9c4f-38551af95fd1', 'sub-173', 'published', '114870cd-01a0-4c49-ad0e-5e967fd42e8b', 0, 'monthly', 'active', 1781354766, 1781354766),\n('b44f179e-52cc-4bcd-aec4-a7d7d6795cc3', 'sub-174', 'published', '82d14734-9dc4-4c48-86f8-c7bc1d2fbcc4', 0, 'monthly', 'active', 1774906751, 1774906751),\n('10c64653-f2a0-409f-8a19-8ab5a2e04e2e', 'sub-175', 'published', '7c0178fc-ab34-4812-898f-4d3daec24e02', 138, 'monthly', 'active', 1775181195, 1775181195),\n('d6869094-81a8-414f-b6d4-624174e1f3af', 'sub-176', 'published', '5ce7b90c-1b5f-489a-a0aa-d6c79f2db106', 0, 'monthly', 'active', 1776098807, 1776098807),\n('a2a31754-6637-4588-bf62-eede6b9b81cc', 'sub-177', 'published', '9e037244-70d2-4ae2-aada-0a8a92588adb', 1998, 'monthly', 'active', 1775957365, 1775957365),\n('095eafba-b9e7-4a12-8ee2-2e2eba106f49', 'sub-178', 'published', 'ea6bfeac-d72f-4cf3-b42f-4337a2d3ba3f', 117, 'annual', 'active', 1776002021, 1776002021),\n('90407c65-e0f5-4be8-bc79-41f6cd8710bf', 'sub-179', 'published', 'ea6bfeac-d72f-4cf3-b42f-4337a2d3ba3f', 65, 'monthly', 'active', 1780770902, 1780770902),\n('0826f632-c8c7-4b5f-94e1-2c20c477aaec', 'sub-180', 'published', '5b405c11-a333-42fa-a44f-039903ebf8cc', 136, 'monthly', 'active', 1776177407, 1776177407),\n('a038fab4-66be-4e97-ba6c-412249f5e469', 'sub-181', 'published', '410d7519-1772-42bc-b067-dd1c8942429a', 93, 'monthly', 'active', 1775628575, 1775628575),\n('c368ebc5-fb62-4b35-85ff-b90884554638', 'sub-182', 'published', '410d7519-1772-42bc-b067-dd1c8942429a', 101, 'annual', 'active', 1779846496, 1779846496),\n('edc84588-2c07-479d-9924-37e52a2b51e4', 'sub-183', 'published', 'eb7b3aba-7629-4d9c-a59e-a985400d7c2c', 0, 'monthly', 'canceled', 1775814744, 1775814744),\n('d4c57c2b-54a0-422d-8c35-db1727bcd1ab', 'sub-184', 'published', 'eb7b3aba-7629-4d9c-a59e-a985400d7c2c', 0, 'annual', 'canceled', 1778035796, 1778035796),\n('bd468e4e-e0f8-414f-8124-d029c81d2d73', 'sub-185', 'published', '11a948ba-400b-4636-a0c5-235d7cff18fc', 127, 'monthly', 'active', 1775275460, 1775275460),\n('409c98a5-6217-4a0b-a8c5-f9741163e3d4', 'sub-186', 'published', 'a1f6190f-c373-4977-9150-3dc9b379ef16', 42, 'monthly', 'active', 1775950708, 1775950708),\n('b11c9768-c513-4afa-a79d-12dcf94ef084', 'sub-187', 'published', 'a1f6190f-c373-4977-9150-3dc9b379ef16', 129, 'annual', 'active', 1778286328, 1778286328),\n('6064da04-b4ab-47c3-8b27-4b5159de5532', 'sub-188', 'published', '0aefdbf3-599c-4650-a865-7774517c0aaf', 159, 'monthly', 'active', 1775735682, 1775735682),\n('90f10880-4e05-4803-b2a9-9c07551708b6', 'sub-189', 'published', '0aefdbf3-599c-4650-a865-7774517c0aaf', 104, 'annual', 'active', 1781354766, 1781354766),\n('5cd6971b-af54-4da9-9d0a-879890336732', 'sub-190', 'published', '3eee89f9-28fd-4cfb-a29e-73c90f7429dd', 0, 'annual', 'active', 1776567222, 1776567222),\n('5631e9de-fe1d-442b-a1e1-8100548a7295', 'sub-191', 'published', 'b2411a37-1276-4a1d-b074-542d29e88a95', 0, 'annual', 'active', 1776059557, 1776059557),\n('25ea2006-4670-4645-8bf8-c7a3ea26a170', 'sub-192', 'published', 'b2411a37-1276-4a1d-b074-542d29e88a95', 0, 'monthly', 'active', 1781354766, 1781354766),\n('7c617152-8456-4622-94b1-9b2d91a8ec66', 'sub-193', 'published', '35e79d15-ca97-4e93-bda8-0715f9d23e00', 0, 'monthly', 'active', 1776480110, 1776480110),\n('7167c07f-c067-483f-88dc-dfdebf5f750d', 'sub-194', 'published', '14dc2ddb-0e56-4da3-b185-aee1c315120d', 0, 'monthly', 'active', 1776431012, 1776431012),\n('60571d44-65a2-48a7-bc82-6b0425086ad5', 'sub-195', 'published', '14dc2ddb-0e56-4da3-b185-aee1c315120d', 0, 'annual', 'active', 1781354766, 1781354766),\n('d5f1d824-3015-4947-9649-c2fcc9178044', 'sub-196', 'published', 'f5c7a0b1-abe0-4bca-9984-59a465342a85', 0, 'monthly', 'active', 1776315120, 1776315120),\n('5c057e36-80b7-4070-b1a6-5aeda1cb0653', 'sub-197', 'published', 'f7206b99-9e7c-45b0-b1a5-ca8d449a987d', 68, 'monthly', 'active', 1776410394, 1776410394),\n('20e0b1b1-464b-49fb-b593-f844758c8f89', 'sub-198', 'published', 'f7206b99-9e7c-45b0-b1a5-ca8d449a987d', 122, 'monthly', 'active', 1778301963, 1778301963),\n('90772cbe-03af-4208-981e-600fcaf662fd', 'sub-199', 'published', '39457a00-f6ae-4a76-8827-7247484d452d', 0, 'annual', 'active', 1775861148, 1775861148),\n('2602773b-b00f-44db-a346-3182d65f6526', 'sub-200', 'published', 'f13572b0-d5ae-4b14-a3ec-132e5fe9ceae', 0, 'monthly', 'active', 1776889316, 1776889316),\n('1dbc4547-89ea-4102-b373-1dae81f99721', 'sub-201', 'published', 'aa500940-c2f3-40f9-97a8-4181677b54cf', 0, 'monthly', 'canceled', 1775989177, 1775989177),\n('b04ee683-0412-4f5a-9e99-3a94ce09a3de', 'sub-202', 'published', 'aa500940-c2f3-40f9-97a8-4181677b54cf', 0, 'monthly', 'canceled', 1779012687, 1779012687),\n('5da39296-49ff-429a-b2da-1518cdc394fe', 'sub-203', 'published', '5f89bc44-c3b0-4163-b61e-dc785a459d69', 0, 'monthly', 'active', 1776755863, 1776755863),\n('c3bc5e4a-f507-4693-b6c8-29edc5065a5e', 'sub-204', 'published', 'f7dd4180-f793-425a-8c41-9043bc9b8af3', 0, 'monthly', 'active', 1777038659, 1777038659),\n('4bc81d9d-3da5-467e-8596-f41365a1ee6e', 'sub-205', 'published', 'f7dd4180-f793-425a-8c41-9043bc9b8af3', 0, 'annual', 'active', 1781354766, 1781354766),\n('89728315-2010-4275-aa17-61238823806c', 'sub-206', 'published', 'cfc313d1-b386-4bac-9f3e-dcfd79714e8c', 142, 'monthly', 'active', 1777018068, 1777018068),\n('9b40c473-2fe0-499a-b04b-e5737d442a66', 'sub-207', 'published', 'cfc313d1-b386-4bac-9f3e-dcfd79714e8c', 111, 'monthly', 'active', 1781354766, 1781354766),\n('cbb07170-62c7-4f90-ae08-98834785fb39', 'sub-208', 'published', 'c7f74a59-d53b-4846-9299-213bef30f1ed', 0, 'monthly', 'past_due', 1776507543, 1776507543),\n('f0d627dd-5204-4b31-ab15-b3253ea752e2', 'sub-209', 'published', 'b4275859-e432-4f54-adea-b1c262833cce', 0, 'monthly', 'active', 1777044751, 1777044751),\n('9da8fe4c-f44d-495c-a24c-eeee26d4e218', 'sub-210', 'published', '1d5fa5ec-7453-4f7b-8a69-b3d5aefc1ae2', 768, 'monthly', 'active', 1776645076, 1776645076),\n('5e05a27f-fb56-47c2-a5ae-d815a67adc07', 'sub-211', 'published', '1d5fa5ec-7453-4f7b-8a69-b3d5aefc1ae2', 2025, 'monthly', 'active', 1779243339, 1779243339),\n('99d558fd-11ec-4e84-9d0f-36ab662b9454', 'sub-212', 'published', 'a1c303c8-8ca7-4d37-b625-b124ed52b96e', 0, 'monthly', 'past_due', 1777260818, 1777260818),\n('997afa32-00b7-4989-bdf8-4e1d5c76c98c', 'sub-213', 'published', 'a1c303c8-8ca7-4d37-b625-b124ed52b96e', 0, 'monthly', 'active', 1781354766, 1781354766),\n('040bf16c-7a6e-49b6-bad9-8b9d700c08a6', 'sub-214', 'published', 'a7534440-3e4a-4fd9-8165-5d90a4f5299f', 0, 'monthly', 'active', 1776765150, 1776765150),\n('92504d21-bacc-4f7c-9292-f2bf0fba9cca', 'sub-215', 'published', 'a7534440-3e4a-4fd9-8165-5d90a4f5299f', 0, 'annual', 'active', 1781354766, 1781354766),\n('7dfa33c7-8701-466f-bbdc-a1ff0c4ed7eb', 'sub-216', 'published', '116e0432-63cc-41aa-b967-f3c8e5b00a36', 0, 'monthly', 'active', 1776281859, 1776281859),\n('bfea6842-f55a-4229-ad9c-d58963000015', 'sub-217', 'published', '1c41ea21-41b6-4e2b-bd2e-865b329a3948', 0, 'annual', 'canceled', 1777118962, 1777118962),\n('82c660e5-c585-403c-bccd-f9f66bed1312', 'sub-218', 'published', 'de4e4ac9-a6d3-4758-ad85-a099cb1767ce', 111, 'monthly', 'active', 1776635662, 1776635662),\n('95664f27-e4b5-4b56-9635-89d8b3e42d7f', 'sub-219', 'published', 'b0b20a7c-6247-473e-b7a8-30aadb5e6192', 91, 'annual', 'active', 1776256492, 1776256492),\n('a976f8e4-8847-4fd7-a940-c8bb4a6679c3', 'sub-220', 'published', '13d11bbb-26a0-43e9-a8f0-b3ce489a55d9', 0, 'annual', 'canceled', 1777120318, 1777120318),\n('161da5f2-f014-4f27-9523-17fa7c6dc857', 'sub-221', 'published', '13d11bbb-26a0-43e9-a8f0-b3ce489a55d9', 0, 'annual', 'canceled', 1781163220, 1781163220),\n('6d3d0894-e0d0-4f14-a565-dcde5e1a39b0', 'sub-222', 'published', 'a7e984a4-7fbb-47dd-9b25-001b4b4d2714', 0, 'monthly', 'active', 1776622552, 1776622552),\n('b3e4180a-c53c-4052-81a3-c1fca30e728d', 'sub-223', 'published', '7487af79-a1b4-49a3-922c-d9c32e534cf9', 0, 'monthly', 'active', 1776734893, 1776734893),\n('8cb2d542-c287-4145-8ae3-e3f425eb8cf9', 'sub-224', 'published', 'e45c5fd5-5815-4553-b4ca-f7d08ab69704', 0, 'monthly', 'active', 1777002151, 1777002151),\n('85cefd7e-01a2-4776-b021-7a40af54ab3e', 'sub-225', 'published', 'e45c5fd5-5815-4553-b4ca-f7d08ab69704', 0, 'annual', 'active', 1781354766, 1781354766),\n('102d3692-4893-4973-a575-cef7caf42b67', 'sub-226', 'published', '171853fd-4f3b-405d-8a38-237ce4a29208', 0, 'monthly', 'active', 1776581702, 1776581702),\n('51728c7f-ec89-49f0-b3fa-07eb1fed65c6', 'sub-227', 'published', '171853fd-4f3b-405d-8a38-237ce4a29208', 0, 'monthly', 'active', 1781128714, 1781128714),\n('aebcec8f-48b8-4e0c-bdfd-dfd1171d1a26', 'sub-228', 'published', 'ad2c0f4e-6e1a-42fa-a127-1f962f4a2fe7', 0, 'monthly', 'active', 1777013349, 1777013349),\n('53dcc2e8-206b-4cb2-b810-ec8b2555a327', 'sub-229', 'published', 'e80b18e5-7d62-477c-814e-b547feedf5c7', 0, 'monthly', 'active', 1776713684, 1776713684),\n('88026068-0911-4560-a444-e274d6d210c8', 'sub-230', 'published', 'e80b18e5-7d62-477c-814e-b547feedf5c7', 0, 'monthly', 'active', 1781051534, 1781051534),\n('a5d33fd4-1ab3-4d44-b239-4f2415628a08', 'sub-231', 'published', 'bf0cab3d-f0d8-4cda-926f-a391a861535f', 0, 'monthly', 'active', 1777629988, 1777629988),\n('752913ac-5431-464e-9d5f-6050afef463b', 'sub-232', 'published', '12e09a24-a636-4064-87a5-3acd541bded9', 0, 'monthly', 'past_due', 1776963593, 1776963593),\n('7b875f94-9ee0-4b0d-9a2e-df741e111ced', 'sub-233', 'published', '12e09a24-a636-4064-87a5-3acd541bded9', 0, 'monthly', 'active', 1781354766, 1781354766),\n('389cc949-82b7-438e-8166-70eaa0657124', 'sub-234', 'published', '10e170a1-ee37-4c6e-a432-f0d3de7811ca', 0, 'monthly', 'active', 1777220711, 1777220711),\n('00f98a2c-635a-468c-98d9-7892b0c9765e', 'sub-235', 'published', '9d0f556f-172b-4e10-be4c-2059dda23734', 152, 'monthly', 'active', 1776642828, 1776642828),\n('2443f800-a7fa-4d99-9af5-37f509d07ac7', 'sub-236', 'published', '9d0f556f-172b-4e10-be4c-2059dda23734', 55, 'monthly', 'active', 1781354766, 1781354766),\n('d2c4a3ec-bbed-498d-b500-841b0d250717', 'sub-237', 'published', '59f810e9-ee58-4892-99a4-092853422742', 101, 'monthly', 'active', 1777318869, 1777318869),\n('01bdf730-1932-4f1c-b17b-ba32d762cb00', 'sub-238', 'published', '59f810e9-ee58-4892-99a4-092853422742', 162, 'monthly', 'active', 1781354766, 1781354766),\n('fc8b4458-b77c-432e-a13e-5fe68be58b31', 'sub-239', 'published', 'c2a0748c-0778-47b9-812d-531fe9ee6bd0', 0, 'monthly', 'active', 1777274105, 1777274105),\n('aa7f1789-f609-4865-9a5b-16967dbfb32a', 'sub-240', 'published', 'c106ca5b-7a22-48d3-ab66-97e9e6b04c54', 0, 'monthly', 'active', 1777505672, 1777505672),\n('ae3e1fd0-2160-4047-9880-7b063c3686ec', 'sub-241', 'published', 'c106ca5b-7a22-48d3-ab66-97e9e6b04c54', 0, 'monthly', 'active', 1781354766, 1781354766),\n('f3afb3d1-846f-43a9-89d7-f136888ed1f2', 'sub-242', 'published', 'dba63ae6-2647-4381-9279-01de53f95ef1', 0, 'monthly', 'active', 1776829407, 1776829407),\n('c37c0fc6-4e54-4465-a6f3-7e3a30f1cc1b', 'sub-243', 'published', '80cae293-f6c2-42b8-9cf7-b7590fdd2c68', 0, 'monthly', 'active', 1777591500, 1777591500),\n('c23374bf-0dad-4d2b-9ddc-77c174994c06', 'sub-244', 'published', '80cae293-f6c2-42b8-9cf7-b7590fdd2c68', 0, 'annual', 'active', 1781354766, 1781354766),\n('30d6dba1-f4ae-4aa8-bd9e-d9b5f762b7c8', 'sub-245', 'published', 'caadffc8-5bcc-4250-9fce-f0d27aedac14', 1821, 'monthly', 'active', 1777895492, 1777895492),\n('915a190d-6fc8-4ba2-88ef-99c9834f7cdb', 'sub-246', 'published', 'caadffc8-5bcc-4250-9fce-f0d27aedac14', 582, 'monthly', 'active', 1781354766, 1781354766),\n('112a0eab-657a-449a-a79e-2f62c2f1e447', 'sub-247', 'published', '01b6fdb8-06a4-4b69-87a5-c24cd39a2c52', 0, 'monthly', 'active', 1777318310, 1777318310),\n('e78d364b-87c4-4f8e-9820-5667218ffd01', 'sub-248', 'published', '9004f054-6a4c-47a3-b1e3-8ef524937439', 1976, 'monthly', 'active', 1776958204, 1776958204),\n('ea53f38e-7e4b-45ab-87d4-298c99583572', 'sub-249', 'published', '49a2a828-bdc2-455d-a69d-401ec4790927', 2065, 'monthly', 'canceled', 1777894595, 1777894595),\n('18ea8c65-6d29-4be7-a9fb-2c0179779f73', 'sub-250', 'published', '49a2a828-bdc2-455d-a69d-401ec4790927', 1181, 'monthly', 'canceled', 1781293553, 1781293553),\n('7e2e97e0-759c-49b8-90fa-dc5e9c5e580a', 'sub-251', 'published', '960efb2f-263f-4054-ba17-3001dbf1b871', 1860, 'monthly', 'active', 1777262349, 1777262349),\n('bc362681-45b6-47cf-b763-6c6e11503390', 'sub-252', 'published', '20054e67-3d21-48d5-8d08-107071186d19', 0, 'monthly', 'canceled', 1777633106, 1777633106),\n('e4aa56a2-61c6-407f-aa7f-2c72f88dbd58', 'sub-253', 'published', '20054e67-3d21-48d5-8d08-107071186d19', 0, 'annual', 'canceled', 1781354766, 1781354766),\n('5fd6f4e8-869b-41f8-907e-1878a3cecace', 'sub-254', 'published', '457402b8-d6ad-433c-833a-8a3ec88e968a', 0, 'monthly', 'active', 1777795781, 1777795781),\n('6060b72b-577b-4450-8629-90951bef9a3c', 'sub-255', 'published', 'bb51f933-7912-4929-8551-0d9177a8cdf0', 82, 'annual', 'active', 1777196529, 1777196529),\n('b77862b6-de80-4f98-ba19-a96440a9c895', 'sub-256', 'published', 'bb51f933-7912-4929-8551-0d9177a8cdf0', 142, 'annual', 'active', 1781354766, 1781354766),\n('caf06ec7-6221-4b46-8651-eab9e5ba88a5', 'sub-257', 'published', '8f41a746-a7c8-4f4e-be63-f1a19e6329d4', 0, 'monthly', 'active', 1777891760, 1777891760),\n('9028a0b8-564a-4de0-abe5-25ac28d5853f', 'sub-258', 'published', '2e3d9d89-5edd-4dd9-be8e-2ee15f776bf3', 1622, 'monthly', 'canceled', 1777750739, 1777750739),\n('3b74a027-1eb3-4066-b92e-b7e102710524', 'sub-259', 'published', '2a653519-6f16-4b42-8f85-16e70188c2c5', 1621, 'monthly', 'canceled', 1777342647, 1777342647),\n('7929bf88-ebb6-4cd7-a4f5-6e8ca87b4c77', 'sub-260', 'published', '2a653519-6f16-4b42-8f85-16e70188c2c5', 1354, 'monthly', 'canceled', 1781354766, 1781354766),\n('15e0a499-33d6-4521-8db3-3f4d7fceb747', 'sub-261', 'published', 'f07e5f6e-c76c-421f-b39e-f8b27d2d447d', 106, 'monthly', 'active', 1777618482, 1777618482),\n('b2be93e1-6ea0-4586-acd1-6b228093578e', 'sub-262', 'published', '01ffa1ad-7e35-4146-8c68-ef59c5dec013', 0, 'monthly', 'canceled', 1777813407, 1777813407),\n('22124888-21a5-411c-805e-851420ed934b', 'sub-263', 'published', '8657c754-5c85-4c60-89c6-95942ecc3c06', 1943, 'annual', 'canceled', 1777343112, 1777343112),\n('b092933d-e3d4-4680-a6a1-d0c9ddfc2919', 'sub-264', 'published', '8657c754-5c85-4c60-89c6-95942ecc3c06', 1475, 'monthly', 'canceled', 1781354766, 1781354766),\n('592d5b17-2162-49b5-836e-010b42eadead', 'sub-265', 'published', 'c79c4569-6380-4081-a95b-e7d5152f1c7b', 57, 'annual', 'active', 1777750746, 1777750746),\n('ce706387-4adb-49dc-83c8-9699a34f175a', 'sub-266', 'published', '4252e4be-e5be-496f-9e1b-d67404a9f98e', 99, 'monthly', 'active', 1778041202, 1778041202),\n('6bf1b8f7-8ecc-4e9a-a930-3763423e34e2', 'sub-267', 'published', '4252e4be-e5be-496f-9e1b-d67404a9f98e', 85, 'annual', 'active', 1781354766, 1781354766),\n('74f8db30-4796-4ff4-be44-bf877ddb47a8', 'sub-268', 'published', '4a545264-3d94-455e-9309-5689fa6b2440', 0, 'annual', 'canceled', 1777664656, 1777664656),\n('cef1d625-af30-4b1d-8881-d229da100556', 'sub-269', 'published', '4a545264-3d94-455e-9309-5689fa6b2440', 0, 'monthly', 'canceled', 1780102021, 1780102021),\n('5cbe5070-2910-458f-a486-bd51d7f55d18', 'sub-270', 'published', '08db9d21-5843-4662-86db-fbe2657b14bd', 76, 'monthly', 'active', 1777554889, 1777554889),\n('87f10c6b-c033-4608-b9d6-8b0edf4dc1cd', 'sub-271', 'published', 'd12d9fb0-35dc-4539-849f-41a5ddf067f2', 0, 'monthly', 'canceled', 1777553791, 1777553791),\n('6dfadcb5-2668-4a0c-951b-0ac26501526d', 'sub-272', 'published', '0fdfa888-e652-4a20-928d-71a8552cd329', 0, 'monthly', 'active', 1778418764, 1778418764),\n('0d057dd3-6632-4e5d-9a7a-918bcceda004', 'sub-273', 'published', 'b9336fbb-7d36-4d03-a04a-760764af9cbb', 0, 'monthly', 'active', 1778510077, 1778510077),\n('6aff767d-774e-4f93-a904-3f32f09f5fc6', 'sub-274', 'published', 'fce0a281-8965-4e69-8d8c-948ca3eb372f', 70, 'monthly', 'active', 1778621607, 1778621607),\n('0b86b221-2322-477a-a70f-97a05b22f369', 'sub-275', 'published', 'fce0a281-8965-4e69-8d8c-948ca3eb372f', 105, 'monthly', 'active', 1781354766, 1781354766),\n('7be9e4b9-9196-48be-abdb-563ab90ccc06', 'sub-276', 'published', 'cec661ac-98a2-4320-a17d-18b8ea18d629', 2277, 'annual', 'active', 1778365434, 1778365434),\n('b02a2fc2-8b92-4697-bdac-45cd711c4279', 'sub-277', 'published', 'cec661ac-98a2-4320-a17d-18b8ea18d629', 1954, 'monthly', 'active', 1781354766, 1781354766),\n('e8234536-331e-4cfc-872a-3a3a928a7872', 'sub-278', 'published', '605eb550-0080-4690-9c91-780c06c1546f', 0, 'monthly', 'active', 1777894112, 1777894112),\n('7f692150-5a2d-4703-a38a-3420686af2c4', 'sub-279', 'published', 'fcb834e9-0b45-496b-b7f2-e7f782955b3e', 0, 'monthly', 'active', 1778857981, 1778857981),\n('a2f30d14-61a3-461d-acbb-f6ae5edb8ef1', 'sub-280', 'published', '71554a94-2d91-4db1-91bd-c8c868cb7549', 139, 'monthly', 'active', 1778539776, 1778539776),\n('851e4881-b422-4a57-93d2-11fdd9824621', 'sub-281', 'published', '71554a94-2d91-4db1-91bd-c8c868cb7549', 92, 'monthly', 'active', 1781354766, 1781354766),\n('c1911de4-aef3-469e-a0ec-d70f301dd228', 'sub-282', 'published', '45d536ae-00b3-48a3-b3d3-6e11e54ebc00', 0, 'monthly', 'canceled', 1777841135, 1777841135),\n('9c2285f1-e38d-491e-b082-70bb92f57c7b', 'sub-283', 'published', '090691fb-e63b-48d3-81ad-b78eba2627d5', 0, 'monthly', 'active', 1778562420, 1778562420),\n('b5836d65-6187-4209-8273-236d362ad9e4', 'sub-284', 'published', '856e32e7-8c0b-492b-928e-d8c18a30d8fc', 137, 'monthly', 'active', 1777936415, 1777936415),\n('edcd4ed6-cbfe-4fca-baf8-60886e3bbd04', 'sub-285', 'published', '856e32e7-8c0b-492b-928e-d8c18a30d8fc', 117, 'annual', 'active', 1781354766, 1781354766),\n('a9ece572-ed2a-44e3-acb0-9b58295c96f5', 'sub-286', 'published', '57e1d0f7-7804-44ef-a302-d7db9a204301', 1247, 'annual', 'active', 1778862152, 1778862152),\n('e4c92752-4fe0-464f-8dcf-cb0c480870d0', 'sub-287', 'published', '57e1d0f7-7804-44ef-a302-d7db9a204301', 2008, 'annual', 'active', 1781354766, 1781354766),\n('7cc25c60-1463-4185-addc-86b038b55814', 'sub-288', 'published', 'a9ded7c4-81c8-4e6c-b471-9326837f676d', 0, 'monthly', 'active', 1778928354, 1778928354),\n('d5870a09-8ba7-4857-b200-f11c57d14006', 'sub-289', 'published', 'fb6ffa66-1a05-4ab7-ae3c-c4d5cfc9e818', 0, 'monthly', 'active', 1778212215, 1778212215),\n('f7be5cb3-0529-4393-be47-4f026ce97fa0', 'sub-290', 'published', 'fb6ffa66-1a05-4ab7-ae3c-c4d5cfc9e818', 0, 'monthly', 'active', 1781354766, 1781354766),\n('a0fb7259-5e14-43b8-baed-3be5173c1ee1', 'sub-291', 'published', '9e39720c-bfe7-4e6b-bece-6f14b711d14b', 62, 'annual', 'active', 1779110478, 1779110478),\n('c4c31f05-242a-4de8-bacf-2f5b8caf7483', 'sub-292', 'published', '9e39720c-bfe7-4e6b-bece-6f14b711d14b', 45, 'monthly', 'active', 1781354766, 1781354766),\n('3f27df73-d190-4e81-b835-e975699b3f7e', 'sub-293', 'published', 'd7373d4e-e90f-48a1-bbb0-f1183215da89', 151, 'monthly', 'active', 1779028059, 1779028059),\n('d946c899-3da8-4e76-a53e-9daaf312d281', 'sub-294', 'published', 'd7373d4e-e90f-48a1-bbb0-f1183215da89', 57, 'monthly', 'active', 1781354766, 1781354766),\n('900548b5-ca18-4970-8dec-4d1b8cd60619', 'sub-295', 'published', '11badde2-c2e5-4d10-8e1c-16ddcaf6e90a', 1739, 'monthly', 'active', 1779067420, 1779067420),\n('ed77f1b7-634d-41d3-bf92-a2d5c88f5933', 'sub-296', 'published', '11badde2-c2e5-4d10-8e1c-16ddcaf6e90a', 1667, 'monthly', 'active', 1781354766, 1781354766),\n('d3da2444-4652-434c-b31f-16b1f8885acb', 'sub-297', 'published', '9ac099ea-57a7-49bc-ae25-b39213e7f6d8', 111, 'monthly', 'active', 1778208558, 1778208558),\n('9dc5015f-7bcc-410b-b1be-6e8c7efd934e', 'sub-298', 'published', '9ac099ea-57a7-49bc-ae25-b39213e7f6d8', 66, 'monthly', 'past_due', 1781354766, 1781354766),\n('27ca6f60-6256-47ee-9f40-090ecdab824b', 'sub-299', 'published', '335c0ba5-8120-461b-a2fe-e1d476a366a7', 0, 'annual', 'active', 1778324842, 1778324842),\n('83da1b3f-cc3b-4d40-bdc0-2b77b4e9ac8f', 'sub-300', 'published', 'fcf30b55-9cbf-4852-b8ab-3d55a7a569ab', 60, 'monthly', 'active', 1779128964, 1779128964),\n('9b9ef3c8-9a5e-40fa-843c-58507e527848', 'sub-301', 'published', '30f3dcfd-6c71-43ba-9bf0-b7b2218fb48e', 129, 'monthly', 'active', 1778708771, 1778708771),\n('242c743b-9590-4f0b-b5bc-cebadaa6126e', 'sub-302', 'published', '2cf4de53-f29a-42c2-ac89-562b376aec9c', 0, 'annual', 'active', 1778846601, 1778846601),\n('4e3ddd5a-c91c-40a1-85e5-a70e95710d85', 'sub-303', 'published', '2cf4de53-f29a-42c2-ac89-562b376aec9c', 0, 'monthly', 'active', 1781354766, 1781354766),\n('d9c907d5-137b-440d-a6fe-bc3d83c676e7', 'sub-304', 'published', '4e34af73-80b0-45ca-9137-098494ee9300', 937, 'annual', 'canceled', 1779363797, 1779363797),\n('3356da44-ed48-4d6e-bd6c-a78b37758ed0', 'sub-305', 'published', '721c6a5a-bb70-49a8-ba3c-ab0ab878eb43', 44, 'monthly', 'active', 1778484194, 1778484194),\n('f3069b9f-52e4-4c1e-be71-06d9c2138e64', 'sub-306', 'published', '9f60c14e-ca36-4278-9b66-b034a2b89023', 83, 'annual', 'active', 1779368451, 1779368451),\n('5e0990a7-09e7-4759-8437-fc1f79be0970', 'sub-307', 'published', '903b39b6-4d7c-47e4-b9ba-f1cf6b0a879a', 0, 'monthly', 'active', 1779388082, 1779388082),\n('78ebfb89-a120-42b2-a242-7f784fcdc2fb', 'sub-308', 'published', '7268bd44-436c-4af9-b9f0-4abcc755ad1b', 172, 'monthly', 'active', 1779550667, 1779550667),\n('b41b6867-939e-4f3e-aefa-14bbe37ca32b', 'sub-309', 'published', '7268bd44-436c-4af9-b9f0-4abcc755ad1b', 61, 'monthly', 'active', 1781354766, 1781354766),\n('8f0b9ba4-fdf1-4601-896e-adae28adc891', 'sub-310', 'published', 'c523ad34-cff9-4f7b-826f-9f71bcd05c16', 852, 'annual', 'active', 1778370016, 1778370016),\n('3cfa2d0b-2146-464d-8e54-8957a7f50ff4', 'sub-311', 'published', 'c523ad34-cff9-4f7b-826f-9f71bcd05c16', 1174, 'monthly', 'active', 1781354766, 1781354766),\n('b53b6261-0303-4c4a-a375-f4e6c7ec479f', 'sub-312', 'published', '1ea5cc77-b2e2-47e2-9218-c6f86df9988f', 111, 'monthly', 'active', 1779188560, 1779188560),\n('6cd9728e-3f80-4b38-a1ec-5f7d0f72771d', 'sub-313', 'published', '1ea5cc77-b2e2-47e2-9218-c6f86df9988f', 169, 'monthly', 'active', 1781354766, 1781354766),\n('8fcad762-7cc0-4da1-8b61-7b7c023275eb', 'sub-314', 'published', 'f5ad8dae-34b0-44a2-b267-19a9f4b4da7f', 179, 'annual', 'active', 1779081778, 1779081778),\n('79b91260-907d-427d-b675-5e0e1c54e229', 'sub-315', 'published', 'f5ad8dae-34b0-44a2-b267-19a9f4b4da7f', 137, 'annual', 'active', 1781354766, 1781354766),\n('b187a36b-6fbe-43fd-9bb5-3452ab80cf39', 'sub-316', 'published', '7526282f-0bdc-4e47-97cb-90aa48c4fcf6', 2194, 'monthly', 'active', 1778688689, 1778688689),\n('f6ded7c3-9068-4015-bd27-6514585aca3d', 'sub-317', 'published', '7526282f-0bdc-4e47-97cb-90aa48c4fcf6', 603, 'monthly', 'active', 1781354766, 1781354766),\n('984e983c-e9ed-4df0-96ac-4acb2e7c3a9d', 'sub-318', 'published', 'ae90662a-267c-4bd4-ad19-3d22722f0043', 0, 'annual', 'active', 1779537305, 1779537305),\n('853aa813-a800-4180-98b0-a33d50543752', 'sub-319', 'published', 'ae90662a-267c-4bd4-ad19-3d22722f0043', 0, 'monthly', 'active', 1781354766, 1781354766),\n('47004741-3e67-459f-b681-4e04a70126a6', 'sub-320', 'published', '7c9d28db-2601-41aa-8c6f-34310c4a0274', 67, 'monthly', 'canceled', 1779187009, 1779187009),\n('d9baf972-746a-4e9c-a332-68253d2ebeb7', 'sub-321', 'published', '334359e1-2285-4f11-9fe0-f2768c210afd', 2210, 'monthly', 'active', 1778696925, 1778696925),\n('ab7e8a5f-a73b-4e38-9cdb-d90dcde5363d', 'sub-322', 'published', '334359e1-2285-4f11-9fe0-f2768c210afd', 1260, 'monthly', 'active', 1781354766, 1781354766),\n('2f8a714d-f7b5-498b-9f96-53d500b1056d', 'sub-323', 'published', '57e7f372-b870-423e-a41c-a20b7cd31868', 1064, 'monthly', 'active', 1779792563, 1779792563),\n('cf324c32-9220-49d4-99c8-a14b756317ca', 'sub-324', 'published', '57e7f372-b870-423e-a41c-a20b7cd31868', 944, 'monthly', 'active', 1781354766, 1781354766),\n('58e251ae-fd80-4ac7-a56e-b97f75ce4e86', 'sub-325', 'published', 'c6dca0d1-16b3-44ac-b713-0addb25d2e77', 0, 'annual', 'active', 1779701091, 1779701091),\n('b0524cd6-aea4-4eaf-97ff-1ea3c2854459', 'sub-326', 'published', '1a00eaf9-fba9-4cc7-bb41-6b3b837bf23b', 2207, 'monthly', 'active', 1779681550, 1779681550),\n('efe25329-d272-486a-b58a-b0ab41da6a47', 'sub-327', 'published', '19170025-a919-454a-a805-1b55f819b3ec', 0, 'annual', 'active', 1779086549, 1779086549),\n('d11efe29-a337-4436-bb57-8053674165bd', 'sub-328', 'published', '19170025-a919-454a-a805-1b55f819b3ec', 0, 'annual', 'active', 1781354766, 1781354766),\n('8de7f74d-df22-4e35-be34-d95709b5db35', 'sub-329', 'published', 'f6401cdd-c762-46d1-bcaa-46ed4775985b', 555, 'monthly', 'active', 1778978005, 1778978005),\n('d3b08904-d1a5-41d5-b5f3-09b92a4b59b9', 'sub-330', 'published', 'f6401cdd-c762-46d1-bcaa-46ed4775985b', 1659, 'annual', 'active', 1781354766, 1781354766),\n('2d123d11-8f62-42bd-9998-78726de3cb51', 'sub-331', 'published', '5757c7bc-0785-4535-ab94-fb3f4235f1a3', 0, 'monthly', 'active', 1779184683, 1779184683),\n('aff26b94-0c3a-4236-98aa-2cd61a979a12', 'sub-332', 'published', '5757c7bc-0785-4535-ab94-fb3f4235f1a3', 0, 'monthly', 'active', 1781354766, 1781354766),\n('dd531e7c-f584-4929-9079-5325e38e0b16', 'sub-333', 'published', '6ab05f45-33c5-4208-8ee2-ba349c55e71f', 58, 'monthly', 'active', 1779676855, 1779676855),\n('3818f85b-a790-4356-a189-8a12c40ae493', 'sub-334', 'published', '28304a6a-a77d-44ad-8ed7-d93ea1320a2c', 152, 'monthly', 'active', 1779330176, 1779330176),\n('d5ee4f2d-068a-4745-a1da-49d6362fd464', 'sub-335', 'published', '1e027fc8-0b9b-4591-a3f8-d80ddfa41c0e', 0, 'monthly', 'active', 1779753172, 1779753172),\n('9fb8a946-5d55-4c2f-9f5a-481151e79810', 'sub-336', 'published', 'db1419c7-1e88-4281-8567-3a5cad8b725a', 871, 'monthly', 'active', 1779842348, 1779842348),\n('9b2b44da-e481-4891-83fb-cf225e7d60f3', 'sub-337', 'published', 'db1419c7-1e88-4281-8567-3a5cad8b725a', 609, 'monthly', 'past_due', 1781354766, 1781354766),\n('4ab4716f-4f65-4111-a879-8bb5529a5982', 'sub-338', 'published', '23b44a43-0a86-4dfb-81a3-272c2a69f293', 45, 'monthly', 'canceled', 1779349621, 1779349621),\n('7f8f5cbd-7701-410e-b370-832b19ef02ac', 'sub-339', 'published', '23b44a43-0a86-4dfb-81a3-272c2a69f293', 117, 'monthly', 'canceled', 1781354766, 1781354766),\n('c6f8f6bc-8342-44b2-8851-8343e4955b40', 'sub-340', 'published', 'fc16041f-689c-4298-81ac-022a78aed139', 597, 'monthly', 'canceled', 1780104492, 1780104492),\n('1595d3c6-60de-4dd9-9f13-5b7666413f44', 'sub-341', 'published', '342f593a-f285-4881-bdd7-d2feb03e16d2', 960, 'monthly', 'active', 1779896698, 1779896698),\n('8f17111c-7c8a-451d-8cb1-3d2560816c41', 'sub-342', 'published', '9a1e645c-d5fe-4f64-94cd-4ce706e47f29', 79, 'annual', 'active', 1780290520, 1780290520),\n('ada9cd79-8bf4-4b5a-959c-1bd4dd4ed904', 'sub-343', 'published', '9a1e645c-d5fe-4f64-94cd-4ce706e47f29', 139, 'monthly', 'active', 1781354766, 1781354766),\n('1a3d9bd8-4dc5-446a-82cb-59de8163b219', 'sub-344', 'published', '3f5abab4-f655-4245-819f-92934a4f90c4', 0, 'monthly', 'active', 1779337739, 1779337739),\n('4ac4241c-fd67-40bd-9a42-86493f28533c', 'sub-345', 'published', '3f5abab4-f655-4245-819f-92934a4f90c4', 0, 'monthly', 'active', 1781354766, 1781354766),\n('130b6143-05c3-41ac-a560-4a72410db30b', 'sub-346', 'published', '70b30c50-20c4-47d1-94a3-7fa057728173', 0, 'monthly', 'active', 1779915217, 1779915217),\n('b7ff723f-2a77-46ea-896b-4deab34db6ef', 'sub-347', 'published', '3352b69d-6ac9-4629-a442-baebd5957e0a', 1068, 'monthly', 'active', 1779383459, 1779383459),\n('9298ed08-ea75-4fac-a952-2808a9745b70', 'sub-348', 'published', '7ed1e417-7c74-4039-844c-06ca224c4be6', 0, 'monthly', 'active', 1779452863, 1779452863),\n('c3e98e83-9480-452c-9bf7-25f0e5f9fc45', 'sub-349', 'published', '6c1b900d-a174-4076-bc1a-a3906b3ae9f0', 0, 'monthly', 'active', 1779962960, 1779962960),\n('98dd2f66-29ef-4a17-a206-9803753d739d', 'sub-350', 'published', '3a1a6958-c9c3-4ed4-ae01-59ce9d67cb07', 0, 'annual', 'active', 1780053846, 1780053846),\n('ade70117-aec3-4745-bf3c-24fff6e31c91', 'sub-351', 'published', '3a1a6958-c9c3-4ed4-ae01-59ce9d67cb07', 0, 'monthly', 'active', 1781354766, 1781354766),\n('b4652849-a0dc-4572-a031-4900eb99ff9a', 'sub-352', 'published', 'ecf85ee6-c806-40c6-97e4-541c19736a2b', 102, 'monthly', 'active', 1779538700, 1779538700),\n('4413ed41-5403-4fb9-a95a-b36a63510f33', 'sub-353', 'published', 'ecf85ee6-c806-40c6-97e4-541c19736a2b', 76, 'monthly', 'active', 1781354766, 1781354766),\n('aa1a9ac5-97d9-4e47-8d15-d3120eb83063', 'sub-354', 'published', '76170140-2d9b-476c-a364-a491ced389f5', 0, 'monthly', 'active', 1780156721, 1780156721),\n('466177b0-5222-42ce-8e61-cfa6b85d6270', 'sub-355', 'published', '76170140-2d9b-476c-a364-a491ced389f5', 0, 'annual', 'active', 1781354766, 1781354766),\n('c9e9d889-3b94-4b98-acea-cda4523e664c', 'sub-356', 'published', '3514ad4f-9b20-4a5d-bfef-fa84591b8937', 0, 'annual', 'active', 1780177439, 1780177439),\n('3fc20a6d-3516-4d6f-880d-49c773c22c9f', 'sub-357', 'published', '3514ad4f-9b20-4a5d-bfef-fa84591b8937', 0, 'monthly', 'active', 1781354766, 1781354766),\n('83258da1-c56e-49b3-814a-71525ffcb6c5', 'sub-358', 'published', '52eeff6a-2726-42ef-a6a8-65c5f04e27ec', 36, 'monthly', 'active', 1779866370, 1779866370),\n('d444b630-1eef-438f-b492-fe0531c12cc3', 'sub-359', 'published', '52eeff6a-2726-42ef-a6a8-65c5f04e27ec', 102, 'monthly', 'active', 1781354766, 1781354766),\n('84bca615-a85f-4da4-b817-e42ad692eedb', 'sub-360', 'published', 'f2abafa4-c0c5-428b-b393-9b382f5aa642', 0, 'monthly', 'active', 1780629992, 1780629992),\n('9556f766-1410-4336-b46b-c7aed24b14a2', 'sub-361', 'published', '54e546c7-7738-416e-a546-69f8f6a5601a', 0, 'monthly', 'active', 1779850596, 1779850596),\n('8e280ed2-4a02-457c-a92a-9a406c52a740', 'sub-362', 'published', 'e15ef4ad-6126-49c5-aa76-9de2e14dc101', 0, 'annual', 'active', 1780427851, 1780427851),\n('34e6d4bd-1d1b-49bb-b263-85823dcdd0ea', 'sub-363', 'published', 'e15ef4ad-6126-49c5-aa76-9de2e14dc101', 0, 'monthly', 'active', 1781354766, 1781354766),\n('1a3602c2-bb8d-4cc9-9ddb-0634c06d3cac', 'sub-364', 'published', 'a6b9e155-7fdf-467e-87a6-96c61e504282', 0, 'monthly', 'canceled', 1779582504, 1779582504),\n('471c3023-562d-449e-a214-6e8b7871d2bb', 'sub-365', 'published', 'e2359357-e263-4c30-986c-53b32311e0ff', 0, 'monthly', 'active', 1780144731, 1780144731),\n('d9551fcb-df95-4923-a8bc-a973801a3449', 'sub-366', 'published', '2c824e8d-cbec-4b76-a6e7-632e6313389b', 0, 'annual', 'canceled', 1779762005, 1779762005),\n('7c1bec58-de08-4cdc-a39a-7712923a50ff', 'sub-367', 'published', '580c89a6-53d9-476d-a005-02258f438d34', 1465, 'annual', 'past_due', 1780743937, 1780743937),\n('990a8c0f-c4ff-4b4c-9e2a-6d101e012629', 'sub-368', 'published', 'b3498d6e-f46d-4242-ade3-6db7e2e989ef', 0, 'monthly', 'active', 1780421664, 1780421664),\n('00d868c6-8073-4d01-b877-b16f9edaed24', 'sub-369', 'published', 'b3498d6e-f46d-4242-ade3-6db7e2e989ef', 0, 'annual', 'active', 1781354766, 1781354766),\n('1a4e2cc9-c359-410a-9657-9f26f0111aa8', 'sub-370', 'published', '48dd30f1-5ab6-464a-89bc-d8a906f0bcef', 0, 'monthly', 'active', 1780470977, 1780470977),\n('9b072d6d-4af4-4159-8d17-2f32f4fcb54a', 'sub-371', 'published', '48dd30f1-5ab6-464a-89bc-d8a906f0bcef', 0, 'monthly', 'past_due', 1781354766, 1781354766),\n('0987f69e-c0f2-4820-9312-87346b0b39b4', 'sub-372', 'published', '8b4f77eb-a6b2-45b5-801d-46229de02346', 163, 'monthly', 'active', 1780226784, 1780226784),\n('cf8fe546-7e3f-40ed-8673-8b24fc222ba5', 'sub-373', 'published', '8b4f77eb-a6b2-45b5-801d-46229de02346', 135, 'annual', 'active', 1781354766, 1781354766),\n('3f597186-7c49-463a-b9e9-79cc52e41482', 'sub-374', 'published', '0eaab274-ba25-47dd-a361-9dab73c23e8b', 47, 'monthly', 'active', 1780204838, 1780204838),\n('d34f1772-57a3-4679-ae3d-2762806bfa3d', 'sub-375', 'published', '0eaab274-ba25-47dd-a361-9dab73c23e8b', 53, 'monthly', 'active', 1781354766, 1781354766),\n('0a78aa94-9ec0-4cd2-94d7-b5a2fcc3e175', 'sub-376', 'published', '8a023fd4-1b8f-48d3-9c7b-dba5cf0c1874', 0, 'monthly', 'active', 1780528025, 1780528025),\n('7e5f47a4-0701-4441-907f-8ff65242e896', 'sub-377', 'published', '8a023fd4-1b8f-48d3-9c7b-dba5cf0c1874', 0, 'monthly', 'active', 1781354766, 1781354766),\n('5dfad99b-f1f7-4bf9-930b-863b70eae578', 'sub-378', 'published', '5ddae246-3972-4019-b7e8-c5361c6db2a8', 2213, 'monthly', 'active', 1780910939, 1780910939),\n('9af500f5-4af1-4fa6-a5f3-e7af76f8ee98', 'sub-379', 'published', 'c41d8e85-f7c1-4fff-b0e7-ca5530149815', 1598, 'monthly', 'active', 1780787343, 1780787343),\n('3a58e0d2-0310-4293-998b-73eeb720b92e', 'sub-380', 'published', 'c41d8e85-f7c1-4fff-b0e7-ca5530149815', 1292, 'monthly', 'active', 1781354766, 1781354766),\n('5ac8c7f1-a019-4295-86fd-481003659db0', 'sub-381', 'published', '8d06ac08-d212-4915-a124-bdc218d10495', 2399, 'monthly', 'canceled', 1780238813, 1780238813),\n('904512ea-b220-4497-a150-78c4909aa5a5', 'sub-382', 'published', '8d06ac08-d212-4915-a124-bdc218d10495', 1219, 'monthly', 'canceled', 1781354766, 1781354766),\n('5b8f4f7f-467e-44d9-a4c3-03ae7cd3287a', 'sub-383', 'published', '52422cc0-fe3e-4c0c-bc53-cf0fd068c259', 71, 'annual', 'active', 1780914262, 1780914262),\n('d4c0890e-39c5-45a4-adf7-65be9a91796d', 'sub-384', 'published', '52422cc0-fe3e-4c0c-bc53-cf0fd068c259', 153, 'monthly', 'active', 1781354766, 1781354766),\n('7fdc7186-32c3-4590-b1fe-3861506786f4', 'sub-385', 'published', 'cebe13a4-0289-41c1-b1f8-f2a77837263e', 0, 'monthly', 'past_due', 1780636484, 1780636484),\n('1fc65397-0fc6-4794-b9bc-be1e07329079', 'sub-386', 'published', 'e909e6b7-34a9-44ff-8be2-4c6b65fb9382', 103, 'annual', 'active', 1780525660, 1780525660),\n('20992d52-5b09-4e8e-b554-86edb7ed04da', 'sub-387', 'published', 'e909e6b7-34a9-44ff-8be2-4c6b65fb9382', 65, 'annual', 'active', 1781354766, 1781354766),\n('cdc50b88-9f73-4efd-bad6-e8b0fd211759', 'sub-388', 'published', 'c713cc13-99e4-425f-89e8-a5edb44a5668', 169, 'annual', 'active', 1780983689, 1780983689),\n('81c7acc5-47bd-4542-9686-762d0b6af9a3', 'sub-389', 'published', '2e193b87-43a6-4054-9793-44112e810d81', 2271, 'monthly', 'active', 1780931405, 1780931405),\n('8e4624c1-1c4c-404a-b085-afd5bf0ef8fa', 'sub-390', 'published', '2e193b87-43a6-4054-9793-44112e810d81', 1398, 'annual', 'active', 1781354766, 1781354766),\n('b409db0a-6b51-4ff1-8e39-2f257cf9ca67', 'sub-391', 'published', '5055d5be-b0c2-4894-88f2-0cc61902f094', 126, 'monthly', 'active', 1780958572, 1780958572),\n('b65e62f0-958f-468b-88dd-48306559e9f6', 'sub-392', 'published', '0a872d78-8d55-4b89-af7a-f6cee03527b7', 86, 'monthly', 'canceled', 1781244690, 1781244690),\n('555e63de-37bd-47a4-9c98-d373a3a9308e', 'sub-393', 'published', '0801e9cf-e294-4615-874f-bde119498c65', 0, 'annual', 'active', 1780201952, 1780201952),\n('aa2d678c-ca1e-4650-a25c-531feed50ca0', 'sub-394', 'published', '42231dbe-86a7-4469-8ab2-328a178a0a6b', 0, 'monthly', 'active', 1780083456, 1780083456),\n('d35fd4f3-cb2a-4f47-866a-fae719bb5711', 'sub-395', 'published', '42231dbe-86a7-4469-8ab2-328a178a0a6b', 0, 'annual', 'active', 1781354766, 1781354766),\n('a06c548c-6dec-45b2-9c09-fb1501b9075c', 'sub-396', 'published', '4a68d784-bfe9-4862-a30b-7dde67760b93', 1300, 'monthly', 'active', 1780719587, 1780719587),\n('b92e966b-53d1-4735-81aa-7d3b5c1b26f5', 'sub-397', 'published', '00d0f4cf-684b-4b0b-b107-402bd8f09c90', 0, 'monthly', 'active', 1780799344, 1780799344),\n('370503b9-96c5-4a18-8edf-83adf059c880', 'sub-398', 'published', '69873194-8eb0-49c2-9758-7d9c992ce068', 0, 'annual', 'canceled', 1780383767, 1780383767),\n('a92fe557-7faf-4e70-8073-0210b255f827', 'sub-399', 'published', '27fc18d7-2bde-4415-b411-6fa98ddfda49', 1321, 'monthly', 'active', 1781354766, 1781354766),\n('a7442fd7-1a93-4b3c-99a6-420f0093912a', 'sub-400', 'published', '9c9fd18d-f358-4097-9bac-fab005ee73c8', 152, 'monthly', 'past_due', 1780852618, 1780852618),\n('609af9d0-f561-4b53-a4a7-cda42e482c21', 'sub-401', 'published', '9c9fd18d-f358-4097-9bac-fab005ee73c8', 66, 'monthly', 'active', 1781354766, 1781354766),\n('6d78bc9b-b9b9-4334-b59d-fbf333057167', 'sub-402', 'published', '520ac195-253b-4fa7-8c97-27ef350d2436', 37, 'monthly', 'active', 1781291509, 1781291509),\n('fe7f3cdb-eb77-48d0-bfd5-be435adb33bd', 'sub-403', 'published', '520ac195-253b-4fa7-8c97-27ef350d2436', 131, 'annual', 'active', 1781354766, 1781354766),\n('dad4cc7e-9e53-41a4-a91f-cc36d5ed6d8d', 'sub-404', 'published', 'fa6d72cc-7276-4f02-8842-8c3516d380df', 0, 'monthly', 'active', 1781154248, 1781154248),\n('f1a73426-8c37-4efa-8d3d-fdc29a74e149', 'sub-405', 'published', 'fa6d72cc-7276-4f02-8842-8c3516d380df', 0, 'monthly', 'active', 1781354766, 1781354766),\n('d669833c-ca0e-4b94-85dc-03f9e96f5853', 'sub-406', 'published', '74c75480-3716-419d-84f5-533f56b363fd', 131, 'annual', 'active', 1780680030, 1780680030),\n('e2078318-c9a5-4af3-bdb5-c8bfbe442b7d', 'sub-407', 'published', 'f2c52e25-ee59-4fb8-9881-12da1003c980', 1417, 'monthly', 'canceled', 1781354766, 1781354766),\n('24c63932-28e9-4e06-b09e-b9b21bd5eb57', 'sub-408', 'published', 'f2c52e25-ee59-4fb8-9881-12da1003c980', 1016, 'monthly', 'canceled', 1781354766, 1781354766),\n('811944e7-4d05-4392-abe4-9dd086f6249e', 'sub-409', 'published', 'ea9dfab6-7d80-41bd-a377-87531238cb64', 0, 'monthly', 'active', 1781354766, 1781354766),\n('f5d2c47f-1d96-4c5a-8908-577b8c48eadc', 'sub-410', 'published', '0db86090-ba43-4559-adc9-cb4065f70a95', 139, 'monthly', 'active', 1780831447, 1780831447),\n('40fcec78-a305-4c10-b183-29432ed4aef7', 'sub-411', 'published', '3b5a78c6-ed9e-442e-b67a-01e91089df08', 127, 'monthly', 'active', 1781198526, 1781198526),\n('642815cf-071b-4cf3-b0ad-2362a26921a9', 'sub-412', 'published', '7671f12c-ed13-477f-a61f-04eebb647289', 1274, 'monthly', 'past_due', 1781354766, 1781354766),\n('d7501642-c25f-487c-a4e8-cc11416e76d8', 'sub-413', 'published', 'c5ae7375-0cc2-4970-9f6b-298803ba596c', 152, 'monthly', 'active', 1780554354, 1780554354),\n('feb4757a-a79a-4d5b-b9ec-675251f613ad', 'sub-414', 'published', 'c5ae7375-0cc2-4970-9f6b-298803ba596c', 38, 'annual', 'active', 1781354766, 1781354766),\n('e4b0065f-9609-4ac1-8280-6bb60dacbf39', 'sub-415', 'published', '7d97ce37-6f6f-44be-b35b-f796a69378ff', 0, 'annual', 'active', 1781121466, 1781121466),\n('65677103-ad9e-4afc-855c-befe19fb9661', 'sub-416', 'published', '1d64f038-fcb3-411a-a15d-e24548a8a77d', 131, 'annual', 'active', 1781354766, 1781354766),\n('22e28059-b5d4-44d3-b923-52fe991c18a6', 'sub-417', 'published', '1d64f038-fcb3-411a-a15d-e24548a8a77d', 141, 'monthly', 'active', 1781354766, 1781354766),\n('1e21c979-c9cc-4ef1-85f4-bbc6be2022ff', 'sub-418', 'published', '36bf3765-5c3c-4ed9-bd18-fb9909a6254f', 0, 'monthly', 'active', 1781354766, 1781354766),\n('6514d510-fbe7-4358-96f8-236b65027007', 'sub-419', 'published', 'f7a5e209-14f4-4df0-b8e3-992c459c0960', 53, 'monthly', 'active', 1781056757, 1781056757),\n('1ae9e68a-770b-47b1-81d0-86b3812a8b53', 'sub-420', 'published', 'f7a5e209-14f4-4df0-b8e3-992c459c0960', 98, 'monthly', 'active', 1781354766, 1781354766),\n('d55a51b6-a3dd-4f54-805d-7284f4356536', 'sub-421', 'published', '3582882b-9027-4dbb-a354-63bf6a9c6632', 0, 'monthly', 'active', 1781354766, 1781354766),\n('05e6911b-fb73-481c-b7e7-775f259858d1', 'sub-422', 'published', '3582882b-9027-4dbb-a354-63bf6a9c6632', 0, 'monthly', 'active', 1781354766, 1781354766),\n('1ef7ed65-cc48-4f68-8e8e-cefab0beb976', 'sub-423', 'published', '46863df1-7ab5-467e-b6cc-f97f3eb6f78f', 0, 'monthly', 'active', 1780813769, 1780813769),\n('987cdab8-522c-48b9-9b60-f55e4a766110', 'sub-424', 'published', '46863df1-7ab5-467e-b6cc-f97f3eb6f78f', 0, 'annual', 'active', 1781354766, 1781354766),\n('43752f60-f622-4763-bfed-567b94ac3477', 'sub-425', 'published', '6b2cbef2-5c6c-4124-b1cf-f15a8bf48cf1', 2217, 'monthly', 'active', 1781326452, 1781326452),\n('9ffa17ae-32b5-4937-91b1-50e2135403ac', 'sub-426', 'published', 'f2a383f8-1247-4ad1-bc48-09f88c301c25', 2024, 'monthly', 'past_due', 1781208274, 1781208274),\n('858c2e5d-1c0c-46c3-a519-290f2ad7ffb5', 'sub-427', 'published', 'f2a383f8-1247-4ad1-bc48-09f88c301c25', 2372, 'monthly', 'past_due', 1781354766, 1781354766),\n('009a0045-c626-40b3-a227-79d7f95e2b36', 'sub-428', 'published', 'b5e04f32-5b53-4f94-aad8-8c5ee885a2dd', 0, 'annual', 'active', 1780980654, 1780980654),\n('b5c7034e-8bb9-4394-b635-8483d98feb2c', 'sub-429', 'published', 'b5e04f32-5b53-4f94-aad8-8c5ee885a2dd', 0, 'monthly', 'active', 1781354766, 1781354766),\n('fd02514c-4b9c-488d-96a7-1b8f8548e095', 'sub-430', 'published', '3a752e5b-99f5-4ce2-8baf-10d054194bae', 165, 'monthly', 'active', 1781036451, 1781036451),\n('7a6054c2-1629-4edc-985d-4ae3310d0c98', 'sub-431', 'published', 'e198eb2b-3e65-4483-99b5-62b2c9c29748', 140, 'monthly', 'active', 1781341892, 1781341892),\n('292abeab-e8a0-4bcc-a1ba-f666bdfaf91b', 'sub-432', 'published', 'e198eb2b-3e65-4483-99b5-62b2c9c29748', 76, 'annual', 'active', 1781354766, 1781354766),\n('e07aea6f-dc0a-4846-836c-c51ec7ef49fe', 'sub-433', 'published', '8dc25e59-7339-4cb3-aea6-aa0374f030be', 67, 'annual', 'active', 1781354766, 1781354766),\n('f2bccf83-4c57-46d5-8b2d-8d9075729c01', 'sub-434', 'published', '8dc25e59-7339-4cb3-aea6-aa0374f030be', 62, 'monthly', 'active', 1781354766, 1781354766),\n('f9c61163-b7df-40a1-b24d-619de8462dea', 'sub-435', 'published', '9a936c42-46b4-4b59-9348-5f5cc1cbaa5e', 0, 'annual', 'past_due', 1781354766, 1781354766),\n('2a56effd-0ce0-47cb-ad31-cef20e930e9e', 'sub-436', 'published', 'bd0563ab-2966-447b-aefb-53b410a34c37', 149, 'annual', 'canceled', 1781354766, 1781354766),\n('c54c88ef-7122-48cd-aaa1-b82bf735162e', 'sub-437', 'published', '261f546f-a936-44e5-bcbb-d552dbe11b7d', 0, 'monthly', 'active', 1781118516, 1781118516),\n('8edb5f76-b572-49b3-bc77-8471dca02d89', 'sub-438', 'published', '261f546f-a936-44e5-bcbb-d552dbe11b7d', 0, 'monthly', 'past_due', 1781354766, 1781354766),\n('9562960f-2033-4718-9e4c-f068c4c985ef', 'sub-439', 'published', '67b6a388-ab64-45b5-b61a-f6ede8ca36f7', 0, 'monthly', 'active', 1781354766, 1781354766),\n('2babfefc-a742-4f8c-98d5-61324cee7726', 'sub-440', 'published', '82d5f9ae-edfe-4a90-8b30-986fc4428672', 62, 'monthly', 'active', 1781354766, 1781354766),\n('cba7dfdd-aa6c-4660-8a2d-8f83e7e55711', 'sub-441', 'published', '82d5f9ae-edfe-4a90-8b30-986fc4428672', 52, 'annual', 'active', 1781354766, 1781354766),\n('59a709b4-6642-4e18-b306-6c69cbf04b78', 'sub-442', 'published', '825221ff-ada0-4f75-a541-3ecd19747aca', 173, 'monthly', 'active', 1781354766, 1781354766),\n('3811abdd-1f07-4d5c-b49e-7821ecfcd985', 'sub-443', 'published', '825221ff-ada0-4f75-a541-3ecd19747aca', 143, 'monthly', 'active', 1781354766, 1781354766),\n('7779c445-223b-4cd0-b4b0-fcd285a0a5e0', 'sub-444', 'published', '9f06bd03-e197-4709-bbe2-21b830ac6723', 0, 'monthly', 'active', 1781354766, 1781354766),\n('9a180bf2-2ad7-4652-b4bc-730b69f751b9', 'sub-445', 'published', 'c94729db-3fa5-48e0-8675-3658cd92e790', 0, 'monthly', 'canceled', 1781354766, 1781354766),\n('2378c2b0-a8c9-4237-8509-05264527dd34', 'sub-446', 'published', '7ab9ec6f-615a-4a43-a988-49e5bd5d74ca', 0, 'monthly', 'active', 1781354766, 1781354766),\n('8e1f88d9-3190-42d9-9a65-3bece37eacaa', 'sub-447', 'published', '7ab9ec6f-615a-4a43-a988-49e5bd5d74ca', 0, 'monthly', 'active', 1781354766, 1781354766),\n('b872c28b-ecda-4c76-a0df-117692a4e8f3', 'sub-448', 'published', '662c8831-fb08-46ad-9afd-d7cf800558c2', 0, 'monthly', 'active', 1781354766, 1781354766),\n('f6dc4c9d-75b6-4d52-ad42-d45d30ed3247', 'sub-449', 'published', 'e21360e3-dec8-4b3c-9702-4819b2993d03', 0, 'monthly', 'active', 1781354766, 1781354766),\n('fef8ada6-8472-44c4-a81f-5700681f4f71', 'sub-450', 'published', 'e21360e3-dec8-4b3c-9702-4819b2993d03', 0, 'monthly', 'active', 1781354766, 1781354766),\n('56202955-723e-47d2-b450-f67704888d4d', 'sub-451', 'published', '11712799-22fa-4ca0-8574-877c2d0f3c8d', 0, 'monthly', 'active', 1781354766, 1781354766),\n('836c91c1-27ed-4b1a-9daf-0b5b8f081f7c', 'sub-452', 'published', '11712799-22fa-4ca0-8574-877c2d0f3c8d', 0, 'monthly', 'active', 1781354766, 1781354766),\n('131ac141-20d8-4736-ae43-016755cb67fe', 'sub-453', 'published', 'b17022ff-ceed-48f0-841c-05af4ee7ba8e', 1880, 'monthly', 'active', 1781354766, 1781354766),\n('410fc537-772c-40ee-8aae-10777cda6500', 'sub-454', 'published', '627c6e5b-cda5-4947-a8d0-0d0f70b3a247', 0, 'monthly', 'active', 1781354766, 1781354766),\n('6eef7916-d4f9-4db0-b92b-73f6b25b571c', 'sub-455', 'published', '627c6e5b-cda5-4947-a8d0-0d0f70b3a247', 0, 'monthly', 'active', 1781354766, 1781354766),\n('cb1e3e6b-32eb-4fa3-ad99-0a809cbacbcf', 'sub-456', 'published', 'fd610eb0-f3d8-483b-ad78-256ef812c663', 75, 'monthly', 'active', 1781354766, 1781354766),\n('55348162-dcd4-4888-b45d-ebbb2c2df19b', 'sub-457', 'published', 'fd610eb0-f3d8-483b-ad78-256ef812c663', 161, 'monthly', 'active', 1781354766, 1781354766);\n\nINSERT OR IGNORE INTO content_ticket (id, slug, status, title, customer_id, priority, category, ticket_status, created_at, updated_at)\nVALUES\n('3ce3faa3-6779-49a6-9378-da35f73cd016', 'tkt-1', 'published', 'Le immagini caricate non vengono visualizzate', '18951e9d-8701-4b61-a359-899b7041218d', 'low', 'technical', 'closed', 1766006780, 1766006780),\n('499779db-4bca-4616-b546-530c31a917cc', 'tkt-2', 'published', 'Richiesta preventivo per multi-tenant', '7ab9ec6f-615a-4a43-a988-49e5bd5d74ca', 'high', 'sales', 'closed', 1766131875, 1766131875),\n('4bd92056-118e-4100-ba72-b5c0647ead65', 'tkt-3', 'published', 'Richiesta preventivo per multi-tenant', 'caadffc8-5bcc-4250-9fce-f0d27aedac14', 'high', 'sales', 'closed', 1766380447, 1766380447),\n('092c0ed1-1291-4fec-af37-b0020868e749', 'tkt-4', 'published', 'Interesse per migrazione da altro CMS', '45d536ae-00b3-48a3-b3d3-6e11e54ebc00', 'medium', 'sales', 'closed', 1766469738, 1766469738),\n('8880f44f-91c4-43f2-bd84-427703051c63', 'tkt-5', 'published', 'Richiesta supporto per integrazione SSO', '23b44a43-0a86-4dfb-81a3-272c2a69f293', 'high', 'technical', 'closed', 1766540841, 1766540841),\n('582eaad4-4baa-44ab-b1af-a85d2f428a13', 'tkt-6', 'published', 'Interesse per migrazione da altro CMS', '18951e9d-8701-4b61-a359-899b7041218d', 'medium', 'sales', 'closed', 1766634537, 1766634537),\n('cde39fb9-b90e-434e-9ff0-f33b78de6968', 'tkt-7', 'published', 'Aggiornamento dati di fatturazione aziendali', '36bf3765-5c3c-4ed9-bd18-fb9909a6254f', 'medium', 'billing', 'open', 1766672006, 1766672006),\n('6351a58c-09b1-4400-8552-eac383f434af', 'tkt-8', 'published', 'Importo addebitato non corrisponde al piano', 'c5410938-ba65-49f5-b102-ccc930ea478d', 'medium', 'billing', 'closed', 1766769266, 1766769266),\n('80d68738-bafa-42e4-a7cd-f4b3f2afbe6e', 'tkt-9', 'published', 'Informazioni su sconti per rinnovo annuale', '1a00eaf9-fba9-4cc7-bb41-6b3b837bf23b', 'low', 'sales', 'closed', 1766904693, 1766904693),\n('8072a80b-ae5e-4ac0-99ec-b33793c0c729', 'tkt-10', 'published', 'Richiesta demo per piano Enterprise', '4a68d784-bfe9-4862-a30b-7dde67760b93', 'low', 'sales', 'closed', 1767335202, 1767335202),\n('680e34b1-d108-4b93-aa2b-706f62af6f58', 'tkt-11', 'published', 'Timeout durante l''import massivo dei dati', 'a7534440-3e4a-4fd9-8165-5d90a4f5299f', 'medium', 'technical', 'closed', 1767540858, 1767540858),\n('6ea11233-5781-463b-90b3-9881a925f877', 'tkt-12', 'published', 'Richiesta rimborso per doppio addebito', '45d536ae-00b3-48a3-b3d3-6e11e54ebc00', 'medium', 'billing', 'closed', 1767655370, 1767655370),\n('03a6c1e2-07b3-4a21-b6dd-f3f11a650a9a', 'tkt-13', 'published', 'Le immagini caricate non vengono visualizzate', '0a6c8747-2324-4654-90af-80b985d4ed43', 'low', 'technical', 'closed', 1768114011, 1768114011),\n('a90a1eaa-ac0c-4283-9c36-b9b11333ddc8', 'tkt-14', 'published', 'Richiesta preventivo per multi-tenant', '39457a00-f6ae-4a76-8827-7247484d452d', 'low', 'sales', 'open', 1768270591, 1768270591),\n('a9417ac6-d58c-4dfc-afb9-0c45d217c037', 'tkt-15', 'published', 'Domanda su limiti utenti del piano Pro', '4d7d0ec0-430f-463e-8892-dff55f003e3c', 'medium', 'sales', 'closed', 1768322388, 1768322388),\n('88c16f36-eaf8-48d8-88aa-2338ba6dc7f5', 'tkt-16', 'published', 'Richiesta demo per piano Enterprise', 'ae90662a-267c-4bd4-ad19-3d22722f0043', 'low', 'sales', 'closed', 1768842030, 1768842030),\n('a3805955-2ac1-4ddf-8df3-ad199e504e23', 'tkt-17', 'published', 'Richiesta demo per piano Enterprise', '5881fb10-d95d-4252-8813-b265eb32ea8a', 'low', 'sales', 'closed', 1769154010, 1769154010),\n('956569db-c58a-4192-bfc9-45e793f9f4c5', 'tkt-18', 'published', 'Richiesta preventivo per multi-tenant', '9f60c14e-ca36-4278-9b66-b034a2b89023', 'medium', 'sales', 'open', 1769222760, 1769222760),\n('f5d1a6ea-2db8-4d6d-ab79-5747c89ec2ca', 'tkt-19', 'published', 'Richiesta contratto e fattura proforma', '1d64f038-fcb3-411a-a15d-e24548a8a77d', 'low', 'sales', 'closed', 1769349734, 1769349734),\n('c9612622-cf2d-48be-a9e6-07a4793df3c2', 'tkt-20', 'published', 'Fattura non ricevuta per questo mese', '08db9d21-5843-4662-86db-fbe2657b14bd', 'high', 'billing', 'open', 1769498104, 1769498104),\n('87a3a614-11fe-4882-afb7-380e90b33e06', 'tkt-21', 'published', 'Interesse per migrazione da altro CMS', 'f7a5e209-14f4-4df0-b8e3-992c459c0960', 'low', 'sales', 'closed', 1769783145, 1769783145),\n('c92c4af8-e50d-482d-94d5-7e2dc96456cf', 'tkt-22', 'published', 'Richiesta contratto e fattura proforma', '3514ad4f-9b20-4a5d-bfef-fa84591b8937', 'low', 'sales', 'closed', 1769941550, 1769941550),\n('b472594c-e8d9-4c3c-b5bf-062e5d2a468d', 'tkt-23', 'published', 'Richiesta contratto e fattura proforma', '19170025-a919-454a-a805-1b55f819b3ec', 'low', 'sales', 'closed', 1769995341, 1769995341),\n('907139e8-4ebc-4661-a895-514d838f361c', 'tkt-24', 'published', 'Interesse per migrazione da altro CMS', '35e79d15-ca97-4e93-bda8-0715f9d23e00', 'low', 'sales', 'closed', 1770043804, 1770043804),\n('390f21bb-8630-4582-8d71-84d6f4cfb832', 'tkt-25', 'published', 'Timeout durante l''import massivo dei dati', '3582882b-9027-4dbb-a354-63bf6a9c6632', 'medium', 'technical', 'closed', 1770181567, 1770181567),\n('8bbc0a88-d35c-4569-911a-79027c22f634', 'tkt-26', 'published', 'Domanda su limiti utenti del piano Pro', 'ecf85ee6-c806-40c6-97e4-541c19736a2b', 'medium', 'sales', 'in_progress', 1770346075, 1770346075),\n('993948bf-a78b-4a2e-8a75-032fa60a3ec3', 'tkt-27', 'published', 'Errore 500 durante il salvataggio dei contenuti', 'a45a4ade-a1fa-4ae6-9094-24177e412572', 'high', 'technical', 'open', 1770474209, 1770474209),\n('fa684422-54ed-49a5-a2a3-9ce26e070c13', 'tkt-28', 'published', 'Domanda su limiti utenti del piano Pro', 'ec9e8f9a-3333-4e9b-8f49-4ec0c07f891f', 'medium', 'sales', 'closed', 1770560046, 1770560046),\n('1f08cd33-ce33-4e90-bb3a-4c925bb4fa81', 'tkt-29', 'published', 'Importo addebitato non corrisponde al piano', 'c5ae7375-0cc2-4970-9f6b-298803ba596c', 'medium', 'billing', 'closed', 1770778043, 1770778043),\n('06fa4c34-3f43-49b3-b6c7-4857b408a5b6', 'tkt-30', 'published', 'Conferma scadenza rinnovo abbonamento', 'fba1abc3-dcdf-4b09-82b3-b54c3d4a1ff5', 'medium', 'billing', 'closed', 1770900022, 1770900022),\n('9474c72c-c41f-4c51-9082-abfceeaac23c', 'tkt-31', 'published', 'Timeout durante l''import massivo dei dati', '0eaab274-ba25-47dd-a361-9dab73c23e8b', 'low', 'technical', 'closed', 1771048214, 1771048214),\n('3b1e50c5-f7f1-4ea1-b428-443c4cd8ca2a', 'tkt-32', 'published', 'Problema di sincronizzazione con webhook', 'aadd47e5-af81-4efe-bc94-97c82d483290', 'high', 'technical', 'closed', 1771143585, 1771143585),\n('33582468-772c-4fb6-9112-f8067871baa3', 'tkt-33', 'published', 'Domanda su upgrade del piano e pro-rata', '6c1b900d-a174-4076-bc1a-a3906b3ae9f0', 'medium', 'billing', 'open', 1771230868, 1771230868),\n('5c82505c-1202-4fe9-bce5-f249ce7f02ab', 'tkt-34', 'published', 'Errore 500 durante il salvataggio dei contenuti', 'e21360e3-dec8-4b3c-9702-4819b2993d03', 'medium', 'technical', 'closed', 1771343598, 1771343598),\n('4fb4668a-2358-4602-a7f4-aeb4c52f9b61', 'tkt-35', 'published', 'Richiesta rimborso per doppio addebito', 'eebcc98c-1c55-49b7-82b3-e8c4431370bb', 'medium', 'billing', 'closed', 1771574601, 1771574601),\n('39dd371b-b1f2-44c9-9527-20cb993cfe1b', 'tkt-36', 'published', 'Domanda su limiti utenti del piano Pro', '71554a94-2d91-4db1-91bd-c8c868cb7549', 'medium', 'sales', 'closed', 1771606245, 1771606245),\n('6defd05e-62a1-4135-84de-c376c9460c32', 'tkt-37', 'published', 'Richiesta preventivo per multi-tenant', '14dc2ddb-0e56-4da3-b185-aee1c315120d', 'high', 'sales', 'open', 1771827551, 1771827551),\n('78fdc3b4-408d-41b0-ad7c-8b7eb6f38342', 'tkt-38', 'published', 'Domanda su upgrade del piano e pro-rata', '86bc8726-c3e6-4f3e-8e53-4a7276e9ea58', 'medium', 'billing', 'closed', 1771879856, 1771879856),\n('b229be14-3276-4f37-aa8f-042c9acd6cec', 'tkt-39', 'published', 'Domanda su upgrade del piano e pro-rata', '3257b68a-c48c-4514-b365-9795cd57ba4f', 'low', 'billing', 'closed', 1772249010, 1772249010),\n('c3da2671-3d04-44fa-a19d-002522393f03', 'tkt-40', 'published', 'Richiesta preventivo per multi-tenant', 'f5b1467f-2510-46d1-b052-672d13f15f07', 'medium', 'sales', 'closed', 1772367162, 1772367162),\n('c77c86fe-1f50-460f-b7a7-86d1a4e1767a', 'tkt-41', 'published', 'Timeout durante l''import massivo dei dati', 'b7705a60-adee-4b67-81dc-7a0d05a94485', 'medium', 'technical', 'closed', 1772449285, 1772449285),\n('3a60b2af-4c4f-4e54-aaef-9eb9e6bf343a', 'tkt-42', 'published', 'Richiesta di cambio metodo di pagamento', 'a9ded7c4-81c8-4e6c-b471-9326837f676d', 'medium', 'billing', 'closed', 1772589572, 1772589572),\n('4bd5cf57-1867-4259-89d1-0fdb23e3bf54', 'tkt-43', 'published', 'Conferma scadenza rinnovo abbonamento', '7bf6b496-73ee-425f-8224-047f320337d1', 'low', 'billing', 'open', 1772706397, 1772706397),\n('e4befb86-a3ec-4307-a646-476dfffb6fac', 'tkt-44', 'published', 'Richiesta rimborso per doppio addebito', '6c4fd4c5-fda3-477f-9a9d-3ec19310737d', 'low', 'billing', 'closed', 1772776067, 1772776067),\n('7c2426d2-1ee8-4b5f-9417-5c6f60166ab3', 'tkt-45', 'published', 'Fattura non ricevuta per questo mese', '7526282f-0bdc-4e47-97cb-90aa48c4fcf6', 'medium', 'billing', 'in_progress', 1772841793, 1772841793),\n('7486010c-9bd9-4838-9e87-327b5a3dfc7e', 'tkt-46', 'published', 'Richiesta rimborso per doppio addebito', '0f05c2b4-cd65-4621-8754-6713025e5dfa', 'medium', 'billing', 'in_progress', 1772973432, 1772973432),\n('3a715abe-9714-40e2-a572-9c6dce3b155a', 'tkt-47', 'published', 'Conferma scadenza rinnovo abbonamento', '10e170a1-ee37-4c6e-a432-f0d3de7811ca', 'medium', 'billing', 'in_progress', 1773094202, 1773094202),\n('b777308f-f06e-449d-bb90-ec73388875a8', 'tkt-48', 'published', 'Problema di sincronizzazione con webhook', 'bf510b81-d1f1-492b-80a4-8b1f4e83bff9', 'medium', 'technical', 'open', 1773229424, 1773229424),\n('7c679012-6a09-43d0-94ad-f32b7eb99b8d', 'tkt-49', 'published', 'Richiesta rimborso per doppio addebito', 'f6213536-e3f5-49ba-a8a7-cdb0dcc05bd0', 'low', 'billing', 'closed', 1773234897, 1773234897),\n('2fd9ae34-628a-4a7d-9aa6-c7696279da7b', 'tkt-50', 'published', 'Richiesta preventivo per multi-tenant', '9004f054-6a4c-47a3-b1e3-8ef524937439', 'medium', 'sales', 'closed', 1773370150, 1773370150),\n('88dbbab5-556c-4c48-b18c-7792de1fbb1e', 'tkt-51', 'published', 'Richiesta supporto per integrazione SSO', '9d9fd9f5-dd60-4cf7-9863-11ae30aad79f', 'medium', 'technical', 'closed', 1773429168, 1773429168),\n('67710091-9729-47b5-808e-841810cc4470', 'tkt-52', 'published', 'Importo addebitato non corrisponde al piano', '1a9a1a11-492c-4538-9ac7-85cdb117535b', 'medium', 'billing', 'closed', 1773530554, 1773530554),\n('2e7b2ddb-e7d3-4480-a950-01796d3d0401', 'tkt-53', 'published', 'Richiesta supporto per integrazione SSO', 'de4e4ac9-a6d3-4758-ad85-a099cb1767ce', 'medium', 'technical', 'open', 1773608645, 1773608645),\n('44b8ef88-21f0-442d-a67e-cb09497ccc87', 'tkt-54', 'published', 'Le immagini caricate non vengono visualizzate', '3647cfa0-592f-4c44-a5d0-8cf1f233ceea', 'high', 'technical', 'closed', 1773716705, 1773716705),\n('02827387-9298-4acc-a4b4-ac1d5e2298b9', 'tkt-55', 'published', 'Domanda su limiti utenti del piano Pro', 'c7f74a59-d53b-4846-9299-213bef30f1ed', 'low', 'sales', 'closed', 1773791449, 1773791449),\n('e10b4ea7-d213-47f1-aa09-b19768ac191c', 'tkt-56', 'published', 'Richiesta preventivo per multi-tenant', '49a2a828-bdc2-455d-a69d-401ec4790927', 'medium', 'sales', 'in_progress', 1773909851, 1773909851),\n('f725dfe4-1577-4c52-a4c5-6048d541c4a7', 'tkt-57', 'published', 'Richiesta demo per piano Enterprise', '74af70bb-6f15-4fe1-9084-84142d64fd24', 'low', 'sales', 'open', 1773925582, 1773925582),\n('6187d2fa-0132-4c57-99da-48cc3ff6502c', 'tkt-58', 'published', 'Errore 500 durante il salvataggio dei contenuti', '114870cd-01a0-4c49-ad0e-5e967fd42e8b', 'high', 'technical', 'open', 1774014337, 1774014337),\n('99529e45-fc3d-4293-9b89-abaa9607e3c7', 'tkt-59', 'published', 'Errore 500 durante il salvataggio dei contenuti', 'cfc313d1-b386-4bac-9f3e-dcfd79714e8c', 'low', 'technical', 'open', 1774173783, 1774173783),\n('4e6bcb68-db23-4ba7-85cd-e5348086cdd6', 'tkt-60', 'published', 'Informazioni su sconti per rinnovo annuale', 'a0e7b58d-5411-4ee3-ba2e-e39dc83efd5f', 'medium', 'sales', 'closed', 1774190612, 1774190612),\n('b2176b06-06dc-4d69-a7ed-861c66ae8896', 'tkt-61', 'published', 'Richiesta supporto per integrazione SSO', 'fda06725-9b09-48d7-b5b1-e28f089bd10c', 'low', 'technical', 'closed', 1774310222, 1774310222),\n('fe29c6e6-4e1e-48ff-99eb-91830ab4d02a', 'tkt-62', 'published', 'Richiesta demo per piano Enterprise', '82d14734-9dc4-4c48-86f8-c7bc1d2fbcc4', 'low', 'sales', 'closed', 1774358333, 1774358333),\n('676d0c42-632f-410c-8419-adfccdce2e02', 'tkt-63', 'published', 'API key non funziona dopo la rotazione', 'c79c4569-6380-4081-a95b-e7d5152f1c7b', 'low', 'technical', 'in_progress', 1774524961, 1774524961),\n('bfbe70c2-d1e5-460c-a6c3-b5f111391a60', 'tkt-64', 'published', 'Domanda su upgrade del piano e pro-rata', 'a7534440-3e4a-4fd9-8165-5d90a4f5299f', 'medium', 'billing', 'closed', 1774551655, 1774551655),\n('16ec1c35-2f06-4829-b90a-84582dd9506a', 'tkt-65', 'published', 'Interesse per migrazione da altro CMS', '3a1a6958-c9c3-4ed4-ae01-59ce9d67cb07', 'medium', 'sales', 'closed', 1774672306, 1774672306),\n('78a6e38f-57c7-45e5-98ec-c9e73ed720d8', 'tkt-66', 'published', 'Fattura non ricevuta per questo mese', 'c13d9324-56ae-4a89-b6f3-4be0be9e662f', 'medium', 'billing', 'in_progress', 1774778440, 1774778440),\n('dd14bb67-aed0-4a15-84f1-f39cca08fa04', 'tkt-67', 'published', 'Informazioni su sconti per rinnovo annuale', '5881fb10-d95d-4252-8813-b265eb32ea8a', 'medium', 'sales', 'in_progress', 1774831134, 1774831134),\n('76259b71-2544-46b3-b4d2-5aafc219f98c', 'tkt-68', 'published', 'Richiesta contratto e fattura proforma', '334359e1-2285-4f11-9fe0-f2768c210afd', 'high', 'sales', 'open', 1774912125, 1774912125),\n('d7c46e53-f3ee-4a97-9f26-f28a4870eb60', 'tkt-69', 'published', 'Richiesta di cambio metodo di pagamento', '0801e9cf-e294-4615-874f-bde119498c65', 'low', 'billing', 'in_progress', 1775026932, 1775026932),\n('d9dc2505-9e2e-461c-84ba-7fc9d4fc1fd5', 'tkt-70', 'published', 'Informazioni su sconti per rinnovo annuale', '1a9a1a11-492c-4538-9ac7-85cdb117535b', 'medium', 'sales', 'closed', 1775063997, 1775063997),\n('89933ad8-f511-4414-8997-20c3f80e5848', 'tkt-71', 'published', 'Richiesta demo per piano Enterprise', '08db9d21-5843-4662-86db-fbe2657b14bd', 'medium', 'sales', 'closed', 1775163369, 1775163369),\n('fb2cec81-b5f0-4b51-ac48-342506e44f37', 'tkt-72', 'published', 'Importo addebitato non corrisponde al piano', '9e39720c-bfe7-4e6b-bece-6f14b711d14b', 'medium', 'billing', 'open', 1775267876, 1775267876),\n('6377e557-eb0d-4dad-8820-e4efd98933d5', 'tkt-73', 'published', 'Fattura non ricevuta per questo mese', '52eeff6a-2726-42ef-a6a8-65c5f04e27ec', 'medium', 'billing', 'closed', 1775337353, 1775337353),\n('c2d61e10-cfd2-47eb-a5bf-3756ad23012a', 'tkt-74', 'published', 'Errore 500 durante il salvataggio dei contenuti', '1d64f038-fcb3-411a-a15d-e24548a8a77d', 'low', 'technical', 'open', 1775404629, 1775404629),\n('88488b4d-07ee-4e3f-811a-d58f9b3be284', 'tkt-75', 'published', 'Problema di sincronizzazione con webhook', '1d5fa5ec-7453-4f7b-8a69-b3d5aefc1ae2', 'high', 'technical', 'open', 1775558018, 1775558018),\n('2df0ed05-17d0-4f9f-9316-d8bbefd1a384', 'tkt-76', 'published', 'Le immagini caricate non vengono visualizzate', 'aef98b7c-54f9-4c0e-8af3-03aadd6ca499', 'medium', 'technical', 'closed', 1775609172, 1775609172),\n('0c5a0698-2c63-4446-b8e1-7e7a46b90323', 'tkt-77', 'published', 'Richiesta rimborso per doppio addebito', 'f5ad8dae-34b0-44a2-b267-19a9f4b4da7f', 'medium', 'billing', 'open', 1775695593, 1775695593),\n('71c2e7ce-2d45-407b-8043-6d35e4a747c8', 'tkt-78', 'published', 'Domanda su limiti utenti del piano Pro', '18951e9d-8701-4b61-a359-899b7041218d', 'medium', 'sales', 'in_progress', 1775804246, 1775804246),\n('792b46c3-c00f-400e-a350-f3a52977969b', 'tkt-79', 'published', 'Conferma scadenza rinnovo abbonamento', 'ad2c0f4e-6e1a-42fa-a127-1f962f4a2fe7', 'high', 'billing', 'in_progress', 1775742634, 1775742634),\n('c5b17c79-9057-429b-baa4-b1fb417aa152', 'tkt-80', 'published', 'Richiesta rimborso per doppio addebito', 'eb3008c1-26e2-4d23-b02f-83774c9c248d', 'medium', 'billing', 'in_progress', 1775856508, 1775856508),\n('2a57ede6-ece2-4a93-94b9-cac7bd367443', 'tkt-81', 'published', 'Problema di sincronizzazione con webhook', '5fb9ae70-4511-48a1-9e88-b5dc9fe5a778', 'low', 'technical', 'closed', 1775976364, 1775976364),\n('db34070f-f9d2-4290-a65e-3f277560dc07', 'tkt-82', 'published', 'API key non funziona dopo la rotazione', 'b9336fbb-7d36-4d03-a04a-760764af9cbb', 'medium', 'technical', 'open', 1776046779, 1776046779),\n('f7358a64-459e-47ef-8241-15496f75e5cd', 'tkt-83', 'published', 'Importo addebitato non corrisponde al piano', '0ad629e5-8450-49a1-b4d5-4f777de2bd5e', 'low', 'billing', 'closed', 1776130545, 1776130545),\n('39e10db6-c224-4f97-a49b-c73e9e3c715d', 'tkt-84', 'published', 'Richiesta supporto per integrazione SSO', 'b5e04f32-5b53-4f94-aad8-8c5ee885a2dd', 'high', 'technical', 'open', 1776191298, 1776191298),\n('b28bb1fe-d815-4936-b49f-ea4df7841dca', 'tkt-85', 'published', 'Interesse per migrazione da altro CMS', '06420806-4150-4ac9-a1cf-4d3b84b54979', 'medium', 'sales', 'open', 1776320897, 1776320897),\n('7f477e06-327a-4b48-977e-df91f5a995a3', 'tkt-86', 'published', 'Richiesta demo per piano Enterprise', 'f5ad8dae-34b0-44a2-b267-19a9f4b4da7f', 'low', 'sales', 'open', 1776351125, 1776351125),\n('f4f4d3a5-5d71-45cd-96d4-ce5033f28b5d', 'tkt-87', 'published', 'Interesse per migrazione da altro CMS', '06420806-4150-4ac9-a1cf-4d3b84b54979', 'medium', 'sales', 'closed', 1776465444, 1776465444),\n('a540f87d-43d8-4366-89b0-b7f3790c308b', 'tkt-88', 'published', 'Problema di sincronizzazione con webhook', 'c5354f2b-5425-438f-bb67-28c545d8f958', 'medium', 'technical', 'in_progress', 1776541499, 1776541499),\n('3de7fdc3-87cb-4472-8adb-3cb11317ed9f', 'tkt-89', 'published', 'Informazioni su sconti per rinnovo annuale', '2a653519-6f16-4b42-8f85-16e70188c2c5', 'low', 'sales', 'open', 1776568395, 1776568395),\n('3289fd88-5ea2-4870-8134-6e18dd55adba', 'tkt-90', 'published', 'Conferma scadenza rinnovo abbonamento', 'cfc313d1-b386-4bac-9f3e-dcfd79714e8c', 'medium', 'billing', 'closed', 1776658976, 1776658976),\n('9ea306d8-ca8d-4de5-b05e-35fabd17dcaf', 'tkt-91', 'published', 'Richiesta supporto per integrazione SSO', '70b30c50-20c4-47d1-94a3-7fa057728173', 'medium', 'technical', 'closed', 1776760124, 1776760124),\n('fe878bbb-4e39-4859-b853-ab3a076ec7e3', 'tkt-92', 'published', 'Richiesta di cambio metodo di pagamento', 'e80b18e5-7d62-477c-814e-b547feedf5c7', 'low', 'billing', 'closed', 1776799785, 1776799785),\n('b5a52438-6f73-46c1-828d-428ce1fa48da', 'tkt-93', 'published', 'Fattura non ricevuta per questo mese', '57e7f372-b870-423e-a41c-a20b7cd31868', 'medium', 'billing', 'closed', 1776914565, 1776914565),\n('224699c6-5db4-4dc8-b017-01ba0f429b95', 'tkt-94', 'published', 'Richiesta supporto per integrazione SSO', 'f2c52e25-ee59-4fb8-9881-12da1003c980', 'high', 'technical', 'closed', 1777010235, 1777010235),\n('5dd41674-aeb6-4a54-9e72-3ab16110a78a', 'tkt-95', 'published', 'Problema di sincronizzazione con webhook', '1d64f038-fcb3-411a-a15d-e24548a8a77d', 'low', 'technical', 'closed', 1777068924, 1777068924),\n('a7aa409e-b1f6-4450-91f6-59ec76fbda32', 'tkt-96', 'published', 'Richiesta contratto e fattura proforma', 'c7bdbde2-646b-467c-a714-37df847c3881', 'low', 'sales', 'closed', 1777196270, 1777196270),\n('84a8b84a-92cb-45a4-b0ed-2641d3885047', 'tkt-97', 'published', 'Domanda su upgrade del piano e pro-rata', 'a0e7b58d-5411-4ee3-ba2e-e39dc83efd5f', 'low', 'billing', 'closed', 1777213096, 1777213096),\n('3c55b628-1246-46fc-b7ca-ffb6907810c4', 'tkt-98', 'published', 'Richiesta preventivo per multi-tenant', '2a019050-fad7-4f07-bcbd-1749a4088b28', 'medium', 'sales', 'closed', 1777347225, 1777347225),\n('3d387ae0-40b3-408f-96ca-d005540d7660', 'tkt-99', 'published', 'Richiesta demo per piano Enterprise', '59f810e9-ee58-4892-99a4-092853422742', 'low', 'sales', 'open', 1777406523, 1777406523),\n('394dcf79-2268-4a22-a3c4-ab61027f8eb4', 'tkt-100', 'published', 'Informazioni su sconti per rinnovo annuale', '6ab05f45-33c5-4208-8ee2-ba349c55e71f', 'high', 'sales', 'in_progress', 1777392983, 1777392983),\n('38b43a33-033e-45e0-9e46-7813f8967e1e', 'tkt-101', 'published', 'Richiesta rimborso per doppio addebito', 'bd6870c9-cabc-4e93-bc81-5dee7807eeae', 'low', 'billing', 'open', 1777546497, 1777546497),\n('649f38da-2058-4454-8a7d-e261892eedbe', 'tkt-102', 'published', 'Problema di sincronizzazione con webhook', '7671f12c-ed13-477f-a61f-04eebb647289', 'medium', 'technical', 'open', 1777633246, 1777633246),\n('bc4a9077-7cf3-4a64-80e2-cc840775833e', 'tkt-103', 'published', 'Richiesta supporto per integrazione SSO', 'c2a0748c-0778-47b9-812d-531fe9ee6bd0', 'medium', 'technical', 'open', 1777654859, 1777654859),\n('84988998-dde0-412f-976f-2bb86c153238', 'tkt-104', 'published', 'Timeout durante l''import massivo dei dati', '9e037244-70d2-4ae2-aada-0a8a92588adb', 'low', 'technical', 'in_progress', 1777680314, 1777680314),\n('a6cb75bb-5978-44f0-8e9d-b90a5df42a42', 'tkt-105', 'published', 'Richiesta supporto per integrazione SSO', 'e45c5fd5-5815-4553-b4ca-f7d08ab69704', 'high', 'technical', 'in_progress', 1777750121, 1777750121),\n('f25712c5-9582-43c1-95b7-c9ed9bdb9325', 'tkt-106', 'published', 'Domanda su limiti utenti del piano Pro', '0eaab274-ba25-47dd-a361-9dab73c23e8b', 'medium', 'sales', 'closed', 1777748104, 1777748104),\n('06ebc660-da9e-4653-ad84-c8b5545db9ac', 'tkt-107', 'published', 'Domanda su upgrade del piano e pro-rata', 'eb3008c1-26e2-4d23-b02f-83774c9c248d', 'high', 'billing', 'in_progress', 1777880128, 1777880128),\n('d74d7cd8-4d62-4d2c-b2f9-c4e102d7d28a', 'tkt-108', 'published', 'Richiesta preventivo per multi-tenant', 'fcb834e9-0b45-496b-b7f2-e7f782955b3e', 'medium', 'sales', 'closed', 1777943189, 1777943189),\n('52b29716-f697-443f-9833-347e14753f1f', 'tkt-109', 'published', 'Richiesta rimborso per doppio addebito', '116e0432-63cc-41aa-b967-f3c8e5b00a36', 'low', 'billing', 'closed', 1778043193, 1778043193),\n('196fa28f-0775-4c88-82b9-4cb23040828a', 'tkt-110', 'published', 'Conferma scadenza rinnovo abbonamento', 'a4c5f792-5e05-4acd-aa90-b87f2ab000c0', 'low', 'billing', 'in_progress', 1778066380, 1778066380),\n('06043d9d-5255-4e19-88ae-e1e4cfe0d148', 'tkt-111', 'published', 'Richiesta di cambio metodo di pagamento', '4a545264-3d94-455e-9309-5689fa6b2440', 'high', 'billing', 'closed', 1778105908, 1778105908),\n('dc9031a3-3592-480e-a47a-cfe52140e40b', 'tkt-112', 'published', 'Domanda su upgrade del piano e pro-rata', '11badde2-c2e5-4d10-8e1c-16ddcaf6e90a', 'low', 'billing', 'open', 1778193480, 1778193480),\n('1f7dafec-9d15-4e2f-9491-b33e275e96fe', 'tkt-113', 'published', 'Le immagini caricate non vengono visualizzate', '2078bb84-68a9-4510-9437-b36d77469369', 'medium', 'technical', 'in_progress', 1778159148, 1778159148),\n('71082fc8-1dde-43cb-9390-339414481b2f', 'tkt-114', 'published', 'Aggiornamento dati di fatturazione aziendali', 'f4a0bf8a-b74f-4a10-bc20-11c9881ad000', 'medium', 'billing', 'closed', 1778324973, 1778324973),\n('128ee858-4c43-40db-a0f1-fbb4c0f9a56c', 'tkt-115', 'published', 'API key non funziona dopo la rotazione', '9c243575-ba74-4904-a393-ec249c00f600', 'high', 'technical', 'closed', 1778382387, 1778382387),\n('29b1aa48-996b-4a1a-8299-4763f1417caa', 'tkt-116', 'published', 'Informazioni su sconti per rinnovo annuale', 'a7dafdd4-8a27-4e9d-958e-e9961ebe1874', 'medium', 'sales', 'open', 1778493841, 1778493841),\n('2a2c60dc-eebe-475d-886e-db2397059f5d', 'tkt-117', 'published', 'Richiesta rimborso per doppio addebito', '3f5abab4-f655-4245-819f-92934a4f90c4', 'low', 'billing', 'closed', 1778458453, 1778458453),\n('ab67351c-a9dc-4ce5-8a99-69d6a4bd2eb6', 'tkt-118', 'published', 'Conferma scadenza rinnovo abbonamento', 'f7a5e209-14f4-4df0-b8e3-992c459c0960', 'medium', 'billing', 'open', 1778532443, 1778532443),\n('2509f2e5-d797-4559-9d52-0640ddf137da', 'tkt-119', 'published', 'Interesse per migrazione da altro CMS', 'a7534440-3e4a-4fd9-8165-5d90a4f5299f', 'high', 'sales', 'in_progress', 1778620119, 1778620119),\n('0fd54a69-d37e-4295-8389-2ea6685dfb97', 'tkt-120', 'published', 'Importo addebitato non corrisponde al piano', '00d0f4cf-684b-4b0b-b107-402bd8f09c90', 'high', 'billing', 'in_progress', 1778707680, 1778707680),\n('230c5899-278f-491d-8c31-0a817b8c83da', 'tkt-121', 'published', 'Domanda su limiti utenti del piano Pro', 'f8d01fa9-fced-4799-98c0-6f474be6c63a', 'low', 'sales', 'in_progress', 1778769227, 1778769227),\n('2e7fd435-14e8-47b9-a913-d9d16a38ae62', 'tkt-122', 'published', 'Richiesta rimborso per doppio addebito', 'f07e5f6e-c76c-421f-b39e-f8b27d2d447d', 'high', 'billing', 'closed', 1778879345, 1778879345),\n('578e1d1b-c965-4a5b-bd82-8bd00db5380c', 'tkt-123', 'published', 'Conferma scadenza rinnovo abbonamento', '57e7f372-b870-423e-a41c-a20b7cd31868', 'medium', 'billing', 'closed', 1779014682, 1779014682),\n('671092f5-d9dd-4bca-8bec-846fc04a1ee8', 'tkt-124', 'published', 'Richiesta preventivo per multi-tenant', '7487af79-a1b4-49a3-922c-d9c32e534cf9', 'low', 'sales', 'open', 1778969449, 1778969449),\n('6c835ab6-5b97-4b48-8dc0-c7d2c5e8fb6d', 'tkt-125', 'published', 'Importo addebitato non corrisponde al piano', '171853fd-4f3b-405d-8a38-237ce4a29208', 'medium', 'billing', 'in_progress', 1779065771, 1779065771),\n('18911992-4f8e-4d3c-9ed0-8ff7a50b8cfb', 'tkt-126', 'published', 'API key non funziona dopo la rotazione', 'e2359357-e263-4c30-986c-53b32311e0ff', 'medium', 'technical', 'in_progress', 1779134866, 1779134866),\n('de7105fb-2bd5-4a35-9400-bd7eb10d17a1', 'tkt-127', 'published', 'Richiesta supporto per integrazione SSO', '8a023fd4-1b8f-48d3-9c7b-dba5cf0c1874', 'high', 'technical', 'open', 1779125104, 1779125104),\n('bee70901-2317-49fc-b177-62635180c2d5', 'tkt-128', 'published', 'Problema di sincronizzazione con webhook', 'f7a5e209-14f4-4df0-b8e3-992c459c0960', 'medium', 'technical', 'closed', 1779209487, 1779209487),\n('c0c36fc9-4698-4582-a2ad-caae48a00056', 'tkt-129', 'published', 'Interesse per migrazione da altro CMS', 'f2a383f8-1247-4ad1-bc48-09f88c301c25', 'high', 'sales', 'closed', 1779363809, 1779363809),\n('9ab4eaf2-e917-473d-be81-cf2ac0e93a2d', 'tkt-130', 'published', 'Richiesta supporto per integrazione SSO', 'e2359357-e263-4c30-986c-53b32311e0ff', 'medium', 'technical', 'open', 1779303241, 1779303241),\n('ea052dd7-c219-45f8-bd2c-ce3caa706385', 'tkt-131', 'published', 'Bug nella ricerca full-text dei contenuti', 'e2359357-e263-4c30-986c-53b32311e0ff', 'high', 'technical', 'in_progress', 1779384739, 1779384739),\n('f5d83978-4864-4f95-85f2-47120d301e57', 'tkt-132', 'published', 'Conferma scadenza rinnovo abbonamento', 'fcf30b55-9cbf-4852-b8ab-3d55a7a569ab', 'high', 'billing', 'closed', 1779448285, 1779448285),\n('eff80f6a-cbc5-4cfb-a016-e5bc7b5de8cd', 'tkt-133', 'published', 'API key non funziona dopo la rotazione', '1e027fc8-0b9b-4591-a3f8-d80ddfa41c0e', 'low', 'technical', 'in_progress', 1779480910, 1779480910),\n('2af47416-c60c-4946-b2e6-b85441bfb48b', 'tkt-134', 'published', 'Aggiornamento dati di fatturazione aziendali', '59f810e9-ee58-4892-99a4-092853422742', 'high', 'billing', 'in_progress', 1779577152, 1779577152),\n('364cca7b-e046-4d17-bf02-08beb8d8b959', 'tkt-135', 'published', 'Domanda su upgrade del piano e pro-rata', 'ede827b1-5283-4899-ad5c-f2aa16830408', 'low', 'billing', 'open', 1779683179, 1779683179),\n('6c4759d4-2a07-427d-80fa-8d8f9ecba54c', 'tkt-136', 'published', 'Domanda su limiti utenti del piano Pro', '5881fb10-d95d-4252-8813-b265eb32ea8a', 'low', 'sales', 'in_progress', 1779646996, 1779646996),\n('15fdf964-b1fd-46ec-a36f-0716a4877be2', 'tkt-137', 'published', 'Domanda su limiti utenti del piano Pro', 'c713cc13-99e4-425f-89e8-a5edb44a5668', 'medium', 'sales', 'in_progress', 1779795716, 1779795716),\n('e7556207-35e8-438a-9bd2-e9e417374802', 'tkt-138', 'published', 'Richiesta di cambio metodo di pagamento', '1d5fa5ec-7453-4f7b-8a69-b3d5aefc1ae2', 'low', 'billing', 'open', 1779859206, 1779859206),\n('259de7a6-a156-4187-b974-832a4d594028', 'tkt-139', 'published', 'Richiesta supporto per integrazione SSO', 'a7534440-3e4a-4fd9-8165-5d90a4f5299f', 'low', 'technical', 'in_progress', 1779867444, 1779867444),\n('696cf7c1-e923-4509-b15e-f2289880529c', 'tkt-140', 'published', 'Interesse per migrazione da altro CMS', 'e909e6b7-34a9-44ff-8be2-4c6b65fb9382', 'low', 'sales', 'in_progress', 1779968925, 1779968925),\n('3fea1509-d345-424f-8a09-b26396091f9c', 'tkt-141', 'published', 'Richiesta preventivo per multi-tenant', '42231dbe-86a7-4469-8ab2-328a178a0a6b', 'medium', 'sales', 'closed', 1780007867, 1780007867),\n('dd5799f5-1d26-4011-a408-941d1cf3614e', 'tkt-142', 'published', 'Richiesta di cambio metodo di pagamento', '5b405c11-a333-42fa-a44f-039903ebf8cc', 'high', 'billing', 'closed', 1780037282, 1780037282),\n('180feeff-8832-4df1-84a0-d92d9774185f', 'tkt-143', 'published', 'Richiesta preventivo per multi-tenant', '1d5fa5ec-7453-4f7b-8a69-b3d5aefc1ae2', 'low', 'sales', 'closed', 1780107568, 1780107568),\n('5c5e21eb-1ff3-4740-842f-7a4f1cdbb86d', 'tkt-144', 'published', 'Domanda su upgrade del piano e pro-rata', 'b5e04f32-5b53-4f94-aad8-8c5ee885a2dd', 'low', 'billing', 'open', 1780145158, 1780145158),\n('670b0fc6-3aa8-4f86-aa91-5c787dc4276d', 'tkt-145', 'published', 'Richiesta supporto per integrazione SSO', '2cf4de53-f29a-42c2-ac89-562b376aec9c', 'high', 'technical', 'in_progress', 1780170057, 1780170057),\n('f44b267d-de7b-4bfa-be02-2241222d8ce7', 'tkt-146', 'published', 'Aggiornamento dati di fatturazione aziendali', '30f3dcfd-6c71-43ba-9bf0-b7b2218fb48e', 'medium', 'billing', 'open', 1780166083, 1780166083),\n('8ec2576d-1ad9-44a9-96f9-09e3828ff3df', 'tkt-147', 'published', 'Richiesta contratto e fattura proforma', '3257b68a-c48c-4514-b365-9795cd57ba4f', 'high', 'sales', 'open', 1780295763, 1780295763),\n('42da207a-974b-44e1-85da-2611d7066b1e', 'tkt-148', 'published', 'Aggiornamento dati di fatturazione aziendali', '7526282f-0bdc-4e47-97cb-90aa48c4fcf6', 'medium', 'billing', 'open', 1780328434, 1780328434),\n('a35d6be6-63b9-438b-bc35-c2488a3a9450', 'tkt-149', 'published', 'Bug nella ricerca full-text dei contenuti', '0a6c8747-2324-4654-90af-80b985d4ed43', 'low', 'technical', 'in_progress', 1780382602, 1780382602),\n('677b3cc2-70dc-404a-acef-b4b481c16b25', 'tkt-150', 'published', 'Fattura non ricevuta per questo mese', '1d5fa5ec-7453-4f7b-8a69-b3d5aefc1ae2', 'medium', 'billing', 'open', 1780485779, 1780485779),\n('44e3bce1-85c9-4b1c-bcf2-ec6da783c39d', 'tkt-151', 'published', 'Fattura non ricevuta per questo mese', '8a023fd4-1b8f-48d3-9c7b-dba5cf0c1874', 'high', 'billing', 'open', 1780468837, 1780468837),\n('2f4b1661-1450-49ba-a18b-e13a6e47d89a', 'tkt-152', 'published', 'Timeout durante l''import massivo dei dati', '59f810e9-ee58-4892-99a4-092853422742', 'low', 'technical', 'in_progress', 1780570973, 1780570973),\n('10c4fbd4-d10c-462b-961b-eb1d3bca16c0', 'tkt-153', 'published', 'Bug nella ricerca full-text dei contenuti', '7bf6b496-73ee-425f-8224-047f320337d1', 'high', 'technical', 'in_progress', 1780649802, 1780649802),\n('bbde7e90-12ae-400e-9df1-28b315d8f2f6', 'tkt-154', 'published', 'Interesse per migrazione da altro CMS', '2a653519-6f16-4b42-8f85-16e70188c2c5', 'medium', 'sales', 'in_progress', 1780704115, 1780704115),\n('11b2ca94-c0ed-4ccb-b3a8-84665411981e', 'tkt-155', 'published', 'Richiesta demo per piano Enterprise', '42231dbe-86a7-4469-8ab2-328a178a0a6b', 'low', 'sales', 'in_progress', 1780829303, 1780829303),\n('e95c12a8-6723-4521-839e-f56aa975910d', 'tkt-156', 'published', 'Importo addebitato non corrisponde al piano', 'cec661ac-98a2-4320-a17d-18b8ea18d629', 'medium', 'billing', 'open', 1780850932, 1780850932),\n('ccafdbd9-5c5d-4d71-9be3-806a266eebf7', 'tkt-157', 'published', 'Richiesta contratto e fattura proforma', 'bb51f933-7912-4929-8551-0d9177a8cdf0', 'medium', 'sales', 'open', 1780900270, 1780900270),\n('73d97840-5408-41d6-9b06-4f1abc65f2c1', 'tkt-158', 'published', 'Richiesta demo per piano Enterprise', '605eb550-0080-4690-9c91-780c06c1546f', 'medium', 'sales', 'open', 1780980360, 1780980360),\n('88351c77-d480-463d-a4e9-8705b060a881', 'tkt-159', 'published', 'Richiesta rimborso per doppio addebito', '5ce7b90c-1b5f-489a-a0aa-d6c79f2db106', 'medium', 'billing', 'in_progress', 1781092033, 1781092033),\n('a84152d1-734f-4e0e-9c9f-843363281f62', 'tkt-160', 'published', 'Domanda su upgrade del piano e pro-rata', '08db9d21-5843-4662-86db-fbe2657b14bd', 'medium', 'billing', 'in_progress', 1781151808, 1781151808),\n('65370894-57dc-42a2-8b22-632512e8ad80', 'tkt-161', 'published', 'Richiesta preventivo per multi-tenant', '5881fb10-d95d-4252-8813-b265eb32ea8a', 'medium', 'sales', 'closed', 1781145011, 1781145011),\n('4cae8075-ca7b-4323-bcf4-7f6ed960c809', 'tkt-162', 'published', 'Conferma scadenza rinnovo abbonamento', 'a7dafdd4-8a27-4e9d-958e-e9961ebe1874', 'high', 'billing', 'open', 1781189824, 1781189824),\n('72a51e35-3659-4c2f-9be1-1c2e4e4035bb', 'tkt-163', 'published', 'Richiesta rimborso per doppio addebito', '171853fd-4f3b-405d-8a38-237ce4a29208', 'medium', 'billing', 'open', 1781253290, 1781253290),\n('51cd8579-ad9d-4cfe-9ef8-f76df35c0619', 'tkt-164', 'published', 'Timeout durante l''import massivo dei dati', 'f5c7a0b1-abe0-4bca-9984-59a465342a85', 'medium', 'technical', 'closed', 1781291277, 1781291277),\n('c0714499-21e0-426e-a567-e3a26b38a0f7', 'tkt-165', 'published', 'Fattura non ricevuta per questo mese', '8861b8c0-50a2-4b45-bf27-e625ba476ab9', 'medium', 'billing', 'open', 1781339773, 1781339773);\n\nINSERT OR IGNORE INTO content_changelog (id, slug, status, version, release_date, features, created_at, updated_at)\nVALUES\n('8dd4bd93-32af-4a20-b8a4-997484b1f5cd', 'v1-0-0', 'published', 'v1.0.0', 1750250767, '<p>Lancio ufficiale della piattaforma con gestione clienti base.</p>', 1750250767, 1750250767),\n('7859d9f4-6994-4d01-bf9f-d32281470fdb', 'v1-1-0', 'published', 'v1.1.0', 1752842767, '<p>Aggiunti report avanzati e export in CSV.</p>', 1752842767, 1752842767),\n('f8ce97a9-fee4-452c-8a99-656ccd1df912', 'v1-2-0', 'published', 'v1.2.0', 1755434767, '<p>Integrazione con Slack per notifiche ticket.</p>', 1755434767, 1755434767),\n('2c862b1b-92eb-4977-a192-d054b82b8e6b', 'v1-3-0', 'published', 'v1.3.0', 1758890767, '<p>Nuovo sistema di tagging per i ticket e filtri avanzati nella dashboard.</p>', 1758890767, 1758890767),\n('6d78c6d1-7929-4006-902a-f59d9fc3f5fe', 'v1-4-0', 'published', 'v1.4.0', 1762346767, '<h2>Performance</h2><p>Tempi di risposta delle API ridotti del 40% grazie alla cache edge.</p>', 1762346767, 1762346767),\n('1cb23a33-312d-43ce-9ac5-e6233407f4dc', 'v1-5-0', 'published', 'v1.5.0', 1765802767, '<p>Aggiunto supporto per fatturazione annuale e sconti automatici.</p>', 1765802767, 1765802767),\n('86396622-bd5d-47ab-b9cd-10285695cb05', 'v1-6-0', 'published', 'v1.6.0', 1769258767, '<h2>Novit\u00E0</h2><p>Dashboard widget personalizzabili e drag-and-drop per i layout.</p>', 1769258767, 1769258767),\n('b189f19c-b2b7-4f3d-814b-b28f795e461c', 'v1-7-0', 'published', 'v1.7.0', 1772714767, '<p>Nuove notifiche email per ticket ad alta priorit\u00E0 e SLA configurabili.</p>', 1772714767, 1772714767),\n('760e1cf4-849b-4635-8d60-1b1c4a42271e', 'v2-0-0', 'published', 'v2.0.0', 1776170767, '<h2>Major Update</h2><p>Nuova dashboard amministrativa e API pubbliche.</p>', 1776170767, 1776170767),\n('646da8f7-ec3b-4ffb-ac1e-1c89421e155d', 'v2-1-0', 'published', 'v2.1.0', 1779194767, '<p>Miglioramenti alla ricerca full-text e correzione di vari bug minori di sincronizzazione.</p>', 1779194767, 1779194767),\n('ac6c65de-60af-4422-8bfd-e7251516eed6', 'v2-2-0', 'published', 'v2.2.0', 1780922767, '<h2>Sicurezza</h2><p>Rotazione automatica delle API key e audit log per le modifiche di sistema.</p>', 1780922767, 1780922767);\n\nINSERT OR IGNORE INTO content_articoli (id, slug, status, title, author, cover_image, body, created_at, updated_at)\nVALUES\n('5f02f894-9888-4ba6-ae22-8d7e8c3a254a', 'come-ridurre-il-churn-rate', 'published', 'Come ridurre il Churn Rate', 'Luca Rossi', 'https://images.unsplash.com/photo-1551288049-bebda4e38f71?w=800&q=80', '<p>Analisi delle migliori strategie per mantenere i clienti SaaS nel 2026: onboarding guidato, check-in proattivi e piani di successo personalizzati.</p>', 1764074767, 1764074767),\n('cb342f3f-0df6-4ce2-8719-8055e9113b02', 'pricing-saas-freemium-vs-trial', 'published', 'Pricing SaaS: Freemium vs Trial', 'Anna Bianchi', 'https://images.unsplash.com/photo-1460925895917-afdab827c52f?w=800&q=80', '<p>Cosa scegliere per massimizzare la conversion rate e il Customer Lifetime Value: confronto pratico tra modello freemium e trial a tempo.</p>', 1765802767, 1765802767),\n('c6a6d5a6-d0dc-431c-86d5-7e5ace6d1617', 'onboarding-clienti-enterprise', 'published', 'Onboarding clienti enterprise: la nostra checklist', 'Marco Verdi', 'https://images.unsplash.com/photo-1521737711867-e3b97375f902?w=800&q=80', '<p>I passaggi chiave per accompagnare un nuovo cliente enterprise dal contratto al primo valore percepito, riducendo il time-to-value.</p>', 1767530767, 1767530767),\n('8606e217-69d0-49ff-9bd2-e5fd1e0e3d15', 'metriche-saas-da-monitorare', 'published', '7 metriche SaaS da monitorare ogni settimana', 'Giulia Ferrari', 'https://images.unsplash.com/photo-1551288049-bebda4e38f71?w=800&q=80', '<p>MRR, churn, NRR, CAC, LTV e altro: una guida pratica alle metriche che contano davvero per un business in abbonamento.</p>', 1769258767, 1769258767),\n('28262785-9ee9-4e70-97e5-05b539f2788f', 'automatizzare-il-supporto-clienti', 'published', 'Automatizzare il supporto clienti senza perdere la qualit\u00E0', 'Davide Conti', 'https://images.unsplash.com/photo-1556742049-0cfed4f6a45d?w=800&q=80', '<p>Come usare automazioni e categorizzazione automatica dei ticket per ridurre i tempi di risposta mantenendo un''esperienza cliente eccellente.</p>', 1770986767, 1770986767),\n('0aaa5887-bf44-451c-bd9e-7f6d2456df07', 'guida-rinnovi-abbonamento', 'published', 'Guida ai rinnovi: come ridurre i pagamenti falliti', 'Elena Mariani', 'https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?w=800&q=80', '<p>Strategie di dunning, promemoria automatici e retry intelligenti delle carte per ridurre il tasso di payment_status \"past_due\".</p>', 1772714767, 1772714767),\n('046b3fd2-b166-4559-a478-21211933de14', 'segmentazione-clienti-per-piano', 'published', 'Segmentare i clienti per piano: cosa rivelano i dati', 'Luca Rossi', 'https://images.unsplash.com/photo-1551434678-e076c223a692?w=800&q=80', '<p>Analizzando i clienti per tier (free, pro, enterprise) emergono pattern utili per le strategie di upsell e prevenzione del churn.</p>', 1774442767, 1774442767),\n('3a09ffbb-7a48-400a-b9b2-8f2225136171', 'casi-studio-clienti-enterprise', 'published', 'Casi studio: come i nostri clienti enterprise scalano', 'Anna Bianchi', 'https://images.unsplash.com/photo-1522202176988-66273c2fd55f?w=800&q=80', '<p>Tre storie reali di aziende che hanno aumentato il proprio MRR del 30% in sei mesi grazie a un percorso di adozione guidato.</p>', 1776170767, 1776170767),\n('17e13335-81fe-4af4-af27-9a225c54a68e', 'priorita-ticket-best-practice', 'published', 'Come impostare le priorit\u00E0 dei ticket: best practice', 'Marco Verdi', 'https://images.unsplash.com/photo-1556761175-5973dc0f32e7?w=800&q=80', '<p>Una matrice semplice per assegnare priorit\u00E0 low, medium e high ai ticket in base a impatto e urgenza, con esempi pratici.</p>', 1777898767, 1777898767),\n('cfd95f64-ab33-4485-8454-4ae1c1fe9dc1', 'roadmap-prodotto-2026', 'published', 'Roadmap prodotto 2026', 'Giulia Ferrari', 'https://images.unsplash.com/photo-1557804506-669a67965ba0?w=800&q=80', '<p>Le novit\u00E0 in arrivo: dashboard personalizzabili, nuove integrazioni e miglioramenti alla ricerca full-text.</p>', 1779626767, 1779626767),\n('9d1bd095-0d4c-41fa-a8fa-853e43e3117b', 'security-audit-log-novita', 'published', 'Audit log e sicurezza: le novit\u00E0 della v2.2', 'Davide Conti', 'https://images.unsplash.com/photo-1518770660439-4636190af475?w=800&q=80', '<p>Con la versione 2.2 introduciamo audit log completi e rotazione automatica delle API key per i clienti enterprise.</p>', 1780922767, 1780922767),\n('8486676e-c17d-4bfa-a384-52e1352e3205', 'analisi-mrr-trend-annuale', 'published', 'Analisi del trend MRR: cosa abbiamo imparato in un anno', 'Elena Mariani', 'https://images.unsplash.com/photo-1551288049-bebda4e38f71?w=800&q=80', '<p>Un anno di crescita del Monthly Recurring Revenue raccontato attraverso i dati: stagionalit\u00E0, upgrade e impatto del churn.</p>', 1781268367, 1781268367);\n\n";
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import type { IClock } from '@beechcms/core';
|
|
2
|
+
/**
|
|
3
|
+
* Test-only IClock implementation that returns a frozen timestamp on every
|
|
4
|
+
* call. Lets specs assert exact values for `createdAt`, `iat`, and
|
|
5
|
+
* day-bucket computations without resorting to vi.useFakeTimers or
|
|
6
|
+
* patching the global Date constructor.
|
|
7
|
+
*/
|
|
8
|
+
export declare class FixedClock implements IClock {
|
|
9
|
+
private readonly fixedNowMs;
|
|
10
|
+
constructor(fixedNowMs: number);
|
|
11
|
+
now(): number;
|
|
12
|
+
nowSeconds(): number;
|
|
13
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|