@use "sass:math";
@use "../button/_variables.scss" as *;
@use "../core/_index.scss" as *;


// Input

/// The default fill mode of the Input.
/// @group input
/// @role default
$kendo-input-default-fill-mode: "solid" !default;
/// The default roundness of the Input.
/// @group input
/// @role default
$kendo-input-default-roundness: "md" !default;
/// The default size of the Input.
/// @group input
/// @role default
$kendo-input-default-size: "md" !default;

/// The default width of the Input components.
/// @group input
$kendo-input-default-width: 100% !default;

/// The border width of the Input components.
/// @group input
$kendo-input-border-width: 1px !default;
/// The border radius of the Input components.
/// @group input
$kendo-input-border-radius: null !default;

/// The horizontal padding of the small Input components.
/// @group input
$kendo-input-sm-padding-x: k-spacing(2) !default;
/// The horizontal padding of the medium Input components.
/// @group input
$kendo-input-md-padding-x: k-spacing(3) !default;
/// The horizontal padding of the large Input components.
/// @group input
$kendo-input-lg-padding-x: k-spacing(4) !default;

/// The vertical padding of the small Input components.
/// @group input
$kendo-input-sm-padding-y: k-spacing(1) !default;
/// The vertical padding of the medium Input components.
/// @group input
$kendo-input-md-padding-y: k-spacing(1.5) !default;
/// The vertical padding of the large Input components.
/// @group input
$kendo-input-lg-padding-y: k-spacing(2) !default;

/// The font family of input components.
/// @group input
$kendo-input-font-family: var( --kendo-font-family, inherit ) !default;

/// The font size of input components.
/// @group input
$kendo-input-font-size: null  !default;
/// The font size of the small Input components.
/// @group input
$kendo-input-sm-font-size: var( --kendo-font-size-sm, inherit )!default;
/// The font size of the medium Input components.
/// @group input
$kendo-input-md-font-size: var( --kendo-font-size, inherit )  !default;
/// The font size of the large Input components.
/// @group input
$kendo-input-lg-font-size: var( --kendo-font-size-lg, inherit )  !default;

/// The line height of input components.
/// @group input
$kendo-input-line-height: null !default;
/// The line height of the small Input components.
/// @group input
$kendo-input-sm-line-height: math.div( 20, 14 ) !default;
/// The line height of the medium Input components.
/// @group input
$kendo-input-md-line-height: var( --kendo-line-height, normal) !default;
/// The line height of the large Input components.
/// @group input
$kendo-input-lg-line-height: var( --kendo-line-height, normal) !default;

$kendo-input-sm-calc-size: calc( ( #{$kendo-input-sm-line-height} * 1em ) + ( #{$kendo-input-sm-padding-y} * 2 ) + ( #{$kendo-input-border-width * 2} ) ) !default;
$kendo-input-md-calc-size: calc( ( #{$kendo-input-md-line-height} * 1em ) + ( #{$kendo-input-md-padding-y} * 2 ) + ( #{$kendo-input-border-width * 2} ) ) !default;
$kendo-input-lg-calc-size: calc( ( #{$kendo-input-lg-line-height} * 1em ) + ( #{$kendo-input-lg-padding-y} * 2 ) + ( #{$kendo-input-border-width * 2} ) ) !default;

/// The background color of the Input components.
/// @group input
$kendo-input-bg: k-color(surface-alt) !default;
/// The text color of the Input components.
/// @group input
$kendo-input-text: k-color(on-app-surface) !default;
/// The border color of the Input components.
/// @group input
$kendo-input-border: k-color(border-alt) !default;
/// The shadow of the Input components.
/// @group input
$kendo-input-shadow: null !default;

/// The background color of the hovered Input components.
/// @group input
$kendo-input-hover-bg: null !default;
/// The text color of the hovered Input components.
/// @group input
$kendo-input-hover-text: null !default;
/// The border color of the hovered Input components.
/// @group input
$kendo-input-hover-border: k-color(border-alt) !default;
/// The shadow of the hovered Input components.
/// @group input
$kendo-input-hover-shadow: null !default;

/// The background color of the focused Input components.
/// @group input
$kendo-input-focus-bg: $kendo-input-bg !default;
/// The text color of the focused Input components.
/// @group input
$kendo-input-focus-text: $kendo-input-text !default;
/// The border color of the focused Input components.
/// @group input
$kendo-input-focus-border: k-color(primary-emphasis) !default;
/// The shadow of the focused Input components.
/// @group input
$kendo-input-focus-shadow: 0 0 0 .25rem color-mix(in srgb, k-color(primary) 25%, transparent) !default;

/// The background color of the disabled Input components.
/// @group input
$kendo-input-disabled-bg: null !default;
/// The text color of the disabled Input components.
/// @group input
$kendo-input-disabled-text: null !default;
/// The border color of the disabled Input components.
/// @group input
$kendo-input-disabled-border: null !default;
/// The gradient of the disabled Input components.
/// @group input
$kendo-input-disabled-gradient: null !default;
/// The shadow of the disabled Input components.
/// @group input
$kendo-input-disabled-shadow: null !default;

/// The background color of the outline Input components.
/// @group input
$kendo-input-outline-bg: null !default;
/// The text color of the outline Input components.
/// @group input
$kendo-input-outline-text: k-color(on-app-surface) !default;
/// The border color of the outline Input components.
/// @group input
$kendo-input-outline-border: color-mix(in srgb, k-color(on-app-surface) 50%, transparent) !default;
/// The background color of the outline hovered Input components.
/// @group input
$kendo-input-outline-hover-bg: null !default;
/// The text color of the outline hovered Input components.
/// @group input
$kendo-input-outline-hover-text: null !default;
/// The border color of the outline hovered Input components.
/// @group input
$kendo-input-outline-hover-border: $kendo-input-outline-border !default;

/// The background color of the outline focused Input components.
/// @group input
$kendo-input-outline-focus-bg: null !default;
/// The text color of the outline focused Input components.
/// @group input
$kendo-input-outline-focus-text: null !default;
/// The border color of the outline focused Input components.
/// @group input
$kendo-input-outline-focus-border: $kendo-input-focus-border !default;
/// The shadow of the outline focused Input components.
/// @group input
$kendo-input-outline-focus-shadow: $kendo-input-focus-shadow !default;

/// The background color of the flat Input components.
/// @group input
$kendo-input-flat-bg: transparent !default;
/// The text color of the flat Input components.
/// @group input
$kendo-input-flat-text: $kendo-input-text !default;
/// The border color of the flat Input components.
/// @group input
$kendo-input-flat-border: $kendo-input-border !default;

/// The background color of the flat hovered Input components.
/// @group input
$kendo-input-flat-hover-bg: null !default;
/// The text color of the flat hovered Input components.
/// @group input
$kendo-input-flat-hover-text: null !default;
/// The border color of the flat hovered Input components.
/// @group input
$kendo-input-flat-hover-border: $kendo-input-hover-border !default;

/// The background color of the flat focused Input components.
/// @group input
$kendo-input-flat-focus-bg: null !default;
/// The text color of the flat focused Input components.
/// @group input
$kendo-input-flat-focus-text: null !default;
/// The border color of the flat focused Input components.
/// @group input
$kendo-input-flat-focus-border: $kendo-input-focus-border !default;
/// The shadow of the flat focused Input components.
/// @group input
$kendo-input-flat-focus-shadow: $kendo-input-focus-shadow !default;

/// The text color of the Input placeholder.
/// @group input
$kendo-input-placeholder-text: k-color(subtle) !default;
/// The opacity of the Input placeholder.
/// @group input
$kendo-input-placeholder-opacity: 1 !default;

/// The color of the Input clear value icon.
/// @group input
$kendo-input-clear-value-text: null !default;
/// The opacity of the Input clear value icon.
/// @group input
$kendo-input-clear-value-opacity: .5 !default;
/// The color of the hovered Input clear value icon.
/// @group input
$kendo-input-clear-value-hover-text: null !default;
/// The opacity of the hovered Input clear value icon.
/// @group input
$kendo-input-clear-value-hover-opacity: 1 !default;

/// The width of the Input button.
/// @group input
$kendo-input-button-width: null !default;
/// The border width of the Input button.
/// @group input
$kendo-input-button-border-width: 1px !default;
/// The width of the Input spinner button.
/// @group input
$kendo-input-spinner-width: unset !default;
/// The icon offset of the Input spinner button.
/// @group input
$kendo-input-spinner-icon-offset: null !default;

/// The color of the Input separator.
/// @group input
$kendo-input-separator-text: k-color(border) !default;

/// The text color of the Input prefix.
/// @group input
$kendo-input-prefix-text: k-color(subtle) !default;
/// The background color of the Input prefix.
/// @group input
$kendo-input-prefix-bg: k-color(surface) !default;
/// The text color of the Input suffix.
/// @group input
$kendo-input-suffix-text: k-color(subtle) !default;
/// The background color of the Input suffix.
/// @group input
$kendo-input-suffix-bg: k-color(surface) !default;

/// The border color of the invalid Input components.
/// @group input
$kendo-input-invalid-border: k-color(error-on-surface) !default;
/// The shadow of the invalid Input components.
/// @group input
$kendo-input-invalid-shadow: 0 0 0 .25rem color-mix(in srgb, k-color(error) 25%, transparent) !default;

/// The default fill mode of the Picker.
/// @group picker
/// @role default
$kendo-picker-default-fill-mode: "solid" !default;
/// The default roundness of the Picker.
/// @group picker
/// @role default
$kendo-picker-default-roundness: "md" !default;
/// The default size of the Picker.
/// @group picker
/// @role default
$kendo-picker-default-size: "md" !default;

/// The background color of the Picker components.
/// @group picker
$kendo-picker-bg: k-color(surface-alt) !default;
/// The text color of the Picker components.
/// @group picker
$kendo-picker-text: k-color(on-app-surface) !default;
/// The border color of the Picker components.
/// @group picker
$kendo-picker-border: k-color(border) !default;
/// The gradient of the Picker components.
/// @group picker
$kendo-picker-gradient: $kendo-button-gradient !default;
/// The shadow of the Picker components.
/// @group picker
$kendo-picker-shadow: $kendo-button-shadow !default;

/// The background color of the hovered Picker components.
/// @group picker
$kendo-picker-hover-bg: k-color(surface) !default;
/// The text color of the hovered Picker components.
/// @group picker
$kendo-picker-hover-text: null !default;
/// The border color of the hovered Picker components.
/// @group picker
$kendo-picker-hover-border: k-color(border-alt) !default;
/// The gradient of the hovered Picker components.
/// @group picker
$kendo-picker-hover-gradient: $kendo-button-hover-gradient !default;
/// The shadow of the hovered Picker components.
/// @group picker
$kendo-picker-hover-shadow: $kendo-button-hover-shadow !default;

/// The background color of the focused Picker components.
/// @group picker
$kendo-picker-focus-bg: null !default;
/// The text color of the focused Picker components.
/// @group picker
$kendo-picker-focus-text: null !default;
/// The border color of the focused Picker components.
/// @group picker
$kendo-picker-focus-border: $kendo-input-focus-border !default;
/// The gradient of the focused Picker components.
/// @group picker
$kendo-picker-focus-gradient: null !default;
/// The shadow of the focused Picker components.
/// @group picker
$kendo-picker-focus-shadow: $kendo-input-focus-shadow !default;

/// The background color of the disabled Picker components.
/// @group picker
$kendo-picker-disabled-bg: null !default;
/// The text color of the disabled Picker components.
/// @group picker
$kendo-picker-disabled-text: null !default;
/// The border color of the disabled Picker components.
/// @group picker
$kendo-picker-disabled-border: null !default;
/// The gradient of the disabled Picker components.
/// @group picker
$kendo-picker-disabled-gradient: null !default;
/// The shadow of the disabled Picker components.
/// @group picker
$kendo-picker-disabled-shadow: null !default;

/// The background color of the outline Picker components.
/// @group picker
$kendo-picker-outline-bg: transparent !default;
/// The text color of the outline Picker components.
/// @group picker
$kendo-picker-outline-text: $kendo-button-text !default;
/// The border color of the outline Picker components.
/// @group picker
$kendo-picker-outline-border: color-mix(in srgb, k-color(on-app-surface) 50%, transparent) !default;
/// The background color of the outline hovered Picker components.
/// @group picker
$kendo-picker-outline-hover-bg: $kendo-picker-outline-text !default;
/// The text color of the outline hovered Picker components.
/// @group picker
$kendo-picker-outline-hover-text: k-color(base-subtle) !default;
/// The border color of the outline hovered Picker components.
/// @group picker
$kendo-picker-outline-hover-border: $kendo-picker-outline-hover-bg !default;

/// The background color of the outline focused Picker components.
/// @group picker
$kendo-picker-outline-focus-bg: null !default;
/// The text color of the outline focused Picker components.
/// @group picker
$kendo-picker-outline-focus-text: null !default;
/// The border color of the outline focused Picker components.
/// @group picker
$kendo-picker-outline-focus-border: null !default;
/// The shadow of the outline focused Picker components.
/// @group picker
$kendo-picker-outline-focus-shadow: $kendo-picker-focus-shadow !default;

/// The background color of the outline hovered and focused Picker components.
/// @group picker
$kendo-picker-outline-hover-focus-bg: null !default;
/// The text color of the outline hovered and focused Picker components.
/// @group picker
$kendo-picker-outline-hover-focus-text: null !default;
/// The border color of the outline hovered and focused Picker components.
/// @group picker
$kendo-picker-outline-hover-focus-border: null !default;

/// The background color of the flat Picker components.
/// @group picker
$kendo-picker-flat-bg: transparent !default;
/// The text color of the flat Picker components.
/// @group picker
$kendo-picker-flat-text: $kendo-button-text !default;
/// The border color of the flat Picker components.
/// @group picker
$kendo-picker-flat-border: $kendo-button-border !default;

/// The background color of the flat hovered Picker components.
/// @group picker
$kendo-picker-flat-hover-bg: color-mix(in srgb, k-color(on-app-surface) 8%, transparent) !default;
/// The text color of the flat hovered Picker components.
/// @group picker
$kendo-picker-flat-hover-text: null !default;
/// The border color of the flat hovered Picker components.
/// @group picker
$kendo-picker-flat-hover-border: $kendo-picker-flat-border !default;

/// The background color of the flat focused Picker components.
/// @group picker
$kendo-picker-flat-focus-bg: null !default;
/// The text color of the flat focused Picker components.
/// @group picker
$kendo-picker-flat-focus-text: null !default;
/// The border color of the flat focused Picker components.
/// @group picker
$kendo-picker-flat-focus-border: null !default;
/// The shadow of the flat focused Picker components.
/// @group picker
$kendo-picker-flat-focus-shadow: $kendo-picker-focus-shadow !default;

/// The background color of the flat hovered and focused Picker components.
/// @group picker
$kendo-picker-flat-hover-focus-bg: null !default;
/// The text color of the flat hovered and focused Picker components.
/// @group picker
$kendo-picker-flat-hover-focus-text: null !default;
/// The border color of the flat hovered and focused Picker components.
/// @group picker
$kendo-picker-flat-hover-focus-border: null !default;

$kendo-use-input-button-width: false !default;
$kendo-use-input-spinner-width: false !default;
$kendo-use-input-spinner-icon-offset: false !default;


@forward "@progress/kendo-theme-core/scss/components/input/_variables.scss" with (
    $kendo-input-default-fill-mode: $kendo-input-default-fill-mode,
    $kendo-input-default-roundness: $kendo-input-default-roundness,
    $kendo-input-default-size: $kendo-input-default-size,
    $kendo-input-default-width: $kendo-input-default-width,
    $kendo-input-border-width: $kendo-input-border-width,
    $kendo-input-border-radius: $kendo-input-border-radius,
    $kendo-input-sm-padding-x: $kendo-input-sm-padding-x,
    $kendo-input-md-padding-x: $kendo-input-md-padding-x,
    $kendo-input-lg-padding-x: $kendo-input-lg-padding-x,
    $kendo-input-sm-padding-y: $kendo-input-sm-padding-y,
    $kendo-input-md-padding-y: $kendo-input-md-padding-y,
    $kendo-input-lg-padding-y: $kendo-input-lg-padding-y,
    $kendo-input-font-family: $kendo-input-font-family,
    $kendo-input-font-size: $kendo-input-font-size,
    $kendo-input-sm-font-size: $kendo-input-sm-font-size,
    $kendo-input-md-font-size: $kendo-input-md-font-size,
    $kendo-input-lg-font-size: $kendo-input-lg-font-size,
    $kendo-input-line-height: $kendo-input-line-height,
    $kendo-input-sm-line-height: $kendo-input-sm-line-height,
    $kendo-input-md-line-height: $kendo-input-md-line-height,
    $kendo-input-lg-line-height: $kendo-input-lg-line-height,
    $kendo-input-sm-calc-size: $kendo-input-sm-calc-size,
    $kendo-input-md-calc-size: $kendo-input-md-calc-size,
    $kendo-input-lg-calc-size: $kendo-input-lg-calc-size,
    $kendo-input-bg: $kendo-input-bg,
    $kendo-input-text: $kendo-input-text,
    $kendo-input-border: $kendo-input-border,
    $kendo-input-shadow: $kendo-input-shadow,
    $kendo-input-hover-bg: $kendo-input-hover-bg,
    $kendo-input-hover-text: $kendo-input-hover-text,
    $kendo-input-hover-border: $kendo-input-hover-border,
    $kendo-input-hover-shadow: $kendo-input-hover-shadow,
    $kendo-input-focus-bg: $kendo-input-focus-bg,
    $kendo-input-focus-text: $kendo-input-focus-text,
    $kendo-input-focus-border: $kendo-input-focus-border,
    $kendo-input-focus-shadow: $kendo-input-focus-shadow,
    $kendo-input-disabled-bg: $kendo-input-disabled-bg,
    $kendo-input-disabled-text: $kendo-input-disabled-text,
    $kendo-input-disabled-border: $kendo-input-disabled-border,
    $kendo-input-disabled-gradient: $kendo-input-disabled-gradient,
    $kendo-input-disabled-shadow: $kendo-input-disabled-shadow,
    $kendo-input-outline-bg: $kendo-input-outline-bg,
    $kendo-input-outline-text: $kendo-input-outline-text,
    $kendo-input-outline-border: $kendo-input-outline-border,
    $kendo-input-outline-hover-bg: $kendo-input-outline-hover-bg,
    $kendo-input-outline-hover-text: $kendo-input-outline-hover-text,
    $kendo-input-outline-hover-border: $kendo-input-outline-hover-border,
    $kendo-input-outline-focus-bg: $kendo-input-outline-focus-bg,
    $kendo-input-outline-focus-text: $kendo-input-outline-focus-text,
    $kendo-input-outline-focus-border: $kendo-input-outline-focus-border,
    $kendo-input-outline-focus-shadow: $kendo-input-outline-focus-shadow,
    $kendo-input-flat-bg: $kendo-input-flat-bg,
    $kendo-input-flat-text: $kendo-input-flat-text,
    $kendo-input-flat-border: $kendo-input-flat-border,
    $kendo-input-flat-hover-bg: $kendo-input-flat-hover-bg,
    $kendo-input-flat-hover-text: $kendo-input-flat-hover-text,
    $kendo-input-flat-hover-border: $kendo-input-flat-hover-border,
    $kendo-input-flat-focus-bg: $kendo-input-flat-focus-bg,
    $kendo-input-flat-focus-text: $kendo-input-flat-focus-text,
    $kendo-input-flat-focus-border: $kendo-input-flat-focus-border,
    $kendo-input-flat-focus-shadow: $kendo-input-flat-focus-shadow,
    $kendo-input-placeholder-text: $kendo-input-placeholder-text,
    $kendo-input-placeholder-opacity: $kendo-input-placeholder-opacity,
    $kendo-input-clear-value-text: $kendo-input-clear-value-text,
    $kendo-input-clear-value-opacity: $kendo-input-clear-value-opacity,
    $kendo-input-clear-value-hover-text: $kendo-input-clear-value-hover-text,
    $kendo-input-clear-value-hover-opacity: $kendo-input-clear-value-hover-opacity,
    $kendo-input-button-width: $kendo-input-button-width,
    $kendo-input-button-border-width: $kendo-input-button-border-width,
    $kendo-input-spinner-width: $kendo-input-spinner-width,
    $kendo-input-spinner-icon-offset: $kendo-input-spinner-icon-offset,
    $kendo-input-separator-text: $kendo-input-separator-text,
    $kendo-input-prefix-text: $kendo-input-prefix-text,
    $kendo-input-prefix-bg: $kendo-input-prefix-bg,
    $kendo-input-suffix-text: $kendo-input-suffix-text,
    $kendo-input-suffix-bg: $kendo-input-suffix-bg,
    $kendo-input-invalid-border: $kendo-input-invalid-border,
    $kendo-input-invalid-shadow: $kendo-input-invalid-shadow,
    $kendo-picker-default-fill-mode: $kendo-picker-default-fill-mode,
    $kendo-picker-default-roundness: $kendo-picker-default-roundness,
    $kendo-picker-default-size: $kendo-picker-default-size,
    $kendo-picker-bg: $kendo-picker-bg,
    $kendo-picker-text: $kendo-picker-text,
    $kendo-picker-border: $kendo-picker-border,
    $kendo-picker-gradient: $kendo-picker-gradient,
    $kendo-picker-shadow: $kendo-picker-shadow,
    $kendo-picker-hover-bg: $kendo-picker-hover-bg,
    $kendo-picker-hover-text: $kendo-picker-hover-text,
    $kendo-picker-hover-border: $kendo-picker-hover-border,
    $kendo-picker-hover-gradient: $kendo-picker-hover-gradient,
    $kendo-picker-hover-shadow: $kendo-picker-hover-shadow,
    $kendo-picker-focus-bg: $kendo-picker-focus-bg,
    $kendo-picker-focus-text: $kendo-picker-focus-text,
    $kendo-picker-focus-border: $kendo-picker-focus-border,
    $kendo-picker-focus-gradient: $kendo-picker-focus-gradient,
    $kendo-picker-focus-shadow: $kendo-picker-focus-shadow,
    $kendo-picker-disabled-bg: $kendo-picker-disabled-bg,
    $kendo-picker-disabled-text: $kendo-picker-disabled-text,
    $kendo-picker-disabled-border: $kendo-picker-disabled-border,
    $kendo-picker-disabled-gradient: $kendo-picker-disabled-gradient,
    $kendo-picker-disabled-shadow: $kendo-picker-disabled-shadow,
    $kendo-picker-outline-bg: $kendo-picker-outline-bg,
    $kendo-picker-outline-text: $kendo-picker-outline-text,
    $kendo-picker-outline-border: $kendo-picker-outline-border,
    $kendo-picker-outline-hover-bg: $kendo-picker-outline-hover-bg,
    $kendo-picker-outline-hover-text: $kendo-picker-outline-hover-text,
    $kendo-picker-outline-hover-border: $kendo-picker-outline-hover-border,
    $kendo-picker-outline-focus-bg: $kendo-picker-outline-focus-bg,
    $kendo-picker-outline-focus-text: $kendo-picker-outline-focus-text,
    $kendo-picker-outline-focus-border: $kendo-picker-outline-focus-border,
    $kendo-picker-outline-focus-shadow: $kendo-picker-outline-focus-shadow,
    $kendo-picker-outline-hover-focus-bg: $kendo-picker-outline-hover-focus-bg,
    $kendo-picker-outline-hover-focus-text: $kendo-picker-outline-hover-focus-text,
    $kendo-picker-outline-hover-focus-border: $kendo-picker-outline-hover-focus-border,
    $kendo-picker-flat-bg: $kendo-picker-flat-bg,
    $kendo-picker-flat-text: $kendo-picker-flat-text,
    $kendo-picker-flat-border: $kendo-picker-flat-border,
    $kendo-picker-flat-hover-bg: $kendo-picker-flat-hover-bg,
    $kendo-picker-flat-hover-text: $kendo-picker-flat-hover-text,
    $kendo-picker-flat-hover-border: $kendo-picker-flat-hover-border,
    $kendo-picker-flat-focus-bg: $kendo-picker-flat-focus-bg,
    $kendo-picker-flat-focus-text: $kendo-picker-flat-focus-text,
    $kendo-picker-flat-focus-border: $kendo-picker-flat-focus-border,
    $kendo-picker-flat-focus-shadow: $kendo-picker-flat-focus-shadow,
    $kendo-picker-flat-hover-focus-bg: $kendo-picker-flat-hover-focus-bg,
    $kendo-picker-flat-hover-focus-text: $kendo-picker-flat-hover-focus-text,
    $kendo-picker-flat-hover-focus-border: $kendo-picker-flat-hover-focus-border,
    $kendo-use-input-button-width: $kendo-use-input-button-width,
    $kendo-use-input-spinner-width: $kendo-use-input-spinner-width,
    $kendo-use-input-spinner-icon-offset: $kendo-use-input-spinner-icon-offset
);
