@nodaro/prompts 1.26.1 → 1.27.0
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/dist/index.cjs +2776 -30
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +1611 -3
- package/dist/index.d.ts +1611 -3
- package/dist/index.js +2761 -31
- package/dist/index.js.map +1 -1
- package/package.json +2 -2
- package/src/__tests__/picker-art-images.test.ts +191 -0
- package/src/__tests__/transitions-scope.test.ts +178 -5
- package/src/catalog-sections.ts +24 -0
- package/src/index.ts +3 -0
- package/src/picker-art/character-art-files.generated.ts +1118 -0
- package/src/picker-art/images.ts +83 -0
- package/src/picker-art/index.ts +13 -0
- package/src/picker-art/look-preview-sets.ts +489 -0
- package/src/picker-art/paths.ts +53 -0
- package/src/picker-art/sound-art-files.generated.ts +319 -0
- package/src/picker-art/sound-art-map.ts +722 -0
- package/src/picker-art/sound-art-types.ts +19 -0
- package/src/picker-catalogs.ts +73 -25
- package/src/styling.ts +18 -0
- package/src/transitions.ts +11 -11
package/dist/index.d.ts
CHANGED
|
@@ -3682,6 +3682,44 @@ interface CharacterMotion extends CharacterMotionMetadata {
|
|
|
3682
3682
|
readonly twoPerson?: true;
|
|
3683
3683
|
}
|
|
3684
3684
|
|
|
3685
|
+
/**
|
|
3686
|
+
* How the API pictures picker options. Pass it to the catalog projections
|
|
3687
|
+
* (projectPickerCatalog / projectAllCatalogs / summarizePickerCatalogs); leave
|
|
3688
|
+
* it out and no option carries an `imageUrl` — the package itself never
|
|
3689
|
+
* decides which host an install is reached at.
|
|
3690
|
+
*/
|
|
3691
|
+
interface PickerImageOptions {
|
|
3692
|
+
/**
|
|
3693
|
+
* The installation's public origin, e.g. "https://app.nodaro.ai" or a
|
|
3694
|
+
* self-hosted "http://localhost:3000". Self-hosted pictures are served from
|
|
3695
|
+
* it, so an external app gets absolute URLs on the install it asked.
|
|
3696
|
+
*/
|
|
3697
|
+
readonly baseUrl: string;
|
|
3698
|
+
/** Include the rendered look previews, which live on the Nodaro CDN (Cloud only). */
|
|
3699
|
+
readonly lookPreviews?: boolean;
|
|
3700
|
+
}
|
|
3701
|
+
/**
|
|
3702
|
+
* A still, 480px-wide picture of a rendered look preview: the image resized by
|
|
3703
|
+
* the CDN, or — for a clip (camera motion) — a frame taken 1s in. The same
|
|
3704
|
+
* transforms the editor's tiles use. A URL off the transforming CDN is kept
|
|
3705
|
+
* as is for an image, and dropped for a clip (no still to offer).
|
|
3706
|
+
*/
|
|
3707
|
+
declare function lookPreviewStillUrl(url: string, width?: number): string | undefined;
|
|
3708
|
+
/**
|
|
3709
|
+
* The absolute picture URL of one picker option, or undefined when it has
|
|
3710
|
+
* none. Self-hosted art (the character photos, the music / voice art) wins;
|
|
3711
|
+
* otherwise, when allowed, the option's rendered look preview.
|
|
3712
|
+
*
|
|
3713
|
+
* @param catalog the catalog's node type (look previews are keyed by it) and catalog id (the self-hosted maps are)
|
|
3714
|
+
* @param field the dimension field the option belongs to (music / voice art is keyed by it)
|
|
3715
|
+
*/
|
|
3716
|
+
declare function pickerOptionImageUrl(catalog: {
|
|
3717
|
+
readonly nodeType: string;
|
|
3718
|
+
readonly catalogId: string;
|
|
3719
|
+
}, field: string | undefined, id: string, images: PickerImageOptions): string | undefined;
|
|
3720
|
+
/** The absolute URL of a Person / Styling topic's round picture, or undefined. */
|
|
3721
|
+
declare function pickerSectionImageUrl(sectionLabel: string, images: PickerImageOptions): string | undefined;
|
|
3722
|
+
|
|
3685
3723
|
interface PickerOption {
|
|
3686
3724
|
/** Character Motion only: authored prerequisites, state and search metadata. */
|
|
3687
3725
|
readonly motion?: CharacterMotionMetadata;
|
|
@@ -3783,9 +3821,16 @@ interface PickerCatalogSummary {
|
|
|
3783
3821
|
readonly fields?: readonly string[];
|
|
3784
3822
|
/** single: options.length; multi: sum of every dimension's options. */
|
|
3785
3823
|
readonly optionCount: number;
|
|
3824
|
+
/** How many of those options carry an `imageUrl` (0 without picture options). */
|
|
3825
|
+
readonly imageCount: number;
|
|
3786
3826
|
}
|
|
3787
|
-
/**
|
|
3788
|
-
|
|
3827
|
+
/**
|
|
3828
|
+
* Lightweight directory of every picker catalog — no option payloads. With
|
|
3829
|
+
* `images`, `imageCount` says how many options the detail call pictures.
|
|
3830
|
+
*/
|
|
3831
|
+
declare function summarizePickerCatalogs(opts?: {
|
|
3832
|
+
readonly images?: PickerImageOptions;
|
|
3833
|
+
}): readonly PickerCatalogSummary[];
|
|
3789
3834
|
type PickerCatalogDetail = "compact" | "full";
|
|
3790
3835
|
interface ProjectPickerCatalogOptions {
|
|
3791
3836
|
/** Default "compact" (id/label/category/icon). "full" adds description + promptHint. */
|
|
@@ -3794,6 +3839,12 @@ interface ProjectPickerCatalogOptions {
|
|
|
3794
3839
|
readonly category?: string;
|
|
3795
3840
|
/** multi-dim: keep only this dimension field. */
|
|
3796
3841
|
readonly field?: string;
|
|
3842
|
+
/**
|
|
3843
|
+
* Attach each option's absolute `imageUrl` (and the Person / Styling topic
|
|
3844
|
+
* pictures). Left out, no option carries one — the caller (the API) knows
|
|
3845
|
+
* which host this installation is reached at, the package does not.
|
|
3846
|
+
*/
|
|
3847
|
+
readonly images?: PickerImageOptions;
|
|
3797
3848
|
}
|
|
3798
3849
|
type ProjectedPickerOption = ProjectedCatalogOption;
|
|
3799
3850
|
type ProjectedPickerDimension = ProjectedCatalogDimension;
|
|
@@ -3807,6 +3858,7 @@ declare function projectPickerCatalog(c: PickerCatalog, opts?: ProjectPickerCata
|
|
|
3807
3858
|
*/
|
|
3808
3859
|
declare function projectAllCatalogs(opts?: {
|
|
3809
3860
|
detail?: PickerCatalogDetail;
|
|
3861
|
+
images?: PickerImageOptions;
|
|
3810
3862
|
}): ProjectedCatalog[];
|
|
3811
3863
|
|
|
3812
3864
|
/**
|
|
@@ -7100,6 +7152,17 @@ interface Styling {
|
|
|
7100
7152
|
}
|
|
7101
7153
|
declare const STYLINGS: ReadonlyArray<Styling>;
|
|
7102
7154
|
declare const STYLING_DIMENSION_ORDER: ReadonlyArray<StylingDimension>;
|
|
7155
|
+
/**
|
|
7156
|
+
* The Styling picker's topics, in display order (mirrors PERSON_DIMENSION_SECTIONS):
|
|
7157
|
+
* every dimension belongs to exactly one — styling-sections.test.ts fails the build
|
|
7158
|
+
* when a new dimension is left out or listed twice. The editor lays the open
|
|
7159
|
+
* picker out by these, and the API serves them as the catalog's `sections`.
|
|
7160
|
+
*/
|
|
7161
|
+
interface StylingDimensionSection {
|
|
7162
|
+
readonly label: string;
|
|
7163
|
+
readonly dimensions: ReadonlyArray<StylingDimension>;
|
|
7164
|
+
}
|
|
7165
|
+
declare const STYLING_DIMENSION_SECTIONS: ReadonlyArray<StylingDimensionSection>;
|
|
7103
7166
|
declare const STYLING_DIMENSION_LABELS: Readonly<Record<StylingDimension, string>>;
|
|
7104
7167
|
declare const STYLING_FIELD_BY_DIMENSION: Record<StylingDimension, "makeup" | "eyewear" | "headwear" | "hairCut" | "hairTreatment" | "hairState" | "jewelry" | "nails" | "facePaint" | "outfit" | "top" | "bottom" | "outerwear" | "legwear" | "footwear" | "fabric" | "wardrobeState">;
|
|
7105
7168
|
/** Per-dimension multi-select cap — single source of truth for the picker UI,
|
|
@@ -8339,4 +8402,1549 @@ interface AdCreativeAnalysisInput {
|
|
|
8339
8402
|
*/
|
|
8340
8403
|
declare function buildAdCreativeAnalysisUserText(input: AdCreativeAnalysisInput): string;
|
|
8341
8404
|
|
|
8342
|
-
export { ACTION_FX, ACTION_FX_CATEGORY_LABELS, ACTION_FX_CATEGORY_ORDER, ACTION_FX_IDS, ADULT_AGE_IDS, ADULT_ONLY_FLAG, ADULT_SWEPT_CATALOG_IDS, AD_CREATIVE_ANALYSIS_FIELDS, AD_CREATIVE_ANALYSIS_SYSTEM_PROMPT, AESTHETICS, AESTHETIC_CATEGORY_LABELS, AESTHETIC_CATEGORY_ORDER, AESTHETIC_IDS, ALL_PICKER_WIRING, ANALYZABLE_PICKER_TYPES, ANGLE_LABELS, ASPECT_RATIO_LABELS, ATMOSPHERES, ATMOSPHERE_IDS, AUDIO_WIZARD_CATEGORIES, type ActionFx, type ActionFxCategory, type AdCreativeAnalysisField, type AdCreativeAnalysisInput, type AdultOnlyEntry, type Aesthetic, type AestheticCategory, type AssembleImageInput, type AssembleSunoInput, type AssembleSunoResult, type Atmosphere, BACKDROPS, BACKDROP_CATEGORY_LABELS, BACKDROP_CATEGORY_ORDER, BACKDROP_IDS, BRAND_PRESETS, BRAND_PRESET_IDS, BRAND_PRESET_META, type Backdrop, type BackdropCategory, type BrandCasing, type BrandFonts, type BrandLogo, type BrandPalette, type BrandPresetId, type BrandPresetMeta, type BrandTokens, type BrandTypeSpec, type BuildImagePromptConfig, type BuildImagePromptOverflowResult, type BuildImagePromptResult, type BuildImagePromptSegmentsResult, CAMERA_FORMATS, CAMERA_FORMAT_IDS, CAMERA_MOTIONS, CAMERA_MOTION_CATEGORY_LABELS, CAMERA_MOTION_CATEGORY_ORDER, CAMERA_MOTION_IDS, CHARACTER_FX, CHARACTER_FX_CATEGORY_LABELS, CHARACTER_FX_CATEGORY_ORDER, CHARACTER_FX_DURATIONS, CHARACTER_FX_IDS, CHARACTER_FX_INTENSITIES, CHARACTER_FX_POSITIONS, CHARACTER_MOTIONS, CHARACTER_MOTION_CATEGORY_LABELS, CHARACTER_MOTION_CATEGORY_ORDER, CHARACTER_MOTION_IDS, CHARACTER_MOTION_MAX_PICKS, CHARACTER_MOTION_PACES, CHARACTER_MOTION_POSITIONS, CINEMATIC_LOOK_TAIL, COLOR_LOOKS, COLOR_LOOK_CATEGORY_LABELS, COLOR_LOOK_CATEGORY_ORDER, COLOR_LOOK_IDS, COMPOSITION_EFFECTS, COMPOSITION_EFFECT_IDS, type CameraFormat, type CameraMotion, type CameraMotionCategory, type CatalogPack, type CatalogPackMode, type CategorizedInstrument, type CharacterFx, type CharacterFxCategory, type CharacterFxDuration, type CharacterFxIntensity, type CharacterFxPosition, type CharacterFxTiming, type CharacterFxTimingOption, type CharacterMeta, type CharacterMotion, type CharacterMotionBindings, type CharacterMotionCategory, type CharacterMotionDiagnostic, type CharacterMotionFloor, type CharacterMotionPace, type CharacterMotionPosition, type CharacterMotionPromptInput, type CharacterMotionTiming, type CharacterMotionTimingOption, type CharacterPromptInput, type ColorLook, type ColorLookCategory, type CompositionEffect, type ComputeNodePromptArgs, type CreaturePromptInput, DEFAULT_IDENTITY_LOCK, DEFAULT_TEMPLATES, DIRECTION_ARRAY_CEILING, DIRECTION_FIELDS, DIRECTION_ID_MAX_CHARS, DIRECTION_KEYS, type DirectionFamily, type DirectionFieldRow, type DirectionFieldSpec, type DirectionFields, type DirectionHintClause, type DirectionHintMode, type DirectionKey, type DirectionStyleGroup, type DirectionSurface, ERAS, ERA_CATEGORY_LABELS, ERA_CATEGORY_ORDER, ERA_IDS, EXPOSURE_CATEGORY_LABELS, EXPOSURE_CATEGORY_ORDER, EXPOSURE_FIELD_BY_CATEGORY, EXPOSURE_IDS, EXPOSURE_SETTINGS, type Era, type EraCategory, type ExposureCategory, type ExposureSettings, type ExposureValue, FACTORY_PRESETS, FACTORY_SNIPPETS, FILM_STILL_PREFIX, FILM_STYLE_KEYS, FLOORED_PICKER_KEYS, FRAMINGS, FRAMING_CATEGORY_LABELS, FRAMING_CATEGORY_ORDER, FRAMING_FIELD_BY_CATEGORY, FRAMING_IDS, type FacePromptInput, type FactoryPreset, type FactoryPresetGroup, type FactorySnippet, type ForeignCatalogId, type FrameDeliveryPlan, type FrameDeliveryPlanArgs, type Framing, type FramingCategory, type FramingValue, GAPS_SCHEMA, type GeminiOmniI2vInputsArgs, type GeminiOmniI2vInputsResult, HELD_PROPS, HELD_PROP_CATEGORY_LABELS, HELD_PROP_CATEGORY_ORDER, HELD_PROP_IDS, type HeldProp, type HeldPropCategory, IMAGE_HINT_MODE_DEFAULT, IMAGE_REFERENCE_PROMPT_DOCTRINE, IMAGE_WIZARD_CATEGORIES, INSTANT_CUT_CLAUSE, INSTRUMENTATION_DEFAULT_DATA, INSTRUMENTS, INSTRUMENT_CATEGORY_LABELS, INSTRUMENT_CATEGORY_ORDER, type IdentityLockMode, type ImageDirectionKey, type ImageReferenceDoctrine, type InstrumentCategory, type InstrumentationEntry, LENSES, LENS_IDS, LIGHTINGS, LIGHTING_CATEGORY_LABELS, LIGHTING_CATEGORY_ORDER, LIGHTING_FIELD_BY_CATEGORY, LIGHTING_IDS, LLM_CHAT_WIZARD_CATEGORIES, LOOP_SUBJECTS, LOOP_SUBJECT_CATEGORY_LABELS, LOOP_SUBJECT_CATEGORY_ORDER, type Lens, type Lighting, type LightingCategory, type LightingValue, type LlmChatFieldArgs, type LocationMotionPromptInput, type LocationPromptInput, type LocationRefinePromptInput, type LoopSubject, type LoopSubjectCategory, MATERIALS, MATERIAL_CATEGORY_LABELS, MATERIAL_CATEGORY_ORDER, MATERIAL_IDS, MAX_SELECTED_BY_DIMENSION, MAX_SELECTED_BY_FRAMING_CATEGORY, MAX_SELECTED_BY_STYLING_DIMENSION, MAX_SUBJECT_KEYS, MINOR_IMPLYING_TYPE_IDS, MOODS, MOOD_CATEGORY_LABELS, MOOD_CATEGORY_ORDER, MOOD_IDS, MOVEMENT_LABELS, MULTI_PICKER_WIRING, MUSIC_EMOTIONS, MUSIC_ENERGIES, MUSIC_ERAS, MUSIC_GENRES, MUSIC_GENRE_CATEGORY_LABELS, MUSIC_GENRE_CATEGORY_ORDER, MUSIC_GENRE_DEFAULT_DATA, MUSIC_MOOD_DEFAULT_DATA, MUSIC_VIBES, MUSIC_WIZARD_CATEGORIES, type Material, type MaterialCategory, type ModelChange, type Mood, type MoodCategory, type MoodValue, type MultiDimPickerWiring, type MultiPickerAnalyzerSpec, type MusicEra, type MusicGenre, type MusicGenreCategory, type MusicMoodData, type MusicMoodEntry, type MusicSubgenre, NODE_PROMPT_CANDIDATE_FIELDS, NODE_PROMPT_FIELDS, OBJECT_ANGLE_PRESETS, OBJECT_ANGLE_PROMPTS, OBJECT_ASSET_PRESETS, OBJECT_ASSET_PROMPTS, OBJECT_MATERIAL_PRESETS, OBJECT_MATERIAL_PROMPTS, OBJECT_VARIATION_PRESETS, OBJECT_VARIATION_PROMPTS, type ObjectMotionPromptInput, type ObjectPresetAssetType, type ObjectPromptInput, PEOPLE, PERSON_DIMENSION_LABELS, PERSON_DIMENSION_ORDER, PERSON_DIMENSION_SECTIONS, PERSON_FIELD_BY_DIMENSION, PERSON_IDS, PHOTOGRAPHERS, PHOTOGRAPHER_CATEGORY_LABELS, PHOTOGRAPHER_CATEGORY_ORDER, PHOTOGRAPHER_IDS, PHOTO_GENRES, PHOTO_GENRE_CATEGORY_LABELS, PHOTO_GENRE_CATEGORY_ORDER, PHOTO_GENRE_IDS, PICKER_ANALYZER_FAMILIES, PICKER_ANALYZER_REGISTRY, PICKER_CATALOGS, PICKER_TYPES, POSES, POSE_CATEGORY_LABELS, POSE_CATEGORY_ORDER, POSE_IDS, POST_CONTENT_ANALYSIS_SYSTEM_PROMPT, POST_PROCESS_EFFECTS, POST_PROCESS_EFFECT_IDS, PRODUCTION_STYLES, PROMPT_AFFIX_CORE_FIELD_OVERRIDES, PROMPT_AFFIX_NODE_TYPES, PROMPT_HINT_SEPARATOR, PROVIDER_CAPABILITIES, PROVIDER_PROMPT_DOCTRINES, type Person, type PersonDimension, type PersonDimensionSection, type PersonPack, type PersonValue, type PhotoGenre, type PhotoGenreCategory, type Photographer, type PhotographerCategory, type PickerAnalyzer, type PickerAnalyzerDescriptor, type PickerAnalyzerSpec, type PickerApplyMode, type PickerCatalog, type PickerCatalogDetail, type PickerCatalogInput, type PickerCatalogSummary, type PickerDimension, type PickerDimensionInput, type PickerDimensionSpec, type PickerGaps, type PickerHintMode, type PickerOption, type PickerOptionInput, type PickerType, type PickerWiring, type PickerWiringEntry, type Pose, type PoseCategory, type PoseValue, type PostProcessEffect, type ProjectPickerCatalogOptions, type ProjectedPickerCatalog, type ProjectedPickerDimension, type ProjectedPickerOption, type PromptClauseSlot, type PromptFieldSpec, type PromptIconKind, type PromptSegment, type PromptSegmentOrigin, type ProviderPromptDoctrine, REFERENCE_IMAGE_ROLES, REFERENCE_RULES, REFERENCE_RULES_MULTI_PERSON, REF_BINDING, RENDER_QUALITIES, RENDER_QUALITY_IDS, RETIRED_ADULT_ONLY_HINT_STRINGS, type RecommendedModel, type RefIdTokenContext, type ReferenceCounts, type ReferenceLineFormat, type RegisteredPersonEntry, type RenderQuality, type ResolveCharacterMentionsResult, type ResolveLocationMentionsResult, type ResolvePromptArgs, type ResolveVideoReferenceCoreArgs, SCENE3D_FIGURE_REFERENCE_RULE, SCENE3D_FREE_PLATE_SLOTS, SCENE3D_LAYOUT_REFERENCE_SCOPING_FIXTURE, SCENE3D_LAYOUT_REFERENCE_SCOPING_LINE, SCENE3D_LAYOUT_SCOPING_FOR, SCENE3D_LAYOUT_SCOPING_IGNORE, SCENE3D_LAYOUT_SCOPING_LOOK_SOURCE, SCENE3D_LAYOUT_SCOPING_MARKER, SCENE3D_UNREFERENCED_FIGURES_WARNING_CODE, SCENE_FRAME_RULE, SCENE_PROMPT_MAX_LENGTH, SEEDANCE_VIDEO_EDIT_PREFIX, SETTINGS, SETTING_CATEGORY_LABELS, SETTING_IDS, SHOT_LABELS, SINGING_STYLES, SINGLE_PICKER_WIRING, SNIPPET_MEDIA_VALUES, STYLES, STYLE_IDS, STYLE_PRESETS, STYLE_SECTION_GAP, STYLE_SECTION_HEADER, STYLINGS, STYLING_DIMENSION_LABELS, STYLING_DIMENSION_ORDER, STYLING_FIELD_BY_DIMENSION, STYLING_IDS, SUBJECT_ARRAY_CEILING, SUBJECT_CUSTOM_AGE_KEY, SUBJECT_FIELDS, SUBJECT_FOLD_KEYS, SUBJECT_ID_MAX_CHARS, SUBJECT_IMAGE_HINT_MODE_DEFAULT, SUBJECT_KEYS, SUBJECT_KEY_MAX_CHARS, SUBJECT_VIDEO_HINT_MODE_DEFAULT, type Scene3DFigureReferenceCheck, type Scene3DLayoutReferenceCarrier, type Scene3DLayoutReferenceSeat, type Scene3DLayoutScopingSpec, type Scene3DUnreferencedFiguresWarning, type Seedance2InputsArgs, type Seedance2InputsResult, type Seedance2Mode, type Setting, type SettingCategory, type SidecarCoverageReport, type SingleDimPickerWiring, type SlottedPromptClause, type SnippetMedia, type SnippetTarget, type SoundComposition, type SoundCompositionFields, type SoundConsumerType, type StructuredPromptFields, type Style, type StylePreset, type Styling, type StylingDimension, type StylingValue, type SubjectFieldRow, type SubjectFieldSpec, type SubjectFields, type SubjectGroupFieldSpec, type SubjectHintMode, type SubjectIdsFieldSpec, type SubjectSurface, type SuspiciousTermOptions, TEMPORALS, TEMPORAL_CATEGORY_LABELS, TEMPORAL_CATEGORY_ORDER, TEMPORAL_FIELD_BY_CATEGORY, TEMPORAL_IDS, TERM_MAX_CHARS, TEXT_WIZARD_CATEGORIES, TRANSITIONS, TRANSITION_CATEGORY_LABELS, TRANSITION_CATEGORY_ORDER, TRANSITION_DURATIONS, TRANSITION_IDS, TRANSITION_INTENSITIES, TRANSITION_POSITIONS, type Temporal, type TemporalCategory, type TemporalValue, type TermCarrier, type Transition, type TransitionCategory, type TransitionDuration, type TransitionHintOptions, type TransitionHintScope, type TransitionIntensity, type TransitionPosition, type TransitionTiming, type TransitionTimingOption, VIDEO_HINT_MODE_DEFAULT, VIDEO_WIZARD_CATEGORIES, VOCAL_PRESENCE, VOCAL_PRESENCE_INSTRUMENTAL_ID, VOICE_ACCENTS, VOICE_AGES, VOICE_ARCHETYPES, VOICE_CHARACTER_DEFAULT_DATA, VOICE_DELIVERY_DEFAULT_DATA, VOICE_EMOTIONS, VOICE_GENDERS, VOICE_LANGUAGES, VOICE_PACES, VOICE_TIMBRES, type VeoI2vInputsArgs, type VeoI2vInputsResult, type VideoDirectionKey, type VideoExtraRef, type VideoPromptCapOptions, type VoiceCharacterEntry, type VoiceDeliveryEntry, WARDROBE, WARDROBE_CATEGORY_LABELS, WARDROBE_DIMENSION_ORDER, WARDROBE_FIELD_BY_DIMENSION, type WardrobeDimension, type WardrobeEntry, type WardrobeValue, type WizardCategory, type WizardNodeContext, type WizardOption, type WizardQuestion, type WizardSelection, __resetCatalogIdGuardForTests, appendField, appendMusicMeta, appendReferenceLines, appendScene3DStillScopingLines, applyMinorAgeFloorToPickerValues, applyPickerJson, applyPromptAffixes, applyReferenceOrderToVideo, applyTemplate, asBodyClauses, assembleImageInput, assembleSunoInput, buildActionFxHints, buildActionFxTerms, buildAdCreativeAnalysisUserText, buildAestheticHints, buildAestheticTerms, buildAgeHint, buildAtmosphereHints, buildAtmosphereTerms, buildCharacterPrompt, buildCreaturePrompt, buildExposureHints, buildExposureTerms, buildFaceTemplateInputs, buildFramingHints, buildFramingTerms, buildHeldPropHints, buildHeldPropTerms, buildIdentityDirectives, buildIdentityLockLine, buildImagePrompt, buildImagePromptSegments, buildImagePromptWithOverflow, buildInstrumentationHints, buildInstrumentationTerms, buildLightingHints, buildLightingTerms, buildLocationMotionPrompt, buildLocationPrompt, buildLocationRefinePrompt, buildMaterialHints, buildMaterialTerms, buildMoodHints, buildMoodTerms, buildMotionPrompt, buildMultiPickerAnalyzerSpec, buildMusicGenreHints, buildMusicGenreTerms, buildMusicMoodHints, buildMusicMoodTerms, buildNeedleAlternationSource, buildObjectMotionPrompt, buildObjectPrompt, buildPersonHints, buildPersonTerms, buildPhotographerHints, buildPhotographerTerms, buildPickerAnalyzerSpec, buildPickerLegend, buildPickerZodSchema, buildPoseHints, buildPoseTerms, buildPostProcessHints, buildPostProcessTerms, buildReferenceBlocks, buildScene3DLayoutScopingLine, buildScene3DUnreferencedFiguresWarning, buildScenePrompt, buildSeedanceVideoEditPrompt, buildStylingHints, buildStylingTerms, buildSurroundFillPrompt, buildTemporalHints, buildTemporalTerms, buildVoiceCharacterHints, buildVoiceCharacterTerms, buildVoiceDeliveryHints, buildVoiceDeliveryTerms, buildWardrobeHints, catalogGuardActive, catalogPacksVersion, characterLockToRefLock, collectIdentityLockClause, composeCameraMotionHintFromConnections, composeCameraMotionTermFromConnections, composeCharacterFxHintFromConnections, composeCharacterMotionHintFromConnections, composeNegative, composePickerCatalogs, composeSectionedPrompt, composeSoundHintFromConnections, composeTransitionHintFromConnections, composeVideoPromptText, composedHas, composedOption, composedOptionIndex, computeLlmChatFields, computeNodePrompt, computePackSidecarCoverage, containsMinorAgeHint, curateEntries, curatedAnimalPromptHint, curatedAnimalTerm, curatedFurnitureText, curatedVehicleText, curatedWeaponText, deriveTerm, directionFieldsForSurface, endsInsideStyleSection, expandImagePositionRefs, expandImageRefTokens, filmStillPrefix, findForeignCatalogIds, findForeignCatalogIdsInBody, foreignCatalogIdMessage, getActionFx, getActionFxLabel, getActionFxPromptHint, getActionFxTerm, getAdultOnlyEntries, getAdultOnlyHintStrings, getAdultOnlyIds, getAesthetic, getAestheticLabel, getAestheticPromptHint, getAestheticTerm, getAtmosphere, getAtmosphereLabel, getAtmospherePromptHint, getAtmosphereTerm, getBackdrop, getBackdropLabel, getBackdropPromptHint, getBackdropTerm, getCameraFormat, getCameraFormatLabel, getCameraFormatPromptHint, getCameraFormatTerm, getCameraMotion, getCameraMotionLabel, getCameraMotionPromptHint, getCameraMotionTerm, getCategoriesForNodeType, getCharacterFx, getCharacterFxLabel, getCharacterFxPromptHint, getCharacterFxTerm, getCharacterMotion, getCharacterMotionBindings, getCharacterMotionDiagnostics, getCharacterMotionLabel, getCharacterMotionPromptHint, getCharacterMotionTerm, getColorLook, getColorLookLabel, getColorLookPromptHint, getColorLookTerm, getCompositionEffect, getCompositionEffectLabel, getCompositionEffectPromptHint, getCompositionEffectTerm, getEffectiveSunoCustomMode, getEra, getEraLabel, getEraPromptHint, getEraTerm, getExposure, getExposureLabel, getExposurePromptHint, getExposureTerm, getFactoryPresets, getFactorySnippets, getFraming, getFramingCategoryLimit, getFramingLabel, getFramingPromptHint, getFramingTerm, getHeldProp, getHeldPropLabel, getHeldPropPromptHint, getHeldPropTerm, getIdentityLockClause, getInstrument, getInstrumentTerm, getLens, getLensLabel, getLensPromptHint, getLensTerm, getLighting, getLightingLabel, getLightingPromptHint, getLightingTerm, getLoopSubject, getLoopSubjectLabel, getLoopSubjectPromptHint, getLoopSubjectTerm, getMaterial, getMaterialLabel, getMaterialPromptHint, getMaterialTerm, getMinorAgeHintStrings, getMood, getMoodLabel, getMoodPromptHint, getMoodTerm, getMusicEmotion, getMusicEmotionTerm, getMusicEnergy, getMusicEnergyTerm, getMusicEra, getMusicEraTerm, getMusicGenre, getMusicGenreLabel, getMusicGenreTerm, getMusicSubgenre, getMusicSubgenreTerm, getMusicVibe, getMusicVibeTerm, getParameterPromptHint, getPerson, getPersonDimensionLimit, getPersonLabel, getPersonPromptHint, getPersonTerm, getPhotoGenre, getPhotoGenreLabel, getPhotoGenrePromptHint, getPhotoGenreTerm, getPhotographer, getPhotographerLabel, getPhotographerPromptHint, getPhotographerTerm, getPickerAnalyzer, getPickerCatalog, getPickerWiring, getPose, getPoseLabel, getPosePromptHint, getPoseTerm, getPostProcessEffect, getPostProcessEffectLabel, getPostProcessEffectPromptHint, getPostProcessEffectTerm, getProductionStyle, getProductionStyleTerm, getPromptDoctrine, getPromptFields, getPromptTips, getRegisteredCatalogPacks, getRegisteredPeople, getRegisteredPersonDimensionLabels, getRegisteredPersonDimensionOrder, getRegisteredPersonFieldByDimension, getRegisteredPickerCatalogs, getRegisteredSubjectKeys, getRenderQuality, getRenderQualityLabel, getRenderQualityPromptHint, getRenderQualityTerm, getSetting, getSettingLabel, getSettingPromptHint, getSettingTerm, getSingingStyle, getSingingStyleTerm, getSnippetMedia, getStyle, getStyleLabel, getStylePreset, getStylePromptHint, getStyleTerm, getStyling, getStylingDimensionLimit, getStylingLabel, getStylingPromptHint, getStylingTerm, getTemporal, getTemporalLabel, getTemporalPromptHint, getTemporalTerm, getTransition, getTransitionLabel, getTransitionPromptHint, getTransitionTerm, getVocalPresence, getVocalPresenceTerm, getVoiceAccent, getVoiceAccentTerm, getVoiceAge, getVoiceAgeTerm, getVoiceArchetype, getVoiceArchetypeTerm, getVoiceEmotion, getVoiceEmotionTerm, getVoiceGender, getVoiceGenderTerm, getVoiceLanguage, getVoiceLanguageTerm, getVoicePace, getVoicePaceTerm, getVoiceTimbre, getVoiceTimbreTerm, getWardrobeEntriesByDimension, getWardrobeEntry, getWardrobePromptHint, groupFactoryPresets, hasCatalogPacksFor, hasScene3DLayoutScopingLine, hasUpstreamCharacter, identityRefsSentence, insertBeforeStyleSection, isAnalyzablePicker, isDeniedStyleId, isInstantTransition, isInstrumentalVocal, isMinorAge, isSuspiciousDerivedTerm, isVantageFraming, isWizardSupported, joinHintFragments, joinPromptHints, joinPromptParts, keepableDirectionHints, listPickerCatalogs, migratePersonValue, modeForFamily, nodeHasInlinePrompt, nodeHasPromptField, nodeSupportsPromptAffixes, normalizeSubjectFields, overlayEntry, partitionStyleClauses, personPacksVersion, pickerFanoutTargets, planFrameDelivery, projectAllCatalogs, projectPickerCatalog, promptAffixCoreField, promptBindsFirstFrame, promptFieldCarriesAffixes, promptPartSeparator, readDirectionFields, readStructuredFields, readSubjectFields, referenceDescriptionLine, referenceRulesBlock, registerCatalogPack, registerPersonPack, renderDescribedReferenceLines, renderDirectionHintClauses, renderDirectionHints, renderReferenceCaptionLines, renderScene3DLayoutScopingLine, renderStructuredFields, renderStyleSection, renderSubjectHints, renderTransitionBases, resetCatalogPacks, resetPersonPacks, resolveBrandInput, resolveCharacterMentions, resolveGeminiOmniI2vInputs, resolveLocationMentions, resolvePrompt, resolveRefIdTokens, resolveReferenceTokens, resolveSeedance2Inputs, resolveTemplate, resolveTerm, resolveVeoI2vInputs, resolveVideoReferenceCore, scene3DLayoutVideoCaptions, sectionedClauseCosts, setComposedCatalogResolver, splitStyleSection, styleSectionFromClauses, styleSlotFor, subjectFieldsForSurface, subscribeCatalogPacks, summarizePickerCatalogs, toIdentityLockMode, truncateForField, truncateText, withForcedIdentityLock };
|
|
8405
|
+
/** The dimension fields of each music / voice catalog that carries art. */
|
|
8406
|
+
interface SoundArtFields {
|
|
8407
|
+
"music-genre": "genre" | "subgenre" | "era";
|
|
8408
|
+
"music-mood": "energy" | "emotion" | "vibe";
|
|
8409
|
+
instrumentation: "instruments" | "production" | "vocalPresence" | "singingStyle";
|
|
8410
|
+
"voice-character": "age" | "gender" | "language" | "accent" | "timbre";
|
|
8411
|
+
"voice-delivery": "pace" | "emotion" | "archetype";
|
|
8412
|
+
}
|
|
8413
|
+
type SoundArtCatalogId = keyof SoundArtFields;
|
|
8414
|
+
/** `emoji/<slug>` or `flags/<code>` — a key of SOUND_ART_FILES. */
|
|
8415
|
+
type SoundArtKey = `emoji/${string}` | `flags/${string}`;
|
|
8416
|
+
type SoundArtMap = {
|
|
8417
|
+
readonly [C in SoundArtCatalogId]: {
|
|
8418
|
+
readonly [F in SoundArtFields[C]]: Readonly<Record<string, SoundArtKey>>;
|
|
8419
|
+
};
|
|
8420
|
+
};
|
|
8421
|
+
|
|
8422
|
+
declare const SOUND_ART: {
|
|
8423
|
+
readonly "music-genre": {
|
|
8424
|
+
readonly genre: {
|
|
8425
|
+
readonly "hip-hop": "emoji/microphone_3d";
|
|
8426
|
+
readonly rnb: "emoji/rose_3d";
|
|
8427
|
+
readonly soul: "emoji/studio_microphone_3d";
|
|
8428
|
+
readonly funk: "emoji/man_dancing_3d_default";
|
|
8429
|
+
readonly lofi: "emoji/headphone_3d";
|
|
8430
|
+
readonly electronic: "emoji/control_knobs_3d";
|
|
8431
|
+
readonly industrial: "emoji/factory_3d";
|
|
8432
|
+
readonly "ambient-genre": "emoji/milky_way_3d";
|
|
8433
|
+
readonly experimental: "emoji/test_tube_3d";
|
|
8434
|
+
readonly chill: "emoji/tropical_drink_3d";
|
|
8435
|
+
readonly disco: "emoji/mirror_ball_3d";
|
|
8436
|
+
readonly pop: "emoji/glowing_star_3d";
|
|
8437
|
+
readonly anime: "emoji/cherry_blossom_3d";
|
|
8438
|
+
readonly rock: "emoji/guitar_3d";
|
|
8439
|
+
readonly punk: "emoji/safety_pin_3d";
|
|
8440
|
+
readonly metal: "emoji/sign_of_the_horns_3d_default";
|
|
8441
|
+
readonly jazz: "emoji/saxophone_3d";
|
|
8442
|
+
readonly blues: "emoji/blue_heart_3d";
|
|
8443
|
+
readonly country: "emoji/cowboy_hat_face_3d";
|
|
8444
|
+
readonly folk: "emoji/banjo_3d";
|
|
8445
|
+
readonly gospel: "emoji/dove_3d";
|
|
8446
|
+
readonly reggae: "emoji/palm_tree_3d";
|
|
8447
|
+
readonly latin: "emoji/maracas_3d";
|
|
8448
|
+
readonly world: "emoji/globe_showing_europe-africa_3d";
|
|
8449
|
+
readonly classical: "emoji/violin_3d";
|
|
8450
|
+
readonly cinematic: "emoji/clapper_board_3d";
|
|
8451
|
+
readonly "video-game": "emoji/video_game_3d";
|
|
8452
|
+
readonly holiday: "emoji/christmas_tree_3d";
|
|
8453
|
+
readonly children: "emoji/teddy_bear_3d";
|
|
8454
|
+
};
|
|
8455
|
+
readonly subgenre: {
|
|
8456
|
+
readonly trap: "emoji/money_bag_3d";
|
|
8457
|
+
readonly "boom-bap": "emoji/radio_3d";
|
|
8458
|
+
readonly "lo-fi-hip-hop": "emoji/headphone_3d";
|
|
8459
|
+
readonly drill: "emoji/skull_3d";
|
|
8460
|
+
readonly "uk-drill": "emoji/guard_3d_default";
|
|
8461
|
+
readonly "cloud-rap": "emoji/cloud_3d";
|
|
8462
|
+
readonly "conscious-rap": "emoji/brain_3d";
|
|
8463
|
+
readonly "gangsta-rap": "emoji/smiling_face_with_sunglasses_3d";
|
|
8464
|
+
readonly "jazz-rap": "emoji/trumpet_3d";
|
|
8465
|
+
readonly "alt-hip-hop": "emoji/alien_3d";
|
|
8466
|
+
readonly phonk: "emoji/skull_and_crossbones_3d";
|
|
8467
|
+
readonly "drift-phonk": "emoji/racing_car_3d";
|
|
8468
|
+
readonly "uk-hip-hop": "emoji/bus_3d";
|
|
8469
|
+
readonly grime: "emoji/cityscape_3d";
|
|
8470
|
+
readonly pluggnb: "emoji/electric_plug_3d";
|
|
8471
|
+
readonly rage: "emoji/fire_3d";
|
|
8472
|
+
readonly "jersey-club": "emoji/party_popper_3d";
|
|
8473
|
+
readonly "brazilian-funk": "emoji/parrot_3d";
|
|
8474
|
+
readonly moombahton: "emoji/pineapple_3d";
|
|
8475
|
+
readonly "glitch-hop": "emoji/robot_3d";
|
|
8476
|
+
readonly "neo-soul": "emoji/sparkles_3d";
|
|
8477
|
+
readonly "contemporary-rnb": "emoji/rose_3d";
|
|
8478
|
+
readonly "alt-rnb": "emoji/crescent_moon_3d";
|
|
8479
|
+
readonly "neo-rnb": "emoji/purple_heart_3d";
|
|
8480
|
+
readonly "quiet-storm": "emoji/cloud_with_lightning_and_rain_3d";
|
|
8481
|
+
readonly "new-jack-swing": "emoji/videocassette_3d";
|
|
8482
|
+
readonly "future-soul": "emoji/crystal_ball_3d";
|
|
8483
|
+
readonly motown: "emoji/automobile_3d";
|
|
8484
|
+
readonly "northern-soul": "emoji/man_dancing_3d_default";
|
|
8485
|
+
readonly "southern-soul": "emoji/sun_3d";
|
|
8486
|
+
readonly "psychedelic-soul": "emoji/rainbow_3d";
|
|
8487
|
+
readonly "p-funk": "emoji/flying_saucer_3d";
|
|
8488
|
+
readonly "g-funk": "emoji/palm_tree_3d";
|
|
8489
|
+
readonly "electro-funk": "emoji/high_voltage_3d";
|
|
8490
|
+
readonly "jazz-funk": "emoji/trumpet_3d";
|
|
8491
|
+
readonly "lofi-beats": "emoji/headphone_3d";
|
|
8492
|
+
readonly "lofi-jazz": "emoji/hot_beverage_3d";
|
|
8493
|
+
readonly chillhop: "emoji/cat_3d";
|
|
8494
|
+
readonly house: "emoji/house_3d";
|
|
8495
|
+
readonly "deep-house": "emoji/water_wave_3d";
|
|
8496
|
+
readonly "tech-house": "emoji/gear_3d";
|
|
8497
|
+
readonly "afro-house": "emoji/drum_3d";
|
|
8498
|
+
readonly amapiano: "emoji/musical_keyboard_3d";
|
|
8499
|
+
readonly techno: "emoji/robot_3d";
|
|
8500
|
+
readonly "minimal-techno": "emoji/control_knobs_3d";
|
|
8501
|
+
readonly "melodic-techno": "emoji/musical_notes_3d";
|
|
8502
|
+
readonly "drum-and-bass": "emoji/drum_3d";
|
|
8503
|
+
readonly jungle: "emoji/leopard_3d";
|
|
8504
|
+
readonly dubstep: "emoji/loudspeaker_3d";
|
|
8505
|
+
readonly "future-bass": "emoji/sparkles_3d";
|
|
8506
|
+
readonly "trap-edm": "emoji/collision_3d";
|
|
8507
|
+
readonly synthwave: "emoji/sunset_3d";
|
|
8508
|
+
readonly outrun: "emoji/racing_car_3d";
|
|
8509
|
+
readonly vaporwave: "emoji/moai_3d";
|
|
8510
|
+
readonly trance: "emoji/dizzy_3d";
|
|
8511
|
+
readonly psytrance: "emoji/mushroom_3d";
|
|
8512
|
+
readonly ambient: "emoji/milky_way_3d";
|
|
8513
|
+
readonly idm: "emoji/brain_3d";
|
|
8514
|
+
readonly breakbeat: "emoji/drum_3d";
|
|
8515
|
+
readonly "garage-uk": "emoji/bus_3d";
|
|
8516
|
+
readonly hardstyle: "emoji/hammer_3d";
|
|
8517
|
+
readonly footwork: "emoji/running_shoe_3d";
|
|
8518
|
+
readonly "indie-electronic": "emoji/light_bulb_3d";
|
|
8519
|
+
readonly ebm: "emoji/gear_3d";
|
|
8520
|
+
readonly "industrial-metal": "emoji/nut_and_bolt_3d";
|
|
8521
|
+
readonly noise: "emoji/speaker_high_volume_3d";
|
|
8522
|
+
readonly "dark-ambient": "emoji/new_moon_3d";
|
|
8523
|
+
readonly drone: "emoji/fog_3d";
|
|
8524
|
+
readonly "new-age": "emoji/lotus_3d";
|
|
8525
|
+
readonly "space-music": "emoji/ringed_planet_3d";
|
|
8526
|
+
readonly "musique-concrete": "emoji/brick_3d";
|
|
8527
|
+
readonly "noise-music": "emoji/speaker_high_volume_3d";
|
|
8528
|
+
readonly "free-improv": "emoji/artist_palette_3d";
|
|
8529
|
+
readonly "sound-art": "emoji/framed_picture_3d";
|
|
8530
|
+
readonly chillout: "emoji/beach_with_umbrella_3d";
|
|
8531
|
+
readonly chillwave: "emoji/water_wave_3d";
|
|
8532
|
+
readonly downtempo: "emoji/snail_3d";
|
|
8533
|
+
readonly "trip-hop": "emoji/crescent_moon_3d";
|
|
8534
|
+
readonly "italo-disco": "emoji/pizza_3d";
|
|
8535
|
+
readonly "nu-disco": "emoji/mirror_ball_3d";
|
|
8536
|
+
readonly "euro-disco": "emoji/glowing_star_3d";
|
|
8537
|
+
readonly "synth-pop": "emoji/musical_keyboard_3d";
|
|
8538
|
+
readonly "dream-pop": "emoji/cloud_3d";
|
|
8539
|
+
readonly "indie-pop": "emoji/cherries_3d";
|
|
8540
|
+
readonly "k-pop": "emoji/sparkling_heart_3d";
|
|
8541
|
+
readonly "j-pop": "emoji/cherry_blossom_3d";
|
|
8542
|
+
readonly "art-pop": "emoji/artist_palette_3d";
|
|
8543
|
+
readonly "bubblegum-pop": "emoji/lollipop_3d";
|
|
8544
|
+
readonly "chamber-pop": "emoji/violin_3d";
|
|
8545
|
+
readonly "electro-pop": "emoji/high_voltage_3d";
|
|
8546
|
+
readonly hyperpop: "emoji/unicorn_3d";
|
|
8547
|
+
readonly "power-pop": "emoji/flexed_biceps_3d_default";
|
|
8548
|
+
readonly "bedroom-pop": "emoji/bed_3d";
|
|
8549
|
+
readonly "anime-opening": "emoji/japanese_dolls_3d";
|
|
8550
|
+
readonly "j-rock": "emoji/guitar_3d";
|
|
8551
|
+
readonly "city-pop": "emoji/night_with_stars_3d";
|
|
8552
|
+
readonly "classic-rock": "emoji/guitar_3d";
|
|
8553
|
+
readonly "hard-rock": "emoji/rock_3d";
|
|
8554
|
+
readonly "indie-rock": "emoji/sunflower_3d";
|
|
8555
|
+
readonly "punk-rock": "emoji/safety_pin_3d";
|
|
8556
|
+
readonly "alt-rock": "emoji/radio_3d";
|
|
8557
|
+
readonly "psychedelic-rock": "emoji/rainbow_3d";
|
|
8558
|
+
readonly "garage-rock": "emoji/wrench_3d";
|
|
8559
|
+
readonly "surf-rock": "emoji/person_surfing_3d_default";
|
|
8560
|
+
readonly "prog-rock": "emoji/hourglass_done_3d";
|
|
8561
|
+
readonly "post-rock": "emoji/mountain_3d";
|
|
8562
|
+
readonly shoegaze: "emoji/fog_3d";
|
|
8563
|
+
readonly "math-rock": "emoji/abacus_3d";
|
|
8564
|
+
readonly "stoner-rock": "emoji/herb_3d";
|
|
8565
|
+
readonly emo: "emoji/black_heart_3d";
|
|
8566
|
+
readonly "hardcore-punk": "emoji/collision_3d";
|
|
8567
|
+
readonly "post-punk": "emoji/bat_3d";
|
|
8568
|
+
readonly "pop-punk": "emoji/skateboard_3d";
|
|
8569
|
+
readonly "skate-punk": "emoji/skateboard_3d";
|
|
8570
|
+
readonly "anarcho-punk": "emoji/fire_3d";
|
|
8571
|
+
readonly "heavy-metal": "emoji/sign_of_the_horns_3d_default";
|
|
8572
|
+
readonly "death-metal": "emoji/skull_3d";
|
|
8573
|
+
readonly "black-metal": "emoji/bat_3d";
|
|
8574
|
+
readonly "thrash-metal": "emoji/tornado_3d";
|
|
8575
|
+
readonly "doom-metal": "emoji/coffin_3d";
|
|
8576
|
+
readonly "power-metal": "emoji/crossed_swords_3d";
|
|
8577
|
+
readonly "prog-metal": "emoji/hourglass_done_3d";
|
|
8578
|
+
readonly metalcore: "emoji/collision_3d";
|
|
8579
|
+
readonly deathcore: "emoji/skull_and_crossbones_3d";
|
|
8580
|
+
readonly "nu-metal": "emoji/chains_3d";
|
|
8581
|
+
readonly "sludge-metal": "emoji/volcano_3d";
|
|
8582
|
+
readonly "symphonic-metal": "emoji/violin_3d";
|
|
8583
|
+
readonly bebop: "emoji/saxophone_3d";
|
|
8584
|
+
readonly "smooth-jazz": "emoji/wine_glass_3d";
|
|
8585
|
+
readonly fusion: "emoji/atom_symbol_3d";
|
|
8586
|
+
readonly "cool-jazz": "emoji/smiling_face_with_sunglasses_3d";
|
|
8587
|
+
readonly "free-jazz": "emoji/bird_3d";
|
|
8588
|
+
readonly swing: "emoji/woman_dancing_3d_default";
|
|
8589
|
+
readonly "big-band": "emoji/trumpet_3d";
|
|
8590
|
+
readonly dixieland: "emoji/top_hat_3d";
|
|
8591
|
+
readonly "latin-jazz": "emoji/maracas_3d";
|
|
8592
|
+
readonly "nu-jazz": "emoji/cocktail_glass_3d";
|
|
8593
|
+
readonly "acid-jazz": "emoji/test_tube_3d";
|
|
8594
|
+
readonly "delta-blues": "emoji/canoe_3d";
|
|
8595
|
+
readonly "chicago-blues": "emoji/cityscape_3d";
|
|
8596
|
+
readonly "electric-blues": "emoji/high_voltage_3d";
|
|
8597
|
+
readonly "jump-blues": "emoji/man_dancing_3d_default";
|
|
8598
|
+
readonly "blues-rock": "emoji/guitar_3d";
|
|
8599
|
+
readonly "country-pop": "emoji/cowboy_hat_face_3d";
|
|
8600
|
+
readonly "outlaw-country": "emoji/cactus_3d";
|
|
8601
|
+
readonly "alt-country": "emoji/horse_3d";
|
|
8602
|
+
readonly "country-rock": "emoji/pickup_truck_3d";
|
|
8603
|
+
readonly americana: "emoji/fuel_pump_3d";
|
|
8604
|
+
readonly "honky-tonk": "emoji/beer_mug_3d";
|
|
8605
|
+
readonly bluegrass: "emoji/banjo_3d";
|
|
8606
|
+
readonly "indie-folk": "emoji/evergreen_tree_3d";
|
|
8607
|
+
readonly "traditional-folk": "emoji/scroll_3d";
|
|
8608
|
+
readonly "celtic-folk": "emoji/shamrock_3d";
|
|
8609
|
+
readonly "freak-folk": "emoji/mushroom_3d";
|
|
8610
|
+
readonly "folk-rock": "emoji/guitar_3d";
|
|
8611
|
+
readonly "anti-folk": "emoji/upside-down_face_3d";
|
|
8612
|
+
readonly "traditional-gospel": "emoji/dove_3d";
|
|
8613
|
+
readonly "contemporary-gospel": "emoji/sparkles_3d";
|
|
8614
|
+
readonly "urban-gospel": "emoji/cityscape_3d";
|
|
8615
|
+
readonly "roots-reggae": "emoji/seedling_3d";
|
|
8616
|
+
readonly dub: "emoji/speaker_high_volume_3d";
|
|
8617
|
+
readonly dancehall: "emoji/woman_dancing_3d_default";
|
|
8618
|
+
readonly ska: "emoji/palm_tree_3d";
|
|
8619
|
+
readonly rocksteady: "emoji/rock_3d";
|
|
8620
|
+
readonly salsa: "emoji/hot_pepper_3d";
|
|
8621
|
+
readonly "bossa-nova": "emoji/beach_with_umbrella_3d";
|
|
8622
|
+
readonly reggaeton: "emoji/fire_3d";
|
|
8623
|
+
readonly cumbia: "emoji/maracas_3d";
|
|
8624
|
+
readonly merengue: "emoji/woman_dancing_3d_default";
|
|
8625
|
+
readonly bachata: "emoji/rose_3d";
|
|
8626
|
+
readonly tango: "emoji/man_in_tuxedo_3d_default";
|
|
8627
|
+
readonly mariachi: "emoji/trumpet_3d";
|
|
8628
|
+
readonly samba: "emoji/parrot_3d";
|
|
8629
|
+
readonly flamenco: "emoji/hibiscus_3d";
|
|
8630
|
+
readonly "latin-pop": "emoji/sun_3d";
|
|
8631
|
+
readonly "latin-trap": "emoji/money_bag_3d";
|
|
8632
|
+
readonly afrobeat: "emoji/drum_3d";
|
|
8633
|
+
readonly afrobeats: "emoji/woman_dancing_3d_default";
|
|
8634
|
+
readonly highlife: "emoji/sun_3d";
|
|
8635
|
+
readonly "amapiano-w": "emoji/musical_keyboard_3d";
|
|
8636
|
+
readonly bhangra: "emoji/man_dancing_3d_default";
|
|
8637
|
+
readonly bollywood: "emoji/clapper_board_3d";
|
|
8638
|
+
readonly "indian-classical": "emoji/lotus_3d";
|
|
8639
|
+
readonly klezmer: "emoji/violin_3d";
|
|
8640
|
+
readonly balkan: "emoji/trumpet_3d";
|
|
8641
|
+
readonly "middle-eastern": "emoji/camel_3d";
|
|
8642
|
+
readonly celtic: "emoji/shamrock_3d";
|
|
8643
|
+
readonly gamelan: "emoji/bell_3d";
|
|
8644
|
+
readonly "throat-singing": "emoji/mountain_3d";
|
|
8645
|
+
readonly baroque: "emoji/violin_3d";
|
|
8646
|
+
readonly romantic: "emoji/rose_3d";
|
|
8647
|
+
readonly "modern-classical": "emoji/musical_score_3d";
|
|
8648
|
+
readonly "minimalist-classical": "emoji/leaf_fluttering_in_wind_3d";
|
|
8649
|
+
readonly choral: "emoji/busts_in_silhouette_3d";
|
|
8650
|
+
readonly "chamber-music": "emoji/candle_3d";
|
|
8651
|
+
readonly opera: "emoji/performing_arts_3d";
|
|
8652
|
+
readonly "early-music": "emoji/scroll_3d";
|
|
8653
|
+
readonly "epic-orchestral": "emoji/mountain_3d";
|
|
8654
|
+
readonly "minimalist-score": "emoji/musical_score_3d";
|
|
8655
|
+
readonly "trailer-music": "emoji/film_projector_3d";
|
|
8656
|
+
readonly "score-action": "emoji/collision_3d";
|
|
8657
|
+
readonly "score-horror": "emoji/ghost_3d";
|
|
8658
|
+
readonly "score-romance": "emoji/smiling_face_with_hearts_3d";
|
|
8659
|
+
readonly "score-sci-fi": "emoji/flying_saucer_3d";
|
|
8660
|
+
readonly "score-fantasy": "emoji/dragon_3d";
|
|
8661
|
+
readonly "score-noir": "emoji/detective_3d_default";
|
|
8662
|
+
readonly "score-documentary": "emoji/clapper_board_3d";
|
|
8663
|
+
readonly chiptune: "emoji/joystick_3d";
|
|
8664
|
+
readonly "8bit": "emoji/alien_monster_3d";
|
|
8665
|
+
readonly "16bit": "emoji/video_game_3d";
|
|
8666
|
+
readonly "vgm-orchestral": "emoji/violin_3d";
|
|
8667
|
+
readonly "vgm-synth": "emoji/joystick_3d";
|
|
8668
|
+
readonly christmas: "emoji/christmas_tree_3d";
|
|
8669
|
+
readonly winter: "emoji/snowflake_3d";
|
|
8670
|
+
readonly festive: "emoji/party_popper_3d";
|
|
8671
|
+
readonly lullaby: "emoji/baby_bottle_3d";
|
|
8672
|
+
readonly "nursery-rhyme": "emoji/teddy_bear_3d";
|
|
8673
|
+
readonly "kids-pop": "emoji/balloon_3d";
|
|
8674
|
+
};
|
|
8675
|
+
readonly era: {
|
|
8676
|
+
readonly "1920s": "emoji/cocktail_glass_3d";
|
|
8677
|
+
readonly "1930s": "emoji/trumpet_3d";
|
|
8678
|
+
readonly "1940s": "emoji/radio_3d";
|
|
8679
|
+
readonly "1950s": "emoji/automobile_3d";
|
|
8680
|
+
readonly "1960s": "emoji/peace_symbol_3d";
|
|
8681
|
+
readonly "1970s": "emoji/mirror_ball_3d";
|
|
8682
|
+
readonly "1980s": "emoji/videocassette_3d";
|
|
8683
|
+
readonly "1990s": "emoji/pager_3d";
|
|
8684
|
+
readonly "2000s": "emoji/mobile_phone_3d";
|
|
8685
|
+
readonly "2010s": "emoji/headphone_3d";
|
|
8686
|
+
readonly modern: "emoji/sparkles_3d";
|
|
8687
|
+
readonly futurist: "emoji/rocket_3d";
|
|
8688
|
+
};
|
|
8689
|
+
};
|
|
8690
|
+
readonly "music-mood": {
|
|
8691
|
+
readonly energy: {
|
|
8692
|
+
readonly low: "emoji/low_battery_3d";
|
|
8693
|
+
readonly mellow: "emoji/hot_beverage_3d";
|
|
8694
|
+
readonly gentle: "emoji/feather_3d";
|
|
8695
|
+
readonly moderate: "emoji/person_walking_3d_default";
|
|
8696
|
+
readonly building: "emoji/chart_increasing_3d";
|
|
8697
|
+
readonly upbeat: "emoji/balloon_3d";
|
|
8698
|
+
readonly driving: "emoji/automobile_3d";
|
|
8699
|
+
readonly high: "emoji/high_voltage_3d";
|
|
8700
|
+
readonly explosive: "emoji/collision_3d";
|
|
8701
|
+
readonly frenetic: "emoji/tornado_3d";
|
|
8702
|
+
readonly pulsing: "emoji/beating_heart_3d";
|
|
8703
|
+
readonly throbbing: "emoji/drum_3d";
|
|
8704
|
+
readonly simmering: "emoji/hot_springs_3d";
|
|
8705
|
+
readonly ferocious: "emoji/lion_3d";
|
|
8706
|
+
};
|
|
8707
|
+
readonly emotion: {
|
|
8708
|
+
readonly happy: "emoji/smiling_face_with_smiling_eyes_3d";
|
|
8709
|
+
readonly joyful: "emoji/grinning_face_with_big_eyes_3d";
|
|
8710
|
+
readonly euphoric: "emoji/star-struck_3d";
|
|
8711
|
+
readonly melancholic: "emoji/cloud_with_rain_3d";
|
|
8712
|
+
readonly sad: "emoji/crying_face_3d";
|
|
8713
|
+
readonly longing: "emoji/sunset_3d";
|
|
8714
|
+
readonly lonely: "emoji/pensive_face_3d";
|
|
8715
|
+
readonly angry: "emoji/pouting_face_3d";
|
|
8716
|
+
readonly defiant: "emoji/raised_fist_3d_default";
|
|
8717
|
+
readonly triumphant: "emoji/trophy_3d";
|
|
8718
|
+
readonly victorious: "emoji/1st_place_medal_3d";
|
|
8719
|
+
readonly tender: "emoji/two_hearts_3d";
|
|
8720
|
+
readonly romantic: "emoji/smiling_face_with_hearts_3d";
|
|
8721
|
+
readonly haunting: "emoji/ghost_3d";
|
|
8722
|
+
readonly mysterious: "emoji/crystal_ball_3d";
|
|
8723
|
+
readonly menacing: "emoji/smiling_face_with_horns_3d";
|
|
8724
|
+
readonly playful: "emoji/kite_3d";
|
|
8725
|
+
readonly mischievous: "emoji/smirking_face_3d";
|
|
8726
|
+
readonly anxious: "emoji/anxious_face_with_sweat_3d";
|
|
8727
|
+
readonly fearful: "emoji/fearful_face_3d";
|
|
8728
|
+
readonly hopeful: "emoji/sunrise_3d";
|
|
8729
|
+
readonly inspirational: "emoji/glowing_star_3d";
|
|
8730
|
+
readonly nostalgic: "emoji/framed_picture_3d";
|
|
8731
|
+
readonly bittersweet: "emoji/lemon_3d";
|
|
8732
|
+
readonly peaceful: "emoji/dove_3d";
|
|
8733
|
+
readonly contemplative: "emoji/thinking_face_3d";
|
|
8734
|
+
readonly ethereal: "emoji/bubbles_3d";
|
|
8735
|
+
readonly awe: "emoji/milky_way_3d";
|
|
8736
|
+
};
|
|
8737
|
+
readonly vibe: {
|
|
8738
|
+
readonly cinematic: "emoji/clapper_board_3d";
|
|
8739
|
+
readonly intimate: "emoji/candle_3d";
|
|
8740
|
+
readonly epic: "emoji/mountain_3d";
|
|
8741
|
+
readonly anthemic: "emoji/megaphone_3d";
|
|
8742
|
+
readonly "lo-fi": "emoji/videocassette_3d";
|
|
8743
|
+
readonly polished: "emoji/gem_stone_3d";
|
|
8744
|
+
readonly raw: "emoji/rock_3d";
|
|
8745
|
+
readonly dreamy: "emoji/cloud_3d";
|
|
8746
|
+
readonly hypnotic: "emoji/dizzy_3d";
|
|
8747
|
+
readonly dark: "emoji/new_moon_3d";
|
|
8748
|
+
readonly gritty: "emoji/brick_3d";
|
|
8749
|
+
readonly uplifting: "emoji/sunrise_over_mountains_3d";
|
|
8750
|
+
readonly tense: "emoji/grimacing_face_3d";
|
|
8751
|
+
readonly spacey: "emoji/rocket_3d";
|
|
8752
|
+
readonly psychedelic: "emoji/rainbow_3d";
|
|
8753
|
+
readonly noir: "emoji/detective_3d_default";
|
|
8754
|
+
readonly vintage: "emoji/radio_3d";
|
|
8755
|
+
readonly futuristic: "emoji/robot_3d";
|
|
8756
|
+
readonly suspenseful: "emoji/hourglass_not_done_3d";
|
|
8757
|
+
readonly espionage: "emoji/magnifying_glass_tilted_left_3d";
|
|
8758
|
+
readonly cold: "emoji/ice_3d";
|
|
8759
|
+
readonly clandestine: "emoji/locked_3d";
|
|
8760
|
+
};
|
|
8761
|
+
};
|
|
8762
|
+
readonly instrumentation: {
|
|
8763
|
+
readonly instruments: {
|
|
8764
|
+
readonly drums: "emoji/drum_3d";
|
|
8765
|
+
readonly "drum-machine": "emoji/control_knobs_3d";
|
|
8766
|
+
readonly "808": "emoji/loudspeaker_3d";
|
|
8767
|
+
readonly "live-drums": "emoji/drum_3d";
|
|
8768
|
+
readonly breakbeats: "emoji/repeat_button_3d";
|
|
8769
|
+
readonly "trap-drums": "emoji/drum_3d";
|
|
8770
|
+
readonly bongos: "emoji/drum_3d";
|
|
8771
|
+
readonly conga: "emoji/long_drum_3d";
|
|
8772
|
+
readonly djembe: "emoji/long_drum_3d";
|
|
8773
|
+
readonly timbales: "emoji/drum_3d";
|
|
8774
|
+
readonly tambourine: "emoji/drum_3d";
|
|
8775
|
+
readonly shaker: "emoji/maracas_3d";
|
|
8776
|
+
readonly cowbell: "emoji/bell_3d";
|
|
8777
|
+
readonly maracas: "emoji/maracas_3d";
|
|
8778
|
+
readonly claves: "emoji/chopsticks_3d";
|
|
8779
|
+
readonly marimba: "emoji/musical_keyboard_3d";
|
|
8780
|
+
readonly vibraphone: "emoji/musical_keyboard_3d";
|
|
8781
|
+
readonly xylophone: "emoji/musical_keyboard_3d";
|
|
8782
|
+
readonly glockenspiel: "emoji/bell_3d";
|
|
8783
|
+
readonly timpani: "emoji/drum_3d";
|
|
8784
|
+
readonly taiko: "emoji/drum_3d";
|
|
8785
|
+
readonly "frame-drum": "emoji/drum_3d";
|
|
8786
|
+
readonly cajon: "emoji/package_3d";
|
|
8787
|
+
readonly darbuka: "emoji/drum_3d";
|
|
8788
|
+
readonly piano: "emoji/musical_keyboard_3d";
|
|
8789
|
+
readonly "electric-piano": "emoji/musical_keyboard_3d";
|
|
8790
|
+
readonly wurlitzer: "emoji/musical_keyboard_3d";
|
|
8791
|
+
readonly rhodes: "emoji/musical_keyboard_3d";
|
|
8792
|
+
readonly clavinet: "emoji/musical_keyboard_3d";
|
|
8793
|
+
readonly organ: "emoji/musical_keyboard_3d";
|
|
8794
|
+
readonly "hammond-organ": "emoji/musical_keyboard_3d";
|
|
8795
|
+
readonly "pipe-organ": "emoji/classical_building_3d";
|
|
8796
|
+
readonly accordion: "emoji/accordion_3d";
|
|
8797
|
+
readonly mellotron: "emoji/videocassette_3d";
|
|
8798
|
+
readonly harpsichord: "emoji/musical_keyboard_3d";
|
|
8799
|
+
readonly celesta: "emoji/bell_3d";
|
|
8800
|
+
readonly synthesizer: "emoji/control_knobs_3d";
|
|
8801
|
+
readonly "lead-synth": "emoji/level_slider_3d";
|
|
8802
|
+
readonly "pluck-synth": "emoji/musical_note_3d";
|
|
8803
|
+
readonly pads: "emoji/cloud_3d";
|
|
8804
|
+
readonly arpeggiator: "emoji/musical_notes_3d";
|
|
8805
|
+
readonly vocoder: "emoji/robot_3d";
|
|
8806
|
+
readonly talkbox: "emoji/speaking_head_3d";
|
|
8807
|
+
readonly "modular-synth": "emoji/electric_plug_3d";
|
|
8808
|
+
readonly "fm-synth": "emoji/control_knobs_3d";
|
|
8809
|
+
readonly "wavetable-synth": "emoji/control_knobs_3d";
|
|
8810
|
+
readonly "stab-synth": "emoji/collision_3d";
|
|
8811
|
+
readonly "acoustic-guitar": "emoji/guitar_3d";
|
|
8812
|
+
readonly "electric-guitar": "emoji/guitar_3d";
|
|
8813
|
+
readonly "classical-guitar": "emoji/guitar_3d";
|
|
8814
|
+
readonly "12-string-guitar": "emoji/guitar_3d";
|
|
8815
|
+
readonly "pedal-steel": "emoji/guitar_3d";
|
|
8816
|
+
readonly "lap-steel": "emoji/guitar_3d";
|
|
8817
|
+
readonly dobro: "emoji/guitar_3d";
|
|
8818
|
+
readonly banjo: "emoji/banjo_3d";
|
|
8819
|
+
readonly mandolin: "emoji/guitar_3d";
|
|
8820
|
+
readonly ukulele: "emoji/guitar_3d";
|
|
8821
|
+
readonly "bass-guitar": "emoji/guitar_3d";
|
|
8822
|
+
readonly "synth-bass": "emoji/control_knobs_3d";
|
|
8823
|
+
readonly "sub-bass": "emoji/speaker_high_volume_3d";
|
|
8824
|
+
readonly "acoustic-bass": "emoji/guitar_3d";
|
|
8825
|
+
readonly "upright-bass": "emoji/violin_3d";
|
|
8826
|
+
readonly "fretless-bass": "emoji/guitar_3d";
|
|
8827
|
+
readonly "acid-bass": "emoji/test_tube_3d";
|
|
8828
|
+
readonly "wobble-bass": "emoji/water_wave_3d";
|
|
8829
|
+
readonly "reese-bass": "emoji/loudspeaker_3d";
|
|
8830
|
+
readonly brass: "emoji/trumpet_3d";
|
|
8831
|
+
readonly trumpet: "emoji/trumpet_3d";
|
|
8832
|
+
readonly trombone: "emoji/trumpet_3d";
|
|
8833
|
+
readonly "french-horn": "emoji/postal_horn_3d";
|
|
8834
|
+
readonly tuba: "emoji/trumpet_3d";
|
|
8835
|
+
readonly saxophone: "emoji/saxophone_3d";
|
|
8836
|
+
readonly flugelhorn: "emoji/trumpet_3d";
|
|
8837
|
+
readonly cornet: "emoji/trumpet_3d";
|
|
8838
|
+
readonly "muted-trumpet": "emoji/trumpet_3d";
|
|
8839
|
+
readonly flute: "emoji/flute_3d";
|
|
8840
|
+
readonly clarinet: "emoji/flute_3d";
|
|
8841
|
+
readonly harmonica: "emoji/flute_3d";
|
|
8842
|
+
readonly oboe: "emoji/flute_3d";
|
|
8843
|
+
readonly bassoon: "emoji/flute_3d";
|
|
8844
|
+
readonly "english-horn": "emoji/flute_3d";
|
|
8845
|
+
readonly piccolo: "emoji/flute_3d";
|
|
8846
|
+
readonly recorder: "emoji/flute_3d";
|
|
8847
|
+
readonly "pan-flute": "emoji/flute_3d";
|
|
8848
|
+
readonly strings: "emoji/violin_3d";
|
|
8849
|
+
readonly violin: "emoji/violin_3d";
|
|
8850
|
+
readonly viola: "emoji/violin_3d";
|
|
8851
|
+
readonly cello: "emoji/violin_3d";
|
|
8852
|
+
readonly "double-bass": "emoji/violin_3d";
|
|
8853
|
+
readonly harp: "emoji/violin_3d";
|
|
8854
|
+
readonly "pizzicato-strings": "emoji/violin_3d";
|
|
8855
|
+
readonly "staccato-strings": "emoji/violin_3d";
|
|
8856
|
+
readonly fiddle: "emoji/violin_3d";
|
|
8857
|
+
readonly sitar: "emoji/guitar_3d";
|
|
8858
|
+
readonly tabla: "emoji/drum_3d";
|
|
8859
|
+
readonly "steel-drum": "emoji/drum_3d";
|
|
8860
|
+
readonly kalimba: "emoji/musical_keyboard_3d";
|
|
8861
|
+
readonly bagpipes: "emoji/flute_3d";
|
|
8862
|
+
readonly didgeridoo: "emoji/flute_3d";
|
|
8863
|
+
readonly oud: "emoji/guitar_3d";
|
|
8864
|
+
readonly erhu: "emoji/violin_3d";
|
|
8865
|
+
readonly koto: "emoji/guitar_3d";
|
|
8866
|
+
readonly shakuhachi: "emoji/flute_3d";
|
|
8867
|
+
readonly shamisen: "emoji/guitar_3d";
|
|
8868
|
+
readonly duduk: "emoji/flute_3d";
|
|
8869
|
+
readonly balalaika: "emoji/guitar_3d";
|
|
8870
|
+
readonly bouzouki: "emoji/guitar_3d";
|
|
8871
|
+
readonly kora: "emoji/guitar_3d";
|
|
8872
|
+
readonly "hang-drum": "emoji/drum_3d";
|
|
8873
|
+
readonly kamancheh: "emoji/violin_3d";
|
|
8874
|
+
readonly ney: "emoji/flute_3d";
|
|
8875
|
+
readonly santur: "emoji/musical_keyboard_3d";
|
|
8876
|
+
};
|
|
8877
|
+
readonly production: {
|
|
8878
|
+
readonly polished: "emoji/gem_stone_3d";
|
|
8879
|
+
readonly "lo-fi": "emoji/videocassette_3d";
|
|
8880
|
+
readonly raw: "emoji/rock_3d";
|
|
8881
|
+
readonly vintage: "emoji/radio_3d";
|
|
8882
|
+
readonly modern: "emoji/laptop_3d";
|
|
8883
|
+
readonly minimalist: "emoji/leaf_fluttering_in_wind_3d";
|
|
8884
|
+
readonly "wall-of-sound": "emoji/brick_3d";
|
|
8885
|
+
readonly ambient: "emoji/fog_3d";
|
|
8886
|
+
readonly "garage-band": "emoji/hammer_and_wrench_3d";
|
|
8887
|
+
readonly "live-recording": "emoji/admission_tickets_3d";
|
|
8888
|
+
readonly "demo-quality": "emoji/pencil_3d";
|
|
8889
|
+
readonly "studio-pristine": "emoji/studio_microphone_3d";
|
|
8890
|
+
readonly "tape-saturated": "emoji/film_frames_3d";
|
|
8891
|
+
readonly "8-bit-retro": "emoji/alien_monster_3d";
|
|
8892
|
+
};
|
|
8893
|
+
readonly vocalPresence: {
|
|
8894
|
+
readonly instrumental: "emoji/musical_keyboard_3d";
|
|
8895
|
+
readonly "male-lead": "emoji/man_3d_default";
|
|
8896
|
+
readonly "female-lead": "emoji/woman_3d_default";
|
|
8897
|
+
readonly "androgynous-lead": "emoji/person_3d_default";
|
|
8898
|
+
readonly duet: "emoji/people_hugging_3d";
|
|
8899
|
+
readonly choir: "emoji/busts_in_silhouette_3d";
|
|
8900
|
+
readonly "gospel-choir": "emoji/folded_hands_3d_default";
|
|
8901
|
+
readonly "harmony-stack": "emoji/musical_notes_3d";
|
|
8902
|
+
readonly "rapper-lead": "emoji/microphone_3d";
|
|
8903
|
+
readonly "spoken-word": "emoji/speaking_head_3d";
|
|
8904
|
+
readonly "vocal-chops": "emoji/scissors_3d";
|
|
8905
|
+
readonly mixed: "emoji/busts_in_silhouette_3d";
|
|
8906
|
+
};
|
|
8907
|
+
readonly singingStyle: {
|
|
8908
|
+
readonly "pop-singing": "emoji/microphone_3d";
|
|
8909
|
+
readonly "rock-singing": "emoji/sign_of_the_horns_3d_default";
|
|
8910
|
+
readonly operatic: "emoji/performing_arts_3d";
|
|
8911
|
+
readonly "classical-vocals": "emoji/musical_score_3d";
|
|
8912
|
+
readonly rap: "emoji/microphone_3d";
|
|
8913
|
+
readonly "trap-melodic": "emoji/money_bag_3d";
|
|
8914
|
+
readonly growl: "emoji/wolf_3d";
|
|
8915
|
+
readonly scream: "emoji/face_screaming_in_fear_3d";
|
|
8916
|
+
readonly shout: "emoji/megaphone_3d";
|
|
8917
|
+
readonly falsetto: "emoji/bird_3d";
|
|
8918
|
+
readonly "head-voice": "emoji/feather_3d";
|
|
8919
|
+
readonly "chest-voice": "emoji/lion_3d";
|
|
8920
|
+
readonly belting: "emoji/loudspeaker_3d";
|
|
8921
|
+
readonly crooning: "emoji/rose_3d";
|
|
8922
|
+
readonly scat: "emoji/saxophone_3d";
|
|
8923
|
+
readonly yodeling: "emoji/snow-capped_mountain_3d";
|
|
8924
|
+
readonly "throat-singing": "emoji/mountain_3d";
|
|
8925
|
+
readonly melismatic: "emoji/musical_notes_3d";
|
|
8926
|
+
readonly autotuned: "emoji/robot_3d";
|
|
8927
|
+
readonly vocoded: "emoji/robot_3d";
|
|
8928
|
+
readonly "whisper-singing": "emoji/shushing_face_3d";
|
|
8929
|
+
readonly "breathy-singing": "emoji/wind_face_3d";
|
|
8930
|
+
readonly harmonized: "emoji/busts_in_silhouette_3d";
|
|
8931
|
+
readonly chant: "emoji/candle_3d";
|
|
8932
|
+
};
|
|
8933
|
+
};
|
|
8934
|
+
readonly "voice-character": {
|
|
8935
|
+
readonly age: {
|
|
8936
|
+
readonly infant: "emoji/baby_3d_default";
|
|
8937
|
+
readonly child: "emoji/child_3d_default";
|
|
8938
|
+
readonly preteen: "emoji/boy_3d_default";
|
|
8939
|
+
readonly teen: "emoji/girl_3d_default";
|
|
8940
|
+
readonly "young-adult": "emoji/woman_3d_default";
|
|
8941
|
+
readonly "middle-aged": "emoji/man_3d_default";
|
|
8942
|
+
readonly mature: "emoji/older_person_3d_default";
|
|
8943
|
+
readonly elderly: "emoji/old_woman_3d_default";
|
|
8944
|
+
};
|
|
8945
|
+
readonly gender: {
|
|
8946
|
+
readonly male: "emoji/man_3d_default";
|
|
8947
|
+
readonly female: "emoji/woman_3d_default";
|
|
8948
|
+
readonly androgynous: "emoji/person_3d_default";
|
|
8949
|
+
};
|
|
8950
|
+
readonly language: {
|
|
8951
|
+
readonly english: "flags/gb";
|
|
8952
|
+
readonly spanish: "flags/es";
|
|
8953
|
+
readonly french: "flags/fr";
|
|
8954
|
+
readonly german: "flags/de";
|
|
8955
|
+
readonly italian: "flags/it";
|
|
8956
|
+
readonly portuguese: "flags/pt";
|
|
8957
|
+
readonly dutch: "flags/nl";
|
|
8958
|
+
readonly russian: "flags/ru";
|
|
8959
|
+
readonly polish: "flags/pl";
|
|
8960
|
+
readonly ukrainian: "flags/ua";
|
|
8961
|
+
readonly swedish: "flags/se";
|
|
8962
|
+
readonly norwegian: "flags/no";
|
|
8963
|
+
readonly danish: "flags/dk";
|
|
8964
|
+
readonly finnish: "flags/fi";
|
|
8965
|
+
readonly greek: "flags/gr";
|
|
8966
|
+
readonly turkish: "flags/tr";
|
|
8967
|
+
readonly arabic: "flags/sa";
|
|
8968
|
+
readonly hebrew: "flags/il";
|
|
8969
|
+
readonly persian: "flags/ir";
|
|
8970
|
+
readonly hindi: "flags/in";
|
|
8971
|
+
readonly bengali: "flags/bd";
|
|
8972
|
+
readonly tamil: "flags/in";
|
|
8973
|
+
readonly urdu: "flags/pk";
|
|
8974
|
+
readonly tagalog: "flags/ph";
|
|
8975
|
+
readonly indonesian: "flags/id";
|
|
8976
|
+
readonly thai: "flags/th";
|
|
8977
|
+
readonly vietnamese: "flags/vn";
|
|
8978
|
+
readonly mandarin: "flags/cn";
|
|
8979
|
+
readonly cantonese: "flags/hk";
|
|
8980
|
+
readonly japanese: "flags/jp";
|
|
8981
|
+
readonly korean: "flags/kr";
|
|
8982
|
+
readonly swahili: "flags/tz";
|
|
8983
|
+
readonly yoruba: "flags/ng";
|
|
8984
|
+
};
|
|
8985
|
+
readonly accent: {
|
|
8986
|
+
readonly "general-american": "flags/us";
|
|
8987
|
+
readonly "southern-us": "emoji/cowboy_hat_face_3d";
|
|
8988
|
+
readonly "new-york": "emoji/statue_of_liberty_3d";
|
|
8989
|
+
readonly boston: "emoji/lobster_3d";
|
|
8990
|
+
readonly "midwestern-us": "emoji/ear_of_corn_3d";
|
|
8991
|
+
readonly chicago: "emoji/cityscape_3d";
|
|
8992
|
+
readonly appalachian: "emoji/mountain_3d";
|
|
8993
|
+
readonly canadian: "flags/ca";
|
|
8994
|
+
readonly "british-rp": "emoji/crown_3d";
|
|
8995
|
+
readonly cockney: "flags/gb";
|
|
8996
|
+
readonly "estuary-english": "flags/gb";
|
|
8997
|
+
readonly "northern-english": "flags/gb";
|
|
8998
|
+
readonly scouse: "flags/gb";
|
|
8999
|
+
readonly geordie: "flags/gb";
|
|
9000
|
+
readonly scottish: "flags/gb-sct";
|
|
9001
|
+
readonly irish: "flags/ie";
|
|
9002
|
+
readonly welsh: "flags/gb-wls";
|
|
9003
|
+
readonly australian: "flags/au";
|
|
9004
|
+
readonly "new-zealand": "flags/nz";
|
|
9005
|
+
readonly "south-african": "flags/za";
|
|
9006
|
+
readonly "indian-english": "flags/in";
|
|
9007
|
+
readonly caribbean: "flags/bb";
|
|
9008
|
+
readonly jamaican: "flags/jm";
|
|
9009
|
+
readonly "french-accented": "flags/fr";
|
|
9010
|
+
readonly "italian-accented": "flags/it";
|
|
9011
|
+
readonly "german-accented": "flags/de";
|
|
9012
|
+
readonly "dutch-accented": "flags/nl";
|
|
9013
|
+
readonly "russian-accented": "flags/ru";
|
|
9014
|
+
readonly "polish-accented": "flags/pl";
|
|
9015
|
+
readonly "spanish-accented": "flags/es";
|
|
9016
|
+
readonly "portuguese-accented": "flags/pt";
|
|
9017
|
+
readonly "scandinavian-accented": "flags/se";
|
|
9018
|
+
readonly "mexican-accented": "flags/mx";
|
|
9019
|
+
readonly "argentinian-accented": "flags/ar";
|
|
9020
|
+
readonly "japanese-accented": "flags/jp";
|
|
9021
|
+
readonly "korean-accented": "flags/kr";
|
|
9022
|
+
readonly "chinese-accented": "flags/cn";
|
|
9023
|
+
readonly "filipino-accented": "flags/ph";
|
|
9024
|
+
readonly "arabic-accented": "flags/sa";
|
|
9025
|
+
readonly "hebrew-accented": "flags/il";
|
|
9026
|
+
readonly "turkish-accented": "flags/tr";
|
|
9027
|
+
readonly "persian-accented": "flags/ir";
|
|
9028
|
+
readonly "nigerian-accented": "flags/ng";
|
|
9029
|
+
readonly "neutral-international": "emoji/globe_with_meridians_3d";
|
|
9030
|
+
readonly transatlantic: "emoji/passenger_ship_3d";
|
|
9031
|
+
};
|
|
9032
|
+
readonly timbre: {
|
|
9033
|
+
readonly warm: "emoji/hot_beverage_3d";
|
|
9034
|
+
readonly smooth: "emoji/butter_3d";
|
|
9035
|
+
readonly silky: "emoji/ribbon_3d";
|
|
9036
|
+
readonly velvety: "emoji/chocolate_bar_3d";
|
|
9037
|
+
readonly raspy: "emoji/cactus_3d";
|
|
9038
|
+
readonly gravelly: "emoji/rock_3d";
|
|
9039
|
+
readonly rough: "emoji/brick_3d";
|
|
9040
|
+
readonly husky: "emoji/dog_face_3d";
|
|
9041
|
+
readonly breathy: "emoji/wind_face_3d";
|
|
9042
|
+
readonly whispered: "emoji/shushing_face_3d";
|
|
9043
|
+
readonly nasal: "emoji/nose_3d_default";
|
|
9044
|
+
readonly twangy: "emoji/cowboy_hat_face_3d";
|
|
9045
|
+
readonly deep: "emoji/whale_3d";
|
|
9046
|
+
readonly booming: "emoji/loudspeaker_3d";
|
|
9047
|
+
readonly "high-pitched": "emoji/bird_3d";
|
|
9048
|
+
readonly squeaky: "emoji/mouse_3d";
|
|
9049
|
+
readonly bright: "emoji/sun_3d";
|
|
9050
|
+
readonly dark: "emoji/new_moon_3d";
|
|
9051
|
+
readonly youthful: "emoji/seedling_3d";
|
|
9052
|
+
readonly authoritative: "emoji/crown_3d";
|
|
9053
|
+
readonly sultry: "emoji/wine_glass_3d";
|
|
9054
|
+
readonly polished: "emoji/gem_stone_3d";
|
|
9055
|
+
};
|
|
9056
|
+
};
|
|
9057
|
+
readonly "voice-delivery": {
|
|
9058
|
+
readonly pace: {
|
|
9059
|
+
readonly "very-slow": "emoji/turtle_3d";
|
|
9060
|
+
readonly slow: "emoji/snail_3d";
|
|
9061
|
+
readonly drawl: "emoji/sloth_3d";
|
|
9062
|
+
readonly measured: "emoji/balance_scale_3d";
|
|
9063
|
+
readonly moderate: "emoji/person_walking_3d_default";
|
|
9064
|
+
readonly punchy: "emoji/boxing_glove_3d";
|
|
9065
|
+
readonly brisk: "emoji/person_running_3d_default";
|
|
9066
|
+
readonly rapid: "emoji/rabbit_3d";
|
|
9067
|
+
readonly "rapid-fire": "emoji/racing_car_3d";
|
|
9068
|
+
readonly frenetic: "emoji/tornado_3d";
|
|
9069
|
+
readonly halting: "emoji/stop_sign_3d";
|
|
9070
|
+
};
|
|
9071
|
+
readonly emotion: {
|
|
9072
|
+
readonly neutral: "emoji/neutral_face_3d";
|
|
9073
|
+
readonly cheerful: "emoji/grinning_face_3d";
|
|
9074
|
+
readonly warm: "emoji/smiling_face_3d";
|
|
9075
|
+
readonly reassuring: "emoji/handshake_3d";
|
|
9076
|
+
readonly compassionate: "emoji/hugging_face_3d";
|
|
9077
|
+
readonly somber: "emoji/pensive_face_3d";
|
|
9078
|
+
readonly stoic: "emoji/moai_3d";
|
|
9079
|
+
readonly urgent: "emoji/police_car_light_3d";
|
|
9080
|
+
readonly frantic: "emoji/exploding_head_3d";
|
|
9081
|
+
readonly anxious: "emoji/anxious_face_with_sweat_3d";
|
|
9082
|
+
readonly scared: "emoji/fearful_face_3d";
|
|
9083
|
+
readonly excited: "emoji/star-struck_3d";
|
|
9084
|
+
readonly enthusiastic: "emoji/party_popper_3d";
|
|
9085
|
+
readonly wistful: "emoji/sunset_3d";
|
|
9086
|
+
readonly melancholic: "emoji/cloud_with_rain_3d";
|
|
9087
|
+
readonly menacing: "emoji/smiling_face_with_horns_3d";
|
|
9088
|
+
readonly angry: "emoji/pouting_face_3d";
|
|
9089
|
+
readonly sarcastic: "emoji/face_with_rolling_eyes_3d";
|
|
9090
|
+
readonly smug: "emoji/smirking_face_3d";
|
|
9091
|
+
readonly playful: "emoji/winking_face_with_tongue_3d";
|
|
9092
|
+
readonly flirty: "emoji/winking_face_3d";
|
|
9093
|
+
readonly intimate: "emoji/candle_3d";
|
|
9094
|
+
readonly seductive: "emoji/kiss_mark_3d";
|
|
9095
|
+
};
|
|
9096
|
+
readonly archetype: {
|
|
9097
|
+
readonly newscaster: "emoji/newspaper_3d";
|
|
9098
|
+
readonly anchor: "emoji/television_3d";
|
|
9099
|
+
readonly "documentary-narrator": "emoji/globe_showing_europe-africa_3d";
|
|
9100
|
+
readonly "nature-narrator": "emoji/elephant_3d";
|
|
9101
|
+
readonly "fairy-tale-narrator": "emoji/castle_3d";
|
|
9102
|
+
readonly "audiobook-narrator": "emoji/open_book_3d";
|
|
9103
|
+
readonly podcaster: "emoji/studio_microphone_3d";
|
|
9104
|
+
readonly "talk-show-host": "emoji/couch_and_lamp_3d";
|
|
9105
|
+
readonly "radio-dj": "emoji/radio_3d";
|
|
9106
|
+
readonly asmr: "emoji/ear_3d_default";
|
|
9107
|
+
readonly sportscaster: "emoji/soccer_ball_3d";
|
|
9108
|
+
readonly auctioneer: "emoji/hammer_3d";
|
|
9109
|
+
readonly preacher: "emoji/scroll_3d";
|
|
9110
|
+
readonly politician: "emoji/classical_building_3d";
|
|
9111
|
+
readonly lawyer: "emoji/balance_scale_3d";
|
|
9112
|
+
readonly professor: "emoji/graduation_cap_3d";
|
|
9113
|
+
readonly infomercial: "emoji/shopping_cart_3d";
|
|
9114
|
+
readonly "voice-actor": "emoji/performing_arts_3d";
|
|
9115
|
+
readonly "drag-queen": "emoji/lipstick_3d";
|
|
9116
|
+
readonly villain: "emoji/smiling_face_with_horns_3d";
|
|
9117
|
+
readonly hero: "emoji/shield_3d";
|
|
9118
|
+
readonly mentor: "emoji/owl_3d";
|
|
9119
|
+
readonly comedian: "emoji/face_with_tears_of_joy_3d";
|
|
9120
|
+
readonly "stand-up-comic": "emoji/microphone_3d";
|
|
9121
|
+
readonly "drill-sergeant": "emoji/military_helmet_3d";
|
|
9122
|
+
readonly "meditation-guide": "emoji/lotus_3d";
|
|
9123
|
+
readonly "yoga-instructor": "emoji/person_in_lotus_position_3d_default";
|
|
9124
|
+
readonly "noir-detective": "emoji/detective_3d_default";
|
|
9125
|
+
readonly wizard: "emoji/magic_wand_3d";
|
|
9126
|
+
readonly robot: "emoji/robot_3d";
|
|
9127
|
+
readonly "ai-assistant": "emoji/speech_balloon_3d";
|
|
9128
|
+
readonly "siri-style": "emoji/mobile_phone_3d";
|
|
9129
|
+
};
|
|
9130
|
+
};
|
|
9131
|
+
};
|
|
9132
|
+
|
|
9133
|
+
declare const SOUND_ART_FILES: {
|
|
9134
|
+
readonly "emoji/1st_place_medal_3d": "emoji/1st_place_medal_3d.4d08ba51.webp";
|
|
9135
|
+
readonly "emoji/abacus_3d": "emoji/abacus_3d.eeac7578.webp";
|
|
9136
|
+
readonly "emoji/accordion_3d": "emoji/accordion_3d.9b033101.webp";
|
|
9137
|
+
readonly "emoji/admission_tickets_3d": "emoji/admission_tickets_3d.cee4c302.webp";
|
|
9138
|
+
readonly "emoji/alien_3d": "emoji/alien_3d.eae0ce4d.webp";
|
|
9139
|
+
readonly "emoji/alien_monster_3d": "emoji/alien_monster_3d.420a4a9a.webp";
|
|
9140
|
+
readonly "emoji/anxious_face_with_sweat_3d": "emoji/anxious_face_with_sweat_3d.2429a78c.webp";
|
|
9141
|
+
readonly "emoji/artist_palette_3d": "emoji/artist_palette_3d.c49f7f21.webp";
|
|
9142
|
+
readonly "emoji/atom_symbol_3d": "emoji/atom_symbol_3d.0ba7a673.webp";
|
|
9143
|
+
readonly "emoji/automobile_3d": "emoji/automobile_3d.b868a834.webp";
|
|
9144
|
+
readonly "emoji/baby_3d_default": "emoji/baby_3d_default.c475a442.webp";
|
|
9145
|
+
readonly "emoji/baby_bottle_3d": "emoji/baby_bottle_3d.66dd28fb.webp";
|
|
9146
|
+
readonly "emoji/balance_scale_3d": "emoji/balance_scale_3d.f362d0ed.webp";
|
|
9147
|
+
readonly "emoji/balloon_3d": "emoji/balloon_3d.e3c66ef0.webp";
|
|
9148
|
+
readonly "emoji/banjo_3d": "emoji/banjo_3d.4bc7d110.webp";
|
|
9149
|
+
readonly "emoji/bat_3d": "emoji/bat_3d.1aacb01c.webp";
|
|
9150
|
+
readonly "emoji/beach_with_umbrella_3d": "emoji/beach_with_umbrella_3d.477b226c.webp";
|
|
9151
|
+
readonly "emoji/beating_heart_3d": "emoji/beating_heart_3d.a868028e.webp";
|
|
9152
|
+
readonly "emoji/bed_3d": "emoji/bed_3d.252c87f8.webp";
|
|
9153
|
+
readonly "emoji/beer_mug_3d": "emoji/beer_mug_3d.2fa0fb06.webp";
|
|
9154
|
+
readonly "emoji/bell_3d": "emoji/bell_3d.dc81679e.webp";
|
|
9155
|
+
readonly "emoji/bird_3d": "emoji/bird_3d.fef835ab.webp";
|
|
9156
|
+
readonly "emoji/black_heart_3d": "emoji/black_heart_3d.227d0788.webp";
|
|
9157
|
+
readonly "emoji/blue_heart_3d": "emoji/blue_heart_3d.fc3a8e4b.webp";
|
|
9158
|
+
readonly "emoji/boxing_glove_3d": "emoji/boxing_glove_3d.dd9700b2.webp";
|
|
9159
|
+
readonly "emoji/boy_3d_default": "emoji/boy_3d_default.09c3510c.webp";
|
|
9160
|
+
readonly "emoji/brain_3d": "emoji/brain_3d.5964e588.webp";
|
|
9161
|
+
readonly "emoji/brick_3d": "emoji/brick_3d.47ceb710.webp";
|
|
9162
|
+
readonly "emoji/bubbles_3d": "emoji/bubbles_3d.ef31d81a.webp";
|
|
9163
|
+
readonly "emoji/bus_3d": "emoji/bus_3d.af2bcb8d.webp";
|
|
9164
|
+
readonly "emoji/busts_in_silhouette_3d": "emoji/busts_in_silhouette_3d.4ef5a4c0.webp";
|
|
9165
|
+
readonly "emoji/butter_3d": "emoji/butter_3d.b4b2ceee.webp";
|
|
9166
|
+
readonly "emoji/cactus_3d": "emoji/cactus_3d.2ca3a3a3.webp";
|
|
9167
|
+
readonly "emoji/camel_3d": "emoji/camel_3d.1d16b60b.webp";
|
|
9168
|
+
readonly "emoji/candle_3d": "emoji/candle_3d.58f5237e.webp";
|
|
9169
|
+
readonly "emoji/canoe_3d": "emoji/canoe_3d.a84def48.webp";
|
|
9170
|
+
readonly "emoji/castle_3d": "emoji/castle_3d.8882892f.webp";
|
|
9171
|
+
readonly "emoji/cat_3d": "emoji/cat_3d.960e09e8.webp";
|
|
9172
|
+
readonly "emoji/chains_3d": "emoji/chains_3d.24877245.webp";
|
|
9173
|
+
readonly "emoji/chart_increasing_3d": "emoji/chart_increasing_3d.d23089f4.webp";
|
|
9174
|
+
readonly "emoji/cherries_3d": "emoji/cherries_3d.3b51e09f.webp";
|
|
9175
|
+
readonly "emoji/cherry_blossom_3d": "emoji/cherry_blossom_3d.6f21b83d.webp";
|
|
9176
|
+
readonly "emoji/child_3d_default": "emoji/child_3d_default.438b1110.webp";
|
|
9177
|
+
readonly "emoji/chocolate_bar_3d": "emoji/chocolate_bar_3d.6170e3ba.webp";
|
|
9178
|
+
readonly "emoji/chopsticks_3d": "emoji/chopsticks_3d.078b4591.webp";
|
|
9179
|
+
readonly "emoji/christmas_tree_3d": "emoji/christmas_tree_3d.97ae6194.webp";
|
|
9180
|
+
readonly "emoji/cityscape_3d": "emoji/cityscape_3d.ae21cbc0.webp";
|
|
9181
|
+
readonly "emoji/clapper_board_3d": "emoji/clapper_board_3d.d82288ca.webp";
|
|
9182
|
+
readonly "emoji/classical_building_3d": "emoji/classical_building_3d.f2db9124.webp";
|
|
9183
|
+
readonly "emoji/cloud_3d": "emoji/cloud_3d.736eb8d1.webp";
|
|
9184
|
+
readonly "emoji/cloud_with_lightning_and_rain_3d": "emoji/cloud_with_lightning_and_rain_3d.e81e65c7.webp";
|
|
9185
|
+
readonly "emoji/cloud_with_rain_3d": "emoji/cloud_with_rain_3d.b2aaf273.webp";
|
|
9186
|
+
readonly "emoji/cocktail_glass_3d": "emoji/cocktail_glass_3d.ce81286b.webp";
|
|
9187
|
+
readonly "emoji/coffin_3d": "emoji/coffin_3d.a19ed692.webp";
|
|
9188
|
+
readonly "emoji/collision_3d": "emoji/collision_3d.67d7fc5f.webp";
|
|
9189
|
+
readonly "emoji/control_knobs_3d": "emoji/control_knobs_3d.618a7c50.webp";
|
|
9190
|
+
readonly "emoji/couch_and_lamp_3d": "emoji/couch_and_lamp_3d.43ef3640.webp";
|
|
9191
|
+
readonly "emoji/cowboy_hat_face_3d": "emoji/cowboy_hat_face_3d.0a7a001d.webp";
|
|
9192
|
+
readonly "emoji/crescent_moon_3d": "emoji/crescent_moon_3d.79c9ea4b.webp";
|
|
9193
|
+
readonly "emoji/crossed_swords_3d": "emoji/crossed_swords_3d.b97526bd.webp";
|
|
9194
|
+
readonly "emoji/crown_3d": "emoji/crown_3d.796669c5.webp";
|
|
9195
|
+
readonly "emoji/crying_face_3d": "emoji/crying_face_3d.ea2fba88.webp";
|
|
9196
|
+
readonly "emoji/crystal_ball_3d": "emoji/crystal_ball_3d.d89871b3.webp";
|
|
9197
|
+
readonly "emoji/detective_3d_default": "emoji/detective_3d_default.bd5b9568.webp";
|
|
9198
|
+
readonly "emoji/dizzy_3d": "emoji/dizzy_3d.af0acddb.webp";
|
|
9199
|
+
readonly "emoji/dog_face_3d": "emoji/dog_face_3d.f9254c80.webp";
|
|
9200
|
+
readonly "emoji/dove_3d": "emoji/dove_3d.5bec412e.webp";
|
|
9201
|
+
readonly "emoji/dragon_3d": "emoji/dragon_3d.57218a80.webp";
|
|
9202
|
+
readonly "emoji/drum_3d": "emoji/drum_3d.2b96aebc.webp";
|
|
9203
|
+
readonly "emoji/ear_3d_default": "emoji/ear_3d_default.c03eb8df.webp";
|
|
9204
|
+
readonly "emoji/ear_of_corn_3d": "emoji/ear_of_corn_3d.3ff89108.webp";
|
|
9205
|
+
readonly "emoji/electric_plug_3d": "emoji/electric_plug_3d.ac998f88.webp";
|
|
9206
|
+
readonly "emoji/elephant_3d": "emoji/elephant_3d.9f4e8e3b.webp";
|
|
9207
|
+
readonly "emoji/evergreen_tree_3d": "emoji/evergreen_tree_3d.b2a8fbfd.webp";
|
|
9208
|
+
readonly "emoji/exploding_head_3d": "emoji/exploding_head_3d.0d9dbcd6.webp";
|
|
9209
|
+
readonly "emoji/face_screaming_in_fear_3d": "emoji/face_screaming_in_fear_3d.710298e2.webp";
|
|
9210
|
+
readonly "emoji/face_with_rolling_eyes_3d": "emoji/face_with_rolling_eyes_3d.fcbad541.webp";
|
|
9211
|
+
readonly "emoji/face_with_tears_of_joy_3d": "emoji/face_with_tears_of_joy_3d.1e60a09c.webp";
|
|
9212
|
+
readonly "emoji/factory_3d": "emoji/factory_3d.85535d44.webp";
|
|
9213
|
+
readonly "emoji/fearful_face_3d": "emoji/fearful_face_3d.f7a570ae.webp";
|
|
9214
|
+
readonly "emoji/feather_3d": "emoji/feather_3d.7547cacd.webp";
|
|
9215
|
+
readonly "emoji/film_frames_3d": "emoji/film_frames_3d.8418f155.webp";
|
|
9216
|
+
readonly "emoji/film_projector_3d": "emoji/film_projector_3d.53aeacc1.webp";
|
|
9217
|
+
readonly "emoji/fire_3d": "emoji/fire_3d.295c8507.webp";
|
|
9218
|
+
readonly "emoji/flexed_biceps_3d_default": "emoji/flexed_biceps_3d_default.16a1e33d.webp";
|
|
9219
|
+
readonly "emoji/flute_3d": "emoji/flute_3d.1b547b31.webp";
|
|
9220
|
+
readonly "emoji/flying_saucer_3d": "emoji/flying_saucer_3d.33e4ad76.webp";
|
|
9221
|
+
readonly "emoji/fog_3d": "emoji/fog_3d.5918a022.webp";
|
|
9222
|
+
readonly "emoji/folded_hands_3d_default": "emoji/folded_hands_3d_default.6fb30f7a.webp";
|
|
9223
|
+
readonly "emoji/framed_picture_3d": "emoji/framed_picture_3d.f690ca63.webp";
|
|
9224
|
+
readonly "emoji/fuel_pump_3d": "emoji/fuel_pump_3d.69cc95b5.webp";
|
|
9225
|
+
readonly "emoji/gear_3d": "emoji/gear_3d.056bd877.webp";
|
|
9226
|
+
readonly "emoji/gem_stone_3d": "emoji/gem_stone_3d.2122be84.webp";
|
|
9227
|
+
readonly "emoji/ghost_3d": "emoji/ghost_3d.2852df13.webp";
|
|
9228
|
+
readonly "emoji/girl_3d_default": "emoji/girl_3d_default.0b89ac65.webp";
|
|
9229
|
+
readonly "emoji/globe_showing_europe-africa_3d": "emoji/globe_showing_europe-africa_3d.c7f6d3b1.webp";
|
|
9230
|
+
readonly "emoji/globe_with_meridians_3d": "emoji/globe_with_meridians_3d.fb8a50cc.webp";
|
|
9231
|
+
readonly "emoji/glowing_star_3d": "emoji/glowing_star_3d.f05c1f61.webp";
|
|
9232
|
+
readonly "emoji/graduation_cap_3d": "emoji/graduation_cap_3d.40aedecc.webp";
|
|
9233
|
+
readonly "emoji/grimacing_face_3d": "emoji/grimacing_face_3d.3977bd4c.webp";
|
|
9234
|
+
readonly "emoji/grinning_face_3d": "emoji/grinning_face_3d.2a2e74f8.webp";
|
|
9235
|
+
readonly "emoji/grinning_face_with_big_eyes_3d": "emoji/grinning_face_with_big_eyes_3d.9fc82932.webp";
|
|
9236
|
+
readonly "emoji/guard_3d_default": "emoji/guard_3d_default.98ad0996.webp";
|
|
9237
|
+
readonly "emoji/guitar_3d": "emoji/guitar_3d.0416ba38.webp";
|
|
9238
|
+
readonly "emoji/hammer_3d": "emoji/hammer_3d.51272a5d.webp";
|
|
9239
|
+
readonly "emoji/hammer_and_wrench_3d": "emoji/hammer_and_wrench_3d.137dcb10.webp";
|
|
9240
|
+
readonly "emoji/handshake_3d": "emoji/handshake_3d.e2b96894.webp";
|
|
9241
|
+
readonly "emoji/headphone_3d": "emoji/headphone_3d.db48327a.webp";
|
|
9242
|
+
readonly "emoji/herb_3d": "emoji/herb_3d.54975d48.webp";
|
|
9243
|
+
readonly "emoji/hibiscus_3d": "emoji/hibiscus_3d.f599ae80.webp";
|
|
9244
|
+
readonly "emoji/high_voltage_3d": "emoji/high_voltage_3d.54bdebd8.webp";
|
|
9245
|
+
readonly "emoji/horse_3d": "emoji/horse_3d.8cdb7af9.webp";
|
|
9246
|
+
readonly "emoji/hot_beverage_3d": "emoji/hot_beverage_3d.b2a8805d.webp";
|
|
9247
|
+
readonly "emoji/hot_pepper_3d": "emoji/hot_pepper_3d.7e4ee487.webp";
|
|
9248
|
+
readonly "emoji/hot_springs_3d": "emoji/hot_springs_3d.3feda1de.webp";
|
|
9249
|
+
readonly "emoji/hourglass_done_3d": "emoji/hourglass_done_3d.7d5d9df1.webp";
|
|
9250
|
+
readonly "emoji/hourglass_not_done_3d": "emoji/hourglass_not_done_3d.11c1f660.webp";
|
|
9251
|
+
readonly "emoji/house_3d": "emoji/house_3d.89ec0369.webp";
|
|
9252
|
+
readonly "emoji/hugging_face_3d": "emoji/hugging_face_3d.e2cf7c76.webp";
|
|
9253
|
+
readonly "emoji/ice_3d": "emoji/ice_3d.deb8d0df.webp";
|
|
9254
|
+
readonly "emoji/japanese_dolls_3d": "emoji/japanese_dolls_3d.a0cceaf3.webp";
|
|
9255
|
+
readonly "emoji/joystick_3d": "emoji/joystick_3d.944ec6d9.webp";
|
|
9256
|
+
readonly "emoji/kiss_mark_3d": "emoji/kiss_mark_3d.4569473a.webp";
|
|
9257
|
+
readonly "emoji/kite_3d": "emoji/kite_3d.b3585005.webp";
|
|
9258
|
+
readonly "emoji/laptop_3d": "emoji/laptop_3d.41e8661a.webp";
|
|
9259
|
+
readonly "emoji/leaf_fluttering_in_wind_3d": "emoji/leaf_fluttering_in_wind_3d.bafe832d.webp";
|
|
9260
|
+
readonly "emoji/lemon_3d": "emoji/lemon_3d.d9786fd2.webp";
|
|
9261
|
+
readonly "emoji/leopard_3d": "emoji/leopard_3d.125c4ccd.webp";
|
|
9262
|
+
readonly "emoji/level_slider_3d": "emoji/level_slider_3d.88b2cf4b.webp";
|
|
9263
|
+
readonly "emoji/light_bulb_3d": "emoji/light_bulb_3d.d7c6b3a6.webp";
|
|
9264
|
+
readonly "emoji/lion_3d": "emoji/lion_3d.50c1e9e4.webp";
|
|
9265
|
+
readonly "emoji/lipstick_3d": "emoji/lipstick_3d.bb2e9acf.webp";
|
|
9266
|
+
readonly "emoji/lobster_3d": "emoji/lobster_3d.59fd230a.webp";
|
|
9267
|
+
readonly "emoji/locked_3d": "emoji/locked_3d.64457d19.webp";
|
|
9268
|
+
readonly "emoji/lollipop_3d": "emoji/lollipop_3d.d8fa2fc9.webp";
|
|
9269
|
+
readonly "emoji/long_drum_3d": "emoji/long_drum_3d.22eedd09.webp";
|
|
9270
|
+
readonly "emoji/lotus_3d": "emoji/lotus_3d.2fe3dc52.webp";
|
|
9271
|
+
readonly "emoji/loudspeaker_3d": "emoji/loudspeaker_3d.4e1a1d8c.webp";
|
|
9272
|
+
readonly "emoji/low_battery_3d": "emoji/low_battery_3d.61bab068.webp";
|
|
9273
|
+
readonly "emoji/magic_wand_3d": "emoji/magic_wand_3d.2d764cda.webp";
|
|
9274
|
+
readonly "emoji/magnifying_glass_tilted_left_3d": "emoji/magnifying_glass_tilted_left_3d.913e1bba.webp";
|
|
9275
|
+
readonly "emoji/man_3d_default": "emoji/man_3d_default.2c6ad3e3.webp";
|
|
9276
|
+
readonly "emoji/man_dancing_3d_default": "emoji/man_dancing_3d_default.be7ebf85.webp";
|
|
9277
|
+
readonly "emoji/man_in_tuxedo_3d_default": "emoji/man_in_tuxedo_3d_default.df11645d.webp";
|
|
9278
|
+
readonly "emoji/maracas_3d": "emoji/maracas_3d.f8951a90.webp";
|
|
9279
|
+
readonly "emoji/megaphone_3d": "emoji/megaphone_3d.e242a485.webp";
|
|
9280
|
+
readonly "emoji/microphone_3d": "emoji/microphone_3d.8e9d43d6.webp";
|
|
9281
|
+
readonly "emoji/military_helmet_3d": "emoji/military_helmet_3d.ace8783b.webp";
|
|
9282
|
+
readonly "emoji/milky_way_3d": "emoji/milky_way_3d.6f83da44.webp";
|
|
9283
|
+
readonly "emoji/mirror_ball_3d": "emoji/mirror_ball_3d.3b3bb92b.webp";
|
|
9284
|
+
readonly "emoji/moai_3d": "emoji/moai_3d.79692217.webp";
|
|
9285
|
+
readonly "emoji/mobile_phone_3d": "emoji/mobile_phone_3d.015f4240.webp";
|
|
9286
|
+
readonly "emoji/money_bag_3d": "emoji/money_bag_3d.1605638d.webp";
|
|
9287
|
+
readonly "emoji/mountain_3d": "emoji/mountain_3d.c95ca720.webp";
|
|
9288
|
+
readonly "emoji/mouse_3d": "emoji/mouse_3d.135e8e06.webp";
|
|
9289
|
+
readonly "emoji/mushroom_3d": "emoji/mushroom_3d.42d3fd23.webp";
|
|
9290
|
+
readonly "emoji/musical_keyboard_3d": "emoji/musical_keyboard_3d.58df4323.webp";
|
|
9291
|
+
readonly "emoji/musical_note_3d": "emoji/musical_note_3d.583c7f64.webp";
|
|
9292
|
+
readonly "emoji/musical_notes_3d": "emoji/musical_notes_3d.e9d17d2a.webp";
|
|
9293
|
+
readonly "emoji/musical_score_3d": "emoji/musical_score_3d.c0171575.webp";
|
|
9294
|
+
readonly "emoji/neutral_face_3d": "emoji/neutral_face_3d.a600d80b.webp";
|
|
9295
|
+
readonly "emoji/new_moon_3d": "emoji/new_moon_3d.7eb94a2a.webp";
|
|
9296
|
+
readonly "emoji/newspaper_3d": "emoji/newspaper_3d.f2406ddb.webp";
|
|
9297
|
+
readonly "emoji/night_with_stars_3d": "emoji/night_with_stars_3d.46f0b404.webp";
|
|
9298
|
+
readonly "emoji/nose_3d_default": "emoji/nose_3d_default.c4749af2.webp";
|
|
9299
|
+
readonly "emoji/nut_and_bolt_3d": "emoji/nut_and_bolt_3d.61358d40.webp";
|
|
9300
|
+
readonly "emoji/old_woman_3d_default": "emoji/old_woman_3d_default.aba5fa97.webp";
|
|
9301
|
+
readonly "emoji/older_person_3d_default": "emoji/older_person_3d_default.53fcc167.webp";
|
|
9302
|
+
readonly "emoji/open_book_3d": "emoji/open_book_3d.e9d01ba4.webp";
|
|
9303
|
+
readonly "emoji/owl_3d": "emoji/owl_3d.13fe0976.webp";
|
|
9304
|
+
readonly "emoji/package_3d": "emoji/package_3d.d72cf506.webp";
|
|
9305
|
+
readonly "emoji/pager_3d": "emoji/pager_3d.b9817782.webp";
|
|
9306
|
+
readonly "emoji/palm_tree_3d": "emoji/palm_tree_3d.1947d143.webp";
|
|
9307
|
+
readonly "emoji/parrot_3d": "emoji/parrot_3d.bdd97a42.webp";
|
|
9308
|
+
readonly "emoji/party_popper_3d": "emoji/party_popper_3d.2a8444b8.webp";
|
|
9309
|
+
readonly "emoji/passenger_ship_3d": "emoji/passenger_ship_3d.1cea6ab2.webp";
|
|
9310
|
+
readonly "emoji/peace_symbol_3d": "emoji/peace_symbol_3d.b6b5871c.webp";
|
|
9311
|
+
readonly "emoji/pencil_3d": "emoji/pencil_3d.c95b8040.webp";
|
|
9312
|
+
readonly "emoji/pensive_face_3d": "emoji/pensive_face_3d.dc875000.webp";
|
|
9313
|
+
readonly "emoji/people_hugging_3d": "emoji/people_hugging_3d.2d408cf1.webp";
|
|
9314
|
+
readonly "emoji/performing_arts_3d": "emoji/performing_arts_3d.3e276da2.webp";
|
|
9315
|
+
readonly "emoji/person_3d_default": "emoji/person_3d_default.f5eca5b7.webp";
|
|
9316
|
+
readonly "emoji/person_in_lotus_position_3d_default": "emoji/person_in_lotus_position_3d_default.dc17e50b.webp";
|
|
9317
|
+
readonly "emoji/person_running_3d_default": "emoji/person_running_3d_default.944e0d56.webp";
|
|
9318
|
+
readonly "emoji/person_surfing_3d_default": "emoji/person_surfing_3d_default.dab0445a.webp";
|
|
9319
|
+
readonly "emoji/person_walking_3d_default": "emoji/person_walking_3d_default.0818fe4c.webp";
|
|
9320
|
+
readonly "emoji/pickup_truck_3d": "emoji/pickup_truck_3d.8be6b193.webp";
|
|
9321
|
+
readonly "emoji/pineapple_3d": "emoji/pineapple_3d.a56c1cf4.webp";
|
|
9322
|
+
readonly "emoji/pizza_3d": "emoji/pizza_3d.8003232a.webp";
|
|
9323
|
+
readonly "emoji/police_car_light_3d": "emoji/police_car_light_3d.30e128e5.webp";
|
|
9324
|
+
readonly "emoji/postal_horn_3d": "emoji/postal_horn_3d.d0ae5fee.webp";
|
|
9325
|
+
readonly "emoji/pouting_face_3d": "emoji/pouting_face_3d.140b9541.webp";
|
|
9326
|
+
readonly "emoji/purple_heart_3d": "emoji/purple_heart_3d.003a9458.webp";
|
|
9327
|
+
readonly "emoji/rabbit_3d": "emoji/rabbit_3d.0d5a735c.webp";
|
|
9328
|
+
readonly "emoji/racing_car_3d": "emoji/racing_car_3d.c0b44d25.webp";
|
|
9329
|
+
readonly "emoji/radio_3d": "emoji/radio_3d.50c23194.webp";
|
|
9330
|
+
readonly "emoji/rainbow_3d": "emoji/rainbow_3d.3c36fd7f.webp";
|
|
9331
|
+
readonly "emoji/raised_fist_3d_default": "emoji/raised_fist_3d_default.eb91ccc0.webp";
|
|
9332
|
+
readonly "emoji/repeat_button_3d": "emoji/repeat_button_3d.346c767d.webp";
|
|
9333
|
+
readonly "emoji/ribbon_3d": "emoji/ribbon_3d.b0390fc2.webp";
|
|
9334
|
+
readonly "emoji/ringed_planet_3d": "emoji/ringed_planet_3d.4b48dd81.webp";
|
|
9335
|
+
readonly "emoji/robot_3d": "emoji/robot_3d.533b5a81.webp";
|
|
9336
|
+
readonly "emoji/rock_3d": "emoji/rock_3d.c1815a29.webp";
|
|
9337
|
+
readonly "emoji/rocket_3d": "emoji/rocket_3d.d8ef8111.webp";
|
|
9338
|
+
readonly "emoji/rose_3d": "emoji/rose_3d.46b02779.webp";
|
|
9339
|
+
readonly "emoji/running_shoe_3d": "emoji/running_shoe_3d.94ceffb5.webp";
|
|
9340
|
+
readonly "emoji/safety_pin_3d": "emoji/safety_pin_3d.b70d955f.webp";
|
|
9341
|
+
readonly "emoji/saxophone_3d": "emoji/saxophone_3d.9f9f4acb.webp";
|
|
9342
|
+
readonly "emoji/scissors_3d": "emoji/scissors_3d.76afcdfb.webp";
|
|
9343
|
+
readonly "emoji/scroll_3d": "emoji/scroll_3d.11181e9f.webp";
|
|
9344
|
+
readonly "emoji/seedling_3d": "emoji/seedling_3d.f5b35195.webp";
|
|
9345
|
+
readonly "emoji/shamrock_3d": "emoji/shamrock_3d.f4e84a02.webp";
|
|
9346
|
+
readonly "emoji/shield_3d": "emoji/shield_3d.e022c663.webp";
|
|
9347
|
+
readonly "emoji/shopping_cart_3d": "emoji/shopping_cart_3d.cb5f96ab.webp";
|
|
9348
|
+
readonly "emoji/shushing_face_3d": "emoji/shushing_face_3d.fab370d3.webp";
|
|
9349
|
+
readonly "emoji/sign_of_the_horns_3d_default": "emoji/sign_of_the_horns_3d_default.8278781b.webp";
|
|
9350
|
+
readonly "emoji/skateboard_3d": "emoji/skateboard_3d.881e56e4.webp";
|
|
9351
|
+
readonly "emoji/skull_3d": "emoji/skull_3d.fd0e03ad.webp";
|
|
9352
|
+
readonly "emoji/skull_and_crossbones_3d": "emoji/skull_and_crossbones_3d.2e366096.webp";
|
|
9353
|
+
readonly "emoji/sloth_3d": "emoji/sloth_3d.67adc9f6.webp";
|
|
9354
|
+
readonly "emoji/smiling_face_3d": "emoji/smiling_face_3d.1a3ac08e.webp";
|
|
9355
|
+
readonly "emoji/smiling_face_with_hearts_3d": "emoji/smiling_face_with_hearts_3d.23a763a9.webp";
|
|
9356
|
+
readonly "emoji/smiling_face_with_horns_3d": "emoji/smiling_face_with_horns_3d.2996a20d.webp";
|
|
9357
|
+
readonly "emoji/smiling_face_with_smiling_eyes_3d": "emoji/smiling_face_with_smiling_eyes_3d.9ba53fb0.webp";
|
|
9358
|
+
readonly "emoji/smiling_face_with_sunglasses_3d": "emoji/smiling_face_with_sunglasses_3d.e6140884.webp";
|
|
9359
|
+
readonly "emoji/smirking_face_3d": "emoji/smirking_face_3d.a8421758.webp";
|
|
9360
|
+
readonly "emoji/snail_3d": "emoji/snail_3d.2e67da53.webp";
|
|
9361
|
+
readonly "emoji/snow-capped_mountain_3d": "emoji/snow-capped_mountain_3d.4e365589.webp";
|
|
9362
|
+
readonly "emoji/snowflake_3d": "emoji/snowflake_3d.c9fa0c9e.webp";
|
|
9363
|
+
readonly "emoji/soccer_ball_3d": "emoji/soccer_ball_3d.80ccb031.webp";
|
|
9364
|
+
readonly "emoji/sparkles_3d": "emoji/sparkles_3d.acd7e64d.webp";
|
|
9365
|
+
readonly "emoji/sparkling_heart_3d": "emoji/sparkling_heart_3d.69d4ef28.webp";
|
|
9366
|
+
readonly "emoji/speaker_high_volume_3d": "emoji/speaker_high_volume_3d.de469632.webp";
|
|
9367
|
+
readonly "emoji/speaking_head_3d": "emoji/speaking_head_3d.6ef2d7c6.webp";
|
|
9368
|
+
readonly "emoji/speech_balloon_3d": "emoji/speech_balloon_3d.08ca6643.webp";
|
|
9369
|
+
readonly "emoji/star-struck_3d": "emoji/star-struck_3d.6e7bf40c.webp";
|
|
9370
|
+
readonly "emoji/statue_of_liberty_3d": "emoji/statue_of_liberty_3d.3027c0ca.webp";
|
|
9371
|
+
readonly "emoji/stop_sign_3d": "emoji/stop_sign_3d.54b2cac4.webp";
|
|
9372
|
+
readonly "emoji/studio_microphone_3d": "emoji/studio_microphone_3d.ef8fd3a9.webp";
|
|
9373
|
+
readonly "emoji/sun_3d": "emoji/sun_3d.921d3208.webp";
|
|
9374
|
+
readonly "emoji/sunflower_3d": "emoji/sunflower_3d.8cd07c2f.webp";
|
|
9375
|
+
readonly "emoji/sunrise_3d": "emoji/sunrise_3d.ba5e0533.webp";
|
|
9376
|
+
readonly "emoji/sunrise_over_mountains_3d": "emoji/sunrise_over_mountains_3d.2d008ec3.webp";
|
|
9377
|
+
readonly "emoji/sunset_3d": "emoji/sunset_3d.17a22747.webp";
|
|
9378
|
+
readonly "emoji/teddy_bear_3d": "emoji/teddy_bear_3d.9fb5d6fb.webp";
|
|
9379
|
+
readonly "emoji/television_3d": "emoji/television_3d.2cb4ab1e.webp";
|
|
9380
|
+
readonly "emoji/test_tube_3d": "emoji/test_tube_3d.7407f7e9.webp";
|
|
9381
|
+
readonly "emoji/thinking_face_3d": "emoji/thinking_face_3d.754ab1a4.webp";
|
|
9382
|
+
readonly "emoji/top_hat_3d": "emoji/top_hat_3d.c01ec02b.webp";
|
|
9383
|
+
readonly "emoji/tornado_3d": "emoji/tornado_3d.7b0e91be.webp";
|
|
9384
|
+
readonly "emoji/trophy_3d": "emoji/trophy_3d.2491635a.webp";
|
|
9385
|
+
readonly "emoji/tropical_drink_3d": "emoji/tropical_drink_3d.bab2fe86.webp";
|
|
9386
|
+
readonly "emoji/trumpet_3d": "emoji/trumpet_3d.d22ec4da.webp";
|
|
9387
|
+
readonly "emoji/turtle_3d": "emoji/turtle_3d.a9adb524.webp";
|
|
9388
|
+
readonly "emoji/two_hearts_3d": "emoji/two_hearts_3d.2f069693.webp";
|
|
9389
|
+
readonly "emoji/unicorn_3d": "emoji/unicorn_3d.a77a50f6.webp";
|
|
9390
|
+
readonly "emoji/upside-down_face_3d": "emoji/upside-down_face_3d.7459a4e5.webp";
|
|
9391
|
+
readonly "emoji/video_game_3d": "emoji/video_game_3d.cdc99665.webp";
|
|
9392
|
+
readonly "emoji/videocassette_3d": "emoji/videocassette_3d.ec66eb9f.webp";
|
|
9393
|
+
readonly "emoji/violin_3d": "emoji/violin_3d.94269dc7.webp";
|
|
9394
|
+
readonly "emoji/volcano_3d": "emoji/volcano_3d.d3b74a42.webp";
|
|
9395
|
+
readonly "emoji/water_wave_3d": "emoji/water_wave_3d.6a5d45d7.webp";
|
|
9396
|
+
readonly "emoji/whale_3d": "emoji/whale_3d.d08c1899.webp";
|
|
9397
|
+
readonly "emoji/wind_face_3d": "emoji/wind_face_3d.e8e29b6f.webp";
|
|
9398
|
+
readonly "emoji/wine_glass_3d": "emoji/wine_glass_3d.2636c9a6.webp";
|
|
9399
|
+
readonly "emoji/winking_face_3d": "emoji/winking_face_3d.96c4bc72.webp";
|
|
9400
|
+
readonly "emoji/winking_face_with_tongue_3d": "emoji/winking_face_with_tongue_3d.a51191f7.webp";
|
|
9401
|
+
readonly "emoji/wolf_3d": "emoji/wolf_3d.02b3d91a.webp";
|
|
9402
|
+
readonly "emoji/woman_3d_default": "emoji/woman_3d_default.b3b74562.webp";
|
|
9403
|
+
readonly "emoji/woman_dancing_3d_default": "emoji/woman_dancing_3d_default.54b7f23b.webp";
|
|
9404
|
+
readonly "emoji/wrench_3d": "emoji/wrench_3d.2ea37744.webp";
|
|
9405
|
+
readonly "flags/ar": "flags/ar.3a0473f6.webp";
|
|
9406
|
+
readonly "flags/au": "flags/au.a07c7c71.webp";
|
|
9407
|
+
readonly "flags/bb": "flags/bb.e3b0823b.webp";
|
|
9408
|
+
readonly "flags/bd": "flags/bd.6ce65533.webp";
|
|
9409
|
+
readonly "flags/ca": "flags/ca.9bcc5a4a.webp";
|
|
9410
|
+
readonly "flags/cn": "flags/cn.3edc00ab.webp";
|
|
9411
|
+
readonly "flags/de": "flags/de.ca308531.webp";
|
|
9412
|
+
readonly "flags/dk": "flags/dk.e36cdc6f.webp";
|
|
9413
|
+
readonly "flags/es": "flags/es.12e14f2f.webp";
|
|
9414
|
+
readonly "flags/fi": "flags/fi.21f4d59b.webp";
|
|
9415
|
+
readonly "flags/fr": "flags/fr.86fd4a39.webp";
|
|
9416
|
+
readonly "flags/gb": "flags/gb.8cdfe620.webp";
|
|
9417
|
+
readonly "flags/gb-sct": "flags/gb-sct.7c393ebd.webp";
|
|
9418
|
+
readonly "flags/gb-wls": "flags/gb-wls.bf845ca9.webp";
|
|
9419
|
+
readonly "flags/gr": "flags/gr.a1f71c5e.webp";
|
|
9420
|
+
readonly "flags/hk": "flags/hk.46469efa.webp";
|
|
9421
|
+
readonly "flags/id": "flags/id.101c1643.webp";
|
|
9422
|
+
readonly "flags/ie": "flags/ie.874cbc21.webp";
|
|
9423
|
+
readonly "flags/il": "flags/il.d78b70d8.webp";
|
|
9424
|
+
readonly "flags/in": "flags/in.c32102f6.webp";
|
|
9425
|
+
readonly "flags/ir": "flags/ir.29e991da.webp";
|
|
9426
|
+
readonly "flags/it": "flags/it.5fcb941f.webp";
|
|
9427
|
+
readonly "flags/jm": "flags/jm.bba0ff36.webp";
|
|
9428
|
+
readonly "flags/jp": "flags/jp.5ce5b5e0.webp";
|
|
9429
|
+
readonly "flags/kr": "flags/kr.e85321e1.webp";
|
|
9430
|
+
readonly "flags/mx": "flags/mx.eda894e9.webp";
|
|
9431
|
+
readonly "flags/ng": "flags/ng.c7956c84.webp";
|
|
9432
|
+
readonly "flags/nl": "flags/nl.887e5e73.webp";
|
|
9433
|
+
readonly "flags/no": "flags/no.285f2e0e.webp";
|
|
9434
|
+
readonly "flags/nz": "flags/nz.26be49b6.webp";
|
|
9435
|
+
readonly "flags/ph": "flags/ph.37714d90.webp";
|
|
9436
|
+
readonly "flags/pk": "flags/pk.25cbe69f.webp";
|
|
9437
|
+
readonly "flags/pl": "flags/pl.aa1f6bd6.webp";
|
|
9438
|
+
readonly "flags/pt": "flags/pt.aaa844f0.webp";
|
|
9439
|
+
readonly "flags/ru": "flags/ru.de5dc449.webp";
|
|
9440
|
+
readonly "flags/sa": "flags/sa.3850423d.webp";
|
|
9441
|
+
readonly "flags/se": "flags/se.74c50a64.webp";
|
|
9442
|
+
readonly "flags/th": "flags/th.fa84b67a.webp";
|
|
9443
|
+
readonly "flags/tr": "flags/tr.fca0eea3.webp";
|
|
9444
|
+
readonly "flags/tz": "flags/tz.e56d68a9.webp";
|
|
9445
|
+
readonly "flags/ua": "flags/ua.03973095.webp";
|
|
9446
|
+
readonly "flags/us": "flags/us.d18ddec2.webp";
|
|
9447
|
+
readonly "flags/vn": "flags/vn.2f0fdfd5.webp";
|
|
9448
|
+
readonly "flags/za": "flags/za.312bfb61.webp";
|
|
9449
|
+
};
|
|
9450
|
+
|
|
9451
|
+
declare const CHARACTER_ART_FILES: Readonly<Record<string, Readonly<Record<string, string>>>>;
|
|
9452
|
+
|
|
9453
|
+
/** Catalog option id → rendered preview URL, for one picker. */
|
|
9454
|
+
type LookPreviewSet = Readonly<Record<string, string>>;
|
|
9455
|
+
/** Picker (node type) → its preview set. */
|
|
9456
|
+
type LookPreviewSets = Readonly<Record<string, LookPreviewSet>>;
|
|
9457
|
+
declare const LOOK_PREVIEW_SETS: {
|
|
9458
|
+
readonly style: {
|
|
9459
|
+
readonly "3d-render": "https://cdn.nodaro.ai/images/c0f46e9b-25f7-4a7d-b66a-2c5065dfc296.png";
|
|
9460
|
+
readonly anime: "https://cdn.nodaro.ai/images/611eb595-5d4b-4e4a-afdf-70fd276fdf4b.png";
|
|
9461
|
+
readonly "children-book": "https://cdn.nodaro.ai/images/9564a952-51f9-4438-a4ac-e3aa85a93a10.png";
|
|
9462
|
+
readonly cinematic: "https://cdn.nodaro.ai/images/1dcc40b2-8833-470f-8625-7e239ee241ed.png";
|
|
9463
|
+
readonly "comic-book": "https://cdn.nodaro.ai/images/ea428565-343e-4e64-9b78-ef56511109e5.png";
|
|
9464
|
+
readonly "digital-art": "https://cdn.nodaro.ai/images/dc47008c-c652-4401-8afe-0ab3a002985e.png";
|
|
9465
|
+
readonly fantasy: "https://cdn.nodaro.ai/images/f34d4f7d-ce95-4a11-a9c9-c3b9437a7a99.png";
|
|
9466
|
+
readonly minimalist: "https://cdn.nodaro.ai/images/94e42dc0-912c-450f-b056-4b0276bed754.png";
|
|
9467
|
+
readonly noir: "https://cdn.nodaro.ai/images/9dd5bc91-1240-48f1-88e9-84e7892ad82c.png";
|
|
9468
|
+
readonly "oil-painting": "https://cdn.nodaro.ai/images/f6181fc9-76fd-438f-a0bb-ae264f196b43.png";
|
|
9469
|
+
readonly "pencil-sketch": "https://cdn.nodaro.ai/images/d397a468-7c6d-4833-b97f-944c1a671344.png";
|
|
9470
|
+
readonly photorealistic: "https://cdn.nodaro.ai/images/a313ff29-176f-4a6e-be86-c714c7b5cc72.png";
|
|
9471
|
+
readonly "pixel-art": "https://cdn.nodaro.ai/images/23416a3c-c6f8-4b01-bea6-9d921e21f6e6.png";
|
|
9472
|
+
readonly "pop-art": "https://cdn.nodaro.ai/images/efdf4120-bb1e-4af2-87fe-6caca5d538ac.png";
|
|
9473
|
+
readonly "retro-vintage": "https://cdn.nodaro.ai/images/adc1d6cb-e122-4242-b367-b749cdd16940.png";
|
|
9474
|
+
readonly watercolor: "https://cdn.nodaro.ai/images/edff0eac-3cf7-48b1-bec7-238e0d6f9dfb.png";
|
|
9475
|
+
readonly "concept-art": "https://cdn.nodaro.ai/images/534241d5-23f0-4e20-a6b2-214b62dee427.png";
|
|
9476
|
+
readonly impressionism: "https://cdn.nodaro.ai/images/ba71184d-84ec-48cc-8cce-446db0805ca4.png";
|
|
9477
|
+
readonly surrealism: "https://cdn.nodaro.ai/images/1a82c203-729b-4021-b34b-97e425c3c19c.png";
|
|
9478
|
+
readonly cyberpunk: "https://cdn.nodaro.ai/images/22c4757e-755a-4b10-8f32-c7248eddcc3d.png";
|
|
9479
|
+
readonly steampunk: "https://cdn.nodaro.ai/images/c129c819-3a1f-4519-a1f7-e9e82c6c5a8b.png";
|
|
9480
|
+
readonly vaporwave: "https://cdn.nodaro.ai/images/d8935953-39d2-4c2b-9d29-a5cd688c7e38.png";
|
|
9481
|
+
readonly "low-poly": "https://cdn.nodaro.ai/images/15b1d1a7-0073-4dfd-b5cd-d40613afee04.png";
|
|
9482
|
+
readonly "ink-wash": "https://cdn.nodaro.ai/images/2c1b25dc-2ab0-4106-beb0-5391231e9d42.png";
|
|
9483
|
+
readonly isometric: "https://cdn.nodaro.ai/images/773d59bc-5d0e-4843-8d93-0396b9334ad2.png";
|
|
9484
|
+
readonly "flat-vector": "https://cdn.nodaro.ai/images/aabf2c35-28fe-4a36-bb05-d9e95d117a70.png";
|
|
9485
|
+
readonly "ukiyo-e": "https://cdn.nodaro.ai/images/f663559f-3890-4d3f-bc6c-d08c888caa55.png";
|
|
9486
|
+
readonly graffiti: "https://cdn.nodaro.ai/images/3616c5af-0386-43d9-8a6e-6ca9566ec52b.png";
|
|
9487
|
+
readonly claymation: "https://cdn.nodaro.ai/images/b58317a3-2a30-4f25-abfe-b6b8ef8827a1.png";
|
|
9488
|
+
readonly "glitch-art": "https://cdn.nodaro.ai/images/9774491e-2ca0-4584-9ef9-7a0e9b9e1b9e.png";
|
|
9489
|
+
readonly "ascii-art": "https://cdn.nodaro.ai/images/090e407a-f486-4e76-aea2-b4c75105ae84.png";
|
|
9490
|
+
readonly blueprint: "https://cdn.nodaro.ai/images/ab07abf7-05fb-4b95-b3b2-bf98629a875e.png";
|
|
9491
|
+
readonly "stained-glass": "https://cdn.nodaro.ai/images/e9be8a96-8327-43b9-892c-017118155562.png";
|
|
9492
|
+
readonly chalkboard: "https://cdn.nodaro.ai/images/2250ed18-55b8-4ff7-9f5f-17a8db8a53c8.png";
|
|
9493
|
+
readonly "paper-cutout": "https://cdn.nodaro.ai/images/9cdcb351-5f46-49f0-8016-5595e9a55fa1.png";
|
|
9494
|
+
readonly illuminated: "https://cdn.nodaro.ai/images/471bffc4-e764-44ab-97b4-46c0d5652af8.png";
|
|
9495
|
+
readonly "pixar-3d": "https://cdn.nodaro.ai/images/8050d399-cf0e-46de-8770-d48c2e444898.png";
|
|
9496
|
+
readonly caricature: "https://cdn.nodaro.ai/images/ffd49a16-4a41-40de-92ff-d6d231ef6d53.png";
|
|
9497
|
+
readonly fresco: "https://cdn.nodaro.ai/images/0a4389e0-4038-40c4-b055-6d4346f04cf6.png";
|
|
9498
|
+
readonly mosaic: "https://cdn.nodaro.ai/images/de4855e9-4bc6-4967-ac60-b1ad63ceb748.png";
|
|
9499
|
+
readonly woodcut: "https://cdn.nodaro.ai/images/f5b381eb-63cd-4fc0-9623-9e0cc39f0ec9.png";
|
|
9500
|
+
readonly etching: "https://cdn.nodaro.ai/images/e54ace76-56b4-4dd6-8dfc-48b743234b98.png";
|
|
9501
|
+
readonly lithograph: "https://cdn.nodaro.ai/images/6b04aa8a-9cf8-401c-a337-0ceeffa85783.png";
|
|
9502
|
+
readonly charcoal: "https://cdn.nodaro.ai/images/218d0e69-ef00-4735-9441-c4462c197688.png";
|
|
9503
|
+
readonly pastel: "https://cdn.nodaro.ai/images/6a1a90ae-c9ea-4f2e-842b-f5572215a373.png";
|
|
9504
|
+
readonly "acrylic-paint": "https://cdn.nodaro.ai/images/23191845-ef25-4152-8877-2e63daf2f2ac.png";
|
|
9505
|
+
readonly "mixed-media": "https://cdn.nodaro.ai/images/d36ab150-9cd6-47ac-bdd9-3b26990a4fa9.png";
|
|
9506
|
+
readonly manga: "https://cdn.nodaro.ai/images/3d6bbfd8-8c62-4769-b62e-11d2a7e43b4b.png";
|
|
9507
|
+
};
|
|
9508
|
+
readonly "color-look": {
|
|
9509
|
+
readonly warm: "https://cdn.nodaro.ai/images/8511a1bc-3d3b-46a8-adc0-26fcc9e93a4b.png";
|
|
9510
|
+
readonly cool: "https://cdn.nodaro.ai/images/99cff1f4-ad81-4f54-b43d-a6e7c85a2e0f.png";
|
|
9511
|
+
readonly "teal-orange": "https://cdn.nodaro.ai/images/b6539da8-82aa-4e33-a04d-8e4d2830fad8.png";
|
|
9512
|
+
readonly "split-toning": "https://cdn.nodaro.ai/images/051e9b4d-c864-4102-a683-15432c01cd3a.png";
|
|
9513
|
+
readonly "selective-color": "https://cdn.nodaro.ai/images/87837101-dc0b-47c1-8a21-97566677494b.png";
|
|
9514
|
+
readonly "faded-matte": "https://cdn.nodaro.ai/images/67fe86ce-9ad7-442d-851c-edca6f01db61.png";
|
|
9515
|
+
readonly "log-flat": "https://cdn.nodaro.ai/images/585b9684-7ad3-4448-9210-f6f0ae2e1db8.png";
|
|
9516
|
+
readonly desaturated: "https://cdn.nodaro.ai/images/b9b6520e-82de-4d14-8ba7-d5e3840242e0.png";
|
|
9517
|
+
readonly "monochrome-bw": "https://cdn.nodaro.ai/images/2aa2959b-8b64-49b2-92b9-cb53ad4d0707.png";
|
|
9518
|
+
readonly sepia: "https://cdn.nodaro.ai/images/582f5427-3d6c-469e-9967-e48c6b0c038b.png";
|
|
9519
|
+
readonly pastel: "https://cdn.nodaro.ai/images/2c147c8b-2d38-4e12-9031-42ebf4c177f5.png";
|
|
9520
|
+
readonly "high-contrast": "https://cdn.nodaro.ai/images/cd9e3a3a-3059-4c74-98a3-b01252f1b759.png";
|
|
9521
|
+
readonly vibrant: "https://cdn.nodaro.ai/images/f1bee489-eedb-437e-a111-6d613c1c5c7b.png";
|
|
9522
|
+
readonly "kodak-portra": "https://cdn.nodaro.ai/images/8804bc8e-a88b-4088-ab06-161f85132418.png";
|
|
9523
|
+
readonly "kodak-ektar": "https://cdn.nodaro.ai/images/e30bb737-e94c-464f-ae25-c59e61157d2d.png";
|
|
9524
|
+
readonly "kodak-vision3": "https://cdn.nodaro.ai/images/3133be3d-35de-4810-bf2e-02f64a43efa5.png";
|
|
9525
|
+
readonly "fuji-pro-400h": "https://cdn.nodaro.ai/images/dbd14e16-9932-4461-a3a8-1b5b436628c5.png";
|
|
9526
|
+
readonly "cinestill-800t": "https://cdn.nodaro.ai/images/e677eb71-9ffd-45e8-b03c-427eacac5733.png";
|
|
9527
|
+
readonly "bleach-bypass": "https://cdn.nodaro.ai/images/da2c3153-f8a2-427d-b4a6-3264716e8833.png";
|
|
9528
|
+
readonly technicolor: "https://cdn.nodaro.ai/images/274c86c5-0fa0-483b-a831-0aba6845d80a.png";
|
|
9529
|
+
readonly "two-strip-technicolor": "https://cdn.nodaro.ai/images/de62cc14-7ae6-468c-bc75-a841a7f3ad83.png";
|
|
9530
|
+
readonly "eastman-color": "https://cdn.nodaro.ai/images/7cc87700-6d94-4b63-a9bf-0d4665164eb2.png";
|
|
9531
|
+
readonly "hand-tinted": "https://cdn.nodaro.ai/images/1ce94366-073a-4840-b95b-a946b736dc25.png";
|
|
9532
|
+
readonly "agfa-orwo": "https://cdn.nodaro.ai/images/861e5e24-9fc5-489c-82c2-39b0ecaccdfb.png";
|
|
9533
|
+
readonly "day-for-night": "https://cdn.nodaro.ai/images/7e150f10-1dec-4797-af51-308de411e3e1.png";
|
|
9534
|
+
readonly "cross-processed": "https://cdn.nodaro.ai/images/02e06b80-86f8-4df8-a66c-f1309b7fc35f.png";
|
|
9535
|
+
readonly "kodachrome-64": "https://cdn.nodaro.ai/images/11e43274-57fd-49c6-8a79-f435df18acfa.png";
|
|
9536
|
+
readonly "ektachrome-100": "https://cdn.nodaro.ai/images/923670d0-8769-466a-97f5-5edfca45772d.png";
|
|
9537
|
+
readonly "kodak-tri-x-400": "https://cdn.nodaro.ai/images/bb0a4e49-0096-425f-9069-cc8e918032ac.png";
|
|
9538
|
+
readonly aerochrome: "https://cdn.nodaro.ai/images/39dbb701-b848-47c6-a2a5-2b0bc462fbf8.png";
|
|
9539
|
+
readonly "fuji-instax": "https://cdn.nodaro.ai/images/ed48b1bc-e20b-4efb-830d-850b9133482e.png";
|
|
9540
|
+
readonly "cinestill-50d": "https://cdn.nodaro.ai/images/084c6185-7303-4c53-ac7a-7eb3e141f2f9.png";
|
|
9541
|
+
readonly "expired-film": "https://cdn.nodaro.ai/images/c5fbbc8b-5d9f-428d-8f8a-168114ac2199.png";
|
|
9542
|
+
readonly "instagram-warm": "https://cdn.nodaro.ai/images/ef3d3bda-cbf1-4328-9a70-e339dee7bf51.png";
|
|
9543
|
+
readonly "tiktok-saturated": "https://cdn.nodaro.ai/images/97bcc6e5-7089-4fc8-a1e6-54d7e58de59a.png";
|
|
9544
|
+
readonly "youtube-vlog-flat": "https://cdn.nodaro.ai/images/72022437-4f6e-4b0b-9d35-1b0eb937d7a8.png";
|
|
9545
|
+
readonly "iphone-hdr": "https://cdn.nodaro.ai/images/546e2b9e-f163-4021-a2c2-634e2efc09d2.png";
|
|
9546
|
+
readonly "y2k-saturated": "https://cdn.nodaro.ai/images/452fa094-4154-47e8-92a5-6f9d1fbf2680.png";
|
|
9547
|
+
readonly "mtv-90s-vhs": "https://cdn.nodaro.ai/images/4ece53ce-2d1d-41cd-9815-c4ee7e22c579.png";
|
|
9548
|
+
readonly "polaroid-faded": "https://cdn.nodaro.ai/images/e97229c0-5117-4017-87d5-b1e09c8961d1.png";
|
|
9549
|
+
readonly "lifestyle-warm-magazine": "https://cdn.nodaro.ai/images/5c215af2-98b1-4196-bf1a-74007bd2beca.png";
|
|
9550
|
+
};
|
|
9551
|
+
readonly era: {
|
|
9552
|
+
readonly "1920s-flapper": "https://cdn.nodaro.ai/images/3982f52e-9261-40b1-a8fb-61cb1c03e022.png";
|
|
9553
|
+
readonly "1930s-art-deco": "https://cdn.nodaro.ai/images/05f3c0cb-c5ec-4e54-b20d-e1b1ef0d4641.png";
|
|
9554
|
+
readonly "1940s-wartime": "https://cdn.nodaro.ai/images/902bfc0e-aa5a-41d6-985f-25f0ffff80c1.png";
|
|
9555
|
+
readonly "1950s-diner": "https://cdn.nodaro.ai/images/0675491a-a34c-4c0a-9e05-88546bd50e31.png";
|
|
9556
|
+
readonly "atomic-age-50s": "https://cdn.nodaro.ai/images/f0663b89-648e-40c7-901f-b866d9426ce9.png";
|
|
9557
|
+
readonly "1960s-mod": "https://cdn.nodaro.ai/images/929b1d51-b69f-4292-a11f-7dcc9123c877.png";
|
|
9558
|
+
readonly "1970s-disco": "https://cdn.nodaro.ai/images/e8a915dc-8855-4d7c-b07b-b6f2797eba3d.png";
|
|
9559
|
+
readonly "1980s-neon": "https://cdn.nodaro.ai/images/a9f7c56c-ec8a-4985-8fe3-de4f150ea664.png";
|
|
9560
|
+
readonly "1990s-mall": "https://cdn.nodaro.ai/images/b6a957ea-ecad-45bb-8818-f1d5a1efa9bc.png";
|
|
9561
|
+
readonly "2000s-y2k": "https://cdn.nodaro.ai/images/dd00da33-4772-4c18-826b-304504966ef4.png";
|
|
9562
|
+
readonly "gen-z-2020s": "https://cdn.nodaro.ai/images/3bb102c0-ed9c-4a39-82c1-3733ae39f6bf.png";
|
|
9563
|
+
readonly medieval: "https://cdn.nodaro.ai/images/f8fc069f-1d2c-4b01-85bc-27c618a841c4.png";
|
|
9564
|
+
readonly renaissance: "https://cdn.nodaro.ai/images/2e386af4-7f66-4804-b329-d3c3d74cb9fe.png";
|
|
9565
|
+
readonly victorian: "https://cdn.nodaro.ai/images/fa0c0db0-c260-422e-8f22-07ad82f81f71.png";
|
|
9566
|
+
readonly edwardian: "https://cdn.nodaro.ai/images/3858996a-5747-40fb-9f18-be947b178a39.png";
|
|
9567
|
+
readonly "wild-west": "https://cdn.nodaro.ai/images/d99237a5-218f-4540-9a05-2699ad03f2b5.png";
|
|
9568
|
+
readonly "ancient-rome": "https://cdn.nodaro.ai/images/59524682-3031-4ce4-8b22-89ebaa31eab3.png";
|
|
9569
|
+
readonly "ancient-egypt": "https://cdn.nodaro.ai/images/7ac3eca4-eed7-44d8-a98e-c8a752163d19.png";
|
|
9570
|
+
readonly "feudal-japan": "https://cdn.nodaro.ai/images/65e20d34-c572-46ff-9ba5-394f647469c4.png";
|
|
9571
|
+
readonly "fin-de-siecle": "https://cdn.nodaro.ai/images/f70a9700-70b2-4345-b0ab-20732b8404c7.png";
|
|
9572
|
+
readonly "roaring-prewar": "https://cdn.nodaro.ai/images/54c5e57d-0207-4a85-8c7f-8c2d0bead46a.png";
|
|
9573
|
+
readonly "near-future": "https://cdn.nodaro.ai/images/0d7dc860-abb4-4bfb-9fd6-b0d58676d3c3.png";
|
|
9574
|
+
readonly "far-future": "https://cdn.nodaro.ai/images/8656b10e-6f9e-49ce-a9e9-931671a102ab.png";
|
|
9575
|
+
readonly dieselpunk: "https://cdn.nodaro.ai/images/d7028ee4-5e69-4279-a285-8d0b6fb10221.png";
|
|
9576
|
+
readonly atompunk: "https://cdn.nodaro.ai/images/8be7b7a1-72ad-4d1e-b47b-1da9cf946702.png";
|
|
9577
|
+
readonly "cyberpunk-future": "https://cdn.nodaro.ai/images/0f103853-bf20-409e-8a81-b220d16346bc.png";
|
|
9578
|
+
readonly "post-apocalyptic": "https://cdn.nodaro.ai/images/b5ab4697-d539-4a77-bcaf-3c407a44f9da.png";
|
|
9579
|
+
readonly retrofuturism: "https://cdn.nodaro.ai/images/d80f31c9-bc71-4e45-a1d0-c7cd81d7c7f3.png";
|
|
9580
|
+
};
|
|
9581
|
+
readonly lens: {
|
|
9582
|
+
readonly "ultra-wide-14mm": "https://cdn.nodaro.ai/images/45eba250-e883-4436-9b46-75b9c3daafd3.png";
|
|
9583
|
+
readonly "wide-24mm": "https://cdn.nodaro.ai/images/37d6f16c-81ad-42b6-baca-7073b49883e5.png";
|
|
9584
|
+
readonly "standard-35mm": "https://cdn.nodaro.ai/images/e15be97f-66df-435c-a88d-2054ec90820f.png";
|
|
9585
|
+
readonly "normal-50mm": "https://cdn.nodaro.ai/images/2dff5ea9-d167-49fb-8568-1214ce1f7495.png";
|
|
9586
|
+
readonly "portrait-85mm": "https://cdn.nodaro.ai/images/375c4462-34f5-4b57-8eed-835674c68fd7.png";
|
|
9587
|
+
readonly "telephoto-135mm": "https://cdn.nodaro.ai/images/eaa95302-5fea-42d5-94d9-134fd05d43ea.png";
|
|
9588
|
+
readonly "super-telephoto-400mm": "https://cdn.nodaro.ai/images/098339a1-e7a3-48aa-9518-00c74e96dfab.png";
|
|
9589
|
+
readonly fisheye: "https://cdn.nodaro.ai/images/e15d627a-e893-4b56-9273-d0a0f53495ba.png";
|
|
9590
|
+
readonly anamorphic: "https://cdn.nodaro.ai/images/de4c4534-0e6e-4f65-97ac-e072413292f9.png";
|
|
9591
|
+
readonly macro: "https://cdn.nodaro.ai/images/4c6d4a62-af22-4a76-a252-8fe4d7ad8255.png";
|
|
9592
|
+
readonly probe: "https://cdn.nodaro.ai/images/9b4731b8-f171-4a4c-80fc-c3c8528e0f2c.png";
|
|
9593
|
+
readonly cctv: "https://cdn.nodaro.ai/images/673b96c1-0319-44dd-8c56-e9f4e1cc811a.png";
|
|
9594
|
+
readonly "tilt-shift": "https://cdn.nodaro.ai/images/c29fa871-18df-4f25-be40-0a69a5b04026.png";
|
|
9595
|
+
readonly "shallow-dof": "https://cdn.nodaro.ai/images/8981a476-1b4b-437c-a442-2c5f00761b6f.png";
|
|
9596
|
+
readonly "canon-k35": "https://cdn.nodaro.ai/images/56672c8c-5831-4489-995b-766b0f96c038.png";
|
|
9597
|
+
readonly "cooke-s4": "https://cdn.nodaro.ai/images/bc59af17-031c-4ed4-b3ef-f0e1c4d61d08.png";
|
|
9598
|
+
readonly "helios-44": "https://cdn.nodaro.ai/images/ef5e6b83-c6ef-45f6-a03b-bc5676a5aa5b.png";
|
|
9599
|
+
readonly petzval: "https://cdn.nodaro.ai/images/b1e28aad-edd5-404b-8706-e72060f407ee.png";
|
|
9600
|
+
};
|
|
9601
|
+
readonly mood: {
|
|
9602
|
+
readonly happy: "https://cdn.nodaro.ai/images/710df65a-3c1e-485b-b8b7-29f7b3baf479.png";
|
|
9603
|
+
readonly joyful: "https://cdn.nodaro.ai/images/a550b63e-1db7-448e-990e-6c14225db77f.png";
|
|
9604
|
+
readonly relieved: "https://cdn.nodaro.ai/images/fc48f8c6-dbd4-41e9-bbb2-75607d17d61a.png";
|
|
9605
|
+
readonly serene: "https://cdn.nodaro.ai/images/1e23547e-f3d5-42a0-9693-ab4e51a91ee7.png";
|
|
9606
|
+
readonly playful: "https://cdn.nodaro.ai/images/71e21749-8975-44a3-88c2-1154693470b2.png";
|
|
9607
|
+
readonly confident: "https://cdn.nodaro.ai/images/952987ee-83e1-470a-bdda-110f040760d4.png";
|
|
9608
|
+
readonly loving: "https://cdn.nodaro.ai/images/b68eb347-8303-4a25-9bfa-06bd13a7168a.png";
|
|
9609
|
+
readonly amused: "https://cdn.nodaro.ai/images/c0fca3dd-9eca-4f69-aec5-3f493eda10e1.png";
|
|
9610
|
+
readonly smirking: "https://cdn.nodaro.ai/images/27214fff-a7e2-4233-9089-a423f5a26b21.png";
|
|
9611
|
+
readonly eccentric: "https://cdn.nodaro.ai/images/84bdb6ab-772d-4063-b99c-e2d8af599eee.png";
|
|
9612
|
+
readonly hopeful: "https://cdn.nodaro.ai/images/9550cbd6-1577-4e30-beee-c41c02cd0402.png";
|
|
9613
|
+
readonly sad: "https://cdn.nodaro.ai/images/66223dc0-9fae-414f-a217-f2a59418353f.png";
|
|
9614
|
+
readonly angry: "https://cdn.nodaro.ai/images/a575e3cc-7850-43bb-b6bf-4dd49b54b9d4.png";
|
|
9615
|
+
readonly afraid: "https://cdn.nodaro.ai/images/d7ca91ea-c2c5-4df8-a759-95da0f763dc6.png";
|
|
9616
|
+
readonly anxious: "https://cdn.nodaro.ai/images/d02266c8-4957-43ea-8684-54edaa362e78.png";
|
|
9617
|
+
readonly melancholy: "https://cdn.nodaro.ai/images/3752502c-6afb-4189-b1a6-ac352fc6ff80.png";
|
|
9618
|
+
readonly devastated: "https://cdn.nodaro.ai/images/b46d301a-2174-49f1-9a76-f195839f7171.png";
|
|
9619
|
+
readonly grieving: "https://cdn.nodaro.ai/images/c97c52be-1f43-4cbd-a7ee-79a17f29b0b8.png";
|
|
9620
|
+
readonly "caught-off-guard": "https://cdn.nodaro.ai/images/f3baeab0-2389-42ce-8717-fc483b9adad3.png";
|
|
9621
|
+
readonly aloof: "https://cdn.nodaro.ai/images/96ef8281-e931-4849-bb45-37f712676056.png";
|
|
9622
|
+
readonly vulnerable: "https://cdn.nodaro.ai/images/f05343b4-e6ec-456b-bfdc-f47bf0d89965.png";
|
|
9623
|
+
readonly coy: "https://cdn.nodaro.ai/images/0505ea50-c03a-4367-8ebd-4cdaac72a473.png";
|
|
9624
|
+
readonly bored: "https://cdn.nodaro.ai/images/b8303e13-085e-45b7-8966-4b7379b5c4b7.png";
|
|
9625
|
+
readonly embarrassed: "https://cdn.nodaro.ai/images/b6c426e6-efa8-4a2d-8b4a-bd56013ae7ae.png";
|
|
9626
|
+
readonly disgusted: "https://cdn.nodaro.ai/images/e60d81e7-c8db-47de-875c-83d34347352c.png";
|
|
9627
|
+
readonly bewildered: "https://cdn.nodaro.ai/images/6020b288-515e-4299-a341-b60a4ceebb8c.png";
|
|
9628
|
+
readonly thoughtful: "https://cdn.nodaro.ai/images/73b14a16-ca63-4de2-91f2-d8d2a96ab669.png";
|
|
9629
|
+
readonly stoic: "https://cdn.nodaro.ai/images/3d8a8240-3696-4b6b-a2b9-8618d153eff4.png";
|
|
9630
|
+
readonly calm: "https://cdn.nodaro.ai/images/7d5c62d7-96a1-49e9-8a77-6c2f99922f72.png";
|
|
9631
|
+
readonly curious: "https://cdn.nodaro.ai/images/4b1f6ea3-a2ab-4e4a-840a-19389b0f668b.png";
|
|
9632
|
+
readonly mysterious: "https://cdn.nodaro.ai/images/88c84305-5b99-405a-86a7-2a69132b24a9.png";
|
|
9633
|
+
readonly dazed: "https://cdn.nodaro.ai/images/47c07bbd-fcbf-4684-8755-4a25244a8035.png";
|
|
9634
|
+
readonly sleepy: "https://cdn.nodaro.ai/images/97387a98-ad4d-493f-922c-b73f6a45408e.png";
|
|
9635
|
+
readonly unbothered: "https://cdn.nodaro.ai/images/5b99a9bc-c3ec-4415-85c8-400b19e9cbb8.png";
|
|
9636
|
+
readonly fierce: "https://cdn.nodaro.ai/images/d935807e-660c-47fc-8e5a-9048d0fe7cbb.png";
|
|
9637
|
+
readonly determined: "https://cdn.nodaro.ai/images/8df47771-0f4e-4762-b51f-f896e9c92eb3.png";
|
|
9638
|
+
readonly passionate: "https://cdn.nodaro.ai/images/c94b64f3-b1c1-4e2a-adb5-5c9f8a15d673.png";
|
|
9639
|
+
readonly brooding: "https://cdn.nodaro.ai/images/1d71dbfa-bce2-4c28-985f-9f3a5fe9c74e.png";
|
|
9640
|
+
readonly seductive: "https://cdn.nodaro.ai/images/b88b3e2d-c87d-4c61-b5d9-5f7ded19b3e8.png";
|
|
9641
|
+
readonly defiant: "https://cdn.nodaro.ai/images/2ceb8a7f-653b-4e2f-bb06-c718cde96a5b.png";
|
|
9642
|
+
readonly sultry: "https://cdn.nodaro.ai/images/57a1b8e2-0600-4cfe-b836-d26484b2a952.png";
|
|
9643
|
+
readonly smoldering: "https://cdn.nodaro.ai/images/eda9d2bf-3d33-4784-8039-a41cab0a3912.png";
|
|
9644
|
+
readonly sinister: "https://cdn.nodaro.ai/images/2a0e4f94-c0c2-4bc7-a842-bd1f074f3863.png";
|
|
9645
|
+
readonly "wiccan-mystical": "https://cdn.nodaro.ai/images/3898f098-1469-4a73-8ab6-37055868bb1c.png";
|
|
9646
|
+
readonly "lazy-shy": "https://cdn.nodaro.ai/images/644c8e18-024a-4b23-81c1-898ad36c4cdd.png";
|
|
9647
|
+
readonly awe: "https://cdn.nodaro.ai/images/f54ab8bf-5108-4ef1-9599-4e8744f2612a.png";
|
|
9648
|
+
readonly shocked: "https://cdn.nodaro.ai/images/3b5c6eb6-1c76-457b-a130-6930603450ba.png";
|
|
9649
|
+
readonly flirty: "https://cdn.nodaro.ai/images/b2d36ecf-38d0-41f8-a49b-21ca00641e2a.png";
|
|
9650
|
+
readonly suspicious: "https://cdn.nodaro.ai/images/cbea4dbf-2fe4-4cae-bed0-ea2707b77f75.png";
|
|
9651
|
+
readonly resigned: "https://cdn.nodaro.ai/images/da4c2867-d144-4222-9ba6-88006f7fbfd2.png";
|
|
9652
|
+
readonly conflicted: "https://cdn.nodaro.ai/images/44e0bee8-c784-4d25-85c6-83cd90edc70a.png";
|
|
9653
|
+
};
|
|
9654
|
+
readonly atmosphere: {
|
|
9655
|
+
readonly clear: "https://cdn.nodaro.ai/images/566ab159-8e8b-4bc1-9b1a-ef4de1e5e9b8.png";
|
|
9656
|
+
readonly cloudy: "https://cdn.nodaro.ai/images/6e86d4b4-a3e5-4816-a6dc-ef293aa0149b.png";
|
|
9657
|
+
readonly overcast: "https://cdn.nodaro.ai/images/cf1b7b08-542c-4835-8d6e-6769875d43c7.png";
|
|
9658
|
+
readonly fog: "https://cdn.nodaro.ai/images/042450d5-aadd-4b48-8ae8-b6130154c576.png";
|
|
9659
|
+
readonly mist: "https://cdn.nodaro.ai/images/f183ff64-95ce-4a80-abed-4172a632d2d7.png";
|
|
9660
|
+
readonly "fog-mist": "https://cdn.nodaro.ai/images/c6e76aa3-0faa-4aba-9413-0bc9c7f0a162.png";
|
|
9661
|
+
readonly "light-rain": "https://cdn.nodaro.ai/images/f3779fae-0e88-4b82-b4ce-e77113be558a.png";
|
|
9662
|
+
readonly "heavy-rain": "https://cdn.nodaro.ai/images/58c5b785-4b32-4c5b-805f-3617af2be82b.png";
|
|
9663
|
+
readonly storm: "https://cdn.nodaro.ai/images/e0971493-f049-4b88-a888-06f3c79b6bf6.png";
|
|
9664
|
+
readonly snow: "https://cdn.nodaro.ai/images/ad3fc164-fd33-445a-aa7d-e5a456f2a813.png";
|
|
9665
|
+
readonly blizzard: "https://cdn.nodaro.ai/images/2ad6e61b-de81-4bec-bd3b-e6b622914a6d.png";
|
|
9666
|
+
readonly dust: "https://cdn.nodaro.ai/images/a817e05f-b255-4e60-82b6-f86c54aba916.png";
|
|
9667
|
+
readonly "god-rays": "https://cdn.nodaro.ai/images/862e1702-b47e-4449-8aca-489e28087a48.png";
|
|
9668
|
+
readonly smoke: "https://cdn.nodaro.ai/images/249516ae-2d82-4048-a377-d661c65eff42.png";
|
|
9669
|
+
readonly "bokeh-particles": "https://cdn.nodaro.ai/images/13fa3576-900e-4b9c-9b19-bb776683ecbb.png";
|
|
9670
|
+
readonly "chalk-dust": "https://cdn.nodaro.ai/images/13086322-e1f7-4647-9d07-554ca17d12e3.png";
|
|
9671
|
+
readonly "falling-petals": "https://cdn.nodaro.ai/images/55edeed2-4ad8-4de8-afd0-44ac66aa50d9.png";
|
|
9672
|
+
readonly confetti: "https://cdn.nodaro.ai/images/b72cf291-9d52-41b0-a204-9096c318fcd5.png";
|
|
9673
|
+
readonly "sparks-embers": "https://cdn.nodaro.ai/images/13d65693-1b55-4231-8173-9a102881eacf.png";
|
|
9674
|
+
readonly "lens-flare": "https://cdn.nodaro.ai/images/aac783aa-3459-4d85-be47-36f6a6d711c9.png";
|
|
9675
|
+
readonly "heat-haze": "https://cdn.nodaro.ai/images/73627492-e2d2-43d1-9318-71abb81bc84e.png";
|
|
9676
|
+
readonly steam: "https://cdn.nodaro.ai/images/9421fd49-7b83-41b4-915d-6e487cb4f9ce.png";
|
|
9677
|
+
readonly "bubbles-underwater": "https://cdn.nodaro.ai/images/6816f7ed-0869-4220-a4a2-aede796f5980.png";
|
|
9678
|
+
readonly "rain-on-glass": "https://cdn.nodaro.ai/images/b73bfd84-d18e-4594-a9c3-83e2ae933537.png";
|
|
9679
|
+
readonly "pollen-light": "https://cdn.nodaro.ai/images/b059ac4f-e7ae-4a41-acf3-88fcf2ccd31e.png";
|
|
9680
|
+
readonly "water-droplets": "https://cdn.nodaro.ai/images/fca4502d-9f63-4624-b8d9-bb3bf848c8df.png";
|
|
9681
|
+
readonly "falling-ash": "https://cdn.nodaro.ai/images/0e825e62-16be-4092-80f6-436f1f7aafb7.png";
|
|
9682
|
+
readonly fireflies: "https://cdn.nodaro.ai/images/a6ae39f6-a67a-44bc-a79a-b19fa54ec2fc.png";
|
|
9683
|
+
readonly "incense-smoke": "https://cdn.nodaro.ai/images/9922d19c-6fa9-4e38-b5bb-9b18dae31922.png";
|
|
9684
|
+
readonly "cigarette-smoke": "https://cdn.nodaro.ai/images/779397d3-ff0d-4237-aca3-58e1530c7ebd.png";
|
|
9685
|
+
readonly "candle-glow": "https://cdn.nodaro.ai/images/aee0c724-7772-4952-b944-51ca0d7a922e.png";
|
|
9686
|
+
readonly "glitter-sparkle": "https://cdn.nodaro.ai/images/49c917fe-f582-4277-9543-b03bccfe231e.png";
|
|
9687
|
+
readonly starfield: "https://cdn.nodaro.ai/images/97d2767e-ac88-44b5-9d1f-77eb0da6aa78.png";
|
|
9688
|
+
readonly "dandelion-seeds": "https://cdn.nodaro.ai/images/aa94769f-4f0a-40c5-9d62-7201215e5db2.png";
|
|
9689
|
+
readonly "pollen-drift": "https://cdn.nodaro.ai/images/d1ce013d-99ba-423d-87b3-d85f854e5aad.png";
|
|
9690
|
+
readonly "snowflakes-heavy": "https://cdn.nodaro.ai/images/8566be3d-14d6-4f5b-ac17-e090a6a5fb3b.png";
|
|
9691
|
+
readonly "snowflakes-light": "https://cdn.nodaro.ai/images/f86c17bc-7e14-45e6-98ed-7f6e23b801aa.png";
|
|
9692
|
+
readonly "raindrops-on-skin": "https://cdn.nodaro.ai/images/d0f090aa-47a9-4300-92f2-e486a267935c.png";
|
|
9693
|
+
readonly "bioluminescent-cloud": "https://cdn.nodaro.ai/images/5de7a3e0-9ecc-413f-9899-3568ea1d6438.png";
|
|
9694
|
+
readonly "motion-streaks": "https://cdn.nodaro.ai/images/9bdc1ea8-ea20-44aa-b9cb-771efc2d5931.png";
|
|
9695
|
+
};
|
|
9696
|
+
readonly "composition-effects": {
|
|
9697
|
+
readonly none: "https://cdn.nodaro.ai/images/a32481c2-20c7-4ad0-8998-4828034f5409.png";
|
|
9698
|
+
readonly "bursting-through-frame": "https://cdn.nodaro.ai/images/de193923-d7d7-4a4d-a00f-0f11e103e07e.png";
|
|
9699
|
+
readonly "breaking-out-of-frame": "https://cdn.nodaro.ai/images/78252b2d-8116-4c0b-9d96-e3fbf5f972f3.png";
|
|
9700
|
+
readonly "pixel-disintegration": "https://cdn.nodaro.ai/images/ef82100c-7835-4649-9499-5b5f03040c2f.png";
|
|
9701
|
+
readonly "smoke-sculpture": "https://cdn.nodaro.ai/images/4c0d1860-198f-4c3b-a7c8-e5972562ae81.png";
|
|
9702
|
+
readonly "liquid-sculpture": "https://cdn.nodaro.ai/images/c7275187-6891-4ad8-b023-6d777b0f6549.png";
|
|
9703
|
+
readonly "shattering-glass": "https://cdn.nodaro.ai/images/9bf4ca79-565b-45d3-9d5e-caa098e3bea7.png";
|
|
9704
|
+
readonly "emerging-from-background": "https://cdn.nodaro.ai/images/55e0328d-236e-4e77-a5d9-5a5b871796e8.png";
|
|
9705
|
+
readonly "fragmented-mosaic": "https://cdn.nodaro.ai/images/7d5ef9da-819e-4588-a047-a0e7fe1dab52.png";
|
|
9706
|
+
readonly "glitch-distortion": "https://cdn.nodaro.ai/images/7c14d6da-dc8c-4990-a9ef-79f05d722179.png";
|
|
9707
|
+
readonly "doubled-mirror": "https://cdn.nodaro.ai/images/0d6ab020-e33a-422b-8c29-1019c4ea2727.png";
|
|
9708
|
+
readonly "floating-fragments": "https://cdn.nodaro.ai/images/e0e384cf-b95e-422a-9272-bc505d02c728.png";
|
|
9709
|
+
readonly "silhouette-outline": "https://cdn.nodaro.ai/images/537ead59-cdcf-4747-afed-6390e4daa3ed.png";
|
|
9710
|
+
readonly "exploding-particles": "https://cdn.nodaro.ai/images/5213da13-eaf7-4017-9636-1b49685f5e37.png";
|
|
9711
|
+
readonly "matte-painting": "https://cdn.nodaro.ai/images/a2e56582-853e-45ad-b194-44cc80445d71.png";
|
|
9712
|
+
readonly "double-exposure": "https://cdn.nodaro.ai/images/ea66f9a1-6f31-445c-81ac-924518399f88.png";
|
|
9713
|
+
readonly "multiple-exposure": "https://cdn.nodaro.ai/images/791350a6-9c5a-4755-a4e3-5c8bfecbd90e.png";
|
|
9714
|
+
readonly "in-camera-effects": "https://cdn.nodaro.ai/images/b1fc8610-f7ff-4449-a5ea-6bd07830989d.png";
|
|
9715
|
+
readonly "prism-flares": "https://cdn.nodaro.ai/images/a8dca9b1-3e42-43fe-8057-72a155a7e63b.png";
|
|
9716
|
+
};
|
|
9717
|
+
readonly "camera-format": {
|
|
9718
|
+
readonly "35mm-film": "https://cdn.nodaro.ai/images/54c5b9c2-776b-40f8-a24a-eb98d54ec655.png";
|
|
9719
|
+
readonly "16mm-film": "https://cdn.nodaro.ai/images/a829f950-e854-467d-98d0-e140701f5e90.png";
|
|
9720
|
+
readonly "super-8": "https://cdn.nodaro.ai/images/cbaae659-6264-465d-abfe-cf8d074e1fc2.png";
|
|
9721
|
+
readonly "imax-70mm": "https://cdn.nodaro.ai/images/79def2f8-46d6-4cb9-b269-dd4490922648.png";
|
|
9722
|
+
readonly "anamorphic-scope": "https://cdn.nodaro.ai/images/225f7f90-8339-495c-b449-269d717c6033.png";
|
|
9723
|
+
readonly "arri-alexa": "https://cdn.nodaro.ai/images/6e4af3a3-1dd5-4e92-b9ab-9a9fa9766c24.png";
|
|
9724
|
+
readonly "alexa-65": "https://cdn.nodaro.ai/images/9cd1e018-7c12-4306-9949-b81c1b84ba31.png";
|
|
9725
|
+
readonly "sony-venice": "https://cdn.nodaro.ai/images/d68139d8-ba89-48e4-ad8b-ad075ead7e94.png";
|
|
9726
|
+
readonly "blackmagic-pocket-6k": "https://cdn.nodaro.ai/images/9104de37-c398-400c-9247-ebbdb165b231.png";
|
|
9727
|
+
readonly "red-komodo": "https://cdn.nodaro.ai/images/f3635885-add0-4930-a208-4e9f4d1f37ef.png";
|
|
9728
|
+
readonly dslr: "https://cdn.nodaro.ai/images/df54d588-abbe-46ae-b6e5-2fa4189fea70.png";
|
|
9729
|
+
readonly "mirrorless-a7iii": "https://cdn.nodaro.ai/images/5903c65b-4152-4d73-851e-5770982d5c94.png";
|
|
9730
|
+
readonly "canon-r5": "https://cdn.nodaro.ai/images/2558490d-4dca-4c8b-b882-120d447467eb.png";
|
|
9731
|
+
readonly "hasselblad-medium-format": "https://cdn.nodaro.ai/images/d1b5c21d-94d7-42d4-8dca-6a30773844fc.png";
|
|
9732
|
+
readonly "leica-m-rangefinder": "https://cdn.nodaro.ai/images/45a1c919-f810-4371-931c-02e6a998e738.png";
|
|
9733
|
+
readonly voigtlander: "https://cdn.nodaro.ai/images/85b8f1bb-5ca4-4544-a945-ee90d80fa326.png";
|
|
9734
|
+
readonly "fuji-xt4": "https://cdn.nodaro.ai/images/0a316b78-37fb-435c-999b-bb9f4894ca4f.png";
|
|
9735
|
+
readonly "drone-aerial": "https://cdn.nodaro.ai/images/c4a1977e-6263-4608-b9fd-39f4660f3c7f.png";
|
|
9736
|
+
readonly "gopro-action-cam": "https://cdn.nodaro.ai/images/2938d0b7-e118-48d6-8ef5-0fd97bdc2e30.png";
|
|
9737
|
+
readonly "webcam-facetime": "https://cdn.nodaro.ai/images/44fec809-2616-44d0-ab84-cf18c12b7e76.png";
|
|
9738
|
+
readonly vhs: "https://cdn.nodaro.ai/images/559a5ce1-4fae-431c-99c8-ae8c1fd8c50d.png";
|
|
9739
|
+
readonly camcorder: "https://cdn.nodaro.ai/images/eb79f17f-6627-46e7-b7a0-fad665a74269.png";
|
|
9740
|
+
readonly polaroid: "https://cdn.nodaro.ai/images/4ab94dcc-b78b-4f31-a1c6-30d7f55b6049.png";
|
|
9741
|
+
readonly "fuji-instax": "https://cdn.nodaro.ai/images/f14bee6e-bf0a-45cc-92d6-3680b0479eaa.png";
|
|
9742
|
+
readonly "disposable-camera": "https://cdn.nodaro.ai/images/523727d0-46ae-48eb-9e32-9cbdd11acb16.png";
|
|
9743
|
+
readonly "toy-camera-holga": "https://cdn.nodaro.ai/images/9c1205d6-8c6d-4220-882c-0e6c670c688f.png";
|
|
9744
|
+
readonly "tintype-wet-plate": "https://cdn.nodaro.ai/images/fb707d22-a051-4f9c-96ab-92392b32d5f6.png";
|
|
9745
|
+
readonly daguerreotype: "https://cdn.nodaro.ai/images/694be33e-4e80-4713-96fb-f13029a35419.png";
|
|
9746
|
+
readonly "security-cam": "https://cdn.nodaro.ai/images/ffd06480-030b-474f-b55b-612f6b565368.png";
|
|
9747
|
+
readonly "bw-film": "https://cdn.nodaro.ai/images/fddfea55-5e76-428b-8826-8d64abc7560f.png";
|
|
9748
|
+
readonly iphone: "https://cdn.nodaro.ai/images/2307781b-78d2-445d-81a8-791f5d092707.png";
|
|
9749
|
+
};
|
|
9750
|
+
readonly framing: {
|
|
9751
|
+
readonly "extreme-wide-shot": "https://cdn.nodaro.ai/images/845e97b8-53a5-46b4-9a04-9a318b5ba0ce.png";
|
|
9752
|
+
readonly "wide-shot": "https://cdn.nodaro.ai/images/ac647452-4d78-47a1-afc8-7b1905770742.png";
|
|
9753
|
+
readonly "medium-wide-shot": "https://cdn.nodaro.ai/images/b1900820-bfd4-4a40-8426-bb078cf2cd48.png";
|
|
9754
|
+
readonly "medium-shot": "https://cdn.nodaro.ai/images/a6653334-f164-426b-841f-28aee0930df2.png";
|
|
9755
|
+
readonly "medium-close-up": "https://cdn.nodaro.ai/images/7f53ce64-2297-455a-9b1c-262483fd7ec4.png";
|
|
9756
|
+
readonly "close-up": "https://cdn.nodaro.ai/images/20d15e8b-22ee-4f97-b5b3-7ed8a1a8d80c.png";
|
|
9757
|
+
readonly "extreme-close-up": "https://cdn.nodaro.ai/images/3fc3b535-b8b3-43ae-a61a-6d87e5e7fe86.png";
|
|
9758
|
+
readonly "ecu-eye": "https://cdn.nodaro.ai/images/8ed82244-169d-48f9-9924-7e1c592b551a.png";
|
|
9759
|
+
readonly "ecu-mouth": "https://cdn.nodaro.ai/images/034b9262-2dd8-40af-94b1-0fae7e5d48ec.png";
|
|
9760
|
+
readonly "ecu-hands": "https://cdn.nodaro.ai/images/239c63a7-db02-414f-ae41-2a120a7d0593.png";
|
|
9761
|
+
readonly "big-close-up": "https://cdn.nodaro.ai/images/95f4dd5a-f4ef-498c-98b0-da3cbf1bac4e.png";
|
|
9762
|
+
readonly choker: "https://cdn.nodaro.ai/images/a955908e-6d51-4fb5-b7f9-06faca670d48.png";
|
|
9763
|
+
readonly "italian-shot": "https://cdn.nodaro.ai/images/f87099b2-a15b-430d-b3fd-f5c25fb1dc55.png";
|
|
9764
|
+
readonly insert: "https://cdn.nodaro.ai/images/f9c9caf9-e352-4555-8cb6-97d540065ed7.png";
|
|
9765
|
+
readonly macro: "https://cdn.nodaro.ai/images/06a817db-58a0-4e5e-b537-dafa90ba9e66.png";
|
|
9766
|
+
readonly "full-shot": "https://cdn.nodaro.ai/images/91e8045d-7ce0-4dfc-bf6c-b09187e65cd4.png";
|
|
9767
|
+
readonly "cowboy-shot": "https://cdn.nodaro.ai/images/d4e20051-c453-4e22-85e4-c9a1604031f0.png";
|
|
9768
|
+
readonly "head-to-hip": "https://cdn.nodaro.ai/images/4d99a831-755e-49b1-aee8-81167870fdaf.png";
|
|
9769
|
+
readonly "half-body": "https://cdn.nodaro.ai/images/0b4331be-2756-433f-81f3-38b50fb27db9.png";
|
|
9770
|
+
readonly "eye-level": "https://cdn.nodaro.ai/images/1e258940-8157-4058-82a1-1f43ffe7b1e0.png";
|
|
9771
|
+
readonly "high-angle": "https://cdn.nodaro.ai/images/19f39949-dfc9-4e2d-9818-0f9aaaf39b42.png";
|
|
9772
|
+
readonly "low-angle": "https://cdn.nodaro.ai/images/63a0e889-dc46-4e7f-86b5-16d92cf4056d.png";
|
|
9773
|
+
readonly overhead: "https://cdn.nodaro.ai/images/1207f040-1961-4d11-aafd-a9a6255bbaa4.png";
|
|
9774
|
+
readonly "worms-eye-angle": "https://cdn.nodaro.ai/images/aac7c26e-e507-462d-9476-8e74a10ee576.png";
|
|
9775
|
+
readonly "dutch-angle": "https://cdn.nodaro.ai/images/79afd253-5b2d-440a-939c-fa17aaac272d.png";
|
|
9776
|
+
readonly "birds-eye": "https://cdn.nodaro.ai/images/2021f3e4-bbef-4952-b91f-341b4742c602.png";
|
|
9777
|
+
readonly "slightly-downward": "https://cdn.nodaro.ai/images/ffea28eb-c262-4b87-82c1-a81aaefac777.png";
|
|
9778
|
+
readonly "front-on": "https://cdn.nodaro.ai/images/260d46af-eabd-456d-b514-436cd3dcacd8.png";
|
|
9779
|
+
readonly "three-quarter-front": "https://cdn.nodaro.ai/images/871da9ca-c73c-4b97-9928-e3de96d408a8.png";
|
|
9780
|
+
readonly "profile-left": "https://cdn.nodaro.ai/images/82126107-a0a4-4479-b799-a42691ceb56e.png";
|
|
9781
|
+
readonly "profile-right": "https://cdn.nodaro.ai/images/b684b9d0-722c-41a3-8333-d8d16c2b2976.png";
|
|
9782
|
+
readonly "three-quarter-back": "https://cdn.nodaro.ai/images/4f31dbbf-3192-4c60-9e40-3d22e2d238d7.png";
|
|
9783
|
+
readonly behind: "https://cdn.nodaro.ai/images/64cafb2e-f9f4-4179-941d-854ee9f4b79b.png";
|
|
9784
|
+
readonly "side-back-angle": "https://cdn.nodaro.ai/images/8a38a7de-44f2-4e57-8a60-6a91d1ed3d7f.png";
|
|
9785
|
+
readonly "rule-of-thirds": "https://cdn.nodaro.ai/images/5c3652c4-5f87-40a6-a30a-856eb96eea43.png";
|
|
9786
|
+
readonly centered: "https://cdn.nodaro.ai/images/37e40de5-19fc-48a5-9d4c-4ba8c338cc5a.png";
|
|
9787
|
+
readonly "headroom-tight": "https://cdn.nodaro.ai/images/f03927e6-6321-4144-826e-bd432e97bcae.png";
|
|
9788
|
+
readonly "negative-space": "https://cdn.nodaro.ai/images/2a8c2941-bd7b-4f67-9f69-2611f89a2a17.png";
|
|
9789
|
+
readonly "leading-lines": "https://cdn.nodaro.ai/images/49c7c88d-3ce9-4fef-9e3a-2b994bacca11.png";
|
|
9790
|
+
readonly "3x3-grid-collage": "https://cdn.nodaro.ai/images/79dd780f-5591-4bad-a6fb-4060a233c29c.png";
|
|
9791
|
+
readonly diptych: "https://cdn.nodaro.ai/images/e7331d4f-3b28-41ed-b226-28fa3df28dce.png";
|
|
9792
|
+
readonly triptych: "https://cdn.nodaro.ai/images/c9120de4-88ef-4a87-8c2d-005d1a03ee3c.png";
|
|
9793
|
+
readonly "multi-frame-mosaic": "https://cdn.nodaro.ai/images/bddaa365-44bf-47d1-94b7-4455c0af995a.png";
|
|
9794
|
+
readonly "contact-sheet": "https://cdn.nodaro.ai/images/65bb3f42-a778-4502-91ed-3d57f9a5a7a3.png";
|
|
9795
|
+
readonly "magazine-spread": "https://cdn.nodaro.ai/images/0a114450-752e-42f7-a346-bfc364052b0e.png";
|
|
9796
|
+
readonly "cutaway-cross-section": "https://cdn.nodaro.ai/images/78308a76-f2dc-4c31-89d2-edcf92dea13e.png";
|
|
9797
|
+
readonly "golden-spiral": "https://cdn.nodaro.ai/images/2fea452f-18b9-47ab-94a0-1af9225c288e.png";
|
|
9798
|
+
readonly "frame-within-frame": "https://cdn.nodaro.ai/images/167cf3e9-a94e-4250-a772-c244c580bd37.png";
|
|
9799
|
+
readonly "s-curve": "https://cdn.nodaro.ai/images/e8854c4e-97f5-44bc-a331-14f13560bb64.png";
|
|
9800
|
+
readonly "diagonal-composition": "https://cdn.nodaro.ai/images/bc352a58-25da-4162-9db9-7ee45e5ee0f9.png";
|
|
9801
|
+
readonly "triangular-composition": "https://cdn.nodaro.ai/images/ddc51811-e412-4b93-aa88-80c4c3f7f3ec.png";
|
|
9802
|
+
readonly "symmetrical-mirror": "https://cdn.nodaro.ai/images/639d3c65-d5a3-44c0-8fae-019ae5222df4.png";
|
|
9803
|
+
readonly "vignette-composition": "https://cdn.nodaro.ai/images/b4d33b4d-9c84-4d2a-bf42-3e596753b331.png";
|
|
9804
|
+
};
|
|
9805
|
+
readonly lighting: {
|
|
9806
|
+
readonly dawn: "https://cdn.nodaro.ai/images/87650594-2070-4e0f-96b2-b6b7fb44ab12.png";
|
|
9807
|
+
readonly sunrise: "https://cdn.nodaro.ai/images/4e18b54f-6b2c-4ab7-842c-be1fa25351b3.png";
|
|
9808
|
+
readonly morning: "https://cdn.nodaro.ai/images/c1aa52a0-a6e0-4e5b-befd-1cdf0b337e60.png";
|
|
9809
|
+
readonly noon: "https://cdn.nodaro.ai/images/3f0c135a-65b5-4ab3-92de-4231ed620f2e.png";
|
|
9810
|
+
readonly "harsh-midday": "https://cdn.nodaro.ai/images/67130cb6-8a2e-4796-bc93-8937a670a388.png";
|
|
9811
|
+
readonly afternoon: "https://cdn.nodaro.ai/images/e899c830-f4c8-4df2-8afa-de39e1bf00ff.png";
|
|
9812
|
+
readonly overcast: "https://cdn.nodaro.ai/images/abd5c850-8f50-4904-977b-c73f28179ac5.png";
|
|
9813
|
+
readonly "golden-hour": "https://cdn.nodaro.ai/images/045bf7a8-6669-4a6e-81d5-e27975e20623.png";
|
|
9814
|
+
readonly dusk: "https://cdn.nodaro.ai/images/2e20deb8-c39a-45e4-9778-14d5231ac2de.png";
|
|
9815
|
+
readonly "blue-hour": "https://cdn.nodaro.ai/images/c8abc238-b1cd-48e2-90bb-fec6ef2f69ed.png";
|
|
9816
|
+
readonly twilight: "https://cdn.nodaro.ai/images/005df80e-d23a-4172-be5a-53d6858dda5a.png";
|
|
9817
|
+
readonly night: "https://cdn.nodaro.ai/images/f521f1ec-c753-4d0f-b780-9a576fc8e807.png";
|
|
9818
|
+
readonly midnight: "https://cdn.nodaro.ai/images/dc149ee2-a3a8-477e-9dc7-90720101e53f.png";
|
|
9819
|
+
readonly moonlight: "https://cdn.nodaro.ai/images/2d4327b5-8405-4022-9794-fb445ab8e914.png";
|
|
9820
|
+
readonly "neon-night": "https://cdn.nodaro.ai/images/811df332-195b-4141-8a08-c9bc980d904f.png";
|
|
9821
|
+
readonly "three-point": "https://cdn.nodaro.ai/images/a8147090-9096-4126-98a2-1a0a1adf4683.png";
|
|
9822
|
+
readonly rembrandt: "https://cdn.nodaro.ai/images/8f7e9930-df57-4e2d-91cf-2962edd2985f.png";
|
|
9823
|
+
readonly chiaroscuro: "https://cdn.nodaro.ai/images/d9e4b796-1c2c-4378-a70e-907edc6fe3ba.png";
|
|
9824
|
+
readonly silhouette: "https://cdn.nodaro.ai/images/b21f02c6-70d6-462c-b2d8-d03925e7eb2c.png";
|
|
9825
|
+
readonly "high-key": "https://cdn.nodaro.ai/images/0a00ca56-25dc-4b50-9612-98577ec46de5.png";
|
|
9826
|
+
readonly "low-key": "https://cdn.nodaro.ai/images/422fc336-f8c8-4546-b768-af08660e2ddb.png";
|
|
9827
|
+
readonly split: "https://cdn.nodaro.ai/images/94c60342-158d-48ff-b438-047d6e5d5770.png";
|
|
9828
|
+
readonly butterfly: "https://cdn.nodaro.ai/images/03d045d0-7f14-4d24-8cc2-e411c43d30c5.png";
|
|
9829
|
+
readonly loop: "https://cdn.nodaro.ai/images/a1e9d179-fa55-4c76-a594-e943cc814b50.png";
|
|
9830
|
+
readonly broad: "https://cdn.nodaro.ai/images/ffbd98ce-6bf5-4e6e-9605-37c1ef095723.png";
|
|
9831
|
+
readonly short: "https://cdn.nodaro.ai/images/c12955de-7bb2-4b33-9aa7-72f67e5dcd15.png";
|
|
9832
|
+
readonly hatchet: "https://cdn.nodaro.ai/images/28ba6aeb-7628-40db-af6f-71e3a161eab5.png";
|
|
9833
|
+
readonly clamshell: "https://cdn.nodaro.ai/images/c474b1bd-5bac-4521-acae-11ac3842b7f2.png";
|
|
9834
|
+
readonly hard: "https://cdn.nodaro.ai/images/8f6d1fe5-7288-4693-a12d-8e776222d440.png";
|
|
9835
|
+
readonly soft: "https://cdn.nodaro.ai/images/f3789819-d0e7-4d67-8716-f118ebab6180.png";
|
|
9836
|
+
readonly practical: "https://cdn.nodaro.ai/images/62e4045f-0bdc-43c8-8e35-3969780ec66a.png";
|
|
9837
|
+
readonly "ring-light": "https://cdn.nodaro.ai/images/3dc9d872-300c-42fc-8ccb-c6a3b168a05c.png";
|
|
9838
|
+
readonly "phone-screen-glow": "https://cdn.nodaro.ai/images/9d84db1c-4ee1-4b00-be94-8ff28a519eb5.png";
|
|
9839
|
+
readonly "selfie-natural": "https://cdn.nodaro.ai/images/36c476a4-4f2a-41e1-aec8-537184103aec.png";
|
|
9840
|
+
readonly natural: "https://cdn.nodaro.ai/images/93d792dc-6269-4109-a406-727c2852a0d0.png";
|
|
9841
|
+
readonly volumetric: "https://cdn.nodaro.ai/images/f66f85d8-5135-4884-9146-31ef0f0af772.png";
|
|
9842
|
+
readonly noir: "https://cdn.nodaro.ai/images/22435d3e-f25b-4592-a31d-21ff19016930.png";
|
|
9843
|
+
readonly "on-camera-flash": "https://cdn.nodaro.ai/images/272dee07-0da0-406b-8dcb-f66a7ddb9bc2.png";
|
|
9844
|
+
readonly "mirror-bounce-flash": "https://cdn.nodaro.ai/images/3ca0f856-4da2-4175-bf94-8f246139f14b.png";
|
|
9845
|
+
readonly "bounced-flash": "https://cdn.nodaro.ai/images/b0d73207-90e8-48d7-85c1-2021632ffe93.png";
|
|
9846
|
+
readonly "softbox-key": "https://cdn.nodaro.ai/images/fb88d4d9-5e8a-4430-b5c8-6308255f95aa.png";
|
|
9847
|
+
readonly "beauty-dish": "https://cdn.nodaro.ai/images/45658292-7487-48b2-8d0f-193aca9cfdb1.png";
|
|
9848
|
+
readonly "gridded-snoot": "https://cdn.nodaro.ai/images/a7702f7c-8315-4613-8d91-807e044289ec.png";
|
|
9849
|
+
readonly "silk-diffusion": "https://cdn.nodaro.ai/images/c7c70b01-5470-4014-ab9e-0e0a03546280.png";
|
|
9850
|
+
readonly "kicker-rim": "https://cdn.nodaro.ai/images/c7029103-a656-4c48-925f-1db98c60c2d5.png";
|
|
9851
|
+
readonly candlelight: "https://cdn.nodaro.ai/images/1838e5f8-aa89-4a77-aff6-befd5bae4d9c.png";
|
|
9852
|
+
readonly "edison-tungsten": "https://cdn.nodaro.ai/images/47c06056-4df7-49b9-a6b0-a0feab1dc5de.png";
|
|
9853
|
+
readonly "dappled-light": "https://cdn.nodaro.ai/images/95d659cf-f4c4-464c-9693-0ec63d458ee9.png";
|
|
9854
|
+
readonly "raking-sidelight": "https://cdn.nodaro.ai/images/2e4b6ab0-b1f5-4207-8481-8cc7f8b193cc.png";
|
|
9855
|
+
readonly "stage-spotlight": "https://cdn.nodaro.ai/images/97ed4ec9-13f6-4916-ba67-cec51c5dcb1e.png";
|
|
9856
|
+
readonly "underwater-caustics": "https://cdn.nodaro.ai/images/85be921e-d20a-42d3-8712-cc4e627b5f8b.png";
|
|
9857
|
+
readonly bioluminescence: "https://cdn.nodaro.ai/images/838f5a17-3277-4e6e-b84e-d5c50e895250.png";
|
|
9858
|
+
};
|
|
9859
|
+
readonly "camera-motion": {
|
|
9860
|
+
readonly static: "https://cdn.nodaro.ai/videos/70ae8a77-6988-420d-b178-4a2778ac5821.mp4";
|
|
9861
|
+
readonly handheld: "https://cdn.nodaro.ai/videos/fc5fed73-856f-4c91-9653-b4f440f1fcb5.mp4";
|
|
9862
|
+
readonly steadicam: "https://cdn.nodaro.ai/videos/69b117ef-4833-48cd-adb3-ebed7b72cf0f.mp4";
|
|
9863
|
+
readonly "pan-left": "https://cdn.nodaro.ai/videos/c6c2e4b2-148b-4d16-9061-5e1c65dc322b.mp4";
|
|
9864
|
+
readonly "pan-right": "https://cdn.nodaro.ai/videos/62b38623-2b5d-45e4-ba32-92d43132099c.mp4";
|
|
9865
|
+
readonly "whip-pan-left": "https://cdn.nodaro.ai/videos/f17d30d6-01ce-4344-a5ce-306d999fb5be.mp4";
|
|
9866
|
+
readonly "whip-pan-right": "https://cdn.nodaro.ai/videos/5a104889-6151-494a-817c-dc8b714b5d1e.mp4";
|
|
9867
|
+
readonly "tilt-up": "https://cdn.nodaro.ai/videos/1b57ffc3-e9a9-4fb5-a4a6-9c37c308c187.mp4";
|
|
9868
|
+
readonly "tilt-down": "https://cdn.nodaro.ai/videos/50e198bc-7938-4134-bc18-0fa1909d1309.mp4";
|
|
9869
|
+
readonly "zoom-in": "https://cdn.nodaro.ai/videos/b9a01c72-a645-4698-b3c0-f3403707fbfd.mp4";
|
|
9870
|
+
readonly "zoom-out": "https://cdn.nodaro.ai/videos/b44491ac-140c-4bce-aedb-d2dbdce5bd64.mp4";
|
|
9871
|
+
readonly "crash-zoom-in": "https://cdn.nodaro.ai/videos/5d083a4a-ccb7-4347-a8bb-4a28d0f3e77a.mp4";
|
|
9872
|
+
readonly "crash-zoom-out": "https://cdn.nodaro.ai/videos/f59de464-dd49-4651-8341-069ef04f66d8.mp4";
|
|
9873
|
+
readonly "dolly-in": "https://cdn.nodaro.ai/videos/beb6409d-9d81-4921-a4c8-41c33a6e2ecd.mp4";
|
|
9874
|
+
readonly "dolly-out": "https://cdn.nodaro.ai/videos/5f82caed-6378-4b83-9721-9242ceff3f68.mp4";
|
|
9875
|
+
readonly "dolly-zoom": "https://cdn.nodaro.ai/videos/0e71f794-0f6c-4325-9aea-adca41784564.mp4";
|
|
9876
|
+
readonly "push-in": "https://cdn.nodaro.ai/videos/390636f4-0e70-4dcb-a8ad-d1963089691e.mp4";
|
|
9877
|
+
readonly "pull-out": "https://cdn.nodaro.ai/videos/b30b9d5a-44f4-4f15-a9c3-e484ddb7d607.mp4";
|
|
9878
|
+
readonly breathing: "https://cdn.nodaro.ai/videos/7552dffd-6028-4d89-8a2c-b7148efe5c0f.mp4";
|
|
9879
|
+
readonly "push-pull": "https://cdn.nodaro.ai/videos/d7cdb4d4-f8ac-4e85-ba84-10f4510cff50.mp4";
|
|
9880
|
+
readonly "creep-in": "https://cdn.nodaro.ai/videos/18999856-69f6-4f02-ab3b-c3a1651f0e57.mp4";
|
|
9881
|
+
readonly "creep-out": "https://cdn.nodaro.ai/videos/1ffe3a50-d720-4c47-8468-f664323e2529.mp4";
|
|
9882
|
+
readonly "truck-left": "https://cdn.nodaro.ai/videos/ae8b0b19-8eee-4792-b176-7f20bfd5fdeb.mp4";
|
|
9883
|
+
readonly "truck-right": "https://cdn.nodaro.ai/videos/1d67760b-aeda-440f-90b8-a1cfa8d896dc.mp4";
|
|
9884
|
+
readonly "pedestal-up": "https://cdn.nodaro.ai/videos/79df6cf3-fadf-42a3-afac-6b3c33a2e01e.mp4";
|
|
9885
|
+
readonly "pedestal-down": "https://cdn.nodaro.ai/videos/aa107622-04ed-4656-9202-fc46ef5f90b0.mp4";
|
|
9886
|
+
readonly "roll-left": "https://cdn.nodaro.ai/videos/486eedf9-d8ff-4025-8238-aa7789a746b2.mp4";
|
|
9887
|
+
readonly "roll-right": "https://cdn.nodaro.ai/videos/ee7eb921-0468-46ff-abb4-52f1a0f523bf.mp4";
|
|
9888
|
+
readonly "dutch-angle": "https://cdn.nodaro.ai/videos/a9f87831-c35d-4995-b7e2-5f921d966139.mp4";
|
|
9889
|
+
readonly "spin-360": "https://cdn.nodaro.ai/videos/185eaa23-39dd-44ef-aa2b-1b05ba6249cb.mp4";
|
|
9890
|
+
readonly "orbit-left": "https://cdn.nodaro.ai/videos/eb857fea-b3e2-4eb0-b1b4-f6534dd2e00e.mp4";
|
|
9891
|
+
readonly "orbit-right": "https://cdn.nodaro.ai/videos/ea4ba395-74e9-4fc6-b89a-959e655081df.mp4";
|
|
9892
|
+
readonly "arc-left": "https://cdn.nodaro.ai/videos/92b0d528-994d-4107-a896-ea9598f5ad0c.mp4";
|
|
9893
|
+
readonly "arc-right": "https://cdn.nodaro.ai/videos/2cbc3dc0-3a91-49dc-b466-28407e5e3ebb.mp4";
|
|
9894
|
+
readonly "orbit-360": "https://cdn.nodaro.ai/videos/097a7ef5-27b6-4de7-bbf9-655504ec795f.mp4";
|
|
9895
|
+
readonly "crane-up": "https://cdn.nodaro.ai/videos/e18f5347-7529-4f40-84b5-e7e1ecf186a4.mp4";
|
|
9896
|
+
readonly "crane-down": "https://cdn.nodaro.ai/videos/f80b8248-f74f-4448-988d-0f78a4c93b75.mp4";
|
|
9897
|
+
readonly "tracking-shot": "https://cdn.nodaro.ai/videos/efea057d-7779-464d-b79a-feaf5a8e2d76.mp4";
|
|
9898
|
+
readonly follow: "https://cdn.nodaro.ai/videos/21afeb8c-50b3-4e11-883b-c505ae189843.mp4";
|
|
9899
|
+
readonly lead: "https://cdn.nodaro.ai/videos/5f1279d0-caf6-4717-a470-66ad1bb286eb.mp4";
|
|
9900
|
+
readonly "drone-follow": "https://cdn.nodaro.ai/videos/a36d0f48-d65d-41b7-910f-38d71ca7e5e1.mp4";
|
|
9901
|
+
readonly "dolly-track": "https://cdn.nodaro.ai/videos/4b471ddf-9901-4ffe-9934-50f510fd3e5c.mp4";
|
|
9902
|
+
readonly "gimbal-walk": "https://cdn.nodaro.ai/videos/2043bafd-9332-4558-b43e-d26f7450e2ed.mp4";
|
|
9903
|
+
readonly "ronin-glide": "https://cdn.nodaro.ai/videos/b408e6ae-0a9e-4a7b-a097-17f343245636.mp4";
|
|
9904
|
+
readonly serpentine: "https://cdn.nodaro.ai/videos/14a4f8f0-a831-49fa-8c20-b4e3236b89e5.mp4";
|
|
9905
|
+
readonly pov: "https://cdn.nodaro.ai/videos/9e4a0dcd-1ca9-4ec5-b65c-40ef2e543a0f.mp4";
|
|
9906
|
+
readonly "over-the-shoulder": "https://cdn.nodaro.ai/videos/6827388c-4226-4e0e-afbe-efd9022495b9.mp4";
|
|
9907
|
+
readonly "birds-eye": "https://cdn.nodaro.ai/videos/d752038a-ce24-4bf8-b117-d2424c01c4ab.mp4";
|
|
9908
|
+
readonly "worms-eye": "https://cdn.nodaro.ai/videos/79c953d9-1f94-4ba8-b769-89428450be1e.mp4";
|
|
9909
|
+
readonly aerial: "https://cdn.nodaro.ai/videos/59bdf3a0-f40c-4e34-b102-45269c5c1605.mp4";
|
|
9910
|
+
readonly helicopter: "https://cdn.nodaro.ai/videos/556e857d-62a6-4e66-8c09-0b74741acaeb.mp4";
|
|
9911
|
+
readonly "fly-over": "https://cdn.nodaro.ai/videos/86638280-7d0c-4f7a-8fc9-5f10f9554a0f.mp4";
|
|
9912
|
+
readonly flythrough: "https://cdn.nodaro.ai/videos/d95788b6-3a0a-4673-9bb3-99b7c29814c3.mp4";
|
|
9913
|
+
readonly reveal: "https://cdn.nodaro.ai/videos/ecd5c9f2-048d-423b-bd9a-9ba0fd1e4d30.mp4";
|
|
9914
|
+
readonly snorricam: "https://cdn.nodaro.ai/videos/bbe9c3f0-90e0-4196-ac0a-fe86bf815a0a.mp4";
|
|
9915
|
+
readonly "rack-focus": "https://cdn.nodaro.ai/videos/ffe2d73d-b1bd-4b25-a58c-ccd22aac023d.mp4";
|
|
9916
|
+
readonly "handheld-vlog": "https://cdn.nodaro.ai/videos/7ba3389b-7050-4405-a5d2-ecdac8b960f6.mp4";
|
|
9917
|
+
readonly "pov-walk": "https://cdn.nodaro.ai/videos/4c4460f7-15d8-473b-8316-e82cf4b77a9d.mp4";
|
|
9918
|
+
readonly "velocity-edit": "https://cdn.nodaro.ai/videos/d42f535f-365d-486d-b49d-a76ded3aabd5.mp4";
|
|
9919
|
+
readonly "match-cut-zoom": "https://cdn.nodaro.ai/videos/054aa78a-19d8-47bf-b4ab-47939e0429d4.mp4";
|
|
9920
|
+
readonly "screen-tap": "https://cdn.nodaro.ai/videos/8d05b0e3-4129-468d-9c84-a48b11990ed8.mp4";
|
|
9921
|
+
readonly "phone-flip": "https://cdn.nodaro.ai/videos/884eb274-2c24-46ca-bf32-1e1833c7e1ba.mp4";
|
|
9922
|
+
readonly "gentle-drift": "https://cdn.nodaro.ai/videos/b8d23d14-5089-4f10-87a6-622a388d4edc.mp4";
|
|
9923
|
+
readonly parallax: "https://cdn.nodaro.ai/videos/c6a97b45-ff45-48cb-b8be-37af726ff485.mp4";
|
|
9924
|
+
};
|
|
9925
|
+
};
|
|
9926
|
+
|
|
9927
|
+
/**
|
|
9928
|
+
* Where every self-hosted picker picture lives, relative to the app's origin:
|
|
9929
|
+
* `frontend/public/picker-art/` is served at `/picker-art/` in every edition
|
|
9930
|
+
* (content-hashed names, cached as immutable). The editor's pickers use these
|
|
9931
|
+
* paths as they are (same origin); the API makes them absolute (images.ts).
|
|
9932
|
+
* The maps they read are the single source for both.
|
|
9933
|
+
*/
|
|
9934
|
+
declare const PICKER_ART_PATH = "/picker-art/";
|
|
9935
|
+
declare const CHARACTER_ART_PATH = "/picker-art/character/";
|
|
9936
|
+
/** The picker catalogs (by catalog id) whose options have photos. */
|
|
9937
|
+
type CharacterArtFamily = "person" | "styling" | "held-prop" | "materials" | "animals";
|
|
9938
|
+
declare const CHARACTER_ART_FAMILIES: ReadonlyArray<CharacterArtFamily>;
|
|
9939
|
+
/** A character picker option's photo, root-relative — or undefined (no photo, or not a character catalog). */
|
|
9940
|
+
declare function characterArtPath(family: string, id: string): string | undefined;
|
|
9941
|
+
/** "Skin & Eyes" → "skin-eyes": the file name of a topic's round icon. */
|
|
9942
|
+
declare function characterSectionSlug(sectionLabel: string): string;
|
|
9943
|
+
/** The round icon of a Person / Styling topic (by its English label), root-relative — or undefined. */
|
|
9944
|
+
declare function characterSectionArtPath(sectionLabel: string): string | undefined;
|
|
9945
|
+
/** A music / voice art asset key (`emoji/<slug>` / `flags/<code>`) → its root-relative file, or undefined. */
|
|
9946
|
+
declare function soundArtFilePath(key: string): string | undefined;
|
|
9947
|
+
/** A music / voice picker option's picture, root-relative — or undefined. */
|
|
9948
|
+
declare function soundArtPath(catalogId: string, field: string, id: string): string | undefined;
|
|
9949
|
+
|
|
9950
|
+
export { ACTION_FX, ACTION_FX_CATEGORY_LABELS, ACTION_FX_CATEGORY_ORDER, ACTION_FX_IDS, ADULT_AGE_IDS, ADULT_ONLY_FLAG, ADULT_SWEPT_CATALOG_IDS, AD_CREATIVE_ANALYSIS_FIELDS, AD_CREATIVE_ANALYSIS_SYSTEM_PROMPT, AESTHETICS, AESTHETIC_CATEGORY_LABELS, AESTHETIC_CATEGORY_ORDER, AESTHETIC_IDS, ALL_PICKER_WIRING, ANALYZABLE_PICKER_TYPES, ANGLE_LABELS, ASPECT_RATIO_LABELS, ATMOSPHERES, ATMOSPHERE_IDS, AUDIO_WIZARD_CATEGORIES, type ActionFx, type ActionFxCategory, type AdCreativeAnalysisField, type AdCreativeAnalysisInput, type AdultOnlyEntry, type Aesthetic, type AestheticCategory, type AssembleImageInput, type AssembleSunoInput, type AssembleSunoResult, type Atmosphere, BACKDROPS, BACKDROP_CATEGORY_LABELS, BACKDROP_CATEGORY_ORDER, BACKDROP_IDS, BRAND_PRESETS, BRAND_PRESET_IDS, BRAND_PRESET_META, type Backdrop, type BackdropCategory, type BrandCasing, type BrandFonts, type BrandLogo, type BrandPalette, type BrandPresetId, type BrandPresetMeta, type BrandTokens, type BrandTypeSpec, type BuildImagePromptConfig, type BuildImagePromptOverflowResult, type BuildImagePromptResult, type BuildImagePromptSegmentsResult, CAMERA_FORMATS, CAMERA_FORMAT_IDS, CAMERA_MOTIONS, CAMERA_MOTION_CATEGORY_LABELS, CAMERA_MOTION_CATEGORY_ORDER, CAMERA_MOTION_IDS, CHARACTER_ART_FAMILIES, CHARACTER_ART_FILES, CHARACTER_ART_PATH, CHARACTER_FX, CHARACTER_FX_CATEGORY_LABELS, CHARACTER_FX_CATEGORY_ORDER, CHARACTER_FX_DURATIONS, CHARACTER_FX_IDS, CHARACTER_FX_INTENSITIES, CHARACTER_FX_POSITIONS, CHARACTER_MOTIONS, CHARACTER_MOTION_CATEGORY_LABELS, CHARACTER_MOTION_CATEGORY_ORDER, CHARACTER_MOTION_IDS, CHARACTER_MOTION_MAX_PICKS, CHARACTER_MOTION_PACES, CHARACTER_MOTION_POSITIONS, CINEMATIC_LOOK_TAIL, COLOR_LOOKS, COLOR_LOOK_CATEGORY_LABELS, COLOR_LOOK_CATEGORY_ORDER, COLOR_LOOK_IDS, COMPOSITION_EFFECTS, COMPOSITION_EFFECT_IDS, type CameraFormat, type CameraMotion, type CameraMotionCategory, type CatalogPack, type CatalogPackMode, type CategorizedInstrument, type CharacterArtFamily, type CharacterFx, type CharacterFxCategory, type CharacterFxDuration, type CharacterFxIntensity, type CharacterFxPosition, type CharacterFxTiming, type CharacterFxTimingOption, type CharacterMeta, type CharacterMotion, type CharacterMotionBindings, type CharacterMotionCategory, type CharacterMotionDiagnostic, type CharacterMotionFloor, type CharacterMotionPace, type CharacterMotionPosition, type CharacterMotionPromptInput, type CharacterMotionTiming, type CharacterMotionTimingOption, type CharacterPromptInput, type ColorLook, type ColorLookCategory, type CompositionEffect, type ComputeNodePromptArgs, type CreaturePromptInput, DEFAULT_IDENTITY_LOCK, DEFAULT_TEMPLATES, DIRECTION_ARRAY_CEILING, DIRECTION_FIELDS, DIRECTION_ID_MAX_CHARS, DIRECTION_KEYS, type DirectionFamily, type DirectionFieldRow, type DirectionFieldSpec, type DirectionFields, type DirectionHintClause, type DirectionHintMode, type DirectionKey, type DirectionStyleGroup, type DirectionSurface, ERAS, ERA_CATEGORY_LABELS, ERA_CATEGORY_ORDER, ERA_IDS, EXPOSURE_CATEGORY_LABELS, EXPOSURE_CATEGORY_ORDER, EXPOSURE_FIELD_BY_CATEGORY, EXPOSURE_IDS, EXPOSURE_SETTINGS, type Era, type EraCategory, type ExposureCategory, type ExposureSettings, type ExposureValue, FACTORY_PRESETS, FACTORY_SNIPPETS, FILM_STILL_PREFIX, FILM_STYLE_KEYS, FLOORED_PICKER_KEYS, FRAMINGS, FRAMING_CATEGORY_LABELS, FRAMING_CATEGORY_ORDER, FRAMING_FIELD_BY_CATEGORY, FRAMING_IDS, type FacePromptInput, type FactoryPreset, type FactoryPresetGroup, type FactorySnippet, type ForeignCatalogId, type FrameDeliveryPlan, type FrameDeliveryPlanArgs, type Framing, type FramingCategory, type FramingValue, GAPS_SCHEMA, type GeminiOmniI2vInputsArgs, type GeminiOmniI2vInputsResult, HELD_PROPS, HELD_PROP_CATEGORY_LABELS, HELD_PROP_CATEGORY_ORDER, HELD_PROP_IDS, type HeldProp, type HeldPropCategory, IMAGE_HINT_MODE_DEFAULT, IMAGE_REFERENCE_PROMPT_DOCTRINE, IMAGE_WIZARD_CATEGORIES, INSTANT_CUT_CLAUSE, INSTRUMENTATION_DEFAULT_DATA, INSTRUMENTS, INSTRUMENT_CATEGORY_LABELS, INSTRUMENT_CATEGORY_ORDER, type IdentityLockMode, type ImageDirectionKey, type ImageReferenceDoctrine, type InstrumentCategory, type InstrumentationEntry, LENSES, LENS_IDS, LIGHTINGS, LIGHTING_CATEGORY_LABELS, LIGHTING_CATEGORY_ORDER, LIGHTING_FIELD_BY_CATEGORY, LIGHTING_IDS, LLM_CHAT_WIZARD_CATEGORIES, LOOK_PREVIEW_SETS, LOOP_SUBJECTS, LOOP_SUBJECT_CATEGORY_LABELS, LOOP_SUBJECT_CATEGORY_ORDER, type Lens, type Lighting, type LightingCategory, type LightingValue, type LlmChatFieldArgs, type LocationMotionPromptInput, type LocationPromptInput, type LocationRefinePromptInput, type LookPreviewSet, type LookPreviewSets, type LoopSubject, type LoopSubjectCategory, MATERIALS, MATERIAL_CATEGORY_LABELS, MATERIAL_CATEGORY_ORDER, MATERIAL_IDS, MAX_SELECTED_BY_DIMENSION, MAX_SELECTED_BY_FRAMING_CATEGORY, MAX_SELECTED_BY_STYLING_DIMENSION, MAX_SUBJECT_KEYS, MINOR_IMPLYING_TYPE_IDS, MOODS, MOOD_CATEGORY_LABELS, MOOD_CATEGORY_ORDER, MOOD_IDS, MOVEMENT_LABELS, MULTI_PICKER_WIRING, MUSIC_EMOTIONS, MUSIC_ENERGIES, MUSIC_ERAS, MUSIC_GENRES, MUSIC_GENRE_CATEGORY_LABELS, MUSIC_GENRE_CATEGORY_ORDER, MUSIC_GENRE_DEFAULT_DATA, MUSIC_MOOD_DEFAULT_DATA, MUSIC_VIBES, MUSIC_WIZARD_CATEGORIES, type Material, type MaterialCategory, type ModelChange, type Mood, type MoodCategory, type MoodValue, type MultiDimPickerWiring, type MultiPickerAnalyzerSpec, type MusicEra, type MusicGenre, type MusicGenreCategory, type MusicMoodData, type MusicMoodEntry, type MusicSubgenre, NODE_PROMPT_CANDIDATE_FIELDS, NODE_PROMPT_FIELDS, OBJECT_ANGLE_PRESETS, OBJECT_ANGLE_PROMPTS, OBJECT_ASSET_PRESETS, OBJECT_ASSET_PROMPTS, OBJECT_MATERIAL_PRESETS, OBJECT_MATERIAL_PROMPTS, OBJECT_VARIATION_PRESETS, OBJECT_VARIATION_PROMPTS, type ObjectMotionPromptInput, type ObjectPresetAssetType, type ObjectPromptInput, PEOPLE, PERSON_DIMENSION_LABELS, PERSON_DIMENSION_ORDER, PERSON_DIMENSION_SECTIONS, PERSON_FIELD_BY_DIMENSION, PERSON_IDS, PHOTOGRAPHERS, PHOTOGRAPHER_CATEGORY_LABELS, PHOTOGRAPHER_CATEGORY_ORDER, PHOTOGRAPHER_IDS, PHOTO_GENRES, PHOTO_GENRE_CATEGORY_LABELS, PHOTO_GENRE_CATEGORY_ORDER, PHOTO_GENRE_IDS, PICKER_ANALYZER_FAMILIES, PICKER_ANALYZER_REGISTRY, PICKER_ART_PATH, PICKER_CATALOGS, PICKER_TYPES, POSES, POSE_CATEGORY_LABELS, POSE_CATEGORY_ORDER, POSE_IDS, POST_CONTENT_ANALYSIS_SYSTEM_PROMPT, POST_PROCESS_EFFECTS, POST_PROCESS_EFFECT_IDS, PRODUCTION_STYLES, PROMPT_AFFIX_CORE_FIELD_OVERRIDES, PROMPT_AFFIX_NODE_TYPES, PROMPT_HINT_SEPARATOR, PROVIDER_CAPABILITIES, PROVIDER_PROMPT_DOCTRINES, type Person, type PersonDimension, type PersonDimensionSection, type PersonPack, type PersonValue, type PhotoGenre, type PhotoGenreCategory, type Photographer, type PhotographerCategory, type PickerAnalyzer, type PickerAnalyzerDescriptor, type PickerAnalyzerSpec, type PickerApplyMode, type PickerCatalog, type PickerCatalogDetail, type PickerCatalogInput, type PickerCatalogSummary, type PickerDimension, type PickerDimensionInput, type PickerDimensionSpec, type PickerGaps, type PickerHintMode, type PickerImageOptions, type PickerOption, type PickerOptionInput, type PickerType, type PickerWiring, type PickerWiringEntry, type Pose, type PoseCategory, type PoseValue, type PostProcessEffect, type ProjectPickerCatalogOptions, type ProjectedPickerCatalog, type ProjectedPickerDimension, type ProjectedPickerOption, type PromptClauseSlot, type PromptFieldSpec, type PromptIconKind, type PromptSegment, type PromptSegmentOrigin, type ProviderPromptDoctrine, REFERENCE_IMAGE_ROLES, REFERENCE_RULES, REFERENCE_RULES_MULTI_PERSON, REF_BINDING, RENDER_QUALITIES, RENDER_QUALITY_IDS, RETIRED_ADULT_ONLY_HINT_STRINGS, type RecommendedModel, type RefIdTokenContext, type ReferenceCounts, type ReferenceLineFormat, type RegisteredPersonEntry, type RenderQuality, type ResolveCharacterMentionsResult, type ResolveLocationMentionsResult, type ResolvePromptArgs, type ResolveVideoReferenceCoreArgs, SCENE3D_FIGURE_REFERENCE_RULE, SCENE3D_FREE_PLATE_SLOTS, SCENE3D_LAYOUT_REFERENCE_SCOPING_FIXTURE, SCENE3D_LAYOUT_REFERENCE_SCOPING_LINE, SCENE3D_LAYOUT_SCOPING_FOR, SCENE3D_LAYOUT_SCOPING_IGNORE, SCENE3D_LAYOUT_SCOPING_LOOK_SOURCE, SCENE3D_LAYOUT_SCOPING_MARKER, SCENE3D_UNREFERENCED_FIGURES_WARNING_CODE, SCENE_FRAME_RULE, SCENE_PROMPT_MAX_LENGTH, SEEDANCE_VIDEO_EDIT_PREFIX, SETTINGS, SETTING_CATEGORY_LABELS, SETTING_IDS, SHOT_LABELS, SINGING_STYLES, SINGLE_PICKER_WIRING, SNIPPET_MEDIA_VALUES, SOUND_ART, SOUND_ART_FILES, STYLES, STYLE_IDS, STYLE_PRESETS, STYLE_SECTION_GAP, STYLE_SECTION_HEADER, STYLINGS, STYLING_DIMENSION_LABELS, STYLING_DIMENSION_ORDER, STYLING_DIMENSION_SECTIONS, STYLING_FIELD_BY_DIMENSION, STYLING_IDS, SUBJECT_ARRAY_CEILING, SUBJECT_CUSTOM_AGE_KEY, SUBJECT_FIELDS, SUBJECT_FOLD_KEYS, SUBJECT_ID_MAX_CHARS, SUBJECT_IMAGE_HINT_MODE_DEFAULT, SUBJECT_KEYS, SUBJECT_KEY_MAX_CHARS, SUBJECT_VIDEO_HINT_MODE_DEFAULT, type Scene3DFigureReferenceCheck, type Scene3DLayoutReferenceCarrier, type Scene3DLayoutReferenceSeat, type Scene3DLayoutScopingSpec, type Scene3DUnreferencedFiguresWarning, type Seedance2InputsArgs, type Seedance2InputsResult, type Seedance2Mode, type Setting, type SettingCategory, type SidecarCoverageReport, type SingleDimPickerWiring, type SlottedPromptClause, type SnippetMedia, type SnippetTarget, type SoundArtCatalogId, type SoundArtFields, type SoundArtKey, type SoundArtMap, type SoundComposition, type SoundCompositionFields, type SoundConsumerType, type StructuredPromptFields, type Style, type StylePreset, type Styling, type StylingDimension, type StylingDimensionSection, type StylingValue, type SubjectFieldRow, type SubjectFieldSpec, type SubjectFields, type SubjectGroupFieldSpec, type SubjectHintMode, type SubjectIdsFieldSpec, type SubjectSurface, type SuspiciousTermOptions, TEMPORALS, TEMPORAL_CATEGORY_LABELS, TEMPORAL_CATEGORY_ORDER, TEMPORAL_FIELD_BY_CATEGORY, TEMPORAL_IDS, TERM_MAX_CHARS, TEXT_WIZARD_CATEGORIES, TRANSITIONS, TRANSITION_CATEGORY_LABELS, TRANSITION_CATEGORY_ORDER, TRANSITION_DURATIONS, TRANSITION_IDS, TRANSITION_INTENSITIES, TRANSITION_POSITIONS, type Temporal, type TemporalCategory, type TemporalValue, type TermCarrier, type Transition, type TransitionCategory, type TransitionDuration, type TransitionHintOptions, type TransitionHintScope, type TransitionIntensity, type TransitionPosition, type TransitionTiming, type TransitionTimingOption, VIDEO_HINT_MODE_DEFAULT, VIDEO_WIZARD_CATEGORIES, VOCAL_PRESENCE, VOCAL_PRESENCE_INSTRUMENTAL_ID, VOICE_ACCENTS, VOICE_AGES, VOICE_ARCHETYPES, VOICE_CHARACTER_DEFAULT_DATA, VOICE_DELIVERY_DEFAULT_DATA, VOICE_EMOTIONS, VOICE_GENDERS, VOICE_LANGUAGES, VOICE_PACES, VOICE_TIMBRES, type VeoI2vInputsArgs, type VeoI2vInputsResult, type VideoDirectionKey, type VideoExtraRef, type VideoPromptCapOptions, type VoiceCharacterEntry, type VoiceDeliveryEntry, WARDROBE, WARDROBE_CATEGORY_LABELS, WARDROBE_DIMENSION_ORDER, WARDROBE_FIELD_BY_DIMENSION, type WardrobeDimension, type WardrobeEntry, type WardrobeValue, type WizardCategory, type WizardNodeContext, type WizardOption, type WizardQuestion, type WizardSelection, __resetCatalogIdGuardForTests, appendField, appendMusicMeta, appendReferenceLines, appendScene3DStillScopingLines, applyMinorAgeFloorToPickerValues, applyPickerJson, applyPromptAffixes, applyReferenceOrderToVideo, applyTemplate, asBodyClauses, assembleImageInput, assembleSunoInput, buildActionFxHints, buildActionFxTerms, buildAdCreativeAnalysisUserText, buildAestheticHints, buildAestheticTerms, buildAgeHint, buildAtmosphereHints, buildAtmosphereTerms, buildCharacterPrompt, buildCreaturePrompt, buildExposureHints, buildExposureTerms, buildFaceTemplateInputs, buildFramingHints, buildFramingTerms, buildHeldPropHints, buildHeldPropTerms, buildIdentityDirectives, buildIdentityLockLine, buildImagePrompt, buildImagePromptSegments, buildImagePromptWithOverflow, buildInstrumentationHints, buildInstrumentationTerms, buildLightingHints, buildLightingTerms, buildLocationMotionPrompt, buildLocationPrompt, buildLocationRefinePrompt, buildMaterialHints, buildMaterialTerms, buildMoodHints, buildMoodTerms, buildMotionPrompt, buildMultiPickerAnalyzerSpec, buildMusicGenreHints, buildMusicGenreTerms, buildMusicMoodHints, buildMusicMoodTerms, buildNeedleAlternationSource, buildObjectMotionPrompt, buildObjectPrompt, buildPersonHints, buildPersonTerms, buildPhotographerHints, buildPhotographerTerms, buildPickerAnalyzerSpec, buildPickerLegend, buildPickerZodSchema, buildPoseHints, buildPoseTerms, buildPostProcessHints, buildPostProcessTerms, buildReferenceBlocks, buildScene3DLayoutScopingLine, buildScene3DUnreferencedFiguresWarning, buildScenePrompt, buildSeedanceVideoEditPrompt, buildStylingHints, buildStylingTerms, buildSurroundFillPrompt, buildTemporalHints, buildTemporalTerms, buildVoiceCharacterHints, buildVoiceCharacterTerms, buildVoiceDeliveryHints, buildVoiceDeliveryTerms, buildWardrobeHints, catalogGuardActive, catalogPacksVersion, characterArtPath, characterLockToRefLock, characterSectionArtPath, characterSectionSlug, collectIdentityLockClause, composeCameraMotionHintFromConnections, composeCameraMotionTermFromConnections, composeCharacterFxHintFromConnections, composeCharacterMotionHintFromConnections, composeNegative, composePickerCatalogs, composeSectionedPrompt, composeSoundHintFromConnections, composeTransitionHintFromConnections, composeVideoPromptText, composedHas, composedOption, composedOptionIndex, computeLlmChatFields, computeNodePrompt, computePackSidecarCoverage, containsMinorAgeHint, curateEntries, curatedAnimalPromptHint, curatedAnimalTerm, curatedFurnitureText, curatedVehicleText, curatedWeaponText, deriveTerm, directionFieldsForSurface, endsInsideStyleSection, expandImagePositionRefs, expandImageRefTokens, filmStillPrefix, findForeignCatalogIds, findForeignCatalogIdsInBody, foreignCatalogIdMessage, getActionFx, getActionFxLabel, getActionFxPromptHint, getActionFxTerm, getAdultOnlyEntries, getAdultOnlyHintStrings, getAdultOnlyIds, getAesthetic, getAestheticLabel, getAestheticPromptHint, getAestheticTerm, getAtmosphere, getAtmosphereLabel, getAtmospherePromptHint, getAtmosphereTerm, getBackdrop, getBackdropLabel, getBackdropPromptHint, getBackdropTerm, getCameraFormat, getCameraFormatLabel, getCameraFormatPromptHint, getCameraFormatTerm, getCameraMotion, getCameraMotionLabel, getCameraMotionPromptHint, getCameraMotionTerm, getCategoriesForNodeType, getCharacterFx, getCharacterFxLabel, getCharacterFxPromptHint, getCharacterFxTerm, getCharacterMotion, getCharacterMotionBindings, getCharacterMotionDiagnostics, getCharacterMotionLabel, getCharacterMotionPromptHint, getCharacterMotionTerm, getColorLook, getColorLookLabel, getColorLookPromptHint, getColorLookTerm, getCompositionEffect, getCompositionEffectLabel, getCompositionEffectPromptHint, getCompositionEffectTerm, getEffectiveSunoCustomMode, getEra, getEraLabel, getEraPromptHint, getEraTerm, getExposure, getExposureLabel, getExposurePromptHint, getExposureTerm, getFactoryPresets, getFactorySnippets, getFraming, getFramingCategoryLimit, getFramingLabel, getFramingPromptHint, getFramingTerm, getHeldProp, getHeldPropLabel, getHeldPropPromptHint, getHeldPropTerm, getIdentityLockClause, getInstrument, getInstrumentTerm, getLens, getLensLabel, getLensPromptHint, getLensTerm, getLighting, getLightingLabel, getLightingPromptHint, getLightingTerm, getLoopSubject, getLoopSubjectLabel, getLoopSubjectPromptHint, getLoopSubjectTerm, getMaterial, getMaterialLabel, getMaterialPromptHint, getMaterialTerm, getMinorAgeHintStrings, getMood, getMoodLabel, getMoodPromptHint, getMoodTerm, getMusicEmotion, getMusicEmotionTerm, getMusicEnergy, getMusicEnergyTerm, getMusicEra, getMusicEraTerm, getMusicGenre, getMusicGenreLabel, getMusicGenreTerm, getMusicSubgenre, getMusicSubgenreTerm, getMusicVibe, getMusicVibeTerm, getParameterPromptHint, getPerson, getPersonDimensionLimit, getPersonLabel, getPersonPromptHint, getPersonTerm, getPhotoGenre, getPhotoGenreLabel, getPhotoGenrePromptHint, getPhotoGenreTerm, getPhotographer, getPhotographerLabel, getPhotographerPromptHint, getPhotographerTerm, getPickerAnalyzer, getPickerCatalog, getPickerWiring, getPose, getPoseLabel, getPosePromptHint, getPoseTerm, getPostProcessEffect, getPostProcessEffectLabel, getPostProcessEffectPromptHint, getPostProcessEffectTerm, getProductionStyle, getProductionStyleTerm, getPromptDoctrine, getPromptFields, getPromptTips, getRegisteredCatalogPacks, getRegisteredPeople, getRegisteredPersonDimensionLabels, getRegisteredPersonDimensionOrder, getRegisteredPersonFieldByDimension, getRegisteredPickerCatalogs, getRegisteredSubjectKeys, getRenderQuality, getRenderQualityLabel, getRenderQualityPromptHint, getRenderQualityTerm, getSetting, getSettingLabel, getSettingPromptHint, getSettingTerm, getSingingStyle, getSingingStyleTerm, getSnippetMedia, getStyle, getStyleLabel, getStylePreset, getStylePromptHint, getStyleTerm, getStyling, getStylingDimensionLimit, getStylingLabel, getStylingPromptHint, getStylingTerm, getTemporal, getTemporalLabel, getTemporalPromptHint, getTemporalTerm, getTransition, getTransitionLabel, getTransitionPromptHint, getTransitionTerm, getVocalPresence, getVocalPresenceTerm, getVoiceAccent, getVoiceAccentTerm, getVoiceAge, getVoiceAgeTerm, getVoiceArchetype, getVoiceArchetypeTerm, getVoiceEmotion, getVoiceEmotionTerm, getVoiceGender, getVoiceGenderTerm, getVoiceLanguage, getVoiceLanguageTerm, getVoicePace, getVoicePaceTerm, getVoiceTimbre, getVoiceTimbreTerm, getWardrobeEntriesByDimension, getWardrobeEntry, getWardrobePromptHint, groupFactoryPresets, hasCatalogPacksFor, hasScene3DLayoutScopingLine, hasUpstreamCharacter, identityRefsSentence, insertBeforeStyleSection, isAnalyzablePicker, isDeniedStyleId, isInstantTransition, isInstrumentalVocal, isMinorAge, isSuspiciousDerivedTerm, isVantageFraming, isWizardSupported, joinHintFragments, joinPromptHints, joinPromptParts, keepableDirectionHints, listPickerCatalogs, lookPreviewStillUrl, migratePersonValue, modeForFamily, nodeHasInlinePrompt, nodeHasPromptField, nodeSupportsPromptAffixes, normalizeSubjectFields, overlayEntry, partitionStyleClauses, personPacksVersion, pickerFanoutTargets, pickerOptionImageUrl, pickerSectionImageUrl, planFrameDelivery, projectAllCatalogs, projectPickerCatalog, promptAffixCoreField, promptBindsFirstFrame, promptFieldCarriesAffixes, promptPartSeparator, readDirectionFields, readStructuredFields, readSubjectFields, referenceDescriptionLine, referenceRulesBlock, registerCatalogPack, registerPersonPack, renderDescribedReferenceLines, renderDirectionHintClauses, renderDirectionHints, renderReferenceCaptionLines, renderScene3DLayoutScopingLine, renderStructuredFields, renderStyleSection, renderSubjectHints, renderTransitionBases, resetCatalogPacks, resetPersonPacks, resolveBrandInput, resolveCharacterMentions, resolveGeminiOmniI2vInputs, resolveLocationMentions, resolvePrompt, resolveRefIdTokens, resolveReferenceTokens, resolveSeedance2Inputs, resolveTemplate, resolveTerm, resolveVeoI2vInputs, resolveVideoReferenceCore, scene3DLayoutVideoCaptions, sectionedClauseCosts, setComposedCatalogResolver, soundArtFilePath, soundArtPath, splitStyleSection, styleSectionFromClauses, styleSlotFor, subjectFieldsForSurface, subscribeCatalogPacks, summarizePickerCatalogs, toIdentityLockMode, truncateForField, truncateText, withForcedIdentityLock };
|