From bb0e44f06f5caa16139fb40cda43720a6f0961f1 Mon Sep 17 00:00:00 2001 From: Andras Schmelczer Date: Sun, 13 Jul 2025 11:06:42 +0100 Subject: [PATCH] Extract reconcile (#85) --- .github/workflows/check.yml | 24 +- .github/workflows/e2e.yml | 15 +- .github/workflows/publish-docker.yml | 2 +- .github/workflows/publish-plugin.yml | 6 - .gitignore | 12 +- README.md | 2 +- backend/Dockerfile | 4 +- backend/reconcile/Cargo.toml | 23 - backend/reconcile/src/diffs.rs | 2 - backend/reconcile/src/diffs/myers.rs | 357 - backend/reconcile/src/diffs/raw_operation.rs | 64 - ...le__diffs__myers__tests__complex_diff.snap | 67 - ...ile__diffs__myers__tests__delete_only.snap | 27 - ...iffs__myers__tests__identical_content.snap | 37 - ...ile__diffs__myers__tests__insert_only.snap | 27 - ...iffs__myers__tests__prefix_and_suffix.snap | 57 - backend/reconcile/src/lib.rs | 10 - .../reconcile/src/operation_transformation.rs | 166 - .../src/operation_transformation/cursor.rs | 57 - .../operation_transformation/edited_text.rs | 381 - .../operation_transformation/merge_context.rs | 73 - .../src/operation_transformation/operation.rs | 513 - .../ordered_operation.rs | 14 - ...ted_text__tests__calculate_operations.snap | 43 - ...ts__calculate_operations_with_no_diff.snap | 23 - ...ted_text__tests__calculate_operations.snap | 61 - ...sequence__tests__calculate_operations.snap | 60 - backend/reconcile/src/tokenizer.rs | 6 - ...rd_tokenizer__tests__with_snapshots-2.snap | 6 - ...rd_tokenizer__tests__with_snapshots-3.snap | 25 - ...rd_tokenizer__tests__with_snapshots-4.snap | 55 - ...rd_tokenizer__tests__with_snapshots-5.snap | 39 - ...word_tokenizer__tests__with_snapshots.snap | 25 - backend/reconcile/src/tokenizer/token.rs | 64 - .../reconcile/src/tokenizer/word_tokenizer.rs | 60 - backend/reconcile/src/utils.rs | 6 - .../reconcile/src/utils/common_prefix_len.rs | 47 - .../reconcile/src/utils/common_suffix_len.rs | 48 - .../find_longest_prefix_contained_within.rs | 103 - backend/reconcile/src/utils/merge_iters.rs | 86 - backend/reconcile/src/utils/side.rs | 16 - backend/reconcile/src/utils/string_builder.rs | 111 - backend/reconcile/tests/example_document.rs | 103 - backend/reconcile/tests/examples/README.md | 1 - backend/reconcile/tests/examples/deletes.yml | 31 - .../tests/examples/deletes_and_inserts.yml | 12 - .../tests/examples/idempotent_inserts.yml | 24 - .../reconcile/tests/examples/multiline.yml | 63 - .../reconcile/tests/examples/replacing.yml | 19 - backend/reconcile/tests/examples/utf-8.yml | 10 - backend/reconcile/tests/examples/various.yml | 130 - backend/reconcile/tests/resources/blns.txt | 742 - backend/reconcile/tests/resources/kun_lu.txt | 6438 ------- .../tests/resources/pride_and_prejudice.txt | 14910 ---------------- .../tests/resources/room_with_a_view.txt | 9105 ---------- backend/reconcile/tests/test.rs | 76 - backend/sync_lib/Cargo.toml | 32 - backend/sync_lib/pkg/package.json | 23 - backend/sync_lib/src/cursor.rs | 88 - backend/sync_lib/src/errors.rs | 29 - backend/sync_lib/src/lib.rs | 152 - .../snapshots/web__base64_to_bytes_error.snap | 10 - backend/sync_lib/tests/web.rs | 99 - backend/sync_server/Cargo.toml | 40 - frontend/obsidian-plugin/jest.config.js | 2 +- .../src/obsidian-file-system.ts | 41 +- .../obsidian-plugin/src/vault-link-plugin.ts | 4 - ...ditor.ts => get-selections-from-editor.ts} | 4 +- .../cursors/local-cursor-update-listener.ts | 22 +- frontend/package-lock.json | 1346 +- frontend/sync-client/jest.config.js | 2 +- frontend/sync-client/package.json | 8 +- .../file-operations/file-operations.test.ts | 15 +- .../src/file-operations/file-operations.ts | 50 +- .../file-operations/filesystem-operations.ts | 12 +- .../safe-filesystem-operations.ts | 6 +- frontend/sync-client/src/index.ts | 6 +- frontend/sync-client/src/sync-client.ts | 7 - .../src/utils/assert-set-contains-exactly.ts | 2 +- .../sync-client/src/utils/deserialize.test.ts | 18 - .../src/utils/is-file-type-mergable.test.ts | 28 + .../src/utils/is-file-type-mergable.ts | 6 + .../sync-client/src/utils/serialize.test.ts | 18 - frontend/sync-client/src/utils/serialize.ts | 5 - frontend/test-client/jest.config.js | 2 +- frontend/test-client/src/agent/mock-client.ts | 4 +- frontend/test-client/src/cli.ts | 2 +- scripts/bump-version.sh | 12 +- scripts/clean-up.sh | 2 +- scripts/update-api-types.sh | 6 +- {backend => sync-server}/.dockerignore | 1 - {backend => sync-server}/.env | 0 {backend => sync-server}/Cargo.lock | 244 +- {backend => sync-server}/Cargo.toml | 49 +- sync-server/Dockerfile | 33 + .../sync_server => sync-server}/README.md | 2 +- {backend/sync_server => sync-server}/build.rs | 0 sync-server/config-e2e.yml | 26 + sync-server/rust-toolchain.toml | 4 + sync-server/rustfmt.toml | 8 + .../src/app_state.rs | 0 .../src/app_state/cursors.rs | 0 .../src/app_state/database.rs | 0 .../migrations/20241207143519_bootstrap.sql | 0 .../20250522192949_add_provenance_columns.sql | 0 .../src/app_state/database/models.rs | 4 +- .../src/app_state/websocket.rs | 0 .../src/app_state/websocket/broadcasts.rs | 0 .../src/app_state/websocket/models.rs | 0 .../src/app_state/websocket/utils.rs | 0 .../sync_server => sync-server}/src/cli.rs | 0 .../src/cli/args.rs | 0 .../src/cli/color_when.rs | 0 .../sync_server => sync-server}/src/config.rs | 0 .../src/config/database_config.rs | 0 .../src/config/server_config.rs | 0 .../src/config/user_config.rs | 0 .../sync_server => sync-server}/src/consts.rs | 0 .../sync_server => sync-server}/src/errors.rs | 0 .../sync_server => sync-server}/src/main.rs | 0 .../sync_server => sync-server}/src/server.rs | 0 .../src/server/assets/index.html | 0 .../src/server/auth.rs | 0 .../src/server/create_document.rs | 0 .../src/server/delete_document.rs | 0 .../src/server/device_id_header.rs | 0 .../src/server/fetch_document_version.rs | 0 .../server/fetch_document_version_content.rs | 0 .../server/fetch_latest_document_version.rs | 0 .../src/server/fetch_latest_documents.rs | 0 .../src/server/index.rs | 0 .../src/server/ping.rs | 0 .../src/server/requests.rs | 0 .../src/server/responses.rs | 0 .../src/server/update_document.rs | 28 +- .../src/server/websocket.rs | 0 .../sync_server => sync-server}/src/utils.rs | 1 + .../src/utils/dedup_paths.rs | 0 .../src/utils/is_file_type_mergable.rs | 23 + .../src/utils/normalize.rs | 0 .../src/utils/sanitize_path.rs | 0 141 files changed, 294 insertions(+), 36720 deletions(-) delete mode 100644 backend/reconcile/Cargo.toml delete mode 100644 backend/reconcile/src/diffs.rs delete mode 100644 backend/reconcile/src/diffs/myers.rs delete mode 100644 backend/reconcile/src/diffs/raw_operation.rs delete mode 100644 backend/reconcile/src/diffs/snapshots/reconcile__diffs__myers__tests__complex_diff.snap delete mode 100644 backend/reconcile/src/diffs/snapshots/reconcile__diffs__myers__tests__delete_only.snap delete mode 100644 backend/reconcile/src/diffs/snapshots/reconcile__diffs__myers__tests__identical_content.snap delete mode 100644 backend/reconcile/src/diffs/snapshots/reconcile__diffs__myers__tests__insert_only.snap delete mode 100644 backend/reconcile/src/diffs/snapshots/reconcile__diffs__myers__tests__prefix_and_suffix.snap delete mode 100644 backend/reconcile/src/lib.rs delete mode 100644 backend/reconcile/src/operation_transformation.rs delete mode 100644 backend/reconcile/src/operation_transformation/cursor.rs delete mode 100644 backend/reconcile/src/operation_transformation/edited_text.rs delete mode 100644 backend/reconcile/src/operation_transformation/merge_context.rs delete mode 100644 backend/reconcile/src/operation_transformation/operation.rs delete mode 100644 backend/reconcile/src/operation_transformation/ordered_operation.rs delete mode 100644 backend/reconcile/src/operation_transformation/snapshots/reconcile__operation_transformation__edited_text__tests__calculate_operations.snap delete mode 100644 backend/reconcile/src/operation_transformation/snapshots/reconcile__operation_transformation__edited_text__tests__calculate_operations_with_no_diff.snap delete mode 100644 backend/reconcile/src/operation_transformation/snapshots/reconcile__operations__edited_text__tests__calculate_operations.snap delete mode 100644 backend/reconcile/src/operation_transformation/snapshots/reconcile__operations__operation_sequence__tests__calculate_operations.snap delete mode 100644 backend/reconcile/src/tokenizer.rs delete mode 100644 backend/reconcile/src/tokenizer/snapshots/reconcile__tokenizer__word_tokenizer__tests__with_snapshots-2.snap delete mode 100644 backend/reconcile/src/tokenizer/snapshots/reconcile__tokenizer__word_tokenizer__tests__with_snapshots-3.snap delete mode 100644 backend/reconcile/src/tokenizer/snapshots/reconcile__tokenizer__word_tokenizer__tests__with_snapshots-4.snap delete mode 100644 backend/reconcile/src/tokenizer/snapshots/reconcile__tokenizer__word_tokenizer__tests__with_snapshots-5.snap delete mode 100644 backend/reconcile/src/tokenizer/snapshots/reconcile__tokenizer__word_tokenizer__tests__with_snapshots.snap delete mode 100644 backend/reconcile/src/tokenizer/token.rs delete mode 100644 backend/reconcile/src/tokenizer/word_tokenizer.rs delete mode 100644 backend/reconcile/src/utils.rs delete mode 100644 backend/reconcile/src/utils/common_prefix_len.rs delete mode 100644 backend/reconcile/src/utils/common_suffix_len.rs delete mode 100644 backend/reconcile/src/utils/find_longest_prefix_contained_within.rs delete mode 100644 backend/reconcile/src/utils/merge_iters.rs delete mode 100644 backend/reconcile/src/utils/side.rs delete mode 100644 backend/reconcile/src/utils/string_builder.rs delete mode 100644 backend/reconcile/tests/example_document.rs delete mode 100644 backend/reconcile/tests/examples/README.md delete mode 100644 backend/reconcile/tests/examples/deletes.yml delete mode 100644 backend/reconcile/tests/examples/deletes_and_inserts.yml delete mode 100644 backend/reconcile/tests/examples/idempotent_inserts.yml delete mode 100644 backend/reconcile/tests/examples/multiline.yml delete mode 100644 backend/reconcile/tests/examples/replacing.yml delete mode 100644 backend/reconcile/tests/examples/utf-8.yml delete mode 100644 backend/reconcile/tests/examples/various.yml delete mode 100644 backend/reconcile/tests/resources/blns.txt delete mode 100644 backend/reconcile/tests/resources/kun_lu.txt delete mode 100644 backend/reconcile/tests/resources/pride_and_prejudice.txt delete mode 100644 backend/reconcile/tests/resources/room_with_a_view.txt delete mode 100644 backend/reconcile/tests/test.rs delete mode 100644 backend/sync_lib/Cargo.toml delete mode 100644 backend/sync_lib/pkg/package.json delete mode 100644 backend/sync_lib/src/cursor.rs delete mode 100644 backend/sync_lib/src/errors.rs delete mode 100644 backend/sync_lib/src/lib.rs delete mode 100644 backend/sync_lib/tests/snapshots/web__base64_to_bytes_error.snap delete mode 100644 backend/sync_lib/tests/web.rs delete mode 100644 backend/sync_server/Cargo.toml rename frontend/obsidian-plugin/src/views/cursors/{get-cursors-from-editor.ts => get-selections-from-editor.ts} (80%) delete mode 100644 frontend/sync-client/src/utils/deserialize.test.ts create mode 100644 frontend/sync-client/src/utils/is-file-type-mergable.test.ts create mode 100644 frontend/sync-client/src/utils/is-file-type-mergable.ts delete mode 100644 frontend/sync-client/src/utils/serialize.test.ts delete mode 100644 frontend/sync-client/src/utils/serialize.ts rename {backend => sync-server}/.dockerignore (78%) rename {backend => sync-server}/.env (100%) rename {backend => sync-server}/Cargo.lock (93%) rename {backend => sync-server}/Cargo.toml (60%) create mode 100644 sync-server/Dockerfile rename {backend/sync_server => sync-server}/README.md (60%) rename {backend/sync_server => sync-server}/build.rs (100%) create mode 100644 sync-server/config-e2e.yml create mode 100644 sync-server/rust-toolchain.toml create mode 100644 sync-server/rustfmt.toml rename {backend/sync_server => sync-server}/src/app_state.rs (100%) rename {backend/sync_server => sync-server}/src/app_state/cursors.rs (100%) rename {backend/sync_server => sync-server}/src/app_state/database.rs (100%) rename {backend/sync_server => sync-server}/src/app_state/database/migrations/20241207143519_bootstrap.sql (100%) rename {backend/sync_server => sync-server}/src/app_state/database/migrations/20250522192949_add_provenance_columns.sql (100%) rename {backend/sync_server => sync-server}/src/app_state/database/models.rs (95%) rename {backend/sync_server => sync-server}/src/app_state/websocket.rs (100%) rename {backend/sync_server => sync-server}/src/app_state/websocket/broadcasts.rs (100%) rename {backend/sync_server => sync-server}/src/app_state/websocket/models.rs (100%) rename {backend/sync_server => sync-server}/src/app_state/websocket/utils.rs (100%) rename {backend/sync_server => sync-server}/src/cli.rs (100%) rename {backend/sync_server => sync-server}/src/cli/args.rs (100%) rename {backend/sync_server => sync-server}/src/cli/color_when.rs (100%) rename {backend/sync_server => sync-server}/src/config.rs (100%) rename {backend/sync_server => sync-server}/src/config/database_config.rs (100%) rename {backend/sync_server => sync-server}/src/config/server_config.rs (100%) rename {backend/sync_server => sync-server}/src/config/user_config.rs (100%) rename {backend/sync_server => sync-server}/src/consts.rs (100%) rename {backend/sync_server => sync-server}/src/errors.rs (100%) rename {backend/sync_server => sync-server}/src/main.rs (100%) rename {backend/sync_server => sync-server}/src/server.rs (100%) rename {backend/sync_server => sync-server}/src/server/assets/index.html (100%) rename {backend/sync_server => sync-server}/src/server/auth.rs (100%) rename {backend/sync_server => sync-server}/src/server/create_document.rs (100%) rename {backend/sync_server => sync-server}/src/server/delete_document.rs (100%) rename {backend/sync_server => sync-server}/src/server/device_id_header.rs (100%) rename {backend/sync_server => sync-server}/src/server/fetch_document_version.rs (100%) rename {backend/sync_server => sync-server}/src/server/fetch_document_version_content.rs (100%) rename {backend/sync_server => sync-server}/src/server/fetch_latest_document_version.rs (100%) rename {backend/sync_server => sync-server}/src/server/fetch_latest_documents.rs (100%) rename {backend/sync_server => sync-server}/src/server/index.rs (100%) rename {backend/sync_server => sync-server}/src/server/ping.rs (100%) rename {backend/sync_server => sync-server}/src/server/requests.rs (100%) rename {backend/sync_server => sync-server}/src/server/responses.rs (100%) rename {backend/sync_server => sync-server}/src/server/update_document.rs (84%) rename {backend/sync_server => sync-server}/src/server/websocket.rs (100%) rename {backend/sync_server => sync-server}/src/utils.rs (67%) rename {backend/sync_server => sync-server}/src/utils/dedup_paths.rs (100%) create mode 100644 sync-server/src/utils/is_file_type_mergable.rs rename {backend/sync_server => sync-server}/src/utils/normalize.rs (100%) rename {backend/sync_server => sync-server}/src/utils/sanitize_path.rs (100%) diff --git a/.github/workflows/check.yml b/.github/workflows/check.yml index 41b35a96..cb54ca89 100644 --- a/.github/workflows/check.yml +++ b/.github/workflows/check.yml @@ -25,29 +25,22 @@ jobs: - name: Setup rust run: | - cargo install sqlx-cli wasm-pack cargo-machete - cd backend + cargo install sqlx-cli cargo-machete + cd sync-server sqlx database create --database-url sqlite://db.sqlite3 - sqlx migrate run --source sync_server/src/app_state/database/migrations --database-url sqlite://db.sqlite3 + sqlx migrate run --source src/app_state/database/migrations --database-url sqlite://db.sqlite3 - - name: Build wasm + - name: Lint sync-server run: | - cd backend - wasm-pack build --target web sync_lib - - - name: Lint backend - run: | - cd backend + cd sync-server cargo clippy --all-targets --all-features cargo fmt --all -- --check cargo machete - - name: Test backend + - name: Test sync-server run: | - cd backend - cargo test --verbose -- --include-ignored - cd sync_lib - wasm-pack test --node + cd sync-server + cargo test --verbose - name: Lint frontend run: | @@ -64,4 +57,5 @@ jobs: - name: Test frontend run: | cd frontend + npm ci npm run test diff --git a/.github/workflows/e2e.yml b/.github/workflows/e2e.yml index ad7523f5..1371303d 100644 --- a/.github/workflows/e2e.yml +++ b/.github/workflows/e2e.yml @@ -25,20 +25,15 @@ jobs: - name: Setup rust run: | - cargo install sqlx-cli wasm-pack - cd backend + cargo install sqlx-cli + cd sync-server sqlx database create --database-url sqlite://db.sqlite3 - sqlx migrate run --source sync_server/src/app_state/database/migrations --database-url sqlite://db.sqlite3 - - - name: Build wasm - run: | - cd backend - wasm-pack build --target web sync_lib + sqlx migrate run --source src/app_state/database/migrations --database-url sqlite://db.sqlite3 - name: E2E tests run: | - cd backend - cargo run -p sync_server config-e2e.yml --color never & + cd sync-server + cargo run config-e2e.yml --color never & cd .. scripts/update-api-types.sh diff --git a/.github/workflows/publish-docker.yml b/.github/workflows/publish-docker.yml index 7113992f..b205448f 100644 --- a/.github/workflows/publish-docker.yml +++ b/.github/workflows/publish-docker.yml @@ -66,7 +66,7 @@ jobs: id: build-and-push uses: docker/build-push-action@0565240e2d4ab88bba5387d719585280857ece09 # v5.0.0 with: - context: backend + context: sync-server push: ${{ github.ref_type == 'tag' }} tags: ${{ steps.meta.outputs.tags }} labels: ${{ steps.meta.outputs.labels }} diff --git a/.github/workflows/publish-plugin.yml b/.github/workflows/publish-plugin.yml index 19bcc788..18c934bb 100644 --- a/.github/workflows/publish-plugin.yml +++ b/.github/workflows/publish-plugin.yml @@ -20,12 +20,6 @@ jobs: node-version: "22.x" check-latest: true - - name: Build wasm - run: | - cd backend - cargo install wasm-pack - wasm-pack build --target web sync_lib - - name: Build plugin run: | cd frontend diff --git a/.gitignore b/.gitignore index 384c91eb..98a00712 100644 --- a/.gitignore +++ b/.gitignore @@ -4,15 +4,17 @@ node_modules # Exclude macOS Finder (System Explorer) View States .DS_Store -# Rust build folder -backend/target + # Frontend build folders frontend/*/dist -backend/db.sqlite3* -backend/databases -backend/sync_server/bindings/*.ts +sync-server/db.sqlite3* +sync-server/databases + +# Rust build folders +sync-server/target +sync-server/bindings/*.ts *.log *.sqlx diff --git a/README.md b/README.md index 4735cf5f..d0bbb264 100644 --- a/README.md +++ b/README.md @@ -56,4 +56,4 @@ And to clean up the logs & database files, run `scripts/clean-up.sh` ## Projects -- [Sync server](./backend/sync_server/README.md) +- [Sync server](./sync-server/README.md) diff --git a/backend/Dockerfile b/backend/Dockerfile index d9fa92d1..a5b2f9a5 100644 --- a/backend/Dockerfile +++ b/backend/Dockerfile @@ -8,9 +8,9 @@ RUN cargo install sqlx-cli COPY . . RUN sqlx database create --database-url sqlite://db.sqlite3 -RUN sqlx migrate run --source sync_server/src/app_state/database/migrations --database-url sqlite://db.sqlite3 +RUN sqlx migrate run --source sync-server/src/app_state/database/migrations --database-url sqlite://db.sqlite3 -RUN cargo build --package sync_server --release --target x86_64-unknown-linux-musl +RUN cargo build --release --target x86_64-unknown-linux-musl # Runtime image FROM alpine:3.22.0 diff --git a/backend/reconcile/Cargo.toml b/backend/reconcile/Cargo.toml deleted file mode 100644 index 61e7edf8..00000000 --- a/backend/reconcile/Cargo.toml +++ /dev/null @@ -1,23 +0,0 @@ -[package] -name = "reconcile" -version.workspace = true -edition.workspace = true -authors.workspace = true -license.workspace = true -repository.workspace = true - -[dependencies] -serde = { version = "1.0.219", optional = true, features = ["derive"] } - -[features] -serde = [ "dep:serde" ] - -[dev-dependencies] -insta = "1.42.2" -pretty_assertions = "1.4.1" -serde = { version = "1.0.219", features = ["derive"] } -serde_yaml ="0.9.34" -test-case = "3.3.1" - -[lints] -workspace = true diff --git a/backend/reconcile/src/diffs.rs b/backend/reconcile/src/diffs.rs deleted file mode 100644 index b57139a5..00000000 --- a/backend/reconcile/src/diffs.rs +++ /dev/null @@ -1,2 +0,0 @@ -pub mod myers; -pub mod raw_operation; diff --git a/backend/reconcile/src/diffs/myers.rs b/backend/reconcile/src/diffs/myers.rs deleted file mode 100644 index c0be1d78..00000000 --- a/backend/reconcile/src/diffs/myers.rs +++ /dev/null @@ -1,357 +0,0 @@ -//! Taken from -//! -//! Myers' diff algorithm. -//! -//! * time: `O((N+M)D)` -//! * space `O(N+M)` -//! -//! See [the original article by Eugene W. Myers](http://www.xmailserver.org/diff2.pdf) -//! describing it. -//! -//! The implementation of this algorithm is based on the implementation by -//! Brandon Williams. -//! -//! # Heuristics -//! -//! At present this implementation of Myers' does not implement any more -//! advanced heuristics that would solve some pathological cases. For instance -//! passing two large and completely distinct sequences to the algorithm will -//! make it spin without making reasonable progress. -//! For potential improvements here see [similar#15](https://github.com/mitsuhiko/similar/issues/15). - -use std::{ - ops::{Index, IndexMut, Range}, - vec, -}; - -use super::raw_operation::RawOperation; -use crate::{ - tokenizer::token::Token, - utils::{common_prefix_len::common_prefix_len, common_suffix_len::common_suffix_len}, -}; - -/// Myers' diff algorithm with deadline. -/// -/// Diff `old`, between indices `old_range` and `new` between indices -/// `new_range`. -/// -/// The returned `RawOperations` all have a token count of 1. -pub fn diff(old: &[Token], new: &[Token]) -> Vec> -where - T: PartialEq + Clone + std::fmt::Debug, -{ - let max_d = (old.len() + new.len()).div_ceil(2) + 1; - let mut vb = V::new(max_d); - let mut vf = V::new(max_d); - let mut result: Vec> = vec![]; - - conquer( - old, - 0..old.len(), - new, - 0..new.len(), - &mut vf, - &mut vb, - &mut result, - ); - - debug_assert!( - result.iter().all(|op| op.tokens().len() == 1), - "All operations should be of length 1" - ); - - result -} - -// A D-path is a path which starts at (0,0) that has exactly D non-diagonal -// edges. All D-paths consist of a (D - 1)-path followed by a non-diagonal edge -// and then a possibly empty sequence of diagonal edges called a snake. - -/// `V` contains the endpoints of the furthest reaching `D-paths`. For each -/// recorded endpoint `(x,y)` in diagonal `k`, we only need to retain `x` -/// because `y` can be computed from `x - k`. In other words, `V` is an array of -/// integers where `V[k]` contains the row index of the endpoint of the furthest -/// reaching path in diagonal `k`. -/// -/// We can't use a traditional Vec to represent `V` since we use `k` as an index -/// and it can take on negative values. So instead `V` is represented as a -/// light-weight wrapper around a Vec plus an `offset` which is the maximum -/// value `k` can take on in order to map negative `k`'s back to a value >= 0. -#[derive(Debug)] -struct V { - offset: isize, - v: Vec, // Look into initializing this to -1 and storing isize -} - -impl V { - fn new(max_d: usize) -> Self { - Self { - offset: max_d as isize, - v: vec![0; 2 * max_d], - } - } - - fn len(&self) -> usize { self.v.len() } -} - -impl Index for V { - type Output = usize; - - fn index(&self, index: isize) -> &Self::Output { &self.v[(index + self.offset) as usize] } -} - -impl IndexMut for V { - fn index_mut(&mut self, index: isize) -> &mut Self::Output { - &mut self.v[(index + self.offset) as usize] - } -} - -fn split_at(range: Range, at: usize) -> (Range, Range) { - (range.start..at, at..range.end) -} - -/// A `Snake` is a sequence of diagonal edges in the edit graph. Normally -/// a snake has a start end end point (and it is possible for a snake to have -/// a length of zero, meaning the start and end points are the same) however -/// we do not need the end point which is why it's not implemented here. -/// -/// The divide part of a divide-and-conquer strategy. A D-path has D+1 snakes -/// some of which may be empty. The divide step requires finding the ceil(D/2) + -/// 1 or middle snake of an optimal D-path. The idea for doing so is to -/// simultaneously run the basic algorithm in both the forward and reverse -/// directions until furthest reaching forward and reverse paths starting at -/// opposing corners 'overlap'. -fn find_middle_snake( - old: &[Token], - old_range: Range, - new: &[Token], - new_range: Range, - vf: &mut V, - vb: &mut V, -) -> Option<(usize, usize)> -where - T: PartialEq + Clone + std::fmt::Debug, -{ - let n = old_range.len(); - let m = new_range.len(); - - // By Lemma 1 in the paper, the optimal edit script length is odd or even as - // `delta` is odd or even. - let delta = n as isize - m as isize; - let odd = delta & 1 == 1; - - // The initial point at (0, -1) - vf[1] = 0; - // The initial point at (N, M+1) - vb[1] = 0; - - let d_max = (n + m).div_ceil(2) + 1; - assert!(vf.len() >= d_max); - assert!(vb.len() >= d_max); - - for d in 0..d_max as isize { - // Forward path - for k in (-d..=d).rev().step_by(2) { - let mut x = if k == -d || (k != d && vf[k - 1] < vf[k + 1]) { - vf[k + 1] - } else { - vf[k - 1] + 1 - }; - let y = (x as isize - k) as usize; - - // The coordinate of the start of a snake - let (x0, y0) = (x, y); - // While these sequences are identical, keep moving through the - // graph with no cost - if x < old_range.len() && y < new_range.len() { - let advance = common_prefix_len( - old, - old_range.start + x..old_range.end, - new, - new_range.start + y..new_range.end, - ); - x += advance; - } - - // This is the new best x value - vf[k] = x; - - // Only check for connections from the forward search when N - M is - // odd and when there is a reciprocal k line coming from the other - // direction. - if odd && (k - delta).abs() <= (d - 1) { - // TODO optimize this so we don't have to compare against n - if vf[k] + vb[-(k - delta)] >= n { - // Return the snake - return Some((x0 + old_range.start, y0 + new_range.start)); - } - } - } - - // Backward path - for k in (-d..=d).rev().step_by(2) { - let mut x = if k == -d || (k != d && vb[k - 1] < vb[k + 1]) { - vb[k + 1] - } else { - vb[k - 1] + 1 - }; - let mut y = (x as isize - k) as usize; - - // The coordinate of the start of a snake - if x < n && y < m { - let advance = common_suffix_len( - old, - old_range.start..old_range.start + n - x, - new, - new_range.start..new_range.start + m - y, - ); - x += advance; - y += advance; - } - - // This is the new best x value - vb[k] = x; - - if !odd && (k - delta).abs() <= d { - // TODO optimize this so we don't have to compare against n - if vb[k] + vf[-(k - delta)] >= n { - // Return the snake - return Some((n - x + old_range.start, m - y + new_range.start)); - } - } - } - - // TODO: Maybe there's an opportunity to optimize and bail early? - } - - None -} - -fn conquer( - old: &[Token], - mut old_range: Range, - new: &[Token], - mut new_range: Range, - vf: &mut V, - vb: &mut V, - result: &mut Vec>, -) where - T: PartialEq + Clone + std::fmt::Debug, -{ - // Check for common prefix - let common_prefix_len = common_prefix_len(old, old_range.clone(), new, new_range.clone()); - if common_prefix_len > 0 { - result.extend( - old[old_range.start..old_range.start + common_prefix_len] - .iter() - .map(|token| RawOperation::Equal(vec![token.clone()])), - ); - } - old_range.start += common_prefix_len; - new_range.start += common_prefix_len; - - // Check for common suffix - let common_suffix_len = common_suffix_len(old, old_range.clone(), new, new_range.clone()); - let common_suffix = ( - old_range.end - common_suffix_len, - new_range.end - common_suffix_len, - ); - old_range.end -= common_suffix_len; - new_range.end -= common_suffix_len; - - if old_range.is_empty() && new_range.is_empty() { - // do nothing - } else if new_range.is_empty() { - result.extend( - old[old_range.start..old_range.start + old_range.len()] - .iter() - .map(|token| RawOperation::Delete(vec![token.clone()])), - ); - } else if old_range.is_empty() { - result.extend( - new[new_range.start..new_range.start + new_range.len()] - .iter() - .map(|token| RawOperation::Insert(vec![token.clone()])), - ); - } else if let Some((x_start, y_start)) = - find_middle_snake(old, old_range.clone(), new, new_range.clone(), vf, vb) - { - let (old_a, old_b) = split_at(old_range, x_start); - let (new_a, new_b) = split_at(new_range, y_start); - conquer(old, old_a, new, new_a, vf, vb, result); - conquer(old, old_b, new, new_b, vf, vb, result); - } else { - result.extend( - old[old_range.start..old_range.end] - .iter() - .map(|token| RawOperation::Delete(vec![token.clone()])), - ); - result.extend( - new[new_range.start..new_range.end] - .iter() - .map(|token| RawOperation::Insert(vec![token.clone()])), - ); - } - - if common_suffix_len > 0 { - result.extend( - old[common_suffix.0..common_suffix.0 + common_suffix_len] - .iter() - .map(|token| RawOperation::Equal(vec![token.clone()])), - ); - } -} - -#[cfg(test)] -mod tests { - use insta::assert_debug_snapshot; - - use super::*; - - #[test] - fn test_empty_diff() { - let old: Vec> = vec![]; - let new: Vec> = vec![]; - let result = diff(&old, &new); - assert_eq!(result.len(), 0); - } - - #[test] - fn test_identical_content() { - let content = vec!["a".into(), "b".into(), "c".into()]; - let result = diff(&content, &content); - assert_debug_snapshot!(result); - } - - #[test] - fn test_insert_only() { - let old: Vec> = vec![]; - let new: Vec> = vec!["a".into(), "b".into()]; - let result = diff(&old, &new); - assert_debug_snapshot!(result); - } - - #[test] - fn test_delete_only() { - let old = vec!["a".into(), "b".into()]; - let new: Vec> = vec![]; - let result = diff(&old, &new); - assert_debug_snapshot!(result); - } - - #[test] - fn test_prefix_and_suffix() { - let old = vec!["a".into(), "b".into(), "c".into(), "d".into()]; - let new = vec!["a".into(), "x".into(), "d".into()]; - let result = diff(&old, &new); - assert_debug_snapshot!(result); - } - - #[test] - fn test_complex_diff() { - let old = vec!["a".into(), "b".into(), "c".into(), "d".into()]; - let new = vec!["a".into(), "x".into(), "c".into(), "y".into()]; - let result = diff(&old, &new); - assert_debug_snapshot!(result); - } -} diff --git a/backend/reconcile/src/diffs/raw_operation.rs b/backend/reconcile/src/diffs/raw_operation.rs deleted file mode 100644 index 7630ff7f..00000000 --- a/backend/reconcile/src/diffs/raw_operation.rs +++ /dev/null @@ -1,64 +0,0 @@ -use crate::tokenizer::token::Token; - -#[derive(Debug, Clone, PartialEq)] -pub enum RawOperation -where - T: PartialEq + Clone + std::fmt::Debug, -{ - Insert(Vec>), - Delete(Vec>), - Equal(Vec>), -} - -impl RawOperation -where - T: PartialEq + Clone + std::fmt::Debug, -{ - pub fn tokens(&self) -> &Vec> { - match self { - RawOperation::Insert(tokens) - | RawOperation::Delete(tokens) - | RawOperation::Equal(tokens) => tokens, - } - } - - pub fn original_text_length(&self) -> usize { - self.tokens().iter().map(Token::get_original_length).sum() - } - - pub fn get_original_text(self) -> String { self.tokens().iter().map(Token::original).collect() } - - pub fn is_left_joinable(&self) -> bool { - let first_token = self.tokens().first(); - first_token.is_none_or(super::super::tokenizer::token::Token::get_is_left_joinable) - } - - pub fn is_right_joinable(&self) -> bool { - let last_token = self.tokens().last(); - last_token.is_none_or(super::super::tokenizer::token::Token::get_is_right_joinable) - } - - /// Extends the operation with another operation. Only operations of the - /// same type as self can be used to extend self, otherwise the function - /// will panic. - pub fn extend(self, other: RawOperation) -> RawOperation { - debug_assert!( - std::mem::discriminant(&self) == std::mem::discriminant(&other), - "Cannot extend operations of different types. This should have been handled before \ - calling this function." - ); - - match (self, other) { - (RawOperation::Insert(tokens1), RawOperation::Insert(tokens2)) => { - RawOperation::Insert(tokens1.into_iter().chain(tokens2).collect()) - } - (RawOperation::Delete(tokens1), RawOperation::Delete(tokens2)) => { - RawOperation::Delete(tokens1.into_iter().chain(tokens2).collect()) - } - (RawOperation::Equal(tokens1), RawOperation::Equal(tokens2)) => { - RawOperation::Equal(tokens1.into_iter().chain(tokens2).collect()) - } - _ => unreachable!("Only operations of the same type can be extended"), - } - } -} diff --git a/backend/reconcile/src/diffs/snapshots/reconcile__diffs__myers__tests__complex_diff.snap b/backend/reconcile/src/diffs/snapshots/reconcile__diffs__myers__tests__complex_diff.snap deleted file mode 100644 index 57ee0865..00000000 --- a/backend/reconcile/src/diffs/snapshots/reconcile__diffs__myers__tests__complex_diff.snap +++ /dev/null @@ -1,67 +0,0 @@ ---- -source: reconcile/src/diffs/myers.rs -expression: result -snapshot_kind: text ---- -[ - Equal( - [ - Token { - normalised: "a", - original: "a", - is_left_joinable: true, - is_right_joinable: true, - }, - ], - ), - Insert( - [ - Token { - normalised: "x", - original: "x", - is_left_joinable: true, - is_right_joinable: true, - }, - ], - ), - Delete( - [ - Token { - normalised: "b", - original: "b", - is_left_joinable: true, - is_right_joinable: true, - }, - ], - ), - Equal( - [ - Token { - normalised: "c", - original: "c", - is_left_joinable: true, - is_right_joinable: true, - }, - ], - ), - Insert( - [ - Token { - normalised: "y", - original: "y", - is_left_joinable: true, - is_right_joinable: true, - }, - ], - ), - Delete( - [ - Token { - normalised: "d", - original: "d", - is_left_joinable: true, - is_right_joinable: true, - }, - ], - ), -] diff --git a/backend/reconcile/src/diffs/snapshots/reconcile__diffs__myers__tests__delete_only.snap b/backend/reconcile/src/diffs/snapshots/reconcile__diffs__myers__tests__delete_only.snap deleted file mode 100644 index 93bb5298..00000000 --- a/backend/reconcile/src/diffs/snapshots/reconcile__diffs__myers__tests__delete_only.snap +++ /dev/null @@ -1,27 +0,0 @@ ---- -source: reconcile/src/diffs/myers.rs -expression: result -snapshot_kind: text ---- -[ - Delete( - [ - Token { - normalised: "a", - original: "a", - is_left_joinable: true, - is_right_joinable: true, - }, - ], - ), - Delete( - [ - Token { - normalised: "b", - original: "b", - is_left_joinable: true, - is_right_joinable: true, - }, - ], - ), -] diff --git a/backend/reconcile/src/diffs/snapshots/reconcile__diffs__myers__tests__identical_content.snap b/backend/reconcile/src/diffs/snapshots/reconcile__diffs__myers__tests__identical_content.snap deleted file mode 100644 index f82d4ac5..00000000 --- a/backend/reconcile/src/diffs/snapshots/reconcile__diffs__myers__tests__identical_content.snap +++ /dev/null @@ -1,37 +0,0 @@ ---- -source: reconcile/src/diffs/myers.rs -expression: result -snapshot_kind: text ---- -[ - Equal( - [ - Token { - normalised: "a", - original: "a", - is_left_joinable: true, - is_right_joinable: true, - }, - ], - ), - Equal( - [ - Token { - normalised: "b", - original: "b", - is_left_joinable: true, - is_right_joinable: true, - }, - ], - ), - Equal( - [ - Token { - normalised: "c", - original: "c", - is_left_joinable: true, - is_right_joinable: true, - }, - ], - ), -] diff --git a/backend/reconcile/src/diffs/snapshots/reconcile__diffs__myers__tests__insert_only.snap b/backend/reconcile/src/diffs/snapshots/reconcile__diffs__myers__tests__insert_only.snap deleted file mode 100644 index 0f61f3c5..00000000 --- a/backend/reconcile/src/diffs/snapshots/reconcile__diffs__myers__tests__insert_only.snap +++ /dev/null @@ -1,27 +0,0 @@ ---- -source: reconcile/src/diffs/myers.rs -expression: result -snapshot_kind: text ---- -[ - Insert( - [ - Token { - normalised: "a", - original: "a", - is_left_joinable: true, - is_right_joinable: true, - }, - ], - ), - Insert( - [ - Token { - normalised: "b", - original: "b", - is_left_joinable: true, - is_right_joinable: true, - }, - ], - ), -] diff --git a/backend/reconcile/src/diffs/snapshots/reconcile__diffs__myers__tests__prefix_and_suffix.snap b/backend/reconcile/src/diffs/snapshots/reconcile__diffs__myers__tests__prefix_and_suffix.snap deleted file mode 100644 index e50984ff..00000000 --- a/backend/reconcile/src/diffs/snapshots/reconcile__diffs__myers__tests__prefix_and_suffix.snap +++ /dev/null @@ -1,57 +0,0 @@ ---- -source: reconcile/src/diffs/myers.rs -expression: result -snapshot_kind: text ---- -[ - Equal( - [ - Token { - normalised: "a", - original: "a", - is_left_joinable: true, - is_right_joinable: true, - }, - ], - ), - Delete( - [ - Token { - normalised: "b", - original: "b", - is_left_joinable: true, - is_right_joinable: true, - }, - ], - ), - Delete( - [ - Token { - normalised: "c", - original: "c", - is_left_joinable: true, - is_right_joinable: true, - }, - ], - ), - Insert( - [ - Token { - normalised: "x", - original: "x", - is_left_joinable: true, - is_right_joinable: true, - }, - ], - ), - Equal( - [ - Token { - normalised: "d", - original: "d", - is_left_joinable: true, - is_right_joinable: true, - }, - ], - ), -] diff --git a/backend/reconcile/src/lib.rs b/backend/reconcile/src/lib.rs deleted file mode 100644 index a04ae853..00000000 --- a/backend/reconcile/src/lib.rs +++ /dev/null @@ -1,10 +0,0 @@ -mod diffs; -mod operation_transformation; -mod tokenizer; -mod utils; - -pub use operation_transformation::{ - CursorPosition, EditedText, TextWithCursors, reconcile, reconcile_with_cursors, - reconcile_with_tokenizer, -}; -pub use tokenizer::{Tokenizer, token::Token}; diff --git a/backend/reconcile/src/operation_transformation.rs b/backend/reconcile/src/operation_transformation.rs deleted file mode 100644 index 08a55a94..00000000 --- a/backend/reconcile/src/operation_transformation.rs +++ /dev/null @@ -1,166 +0,0 @@ -mod cursor; -mod edited_text; -mod merge_context; -mod operation; -mod ordered_operation; - -pub use cursor::{CursorPosition, TextWithCursors}; -pub use edited_text::EditedText; -pub use operation::Operation; - -use crate::Tokenizer; - -#[must_use] -pub fn reconcile(original: &str, left: &str, right: &str) -> String { - reconcile_with_cursors(original, left.into(), right.into()) - .text - .to_string() -} - -#[must_use] -pub fn reconcile_with_cursors<'a>( - original: &'a str, - left: TextWithCursors<'a>, - right: TextWithCursors<'a>, -) -> TextWithCursors<'static> { - let left_operations = EditedText::from_strings(original, left); - let right_operations = EditedText::from_strings(original, right); - - let merged_operations = left_operations.merge(right_operations); - - TextWithCursors::new_owned(merged_operations.apply(), merged_operations.cursors) -} - -#[must_use] -pub fn reconcile_with_tokenizer<'a, F, T>( - original: &str, - left: TextWithCursors<'a>, - right: TextWithCursors<'a>, - tokenizer: &Tokenizer, -) -> TextWithCursors<'static> -where - T: PartialEq + Clone + std::fmt::Debug, -{ - let left_operations = EditedText::from_strings_with_tokenizer(original, left, tokenizer); - let right_operations = EditedText::from_strings_with_tokenizer(original, right, tokenizer); - - let merged_operations = left_operations.merge(right_operations); - - TextWithCursors::new_owned(merged_operations.apply(), merged_operations.cursors) -} - -#[cfg(test)] -mod test { - use std::{fs, ops::Range, path::Path}; - - use pretty_assertions::assert_eq; - use test_case::test_matrix; - - use super::*; - use crate::CursorPosition; - - #[test] - fn test_cursor_complex() { - let original = "this is some complex text to test cursor positions"; - let left = TextWithCursors::new( - "this is really complex text for testing cursor positions", - vec![ - CursorPosition { - id: 0, - char_index: 8, - }, // after "this is " - CursorPosition { - id: 1, - char_index: 22, - }, // after "this is really complex text" - ], - ); - let right = TextWithCursors::new( - "that was some complex sample to test cursor movements", - vec![ - CursorPosition { - id: 2, - char_index: 5, - }, // after "that " - CursorPosition { - id: 3, - char_index: 29, - }, // after "some complex sample " - ], - ); - - let merged = reconcile_with_cursors(original, left, right); - - assert_eq!( - merged, - TextWithCursors::new( - "that was really complex sample for testing cursor movements", - vec![ - CursorPosition { - id: 2, - char_index: 5 - }, // unchanged - CursorPosition { - id: 0, - char_index: 9 - }, // before "really" - CursorPosition { - id: 1, - char_index: 23 - }, // inside of "s|ample" because "text" got replaced by "sample" - CursorPosition { - id: 3, - char_index: 43 - }, // before "cursor movements" - ] - ) - ); - } - - #[ignore = "expensive to run, only run in CI"] - #[test_matrix( [ - "pride_and_prejudice.txt", - "room_with_a_view.txt", - "kun_lu.txt", - "blns.txt" - ], [ - "pride_and_prejudice.txt", - "room_with_a_view.txt", - "kun_lu.txt", - "blns.txt" - ], [ - "pride_and_prejudice.txt", - "room_with_a_view.txt", - "kun_lu.txt", - "blns.txt" - ], [0..10000, 10000..20000], [0..10000, 10000..20000], [0..10000, 10000..20000])] - fn test_merge_files_without_panic( - file_name_1: &str, - file_name_2: &str, - file_name_3: &str, - range_1: Range, - range_2: Range, - range_3: Range, - ) { - let files = [file_name_1, file_name_2, file_name_3]; - let permutations = [range_1, range_2, range_3]; - - let root = Path::new("tests/resources/"); - - let contents = files - .iter() - .zip(permutations.iter()) - .map(|(file, range)| { - let path = root.join(file); - fs::read_to_string(&path) - .unwrap() - .chars() - .skip(range.start) - .take(range.end) - .collect::() - }) - .collect::>(); - - let _ = reconcile(&contents[0], &contents[1], &contents[2]); - } -} diff --git a/backend/reconcile/src/operation_transformation/cursor.rs b/backend/reconcile/src/operation_transformation/cursor.rs deleted file mode 100644 index f1452734..00000000 --- a/backend/reconcile/src/operation_transformation/cursor.rs +++ /dev/null @@ -1,57 +0,0 @@ -use std::borrow::Cow; - -#[cfg(feature = "serde")] -use serde::{Deserialize, Serialize}; - -// CursorPosition represents the position of an identifiable cursor in a text -// document based on its (UTF-8) character index. -#[cfg_attr(feature = "serde", derive(Serialize, Deserialize))] -#[derive(Debug, Clone, PartialEq, Default)] -pub struct CursorPosition { - pub id: usize, - pub char_index: usize, -} - -impl CursorPosition { - #[must_use] - pub fn with_index(&self, index: usize) -> Self { - CursorPosition { - id: self.id, - char_index: index, - } - } -} - -#[cfg_attr(feature = "serde", derive(Serialize, Deserialize))] -#[derive(Debug, Clone, PartialEq, Default)] -pub struct TextWithCursors<'a> { - pub text: Cow<'a, str>, - pub cursors: Vec, -} - -impl<'a> TextWithCursors<'a> { - #[must_use] - pub fn new(text: &'a str, cursors: Vec) -> Self { - Self { - text: text.into(), - cursors, - } - } - - #[must_use] - pub fn new_owned(text: String, cursors: Vec) -> Self { - Self { - text: text.into(), - cursors, - } - } -} - -impl<'a> From<&'a str> for TextWithCursors<'a> { - fn from(text: &'a str) -> Self { - Self { - text: text.into(), - cursors: Vec::new(), - } - } -} diff --git a/backend/reconcile/src/operation_transformation/edited_text.rs b/backend/reconcile/src/operation_transformation/edited_text.rs deleted file mode 100644 index b83441f6..00000000 --- a/backend/reconcile/src/operation_transformation/edited_text.rs +++ /dev/null @@ -1,381 +0,0 @@ -use core::iter; - -#[cfg(feature = "serde")] -use serde::{Deserialize, Serialize}; - -use super::{CursorPosition, Operation, TextWithCursors, ordered_operation::OrderedOperation}; -use crate::{ - diffs::{myers::diff, raw_operation::RawOperation}, - operation_transformation::merge_context::MergeContext, - tokenizer::{Tokenizer, word_tokenizer::word_tokenizer}, - utils::{merge_iters::MergeSorted as _, side::Side, string_builder::StringBuilder}, -}; - -/// A sequence of operations that can be applied to a text document. -/// `EditedText` supports merging two sequences of operations using the -/// principle of Operational Transformation. -/// -/// It's mainly created through the `from_strings` method, then merged with -/// another `EditedText` derived from the same original text and then applied to -/// the original text to get the reconciled text of concurrent edits. -#[cfg_attr(feature = "serde", derive(Serialize, Deserialize))] -#[derive(Debug, Clone, PartialEq, Default)] -pub struct EditedText<'a, T> -where - T: PartialEq + Clone + std::fmt::Debug, -{ - text: &'a str, - operations: Vec>, - pub(crate) cursors: Vec, -} - -impl<'a> EditedText<'a, String> { - /// Create an `EditedText` from the given original (old) and updated (new) - /// strings. The returned `EditedText` represents the changes from the - /// original to the updated text. When the return value is applied to - /// the original text, it will result in the updated text. The default - /// word tokenizer is used to tokenize the text which splits the text on - /// whitespaces. - #[must_use] - pub fn from_strings(original: &'a str, updated: TextWithCursors<'a>) -> Self { - Self::from_strings_with_tokenizer(original, updated, &word_tokenizer) - } -} - -impl<'a, T> EditedText<'a, T> -where - T: PartialEq + Clone + std::fmt::Debug, -{ - /// Create an `EditedText` from the given original (old) and updated (new) - /// strings. The returned `EditedText` represents the changes from the - /// original to the updated text. When the return value is applied to - /// the original text, it will result in the updated text. The tokenizer - /// function is used to tokenize the text. - pub fn from_strings_with_tokenizer( - original: &'a str, - updated: TextWithCursors<'a>, - tokenizer: &Tokenizer, - ) -> Self { - let original_tokens = (tokenizer)(original); - let updated_tokens = (tokenizer)(&updated.text); - - let diff: Vec> = diff(&original_tokens, &updated_tokens); - - Self::new( - original, - Self::cook_operations(Self::elongate_operations(diff)).collect(), - updated.cursors, - ) - } - - fn elongate_operations(raw_operations: I) -> Vec> - where - I: IntoIterator>, - { - // This might look bad, but this makes sense. The inserts and deltes can be - // interleaved, such as: IDIDID and we need to turn this into IIIDDD. - // So we need to keep track of both the last insert and delete operations, not - // just the last one. - let mut maybe_previous_insert: Option> = None; - let mut maybe_previous_delete: Option> = None; - - let mut result: Vec> = raw_operations - .into_iter() - .flat_map(|next| match next { - RawOperation::Insert(..) => match maybe_previous_insert.take() { - Some(prev) if prev.is_right_joinable() && next.is_left_joinable() => { - maybe_previous_insert = Some(prev.extend(next)); - Box::new(iter::empty()) as Box>> - } - prev => { - maybe_previous_insert = Some(next); - Box::new(prev.into_iter()) - } - }, - RawOperation::Delete(..) => match maybe_previous_delete.take() { - Some(prev) if prev.is_right_joinable() && next.is_left_joinable() => { - maybe_previous_delete = Some(prev.extend(next)); - Box::new(iter::empty()) as Box>> - } - prev => { - maybe_previous_delete = Some(next); - Box::new(prev.into_iter()) - } - }, - RawOperation::Equal(..) => Box::new( - maybe_previous_insert - .take() - .into_iter() - .chain(maybe_previous_delete.take()) - .chain(iter::once(next)), - ) - as Box>>, - }) - .collect(); - - if let Some(prev) = maybe_previous_insert { - result.push(prev); - } - - if let Some(prev) = maybe_previous_delete { - result.push(prev); - } - - result - } - - // Turn raw operations into ordered operations while keeping track of old & new - // indexes. - fn cook_operations(raw_operations: I) -> impl Iterator> - where - I: IntoIterator>, - { - let mut new_index = 0; // this is the start index of the operation on the new text - let mut order = 0; // this is the start index of the operation on the original text - - raw_operations.into_iter().filter_map(move |raw_operation| { - let length = raw_operation.original_text_length(); - - match raw_operation { - RawOperation::Equal(..) => { - let op = if cfg!(debug_assertions) { - Operation::create_equal_with_text( - new_index, - raw_operation.get_original_text(), - ) - } else { - Operation::create_equal(new_index, length) - } - .map(|operation| OrderedOperation { order, operation }); - - new_index += length; - order += length; - - op - } - RawOperation::Insert(tokens) => { - let op = Operation::create_insert(new_index, tokens) - .map(|operation| OrderedOperation { order, operation }); - - new_index += length; - - op - } - RawOperation::Delete(..) => { - let op = if cfg!(debug_assertions) { - Operation::create_delete_with_text( - new_index, - raw_operation.get_original_text(), - ) - } else { - Operation::create_delete(new_index, length) - } - .map(|operation| OrderedOperation { order, operation }); - - order += length; - - op - } - } - }) - } - - /// Create a new `EditedText` with the given operations. - /// The operations must be in the order in which they are meant to be - /// applied. The operations must not overlap. - fn new( - text: &'a str, - operations: Vec>, - mut cursors: Vec, - ) -> Self { - operations - .iter() - .zip(operations.iter().skip(1)) - .for_each(|(previous, next)| { - debug_assert!( - previous.operation.start_index() <= next.operation.start_index(), - "{} must not come before {} yet it does", - previous.operation, - next.operation - ); - }); - - cursors.sort_by_key(|cursor| cursor.char_index); - - Self { - text, - operations, - cursors, - } - } - - #[must_use] - pub fn merge(self, other: Self) -> Self { - debug_assert_eq!( - self.text, other.text, - "`EditedText`-s must be derived from the same text to be mergable" - ); - - let mut left_merge_context = MergeContext::default(); - let mut right_merge_context = MergeContext::default(); - - let mut merged_cursors = Vec::with_capacity(self.cursors.len() + other.cursors.len()); - let mut left_cursors = self.cursors.into_iter().peekable(); - let mut right_cursors = other.cursors.into_iter().peekable(); - - let merged_operations: Vec> = self - .operations - .into_iter() - // The current text is always the left; the other operation is the right side. - .map(|op| (op, Side::Left)) - .merge_sorted_by_key( - other.operations.into_iter().map(|op| (op, Side::Right)), - |(operation, _)| { - ( - operation.order, - operation.operation.start_index(), - // Make sure that the ordering is deterministic regardless which text - // is left or right. - match &operation.operation { - Operation::Equal { index, .. } => index.to_string(), - Operation::Insert { text, .. } => text - .iter() - .map(crate::tokenizer::token::Token::original) - .collect::(), - Operation::Delete { - deleted_character_count, - .. - } => deleted_character_count.to_string(), - }, - ) - }, - ) - .flat_map(|(OrderedOperation { order, operation }, side)| { - let original_start = operation.start_index() as i64; - let original_end = operation.end_index(); - let original_length = operation.len() as i64; - - let result = match side { - Side::Left => operation.merge_operations_with_context( - &mut right_merge_context, - &mut left_merge_context, - ), - Side::Right => operation.merge_operations_with_context( - &mut left_merge_context, - &mut right_merge_context, - ), - }; - - if let Some(ref op @ (Operation::Insert { .. } | Operation::Equal { .. })) = result - { - let shift = op.start_index() as i64 - original_start + op.len() as i64 - - original_length; - match side { - Side::Left => { - while let Some(cursor) = - left_cursors.next_if(|cursor| cursor.char_index <= original_end + 1) - { - merged_cursors.push(cursor.with_index( - (op.start_index() as i64).max(cursor.char_index as i64 + shift) - as usize, - )); - } - } - Side::Right => { - while let Some(cursor) = right_cursors - .next_if(|cursor| cursor.char_index <= original_end + 1) - { - merged_cursors.push(cursor.with_index( - (op.start_index() as i64).max(cursor.char_index as i64 + shift) - as usize, - )); - } - } - } - } - - result - .map(|operation| OrderedOperation { order, operation }) - .into_iter() - }) - .collect(); - - let last_index = merged_operations - .iter() - .filter(|operation| { - matches!( - operation.operation, - Operation::Insert { .. } | Operation::Equal { .. } - ) - }) - .next_back() - .map_or(0, |op| op.operation.end_index()); - - for cursor in left_cursors.chain(right_cursors) { - merged_cursors.push(cursor.with_index(last_index)); - } - - Self::new(self.text, merged_operations, merged_cursors) - } - - /// Apply the operations to the text and return the resulting text. - #[must_use] - pub fn apply(&self) -> String { - let mut builder: StringBuilder<'_> = StringBuilder::new(self.text); - - for OrderedOperation { operation, .. } in &self.operations { - builder = operation.apply(builder); - } - - builder.build() - } -} - -#[cfg(test)] -mod tests { - use std::env; - - use insta::assert_debug_snapshot; - use pretty_assertions::assert_eq; - - use super::*; - - #[test] - fn test_calculate_operations() { - let left = "hello world! How are you? Adam"; - let right = "Hello, my friend! How are you doing? Albert"; - - let operations = EditedText::from_strings(left, right.into()); - - insta::assert_debug_snapshot!(operations); - - let new_right = operations.apply(); - assert_eq!(new_right.to_string(), right); - } - - #[test] - fn test_calculate_operations_with_no_diff() { - let text = "hello world!"; - - let operations = EditedText::from_strings(text, text.into()); - - assert_debug_snapshot!(operations); - - let new_right = operations.apply(); - assert_eq!(new_right.to_string(), text); - } - - #[test] - fn test_calculate_operations_with_insert() { - let original = "hello world! ..."; - let left = "Hello world! I'm Andras."; - let right = "Hello world! How are you?"; - let expected = "Hello world! How are you? I'm Andras."; - - let operations_1 = EditedText::from_strings(original, left.into()); - let operations_2 = EditedText::from_strings(original, right.into()); - - let operations = operations_1.merge(operations_2); - assert_eq!(operations.apply(), expected); - } -} diff --git a/backend/reconcile/src/operation_transformation/merge_context.rs b/backend/reconcile/src/operation_transformation/merge_context.rs deleted file mode 100644 index 5cf0972d..00000000 --- a/backend/reconcile/src/operation_transformation/merge_context.rs +++ /dev/null @@ -1,73 +0,0 @@ -use core::fmt::Debug; - -use crate::operation_transformation::Operation; - -#[derive(Clone, Debug)] -pub struct MergeContext -where - T: PartialEq + Clone + std::fmt::Debug, -{ - last_operation: Option>, - pub shift: i64, -} - -impl Default for MergeContext -where - T: PartialEq + Clone + std::fmt::Debug, -{ - fn default() -> Self { - MergeContext { - last_operation: None, - shift: 0, - } - } -} - -impl MergeContext -where - T: PartialEq + Clone + std::fmt::Debug, -{ - pub fn last_operation(&self) -> Option<&Operation> { self.last_operation.as_ref() } - - pub fn replace_last_operation(&mut self, operation: Option>) { - self.last_operation = operation; - } - - /// Replace the last delete operation (if there was one) with a new one - /// while applying it to the `shift` in case the last operation - /// was a delete. - pub fn consume_and_replace_last_operation(&mut self, operation: Option>) { - if let Some(Operation::Delete { - deleted_character_count, - .. - }) = self.last_operation.take() - { - self.shift -= deleted_character_count as i64; - } - - self.last_operation = operation; - } - - /// Remove the last operation (if there was one) in case it is behind the - /// threshold operation. This updates the `shift` in case the last operation - /// was a delete. - pub fn consume_last_operation_if_it_is_too_behind(&mut self, threshold_index: i64) { - if let Some(last_operation) = self.last_operation.as_ref() { - if let Operation::Delete { - deleted_character_count, - .. - } = last_operation - { - if threshold_index + self.shift > last_operation.end_index() as i64 { - self.shift -= *deleted_character_count as i64; - self.last_operation = None; - } - } else if let Operation::Insert { .. } = last_operation - && threshold_index + self.shift - last_operation.len() as i64 - > last_operation.end_index() as i64 - { - self.last_operation = None; - } - } - } -} diff --git a/backend/reconcile/src/operation_transformation/operation.rs b/backend/reconcile/src/operation_transformation/operation.rs deleted file mode 100644 index e194f9c3..00000000 --- a/backend/reconcile/src/operation_transformation/operation.rs +++ /dev/null @@ -1,513 +0,0 @@ -use core::fmt::{Debug, Display}; -use std::ops::Range; - -#[cfg(feature = "serde")] -use serde::{Deserialize, Serialize}; - -use super::merge_context::MergeContext; -use crate::{ - Token, - utils::{ - find_longest_prefix_contained_within::find_longest_prefix_contained_within, - string_builder::StringBuilder, - }, -}; - -/// Represents a change that can be applied on a `StringBuilder`. -#[cfg_attr(feature = "serde", derive(Serialize, Deserialize))] -#[derive(Clone, PartialEq)] -pub enum Operation -where - T: PartialEq + Clone + std::fmt::Debug, -{ - Equal { - index: usize, - length: usize, - - #[cfg(debug_assertions)] - text: Option, - }, - - Insert { - index: usize, - text: Vec>, - }, - - Delete { - index: usize, - deleted_character_count: usize, - - #[cfg(debug_assertions)] - deleted_text: Option, - }, -} - -impl Operation -where - T: PartialEq + Clone + std::fmt::Debug, -{ - /// Creates an equal operation with the given index. - /// This operation is used to indicate that the text at the given index - /// is unchanged. - pub fn create_equal(index: usize, length: usize) -> Option { - if length == 0 { - return None; - } - - Some(Operation::Equal { - index, - length, - - #[cfg(debug_assertions)] - text: None, - }) - } - - pub fn create_equal_with_text(index: usize, text: String) -> Option { - if text.is_empty() { - return None; - } - - Some(Operation::Equal { - index, - length: text.chars().count(), - - #[cfg(debug_assertions)] - text: Some(text), - }) - } - - /// Creates an insert operation with the given index and text. - /// If the text is empty (meaning that the operation would be a no-op), - /// returns None. - pub fn create_insert(index: usize, text: Vec>) -> Option { - if text.is_empty() { - return None; - } - - Some(Operation::Insert { index, text }) - } - - /// Creates a delete operation with the given index and number of - /// to-be-deleted characters. If the operation would delete 0 (meaning - /// that the operation would be a no-op), returns None. - pub fn create_delete(index: usize, deleted_character_count: usize) -> Option { - if deleted_character_count == 0 { - return None; - } - - Some(Operation::Delete { - index, - deleted_character_count, - - #[cfg(debug_assertions)] - deleted_text: None, - }) - } - - pub fn create_delete_with_text(index: usize, text: String) -> Option { - if text.is_empty() { - return None; - } - - Some(Operation::Delete { - index, - deleted_character_count: text.chars().count(), - - #[cfg(debug_assertions)] - deleted_text: Some(text), - }) - } - - /// Applies the operation to the given `StringBuilder`, returning the - /// modified `StringBuilder`. - /// - /// When compiled in debug mode, panics if a delete operation is attempted - /// on a range of text that does not match the text to be deleted. - pub fn apply<'a>(&self, mut builder: StringBuilder<'a>) -> StringBuilder<'a> { - match self { - Operation::Equal { - #[cfg(debug_assertions)] - text, - .. - } => { - #[cfg(debug_assertions)] - debug_assert!( - text.as_ref() - .is_none_or(|text| builder.get_slice(self.range()) == *text), - "Text which is supposed to be equal does not match the text in the range" - ); - - return builder; - } - Operation::Insert { text, .. } => builder.insert( - self.start_index(), - &text.iter().map(Token::original).collect::(), - ), - Operation::Delete { - #[cfg(debug_assertions)] - deleted_text, - .. - } => { - #[cfg(debug_assertions)] - debug_assert!( - deleted_text - .as_ref() - .is_none_or(|text| builder.get_slice(self.range()) == *text), - "Text to delete does not match the text in the range" - ); - - builder.delete(self.range()); - } - } - - builder - } - - /// Returns the index of the first character that the operation affects. - pub fn start_index(&self) -> usize { - match self { - Operation::Equal { index, .. } - | Operation::Insert { index, .. } - | Operation::Delete { index, .. } => *index, - } - } - - /// Returns the index of the last character that the operation affects. - pub fn end_index(&self) -> usize { - debug_assert!( - self.len() > 0, - " len() must be greater than 0 because operations must be non-empty" - ); - self.start_index() + self.len() - 1 - } - - /// Returns the range of indices of characters that the operation affects. - #[allow(clippy::range_plus_one)] - pub fn range(&self) -> Range { self.start_index()..self.end_index() + 1 } - - /// Returns the number of affected characters. It is always greater than 0 - /// because empty operations cannot be created. - pub fn len(&self) -> usize { - match self { - Operation::Equal { length, .. } => *length, - Operation::Insert { text, .. } => text.iter().map(Token::get_original_length).sum(), - Operation::Delete { - deleted_character_count, - .. - } => *deleted_character_count, - } - } - - /// Creates a new operation with the same type and text but with the given - /// index. - pub fn with_index(self, index: usize) -> Self { - match self { - Operation::Equal { - length, - - #[cfg(debug_assertions)] - text, - .. - } => Operation::Equal { - index, - length, - - #[cfg(debug_assertions)] - text, - }, - Operation::Insert { text, .. } => Operation::Insert { index, text }, - Operation::Delete { - deleted_character_count, - - #[cfg(debug_assertions)] - deleted_text, - .. - } => Operation::Delete { - index, - deleted_character_count, - - #[cfg(debug_assertions)] - deleted_text, - }, - } - } - - /// Creates a new operation with the same type and text but with the index - /// shifted by the given offset. The offset can be negative but the - /// resulting index must be non-negative. - /// - /// # Panics - /// - /// In debug mode, panics if the resulting index is negative. - pub fn with_shifted_index(self, offset: i64) -> Self { - let index = self.start_index() as i64 + offset; - debug_assert!(index >= 0, "Shifted index must be non-negative"); - - self.with_index(index as usize) - } - - /// Merges the operation with the given context, producing a new operation - /// and updating the context. This implements a comples FSM that handles - /// the merging of operations in a way that is consistent with the text. - /// The contexts are updated in-place. - #[allow(clippy::too_many_lines)] - pub fn merge_operations_with_context( - self, - affecting_context: &mut MergeContext, - produced_context: &mut MergeContext, - ) -> Option> { - affecting_context.consume_last_operation_if_it_is_too_behind(self.start_index() as i64); - let operation = self.with_shifted_index(affecting_context.shift); - - match (operation, affecting_context.last_operation()) { - (operation @ Operation::Insert { .. }, None | Some(Operation::Equal { .. })) => { - produced_context.shift += operation.len() as i64; - produced_context.consume_and_replace_last_operation(Some(operation.clone())); - Some(operation) - } - - ( - Operation::Insert { text, index }, - Some(Operation::Insert { - text: previous_inserted_text, - .. - }), - ) => { - // In case the current insert's prefix appears in the previously inserted text, - // we can trim the current insert to only include the non-overlapping part. - // This way, we don't end up duplicating text. - let offset_in_tokens = - find_longest_prefix_contained_within(previous_inserted_text, &text); - let offset_in_length = text - .iter() - .take(offset_in_tokens) - .map(Token::get_original_length) - .sum::(); - let trimmed_operation = - Operation::create_insert(index, text[offset_in_tokens..].to_vec()); - - affecting_context.shift -= offset_in_length as i64; - produced_context.shift += trimmed_operation - .as_ref() - .map(Operation::len) - .unwrap_or_default() as i64; - produced_context.consume_and_replace_last_operation(trimmed_operation.clone()); - - trimmed_operation - } - - ( - operation @ Operation::Delete { .. }, - None | Some(Operation::Insert { .. } | Operation::Equal { .. }), - ) => { - produced_context.consume_and_replace_last_operation(Some(operation.clone())); - Some(operation) - } - - ( - operation @ Operation::Insert { .. }, - Some(last_delete @ Operation::Delete { .. }), - ) => { - produced_context.shift += operation.len() as i64; - - debug_assert!( - last_delete.range().contains(&operation.start_index()), - "There is a last delete ({last_delete}) but the operation ({operation}) is \ - not contained in it" - ); - - let difference = operation.start_index() as i64 - last_delete.start_index() as i64; - - let moved_operation = operation.with_index(last_delete.start_index()); - - affecting_context.replace_last_operation(Operation::create_delete( - moved_operation.end_index() + 1, - (last_delete.len() as i64 - difference) as usize, - )); - affecting_context.shift -= difference; - - produced_context.consume_and_replace_last_operation(Some(moved_operation.clone())); - - Some(moved_operation) - } - - ( - operation @ Operation::Delete { .. }, - Some(last_delete @ Operation::Delete { .. }), - ) => { - debug_assert!( - last_delete.range().contains(&operation.start_index()), - "There is a last delete ({last_delete}) but the operation ({operation}) is \ - not contained in it" - ); - - let difference = operation.start_index() as i64 - last_delete.start_index() as i64; - - let updated_delete = Operation::create_delete( - last_delete.start_index(), - 0.max(operation.end_index() as i64 - last_delete.end_index() as i64) as usize, - ); - - affecting_context.replace_last_operation(Operation::create_delete( - last_delete.start_index(), - 0.max(last_delete.end_index() as i64 - operation.end_index() as i64) as usize, - )); - affecting_context.shift -= difference; - - produced_context.consume_and_replace_last_operation(updated_delete.clone()); - - updated_delete - } - ( - ref operation @ Operation::Equal { - length, - #[cfg(debug_assertions)] - ref text, - .. - }, - Some(last_delete @ Operation::Delete { .. }), - ) => { - debug_assert!( - last_delete.range().contains(&operation.start_index()), - "There is a last delete ({last_delete}) but the operation ({operation}) is \ - not contained in it" - ); - - let overlap = (length as i64) - .min(last_delete.end_index() as i64 - operation.start_index() as i64 + 1); - - #[cfg(debug_assertions)] - let result = text.as_ref().map_or_else( - || { - Operation::create_equal( - operation.end_index().min(last_delete.end_index()), - (length as i64 - overlap) as usize, - ) - }, - |text| { - Operation::create_equal_with_text( - operation.end_index().min(last_delete.end_index()), - text.chars().skip(overlap as usize).collect::(), - ) - }, - ); - - #[cfg(not(debug_assertions))] - let result = Operation::create_equal( - operation.end_index().min(last_delete.end_index()), - (length as i64 - overlap) as usize, - ); - - result - } - (operation @ Operation::Equal { .. }, _) => Some(operation), - } - } -} - -impl Display for Operation -where - T: PartialEq + Clone + std::fmt::Debug, -{ - fn fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result { - match self { - Operation::Equal { - index, - length, - - #[cfg(debug_assertions)] - text, - } => { - #[cfg(debug_assertions)] - write!( - f, - "", - text.as_ref() - .map(|text| format!("'{text}'")) - .unwrap_or(format!("{length} characters")), - index - )?; - - #[cfg(not(debug_assertions))] - write!(f, "")?; - - Ok(()) - } - Operation::Insert { index, text } => { - write!( - f, - "", - text.iter().map(Token::original).collect::(), - index - ) - } - Operation::Delete { - index, - deleted_character_count, - - #[cfg(debug_assertions)] - deleted_text, - } => { - #[cfg(debug_assertions)] - write!( - f, - "", - deleted_text - .as_ref() - .map(|text| format!("'{text}'")) - .unwrap_or(format!("{deleted_character_count} characters")), - index - )?; - - #[cfg(not(debug_assertions))] - write!( - f, - "", - )?; - - Ok(()) - } - } - } -} - -impl Debug for Operation -where - T: PartialEq + Clone + std::fmt::Debug, -{ - fn fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result { write!(f, "{self}") } -} - -#[cfg(test)] -mod tests { - use pretty_assertions::assert_eq; - - use super::*; - - #[test] - #[should_panic(expected = "Shifted index must be non-negative")] - fn test_shifting_error() { - insta::assert_debug_snapshot!( - Operation::create_insert(1, vec!["hi".into()]) - .unwrap() - .with_shifted_index(-2) - ); - } - - #[test] - fn test_apply_delete_with_create() { - let builder = StringBuilder::new("hello world"); - let operation = Operation::<()>::create_delete_with_text(5, " world".to_owned()).unwrap(); - - assert_eq!(operation.apply(builder).build(), "hello"); - } - - #[test] - fn test_apply_insert() { - let builder = StringBuilder::new("hello"); - let operation = Operation::create_insert(5, vec![" my friend".into()]).unwrap(); - - assert_eq!(operation.apply(builder).build(), "hello my friend"); - } -} diff --git a/backend/reconcile/src/operation_transformation/ordered_operation.rs b/backend/reconcile/src/operation_transformation/ordered_operation.rs deleted file mode 100644 index 116b6372..00000000 --- a/backend/reconcile/src/operation_transformation/ordered_operation.rs +++ /dev/null @@ -1,14 +0,0 @@ -#[cfg(feature = "serde")] -use serde::{Deserialize, Serialize}; - -use crate::operation_transformation::Operation; - -#[cfg_attr(feature = "serde", derive(Serialize, Deserialize))] -#[derive(Debug, Clone, PartialEq)] -pub struct OrderedOperation -where - T: PartialEq + Clone + std::fmt::Debug, -{ - pub order: usize, - pub operation: Operation, -} diff --git a/backend/reconcile/src/operation_transformation/snapshots/reconcile__operation_transformation__edited_text__tests__calculate_operations.snap b/backend/reconcile/src/operation_transformation/snapshots/reconcile__operation_transformation__edited_text__tests__calculate_operations.snap deleted file mode 100644 index 246b2fe0..00000000 --- a/backend/reconcile/src/operation_transformation/snapshots/reconcile__operation_transformation__edited_text__tests__calculate_operations.snap +++ /dev/null @@ -1,43 +0,0 @@ ---- -source: reconcile/src/operation_transformation/edited_text.rs -expression: operations -snapshot_kind: text ---- -EditedText { - text: "hello world! How are you? Adam", - operations: [ - OrderedOperation { - order: 0, - operation: , - }, - OrderedOperation { - order: 0, - operation: , - }, - OrderedOperation { - order: 12, - operation: , - }, - OrderedOperation { - order: 13, - operation: , - }, - OrderedOperation { - order: 16, - operation: , - }, - OrderedOperation { - order: 17, - operation: , - }, - OrderedOperation { - order: 20, - operation: , - }, - OrderedOperation { - order: 20, - operation: , - }, - ], - cursors: [], -} diff --git a/backend/reconcile/src/operation_transformation/snapshots/reconcile__operation_transformation__edited_text__tests__calculate_operations_with_no_diff.snap b/backend/reconcile/src/operation_transformation/snapshots/reconcile__operation_transformation__edited_text__tests__calculate_operations_with_no_diff.snap deleted file mode 100644 index 33414f8c..00000000 --- a/backend/reconcile/src/operation_transformation/snapshots/reconcile__operation_transformation__edited_text__tests__calculate_operations_with_no_diff.snap +++ /dev/null @@ -1,23 +0,0 @@ ---- -source: reconcile/src/operation_transformation/edited_text.rs -expression: operations -snapshot_kind: text ---- -EditedText { - text: "hello world!", - operations: [ - OrderedOperation { - order: 0, - operation: , - }, - OrderedOperation { - order: 5, - operation: , - }, - OrderedOperation { - order: 6, - operation: , - }, - ], - cursors: [], -} diff --git a/backend/reconcile/src/operation_transformation/snapshots/reconcile__operations__edited_text__tests__calculate_operations.snap b/backend/reconcile/src/operation_transformation/snapshots/reconcile__operations__edited_text__tests__calculate_operations.snap deleted file mode 100644 index 02956ef0..00000000 --- a/backend/reconcile/src/operation_transformation/snapshots/reconcile__operations__edited_text__tests__calculate_operations.snap +++ /dev/null @@ -1,61 +0,0 @@ ---- -source: reconcile/src/operations/edited_text.rs -expression: operations -snapshot_kind: text ---- -EditedText { - text: "hello world! How are you? Adam", - operations: [ - OrderedOperation { - order: 0, - operation: Insert { - index: 0, - text: "Hello, my friend! ", - }, - }, - OrderedOperation { - order: 0, - operation: Delete { - index: 18, - deleted_character_count: 13, - deleted_text: Some( - "hello world! ", - ), - }, - }, - OrderedOperation { - order: 21, - operation: Delete { - index: 26, - deleted_character_count: 5, - deleted_text: Some( - "you? ", - ), - }, - }, - OrderedOperation { - order: 26, - operation: Delete { - index: 26, - deleted_character_count: 5, - deleted_text: Some( - " Adam", - ), - }, - }, - OrderedOperation { - order: 31, - operation: Insert { - index: 26, - text: "you ", - }, - }, - OrderedOperation { - order: 31, - operation: Insert { - index: 30, - text: "doing? Albert", - }, - }, - ], -} diff --git a/backend/reconcile/src/operation_transformation/snapshots/reconcile__operations__operation_sequence__tests__calculate_operations.snap b/backend/reconcile/src/operation_transformation/snapshots/reconcile__operations__operation_sequence__tests__calculate_operations.snap deleted file mode 100644 index 1ba51561..00000000 --- a/backend/reconcile/src/operation_transformation/snapshots/reconcile__operations__operation_sequence__tests__calculate_operations.snap +++ /dev/null @@ -1,60 +0,0 @@ ---- -source: reconcile/src/operations/operation_sequence.rs -expression: operations -snapshot_kind: text ---- -EditedText { - operations: [ - OrderedOperation { - order: 0, - operation: Insert { - index: 0, - text: "Hello, my friend! ", - }, - }, - OrderedOperation { - order: 0, - operation: Delete { - index: 18, - deleted_character_count: 13, - deleted_text: Some( - "hello world! ", - ), - }, - }, - OrderedOperation { - order: 21, - operation: Delete { - index: 26, - deleted_character_count: 5, - deleted_text: Some( - "you? ", - ), - }, - }, - OrderedOperation { - order: 26, - operation: Delete { - index: 26, - deleted_character_count: 5, - deleted_text: Some( - " Adam", - ), - }, - }, - OrderedOperation { - order: 31, - operation: Insert { - index: 26, - text: "you ", - }, - }, - OrderedOperation { - order: 31, - operation: Insert { - index: 30, - text: "doing? Albert", - }, - }, - ], -} diff --git a/backend/reconcile/src/tokenizer.rs b/backend/reconcile/src/tokenizer.rs deleted file mode 100644 index 7ce6463c..00000000 --- a/backend/reconcile/src/tokenizer.rs +++ /dev/null @@ -1,6 +0,0 @@ -use token::Token; - -pub mod token; -pub mod word_tokenizer; - -pub type Tokenizer = dyn Fn(&str) -> Vec>; diff --git a/backend/reconcile/src/tokenizer/snapshots/reconcile__tokenizer__word_tokenizer__tests__with_snapshots-2.snap b/backend/reconcile/src/tokenizer/snapshots/reconcile__tokenizer__word_tokenizer__tests__with_snapshots-2.snap deleted file mode 100644 index 892e524c..00000000 --- a/backend/reconcile/src/tokenizer/snapshots/reconcile__tokenizer__word_tokenizer__tests__with_snapshots-2.snap +++ /dev/null @@ -1,6 +0,0 @@ ---- -source: reconcile/src/tokenizer/word_tokenizer.rs -expression: "word_tokenizer(\"\")" -snapshot_kind: text ---- -[] diff --git a/backend/reconcile/src/tokenizer/snapshots/reconcile__tokenizer__word_tokenizer__tests__with_snapshots-3.snap b/backend/reconcile/src/tokenizer/snapshots/reconcile__tokenizer__word_tokenizer__tests__with_snapshots-3.snap deleted file mode 100644 index d1c94e1e..00000000 --- a/backend/reconcile/src/tokenizer/snapshots/reconcile__tokenizer__word_tokenizer__tests__with_snapshots-3.snap +++ /dev/null @@ -1,25 +0,0 @@ ---- -source: reconcile/src/tokenizer/word_tokenizer.rs -expression: "word_tokenizer(\" what? \")" -snapshot_kind: text ---- -[ - Token { - normalised: " what?", - original: " ", - is_left_joinable: true, - is_right_joinable: true, - }, - Token { - normalised: "what?", - original: "what?", - is_left_joinable: true, - is_right_joinable: true, - }, - Token { - normalised: " ", - original: " ", - is_left_joinable: true, - is_right_joinable: true, - }, -] diff --git a/backend/reconcile/src/tokenizer/snapshots/reconcile__tokenizer__word_tokenizer__tests__with_snapshots-4.snap b/backend/reconcile/src/tokenizer/snapshots/reconcile__tokenizer__word_tokenizer__tests__with_snapshots-4.snap deleted file mode 100644 index 6740dbc0..00000000 --- a/backend/reconcile/src/tokenizer/snapshots/reconcile__tokenizer__word_tokenizer__tests__with_snapshots-4.snap +++ /dev/null @@ -1,55 +0,0 @@ ---- -source: reconcile/src/tokenizer/word_tokenizer.rs -expression: "word_tokenizer(\" hello, \\nwhere are you?\")" -snapshot_kind: text ---- -[ - Token { - normalised: " hello,", - original: " ", - is_left_joinable: true, - is_right_joinable: true, - }, - Token { - normalised: "hello,", - original: "hello,", - is_left_joinable: true, - is_right_joinable: true, - }, - Token { - normalised: " \nwhere", - original: " \n", - is_left_joinable: true, - is_right_joinable: true, - }, - Token { - normalised: "where", - original: "where", - is_left_joinable: true, - is_right_joinable: true, - }, - Token { - normalised: " are", - original: " ", - is_left_joinable: true, - is_right_joinable: true, - }, - Token { - normalised: "are", - original: "are", - is_left_joinable: true, - is_right_joinable: true, - }, - Token { - normalised: " you?", - original: " ", - is_left_joinable: true, - is_right_joinable: true, - }, - Token { - normalised: "you?", - original: "you?", - is_left_joinable: true, - is_right_joinable: true, - }, -] diff --git a/backend/reconcile/src/tokenizer/snapshots/reconcile__tokenizer__word_tokenizer__tests__with_snapshots-5.snap b/backend/reconcile/src/tokenizer/snapshots/reconcile__tokenizer__word_tokenizer__tests__with_snapshots-5.snap deleted file mode 100644 index 832147ec..00000000 --- a/backend/reconcile/src/tokenizer/snapshots/reconcile__tokenizer__word_tokenizer__tests__with_snapshots-5.snap +++ /dev/null @@ -1,39 +0,0 @@ ---- -source: reconcile/src/tokenizer/word_tokenizer.rs -expression: "word_tokenizer(\" hello, \\nwhere are you?\")" -snapshot_kind: text ---- -[ - Token { - normalised: " ", - original: " ", - }, - Token { - normalised: "hello,", - original: "hello,", - }, - Token { - normalised: " \n", - original: " \n", - }, - Token { - normalised: "where", - original: "where", - }, - Token { - normalised: " ", - original: " ", - }, - Token { - normalised: "are", - original: "are", - }, - Token { - normalised: " ", - original: " ", - }, - Token { - normalised: "you?", - original: "you?", - }, -] diff --git a/backend/reconcile/src/tokenizer/snapshots/reconcile__tokenizer__word_tokenizer__tests__with_snapshots.snap b/backend/reconcile/src/tokenizer/snapshots/reconcile__tokenizer__word_tokenizer__tests__with_snapshots.snap deleted file mode 100644 index 95c8db5f..00000000 --- a/backend/reconcile/src/tokenizer/snapshots/reconcile__tokenizer__word_tokenizer__tests__with_snapshots.snap +++ /dev/null @@ -1,25 +0,0 @@ ---- -source: reconcile/src/tokenizer/word_tokenizer.rs -expression: "word_tokenizer(\"Hi there!\")" -snapshot_kind: text ---- -[ - Token { - normalised: "Hi", - original: "Hi", - is_left_joinable: true, - is_right_joinable: true, - }, - Token { - normalised: " there!", - original: " ", - is_left_joinable: true, - is_right_joinable: true, - }, - Token { - normalised: "there!", - original: "there!", - is_left_joinable: true, - is_right_joinable: true, - }, -] diff --git a/backend/reconcile/src/tokenizer/token.rs b/backend/reconcile/src/tokenizer/token.rs deleted file mode 100644 index 86cbb92f..00000000 --- a/backend/reconcile/src/tokenizer/token.rs +++ /dev/null @@ -1,64 +0,0 @@ -#[cfg(feature = "serde")] -use serde::{Deserialize, Serialize}; - -/// A token is a string that has been normalised in some way. -/// The normalised form is used for comparison, while the original form is used -/// for applying `Operation`-s. -#[cfg_attr(feature = "serde", derive(Serialize, Deserialize))] -#[derive(Debug, Clone)] -pub struct Token -where - T: PartialEq + Clone + std::fmt::Debug, -{ - /// The normalised form of the token used deriving the diff. - pub normalised: T, - - /// The original string, that should be inserted or deleted in the document. - original: String, - - /// Whether the token is joinable with the previous token. - is_left_joinable: bool, - - /// Whether the token is joinable with the next token. - is_right_joinable: bool, -} - -impl From<&str> for Token { - fn from(text: &str) -> Self { Token::new(text.to_owned(), text.to_owned(), true, true) } -} - -impl Token -where - T: PartialEq + Clone + std::fmt::Debug, -{ - pub fn new( - normalised: T, - original: String, - is_left_joinable: bool, - is_right_joinable: bool, - ) -> Self { - Token { - normalised, - original, - is_left_joinable, - is_right_joinable, - } - } - - pub fn original(&self) -> &str { &self.original } - - pub fn normalised(&self) -> &T { &self.normalised } - - pub fn get_original_length(&self) -> usize { self.original.chars().count() } - - pub fn get_is_left_joinable(&self) -> bool { self.is_left_joinable } - - pub fn get_is_right_joinable(&self) -> bool { self.is_right_joinable } -} - -impl PartialEq for Token -where - T: PartialEq + Clone + std::fmt::Debug, -{ - fn eq(&self, other: &Self) -> bool { self.normalised == other.normalised } -} diff --git a/backend/reconcile/src/tokenizer/word_tokenizer.rs b/backend/reconcile/src/tokenizer/word_tokenizer.rs deleted file mode 100644 index 2267f69f..00000000 --- a/backend/reconcile/src/tokenizer/word_tokenizer.rs +++ /dev/null @@ -1,60 +0,0 @@ -use super::token::Token; - -/// Splits on word boundaries creating alternating words and whitespaces with -/// the whitesspaces getting unique IDs. -/// -/// ## Example -/// -/// ```not_rust -/// "Hi there!" -> ["Hi", " ", "there!"] -/// ``` -pub fn word_tokenizer(text: &str) -> Vec> { - let mut result: Vec> = Vec::new(); - - let mut previous_boundary_index = 0; - let mut previous_char_is_whitespace = text.chars().next().is_none_or(char::is_whitespace); - - for (i, c) in text.char_indices() { - let is_current_char_whitespace = c.is_whitespace(); - if previous_char_is_whitespace != is_current_char_whitespace { - result.push(text[previous_boundary_index..i].into()); - previous_boundary_index = i; - } - - previous_char_is_whitespace = is_current_char_whitespace; - } - - if previous_boundary_index < text.len() { - result.push(text[previous_boundary_index..].into()); - } - - if result.is_empty() { - return result; - } - - for i in 0..result.len() - 1 { - if result[i].original().chars().all(char::is_whitespace) { - result[i].normalised = result[i].normalised().to_owned() + result[i + 1].original(); - } - } - - result -} - -#[cfg(test)] -mod tests { - use insta::assert_debug_snapshot; - - use super::*; - - #[test] - fn test_with_snapshots() { - assert_debug_snapshot!(word_tokenizer("Hi there!")); - - assert_debug_snapshot!(word_tokenizer("")); - - assert_debug_snapshot!(word_tokenizer(" what? ")); - - assert_debug_snapshot!(word_tokenizer(" hello, \nwhere are you?")); - } -} diff --git a/backend/reconcile/src/utils.rs b/backend/reconcile/src/utils.rs deleted file mode 100644 index 105719bd..00000000 --- a/backend/reconcile/src/utils.rs +++ /dev/null @@ -1,6 +0,0 @@ -pub mod common_prefix_len; -pub mod common_suffix_len; -pub mod find_longest_prefix_contained_within; -pub mod merge_iters; -pub mod side; -pub mod string_builder; diff --git a/backend/reconcile/src/utils/common_prefix_len.rs b/backend/reconcile/src/utils/common_prefix_len.rs deleted file mode 100644 index 5c1a5c12..00000000 --- a/backend/reconcile/src/utils/common_prefix_len.rs +++ /dev/null @@ -1,47 +0,0 @@ -use core::ops::{Index, Range}; - -/// Given two lookups and ranges calculates the length of the common prefix. -/// Copied from -pub fn common_prefix_len( - old: &Old, - old_range: Range, - new: &New, - new_range: Range, -) -> usize -where - Old: Index + ?Sized, - New: Index + ?Sized, - New::Output: PartialEq, -{ - new_range - .zip(old_range) - .take_while(|x| new[x.0] == old[x.1]) - .count() -} - -#[cfg(test)] -mod tests { - use pretty_assertions::assert_eq; - - use super::*; - - #[test] - fn test_common_prefix_len() { - assert_eq!( - common_prefix_len("".as_bytes(), 0..0, "".as_bytes(), 0..0), - 0 - ); - assert_eq!( - common_prefix_len("foobarbaz".as_bytes(), 0..9, "foobarblah".as_bytes(), 0..10), - 7 - ); - assert_eq!( - common_prefix_len("foobarbaz".as_bytes(), 0..9, "blablabla".as_bytes(), 0..9), - 0 - ); - assert_eq!( - common_prefix_len("foobarbaz".as_bytes(), 3..9, "foobarblah".as_bytes(), 3..10), - 4 - ); - } -} diff --git a/backend/reconcile/src/utils/common_suffix_len.rs b/backend/reconcile/src/utils/common_suffix_len.rs deleted file mode 100644 index c17a979c..00000000 --- a/backend/reconcile/src/utils/common_suffix_len.rs +++ /dev/null @@ -1,48 +0,0 @@ -use core::ops::{Index, Range}; - -/// Given two lookups and ranges calculates the length of common suffix. -/// Copied from -pub fn common_suffix_len( - old: &Old, - old_range: Range, - new: &New, - new_range: Range, -) -> usize -where - Old: Index + ?Sized, - New: Index + ?Sized, - New::Output: PartialEq, -{ - new_range - .rev() - .zip(old_range.rev()) - .take_while(|x| new[x.0] == old[x.1]) - .count() -} - -#[cfg(test)] -mod tests { - use pretty_assertions::assert_eq; - - use super::*; - - #[test] - fn test_common_suffix_len() { - assert_eq!( - common_suffix_len("".as_bytes(), 0..0, "".as_bytes(), 0..0), - 0 - ); - assert_eq!( - common_suffix_len("1234".as_bytes(), 0..4, "X0001234".as_bytes(), 0..8), - 4 - ); - assert_eq!( - common_suffix_len("1234".as_bytes(), 0..4, "Xxxx".as_bytes(), 0..4), - 0 - ); - assert_eq!( - common_suffix_len("1234".as_bytes(), 2..4, "01234".as_bytes(), 2..5), - 2 - ); - } -} diff --git a/backend/reconcile/src/utils/find_longest_prefix_contained_within.rs b/backend/reconcile/src/utils/find_longest_prefix_contained_within.rs deleted file mode 100644 index eb4b8264..00000000 --- a/backend/reconcile/src/utils/find_longest_prefix_contained_within.rs +++ /dev/null @@ -1,103 +0,0 @@ -use crate::Token; - -/// Given two lists of tokens, returns `length` where `old` list somewhere -/// within contains the `length` prefix of the `new` list. -/// -/// ## Example -/// -/// ```not_rust -/// old: [0, 1, 9, 0, 2, 5] -/// new: [9, 0, 2, 5, 1] -/// ``` -/// > results in an length of 4 -/// -/// -/// ```not_rust -/// old: [0, 1, 9, 0, 2, 5] -/// new: [0, 2] -/// ``` -/// > results in an length of 2 -/// -/// ```not_rust -/// old: [0, 1, 9, 0, 2, 5] -/// new: [0, 4] -/// ``` -/// > results in an length of 1 -pub fn find_longest_prefix_contained_within(old: &[Token], new: &[Token]) -> usize -where - T: PartialEq + Clone + std::fmt::Debug, -{ - let max_possible = new.len().min(old.len()); - - for len in (1..=max_possible).rev() { - let prefix = &new[..len]; - if old.windows(len).any(|window| window == prefix) { - return len; - } - } - - 0 -} - -#[cfg(test)] -mod tests { - use pretty_assertions::assert_eq; - - use super::*; - - #[test] - fn test_common_overlap() { - assert_eq!( - find_longest_prefix_contained_within(&["".into()], &["".into()]), - 1 - ); - - assert_eq!( - find_longest_prefix_contained_within( - &["a".into(), "b".into(), "c".into()], - &["b".into(), "c".into(), "a".into()] - ), - 2 - ); - - assert_eq!( - find_longest_prefix_contained_within( - &["a".into(), "b".into(), "c".into()], - &["b".into(), "c".into()] - ), - 2 - ); - - assert_eq!( - find_longest_prefix_contained_within( - &["a".into(), "b".into(), "c".into()], - &["b".into()] - ), - 1 - ); - - assert_eq!( - find_longest_prefix_contained_within( - &["a".into(), "b".into(), "c".into(), "b".into(), "a".into()], - &["b".into(), "a".into()] - ), - 2 - ); - - assert_eq!( - find_longest_prefix_contained_within( - &["a".into(), "a".into(), "a".into()], - &["a".into(), "b".into(), "c".into()] - ), - 1 - ); - - assert_eq!( - find_longest_prefix_contained_within( - &["a".into(), "b".into(), "c".into()], - &["d".into(), "e".into(), "a".into()] - ), - 0 - ); - } -} diff --git a/backend/reconcile/src/utils/merge_iters.rs b/backend/reconcile/src/utils/merge_iters.rs deleted file mode 100644 index 2730c336..00000000 --- a/backend/reconcile/src/utils/merge_iters.rs +++ /dev/null @@ -1,86 +0,0 @@ -use core::{cmp::Ordering, iter::Peekable}; - -pub struct MergeAscending -where - L: Iterator, - R: Iterator, - F: Fn(&R::Item) -> O, - O: PartialOrd, -{ - left: Peekable, - right: Peekable, - get_key: F, -} - -impl MergeAscending -where - L: Iterator, - R: Iterator, - F: Fn(&R::Item) -> O, - O: PartialOrd, -{ - fn new(left: L, right: R, get_key: F) -> Self { - MergeAscending { - left: left.peekable(), - right: right.peekable(), - get_key, - } - } -} - -impl Iterator for MergeAscending -where - L: Iterator, - R: Iterator, - F: Fn(&R::Item) -> O, - O: PartialOrd, -{ - type Item = L::Item; - - fn next(&mut self) -> Option { - let order = match (self.left.peek(), self.right.peek()) { - (Some(l), Some(r)) => (self.get_key)(l).partial_cmp(&(self.get_key)(r)), - (Some(_), None) => Some(Ordering::Less), - (None, Some(_)) => Some(Ordering::Greater), - (None, None) => return None, - }; - - match order { - Some(Ordering::Less | Ordering::Equal) | None => self.left.next(), - Some(Ordering::Greater) => self.right.next(), - } - } -} - -pub trait MergeSorted: Iterator { - fn merge_sorted_by_key(self, other: R, get_key: F) -> MergeAscending - where - Self: Sized, - R: Iterator, - F: Fn(&Self::Item) -> O, - O: PartialOrd, - { - MergeAscending::new(self, other, get_key) - } -} - -impl MergeSorted for T where T: Iterator {} - -#[cfg(test)] -mod tests { - use pretty_assertions::assert_eq; - - use super::*; - - #[test] - fn test_merge_sorted_by_key() { - let left = [9, 7, 5, 3, 1]; - let right = [7, 6, 5, 4, 3]; - - let result: Vec = left - .into_iter() - .merge_sorted_by_key(right.into_iter(), |x| -1 * x) - .collect(); - assert_eq!(result, vec![9, 7, 7, 6, 5, 5, 4, 3, 3, 1]); - } -} diff --git a/backend/reconcile/src/utils/side.rs b/backend/reconcile/src/utils/side.rs deleted file mode 100644 index 825fa9e2..00000000 --- a/backend/reconcile/src/utils/side.rs +++ /dev/null @@ -1,16 +0,0 @@ -use std::fmt::Display; - -#[derive(Debug, Clone, Copy, PartialEq, Eq)] -pub enum Side { - Left, - Right, -} - -impl Display for Side { - fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { - match self { - Side::Left => write!(f, "Left"), - Side::Right => write!(f, "Right"), - } - } -} diff --git a/backend/reconcile/src/utils/string_builder.rs b/backend/reconcile/src/utils/string_builder.rs deleted file mode 100644 index b19bcbb4..00000000 --- a/backend/reconcile/src/utils/string_builder.rs +++ /dev/null @@ -1,111 +0,0 @@ -use core::ops::Range; - -/// A helper for building a string in order based on an original string and a -/// series of insertions and deletions applied to it. It is safe to use with -/// UTF-8 strings as all operations are based on character indices. -#[derive(Debug, Clone)] -pub struct StringBuilder<'a> { - original: &'a str, - last_old_char_index: usize, - buffer: String, -} - -impl StringBuilder<'_> { - pub fn new(original: &str) -> StringBuilder<'_> { - StringBuilder { - original, - last_old_char_index: 0, - buffer: String::with_capacity(original.len()), - } - } - - /// Insert a string at the given index after copying the original string up - /// to that index from the last insertion or deletion. - pub fn insert(&mut self, from: usize, text: &str) { - self.copy_until(from); - self.buffer.push_str(text); - } - - /// Delete a string at the given index after copying the original string up - /// to that index from the last insertion or deletion. - pub fn delete(&mut self, range: core::ops::Range) { - self.copy_until(range.start); - self.last_old_char_index += range.len(); - } - - fn copy_until(&mut self, index: usize) { - let current_char_count = self.buffer.chars().count(); - debug_assert!( - index >= current_char_count, - "String builder only support building in order" - ); - - let jump = index - current_char_count; - - self.buffer.push_str( - &self - .original - .chars() - .skip(self.last_old_char_index) - .take(jump) - .collect::(), - ); - self.last_old_char_index += jump; - } - - /// Finish building the string after copying the remaining original string - /// since the last insertion or deletion. - pub fn build(mut self) -> String { - self.buffer.push_str( - &self - .original - .chars() - .skip(self.last_old_char_index) - .collect::(), - ); - - self.buffer - } - - #[allow(dead_code)] - pub fn get_slice(&self, range: Range) -> String { - let result = self - .buffer - .chars() - .chain(self.original.chars().skip(self.last_old_char_index)) - .skip(range.start) - .take(range.end - range.start) - .collect::(); - - debug_assert_eq!(result.chars().count(), range.len(), "Range out of bounds",); - - result - } -} - -#[cfg(test)] -mod tests { - use super::*; - - #[test] - fn test_string_builder() { - let original = "aaa bbb ccc"; - let mut builder = StringBuilder::new(original); - - builder.insert(0, "ddd "); - builder.delete(4..8); - builder.insert(11, " eee"); - - assert_eq!(builder.build(), "ddd bbb ccc eee"); - } - - #[test] - fn test_string_builder2() { - let original = "abcde"; - let mut builder = StringBuilder::new(original); - - builder.delete(1..4); - - assert_eq!(builder.build(), "ae"); - } -} diff --git a/backend/reconcile/tests/example_document.rs b/backend/reconcile/tests/example_document.rs deleted file mode 100644 index 277e49e1..00000000 --- a/backend/reconcile/tests/example_document.rs +++ /dev/null @@ -1,103 +0,0 @@ -use pretty_assertions::assert_eq; -use reconcile::{CursorPosition, TextWithCursors}; -use serde::Deserialize; - -/// `ExampleDocument` represents a test case for the reconciliation process. -/// It contains a parent string, left and right strings with cursor positions, -/// and the expected result after reconciliation. -/// -/// '|' characters in the left, right, and expected strings are treated as -/// cursor positions and are converted into `CursorPosition` objects. -#[derive(Debug, Deserialize, Clone, PartialEq, Eq)] -pub struct ExampleDocument { - parent: String, - left: String, - right: String, - expected: String, -} - -impl ExampleDocument { - #[must_use] - pub fn parent(&self) -> String { self.parent.clone() } - - #[must_use] - pub fn left(&self) -> TextWithCursors<'static> { - ExampleDocument::string_to_text_with_cursors(&self.left) - } - - #[must_use] - pub fn right(&self) -> TextWithCursors<'static> { - ExampleDocument::string_to_text_with_cursors(&self.right) - } - - /// Asserts that the result string matches the expected string, - /// including cursor positions. - /// - /// # Panics - /// - /// If the result string does not match the expected string, the program - /// will panic. - pub fn assert_eq(&self, result: &TextWithCursors<'static>) { - let result_str = ExampleDocument::text_with_cursors_to_string(result); - assert_eq!( - self.expected, result_str, - "Left (expected) isn't equal to right (actual). Actual: ```\n{result_str}```", - ); - } - - /// Asserts that the result string matches the expected string, - /// ignoring cursor positions. - /// - /// # Panics - /// - /// If the result string does not match the expected string, the program - /// will panic. - pub fn assert_eq_without_cursors(&self, result: &str) { - let expected = ExampleDocument::string_to_text_with_cursors(&self.expected).text; - assert_eq!( - expected, result, - "Left (expected) isn't equal to right (actual), Actual: ```\n{result}```", - ); - } - - fn text_with_cursors_to_string(text: &TextWithCursors<'_>) -> String { - let mut result = text.text.clone().into_owned(); - for (i, cursor) in text.cursors.iter().enumerate() { - assert!( - cursor.char_index <= result.len(), // equals in case of insert at the end - "Cursor index out of bounds: {} > {} when testing for '{result}'", - cursor.char_index, - result.len() - ); - - result.insert( - result - .char_indices() - .nth(cursor.char_index + i) - .map_or_else(|| result.len(), |(byte_index, _)| byte_index), /* find the utf8 char index of the insert - * in byte index */ - '|', - ); - } - result - } - - fn string_to_text_with_cursors(text: &str) -> TextWithCursors<'static> { - let cursors = Self::parse_cursors(text); - let text = text.replace('|', ""); - TextWithCursors::new_owned(text, cursors) - } - - fn parse_cursors(text: &str) -> Vec { - let mut cursors = Vec::new(); - for (i, c) in text.chars().enumerate() { - if c == '|' { - cursors.push(CursorPosition { - id: 0, - char_index: i - cursors.len(), - }); - } - } - cursors - } -} diff --git a/backend/reconcile/tests/examples/README.md b/backend/reconcile/tests/examples/README.md deleted file mode 100644 index f5fafa78..00000000 --- a/backend/reconcile/tests/examples/README.md +++ /dev/null @@ -1 +0,0 @@ -The `|` characters denote cursor positions which are stripped before the actual reconcile logic is run diff --git a/backend/reconcile/tests/examples/deletes.yml b/backend/reconcile/tests/examples/deletes.yml deleted file mode 100644 index c4c145b8..00000000 --- a/backend/reconcile/tests/examples/deletes.yml +++ /dev/null @@ -1,31 +0,0 @@ -# Both delete the same range -parent: original_1 original_2 original_3 original_4 original_5 -left: original_1 original_5| -right: "|original_1 original_5" -expected: "|original_1 original_5|" - ---- -# Both delete a range and one range contains the other -parent: original_1 original_2 original_3 original_4 original_5 -left: original_1 original_5 -right: original_1 original_4 original_5 -expected: original_1 original_5 - ---- -# Deleting overlapping ranges -parent: original_1 original_2 original_3 original_4 original_5 -left: original_1 original_4| original_5 -right: original_1 original_2| original_5 -expected: original_1|| original_5 - ---- -parent: long text with one big delete and many small -left: long small -right: long with big and small -expected: long small - ---- -parent: long text where the cursor has to be clamped after delete -left: long text where the cursor has to be clamped after delete| -right: long text where the cursor -expected: long text where the cursor| diff --git a/backend/reconcile/tests/examples/deletes_and_inserts.yml b/backend/reconcile/tests/examples/deletes_and_inserts.yml deleted file mode 100644 index fe0e7c1a..00000000 --- a/backend/reconcile/tests/examples/deletes_and_inserts.yml +++ /dev/null @@ -1,12 +0,0 @@ -# One deleted a large range, the other deleted subranges and inserted as well -parent: original_1 original_2 original_3 original_4 original_5 -left: original_1 original_5 -right: original_1 edit_1 original_3 edit_2 original_5 -expected: original_1 edit_1 edit_2 original_5 - ---- -# One deleted a large range, the other inserted and deleted a partially overlapping range -parent: original_1 original_2 original_3 original_4 original_5 -left: original_1 original_5 -right: original_1 edit_1 original_3 edit_2 -expected: original_1 edit_1 edit_2 diff --git a/backend/reconcile/tests/examples/idempotent_inserts.yml b/backend/reconcile/tests/examples/idempotent_inserts.yml deleted file mode 100644 index a48952be..00000000 --- a/backend/reconcile/tests/examples/idempotent_inserts.yml +++ /dev/null @@ -1,24 +0,0 @@ -# Both inserted the same prefix; this should get deduplicateed -parent: "hi " -left: "hi there " -right: "hi there my friend " -expected: "hi there my friend " - ---- -# The prefix of the 2nd appears on the 1st so it shouldn't get duplicatelicated -parent: "hi " -left: "hi there you " -right: "hi there my friend " -expected: "hi there my friend you " - ---- -parent: a -left: a b c -right: a b c d -expected: a b c d - ---- -parent: a -left: abc -right: abcd -expected: abcabcd diff --git a/backend/reconcile/tests/examples/multiline.yml b/backend/reconcile/tests/examples/multiline.yml deleted file mode 100644 index 3f2d096d..00000000 --- a/backend/reconcile/tests/examples/multiline.yml +++ /dev/null @@ -1,63 +0,0 @@ -parent: Hello! -left: | - Hello there! - - How are you? - -right: | - Hello there! - - Best, - Andras - -expected: | - Hello there! - - Best, - Andras - - - How are you? - ---- -parent: | - - my list - - 2nd item - - 3rd item - -left: | - - my list - - 2nd item - - nested list - - very nested list - - 3rd item - -right: | - - my list - - nested list - - 2nd item - - 3rd item - - another nested list - -expected: | - - my list - - nested list - - 2nd item - - nested list - - very nested list - - 3rd item - - another nested list - ---- -parent: | - a - a -left: | - a| - a -right: | - a| - a -expected: | - a|| - a diff --git a/backend/reconcile/tests/examples/replacing.yml b/backend/reconcile/tests/examples/replacing.yml deleted file mode 100644 index cea57b89..00000000 --- a/backend/reconcile/tests/examples/replacing.yml +++ /dev/null @@ -1,19 +0,0 @@ -# Both replaced one token but the tokens are different -parent: original_1 original_2 original_3 -left: original_1 edit_1| original_3 -right: original_1 original_2| edit_2 -expected: original_1 edit_1|| edit_2 - ---- -# Both replace the same token with the same value -parent: original_1 original_2 original_3 -left: original_1 edit_1| original_3 -right: original_1 edit_1 original_3| -expected: original_1 edit_1| original_3| - ---- -# Both replace the same token with different value -parent: original_1 original_2 original_3 -left: original_1 edit_1| original_3 -right: original_1 conflicting_edit_1| original_3 -expected: original_1 conflicting_edit_1| edit_1| original_3 diff --git a/backend/reconcile/tests/examples/utf-8.yml b/backend/reconcile/tests/examples/utf-8.yml deleted file mode 100644 index 8aac95fe..00000000 --- a/backend/reconcile/tests/examples/utf-8.yml +++ /dev/null @@ -1,10 +0,0 @@ -parent: Meeting at 2pm in 会议室 -left: Meeting at |3pm in 会议室 -right: Team meeting at 2pm in conference room| -expected: Team meeting at |3pm in conference room| - ---- -parent: " " -left: "it’|s utf-8!" -right: " " -expected: "it’|s utf-8!" diff --git a/backend/reconcile/tests/examples/various.yml b/backend/reconcile/tests/examples/various.yml deleted file mode 100644 index cfbeb423..00000000 --- a/backend/reconcile/tests/examples/various.yml +++ /dev/null @@ -1,130 +0,0 @@ -parent: You're Annual Savings Statement is available in our online portal -left: Your| annual record is available in our online portal| -right: You're Annual Savings information| is available online -expected: Your| annual record information| is available online| - ---- -parent: Party A shall pay Party B -left: Party C shall pay Party B -right: Party A shall receive from Party B -expected: Party C shall receive from Party B - ---- -parent: -left: hi my friend| -right: hi there| -expected: hi my friend| there| - ---- -parent: "" -left: "" -right: "" -expected: "" - ---- -parent: "" -left: "|" -right: "|" -expected: "||" - ---- -parent: Buy milk and eggs -left: Buy organic milk| and eggs| -right: Buy milk and eggs| and bread -expected: Buy organic milk| and eggs|| and bread - ---- -parent: Send the report to the team -left: Send the |detailed report to the |entire |team -right: Send the |quarterly |detailed report to the team -expected: Send the |detailed |quarterly |detailed report to the |entire |team - ---- -parent: Ready, Set go -left: Ready! Set go| -right: Ready, Set, go!| -expected: Ready! Set, go!|| - ---- -parent: "Total: $100" -left: "Total: |$150" -right: "Total: |€100" -expected: "Total: |$150 |€100" - ---- -parent: Start middle end -left: Start [important] middle end| -right: Start middle [critical] end| -expected: Start [important] middle [critical] end|| - ---- -parent: marketplace -left: market| place -right: market|space -expected: market| placemarket|space - ---- -parent: A B C D -left: A X B D| -right: A B Y| -expected: A X B |Y| - ---- -parent: Please submit your assignment by Friday -left: Please submit your |completed |assignment by Friday -right: Please submit your assignment |online |by Friday -expected: Please submit your |completed |assignment |online |by Friday - ---- -parent: "a b " -left: "c d " -right: "a b c d " -expected: "c d c d " - ---- -parent: a b c d e -left: a e| -right: a c e| -expected: a e|| - ---- -parent: a 0 1 2 b -left: a 0 1| 2 b -right: a b| -expected: a| b| - ---- -parent: a 0 1 2 b -left: "|a b" -right: "|a E 1 F b" -expected: "||a E F b" - ---- -parent: a this one delete b -left: a b| -right: a my one change b| -expected: a my change b|| - ---- -parent: this stays, this is one big delete, don't touch this -left: this stays, don't touch this| -right: this stays, my one change, don't touch this| -expected: this stays, my change, don't touch this|| - ---- -parent: 1 2 3 4 5 6 -left: 1| 6 -right: 1 2 4| -expected: 1|| - ---- -parent: hello world -left: hi, world -right: hello my friend! -expected: hi, my friend! - ---- -parent: a a -left: a -right: a -expected: a diff --git a/backend/reconcile/tests/resources/blns.txt b/backend/reconcile/tests/resources/blns.txt deleted file mode 100644 index 62352e35..00000000 --- a/backend/reconcile/tests/resources/blns.txt +++ /dev/null @@ -1,742 +0,0 @@ -# Reserved Strings -# -# Strings which may be used elsewhere in code - -undefined -undef -null -NULL -(null) -nil -NIL -true -false -True -False -TRUE -FALSE -None -hasOwnProperty -then -constructor -\ -\\ - -# Numeric Strings -# -# Strings which can be interpreted as numeric - -0 -1 -1.00 -$1.00 -1/2 -1E2 -1E02 -1E+02 --1 --1.00 --$1.00 --1/2 --1E2 --1E02 --1E+02 -1/0 -0/0 --2147483648/-1 --9223372036854775808/-1 --0 --0.0 -+0 -+0.0 -0.00 -0..0 -. -0.0.0 -0,00 -0,,0 -, -0,0,0 -0.0/0 -1.0/0.0 -0.0/0.0 -1,0/0,0 -0,0/0,0 ---1 -- --. --, -999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999 -NaN -Infinity --Infinity -INF -1#INF --1#IND -1#QNAN -1#SNAN -1#IND -0x0 -0xffffffff -0xffffffffffffffff -0xabad1dea -123456789012345678901234567890123456789 -1,000.00 -1 000.00 -1'000.00 -1,000,000.00 -1 000 000.00 -1'000'000.00 -1.000,00 -1 000,00 -1'000,00 -1.000.000,00 -1 000 000,00 -1'000'000,00 -01000 -08 -09 -2.2250738585072011e-308 - -# Special Characters -# -# ASCII punctuation. All of these characters may need to be escaped in some -# contexts. Divided into three groups based on (US-layout) keyboard position. - -,./;'[]\-= -<>?:"{}|_+ -!@#$%^&*()`~ - -# Non-whitespace C0 controls: U+0001 through U+0008, U+000E through U+001F, -# and U+007F (DEL) -# Often forbidden to appear in various text-based file formats (e.g. XML), -# or reused for internal delimiters on the theory that they should never -# appear in input. -# The next line may appear to be blank or mojibake in some viewers. - - -# Non-whitespace C1 controls: U+0080 through U+0084 and U+0086 through U+009F. -# Commonly misinterpreted as additional graphic characters. -# The next line may appear to be blank, mojibake, or dingbats in some viewers. -€‚ƒ„†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ - -# Whitespace: all of the characters with category Zs, Zl, or Zp (in Unicode -# version 8.0.0), plus U+0009 (HT), U+000B (VT), U+000C (FF), U+0085 (NEL), -# and U+200B (ZERO WIDTH SPACE), which are in the C categories but are often -# treated as whitespace in some contexts. -# This file unfortunately cannot express strings containing -# U+0000, U+000A, or U+000D (NUL, LF, CR). -# The next line may appear to be blank or mojibake in some viewers. -# The next line may be flagged for "trailing whitespace" in some viewers. - …             ​

    - -# Unicode additional control characters: all of the characters with -# general category Cf (in Unicode 8.0.0). -# The next line may appear to be blank or mojibake in some viewers. -­؀؁؂؃؄؅؜۝܏᠎​‌‍‎‏‪‫‬‭‮⁠⁡⁢⁣⁤⁦⁧⁨⁩𑂽𛲠𛲡𛲢𛲣𝅳𝅴𝅵𝅶𝅷𝅸𝅹𝅺󠀁󠀠󠀡󠀢󠀣󠀤󠀥󠀦󠀧󠀨󠀩󠀪󠀫󠀬󠀭󠀮󠀯󠀰󠀱󠀲󠀳󠀴󠀵󠀶󠀷󠀸󠀹󠀺󠀻󠀼󠀽󠀾󠀿󠁀󠁁󠁂󠁃󠁄󠁅󠁆󠁇󠁈󠁉󠁊󠁋󠁌󠁍󠁎󠁏󠁐󠁑󠁒󠁓󠁔󠁕󠁖󠁗󠁘󠁙󠁚󠁛󠁜󠁝󠁞󠁟󠁠󠁡󠁢󠁣󠁤󠁥󠁦󠁧󠁨󠁩󠁪󠁫󠁬󠁭󠁮󠁯󠁰󠁱󠁲󠁳󠁴󠁵󠁶󠁷󠁸󠁹󠁺󠁻󠁼󠁽󠁾󠁿 - -# "Byte order marks", U+FEFF and U+FFFE, each on its own line. -# The next two lines may appear to be blank or mojibake in some viewers. - -￾ - -# Unicode Symbols -# -# Strings which contain common unicode symbols (e.g. smart quotes) - -Ω≈ç√∫˜µ≤≥÷ -åß∂ƒ©˙∆˚¬…æ -œ∑´®†¥¨ˆøπ“‘ -¡™£¢∞§¶•ªº–≠ -¸˛Ç◊ı˜Â¯˘¿ -ÅÍÎÏ˝ÓÔÒÚÆ☃ -Œ„´‰ˇÁ¨ˆØ∏”’ -`⁄€‹›fifl‡°·‚—± -⅛⅜⅝⅞ -ЁЂЃЄЅІЇЈЉЊЋЌЍЎЏАБВГДЕЖЗИЙКЛМНОПРСТУФХЦЧШЩЪЫЬЭЮЯабвгдежзийклмнопрстуфхцчшщъыьэюя -٠١٢٣٤٥٦٧٨٩ - -# Unicode Subscript/Superscript/Accents -# -# Strings which contain unicode subscripts/superscripts; can cause rendering issues - -⁰⁴⁵ -₀₁₂ -⁰⁴⁵₀₁₂ -ด้้้้้็็็็็้้้้้็็็็็้้้้้้้้็็็็็้้้้้็็็็็้้้้้้้้็็็็็้้้้้็็็็็้้้้้้้้็็็็็้้้้้็็็็ ด้้้้้็็็็็้้้้้็็็็็้้้้้้้้็็็็็้้้้้็็็็็้้้้้้้้็็็็็้้้้้็็็็็้้้้้้้้็็็็็้้้้้็็็็ ด้้้้้็็็็็้้้้้็็็็็้้้้้้้้็็็็็้้้้้็็็็็้้้้้้้้็็็็็้้้้้็็็็็้้้้้้้้็็็็็้้้้้็็็็ - -# Quotation Marks -# -# Strings which contain misplaced quotation marks; can cause encoding errors - -' -" -'' -"" -'"' -"''''"'" -"'"'"''''" - - - - - -# Two-Byte Characters -# -# Strings which contain two-byte characters: can cause rendering issues or character-length issues - -田中さんにあげて下さい -パーティーへ行かないか -和製漢語 -部落格 -사회과학원 어학연구소 -찦차를 타고 온 펲시맨과 쑛다리 똠방각하 -社會科學院語學研究所 -울란바토르 -𠜎𠜱𠝹𠱓𠱸𠲖𠳏 - -# Strings which contain two-byte letters: can cause issues with naïve UTF-16 capitalizers which think that 16 bits == 1 character - -𐐜 𐐔𐐇𐐝𐐀𐐡𐐇𐐓 𐐙𐐊𐐡𐐝𐐓/𐐝𐐇𐐗𐐊𐐤𐐔 𐐒𐐋𐐗 𐐒𐐌 𐐜 𐐡𐐀𐐖𐐇𐐤𐐓𐐝 𐐱𐑂 𐑄 𐐔𐐇𐐝𐐀𐐡𐐇𐐓 𐐏𐐆𐐅𐐤𐐆𐐚𐐊𐐡𐐝𐐆𐐓𐐆 - -# Special Unicode Characters Union -# -# A super string recommended by VMware Inc. Globalization Team: can effectively cause rendering issues or character-length issues to validate product globalization readiness. -# -# 表 CJK_UNIFIED_IDEOGRAPHS (U+8868) -# ポ KATAKANA LETTER PO (U+30DD) -# あ HIRAGANA LETTER A (U+3042) -# A LATIN CAPITAL LETTER A (U+0041) -# 鷗 CJK_UNIFIED_IDEOGRAPHS (U+9DD7) -# Œ LATIN SMALL LIGATURE OE (U+0153) -# é LATIN SMALL LETTER E WITH ACUTE (U+00E9) -# B FULLWIDTH LATIN CAPITAL LETTER B (U+FF22) -# 逍 CJK_UNIFIED_IDEOGRAPHS (U+900D) -# Ü LATIN SMALL LETTER U WITH DIAERESIS (U+00FC) -# ß LATIN SMALL LETTER SHARP S (U+00DF) -# ª FEMININE ORDINAL INDICATOR (U+00AA) -# ą LATIN SMALL LETTER A WITH OGONEK (U+0105) -# ñ LATIN SMALL LETTER N WITH TILDE (U+00F1) -# 丂 CJK_UNIFIED_IDEOGRAPHS (U+4E02) -# 㐀 CJK Ideograph Extension A, First (U+3400) -# 𠀀 CJK Ideograph Extension B, First (U+20000) - -表ポあA鷗ŒéB逍Üߪąñ丂㐀𠀀 - -# Changing length when lowercased -# -# Characters which increase in length (2 to 3 bytes) when lowercased -# Credit: https://twitter.com/jifa/status/625776454479970304 - -Ⱥ -Ⱦ - -# Japanese Emoticons -# -# Strings which consists of Japanese-style emoticons which are popular on the web - -ヽ༼ຈل͜ຈ༽ノ ヽ༼ຈل͜ຈ༽ノ -(。◕ ∀ ◕。) -`ィ(´∀`∩ -__ロ(,_,*) -・( ̄∀ ̄)・:*: -゚・✿ヾ╲(。◕‿◕。)╱✿・゚ -,。・:*:・゜’( ☻ ω ☻ )。・:*:・゜’ -(╯°□°)╯︵ ┻━┻) -(ノಥ益ಥ)ノ ┻━┻ -┬─┬ノ( º _ ºノ) -( ͡° ͜ʖ ͡°) -¯\_(ツ)_/¯ - -# Emoji -# -# Strings which contain Emoji; should be the same behavior as two-byte characters, but not always - -😍 -👩🏽 -👨‍🦰 👨🏿‍🦰 👨‍🦱 👨🏿‍🦱 🦹🏿‍♂️ -👾 🙇 💁 🙅 🙆 🙋 🙎 🙍 -🐵 🙈 🙉 🙊 -❤️ 💔 💌 💕 💞 💓 💗 💖 💘 💝 💟 💜 💛 💚 💙 -✋🏿 💪🏿 👐🏿 🙌🏿 👏🏿 🙏🏿 -👨‍👩‍👦 👨‍👩‍👧‍👦 👨‍👨‍👦 👩‍👩‍👧 👨‍👦 👨‍👧‍👦 👩‍👦 👩‍👧‍👦 -🚾 🆒 🆓 🆕 🆖 🆗 🆙 🏧 -0️⃣ 1️⃣ 2️⃣ 3️⃣ 4️⃣ 5️⃣ 6️⃣ 7️⃣ 8️⃣ 9️⃣ 🔟 - -# Regional Indicator Symbols -# -# Regional Indicator Symbols can be displayed differently across -# fonts, and have a number of special behaviors - -🇺🇸🇷🇺🇸 🇦🇫🇦🇲🇸 -🇺🇸🇷🇺🇸🇦🇫🇦🇲 -🇺🇸🇷🇺🇸🇦 - -# Unicode Numbers -# -# Strings which contain unicode numbers; if the code is localized, it should see the input as numeric - -123 -١٢٣ - -# Right-To-Left Strings -# -# Strings which contain text that should be rendered RTL if possible (e.g. Arabic, Hebrew) - -ثم نفس سقطت وبالتحديد،, جزيرتي باستخدام أن دنو. إذ هنا؟ الستار وتنصيب كان. أهّل ايطاليا، بريطانيا-فرنسا قد أخذ. سليمان، إتفاقية بين ما, يذكر الحدود أي بعد, معاملة بولندا، الإطلاق عل إيو. -בְּרֵאשִׁית, בָּרָא אֱלֹהִים, אֵת הַשָּׁמַיִם, וְאֵת הָאָרֶץ -הָיְתָהtestالصفحات التّحول -﷽ -ﷺ -مُنَاقَشَةُ سُبُلِ اِسْتِخْدَامِ اللُّغَةِ فِي النُّظُمِ الْقَائِمَةِ وَفِيم يَخُصَّ التَّطْبِيقَاتُ الْحاسُوبِيَّةُ، -الكل في المجمو عة (5) - -# Ogham Text -# -# The only unicode alphabet to use a space which isn't empty but should still act like a space. - -᚛ᚄᚓᚐᚋᚒᚄ ᚑᚄᚂᚑᚏᚅ᚜ -᚛                 ᚜ - -# Trick Unicode -# -# Strings which contain unicode with unusual properties (e.g. Right-to-left override) (c.f. http://www.unicode.org/charts/PDF/U2000.pdf) - -‪‪test‪ -‫test‫ -
test
 -test⁠test‫ -⁦test⁧ - -# Zalgo Text -# -# Strings which contain "corrupted" text. The corruption will not appear in non-HTML text, however. (via http://www.eeemo.net) - -Ṱ̺̺̕o͞ ̷i̲̬͇̪͙n̝̗͕v̟̜̘̦͟o̶̙̰̠kè͚̮̺̪̹̱̤ ̖t̝͕̳̣̻̪͞h̼͓̲̦̳̘̲e͇̣̰̦̬͎ ̢̼̻̱̘h͚͎͙̜̣̲ͅi̦̲̣̰̤v̻͍e̺̭̳̪̰-m̢iͅn̖̺̞̲̯̰d̵̼̟͙̩̼̘̳ ̞̥̱̳̭r̛̗̘e͙p͠r̼̞̻̭̗e̺̠̣͟s̘͇̳͍̝͉e͉̥̯̞̲͚̬͜ǹ̬͎͎̟̖͇̤t͍̬̤͓̼̭͘ͅi̪̱n͠g̴͉ ͏͉ͅc̬̟h͡a̫̻̯͘o̫̟̖͍̙̝͉s̗̦̲.̨̹͈̣ -̡͓̞ͅI̗̘̦͝n͇͇͙v̮̫ok̲̫̙͈i̖͙̭̹̠̞n̡̻̮̣̺g̲͈͙̭͙̬͎ ̰t͔̦h̞̲e̢̤ ͍̬̲͖f̴̘͕̣è͖ẹ̥̩l͖͔͚i͓͚̦͠n͖͍̗͓̳̮g͍ ̨o͚̪͡f̘̣̬ ̖̘͖̟͙̮c҉͔̫͖͓͇͖ͅh̵̤̣͚͔á̗̼͕ͅo̼̣̥s̱͈̺̖̦̻͢.̛̖̞̠̫̰ -̗̺͖̹̯͓Ṯ̤͍̥͇͈h̲́e͏͓̼̗̙̼̣͔ ͇̜̱̠͓͍ͅN͕͠e̗̱z̘̝̜̺͙p̤̺̹͍̯͚e̠̻̠͜r̨̤͍̺̖͔̖̖d̠̟̭̬̝͟i̦͖̩͓͔̤a̠̗̬͉̙n͚͜ ̻̞̰͚ͅh̵͉i̳̞v̢͇ḙ͎͟-҉̭̩̼͔m̤̭̫i͕͇̝̦n̗͙ḍ̟ ̯̲͕͞ǫ̟̯̰̲͙̻̝f ̪̰̰̗̖̭̘͘c̦͍̲̞͍̩̙ḥ͚a̮͎̟̙͜ơ̩̹͎s̤.̝̝ ҉Z̡̖̜͖̰̣͉̜a͖̰͙̬͡l̲̫̳͍̩g̡̟̼̱͚̞̬ͅo̗͜.̟ -̦H̬̤̗̤͝e͜ ̜̥̝̻͍̟́w̕h̖̯͓o̝͙̖͎̱̮ ҉̺̙̞̟͈W̷̼̭a̺̪͍į͈͕̭͙̯̜t̶̼̮s̘͙͖̕ ̠̫̠B̻͍͙͉̳ͅe̵h̵̬͇̫͙i̹͓̳̳̮͎̫̕n͟d̴̪̜̖ ̰͉̩͇͙̲͞ͅT͖̼͓̪͢h͏͓̮̻e̬̝̟ͅ ̤̹̝W͙̞̝͔͇͝ͅa͏͓͔̹̼̣l̴͔̰̤̟͔ḽ̫.͕ -Z̮̞̠͙͔ͅḀ̗̞͈̻̗Ḷ͙͎̯̹̞͓G̻O̭̗̮ - -# Unicode Upsidedown -# -# Strings which contain unicode with an "upsidedown" effect (via http://www.upsidedowntext.com) - -˙ɐnbᴉlɐ ɐuƃɐɯ ǝɹolop ʇǝ ǝɹoqɐl ʇn ʇunpᴉpᴉɔuᴉ ɹodɯǝʇ poɯsnᴉǝ op pǝs 'ʇᴉlǝ ƃuᴉɔsᴉdᴉpɐ ɹnʇǝʇɔǝsuoɔ 'ʇǝɯɐ ʇᴉs ɹolop ɯnsdᴉ ɯǝɹo˥ -00˙Ɩ$- - -# Unicode font -# -# Strings which contain bold/italic/etc. versions of normal characters - -The quick brown fox jumps over the lazy dog -𝐓𝐡𝐞 𝐪𝐮𝐢𝐜𝐤 𝐛𝐫𝐨𝐰𝐧 𝐟𝐨𝐱 𝐣𝐮𝐦𝐩𝐬 𝐨𝐯𝐞𝐫 𝐭𝐡𝐞 𝐥𝐚𝐳𝐲 𝐝𝐨𝐠 -𝕿𝖍𝖊 𝖖𝖚𝖎𝖈𝖐 𝖇𝖗𝖔𝖜𝖓 𝖋𝖔𝖝 𝖏𝖚𝖒𝖕𝖘 𝖔𝖛𝖊𝖗 𝖙𝖍𝖊 𝖑𝖆𝖟𝖞 𝖉𝖔𝖌 -𝑻𝒉𝒆 𝒒𝒖𝒊𝒄𝒌 𝒃𝒓𝒐𝒘𝒏 𝒇𝒐𝒙 𝒋𝒖𝒎𝒑𝒔 𝒐𝒗𝒆𝒓 𝒕𝒉𝒆 𝒍𝒂𝒛𝒚 𝒅𝒐𝒈 -𝓣𝓱𝓮 𝓺𝓾𝓲𝓬𝓴 𝓫𝓻𝓸𝔀𝓷 𝓯𝓸𝔁 𝓳𝓾𝓶𝓹𝓼 𝓸𝓿𝓮𝓻 𝓽𝓱𝓮 𝓵𝓪𝔃𝔂 𝓭𝓸𝓰 -𝕋𝕙𝕖 𝕢𝕦𝕚𝕔𝕜 𝕓𝕣𝕠𝕨𝕟 𝕗𝕠𝕩 𝕛𝕦𝕞𝕡𝕤 𝕠𝕧𝕖𝕣 𝕥𝕙𝕖 𝕝𝕒𝕫𝕪 𝕕𝕠𝕘 -𝚃𝚑𝚎 𝚚𝚞𝚒𝚌𝚔 𝚋𝚛𝚘𝚠𝚗 𝚏𝚘𝚡 𝚓𝚞𝚖𝚙𝚜 𝚘𝚟𝚎𝚛 𝚝𝚑𝚎 𝚕𝚊𝚣𝚢 𝚍𝚘𝚐 -⒯⒣⒠ ⒬⒰⒤⒞⒦ ⒝⒭⒪⒲⒩ ⒡⒪⒳ ⒥⒰⒨⒫⒮ ⒪⒱⒠⒭ ⒯⒣⒠ ⒧⒜⒵⒴ ⒟⒪⒢ - -# Script Injection -# -# Strings which attempt to invoke a benign script injection; shows vulnerability to XSS - - -<script>alert('1');</script> - - -"> -'> -> - -< / script >< script >alert(8)< / script > - onfocus=JaVaSCript:alert(9) autofocus -" onfocus=JaVaSCript:alert(10) autofocus -' onfocus=JaVaSCript:alert(11) autofocus -<script>alert(12)</script> -ript>alert(13)ript> ---> -";alert(15);t=" -';alert(16);t=' -JavaSCript:alert(17) -;alert(18); -src=JaVaSCript:prompt(19) -">javascript:alert(25); -javascript:alert(26); -javascript:alert(27); -javascript:alert(28); -javascript:alert(29); -javascript:alert(30); -javascript:alert(31); -'`"><\x3Cscript>javascript:alert(32) -'`"><\x00script>javascript:alert(33) -ABC
DEF -ABC
DEF -ABC
DEF -ABC
DEF -ABC
DEF -ABC
DEF -ABC
DEF -ABC
DEF -ABC
DEF -ABC
DEF -ABC
DEF -ABC
DEF -ABC
DEF -ABC
DEF -ABC
DEF -ABC
DEF -ABC
DEF -ABC
DEF -ABC
DEF -ABC
DEF -ABC
DEF -ABC
DEF -ABC
DEF -ABC
DEF -ABC
DEF -ABC
DEF -ABC
DEF -test -test -test -test -test -test -test -test -test -test -test -test -test -test -test -test -test -test -test -test -test -test -test -test -test -test -test -test -test -test -test -test -test -test -test -test -test -test -test -test -test -test -test -test -test -test -test -test -test -test -test -test -test -test -test -test -test -`"'> -`"'> -`"'> -`"'> -`"'> -`"'> -`"'> -`"'> -`"'> -`"'> -"`'> -"`'> -"`'> -"`'> -"`'> -"`'> -"`'> -"`'> -"`'> -"`'> -"`'> -"`'> -"`'> -"`'> -"`'> -"`'> -"`'> -"`'> -"`'> -"`'> -"`'> -"`'> -"`'> -"`'> -"`'> -"`'> -"`'> -"`'> -"`'> -"`'> -"`'> -"`'> -"`'> -"`'> -"`'> -"`'> -"`'> - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -XXX - - - -<a href=http://foo.bar/#x=`y></a><img alt="`><img src=x:x onerror=javascript:alert(203)></a>"> -<!--[if]><script>javascript:alert(204)</script --> -<!--[if<img src=x onerror=javascript:alert(205)//]> --> -<script src="/\%(jscript)s"></script> -<script src="\\%(jscript)s"></script> -<IMG """><SCRIPT>alert("206")</SCRIPT>"> -<IMG SRC=javascript:alert(String.fromCharCode(50,48,55))> -<IMG SRC=# onmouseover="alert('208')"> -<IMG SRC= onmouseover="alert('209')"> -<IMG onmouseover="alert('210')"> -<IMG SRC=javascript:alert('211')> -<IMG SRC=javascript:alert('212')> -<IMG SRC=javascript:alert('213')> -<IMG SRC="jav   ascript:alert('214');"> -<IMG SRC="jav ascript:alert('215');"> -<IMG SRC="jav ascript:alert('216');"> -<IMG SRC="jav ascript:alert('217');"> -perl -e 'print "<IMG SRC=java\0script:alert(\"218\")>";' > out -<IMG SRC="   javascript:alert('219');"> -<SCRIPT/XSS SRC="http://ha.ckers.org/xss.js"></SCRIPT> -<BODY onload!#$%&()*~+-_.,:;?@[/|\]^`=alert("220")> -<SCRIPT/SRC="http://ha.ckers.org/xss.js"></SCRIPT> -<<SCRIPT>alert("221");//<</SCRIPT> -<SCRIPT SRC=http://ha.ckers.org/xss.js?< B > -<SCRIPT SRC=//ha.ckers.org/.j> -<IMG SRC="javascript:alert('222')" -<iframe src=http://ha.ckers.org/scriptlet.html < -\";alert('223');// -<u oncopy=alert()> Copy me</u> -<i onwheel=alert(224)> Scroll over me </i> -<plaintext> -http://a/%%30%30 -</textarea><script>alert(225)</script> - -# SQL Injection -# -# Strings which can cause a SQL injection if inputs are not sanitized - -1;DROP TABLE users -1'; DROP TABLE users-- 1 -' OR 1=1 -- 1 -' OR '1'='1 -'; EXEC sp_MSForEachTable 'DROP TABLE ?'; -- - -% -_ - -# Server Code Injection -# -# Strings which can cause user to run code on server as a privileged user (c.f. https://news.ycombinator.com/item?id=7665153) - -- --- ---version ---help -$USER -/dev/null; touch /tmp/blns.fail ; echo -`touch /tmp/blns.fail` -$(touch /tmp/blns.fail) -@{[system "touch /tmp/blns.fail"]} - -# Command Injection (Ruby) -# -# Strings which can call system commands within Ruby/Rails applications - -eval("puts 'hello world'") -System("ls -al /") -`ls -al /` -Kernel.exec("ls -al /") -Kernel.exit(1) -%x('ls -al /') - -# XXE Injection (XML) -# -# String which can reveal system files when parsed by a badly configured XML parser - -<?xml version="1.0" encoding="ISO-8859-1"?><!DOCTYPE foo [ <!ELEMENT foo ANY ><!ENTITY xxe SYSTEM "file:///etc/passwd" >]><foo>&xxe;</foo> - -# Unwanted Interpolation -# -# Strings which can be accidentally expanded into different strings if evaluated in the wrong context, e.g. used as a printf format string or via Perl or shell eval. Might expose sensitive data from the program doing the interpolation, or might just represent the wrong string. - -$HOME -$ENV{'HOME'} -%d -%s%s%s%s%s -{0} -%*.*s -%@ -%n -File:/// - -# File Inclusion -# -# Strings which can cause user to pull in files that should not be a part of a web server - -../../../../../../../../../../../etc/passwd%00 -../../../../../../../../../../../etc/hosts - -# Known CVEs and Vulnerabilities -# -# Strings that test for known vulnerabilities - -() { 0; }; touch /tmp/blns.shellshock1.fail; -() { _; } >_[$($())] { touch /tmp/blns.shellshock2.fail; } -<<< %s(un='%s') = %u -+++ATH0 - -# MSDOS/Windows Special Filenames -# -# Strings which are reserved characters in MSDOS/Windows - -CON -PRN -AUX -CLOCK$ -NUL -A: -ZZ: -COM1 -LPT1 -LPT2 -LPT3 -COM2 -COM3 -COM4 - -# IRC specific strings -# -# Strings that may occur on IRC clients that make security products freak out - -DCC SEND STARTKEYLOGGER 0 0 0 - -# Scunthorpe Problem -# -# Innocuous strings which may be blocked by profanity filters (https://en.wikipedia.org/wiki/Scunthorpe_problem) - -Scunthorpe General Hospital -Penistone Community Church -Lightwater Country Park -Jimmy Clitheroe -Horniman Museum -shitake mushrooms -RomansInSussex.co.uk -http://www.cum.qc.ca/ -Craig Cockburn, Software Specialist -Linda Callahan -Dr. Herman I. Libshitz -magna cum laude -Super Bowl XXX -medieval erection of parapets -evaluate -mocha -expression -Arsenal canal -classic -Tyson Gay -Dick Van Dyke -basement - -# Human injection -# -# Strings which may cause human to reinterpret worldview - -If you're reading this, you've been in a coma for almost 20 years now. We're trying a new technique. We don't know where this message will end up in your dream, but we hope it works. Please wake up, we miss you. - -# Terminal escape codes -# -# Strings which punish the fools who use cat/type on this file - -Roses are red, violets are blue. Hope you enjoy terminal hue -But now...for my greatest trick... -The quick brown fox... [Beeeep] - -# iOS Vulnerabilities -# -# Strings which crashed iMessage in various versions of iOS - -Powerلُلُصّبُلُلصّبُررً ॣ ॣh ॣ ॣ冗 -🏳0🌈️ -జ్ఞ‌ా - -# Persian special characters -# -# This is a four characters string which includes Persian special characters (گچپژ) - -گچپژ - -# jinja2 injection -# -# first one is supposed to raise "MemoryError" exception -# second, obviously, prints contents of /etc/passwd - -{% print 'x' * 64 * 1024**3 %} -{{ "".__class__.__mro__[2].__subclasses__()[40]("/etc/passwd").read() }} diff --git a/backend/reconcile/tests/resources/kun_lu.txt b/backend/reconcile/tests/resources/kun_lu.txt deleted file mode 100644 index 0bf6cdfe..00000000 --- a/backend/reconcile/tests/resources/kun_lu.txt +++ /dev/null @@ -1,6438 +0,0 @@ -The Project Gutenberg eBook of 呻吟語 - -This ebook is for the use of anyone anywhere in the United States and -most other parts of the world at no cost and with almost no restrictions -whatsoever. You may copy it, give it away or re-use it under the terms -of the Project Gutenberg License included with this ebook or online -at www.gutenberg.org. If you are not located in the United States, -you will have to check the laws of the country where you are located -before using this eBook. - -Title: 呻吟語 - -Author: Kun Lü - -Release date: May 22, 2008 [eBook #25558] - -Language: Chinese - -Credits: Produced by Chu-Yu Huang - - -*** START OF THE PROJECT GUTENBERG EBOOK 呻吟語 *** - - - - -Produced by Chu-Yu Huang - - - - - 序 - - -  呻吟,病聲也。呻吟語,病時語也。病中疾痛,惟病者知,難與他人道,亦惟病時 -覺,既瘉,旋復忘也。 -  予小子生而昏弱善病,病時呻吟,輒志所苦以自恨曰:「慎疾,無復病。」已而弗 -慎,又復病,輒又志之。蓋世病備經,不可勝志。一病數經,竟不能懲。語曰:「三折 -肱成良醫。」予乃九折臂矣。㽸痼年年,呻吟猶昨。嗟嗟!多病無完身,久病無完氣,予 -奄奄視息,而人也哉? -  三十年來,所志《呻吟語》,凡若干卷,攜以自藥。司農大夫劉景澤,攝心繕性, -平生無所呻吟,予甚愛之。頃共事鴈門,各談所苦,予出《呻吟語》眎景澤。景澤曰: -「吾亦有所呻吟而未之志也。吾人之病,大都相同。子既志之矣,盍以公人?蓋三益焉 -:醫病者,見子呻吟,起將死病;同病者,見子呻吟,醫各有病;未病者,見子呻吟, -謹未然病。是子以一身示懲於天下,而所壽者眾也。既子不瘉,能以瘉人,不既多乎? -」余矍然曰:「病語狂,又以其狂者惑人聞聽,可乎?」因擇其狂而未甚者存之。 -  嗚呼!使予視息苟存,當求三年艾,健此餘生,何敢以㽸痼自棄?景澤,景澤,其尚 -醫予也夫! - -  萬曆癸巳三月,抱獨居士寧陵呂坤書。 - - - 性命 - - -  正命者,完卻正理,全卻初氣,未嘗以我害之,雖桎梏而死,不害其為正命。若初 -氣所鑿喪,正理不完,即正寢告終,恐非正命也。 - -  德性以收斂沉著為第一,收斂沉著中,又以精明平易為第一。大段收斂沉著人怕含 -糊,怕深險。淺浮子雖光明洞達,非蓄德之器也。 - - -  或問:「人將死而見鬼神,真耶?幻耶?」曰:「人寤則為真見,夢則為妄見。魂 -游而不附體,故隨所之而見物,此外妄也。神與心離合而不安定,故隨所交而成景,此 -內妄也。故至人無夢,愚人無夢,無妄念也。人之將死,如夢然,魂飛揚而神亂於目, -氣浮散而邪客於心,故所見皆妄,非真有也。或有將死而見人拘繫者,尤妄也。異端之 -語,入人骨髓,將死而懼,故常若有見。若死必有召之者,則牛羊蚊蟻之死,果亦有召 -之者耶?大抵草木之生枯、土石之凝散、人與眾動之生始終有無,只是一理,更無他說 -。萬一有之,亦怪異也。」 - -  氣,無終盡之時;形,無不毀之理。 - -  真機、真味要涵蓄,休點破。其妙無窮,不可言喻。所以聖人無言。一犯口頰,窮 -年說不盡,又離披澆漓,無一些咀嚼處矣。 - -  性分不可使虧欠,故其取數也常多,曰窮理,曰盡性,曰達天,曰入神,曰致廣大 -、極高明。情慾不可使贏餘,故其取數也常少,曰謹言,曰慎行,曰約己,曰清心,曰 -節飲食、寡嗜慾。 - -  深沉厚重,是第一等資質;磊落豪雄,是第二等資質;聰明才辨,是第三等資質。 - -  六合原是個情世界,故萬物以之相苦樂,而至人聖人不與焉。 - -  凡人光明博大、渾厚含蓄,是天地之氣;溫煦和平,是陽春之氣;寬縱任物,是長 -夏之氣;嚴凝斂約、喜刑好殺,是秋之氣;沉藏固嗇, -是冬之氣;暴怒,是震雷之氣;狂肆,是疾風之氣;昏惑,是霾霧之氣;隱恨留連,是 -積陰之氣;從容溫潤,是和風甘雨之氣;聰明洞達,是青天朗月之氣。有所鍾者,必有 -所似。 - -  先天之氣,發洩處不過毫釐;後天之氣,擴充之必極分量。其實分量極處原是毫釐 -中有底,若毫釐中合下原無,便是一些增不去。萬物之形色才情,種種可驗也。 - -  蝸藏於殼,烈日經年而不枯,必有所以不枯者在也。此之謂以神用,先天造物命脈 -處。 - -  蘭以火而香,亦以火而滅;膏以火而明,亦以火而竭;炮以火而聲,亦以火而泄。 -陰者所以存也,陽者所以亡也,豈獨聲色、氣味然哉?世知鬱者之為足,是謂萬年之燭。 - -  火性發揚,水性流動,木性條暢,金性堅剛,土性重厚。其生物也亦然。 - -  一則見性,兩則生情。人未有偶而能靜者,物未有偶而無聲者。 - -  聲無形色,寄之於器;火無體質,寄之於薪;色無著落,寄之草木。故五行惟火無 -體,而用不窮。 - -  人之念頭與氣血同為消長,四十以前是個進心,識見未定而敢於有為;四十以後是 -個定心,識見既定而事有酌量;六十以後是個退心,見識雖真而精力不振。未必人人皆 -此,而此其大凡也。古者四十仕,六十、七十致仕,蓋審之矣。人亦有少年退縮不任事 -,厭厭若泉下人者;亦有衰年狂躁妄動喜事者,皆非常理。若乃以見事風生之少年為任 -事,以念頭灰冷之衰夫為老成,則誤矣。鄧禹沉毅,馬援矍鑠,古誠有之,豈多得哉! - -  命本在天,君子之命在我,小人之命亦在我。君子以義處命,不以其道得之不處, -命不足道也;小人以欲犯命,不可得而必欲得之,命不肯受也。但君子謂命在我,得天 -命之本然;小人謂命在我,幸氣數之或然。是以君子之心常泰,小人之心常勞。 - -  性者,理氣之總名,無不善之理,無皆善之氣。論性善者,純以理言也;論性惡與 -善惡混者,兼氣而言也。故經傳言性各各不同,惟孔子無病。 - -  氣、習,學者之二障也。仁者與義者相非,禮者與信者相左,皆氣質障也。高髻而 -笑低髽,長裾而譏短袂,皆習見障也。大道明,率天下氣質而歸之,即不能歸,不敢以 -所偏者病人矣;王制一,齊天下趨向而同之,即不能同,不敢以所狃者病人矣。哀哉! -茲誰任之? - -  父母全而生之,子全而歸之,髮膚還父母之初,無些毀傷,親之孝子也;天全而生 -之,人全而歸之,心性還天之初,無些缺欠,天之孝子也。 - -  虞廷不專言性善,曰「人心惟危,道心惟微」,或曰「人心非性」。曰:「非性可 -矣,亦是陰陽五行化生否?」六經不專言性善,曰「惟皇上帝,降衷下民,厥有恒性」 -。又曰「天生蒸民有欲,無主乃亂」。孔子不專言性善,曰「繼之者,善也;成之者, -性也。」又曰「性相近也」,「惟上智與下愚不移」。才說相近,便不是一個。相遠從 -相近起腳。子思不專言性善,曰「修道之謂教」。性皆善矣,道胡可修?孟子不專言性 -善,曰「聲色、臭味、安佚,性也」,或曰「這性是好性」。曰:「好性如何君子不謂 -?」又曰「動心忍性」。善性豈可忍乎?犬之性,牛之性,豈非性乎?犬、牛之性,亦 -仁、義、禮、智、信之性乎?細推之,犬之性猶犬之性,牛之性猶牛之性乎?周茂叔不 -專言性善,曰「五性想感而善惡分,萬事出矣」,又曰:「幾善惡。」程伯淳不專言性 -善,曰「惡亦不可不謂之性」。大抵言性善者,主義理而不言氣質,蓋自孟子之折諸家 -始。後來諸儒遂主此說,而不敢異同,是未觀於天地萬物之情也。義理固是天賦,氣質 -亦豈人為哉?無論眾人,即堯舜禹湯文武周孔,豈是一樣氣質哉?愚僭為之說曰:「義 -理之性,有善無惡;氣質之性,有善有惡。氣質亦天命於人而與生俱生者,不謂之性可 -乎?程子云:『論性不論氣不備,論氣不論性不明。』將性氣分作兩項,便不透徹。張 -子以善為天地之性,清濁純駁為氣質之性,似覺支離。其實,天地只是一個氣,理在氣 -之中,賦於萬物,方以性言。故性字從生從心,言有生之心也。設使沒有氣質,只是一 -個德性,人人都是生知聖人,千古聖賢千言萬語、教化刑名都是多了底,何所苦而如此 -乎?這都是降伏氣質,扶持德性。立案於此,俟千百世之後駁之。」 - -  性,一母而五子,五性者,一性之子也。情者,五性之子也。一性靜,靜者陰;五 -性動,動者陽。性本渾淪,至靜不動,故曰:「人生而靜,天之性也。」才說性,便已 -不是性矣。此一性之說也。 - -  宋儒有功於孟子,只是補出個氣質之性來,省多少口脗! - -  問:「禽獸草木亦有性否?」曰:「有。」再問:「其生亦天命否?」曰:「天以 -陰陽五行化生萬物,安得非天命?」 - -  或問:「孔子教人,性非所先。」曰:「聖人開口處都是性。」 - -  水無渣,著土便濁;火無氣,著木便煙。性無二,著氣質便雜。 - -  滿方寸渾成一個德性,無分毫私欲便是一心之仁;六尺渾成一個沖和,無分毫病痛 -便是一身之仁;滿六合渾成一個身軀,無分毫間隔便是合天下以成其仁。仁是全體,無 -毫髮欠缺;仁是純體,無纖芥瑕疪;仁是天成,無些子造作。眾人分一心為胡越,聖人 -會天下以成其身。愚嘗謂:「兩間無物我,萬古一呼吸。」 - - - - -存心 - - -  心要如天平,稱物時,物忙而衡不忙;物去時,即懸空在此。只恁靜虛中正,何等 -自在! - -  收放心休要如追放豚,既入苙了,便要使他從容閑暢,無拘迫懊憹之狀。若恨他難 -收,一向束縛在此,與放失同。何者?同歸於無得也。故再放便奔逸不可收拾。君子之 -心,如習鷹馴雉,搏擊飛騰,主人略不防閑;及上臂歸庭,卻恁忘機自得,略不驚畏。 - -  學者只事事留心,一毫不肯苟且,德業之進也,如流水矣。 - -  不動氣,事事好。 - -  心放不放,要在邪正上說,不在出入上說。且如高臥山林遊心廊廟,身處衰世夢想 -唐虞,游子思親,貞婦懷夫,這是個放心否?若不論邪正,只較出入,卻是禪定之學。 - -  或問:「放心如何收?」余曰:「只君此問,便是收了。這放收甚容易,才昏昏便 -出去,才惺惺便在此。」 - -  常使精神在心目間,便有主而不眩。於客感之交,只一昏昏,便是胡亂應酬。豈無 -偶合?終非心上經歷過,竟無長進,譬之夢食,豈能飽哉? - -  防欲如挽逆水之舟,才歇力便下流;力善如緣無枝之樹,才住腳便下墜。是以君子 -之心,無時而不敬畏也。 - -  一善念發,未說到擴充,且先執持住,此萬善之囮也。若隨來隨去,更不操存此心 -,如驛傳然,終身無主人住矣。 - -  千日集義,禁不得一刻不慊於心,是以君子瞬存息養,無一刻不在道義上。其防不 -義也,如千金之子之防盜,懼餒之故也。 - -  無屋漏工夫,做不得宇宙事業。 - -  君子口中無慣語,存心故也。故曰:「修辭立其誠。」不誠,何以修辭? - -  一念收斂,則萬善來同;一念放恣,則百邪乘釁。 - -  得罪於法,尚可逃避;得罪於理,更沒處存身。只我底心,便放不過我。是故君子 -畏理甚於畏法。 - -  或問:「雞鳴而起,若未接物,如何為善?」程子曰:「只主於敬,便是善。」愚 -謂:惟聖人未接物時,何思何慮?賢人以下,睡覺時,合下便動個念頭,或昨日已行事 -,或今日當行事,便來心上。只看這念頭如何,如一念向好處想,便是舜邊人;若一念 -向不好處想,便是跖邊人。若念中是善,而本意卻有所為,這又是舜中跖,漸來漸去, -還向跖邊去矣。此是務頭工夫。此時克己更覺容易,點檢更覺精明,所謂「去惡在纖微 -,持善在根本」也。 - -  目中有花,則視萬物皆妄見也;耳中有聲,則聽萬物皆妄聞也;心中有物,則處萬 -物皆妄意也。是故此心貴虛。 - -  忘是無心之病,助長是有心之病。心要從容自在,活潑於有無之間。 - -  靜之一字,十二時離不了,一刻才離,便亂了。門盡日開闔,樞常靜;妍媸盡日往 -來,鏡常靜;人盡日應酬,心常靜。惟靜也,故能張主得動,若逐動而去,應事定不分 -曉。便是睡時,此念不靜,作個夢兒也胡亂。 - - -  把意念沉潛得下,何理不可得?把志氣奮發得起,何事不可做?今之學者,將個浮 -躁心觀理,將個委靡心臨事,只模糊過了一生。 - - -  心平氣和,此四字非涵養不能做,工夫只在個定火。火定則百物兼照,萬事得理。 -水明而火昏,靜屬水,動屬火,故病人火動則躁擾狂越,及其蘇定,渾不能記。蘇定者 -,水澄清而火熄也。故人非火不生,非火不死;事非火不濟,非火不敗。惟君子善處火 -,故身安而德滋。 - -  當可怨可怒、可辯可訴、可喜可愕之際,其氣甚平,這是多大涵養。 - -  天地間真滋味,惟靜者能嘗得出;天地間真機括,惟靜者能看得透;天地間真情景 -,惟靜者能題得破。作熱鬧人,說孟浪語,豈無一得?皆偶合也。 - -  未有甘心快意而不殃身者。惟理義之悅我心,卻步步是安樂境。 - -  問:「慎獨如何解?」曰:「先要認住獨字,獨字就是意字。稠人廣坐、千軍萬馬 -中,都有個獨。只這意念發出來是大中至正底,這不勞慎就將這獨字做去,便是天德王 -道。這意念發出來,九分九釐是,只有一釐苟且為人之意,便要點檢克治,這便是慎獨 -了。」 - -  用三十年心力,除一個偽字不得。或曰:「君盡尚實矣。」余曰:「所謂偽者,豈 -必在言行間哉?實心為民,雜一念德我之心便是偽;實心為善,雜一念求知之心便是偽 -;道理上該做十分,只爭一毫未滿足便是偽;汲汲於向義,才有二三心便是偽;白晝所 -為皆善,而夢寐有非僻之干便是偽;心中有九分,外面做得恰象十分便是偽。此獨覺之 -偽也,余皆不能去,恐漸漬防閑,延惡於言行間耳。」 - -  自家好處掩藏幾分,這是涵蓄以養深;別人不好處要掩藏幾分,這是渾厚以養大。 - -  寧耐,是思事第一法;安詳,是處事第一法;謙退,是保身第一法;涵容,是處人 -第一法;置富貴、貧賤、死生、常變於度外,是養心第一法。 - -  胸中情景,要看得春不是繁華、夏不是發暢、秋不是寥落、冬不是枯槁,方為我境。 - -  大丈夫不怕人,只是怕理;不恃人,只是恃道。 - -  靜裡看物欲,如業鏡照妖。 - -  「躁心浮氣,淺衷狹量」,此八字,進德者之大忌也。去此八字,只用得一字,曰 -主靜。靜則凝重。靜中境自是寬闊。 - -  士君子要養心氣,心氣一衰,天下萬事分毫做不得。冉有只是個心氣不足。 - -  主靜之力,大於千牛,勇於十虎。 - -  君子洗得此心淨,則兩間不見一塵;充得此心盡,則兩間不見一礙;養得此心定, -則兩間不見一怖;持得此心堅,則兩間不見一難。 - -  人只是心不放肆,便無過差;只是心不怠忽,便無遺忘。 - -  胸中只擺脫一「戀」字,便十分爽淨,十分自在。人生最苦處,只是此心沾泥帶水 -,明是知得,不能斷割耳。 - -  盜,只是欺人。此心有一毫欺人、一事欺人、一語欺人,人雖不知,即未發覺之盜 -也。言如是而行欺之,是行者言之盜也;心如是而口欺之,是口者心之盜也;才發一個 -真實心,驟發一個偽妄心,是心者心之盜也。諺云:「瞞心昧己。」有味哉其言之矣。 -欺世盜名,其過大;瞞心昧己,其過深。 - -  此心果有不可昧之真知,不可強之定見,雖斷舌可也,決不可從人然諾。 - -  才要說睡,便睡不著;才說要忘,便忘不得。 - -  舉世都是我心,去了這我心,便是四通八達,六合內無一些界限。要去我心,須要 -時時省察:這念頭是為天地萬物?是為我? - -  目不容一塵,齒不容一芥,非我固有也。如何靈台內許多荊榛,卻自容得? - -  手有手之道,足有足之道,耳目鼻口有耳目鼻口之道。但此輩皆是奴婢,都聽天君 -使令。使之以正也,順從,使之以邪也,順從。渠自沒罪過,若有罪過,都是天君承當。 - -  心一鬆散,萬事不可收拾;心一疏忽,萬事不入耳目;心一執著,萬事不得自然。 - -  當尊嚴之地、大眾之前、震怖之景,而心動氣懾,只是涵養不定。 - -  久視則熟字不識,注視則靜物若動,乃知蓄疑者,亂真知;過思者,迷正應。 - -  常使天君為主、萬感為客,便好。只與他平交,已自褻其居尊之體。若跟他走去走 -來,被他愚弄綴哄,這是小兒童,這是真奴婢,有甚面目來靈台上坐、役使四肢百骸? -可羞可笑!示兒。 - -  不存心,看不出自家不是。只於動靜語默、接物應事時,件件想一想,便見渾身都 -是過失。須動合天則,然後為是。日用間,如何疏忽得一時?學者思之。 - -  人生在天地間,無日不動念,就有個動念底道理;無日不說話,就有個說話底道理 -;無日不處事,就有個處事底道理;無日不接人,就有個接人底道理;無日不理物,就 -有個理物底道理;以至怨怒笑歌、傷悲感歎、顧盼指示、咳唾涕洟、隱微委曲、造次顛 -沛、疾病危亡,莫不各有道理。只是時時體認,件件講求。細行小物尚求合則,彝倫大 -節豈可逾閑?故始自垂髫,終於屬纊,持一個自強不息之心,通乎晝夜,要之於純一不 -已之地,忘乎死生。此還本歸全之道,戴天履地之宜。不然,恣情縱意而各求遂其所欲 -,凡有知覺運動者皆然,無取於萬物之靈矣。或曰:「有要乎?」曰:「有。其要只在 -存心。」「心何以存?」曰:「只在主靜。只靜了,千酬萬應都在道理上,事事不錯。 -」 - -  迷人之迷,其覺也易;明人之迷,其覺也難。 - -  心相信,則跡者土苴也,何煩語言?相疑,則跡者媒孽也,益生猜貳。故有誓心不 -足自明,避嫌反成自誣者,相疑之故也。是故心一而跡萬,故君子治心不修跡。中孚, -治心之至也,豚魚且信,何疑之有? - -  君子畏天不畏人,畏名教不畏刑罰,畏不義不畏不利,畏徒生不畏捨生。 - -  「忍」「激」二字,是禍福關。 - -  殃咎之來,未有不始於快心者,故君子得意而憂,逢喜而懼。 - - -  一念孳孳,惟善是圖,曰正思;一念孳孳,惟欲是願,曰邪思;非分之福,期望太 -高,曰越思;先事徘徊,後事懊恨,曰縈思;遊心千里,岐慮百端,曰浮思;事無可疑 -,當斷不斷,曰惑思;事不涉己,為他人憂,曰狂思;無可奈何,當罷不罷,曰徒思; -日用職業,本分工夫,朝惟暮圖,期無曠廢,曰本思。此九思者,日用之間,不在此則 -在彼。善攝心者,其惟本思乎?身有定業,日有定務,暮則省白晝之所行,朝則計今日 -之所事,念茲在茲,不肯一事苟且,不肯一時放過,庶心有著落,不得他適,而德業日 -有長進矣。 - -  學者只多忻喜心,便不是凝道之器。 - -  小人亦有坦蕩蕩處,無忌憚是已;君子亦有常戚戚處,終身之憂是已。 - -  只脫盡輕薄心,便可達天德。漢唐以下儒者,脫盡此二字,不多人。 - -  斯道這個擔子,海內必有人負荷。有能概然自任者,願以綿弱筋骨助一肩之力,雖 -走僵死不恨。 - -  耳目之玩,偶當於心,得之則喜,失之則悲,此兒女子常態也。世間甚物與我相關 -,而以得喜、以失悲耶?聖人看得此身,亦不關悲喜,是吾道之一囊橐耳。愛囊橐之所 -受者,不以囊橐易所受,如之何以囊橐棄所受也?而況耳目之玩,又囊橐之外物乎? - -  寐是情生景,無情而景者,兆也;寤後景生情,無景而情者,妄也。 - -  人情有當然之願,有過分之欲。聖王者,足其當然之願而裁其過分之欲,非以相苦 -也。天地間欲願只有此數,此有餘而彼不足,聖王調劑而均釐之,裁其過分者以益其當 -然。夫是之謂至平,而人無淫情、無觖望。 - -  惡惡太嚴,便是一惡;樂善甚亟,便是一善。 - -  「投佳果於便溺,濯而獻之,食乎?」曰:「不食。」「不見而食之,病乎?」曰 -:「不病。」「隔山而指罵之,聞乎?」曰:「不聞。」「對面而指罵之,怒乎?」曰 -:「怒。」曰:「此見聞障也。夫能使見而食,聞而不怒,雖入黑海、蹈白刃,可也! -此煉心者之所當知也。」 - -  只有一毫麄疏處,便認理不真,所以說惟精,不然眾論淆之而必疑;只有一毫二三 -心,便守理不定,所以說惟一,不然利害臨之而必變。 - -  種豆,其苗必豆;種瓜,其苗必瓜,未有所存如是而所發不如是者。心本人欲而事 -欲天理,心本邪曲而言欲正直,其將能乎?是以君子慎其所存,所存是,種種皆是;所 -存非,種種皆非,未有分毫爽者。 - -  屬纊之時,般般都帶不得,惟是帶得此心。卻教壞了,是空身歸去矣,可為萬古一 -恨。 - -  吾輩所欠,只是涵養不純不定。故言則矢口所發,不當事,不循物,不宜人;事則 -恣意所行,或太過,或不及,或悖理。若涵養得定,如熟視正鵠而後開弓,矢矢中的; -細量分寸而後投針,處處中穴,此是真正體驗,實用工夫,總來只是個沉靜。沉靜了, -發出來,件件都是天則。 - -  定靜中境界,與六合一般大,裡面空空寂寂,無一個事物;才問他索時,般般足, -樣樣有。 - -  暮夜無知,此四字,百惡之總根也。人之罪莫大於欺,欺者,利其無知也。大奸大 -盜,皆自無知之心充之。天下大惡只有二種:欺無知、不畏有知。欺無知,還是有所忌 -憚心,此是誠偽關;不畏有知,是個無所忌憚心,此是死生關。猶知有畏,良心尚未死 -也。 - -  天地萬物之理,出於靜,入於靜;人心之理,發於靜,歸於靜。靜者,萬理之橐籥 -,萬化之樞紐也。動中發出來,與天則便不相似。故雖暴肆之人,平旦皆有良心,發於 -靜也;過後皆有悔心,歸於靜也。 - -  動時只見發揮不盡,那裡覺錯?故君子主靜而慎動。主靜,則動者靜之枝葉也;慎 -動,則動者靜之約束也。又何過焉? - -  童心最是作人一大病,只脫了童心,便是大人君子。或問之,曰:「凡炎熱念、驕 -矜念、華美念、欲速念、浮薄念、聲名念,皆童心也。」 - -  吾輩終日念頭離不了四個字,曰「得失毀譽」。其為善也,先動個得與譽底念頭; -其不敢為惡也,先動個失與毀底念頭。總是欲心偽心,與聖人天地懸隔。聖人發出善念 -,如饑者之必食,渴者之必飲。其必不為不善,如烈火之不入,深淵之不投,任其自然 -而已。賢人念頭只認個可否,理所當為,則自強不息;所不可為,則堅忍不行。然則得 -失毀譽之念可盡去乎?曰:「胡可去也!」天地間,惟中人最多,此四字者,聖賢籍以 -訓世,君子藉以檢身。曰「作善降之百祥,作不善降之百殃」,以得失訓世也。曰「疾 -沒世而名不稱」、曰「年四十而見惡」,以毀譽訓世也。此聖人待衰世之心也。彼中人 -者,不畏此以檢身,將何所不至哉?故堯舜能去此四字,無為而善,忘得失毀譽之心也 -。桀紂能去此四字,敢於為惡,不得失毀譽之恤也。 - - -  心要虛,無一點渣滓;心要實,無一毫欠缺。 - -  只一事不留心,便有一事不得其理;一物不留心,便有一物不得其所。 - -  只大公了,便是包涵天下氣象。 - -  士君子作人,事事時時只要個用心。一事不從心中出,便是亂舉動;一刻心不在腔 -子裡,便是空軀殼。 - -  古人也算一個人,我輩成底是甚麼人?若不愧不奮,便是無志。 - -  聖、狂之分,只在苟、不苟兩字。 - -  余甚愛萬籟無聲、蕭然一室之趣。或曰:「無乃太寂滅乎?」曰:「無邊風月自在 -。」 - -  無技癢心,是多大涵養!故程子見獵而癢。學者各有所癢,便當各就癢處搔之。 - -  欲,只是有進氣無退氣;理,只是有退氣無進氣。善學者,審於進退之間而已。 - -  聖人懸虛明以待天下之感,不先意以感天下之事。其感也,以我胸中道理順應之; -其無感也,此心空空洞洞,寂然曠然。譬之鑑,光明在此,物來則照之,物去則光明自 -在。彼事未來而意必,是持鑑覓物也。嘗謂鏡是物之聖人,鏡日照萬物而常明,無心而 -不勞故也。聖人日應萬事而不累,有心而不役故也。夫惟為物役而後累心,而後應有偏 -著。 - -  恕心養到極處,只看得世間人都無罪過。 - -  物有以慢藏而失,亦有以謹藏而失者;禮有以疏忽而誤,亦有以敬畏而誤者。故用 -心在有無之間。 - -  說不得真知明見,一些涵養不到,發出來便是本象,倉卒之際,自然掩護不得。 - -  一友人沉雅從容,若溫而不理者。隨身急用之物,座客失備者三人,此友取之袖中 -,皆足以應之。或難以數物,呼左右取之攜中,黎然在也。余歎服曰:「君不窮於用哉 -!」曰:「我無以用為也。此第二著,偶備其萬一耳。備之心,慎之心也,慎在備先。 -凡所以需吾備者,吾已先圖,無賴於備。故自有備以來,吾無萬一,故備常餘而不用。 -」或曰:「是無用備矣。」曰:「無萬一而猶備,此吾之所以為慎也。若恃備而不慎, -則備也者,長吾之怠者也,久之,必窮於所備之外;恃慎而不備,是慎也者,限吾之用 -者也,久之,必窮於所慎之外。故寧備而不用,不可用而無備。」余歎服曰:「此存心 -之至者也。《易》曰:『藉之用茅,又何咎焉?』其斯之謂與?」吾識之,以為疏忽者 -之戒。 - -  欲理會七尺,先理會方寸;欲理會六合,先理會一腔。 - -  靜者生門,躁者死戶。 - -  士君子一出口,無反悔之言;一動手,無更改之事。誠之於思,故也。 - -  只此一念公正了,我於天地鬼神通是一個,而鬼神之有邪氣者,且跧伏退避之不暇 -。庶民何私何怨,而忍枉其是非腹誹巷議者乎? - -  和氣平心發出來,如春風拂弱柳,細雨潤新苗,何等舒泰!何等感通!疾風迅雷, -暴雨酷霜,傷損必多。或曰:「不似無骨力乎?」余曰:「譬之玉,堅剛未嘗不堅剛, -溫潤未嘗不溫潤。」余嚴毅多,和平少,近悟得此。 - -  儉則約,約則百善俱興;侈則肆,肆則百惡俱縱。 - -  天下國家之存亡、身之生死,只系「敬」「怠」兩字。敬則慎,慎則百務脩舉;怠 -則苟,苟則萬事隳頹。自天子以至於庶人,莫不如此。此千古聖賢之所兢兢,而世人之 -所必由也。 - -  每日點檢,要見這念頭自德性上發出,自氣質上發出,自習識上發出,自物欲上發 -出。如此省察,久久自識得本來面目。初學最要知此。 - -  道義心胸發出來,自無暴戾氣象,怒也怒得有禮。若說聖人不怒,聖人只是六情? - -  過差遺忘,只是昏忽,昏忽,只是不敬。若小心慎密,自無過差遺忘之病。孔子曰 -:「敬事。」樊遲粗鄙,告之曰:「執事敬。」子張意廣,告之曰:「無小大,無敢慢 -。」今人只是懶散,過差遺忘,安得不多? - -  吾初念只怕天知,久久來不怕天知,又久久來只求天知。但未到那何必天知地步耳 -。 - -  氣盛便沒涵養。 - -  定靜安慮,聖人胸中無一刻不如此。或曰:「喜怒哀樂到面前,何如?」曰:「只 -恁喜怒哀樂,定靜安慮,胸次無分毫加損。」 - -  憂世者與忘世者談,忘世者笑;忘世者與憂世者談,憂世者悲。嗟夫!六合骨肉之 -淚,肯向一室胡越之人哭哉?彼且謂我為病狂,而又安能自知其喪心哉? - -  「得」之一字,最壞此心。不但鄙夫患得,年老戒得為不可。只明其道而計功,有 -事而正心,先事而動得心,先難而動獲心,便是雜霸雜夷。一念不極其純,萬善不造其 -極。此作聖者之大戒也。 - -  充一個公己公人心,便是胡越一家;任一個自私自利心,便中父子仇讎。天下興亡 -、國家治亂、萬姓死生,只爭這個些子。 - -  廁牏之中,可以迎賓客;牀第之間,可以交神明。必如此,而後謂之不苟。 - -  為人辨冤白謗,是第一天理。 - -  治心之學,莫妙於「瑟僩」二字。瑟訓嚴密,譬之重關天險,無隙可乘,此謂不疏 -,物欲自消其窺伺之心。僩訓武毅,譬之將軍按劍,見者股慄,此謂不弱,物欲自奪其 -猖獗之氣。而今吾輩靈台,四無牆戶,如露地錢財,有手皆取;又孱弱無能,如殺殘俘 -虜,落膽從人。物欲不須投間抵隙,都是他家產業;不須硬迫柔求,都是他家奴婢,更 -有那個關防?何人喘息?可哭可恨! - -  沉靜,非緘默之謂也。意淵涵而態閑正,此謂真沉靜。雖終日言語,或千軍萬馬中 -相攻擊,或稠人廣眾中應繁劇,不害其為沉靜,神定故也。一有飛揚動擾之意,雖端坐 -終日,寂無一語,而色貌自浮。或意雖不飛揚動擾,而昏昏欲睡,皆不得謂沉靜。真沉 -靜底自是惺憽,包一段全副精神在裡。 - -  明者料人之所避,而狡者避人之所料,以此相與,是賊本真而長奸偽也。是以君子 -寧犯人之疑,而不賊己之心。 - -  室中之鬥,市上之爭,彼所據各有一方也。一方之見皆是己非人,而濟之以不相下 -之氣,故寧死而不平。嗚呼!此猶愚人也。賢臣之爭政,賢士之爭理,亦然。此言語之 -所以日多,而後來者益莫知所決擇也。故為下愚人作法吏易,為士君子所折衷難。非斷 -之難,而服之難也。根本處,在不見心而任口,恥屈人而好勝,是室人市兒之見也。 - -  大利不換小義,況以小利壞大義乎?貪者可以戒矣。 - -  殺身者不是刀劍,不是寇讐,乃是自家心殺了自家。 - -  知識,帝則之賊也。惟忘知識以任帝則,此謂天真,此謂自然。一著念便乖違,愈 -著念愈乖違。乍見之心歇息一刻,別是一個光景。 - -  為惡惟恐人知,為善惟恐人不知,這是一副甚心腸?安得長進? - - -  或問:「虛靈二字,如何分別?」曰:「惟虛故靈。頑金無聲,鑄為鐘磬則有聲; -鐘磬有聲,實之以物則無聲。聖心無所不有,而一無所有,故『感而遂通天下之故』。 -」 - -  渾身五臟六腑、百脈千絡、耳目口鼻、四肢百骸、毛髮甲爪,以至衣裳冠履,都無 -分毫罪過,都與堯舜一般,只是一點方寸之心,千過萬罪,禽獸不如。千古聖賢只是治 -心,更不說別個。學者只是知得這個可恨,便有許大見識。 - -  人心是個猖狂自在之物、隕身敗家之賊,如何縱容得他? - -  良知何處來?生於良心;良心何處來?生於天命。 - - - -  心要實,又要虛。無物之謂虛,無妄之謂實;惟虛故實,惟實故虛。心要小,又要 -大。大其心,能體天下之物;小其心,不僨天下之事。 - -  要補必須補個完,要拆必須拆個淨。 - -  學術以不愧於心、無惡於志為第一。也要點檢這心志,是天理?是人欲?便是天理 -,也要點檢是邊見?是天則? - -  堯眉舜目、文王之身、仲尼之步,而盜跖其心,君子不貴也。有數聖賢之心,何妨 -貌似盜跖? - -  學者欲在自家心上做工夫,只在人心做工夫。 - -  此心要常適,雖是憂勤惕勵中、困窮抑鬱際,也要有這般胸次。 - -  不怕來濃艷,只怕去沾戀。 - -  原不萌芽,說甚生機。 - -  平居時,有心訒言還容易,何也?有意收斂故耳。只是當喜怒愛憎時,發當其可、 -無一厭人語,才見涵養。 - -  口有慣言,身有誤動,皆不存心之故也。故君子未事前定,當事凝一。識所不逮, -力所不能,雖過無愧心矣。 - -  世之人何嘗不用心?都只將此心錯用了。故學者要知所用心,用於正而不用於邪, -用於要而不用於雜,用於大而不用於小。 - -  予嘗怒一卒,欲重治之。召之,久不至,減予怒之半。又久而後至,詬之而止。因 -自笑曰:「是怒也,始發而中節邪?中減而中節邪?終止而中節邪?」惟聖人之怒,初 -發時便恰好,終始只一個念頭不變。 - -  世間好底分數休佔多了,我這裡消受幾何,其餘分數任世間人佔去。 - -  京師僦宅,多擇吉數。有喪者,人多棄之曰:「能禍人。」予曰:「是人為室禍, -非室能禍人也。人之死生,受於有生之初,豈室所能移?室不幸而遭當死之人,遂為人 -所棄耳。惟君子能自信而付死生於天則,不為往事所感矣。」 - -  不見可欲時,人人都是君子;一見可欲,不是滑了腳跟,便是擺動念頭。老子曰: -「不見可欲,使心不亂。」此是閉目塞耳之學。一入耳目來,便了不得。今欲與諸君在 -可欲上做工夫,淫聲美色滿前,但如鑒照物,見在妍媸,不侵鏡光;過去妍媸,不留鏡 -裡,何嫌於坐懷?何事於閉門?推之可怖可驚、可怒可惑、可憂可恨之事,無不皆然。 -到此才是工夫,才見手段。把持則為賢者,兩忘則為聖人。予嘗有詩云:「百尺竿頭著 -腳,千層浪裡翻身。個中如履平地,此是誰何道人。」 - - -  一里人事專利己,屢為訓說不從。後每每作善事,好施貧救難,予喜之,稱曰:「 -君近日作事,每每在天理上留心,何所感悟而然?」曰:「近日讀司馬溫公語,有云: -『不如積陰德於冥冥之中,以為子孫長久之計。』」予笑曰:「君依舊是利心,子孫安 -得受福?」 - -  小人終日苦心,無甚受用處。即欲趨利,又欲貪名;即欲掩惡,又欲詐善。虛文浮 -禮,惟恐其疏略;消沮閉藏,惟恐其敗露。又患得患失,只是求富求貴;畏首畏尾,只 -是怕事怕人。要之溫飽之外,也只與人一般,何苦自令天君無一息寧泰處? - -  滿面目都是富貴,此是市井小兒,不堪入有道門墻,徒令人嘔吐而為之羞耳。若見 -得大時,舜禹有天下而不與。 - -  讀書人只是個氣高,欲人尊己;志卑,欲人利己,便是至愚極陋。只看四書六經千 -言萬語教人是如此不是?士之所以可尊可貴者,以有道也。這般見識,有什麼可尊貴處 -?小子戒之。 - -  第一受用,胸中乾淨;第二受用,外來不動;第三受用,合家沒病;第四受用,與 -物無競。 - -  欣喜歡愛處,便藏煩惱機關,乃知雅淡者,百祥之本;怠惰放肆時,都是私欲世界 -,始信懶散者,萬惡之宗。 - -  求道學真傳,且高閣百氏諸儒,先看孔孟以前胸次;問治平要旨,只遠宗三皇五帝 -,淨洗漢唐而下心腸。 - -  看得真幻景,即身不吾有何傷?況把世情嬰肺腑;信得過此心,雖天莫我知奚病? -那教流語惱胸腸。 - -  善根中才發萌蘗,即著意栽培,須教千枝萬葉;惡源處略有涓流,便極力壅塞,莫 -令暗長潛滋。 - -  處世莫驚毀譽,只我是,無我非,任人短長;立身休問吉凶,但為善,不為惡,憑 -天禍福。 - -  念念可與天知,盡其在我;事事不執己見,樂取諸人。 - -  淺狹一心,到處便招尤悔;因循兩字,從來誤盡英雄。 - -  齋戒神明其德,洗心退藏於密。 - -  常將半夜縈千歲,只恐一朝便百年。 - -  試心石上即平地,沒足池中有隱潭。 - -  心無一事累,物有十分春。 - -  神明七尺體,天地一腔心。 - -  終有歸來日,不知到幾時。 - -  吾心原止水,世態任浮雲。 - - -倫理 - - -  宇宙內大情種,男女居其第一。聖王不欲裁割而矯拂之,亦不能裁割矯拂也。故通 -之以不可已之情,約之以不可犯之禮,繩之以必不赦之法,使縱之而相安相久也。聖人 -亦不若是之亟也,故五倫中父子、君臣、兄弟、朋友,篤了又篤,厚了又厚,惟恐情意 -之薄。惟男女一倫,是聖人苦心處,故有別先自夫婦始。本與之以無別也,而又教之以 -有別,況有別者而肯使之混乎?聖人之用意深矣!是死生之衢而大亂之首也,不可以不 -慎也。 - -  親母之愛子也,無心於用愛,亦不知其為用愛,若渴飲饑食然,何嘗勉強?子之得 -愛於親母也,若謂應得,習於自然,如夏葛冬裘然,何嘗歸功?至於繼母之慈,則有德 -色,有矜語矣。前子之得慈於繼母,則有感心,有頌聲矣。 - -  一家之中,要看得尊長尊,則家治。若看得尊長不尊,如何齊他?得其要在尊長自 -脩。 - -  人子之事親也,事心為上,事身次之;最下,事身而不恤其心;又其下,事之以文 -而不恤其身。 - -  孝子之事親也,禮卑伏如下僕,情柔婉如小兒。 - -  進食於親,侑而不勸;進言於親,論而不諫;進侍於親,和而不莊。親有疾,憂而 -不悲;身有疾,形而不聲。 - -  侍疾,憂而不食,不如努力而加餐。使此身不能侍疾,不孝之大者也;居喪,羸而 -廢禮,不如節哀而慎終,此身不能襄事,不孝之大者也。 - -  朝廷之上,紀綱定而臣民可守,是曰朝常;公卿大夫、百司庶官,各有定法,可使 -持循,是曰官常;一門之內,父子兄弟、長幼尊卑,各有條理,不變不亂,是曰家常; -飲食起居、動靜語默,擇其中正者守而勿失,是曰身常。得其常則治,失其常則亂,未 -有苟且冥行而不取敗者也。 - -  雨澤過潤,萬物之災也;恩寵過禮,臣妾之災也;情愛過義,子孫之災也。 - -  人心喜則志意暢達,飲食多進而不傷,血氣沖和而不鬱,自然無病而體充身健,安 -得不壽?故孝子之於親也,終日乾乾,惟恐有一毫不快事到父母心頭。自家既不惹起, -外觸又極防閒,無論貧富貴賤、常變順逆,只是以悅親為主。蓋悅之一字,乃事親第一 -傳心口訣也。即不幸而親有過,亦須在悅字上用工夫。幾諫積誠,耐煩留意,委曲方略 -,自有回天妙用。若直諍以甚其過,暴棄以增其怒,不悅莫大焉。故曰:「不順乎親, -不可以為子。」 - -  郊社,報天地生成之大德也,然災沴有禳,順成有祈,君為私田則仁,民為公田則 -忠,不嫌於求福,不嫌於免禍。子孫之祭先祖,以追養繼孝也,自我祖父母以有此身也 -,曰:「賴先人之澤,以享其餘慶也。」曰:「吾朝夕奉養承歡,而一旦不復獻杯棬, -心悲思而無寄,故祭薦以伸吾情也。」曰:「吾貧賤不足以供菽水,今鼎食而親不逮, -心悲思而莫及,故祭薦以志吾悔也。」豈為其遊魂虛位能福我而求之哉?求福已非君子 -之心,而以一飯之設,數拜之勤,求福於先人,仁孝誠敬之心果如是乎?不謀利,不責 -報,不望其感激,雖在他人猶然,而況我先人乎?《詩》之祭必言福,而《楚茨》諸詩 -為尤甚,豈可為訓耶?吾獨有取於《采蘩》、《采蘋》二詩,盡物盡志,以達吾子孫之 -誠敬而已,他不及也。明乎此道,則天下萬事萬物皆盡我所當為,禍福利害皆聽其自至 -,人事脩而外慕之心息,向道專而作輟之念忘矣。何者?明於性分而無所冀悻也。 - -  友道極關係,故與君父並列而為五。人生德業成就,少朋友不得。君以法行,治我 -者也。父以恩行,不責善者也。兄弟怡怡,不欲以切偲傷愛。婦人主內事,不得相追隨 -。規過,子雖敢爭,終有可避之嫌。至於對嚴師,則矜持收斂而過無可見。在家庭,則 -狎昵親習而正言不入。惟夫朋友者,朝夕相與,既不若師之進見有時,情禮無嫌,又不 -若父子兄弟之言語有忌。一德虧,則友責之;一業廢,則友責之。美則相與獎勸,非則 -相與匡救,日更月變,互感交摩,駸駸然不覺其勞且難,而入於君子之域矣。是朋友者 -,四倫之所賴也。嗟夫!斯道之亡久矣。言語嬉媟,樽俎嫗煦,無論事之善惡,以順我 -者為厚交;無論人之奸賢,以敬我者為君子。躡足附耳,自謂知心;接膝拍肩,濫許刎 -頸。大家同陷於小人而不知,可哀也已!是故物相反者相成,見相左者相益。孔子取友 -,曰「直」、「諒」、「多聞」,此三友者,皆與我不相附會者也,故曰益。是故,得 -三友難,能為人三友更難。天地間,不論天南地北、縉紳草莽,得一好友,道同志合, -亦人生一大快也。 - -  長者有議論,唯唯而聽,無相直也;有諮詢,謇謇而對,無遽盡也。此卑幼之道也。 - -  陽稱其善以悅彼之心,陰養其惡以快己之意,此友道之大戮也。青天白日之下,有 -此魑魅魍魎之俗,可哀也已! - -  古稱「君門遠於萬里」,謂情隔也。豈惟君門?父子殊心,一堂遠於萬里;兄弟離 -情,一門遠於萬里;夫妻反目,一榻遠於萬里。苟情聯志通,則萬里之外,猶同堂共門 -而比肩一榻也。以此推之,同時不相知,而神交於千百世之上下亦然。是知離合在心期 -,不專在躬逢。躬逢而心期,則天下至遇也:君臣之堯、舜,父子之文、周,師弟之孔 -、顏。 - -  「隔」之一字,人情之大患。故君臣、父子、夫婦、朋友、上下之交,務去隔,此 -字不去而不怨叛者,未之有也。 - -  仁者之家:父子愉愉如也,夫婦雝雝如也,兄弟怡怡如也,僮僕訢訢如也,一家之 -氣象融融如也。義者之家:父子凜凜如也,夫婦嗃嗃如也,兄弟翼翼如也,僮僕肅肅如 -也,一家之氣象慄慄如也。仁者以恩勝,其流也知和而和;義者以嚴勝,其流也疏而寡 -恩。故聖人之居家也,仁以主之,義以輔之,洽其太和之情,但不潰其防,斯已矣。其 -井井然嚴城深塹,則男女之辨也!雖聖人不敢與家人相忘。 - -  父在居母喪,母在居父喪,以從生者之命為重。故孝子不以死者憂生者,不以小節 -傷大體,不泥經而廢權,不徇名而害實,不全我而傷親。所貴乎孝子者,心親之心而已。 - -  天下不可一日無君,故夷、齊非湯、武,明臣道也。此天下之大妨也!不然,則亂 -臣賊子接踵矣,而難為君。天下不可一日無民,故孔、孟是湯、武,明君道也。此天下 -之大懼也!不然,則暴君亂主接踵矣,而難為民。 - -  爵祿恩寵,聖人未嘗不以為榮,聖人非以此為加損也。朝廷重之以示勸,而我輕之 -以示高,是與君忤也,是窮君鼓舞天下之權也。故聖人雖不以爵祿恩寵為榮,而未嘗不 -榮之,以重帝王之權,以示天下帝王之權之可重,此臣道也。 - -  人子和氣、愉色、婉容,發得深時,養得定時,任父母冷面寒鐵,雷霆震怒,只是 -這一腔溫意、一面春風,則自無不回之天,自無屢變之天,讒譖何由入?嫌隙何由作? -其次莫如敬慎,夔夔齋栗,敬慎之至也,故瞽瞍亦允若。溫和示人以可愛,消融父母之 -惡怒;敬慎示人以可矜,激發父母之悲憐。所謂積誠意以感動之者,養和致敬之謂也。 -蓋格親之功,惟和為妙、為深、為速、為難,非至性純孝者不能。敬慎猶可勉強耳。而 -今人子以涼薄之色、惰慢之身、驕蹇之性,及犯父母之怒,既不肯挽回,又倨傲以甚之 -,此其人在孝弟之外,故不足論。即有平日溫愉之子,當父母不悅而亦慍見,或生疑而 -遷怒者;或無意遷怒而不避嫌者;或不善避嫌愈避而愈冒嫌者,積隙成釁,遂致不祥。 -豈父母之不慈?此孤臣孽子之法戒,堅志熟仁之妙道也。 - - -  孝子之事親也,上焉者先意,其次承志,其次共命。共命,則親有未言之志,不得 -承也;承志,則親有未萌之意,不得將也;至於先意,而悅親之道至矣。或曰:「安得 -許多心思能推至此乎?」曰:「事親者,以悅親為事者也。以悅親為事,則孳孳皇皇無 -以尚之者,只是這個念頭,親有多少意志,終日體認不得?」 - -  或問:「共事一人,未有不妒者,何也?」曰:「人之才能、性行、容貌、辭色, -種種不同,所事者必悅其能事我者,惡其不能事我者。能事者見悅,則不能事者必疏。 -是我之見疏,彼之能事成之也,焉得不妒?既妒,安得不相傾?相傾,安得不受禍?故 -見疏者妒,妒其形己也;見悅者亦妒,妒其妒己也。」「然則奈何?」曰:「居寵,則 -思分而推之以均眾;居尊,則思和而下之以相忘,人何妒之有?緣分以安心,緣遇以安 -命,反己而不尤人,何妒人之有?此入宮入朝者之所當知也。」 - -  孝子侍親,不可有沉靜態,不可有莊肅態,不可有枯淡態,不可有豪雄態,不可有 -勞倦態,不可有病疾態,不可有愁苦態,不可有怨怒態。 - -  子弟生富貴家,十九多驕惰淫泆,大不長進。古人謂之豢養,言甘食美服養此血肉 -之軀,與犬豕等。此輩闒茸,士君子見之為羞,而彼方且志得意滿,以此誇人。父兄之 -孽,莫大乎是! - - -  男女遠別,雖父女、母子、兄妹、姊弟,亦有別嫌明微之禮,故男女八歲不同食。 -子婦事舅姑,禮也,本不遠別,而世俗最嚴翁婦之禮,影響間,即疾趨而藏匿之;其次 -夫兄弟婦相避。此外,一無所避,已亂綱常。乃至叔嫂、姊夫、妻妹、妻弟之妻互相嘲 -謔以為常,不幾於夷風乎?不知,古者遠別,止於授受不親,非避匿之謂。而男女所包 -甚廣,自妻妾外,皆當遠授受之嫌。愛禮者,不可不明辨也! - -  子、婦事人者也,未為父兄以前,莫令奴婢奉事,長其驕惰之情。當日使勤勞,常 -令卑屈,此終身之福。不然,是殺之也。昏愚父母、驕奢子弟,不可不知。 - -  問安,問侍者不問病者,問病者,非所以安之也。 - -  喪服之制,以緣人情,亦以立世教。故有引而致之者,有推而遠之者,要不出恩、 -義兩字,而不可曉亦多。達觀會通之君子,當制作之權,必有一番見識。泥古,非達觀 -也。 - -  親沒而遺物在眼,與其不忍見而毀之也,不若不忍忘而存之。 - -  示兒云:「門戶高一尺,氣燄低一丈。華山只讓天,不怕沒人上。」 - -  慎言之地,惟家庭為要;應慎言之人,惟妻子、僕隸為要。此理亂之原而禍福之本 -也。人往往忽之,悲夫! - -  門戶可以托父兄,而喪德辱名非父兄所能庇;生育可以由父母,而求疾蹈險非父母 -所得由。為人子弟者,不可不知。 - -  繼母之虐,嫡妻之妒,古今以為恨者也;而前子不孝,丈夫不端,則捨然不問焉。 -世情之偏也,久矣!懷非母之跡而因似生嫌,借恃父之名而無端造謗,怨讟忤逆,父亦 -被誣者,世豈無耶?恣淫狎之性而恩重綠絲,挾城社之威而侮及黃裡,《谷風》、《栢 -舟》,妻亦失所者,世豈無耶?惟子孝夫端,然後繼母嫡妻無辭於姻族矣!居官不可不 -知。 - - -  齊以刀切物,使參差者就於一致也。家人恩勝之地,情多而義少,私易而公難,若 -人人遂其欲,勢將無極。故古人以父母為嚴君,而家法要威如,蓋對症之治也。 - -  閨門之中少了個禮字,便自天翻地覆。百禍千殃,身亡家破,皆從此起。 - -  家長,一家之君也。上焉者使人歡愛而敬重之,次則使人有所嚴憚,故曰嚴君。下 -則使人慢,下則使人陵,最下則使人恨。使人慢,未有不亂者;使人陵,未有不敗者; -使人恨,未有不亡者。嗚呼!齊家豈小故哉?今之人皆以治生為急,而齊家之道不講久 -矣! - -  兒女輩,常著他拳拳曲曲,緊緊恰恰,動必有畏,言必有驚,到自專時,尚不可知 -。若使之快意適情,是殺之也。此愚父母之所當知也。 - -  責人到閉口捲舌、面赤背汗時,猶刺刺不已,豈不快心?然淺隘刻薄甚矣!故君子 -攻人,不盡其過,須含蓄以餘人之愧懼,令其自新,方有趣味,是謂以善養人。 - -  曲木惡繩,頑石惡攻,責善之言,不可不慎也。 - -  恩禮出於人情之自然,不可強致。然禮係體面,猶可責人;恩出於根心,反以責而 -失之矣。故恩薄可結之使厚,恩離可結之使固,一相責望,為怨滋深。古父子、兄弟、 -夫婦之間,使骨肉為寇讐,皆坐責之一字耳。 - -  宋儒云:「宗法明而家道正。」豈惟家道?將天下之治亂,恒必由之。宇宙內,無 -有一物不相貫屬、不相統攝者。人以一身統四肢,一肢統五指。木以株統榦,以榦統枝 -,以枝統葉。百穀以莖統穗,以穗統,以統粒。蓋同根一脈,聯屬成體。此操一舉萬之 -術而治天下之要道也。天子統六卿,六卿統九牧,九牧統郡邑,郡邑統鄉正,鄉正統宗 -子。事則以次責成,恩則以次流布,教則以次傳宣,法則以次繩督,夫然後上不勞下不 -亂而政易行。自宗法廢而人各為身,家各為政,彼此如飄絮飛沙,不相維繫,是以上勞 -而無要領可持,下散而無脈胳相貫,奸盜易生而難知,教化易格而難達。故宗法立而百 -善興,宗法廢而萬事弛。或曰:「宗子而賤、而弱、而幼、而不肖,何以統宗?」曰: -「古之宗法也,如封建,世世以嫡長。嫡長不得其人,則一宗受其敝,且豪強得以䐁鼠視 -宗子,而魚肉孤弱。其誰制之?蓋有宗子又當立家長,宗子以世世長子孫為之;家長以 -闔族之有德望而眾所推服能佐宗子者為之,胥重其權而互救其失。此二者,宗人一委聽 -焉,則有司有所責成,而紀法易於修舉矣。」 - -  責善之道,不使其有我所無,不使其無我所有,此古人之所以貴友也。 - -  「母氏聖善,我無令人」,孝子不可不知。「臣罪當誅兮,天王聖明」,忠臣不可 -不知。 - -  士大夫以上,有祠堂、有正寢、有客位。祠堂,有齋房、神庫,四世之祖考居焉, -先世之遺物藏焉,子孫立拜之位在焉,犧牲、鼎俎、盥尊之器物陳焉,堂上堂下之樂列 -焉,主人之周旋升降由焉。正寢,吉禮則生忌之考妣遷焉,凶禮則屍柩停焉,柩前之食 -案、香几、衣冠設焉,朝夕哭奠之位容焉,柩旁牀帳諸器之陳設、五服之喪次,男女之 -哭位分焉,堂外弔奠之客、祭器之羅列在焉。客位,則將葬之遷柩宿焉,冠禮之曲折、 -男女之醮位、賓客之宴饗行焉。此三所者,皆有兩階,皆有位次。故居室寧陋,而四禮 -之所斷乎其不可陋。近見名公,有以旋馬容膝、繩樞甕牖為清節高品者,余甚慕之,而 -愛禮一念甚於愛名。故力可勉為,不嫌弘裕,敢為大夫以上者告焉。 - -  守禮不足愧,抗於禮乃可愧也。禮當下則下,何愧之有? - - -  家人之害莫大於卑幼各恣其無厭之情而上之人阿其意而不之禁,猶莫大於婢子造言 -而婦人悅之,婦人附會而丈夫信之。禁此二害而家不和睦者鮮矣。 - -  只拿定一個是字做,便是「建諸天地而不悖,質諸鬼神而無疑」底道理,更問甚占 -卜,信甚星命!或曰:「趨吉避凶,保身之道。」曰:「君父在難,正臣子死忠死孝之 -時,而趨吉避凶可乎?」或曰:「智者明義理、識時勢,君無乃專明於義理乎?」曰: -「有可奈何時,正須審時因勢,時勢亦求之識見中,豈於讖緯陰陽家求之邪?」或曰: -「氣數自然,亦強作不成。」曰:「君子所安者義命,故以氣數從義理,不以義理從氣 -數。富貴利達則付之天,進退行藏則決之己。」或曰:「到無奈何時何如?」曰:「這 -也看道理,病在膏肓,望之而走,扁鵲之道當如是也。若屬纊頃刻,萬無一生,偶得良 -方,猶然忙走灌藥,孝子慈孫之道當如是也。」 - -  謹言不但外面,雖家庭間,沒個該說的話;不但大賓,雖親厚友,沒個該任口底話。 - - - - - - -談道 - - -  大道有一條正路,進道有一定等級。聖人教人只示以一定之成法,在人自理會;理 -會得一步,再說與一步,其第一步不理會到十分,也不說與第二步。非是苦人,等級原 -是如此。第一步差一寸,也到第二步不得。孔子於賜,才說與他「一貫」,又先難他「 -多學而識」一語。至於仁者之事,又說:「賜也,非爾所及。」今人開口便講學脈,便 -說本體,以此接引後學,何似癡人前說夢?孔門無此教法。 - -  有處常之五常,有處變之五常。處常之五常是經,人所共知;處變之五常是權,非 -識道者不能知也。「不擒二毛」不以仁稱,而血流漂杵不害其為仁;「二子乘舟」不以 -義稱,而管、霍被戮不害其為義。由此推之,不可勝數也。嗟夫!世無有識者,每泥於 -常而不通其變;世無識有識者,每責其經而不諒其權。此兩人皆道之賊也,事之所以難 -濟也。噫!非精義擇中之君子,其誰能用之?其誰能識之? - -  談道者雖極精切,須向苦心人說,可使手舞足蹈,可使大叫垂泣。何者?以求通未 -得之心,聞了然透徹之語,如饑得珍饈,如旱得霖雨。相悅以解,妙不容言。其不然者 -,如麻木之肌,針灸終日尚不能覺,而以爪搔之,安知痛癢哉?吾竊為言者惜也。故大 -道獨契,至理不言,非聖賢之忍於棄人,徒嘵嘵無益耳。是以聖人待問而後言,猶因人 -而就事。 - -  廟堂之樂,淡之至也,淡則無欲,無欲之道與神明通;素之至也,素則無文,無文 -之妙與本始通。 - -  真器不修,修者偽物也;真情不飾,飾者偽交也。家人父子之間不讓而登堂,非簡 -也;不侑而飽食,非饕也,所謂真也。惟待讓而入,而後有讓亦不入者矣;惟待侑而飽 -,而後有侑亦不飽者矣,是兩修文也。廢文不可為禮,文至掩真,禮之賊也,君子不尚 -焉。 - -  百姓得所,是人君太平;君民安業,是人臣太平;五穀豐登,是百姓太平;大小和 -順,是一家太平;父母無疾,是人子太平;胸中無累,是一腔太平。 - -  至道之妙,不可意思,如何可言?可以言,皆道之淺也。玄之又玄,猶龍公亦說不 -破,蓋公亦囿於玄玄之中耳。要說,說個甚然?卻只在匹夫匹婦共知共行之中,外了這 -個,便是虛無。 - -  除了個中字,更定道統不得。傍流之至聖,不如正路之賢人,故道統寧中絕,不以 -傍流繼嗣。何者?氣脈不同也。予嘗曰:「寧為道統家奴婢,不為傍流家宗子。」 - -  或問:「聖人有可克之己否?」曰:「惟堯、舜、文王、周、孔無己可克,其餘聖 -人都有。己任是伊尹底,己和是柳下惠底,己清是伯夷底,己志向偏於那一邊便是己。 -己者,我也,不能忘我而任意見也,狃於氣質之偏而離中也。這己便是人欲,勝不得這 -己,都不成個剛者。 - -  自然者,發之不可遏,禁之不能止,才說是當然,便沒氣力。然反之之聖,都在當 -然上做工夫,所以說勉然。勉然做到底,知之成功,雖一分數境界,到那難題試驗處, -終是微有不同,此難以形跡語也。 - -  堯、舜、周、孔之道,只是傍人情、依物理,拈出個天然自有之中行將去,不驚人 -,不苦人,所以難及。後來人勝他不得,卻尋出甚高難行之事,玄冥隱僻之言,怪異新 -奇、偏曲幻妄以求勝,不知聖人妙處只是個庸常。看《六經》、《四書》語言何等平易 -,不害其為聖人之筆,亦未嘗有不明不備之道。嗟夫!賢智者過之,佛、老、楊、墨、 -莊、列、申、韓是已。彼其意見,才是聖人中萬分之一,而漫衍閎肆以至偏重而賊道, -後學無識,遂至棄菽粟而餐玉屑、厭布帛而慕火浣,無補饑寒,反生奇病。悲夫! - -  「中」之一字,是無天於上,無地於下,無東西南北於四方。此是南面獨尊道中底 -天子,仁義禮智信都是東西侍立,百行萬善都是北面受成者也。不意宇宙間有此一妙字 -,有了這一個,別個都可勾銷,五常、百行、萬善但少了這個,都是一家貨,更成甚麼 -道理? - -  愚不肖者不能任道,亦不能賊道,賊道全是賢智。後世無識之人不察道之本然面目 -,示天下以大中至正之矩,而但以賢智者為標的。世間有了賢智,便看底中道尋常,無 -以過人,不起名譽,遂薄中道而不為。道之壞也,不獨賢智者之罪,而惟崇賢智,其罪 -亦不小矣。《中庸》為賢智而作也,中足矣,又下個庸字,旨深哉!此難與曲局之士道。 - - -  道者,天下古今共公之理,人人都有分底。道不自私,聖人不私道,而儒者每私之 -曰「聖人之道」,言必循經,事必稽古,曰「衛道」。嗟夫!此千古之大防也,誰敢決 -之?然道無津涯,非聖人之言所能限;事有時勢,非聖人之制所能盡。後世苟有明者出 -,發聖人所未發而默契聖人欲言之心,為聖人所未為而吻合聖人必為之事,此固聖人之 -深幸而拘儒之所大駭也。嗚呼!此可與通者道,漢唐以來鮮若人矣。 - -  《易》道,渾身都是,滿眼都是,盈六合都是。三百八四十爻,聖人特拈起三百八 -十四事來做題目,使千聖作《易》,人人另有三百八十四說,都外不了那陰陽道理。後 -之學者求易於《易》,穿鑿附會以求通,不知易是個活底,學者看做死底;易是個無方 -體底,學者看做有定象底。故論簡要,乾坤二卦已多了;論窮盡,雖萬卷書說不盡《易 -》的道理,何止三百八十四爻? - -  「中」之一字,不但道理當然,雖氣數離了中,亦成不得寒暑;災祥失中,則萬物 -殃;飲食起居失中,則一身病。故四時各順其序,五臟各得其職,此之謂中。差分毫便 -有分毫驗應,是以聖人執中以立天地萬物之極。 - -  學者只看得世上萬事萬物種種是道,此心才覺暢然。 - -  在舉世塵俗中,另識一種意味,又不輕與鮮能知味者嘗,才是真趣。守此便是至寶。 - -  五色勝則相掩,然必厚益之,猶不能渾然無跡,惟黑一染不可辨矣。故黑者,萬事 -之府也,斂藏之道也。帝王之道黑,故能容保無疆;聖人之心黑,故能容會萬理。蓋含 -英采、韜精明、養元氣、蓄天機,皆黑之道也,故曰「惟玄催默」。玄,黑色也;默, -黑象也。《書》稱舜曰「玄德升聞」,《老子》曰「知其白,守其黑」,得黑之精者也 -。故外著而不可掩,皆道之淺者也。雖然,儒道內黑而外白,黑為體,白為用;老氏內 -白而外黑,白安身,黑善世。 - -  道在天地間,不限於取數之多,心力勤者得多,心力衰者得少,昏弱者一無所得。 -假使天下皆聖人,道亦足以供其求;苟皆為盜跖,道之本體自在也,分毫無損。畢竟是 -世有聖人,道斯有主;道附聖人,道斯有用。 - -  漢唐而下,議論駁而至理雜,吾師宋儒。宋儒求以明道而多穿鑿附會之談,失平正 -通達之旨,吾師先聖之言。先聖之言煨於秦火、雜於百家,莠苗朱紫,使後學尊信之而 -不敢異同,吾師道。苟協諸道而協,則千聖萬世無不吻合,何則?道無二也。 - -  或問:「中之道,堯舜傳心,必有至玄至妙之理?」余歎曰:「只就我兩人眼前說 -這飲酒,不為限量,不至過醉,這就是飲酒之中;這說話,不緘默,不狂誕,這就是說 -話之中;這作揖跪拜,不煩不疏,不疾不徐,這就是作揖跪拜之中。一事得中,就是一 -事底堯舜,推之萬事皆然。又到那安行處,便是十全底堯舜。」 - -  形神一息不相離,道器一息不相無,故道無精粗,言精粗者,妄也。因與一客共酌 -,指案上羅列者謂之曰:「這安排必有停妥處,是天然自有底道理;那僮僕見一豆上案 -,將滿案樽俎東移西動,莫知措手,那知底入眼便有定位,未來便有安排。新者近前, -舊者退後,飲食居左,匙箸居右,重積不相掩,參錯不相亂,佈置得宜,楚楚齊齊,這 -個是粗底。若說神化性命不在此,卻在何處?若說這裡有神化性命,這個工夫還欠缺否 -?推之耕耘簸揚之夫、炊爨烹調之婦,莫不有神化性命之理,都能到神化性命之極。學 -者把神化性命看得太玄,把日用事物看得太粗,原不曾理會。理會得來,這案上羅列得 -,天下古今萬事萬物都在這裡,橫豎推行、撲頭蓋面、腳踏身坐底都是神化性命,乃知 -神化性命極粗淺底。」 - -  有大一貫,有小一貫。小一貫,貫萬殊;大一貫,貫小一貫。大一貫一,小一貫千 -百。無大一貫,則小一貫終是零星;無小一貫,則大一貫終是渾沌。 - -  靜中看天地萬物都無些子。 - -  一門人向予數四窮問無極、太極及理氣同異、性命精粗、性善是否。予曰:「此等 -語,予亦能剿先儒之成說及一己之謬見以相發明,然非汝今日急務。假若了悟性命,洞 -達天人,也只於性理書上添了『某氏曰』一段言語,講學衙門中多了一宗卷案。後世窮 -理之人,信彼駁此,服此辟彼,百世後汗牛充棟,都是這樁話說,不知於國家之存亡、 -萬姓之生死、身心之邪正,見在得濟否?我只有個粗法子,汝只把存心制行、處事接物 -、齊家治國平天下,大本小節都事事心下信得過了,再講這話不遲。」曰:「理氣、性 -命,終身不可談耶?」曰:「這便是理氣、性命顯設處,除了撒數沒總數。」 - -  陽為客,陰為主;動為客,靜為主;有為客,無為主;萬為客,一為主。 - -  理路直截,欲路多岐;理路光明,欲路微曖;理路爽暢,欲路懊煩;理路逸樂,欲 -路憂勞。 - -  無萬,則一何處著落?無一,則萬誰為張主?此二字一時離不得。一只在萬中走, -故有正一,無邪萬;有治一,無亂萬;有中一,無偏萬;有活一,無死萬。 - -  天下之大防五,不可一毫潰也,一潰則決裂不可收拾。宇內之大防,上下名分是已 -;境外之大防,夷夏出入是已;一家之大防,男女嫌微是已;一身之大防,理欲消長是 -已;萬世之大防,道脈純雜是已。 - -  儒者之末流與異端之末流何異?似不可以相誚也。故明於醫,可以攻病人之標本; -精於儒,可以中邪說之膏盲。闢邪不得其情,則邪愈肆;攻病不對其症,則病癒劇。何 -者?授之以話柄而借之以反攻,自救之策也。 - -  人皆知異端之害道,而不知儒者之言亦害道也。見理不明,似是而非,或騁浮詞以 -亂真,或執偏見以奪正,或狃目前而昧萬世之常經,或徇小道而潰天下之大防,而其聞 -望又足以行其學術,為天下後世人心害,良亦不細。是故,有異端之異端,有吾儒之異 -端。異端之異端,真非也,其害小;吾儒之異端似是也,其害大。有衛道之心者,如之 -何而不辨哉? - -  天下事皆實理所為,未有無實理而有事物者也。幻家者流,無實用而以形惑人,嗚 -呼!不窺其實而眩於形以求理,愚矣。 - -  公卿爭議於朝,曰天子有命,則屏然不敢屈直矣;師儒相辯於學,曰孔於有言,則 -寂然不敢異同矣。故天地間,惟理與勢為最尊,雖然,理又尊之尊也。廟堂之上言理, -則天子不得以勢相奪,即相奪焉,而理則常伸於天下萬世。故勢者,帝王之權也;理者 -,聖人之權也。帝王無聖人之理,則其權有時而屈。然則理也者,又勢之所恃以為存亡 -者也。以莫大之權無僭竊之禁,此儒者之所不辭而敢於任斯道之南面也。 - -  陽道生,陰道養。故向陽者先發,向陰者後枯。 - -  正學不明,聰明才辯之士各枝葉其一隅之見以成一家之說,而道始千岐百徑矣。豈 -無各得?終是偏術。到孔門,只如枉木著繩,一毫邪氣不得。 - -  禪家有理障之說。愚謂理無障,畢竟是識障。無意識,心何障之有? - -  道莫要於損己,學莫急於矯偏。 - -  七情總是個欲,只得其正了,都是天理;五性總是個仁,只不仁了,都是人欲。 - -  萬籟之聲,皆自然也。自然,皆真也。物各自鳴其真,何天何人?何今何古?《六 -經》,籟道者也,統一聖真,而漢宋以來胥執一響以吹之,而曰是外無聲矣。觀俳謔者 -,萬人粲然皆笑,聲不同也而樂同。人各笑其所樂,何清濁高下妍媸之足云?故見各鳴 -其自得。語不詭於《六經》,皆吾道之眾響也,不必言言同、事事同矣。 - -  氣者,形之精華;形者,氣之渣滓。故形中有氣,無氣則形不生;氣中無形,有形 -則氣不載。故有無形之氣,無無氣之形。星隕為石者,先感於形也。 - -  天地萬物只到和平處,無一些不好,何等暢快! - -  莊、列見得道理原著不得人為,故一向不盡人事。不知一任自然,成甚世界?聖人 -明知自然,卻把自然閣起,只說個當然,聽那個自然。 - -  私恩煦感,仁之賊也;直往輕擔,義之賊也;足恭偽態,禮之賊也;苛察岐疑,智 -之賊也;苟約固守,信之賊也。此五賊者,破道亂正,聖門斥之。後世儒者往往稱之以 -訓世,無識也與! - -  道有二然,舉世皆顛倒之。有個當然是屬人底,不問吉凶禍福,要向前做去;有個 -自然是屬天底,任你躑躅咆哮,自勉強不來。舉世昏迷,專在自然上錯用工夫,是謂替 -天忙,徒勞無益。卻將當然底全不著意,是謂棄人道,成個甚人?聖賢看著自然可得底 -,果於當然有礙,定不肯受,況未必得乎?只把二「然」字看得真,守得定,有多少受 -用處! - -  氣用形,形盡而氣不盡;火用薪,薪盡而火不盡。故天地惟無能用有,五行惟火為 -氣,其四者皆形也。 - -  氣盛便不見涵養。浩然之氣雖充塞天地間,其實本體間定冉冉口鼻中,不足以呼吸。 - -  有天欲,有人欲。吟風弄月,傍花隨柳,此天欲也。聲色貸利,此人欲也。天欲不 -可無,無則禪;人欲不可有,有則穢。天欲即好底人欲,人欲即不好底天欲。 - -  朱子云:「不求人知,而求天知。」為初學言也。君子為善,只為性中當如此,或 -此心過不去。天知、地知、人知、我知,渾是不求底。有一求心,便是偽,求而不得, -此念定是衰歇。 - -  以吾身為內,則吾身之外皆外物也。故富貴利達,可生可榮,苟非道焉,而君子不 -居。以吾心為內,則吾身亦外物也。故貧賤憂慼,可辱可殺,苟道焉,而君子不辭。 - -  或問敬之道。曰:「外面整齊嚴肅,內面齊莊中正,是靜時涵養底敬。讀書則心在 -於所讀,治事則心在於所治,是主一無適底敬。出門如見大賓,使民如承大祭,是隨事 -小心底敬。」或曰:「若笑談歌詠、宴息造次之時,恐如是則矜持不泰然矣。」曰:「 -敬以端嚴為體,以虛活為用,以不離於正為主。齋日衣冠而寢,夢寐乎所祭者也。不齋 -之寢,則解衣脫冕矣,未有釋衣冕而持敬也。然而心不流於邪僻,事不詭於道義,則不 -害其為敬矣。君若專去端嚴上求敬,則荷鋤負畚、執轡御車、鄙事賤役,古聖賢皆為之 -矣,豈能日日手容恭、足容重耶?又若孔子曲肱指掌,及居不容,點之浴沂,何害其為 -敬耶?大端心與正依,事與道合,雖不拘拘於端嚴,不害其為敬。苟心游千里、意逐百 -欲,而此身卻兀然端嚴在此,這是敬否?譬如謹避深藏,秉燭鳴珮,緩步輕聲,女教《 -內則》原是如此,所以養貞信也。若饁婦汲妻及當顛沛奔走之際,自是迴避不得,然而 -貞信之守與深藏謹避者同,是何害其為女教哉?是故敬不擇人,敬不擇事,敬不擇時, -敬不擇地,只要個心與正依,事與道合。」 - -  先難後獲,此是立德立功第一個張主。若認得先難是了,只一向持循去,任千毀萬 -謗也莫動心,年如是,月如是,竟無效驗也只如是,久則自無不獲之理。故工夫循序以 -進之,效驗從容以俟之,若欲速,便是揠苗者,自是欲速不來。 - -  造化之精,性天之妙,惟靜觀者知之,惟靜養者契之,難與紛擾者道。故止水見星 -月,才動便光芒錯雜矣。悲夫!紛擾者,昏昏以終身,而一無所見也。 - -  滿腔子是惻隱之心,滿六合是運惻隱之心處。君子於六合飛潛動植、纖細毫末之物 -,見其得所,則油然而喜,與自家得所一般;見其失所,則閔然而戚,與自家失所一般 -。位育念頭,如何一刻放得下? - -  萬物生於性,死於情。故上智去情,君子正情,眾人任情,小人肆情。夫知情之能 -死人也,則當遊心於淡泊無味之鄉,而於世之所欣戚趨避,漠然不以嬰其慮,則身苦而 -心樂,感殊而應一。其所不能逃者,與天下同;其所了然獨得者,與天下異。 - -  此身要與世融液,不見有萬物形跡、六合界限,此之謂化。然中間卻不模糊,自有 -各正底道理,此之謂精。 - -  人一生不聞道 ,真是可憐! - -  已欲立而立人,己欲達而達人,便是肫肫其仁、天下一家滋味。然須推及鳥獸,又 -推及草木,方充得盡。若父子兄弟間便有各自立達、爭先求勝的念頭,更那顧得別個。 - -  天德只是個無我,王道只是個愛人。 - -  道是第一等,德是第二等,功是第三等,名是第四等。自然之謂道,與自然遊謂之 -道士。體道之謂德,百行俱修謂之德士。濟世成物謂之功。一味為天下潔身著世謂之名 -。一味為自家立言者,亦不出此四家之言。下此不入等矣。 - -  凡動天感物,皆純氣也。至剛至柔,與中和之氣皆有所感動,純故也。十分純裡才 -有一毫雜,便不能感動。無論佳氣、戾氣,只純了,其應便捷於影響。 - -  萬事萬物有分別,聖人之心無分別,因而付之耳。譬之日因萬物以為影,水因萬川 -以順流,而日水原無兩,未嘗不分別,而非以我分別之也。以我分別,自是分別不得。 - -  下學學個什麼?上達達個什麼?下學者,學其所達也;上達者,達其所學也。 - -  弘毅,坤道也。《易》曰「含弘光大」,言弘也;「利永貞」,言毅也。不毅不弘 -,何以載物? - -  六經言道而不辨,辨自孟子始;漢儒解經而不論,論自宋儒始;宋儒尊理而不僭, -僭自世儒始。 - -  聖賢學問是一套,行王道必本天德;後世學問是兩截,不修己只管治人。 - -  自非生知之聖,未有言而不思者。貌深沉而言安定,若蹇若疑,欲發欲留。雖有失 -焉者,寡矣。神奮揚而語急速,若湧若懸,半跲半晦,雖有得焉者,寡矣。夫一言之發 -,四面皆淵阱也。喜言之則以為驕,戚言之則以為懦,謙言之則以為諂,直言之則以為 -陵,微言之則以為險,明言之則以為浮。無心犯諱則謂有心之譏,無為發端則疑有為之 -說。簡而當事,曲而當情,精而當理,確而當時,一言而濟事,一言而服人,一言而明 -道,是謂修辭之善者。其要有二:曰澄心,曰定氣。余多言而無當,真知病本云云,當 -與同志者共改之。 - -  知彼知我,不獨是兵法,處人處事一些少不得底。 - -  靜中真味至淡至冷,及應事接物時,自有一段不冷不淡天趣。只是眾人習染世味十 -分濃豔,便看得他冷淡。然冷而難親,淡而可厭,原不是真味,是謂撥寒灰、嚼淨蠟。 - -  明體全為適用。明也者,明其所適也,不能適用,何貴明體?然未有明體而不適用 -者。樹有根,自然千枝萬葉;水有泉,自然千流萬派。 - -  天地人物原來只是一個身體、一個心腸,同了,便是一家,異了,便是萬類。而今 -看著風雲雷雨都是我胸中發出,虎豹蛇蠍都是我身上分來,那個是天地?那個是萬物? - -  萬事萬物都有個一,千頭萬緒皆發於一,千言萬語皆明此一,千體認萬推行皆做此 -一。得此一,則萬皆舉;求諸萬,則一反迷。但二氏只是守一,吾儒卻會用一。 - -  三氏傳心要法,總之不離一「靜」字。下手處皆是制欲,歸宿處都是無欲,是則同。 - -  「予欲無言」,非雅言也,言之所不能顯者也。「吾無隱爾」,非文辭也,性與天 -道也。說便說不來,藏也藏不得,然則無言即無隱也,在學者之自悟耳。天地何嘗言? -何嘗隱?以是知不可言傳者,皆日用流行於事物者也。 - -  天地間道理,如白日青天;聖賢心事,如光風霽月。若說出一段話,說千解萬,解 -說者再不痛快,聽者再不惺憽,豈舉世人皆愚哉?此立言者之大病。 - -  罕譬而喻者,至言也;譬而喻者,微言也;譬而不喻者,玄言也。玄言者,道之無 -以為者也。不理會玄言,不害其為聖人。 - -  正大光明,透徹簡易,如天地之為形,如日月之垂象,足以開物成務,足以濟世安 -民,達之天下萬世而無弊,此謂天言。平易明白,切近精實,出於吾口而當於天下之心 -,載之典籍而裨於古人之道,是謂人言。艱深幽僻,弔詭探奇,不自句讀不能通其文, -通則無分毫會心之理趣;不考音韻不能識其字,識則皆常行日用之形聲,是謂鬼言。鬼 -言者,道之賊也,木之孽也,經生學士之殃也。然而世人崇尚之者,何逃之?怪異足以 -文凡陋之筆,見其怪異,易以駭膚淺之目。此光明平易大雅君子為之汗顏泚顙,而彼方 -以為得意者也。哀哉! - - -  衰世尚同,盛世未嘗不尚同。衰世尚同流合污,盛世尚同心合德。虞廷同寅協恭, -修政無異識,圮族者殛之;孔門同道協志,修身無異術,非吾徒者攻之。故曰道德一、 -風俗同。二之非帝王之治,二之非聖賢之教,是謂敗常亂俗,是謂邪說破道。衰世尚同 -,則異是矣。逐波隨風,共撼中流之砥柱;一頹百靡,誰容盡醉之醒人?讀《桃園》、 -誦《板蕩》,自古然矣。乃知盛世貴同,衰世貴獨。獨非立異也,眾人皆我之獨,即盛 -世之同矣。 - -  世間物一無可戀,只是既生在此中,不得不相與耳。不宜著情,著情便生無限愛欲 -,便招無限煩惱。 - -  「安而後能慮」,止水能照也。 - -  君子之於事也,行乎其所不得不行,止乎其所不得不止;於言也,語乎其所不得不 -語,默乎其所不得不默,尤悔庶幾寡矣。 - -  發不中節,過不在已發之後。 - -  才有一分自滿之心,面上便帶自滿之色,口中便出自滿之聲,此有道之所恥也。見 -得大時,世間再無可滿之事,吾分再無能滿之時,何可滿之有?故盛德容貌若愚。 - -  「相在爾室,尚不愧於屋漏」,此是千古嚴師。「十目所視,十手所指」,此是千 -古嚴刑。 - -  誠與才合,畢竟是兩個,原無此理。蓋才自誠出,才不出於誠算不得個才,誠了自 -然有才。今人不患無才,只是討一誠字不得。 - -  斷則心無累。或曰:「斷用在何處?」曰:「謀後當斷,行後當斷。」 - -  道盡於一,二則贅;體道者不出一,二則支。天無二氣,物無二本,心無二理,世 -無二權。一則萬,二則不萬,道也,二乎哉?故執一者得萬,求萬者失一。水壅萬川未 -必能塞,木滋萬葉未必能榮,失一故也。 - -  道有一真,而意見常千百也,故言多而道愈漓;事有一是,而意見常千百也,故議 -多而事愈僨。 - -  吾黨望人甚厚,自治甚疏,只在口脗上做工夫,如何要得長進? - -  宇宙內原來是一個,才說同,便不是。 - -  周子《太極圖》第二圈子是分陰分陽,不是根陰根陽。世間沒有這般截然氣化,都 -是互為其根耳。 - -  說自然是第一等話,無所為而為;說當然是第二等話,性分之所當盡,職分之所當 -為;說不可不然是第三等話,是非毀譽是已;說不敢不然是第四等話,利害禍福是已。 - -  人欲擾害天理,眾人都曉得;天理擾害天理,雖君子亦迷,況在眾人!而今只說慈 -悲是仁,謙恭是禮,不取是廉,慷慨是義,果敢是勇,然諾是信。這個念頭真實發出, -難說不是天理,卻是大中至正天理被他擾害,正是執一賊道。舉世所謂君子者,都是這 -裡看不破,故曰「道之不明」也。 - -  「二女同居,其志不同行」,見孤陽也。若無陽,則二女何不同行之有?二陽同居 -,其志同行,不見陰也。若見孤陰,則二男亦不可以同居矣。故曰「一陰一陽之謂道」 -,六爻雖具陰陽之偏,然各成一體,故無嫌。 - -  利刃斲木綿,迅炮擊風幟,必無害矣。 - -  士之於道也,始也求得,既也得得,既也養得,既也忘得。不養得則得也不固,不 -忘得則得也未融。學而至於忘得,是謂無得。得者,自外之名,既失之名,還我故物, -如未嘗失,何得之有?心放失,故言得心,從古未言得耳目口鼻四肢者,無失故也。 - -  聖人作用,皆以陰為主,以陽為客。陰所養者也,陽所用者也。天地亦主陰而客陽 -。二氏家全是陰,道家以陰養純陽而嗇之,釋家以陰養純陰而寶之。凡人陰多者,多壽 -多福;陽多者,多夭多禍。 - -  只隔一絲,便算不得透徹之悟,須是入筋肉、沁骨髓。 - -  異端者,本無不同,而端緒異也。千古以來,惟堯、舜、禹、湯、文、武、孔、孟 -一脈是正端,千古不異。無論佛、老、莊、列、申、韓、管、商,即伯夷、伊尹、柳下 -惠,都是異端,子貢、子夏之徒,都流而異端。蓋端之初分也,如路之有岐,未分之初 -都是一處發腳,既出門後,一股向西南走,一股向東南走,走到極處,末路梢頭,相去 -不知幾千萬里,其始何嘗不一本哉?故學問要析同異於毫釐,非是好辨,懼末流之可哀 -也。 - -  天下之事,真知再沒個不行,真行再沒個不誠,真誠之行再沒個不自然底。自然之 -行不至其極不止,不死不止,故曰「明則誠」矣。 - -  千萬病痛只有一個根本,治千病萬痛只治一個根本。 - -  宇宙內主張萬物底只是一塊氣,氣即是理。理者,氣之自然者也。 - -  到至誠地位,誠固誠,偽亦誠;未到至誠地位,偽固偽,誠亦偽。 - -  義襲取不得。 - -  信知困窮抑鬱、貧賤勞苦是我應得底,安富薄榮、歡欣如意是我儻來底,胸中便無 -許多冰炭。 - -  事有豫而立,亦有豫而廢者。吾曾豫以有待,臨事鑿枘不成,竟成棄擲者。所謂權 -不可豫設,變不可先圖,又難執一論也。 - -  任是千變萬化、千奇萬異,畢竟落在平常處歇。 - -  善是性,性未必是善;秤錘是鐵,鐵不是秤錘。或曰:「孟子道性善,非與?」曰 -:「余所言,孟子之言也。孟子以耳目口鼻四肢之欲為性,此性善否?」或曰:「欲當 -乎理,即是善。」曰:「如子所言,『動心忍性』,亦忍善性與?」或曰:「孔子繫《 -易》,言『繼善成性』,非與?」曰:「世儒解經,皆不善讀《易》者也。孔子云『一 -陰一陽之謂道』,謂一陰一陽均調而不偏,乃天地中和之氣,故謂之道。人繼之則為善 -,繼者,稟受之初;人成之則為性,成者,不作之謂。假若一陰則偏於柔,一陽則偏於 -剛,皆落氣質,不可謂之道。蓋純陰純陽之謂偏,一陰二陽、二陰一陽之謂駁,一陰三 -四五陽、五陰一三四陽之謂雜,故仁智之見,皆落了氣質一邊,何況百姓?仁智兩字, -拈此以見例,禮者見之謂之禮,義者見之謂之義,皆是邊見。朱注以繼為天,誤矣;又 -以仁智分陰陽,又誤矣。抑嘗考之,天自有兩種天,有理道之天,有氣數之天。故賦之 -於人,有義理之性,有氣質之性。二天皆出於太極,理道之天是先天,未著陰陽五行以 -前,純善無惡,《書》所謂『惟皇降衷,厥有恒性』,《詩》所謂『天生烝民,有物有 -則』是也。氣數之天是後天,落陰陽五行之後,有善有惡,《書》所謂『天生烝民,有 -欲』,孔子所謂『惟上知與下愚不移』是也。孟子道性善,只言個德性。」 - -  物欲從氣質來,只變化了氣質,更說甚物欲。 - -  耳目口鼻四肢有何罪過?堯、舜、周、孔之身都是有底;聲色貨利、可愛可欲有何 -罪過?堯、舜、周、孔之世都是有底。千萬罪惡都是這點心,孟子「耳目之官不思而蔽 -物」,太株連了,只是先立乎其大,有了張主,小者都是好奴婢,何小之敢奪?沒了窩 -主,那怕盜賊?問:「誰立大?」曰:「大立大。」 - -  威儀養得定了,才有脫略,便害羞赧;放肆慣得久了,才入禮群,便害拘束。習不 -可不慎也。 - -  絜矩是強恕事,聖人不絜矩。他這一副心腸原與天下打成一片,那個是矩?那個是 -絜? - -  仁以為己任,死而後已,此是大擔當;老者衣帛食肉,黎民不饑不寒,此是大快樂。 - -  內外本末交相培養,此語余所未喻。只有內與本,那外與末張主得甚? -  不是與諸君不談奧妙,古今奧妙不似《易》與《中庸》,至今解說二書,不似青天 -白日,如何又於晦夜添濃雲也?望諸君哀此後學,另說一副當言語,須是十指露縫,八 -面開窗,你見我知,更無躲閃,方是正大光明男子。 - -  形而上與形而下,不是兩般道理;下學上達,不是兩截工夫。 - -  世之欲惡無窮,人之精力有限,以有限與無窮鬥,則物之勝人,不啻千萬,奈之何 -不病且死也。 - -  冷淡中有無限受用處。都戀戀炎熱,抵死不悟,既悟不知回頭,既回頭卻又羨慕, -此是一種依羶附腥底人,切莫與談真滋味。 - -  處明燭幽,未能見物而物先見之矣;處幽燭明,是謂神照。是故不言者非喑,不視 -者非盲,不聽者非聾。 - -  儒戒聲色貨利,釋戒色聲香味,道戒酒色財氣。總歸之無欲,此三氏所同也。儒衣 -儒冠而多欲,怎笑得釋道? - -  敬事鬼神,聖人維持世教之大端也。其義深,其功大。但自不可鑿求,不可道破耳。 - -  天下之治亂,只在「相責各盡」四字。 - -  世之治亂,國之存亡,民之死生,只是個我心作用。只無我了,便是天清地寧、民 -安物阜世界。 - -  惟得道之深者,然後能淺言;凡深言者,得道之淺者也。 - -  以虛養心,以德養身,以善養人,以仁養天下萬物,以道養萬世。養之義,大矣哉! - -  萬物皆能昏人,是人皆有所昏。有所不見,為不見者所昏;有所見,為見者所昏。 -惟一無所見者不昏,不昏然後見天下。 - -  道非淡不入,非靜不進,非冷不凝。 - -  三千三百,便是無聲無臭。 - -  天德王道不是兩事,內聖外王不是兩人。 - -  損之而不見其少者,必贅物也;益之而不見其多者,必缺處也。惟分定者,加一毫 -不得、減一毫不得。 - -  知是一雙眼,行是一雙腳。不知而行,前有淵谷而不見,傍有狼虎而不聞,如中州 -之人適燕而南、之粵而北也,雖乘千里之馬,愈疾愈遠。知而不行,如痿痹之人數路程 -、畫山水。行更無多說,只用得一「篤」字。知底工夫千頭萬緒,所謂「匪知之艱,惟 -行之艱」、「匪苟知之,亦允蹈之」、「知至至之,知終終之」、「窮神知化」、「窮 -理盡性」、「幾深研極」、「探頣索隱」、「多聞多見」。知也者,知所行也;行也者 -,行所知也。知也者,知此也;行也者,行此也。原不是兩個。世俗知行不分,直與千 -古聖人駁難,以為行即是知。余以為:「能行方算得知,徒知難算得行。」 - -  有殺之為仁,生之為不仁者;有取之為義,與之為不義者;有卑之為禮,尊之為非 -禮者;有不知為智,知之為不智者;有違言為信,踐言為非信者。 - - -  覓物者,苦求而不得或視之而不見,他日無事於覓也,乃得之。非物有趨避,目眩 -於急求也。天下之事,每得於從容而失之急遽。 - -  山峙川流、鳥啼花落、風清月白,自是各適其天,各得其分。我亦然,彼此無干涉 -也。才生繫戀心,便是歆羨,便有沾著。主人淡無世好,與世相忘而已。惟並育而不有 -情,故並育而不相害。 - -  公生明,誠生明,從容生明。公生明者,不蔽於私也;誠生明者,清虛所通也;從 -容生明者,不淆於感也。舍是無明道矣。 - -  「喜怒哀樂之未發謂之中」,自有《中庸》以來,無人看破此一語。此吾道與佛、 -老異處,最不可忽。 - -  知識,心之孽也;才能,身之妖也;貴寵,家之禍也;富足,子孫之殃也。 - -  只泰了,天地萬物皆志暢意得,欣喜歡愛。心身家國天下無一毫鬱閼不平之氣,所 -謂八達四通,千昌萬遂,太和之至也。然泰極則肆,肆則不可收拾;而入於否。故《泰 -》之後繼以《大壯》,而聖人戒之曰:「君子以非禮弗履。」用是見古人憂勤惕勵之意 -多,豪雄曠達之心少。六十四卦,惟有《泰》是快樂時又恁極中極正,且懼且危,此所 -以致泰保泰而無意外之患也。 - -  今古紛紛辨口,聚訟盈庭,積書充棟,皆起於世教之不明,而聰明才辨者各執意見 -以求勝。故爭輕重者至衡而息,爭短長者至度而息,爭多寡者至量而息,爭是非者至聖 -人而息。中道者,聖人之權衡度量也。聖人往矣,而中道自在,安用是嘵嘵強口而逞辨 -以自是哉?嗟夫!難言之矣。 - -  人只認得「義命」兩字真,隨事隨時在這邊體認,果得趣味,一生受用不了。 - -  「夫焉有所倚」,此至誠之胸次也。空空洞洞,一無所著,一無所有,只是不倚著 -。才倚一分,便是一分偏;才著一釐,便是一釐礙。 - -  形用事,則神者亦形;神用事,則形者亦神。 - -  威儀三千,禮儀三百,五刑之屬三千,皆法也。法是死底,令人可守;道是活底, -令人變通。賢者持循於法之中,聖人變易於法之外。自非聖人而言變易,皆亂法也。 - -  道不可言,才落言筌,便有倚著。 - -  禮教大明,中有犯禮者一人焉,則眾以為肆而無所容;禮教不明,中有守禮者一人 -焉,則眾以為怪而無所容。禮之於世大矣哉! - -  良知之說亦是致曲擴端學問,只是作用大端費力。作聖工夫當從天上做,培樹工夫 -當從土上做。射之道,中者矢也,矢由弦,弦由手,手由心,用工當在心,不在矢;御 -之道,用者銜也,銜由轡,轡由手,手由心,用工當在心,不在銜。 - -  聖門工夫有兩途:「克己復禮」,是領惡以全好也,四夷靖則中國安;「先立乎其 -大者」,是正己而物正也,內順治則外威嚴。 - -  中,是千古道脈宗;敬,是聖學一字訣。 - -  性,只有一個,才說五便著情種矣。 - -  敬肆是死生關。 - -  瓜、李將熟,浮白生焉。禮由情生,後世乃以禮為情,哀哉! - -  道理甚明、甚淺、甚易,只被後儒到今說底玄冥,只似真禪,如何使俗學不一切抵 -毀而盡叛之! - -  生成者,天之道心;災害者,天之人心。道心者,人之生成;人心者,人之災害。 -此語眾人驚駭死,必有能理會者。 - -  道器非兩物,理氣非兩件。成象成形者器,所以然者道;生物成物者氣,所以然者 -理。道與理,視之無跡,捫之無物,必分道器、理氣為兩項,殊為未精。《易》曰:「 -形而上者謂之道,形而下者謂之器。」蓋形而上,無體者也,萬有之父母,故曰道;形 -而下,有體者也,一道之凝結,故曰器。理氣亦然,生天、生地、生人、生物,皆氣也 -,所以然者,理也。安得對待而言之?若對待為二,則費隱亦二矣。 - -  先天,理而已矣;後天,氣而已矣;天下,勢而已矣;人情,利而已矣。理一,而 -氣、勢、利三,勝負可知矣。 - -  人事就是天命。 - -  我盛則萬物皆為我用,我衰則萬物皆為我病。盛衰勝負,宇宙內只有一個消息。 - -  天地間惟無無累,有即為累。有身則身為我累,有物則物為我累。惟至人則有我而 -無我,有物而忘物,此身如在太虛中,何累之有?故能物我兩化。化則何有何無?何非 -有何非無?故二氏逃有,聖人善處有。 - -  義,合外內之道也。外無感,則義只是渾然在中之理,見物而裁制之則為義。義不 -生於物,亦緣物而後見。告子只說義外,故孟子只說義內,各說一邊以相駁,故窮年相 -辨而不服。孟子若說義雖緣外而形,實根吾心而生,物不是義,而處物乃為義也,告子 -再怎開口?性,合理氣之道也。理不雜氣,則純粹以精,有善無惡,所謂義理之性也。 -理一雜氣,則五行紛糅,有善有惡,所謂氣質之性也。諸家所盲皆落氣質之後之性,孟 -子所言皆未著氣質之先之性,各指一邊以相駁,故窮年相辨而不服。孟子若說有善有惡 -者雜於氣質之性,有善無惡者,上帝降衷之性,學問之道正要變化那氣質之性,完復吾 -降衷之性,諸家再怎開口? - -  乾與姤,坤與復,對頭相接不間一發,乾坤盡頭處即姤復起頭處,如呼吸之相連, -無有斷續,一斷便是生死之界。 - -  知費之為省,善省者也,而以省為省者愚,其費必倍。知勞之為逸者,善逸者也, -而以逸為逸者昏,其勞必多。知苦之為樂者,善樂者也,而以樂為樂者癡,一苦不返。 -知通之為塞者,善塞者也,而以塞為塞者拙,一通必竭。 - -  秦火之後,三代制作湮滅幾盡。漢時購書之賞重,胡漢儒附會之書多。其倖存者, -則焚書以前之宿儒尚存而不死,如伏生口授之類。好古之君子壁藏而石函,如《周禮》 -出於屋壁之類。後儒不考古今之文,概云先王製作而不敢易,即使盡屬先王制作,然而 -議禮制度考文,沿世道民俗而調劑之,易姓受命之天子皆可變通,故曰刑法世輕重,三 -王不沿禮襲樂。若一切泥古而求通,則茹毛飲血、土鼓汙尊皆可行之今日矣。堯舜而當 -此時,其制度文為必因時順勢,豈能反後世而躋之唐虞?或曰:「自秦火後,先王制作 -何以別之?」曰:「打起一道大中至正線來,真偽分毫不錯。」 - -  理會得「簡」之一字,自家身心、天地萬物、天下萬事盡之矣。一粒金丹不載多藥 -,一分銀魂不攜錢幣。 - -  耳聞底、眼見底、身觸頭戴足踏底,燦然確然,無非都是這個,拈起一端來,色色 -都是這個。卻向古人千言萬語、陳爛葛藤鑽研窮究,意亂神昏了不可得,則多言之誤後 -人也噫! - -  鬼神無聲無臭,而有聲有臭者,乃無聲無臭之散殊也。故先王以聲息為感格鬼神之 -妙機。周人尚臭,商人尚聲,自非達幽明之故者難以語此。 - -  三千三百,繭絲牛毛,聖人之精細入淵微矣。然皆自性真流出,非由強作,此之謂 -天理。 - -  事事只在道理上商量,便是真體認。 - -  使人收斂莊重莫如禮,使人溫厚和平莫如樂。德性之有資於禮樂,猶身體之有資於 -衣食,極重大,極急切。人君治天下,士君子治身,惟禮樂之用為急耳。自禮廢,而惰 -慢放肆之態慣習於身體矣;自樂亡,而乖戾忿恨之氣充滿於一腔矣。三代以降,無論典 -秩之本,聲氣之元,即儀文器數,夢寐不及。悠悠六合,貿貿百年,豈非靈於萬物,而 -萬物且能笑之?細思先儒「不可斯須去身」六字,可為流涕長太息矣。 - -  惟平脈無病,七表、八裡、九道,皆病名也;惟中道無名,五常、百行、萬善,皆 -偏名也。 - -  千載而下,最可恨者樂之無傳。士大夫視為迂闊無用之物,而不知其有切於身心性 -命也。 - -  一、中、平、常、白、淡、無,謂之七,無對。一不對萬;萬者,一之分也。太過 -不及對;中者,太過不及之君也。高下對;平者,高下之准也。吉凶禍福貧富貴賤對; -常者,不增不減之物也。青黃碧紫赤黑對;白者,青、黃、碧、紫、赤之質也。酸鹹甘 -苦辛對;淡者,受和五味之主也。有不與無對;無者,萬有之母也。 - -  或問:「格物之物是何物?」曰:「至善是已。」「如何格?」曰:「知止是已。 -」「《中庸》不言格物,何也?」曰:「舜之執兩端於問察,回之擇一善而服膺,皆格 -物也。」「擇善與格物同否?」曰:「博學、審問、慎思、明辨,皆格物也;致知、誠 -正,修、齊、治、平,皆擇善也。除了善,更無物。除了擇善,更無格物之功。」「至 -善即中乎?」曰:「不中,不得謂之至善。不明乎善,不得謂之格物。故不明善不能誠 -身,不格物不能誠意。明瞭善,欲不誠身不得;格了物,欲不誠意不得。」「不格物亦 -能致知否?」曰:「有。佛、老、莊、列皆致知也,非不格物;而非吾之所謂物。」「 -不致知亦能誠意否?」曰:「有。尾生、孝己皆誠意也,乃氣質之知,而非格物之知。 -」格物二字,在宇宙間乃鬼神訶護真靈至寶,要在個中人神解妙悟,不可與口耳家道也。 - -  學術要辨邪正。既正矣,又要辨真偽。既真矣,又要辨念頭切不切、嚮往力不力, -無以空言輒便許人也。 - -  百姓凍餒謂之國窮,妻子困乏謂之家窮,氣血虛弱謂之身窮,學問空疏謂之心窮。 - -  人問:「君是道學否?」曰:「我不是道學。」「是仙學否?」曰:「我不是仙學 -。」「是釋學否?」曰:「我不是釋學。」「是老、莊、申、韓學否?」曰:「我不是 -老、莊、申、韓學。」「畢竟是誰家門戶?」曰:「我只是我。」 - -  與友人論天下無一物無禮樂,因指几上香曰:「此香便是禮,香煙便是樂;坐在此 -便是禮,一笑便是樂。」 - -  心之好惡不可迷也,耳目口鼻四肢之好惡不可徇也。瞽者不辨蒼素,聾者不辨宮商 -,鼽者不辨香臭,狂者不辨辛酸,逃難而追亡者不辨險夷遠近。然於我無損也,於道無 -損也,於事無損也,而有益於世、有益於我者無窮。乃知五者之知覺,道之賊而心之殃 -也,天下之禍也。 - -  氣有三散:苦散,樂散,自然散。苦散、樂散可以復聚,自然散不復聚矣。 - -  悟有頓,修無頓。立志在堯,即一念之堯;一語近舜,即一言之舜;一行師孔,即 -一事之孔,而況悟乎?若成一個堯、舜、孔子,非真積力充、斃而後已不能。 - -  有人於此,其孫呼之曰祖、其祖呼之曰孫、其子呼之曰父、其父呼之曰子、其舅呼 -之曰甥、其甥呼之曰舅、其伯叔呼之曰侄、其侄呼之曰伯叔、其兄呼之曰弟、其弟呼之 -曰兄、其翁呼之曰婿、其婿呼之曰翁,畢竟是幾人?曰:「一人也。」「呼之畢竟孰是 -?」曰:「皆是也。」吁!「仁者見之謂之仁,知者見之謂之知」,無怪矣,道二乎哉! - -  豪放之心非道之所棲也,是故道凝於寧靜。 - -  聖人制規矩不制方圓,謂規矩可為方圓,方圓不能為方圓耳。 - -  終身不照鏡,終身不認得自家。乍照鏡,猶疑我是別人,常磨常照,才認得本來面 -目。故君子不可以無友。 - -  輕重只在毫釐,長短只爭分寸。明者以少為多,昏者惜零棄頓。 - -  天地所以循環無端積成萬古者,只是四個字,曰「無息有漸」。聖學亦然,縱使生 -知之聖,敏則有之矣,離此四字不得。 - -  下手處是自強不息,成就處是至誠無息。 - -  聖學入門先要克己,歸宿只是無我。蓋自私自利之心是立人達人之障,此便是舜、 -跖關頭,死生歧路。 - -  心於淡裡見天真,嚼破後許多滋味;學向淵中尋理趣,湧出來無限波瀾。 - -  百毒惟有恩毒苦,萬味無如淡味長。 - -  總埋泉壤終須白,才露天機便不玄。 - -  橫吞八極水,細數九牛毛。 - - - - -修身 - - -  六合是我底六合,那個是人?我是六合底我,那個是我? - -  世上沒個分外好底,便到天地位,萬物育底功用,也是性分中應盡底事業。今人才 -有一善,便向人有矜色,便見得世上人都有不是,余甚恥之。若說分外好,這又是賢智 -之過,便不是好。 - -  率真者無心過,殊多躁言輕舉之失;慎密者無口過,不免厚貌深情之累。心事如青 -天白日,言動如履薄臨深,其惟君子乎? - -  沉靜最是美質,蓋心存而不放者。今人獨居無事,已自岑寂難堪,才應事接人,便 -任口恣情,即是清狂,亦非蓄德之器。 - -  攻己惡者,顧不得攻人之惡。若嘵嘵爾雌黃人,定是自治疏底。 - -  大事難事看擔當,逆境順境看襟度,臨喜臨怒看涵養,群行群止看識見。 - -  身是心當,家是主人翁當,郡邑是守令當,九邊是將帥當,千官是冢宰當,天下是 -天子當,道是聖人當。故宇宙內幾樁大事,學者要挺身獨任,讓不得人,亦與人計行止 -不得。 - -  作人怕似渴睡漢,才喚醒時睜眼若有知,旋復沉困,竟是寐中人。須如朝興櫛盥之 -後,神爽氣清,冷冷勁勁,方是真醒。 - -  人生得有餘氣,便有受用處。言盡口說,事盡意做,此是薄命子。 - -  清人不借外景為襟懷,高士不以塵識染情性。 - -  官吏不要錢,男兒不做賊,女子不失身,才有了一分人。連這個也犯了,再休說別 -個。 - -  才有一段公直之氣,而出言做事便露圭角,是大病痛。 - -  講學論道於師友之時,知其心術之所藏何如也;飭躬勵行於見聞之地,知其暗室之 -所為何知也。然則盜跖非元憝也,彼盜利而不盜名也。世之大盜,名利兩得者居其最。 - -  圓融者無詭隨之態,精細者無苛察之心,方正者無乖拂之失,沉默者無陰險之術, -誠篤者無椎魯之累,光明者無淺露之病,勁直者無徑情之偏,執持者無拘泥之跡,敏練 -者無輕浮之狀,此是全才。有所長而矯其長之失,此是善學。 - -  不足與有為者自附於行所無事之名,和光同塵者自附於無可無不可之名。聖人惡莠 -也以此。 - -  古之士民,各安其業,策勵精神,點檢心事。晝之所為,夜而思之,又思明日之所 -為。君子汲汲其德,小人汲汲其業,日累月進,旦興晏息,不敢有一息惰慢之氣。夫是 -以士無慆德,民無怠行;夫是以家給人足,道明德積,身用康強,不即於禍。今也不然 -,百畝之家不親力作,一命之士不治常業,浪談邪議,聚笑覓歡,耽心耳目之玩,騁情 -遊戲之樂,身衣綺縠,口厭芻豢,志溺驕佚,懵然不知日用之所為,而其室家土田百物 -往來之費又足以荒志而養其淫,消耗年華,妄費日用。噫!是亦名為人也,無惑乎後艱 -之踵至也! - -  世人之形容人過,只象個盜跖;迴護自家,只象個堯舜。不知這卻是以堯舜望人, -而以盜跖自待也。 - -  孟子看鄉黨自好看得甚卑。近年看鄉黨人自好底不多。愛名惜節,自好之謂也。 - -  少年之情,欲收斂不欲豪暢,可以謹德;老人之情,欲豪暢不欲鬱閼,可以養生。 - -  廣所依不如擇所依,擇所依不如無所依。無所依者,依天也。依天者,有獨知之契 -,雖獨立宇宙之內而不謂孤;眾傾之、眾毀之而不為動,此之謂男子。 - -  坐間皆談笑而我色莊,坐間皆悲感而我色怡,此之謂乖戾,處己處人兩失之。 - -  精明也要十分,只須藏在渾厚裡作用。古今得禍,精明人十居其九,未有渾厚而得 -禍者。今之人惟恐精明不至,乃所以為愚也。 - -  分明認得自家是,只管擔當直前做去。卻因毀言輒便消沮,這是極無定力底,不可 -以任天下之重。 - -  小屈以求大伸,聖賢不為。吾道必大行之日然後見,便是抱關擊柝,自有不可枉之 -道。松柏生來便直,士君子窮居便正。若曰在下位、遇難事姑韜光忍恥,以圖他日貴達 -之時,然後直躬行道,此不但出處為兩截人,即既仕之後,又為兩截人矣。又安知大任 -到手不放過耶? - -  才能技藝,讓他占個高名,莫與角勝。至於綱常大節,則定要自家努力,不可退居 -人後。 - -  處眾人中,孤另另的別作一色人,亦吾道之所不取也。子曰:「群而不黨。」群占 -了八九分,不黨,只到那不可處方用。其用之也,不害其群,才見把持,才見涵養。 - -  今之人只是將「好名」二字坐君子罪,不知名是自好不將去。分人以財者,實費財 -;教人以善者,實勞心;臣死忠、子死孝、婦死節者,實殺身;一介不取者,實無所得 -。試著渠將這好名兒好一好,肯不肯?即使真正好名,所為卻是道理。彼不好名者,舜 -乎?跖乎?果舜耶,真加於好名一等矣;果跖耶,是不好美名而好惡名也。愚悲世之人 -以好名沮君子,而君子亦畏好名之譏而自沮,吾道之大害也,故不得不辨。凡我君子, -其尚獨,復自持,毋為嘵嘵者所撼哉。 - -  大其心容天下之物,虛其心受天下之善,平其心論天下之事,潛其心觀天下之理, -定其心應天下之變。 - -  古之居民上者,治一邑則任一邑之重,治一郡則任一郡之重,治天下則任天下之重 -。朝夕思慮其事,日夜經紀其務。一物失所,不遑安席;一事失理,不遑安食。限於才 -者求盡吾心,限於勢者求滿吾分,不愧於君之付托、民之仰望,然後食君之祿,享民之 -奉,泰然無所歉,反焉無所傀。否則是食浮於功也,君子恥之。 - -  盜嫂之誣直不疑,撾婦翁之誣第五倫,皆二子之幸也。何者?誣其所無。無近似之 -跡也,雖不辯而久則自明矣。或曰:「使二子有嫂、有婦翁,亦當辯否?」曰:「嫌疑 -之跡,君子安得不辯?『予所否者,天厭之,天厭之。』若付之無言,是與馬償金之類 -也,君子之所惡也。故君子不潔己以病人,亦不自污以徇世。」 - -  聽言不爽,非聖人不能。根以有成之心,蜚以近似之語,加之以不避嫌之事,當倉 -卒無及之際,懷隔閡難辯之恨,父子可以相賊,死亡可以不顧,怒室鬩牆,稽唇反目, -何足道哉!古今國家之敗亡,此居強半。聖人忘於無言,智者照以先覺,賢者熄於未著 -,剛者絕其口語,忍者斷於不行。非此五者,無良術矣。 - - -  榮辱繫乎所立,所立者固,則榮隨之,雖有可辱,人不忍加也;所立者廢,則辱隨 -之,雖有可榮,人不屑及也。是故君子愛其所自立,懼其所自廢。 - -  掩護勿攻,屈服勿怒,此用威者之所當知也;無功勿賞,盛寵勿加,此用愛者之所 -當知也。反是皆敗道也。 - -  稱人之善,我有一善,又何妒焉?稱人之惡,我有一惡,又何毀焉? - -  善居功者,讓大美而不居;善居名者,避大名而不受。 - -  善者不必福,惡者不必禍,君子稔知之也,寧禍而不肯為惡。忠直者窮,諛佞者通 -,君子稔知之也,寧窮而不肯為佞。非但知理有當然,亦其心有所不容已耳。 - -  居尊大之位,而使賢者忘其貴重,卑者樂於親炙,則其人可知矣。 - -  人不難於違眾,而難於違己。能違己矣,違眾何難? - -  攻我之過者,未必皆無過之人也。苟求無過之人攻我,則終身不得聞過矣。我當感 -其攻我之益而已,彼有過無過何暇計哉? - -  恬淡老成人又不能俯仰,一世便覺乾燥;圓和甘潤人又不能把持,一身便覺脂韋。 - -  做人要做個萬全,至於名利地步休要十分占盡,常要分與大家,就帶些缺綻不妨。 -何者?天下無人己俱遂之事,我得人必失,我利人必害,我榮人必辱,我有美名人必有 -愧色。是以君子貪德而讓名,辭完而處缺,使人我一般,不嶢嶢露頭角、立標臬,而胸 -中自有無限之樂。孔子謙己,嘗自附於尋常人,此中極有意趣。 - -  「明理省事」甚難,此四字終身理會不盡,得了時,無往而不裕如。 - -  胸中有一個見識,則不惑於紛雜之說;有一段道理,則不撓於鄙俗之見。《詩》云 -:「匪先民是程,匪大猷是經,……惟邇言是爭。」平生讀聖賢書,某事與之合,某事 -與之背,即知所適從,知所去取。否則口《詩》《書》而心眾人也,身儒衣冠而行鄙夫 -也。此士之稂莠也。 - -  世人喜言無好人,此孟浪語也。今且不須擇人,只於市井稠人中聚百人而各取其所 -長,人必有一善,集百人之善可以為賢人;人必有一見,集百人之見可以決大計。恐我 -於百人中未必人人高出之也,而安可忽匹夫匹婦哉? - -  學欲博,技欲工,難說不是一長,總較作人只是夠了便止。學如班、馬,字如鍾、 -王,文如曹、劉,詩如李;杜,錚錚千古知名,只是個小藝習,所貴在作人好。 - -  到當說處,一句便有千鈞之力,卻又不激不疏,此是言之上乘。除此雖十緘也不妨。 - -  循弊規若時王之制,守時套若先聖之經,侈己自得,惡聞正論,是人也,亦大可憐 -矣,世教奚賴焉! - -  心要常操,身要常勞。心愈操愈精明,身愈勞愈強健。但自不可過耳。 - -  未適可,必止可;既適可,不過可,務求適可而止。此吾人日用持循,須臾粗心不 -得。 - -  士君子之偶聚也,不言身心性命,則言天下國家;不言物理人情,則言風俗世道; -不規目前過失,則問平生德業。傍花隨柳之間,吟風弄月之際,都無鄙俗媟嫚之談,謂 -此心不可一時流於邪僻,此身不可一日令之偷惰也。若一相逢,不是褻狎,便是亂講, -此與僕隸下人何異?只多了這衣冠耳。 - -  作人要如神龍,屈伸變化,自得自如,不可為勢利術數所拘縛。若羈絆隨人,不能 -自決,只是個牛羊。然亦不可嘵嘵悻悻。故大智上哲看得幾事分明,外面要無跡無言, -胸中要獨往獨來,怎被機械人駕馭得? - -  「財色名位」,此四字考人品之大節目也。這裡打不過,小善不足錄矣。自古砥礪 -名節者,兢兢在這裡做工夫,最不可容易放過。 - -  古之人非曰位居貴要、分為尊長而遂無可言之人、無可指之過也;非曰卑幼貧賤之 -人一無所知識、即有知識而亦不當言也。蓋體統名分確然不可易者,在道義之外;以道 -相成、以心相與,在體統名分之外。哀哉!後世之貴要尊長而遂無過也。 - -  只盡日點檢自家,發出念頭來,果是人心?果是道心?出言行事果是公正?果是私 -曲?自家人品自家定了幾分?何暇非笑人,又何敢喜人之譽己耶? - -  往見泰山喬岳,以立身四語甚愛之,疑有未盡,因推廣為男兒八景,云:「泰山喬 -岳之身,海闊天空之腹,和風甘雨之色,日照月臨之目,旋乾轉坤之手,磐石砥柱之足 -,臨深履薄之心,玉潔冰清之骨。」此八景予甚愧之,當與同志者竭力從事焉。 - -  求人已不可,又求人之轉求;徇人之求已不可,又轉求人之徇人;患難求人已不可 -,又以富貴利達求人。此丈夫之恥也。 - -  文名、才名、藝名、勇名,人盡讓得過,惟是道德之名,則妒者眾矣;無文、無才 -、無藝、無勇,人盡謙得起,惟是無道德之名,則愧者眾矣。君子以道德之實潛修,以 -道德之名自掩。 - -  「有諸己而後求諸人,無諸己而後非諸人」,固是藏身之恕;有諸己而不求諸人, -無諸己而不非諸人,自是無言之感。《大學》為居上者言,若士君子守身之常法,則余 -言亦蓄德之道也。 - -  乾坤盡大,何處容我不得?而到處不為人所容,則我之難容也。眇然一身而為世上 -難容之人,乃號於人曰:「人之不能容我也。」吁!亦愚矣哉。 - -  名分者,天下之所共守者也。名分不立,則朝廷之紀綱不尊而法令不行。聖人以名 -分行道,曲士恃道以壓名分,不知孔子之道視魯侯奚啻天壤,而《鄉黨》一篇何等盡君 -臣之禮!乃知尊名分與諂時勢不同,名分所在,一毫不敢傲惰;時勢所在,一毫不敢阿 -諛。固哉!世之腐儒以尊名分為諂時勢也;卑哉!世之鄙夫以諂時勢為尊名分也。 - -  聖人之道,太和而已,故萬物皆育。便是秋冬不害其為太和,況太和又未嘗不在秋 -冬宇宙間哉!余性褊,無弘度、平心、溫容、巽語,願從事於太和之道以自廣焉。 - -  只竟夕點檢,今日說得幾句話關係身心,行得幾件事有益世道,自慊自愧,恍然獨 -覺矣。若醉酒飽肉、恣談浪笑,卻不錯過了一日;亂言妄動、昧理從欲,卻不作孽了一 -日。 - -  只一個俗念頭,錯做了一生人;只一雙俗眼目,錯認了一生人。 - -  少年只要想我見在幹些甚麼事,到頭成個甚麼人,這便有多少恨心!多少愧汗!如 -何放得自家過? - -  明鏡雖足以照秋毫之末,然持以照面不照手者何?面不自見,借鏡以見,若手則吾 -自見之矣。鏡雖明,不明於目也,故君子貴自知自信。以人言為進止,是照手之識也。 -若耳目識見所不及,則匪天下之見聞不濟矣。 - -  義、命、法,此三者,君子之所以定身,而眾人之所妄念者也。從妄念而巧邪,圖 -以幸其私,君子恥之。夫義不當為,命不能為,法不敢為,雖欲強之,豈惟無獲,所喪 -多矣。即獲亦非福也。 - -  避嫌者,尋嫌者也;自辯者,自誣者也。心事重門洞達,略不回邪;行事八窗玲瓏 -,毫無遮障,則見者服,聞者信。稍有不白之誣,將家家為吾稱冤,人人為吾置喙矣。 -此之謂潔品,不自潔而人潔之。 - -  善之當為,如飲食衣服然,乃吾人日用常行事也。人未聞有以禍福廢衣食者,而為 -善則以禍福為行止;未聞有以毀譽廢衣食者,而為善則以毀譽為行止。惟為善心不真誠 -之故耳。果真、果誠,尚有甘死饑寒而樂於趨善者。 - -  有象而無體者,畫人也,欲為而不能為。有體而無用者,塑人也,清淨尊嚴,享犧 -牲香火,而一無所為。有運動而無知覺者,偶人也,持提掇指使而後為。此三人者,身 -無血氣,心無靈明,吾無責矣。 - -  我身原無貧富貴賤得失榮辱字,我只是個我,故富貴貧賤得失榮辱如春風秋月,自 -去自來,與心全不牽掛,我到底只是個我。夫如是,故可貧可富,可貴可賤,可得可失 -,可榮可辱。今人惟富貴是貪,其得之也必喜,其失之也如何不悲?其得之也為榮,其 -失之也如何不辱?全是靠著假景作真身,外物為分內,此二氏之所笑也,況吾儒乎?吾 -輩做工夫,這個是第一。吾愧不能,以告同志者。 - -  「本分」二字,妙不容言。君子持身不可不知本分,知本分則千態萬狀一毫加損不 -得。聖王為治,當使民得其本分,得本分則榮辱死生一毫怨望不得。子弒父,臣弒君, -皆由不知本分始。 - -  兩柔無聲,合也;一柔無聲,受也。兩剛必碎,激也;一剛必損,積也。故《易》 -取一剛一柔,是謂乎中,以成天下之務,以和一身之德,君子尚之。 - -  毋以人譽而遂謂無過。世道尚渾厚,人人有心史也。人之心史真,惟我有心史而後 -無畏人之心史矣。 - -  淫怒是大惡,裡面御不住氣,外面顧不得人,成甚涵養?或曰:「涵養獨無怒乎? -」曰:「聖賢之怒自別。」 - -  凡智愚無他,在讀書與不讀書;禍福無他,在為善與不為善;貧富無他,在勤儉與 -不勤儉;毀譽無他,在仁恕與不仁恕。 - -  古人之寬大,非直為道理當如此,然煞有受用處。弘器度以養德也,省怨怒以養氣 -也,絕仇讎以遠禍也。 - -  平日讀書,惟有做官是展布時。將窮居所見聞及生平所欲為者一一試嘗之,須是所 -理之政事各得其宜,所治之人物各得其所,才是滿了本然底分量。 - -  只見得眼前都不可意,便是個礙世之人。人不可我意,我必不可人意。不可人意者 -我一人,不可我意者千萬人。嗚呼!未有不可千萬人意而不危者也。是故智者能與世宜 -,至人不與世礙。 - -  性分、職分、名分、勢分,此四者,宇內之大物。性分、職分在己,在己者不可不 -盡;名分、勢分在上,在上者不可不守。 - -  初看得我污了世界,便是個盜跖;後看得世界污了我,便是個伯夷;最後看得世界 -也不污我,我也不污世界,便是個老子。 - -  心要有城池,口要有門戶。有城池則不出,有門戶則不縱。 - -  士君子作人不長進,只是不用心、不著力。其所以不用心、不著力者,只是不愧不 -奮。能愧能奮,聖人可至。 - -  有道之言,將之心悟;有德之言,得之躬行。有道之言弘暢,有德之言親切。有道 -之言如遊萬貨之肆,有德之言如發萬貨之商。有道者不容不言;有德者無俟於言,雖然 -,未嘗不言也,故曰:「有德者必有言。」 - -  學者說話要簡重從容,循物傍事,這便是說話中涵養。 - -  或問:「不怨不尤了,恐於事天處人上更要留心不?」曰:「這天人兩項,千頭萬 -緒,如何照管得來?有個簡便之法,只在自家身上做,一念、一言、一事都點檢得,沒 -我分毫不是,那禍福毀譽都不須理會。我無求禍之道而禍來,自有天耽錯;我無致毀之 -道而毀來,自有人耽錯,與我全不干涉。若福與譽是我應得底,我不加喜;是我倖得底 -,我且惶懼愧赧。況天也有力量不能底,人也有知識不到底,也要體悉他。卻有一件緊 -要,生怕我不能格天動物,這個稍有欠缺,自怨自尤且不暇,又那顧得別個?孔子說個 -「上不怨,下不尤」,是不願乎其外道理;孟子說個「仰不愧,俯不怍」,是素位而行 -道理,此二意常相須。 - - -  天理本自廉退,而吾又處之以疏;人欲本善夤緣,而吾又狎之以親。小人滿方寸而 -君子在千里之外矣,欲身之修,得乎?故學者與天理處,始則敬之如師保,既而親之如 -骨肉,久則渾化為一體。人欲雖欲乘間而入也,無從矣。 - -  氣忌盛,心忌滿,才忌露。 - -  外勍敵五:聲色、貸利、名位、患難、晏安。內勍敵五:惡怒、喜好、牽纏、褊急 -、積慣。世君子終日被這個昏惑凌駕,此小勇者之所納款,而大勇者之所務克也。 - -  玄奇之疾,醫以平易;英發之疾,醫以深沉;闊大之疾,醫以充實。不遠之復,不 -若未行之審也。 - -  奮始怠終,修業之賊也;緩前急後,應事之賊也;躁心浮氣,畜德之賊也;疾言厲 -色,處眾之賊也。 - -  名心盛者必作偽。 - -  做大官底是一樣家數,做好人底是一樣家數。 - -  見義不為,又托之違眾,此力行者之大戒也。若肯務實,又自逃名,不患於無術, -吾竊以自恨焉。 - -  「恭敬謙謹」,此四字有心之善也;「狎侮傲凌」,此四字有心之惡也,人所易知 -也。至於「怠忽惰慢」,此四字乃無心之失耳。而丹書之戒,怠勝敬者凶,論治忽者, -至分存亡;《大學》以傲惰同論;曾子以暴慢連語者,何哉?蓋天下之禍患皆起於四字 -,一身之罪過皆生於四字,怠則一切苟且,忽則一切昏忘,惰則一切疏懶,慢則一切延 -遲。以之應事則萬事皆廢,以之接人則眾心皆離。古人臨民如馭朽索,使人如承大祭, -況接平交以上者乎?古人處事不泄邇,不忘遠,況目前之親切重大者乎?故曰「無眾寡 -,無大小,無敢慢」,此九字即「毋不敬」。「毋不敬」三字,非但聖狂之分,存亡治 -亂、死生禍福之關也,必然不易之理也。沉心精應者始真知之。 - -  人一生大罪過只在「自是自私」四字。 - -  古人慎言,每云「有餘不敢盡」。今人只盡其餘,還不成大過。只是附會支吾,心 -知其非而取辯於口,不至屈人不止,則又盡有餘者之罪人也。 - -  真正受用處,十分用不得一分,那九分都無些干係。而拼死忘生、忍辱動氣以求之 -者,皆九分也,何術悟得他醒?可笑可歎! - -  貧不足羞,可羞是貧而無志;賤不足惡,可惡是賤而無能;老不足歎,可歎是老而 -虛生;死不足悲,可悲是死而無聞。 - -  聖人之聞善言也,欣欣然惟恐尼之,故和之以同言,以開其樂告之誠;聖人之聞過 -言也,引引然惟恐拂之,故內之以溫色,以誘其忠告之實。何也?進德改過為其有益於 -我也。此之謂至知。 - -  古者招隱逸,今也獎恬退,吾黨可以愧矣。古者隱逸養道,不得已而後出;今者恬 -退養望,邀虛名以干進,吾黨可以戒矣。 - -  喜來時一點檢,怒來時一點檢,怠惰時一點檢,放肆時一點檢,此是省察大條款。 -人到此多想不起、顧不得,一錯了,便悔不及。 - -  治亂繫所用事。天下國家,君子用事則治,小人用事則亂;一身,德性用事則治, -氣習用事則亂。 - -  難管底是任意,難防底是慣病。此處著力,便是穴上著針、癢處著手。 - -  試點檢終日說話,有幾句恰好底,便見所養。 - -  業刻木如鋸齒,古無文字,用以記日行之事數也。一事畢則去一刻,事俱畢則盡去 -之,謂之修業。更事則再刻如前。大事則大刻,謂之大業;多事則多刻,謂之廣業。士 -農工商所業不同,謂之常業。農為士則改刻,謂之易業。古人未有一生無所業者,未有 -一日不修業者,故古人身修事理而無怠惰荒寧之時,常有憂勤惕勵之志。一日無事則一 -日不安,懼業之不修而曠日之不可也。今也昏昏蕩蕩,四肢不可收拾,窮年終日無一猷 -為,放逸而入於禽獸者,無業之故也。人生兩間,無一事可見,無一善可稱,資衣藉食 -於人而偷安惰行以死,可羞也已。 - -  古之謗人也,忠厚誠篤。《株林》之語,何等渾涵!輿人之謠,猶道實事。後世則 -不然,所怨在此,所謗在彼。彼固知其所怨者未必上之非而其謗不足以行也,乃別生一 -項議論。其才辯附會足以泯吾怨之之實,啟人信之之心,能使被謗者不能免謗之之禍, -而我逃謗人之罪。嗚呼!今之謗,雖古之君子且避忌之矣。聖賢處謗無別法,只是自修 -,其禍福則聽之耳。 - -  處利則要人做君子,我做小人;處名則要人做小人,我做君子,斯惑之甚也。聖賢 -處利讓利,處名讓名,故淡然恬然,不與世忤。 - -  任教萬分矜持,千分點檢,裡面無自然根本,倉卒之際、忽突之頃,本態自然露出 -。是以君子慎獨。獨中只有這個,發出來只是這個,何勞迴護?何用支吾? - -  力有所不能,聖人不以無可奈何者責人;心有所當盡,聖人不以無可奈何者自諉。 - -  或問:「孔子緇衣羔裘,素衣麑裘,黃衣狐裘,無乃非位素之義與?」曰:「公此 -問甚好。慎修君子,寧失之儉素不妨。若論大中至正之道,得之為,有財卻儉不中禮, -與無財不得為而侈然自奉者相去雖遠,而失中則均。聖賢不諱奢之名,不貪儉之美,只 -要道理上恰好耳。」 - -  寡恩曰薄,傷恩曰刻,盡事曰切,過事曰激。此四者,寬厚之所深戒也。 - -  《易》稱「道濟天下」,而吾儒事業動稱行道濟時、濟世安民。聖人未嘗不貴濟也 -。舟覆矣,而保得舟在,謂之濟可乎?故為天下者,患知有其身,有其身不可以為天下。 - -  萬物安於知足,死於無厭。 - -  足恭過厚,多文密節,皆名教之罪人也。聖人之道自有中正。彼鄉愿者,徼名懼譏 -,希進求榮,辱身降志,皆所不恤,遂成舉世通套。雖直道清節之君子,稍無砥柱之力 -,不免逐波隨流,其砥柱者旋以得罪。嗟夫!佞風諛俗不有持衡當路者一極力挽回之, -世道何時復古耶? - -  時時體悉人情,念念持循天理。 - -  愈進修愈覺不長,愈點檢愈覺有非。何者?不留意作人,自家盡看得過;只日日留 -意向上,看得自家都是病痛。那有些好處?初頭只見得人欲中過失,到久久又見得天理 -中過失,到無天理過失則中行矣。又有不自然、不渾化、著色吃力過失,走出這個邊境 -才是聖人,能立無過之地。故學者以有一善自多、以寡一過自幸,皆無志者也。急行者 -只見道遠而足不前,急耘者只見草多而鋤不利。 - -  禮義之大防,壞於眾人一念之苟。譬如由徑之人,只為一時倦行幾步,便平地踏破 -一條蹊徑。後來人跟尋舊跡,踵成不可塞之大道。是以君子當眾人所驚之事略不動容, -才干礙禮義上些須,便愕然變色,若觸大刑憲然,懼大防之不可潰,而微端之不可開也 -。嗟夫!此眾人之所謂迂而不以為重輕者也。此開天下不可塞之釁者,自苟且之人始也。 - -  大行之美,以孝為第一;細行之美,以廉為第一。此二者,君子之所務敦也。然而 -不辨之申生不如不告之舜,井上之李不如受饋之鵝。此二者,孝廉之所務辨也。 - -  吉凶禍福是天主張,毀譽予奪是人主張,立身行已是我主張。此三者,不相奪也。 - -  不得罪於法易,不得罪於理難。君子只是不得罪於理耳。 - -  凡在我者都是分內底,在天、在人者都是分外底。學者要明於內外之分,則在內缺 -一分便是不成人處,在外得一分便是該知足處。 - -  聽言觀行,是取人之道;樂其言而不問其人,是取善之道。今人惡聞善言,便訑訑 -曰:「彼能言而行不逮,言何足取?」是弗思也。吾之聽言也,為其言之有益於我耳。 -苟益於我,人之賢否奚問焉?衣敝枲者市文繡,食糟糠者市粱肉,將以人棄之乎? - -  取善而不用,依舊是尋常人,何貴於取?譬之八珍方丈而不下箸,依然餓死耳。 - -  有德之容,深沉凝重,內充然有餘,外闃然無跡。若面目都是精神,即不出諸口, -而漏泄已多矣。畢竟是養得浮淺,譬之無量人,一杯酒便達於面目。 - -  人人各有一句終身用之不盡者,但在存心著力耳。或問之,曰:「只是對症之藥便 -是。如子張只消得『存誠』二字,宰我只消得『警惰』二字,子路只消得『擇善』二字 -,子夏只消得『見大』二字。」 - -  言一也,出由之口,則信且從;出跖之口,則三令五申而人且疑之矣。故有言者, -有所以重其言者。素行孚人,是所以重其言者也。不然,且為言累矣。 - -  世人皆知笑人,笑人不妨,笑到是處便難,到可以笑人時則更難。 - -  毀我之言可聞,毀我之人不必問也。使我有此事也,彼雖不言,必有言之者。我聞 -而改之,是又得一不受業之師也。使我無此事耶,我雖不辯,必有辯之者。若聞而怒之 -,是又多一不受言之過也。 - -  精明,世所畏也而暴之;才能,世所妒也而市之,不沒也夫! - -  只一個貪愛心,第一可賤可恥。羊馬之於水草,蠅蟻之於腥羶,蜣螂之於積糞,都 -是這個念頭。是以君子制欲。 -  清議酷於律令,清議之人酷於治獄之吏。律令所冤,賴清議以明之,雖死猶生也; -清議所冤,萬古無反案矣。是以君子不輕議人,懼冤之也。惟此事得罪於天甚重,報必 -及之。 - -  權貴之門,雖係通家知已,也須見面稀、行蹤少就好。嘗愛唐詩有「終日帝城裡, -不識五侯門」之句,可為新進之法。 - -  聞世上有不平事,便滿腔憤懑,出激切之語,此最淺夫薄子,士君子之大戒。 - -  仁厚刻薄是修短關,行止語默是禍福關,勤惰儉奢是成敗關,飲食男女是死生關。 - -  言出諸口,身何與焉?而身亡。五味宜於口,腹何知焉?而腹病。小害大,昭昭也 -,而人每縱之徇之,恣其所出,供其所入。 - -  渾身都遮蓋得,惟有面目不可掩。面目者,公之證也。即有厚貌者,卒然難做預備 -,不覺心中事都發在面目上。故君子無愧心則無怍容。中心之達達以此也,肺肝之視視 -以此也。此修己者之所畏也。 -  韋弁布衣,是我生初服,不愧,此生儘可以還大造。軒冕是甚物事?將個丈夫來做 -壞了,有甚面目對那青天白日?是宇宙中一腐臭物也,乃揚眉吐氣,以此誇人,而世人 -共榮慕之,亦大異事。 -  多少英雄豪傑可與為善而卒無成,只為拔此身於習俗中不出。若不恤群謗,斷以必 -行,以古人為契友,以天地為知己,任他千誣萬毀何妨? -  為人無復揚善者之心,無實稱惡者之口,亦可以語真修矣。 -  身者,道之輿也。身載道以行,道非載身以行也。故君子道行,則身從之以進;道 -不行,則身從之以退。道不行而求進不已,譬之大賈百貨山積不售,不載以歸,而又以 -空輿僱錢也;販夫笑之,貪鄙孰甚焉?故出處之分,只有工語:道行則仕, 道不行則 -卷而懷之。舍是皆非也。 -  世間至貴,莫如人品與天地參,與古人友,帝王且為之屈,天下不易其守。而乃以 -聲色、財貨、富貴、利達,輕輕將個人品賣了,此之謂自賤。商賈得奇貨亦須待價,況 -士君子之身乎? -  身以不護短為第一長進人。能不護短,則長進至矣。 -  世有十態,君子免焉:無武人之態(粗豪),無婦人之態(柔懦),無兒女之態( -嬌稚),無市井之態(貪鄙),無俗子之態(庸陋);無蕩子之態(儇佻),無伶優之 -態(滑稽);無閭閻之態(村野),無堂下人之態(局迫),無婢子之態:(卑諂), -無偵諜之態(詭暗),無商賈之態(衒售)。 -  作本色人,說根心話,幹近情事。 -  君子有過不辭謗,無過不反謗,共過不推謗。謗無所損於君子也。 -  惟聖賢終日說話無一字差失。其餘都要擬之而後言,有餘,不敢盡,不然未有無過 -者。故惟寡言者寡過。 -  心無留言,言無擇人,雖露肺肝,君子不取也。彼固自以為光明矣,君子何嘗不光 -明?自不輕言,言則心口如一耳。 -  保身底是德義,害身底是才能。德義中之才能,嗚呼!免矣。 -  恒言「疏懶勤謹」,此四字每相因。懶生疏,謹自勤。聖賢之身豈生而惡逸好勞哉 -?知天下皆惰慢則百務廢弛,而亂亡隨之矣。先正云:古之聖賢未嘗不以怠惰荒寧為懼 -,勤勵不息自強;曰懼;曰強而聖賢之情見矣,所謂憂勤惕勵者也。惟憂故勤,惟惕故 -勵。 -  謔非有道之言也。孔於豈不戲?竟是道理上脫灑。今之戲者,媟矣,即有滑稽之巧 -,亦近俳優之流。凝靜者恥之。 -  無責人,自修之第一要道;能體人,養量之第一要法。 -  予不好走貴公之門,雖情義所關,每以無謂而止。或讓予曰:「奔走貴公,得不謂 -其喜乎?」或曰:「懼彼以不奔走為罪也。」 -  予歎曰:「不然。貴公之門奔走如市,彼固厭苦之甚者見於顏面,但渾厚忍不發於 -聲耳。徒輸自己一勤勞,徒增貴公一厭惡。且入門一揖之後,賓主各無可言,此面愧郝 -已無髮付處矣。予恐初入仕者犯於眾套而不敢獨異,故發明之。」 -  亡我者,我也。人不自亡,誰能亡之? -  沾沾煦煦,柔潤可人,丈夫之大恥也。君子豈欲與人乖戾? 但自有正情真味故柔 -嘉不是軟美,自愛者不可不辨。 -  士大夫一身,斯世之奉弘矣。不蠶織而文繡,不耕畜而膏梁,不僱貸而本馬,不商 -販而積蓄,此何以故也?乃於世分毫無補,慚負兩間。『人又以大官詫市井兒,蓋棺有 -餘愧矣。 -  且莫論身體力行,只聽隨在聚談間曾幾個說天下、國家、身心、性命正經道理?終 -日嘵嘵刺刺,滿口都是閒談亂談。吾輩試一猛省,士君子在天地間可否如此度日? -  君子慎求人。講道問德,雖屈已折節,自是好學者事。若富貴利達向人開口,最傷 -士氣,寧困頓沒齒也。 -  言語之惡,莫大於造誣,行事之惡,莫大於苛刻;心術之惡,莫大於深險。 -  自家才德,自家明白的。才短德微,即卑官薄祿,已為難稱。若已逾涘分而觖望無 -窮,卻是難為了造物。孔孟身不遇,又當如何? -  不善之名,每成於一事,後有諸長,不能掩也;而惟一不善傳。君子之動可不慎與 -? -  一日與友人論身修道理,友人曰:「吾老矣。」某曰:「公無自棄。平日為惡,即 -屬行時幹一好事,不失為改過之鬼,況一息尚存乎?」 -  既做人在世間,便要勁爽爽、立錚錚的。若如春蚓秋蛇,風花雨絮,一生靠人作骨 -,恰似世上多了這個人。 -  有人於此,精密者病其疏,靡綺者病其陋,繁縟者病其簡,謙恭者病其倨,委曲者 -病其直,無能可於一世之人,奈何?曰:一身怎可得一世之人,只自點檢吾身果如所病 -否?若以一身就眾口,孔子不能,即能之,成個甚麼人品?放君子以中道為從違,不以 -眾言為憂喜。 -  夫禮非徒親人,乃君子之所以自愛也;非徒尊人,乃君子之所以敬身也。 -  君子之出言也,如嗇夫之用財;其見義也,如貪夫之趨利。 -  古之人勤勵,今之人惰慢。勤勵故精明,而德日修;惰慢故昏蔽,而欲日肆。是以 -聖人貴憂勤惕勵。 -  先王之禮文用以飾情,後世之禮文用以飾偽。飾情則三千三百,雖至繁也,不害其 -為率真;飾偽則雖一揖一拜,已自多矣。後之惡飾偽者,乃一切苟簡決裂,以潰天下之 -防,而自謂之率真,將流於伯子之簡而不可行,又禮之賊也。 -  清者濁所妒也,而又激之淺之乎?其為量矣。是故君子於已諱美,於人藏疾。若有 -激濁之任者,不害其為分曉。 -  處世以譏訕為第一病痛。不善在彼,我何與焉? -  余待小人不能假辭色,小人或不能堪。年友王道源危之曰:「今世居官切宜戒此。 -法度是朝廷的,財貨是百姓的,真借不得人情。至於辭色,卻是我的;假借些兒何害? -」余深感之,因識而改焉。 -  剛、明,世之礙也。剛而婉,明而晦,免禍也夫! - -  君子之所持循,只有兩條路:非先聖之成規,則時王之定制。此外悉邪也、俗也, -君子不由。 -  非直之難,而善用其直之難;非用直之難,而善養其直之難。 -  處身不妨於薄,待人不妨於厚;責己不妨於厚,責人不妨於薄。 -  坐於廣眾之中,四顧而後語,不先聲,不揚聲,不獨聲。 -  苦處是正容謹節,樂處是手舞足蹈。這個樂又從那苦處來。 -  滑稽談諧,言畢而左右顧,惟恐人無笑容,此所謂巧言令色者也。小人側媚皆此態 -耳。小子戒之。 -  人之視小過也,愧作悔恨如犯大惡,夫然後能改。無傷二字,修己者之大戒也。 -  有過是一過,不肯認過又是一過。一認則兩過都無,一不認則兩過不免。彼強辯以 -飾非者,果何為也? -  一友與人爭,而歷指其短。予曰,「於十分中,君有一分不是否?」友曰:「我難 -說沒一二分。」予曰:「且將這一二分都沒了才好責人。」 -  余二十年前曾有心跡雙清之志,十年來有四語云:「行欲清,名欲濁;道欲進,身 -欲退;利欲後,害欲前;人欲豐,己欲約。」 -  近看來,太執著,大矯激,只以無心任自然求當其可耳。名跡一任去來,不須照管 -。 -  君子之為善也,以為理所當為,非要福,非干祿;其不為不善也,以為理所不當為 -,非懼禍,非遠罪。至於垂世教,則諄諄以禍福刑賞為言。此天地聖王勸懲之大權,君 -子不敢不奉若而與眾共守也, -  茂林芳樹,好鳥之媒也;污池濁渠,穢蟲之母也,氣類之自然也。善不與福期,惡 -不與禍招。君子見正人而合,邪人見憸夫而密。 -  吾觀於射,而知言行矣。夫射審而後發,有定見也;滿而後發,有定力也。夫言能 -審滿,則言無不中;行能審滿,則行無不得。今之言行皆亂放矢也,即中,幸耳。 -  蝸以涎見覓,蟬以身見黏,螢以光見獲。故愛身者,不貴赫赫之名。 -  大相反者大相似,此理勢之自然也。故怒極則笑,喜極則悲。 -  敬者,不苟之謂也,故反苟為敬。 -  多門之室生風,多口之人生禍。 -  磨磚砌壁不涂以堊,惡掩其真也。一堊則人謂糞土之牆矣。 -  凡外飾者,皆內不足者。至道無言,至言無文,至文無法。 -  苦毒易避,甘毒難避。晉人之壁馬,齊人之女樂,越人之子女玉帛,其毒甚矣,而 -愚者如飴,即知之亦不復顧也。由是推之,人皆有甘毒,不必自外饋,而眈眈求之者且 -眾焉。豈獨虞人、魯人、吳人愚哉?知味者可以懼矣。 -  好逸惡勞,甘食悅色,適己害群,擇便逞忿,雖鳥獸亦能之。靈於萬物者,當求有 -別,不然,類之矣。且風德麟仁,鶴清豸直,烏孝雁貞,苟擇鳥獸之有知者而效法之, -且不失為君子矣。可以人而不如乎? -  萬事都要個本意;宮室之設,只為安居;衣之設,只為蔽體;食之設,只為充饑; -器之設,只為利用;妻之設,只為有後。推此類不可盡窮。苟知其本意,只在本意上求 -,分外的都是多了。 -  士大夫殃及子孫者有十:一曰優免太侈。二日侵奪太多。三曰請托滅公。四曰恃勢 -凌人。五曰困累鄉黨。六曰要結權貴,損國病人。七曰盜上剝下,以實私橐。八曰簧鼓 -邪說,搖亂國是。九曰樹黨報復,明中善人。十曰引用邪昵,虐民病國。 -  兒輩問立身之道。曰:「本分之內,不欠纖微;本分之外,不加毫末。今也本分弗 -圖,而加於本分之外者,不啻千萬矣。 -  內外之分何處別白?況敢問纖徽毫末間耶? -  智者不與命鬥,不與法鬥,不與理鬥,不與勢鬥。 -  學者事事要自責,慎無責人。人不可我意,自是我無量; 我不可人意,自是我無 -能。時時自反,才德無不進之理。 -  氣質之病小,心術之病大。 -  童心俗態,此二者士人之大恥也。二恥不服,終不可以入君子之路。 -  習成儀容止甚不打緊,必須是瑟僩中發出來,才是盛德光輝。那個不嚴厲?不放肆 -莊重?不為矜持戲濾?不為媟慢?惟有道者能之,惟有德者識之。 -  容貌要沉雅自然,只有一些浮淺之色,作為之狀,便是屋漏少工夫。 -  德不怕難積,只怕易累。千日之積不禁一日之累,是故君子防所以累者。 -  枕席之言,房闥之行,通乎四海。牆卑室淺者無論,即宮禁之深嚴,無有言而不知 -,動而不聞者。士君子不愛名節則已,如有一毫自好之心,幽獨盲動可不慎與? -  富以能施為德,貧以無求為德,貴以下人為德,賤以忘勢為德。 -  入廟不期敬而自敬,入朝不期肅而自肅,是以君子慎所入也。見嚴師則收斂,見狎 -友則放恣,是以君子慎所接也。 -  《氓》之詩,悔恨之極也,可為士君子殷鑒,當三復之。唐詩有云:「兩落不上天 -,水覆難再收。」又近世有名言一偶云:「一失腳為千古恨,再回頭是百年身。」此語 -足道《氓》詩心事,其曰亦已焉哉。所謂何嗟及矣,無可奈何之辭也。 -  平生所為,使怨我者得以指摘,愛我者不能掩護,此省身之大懼也。士君子慎之。 -故我無過,而謗語滔天不足諒也,可談笑而受之;我有過,而幸不及聞,當寢不貼席、 -食不下咽矣。 -  是以君子貴無惡於志。 -  謹言慎動,省事清心,與世無礙,與人無求,此謂小跳脫。 -  身要嚴重,意要安定,色要溫雅,氣要和平,語要簡切,心要慈祥,志要果毅,機 -要縝密。 -  善養身者,饑渴、寒暑、勞役,外感屢變,而氣體若一,未嘗變也;善養德者,死 -生、榮辱、夷險,外感屢變,而意念若一,未嘗變也。夫藏令之身,至發揚時而解〔亻 -亦〕;長令之身,至收斂時而鬱閼,不得謂之定氣。宿稱鎮靜,至倉卒而色變;宿稱淡 -泊,至紛華而心動,不得謂之定力。斯二者皆無養之過也。 -  裡面要活潑於規短之中,無令怠忽;外面要溜脫於禮法之中,無今矯強。 -  四十以前養得定,則老而愈堅;養不定,則老而愈壞。百年實難,是以君子進德修 -業貴及對也。 -  涵養如培脆萌,省察如搜田蠹,克治如去盤根。涵養如女子坐幽閨,省察如邏卒緝 -奸細,克治如將軍戰勍敵。涵養用勿忘勿助工夫,省察用無怠無荒工夫,克治用是絕是 -忽工夫。 -  世上只有個道理是可貪可欲的,初不限於取數之多,何者? -  所性分定原是無限量的,終身行之不盡。此外都是人欲,最不可萌一毫歆羨心。天 -之生人各有一定的分涯,聖人制人各有一定的品節,譬之擔夫欲肩輿,丐人欲鼎食,徒 -爾勞心,竟亦何益?嗟夫!篡奪之所由生,而大亂之所由起,皆恥其分內之不足安,而 -惟見分外者之可貪可欲故也。故學者養心先要個知分。 -  知分者,心常寧,欲常得,所欲得自足以安身利用。 -  心術以光明篤實為第一,容貌以正大老成為第一,言語以簡重真切為第一。 -  學者只把性分之所固有,職分之所當為;時時留心,件件努力,便駸駸乎聖賢之域 -。非此二者,皆是對外物,皆是妄為。 -  進德莫如不苟,不苟先要個耐煩。今人只為有躁心而不耐煩,故一切苟且卒至破大 -防而不顧,棄大義而不為,其始皆起於一念之苟也。 -  不能長進,只為昏弱兩字所苦。昏宜靜以澄神,神定則漸精明;弱宜奮以養氣,氣 -壯則漸強健。 -  一切言行,只是平心易氣就好。 -  恣縱既成,不惟禮法所不能制,雖自家悔恨,亦制自家不得。善愛人者,無使恣縱 -;善自愛者,亦無使恣縱。 -  天理與人欲交戰時,要如百戰健兒,九死不移,百折不回,其奈我何?如何堂堂天 -君,卻為人欲臣僕?內款受降,腔子中成甚世界? -  有問密語者囑曰:「望以實心相告!」余笑曰:「吾內有不可瞞之本心,上有不可 -欺之天日,在本人有不可掩之是非,在通國有不容泯之公論,一有不實,自負四愆矣。 -何暇以貌言誑門下哉?」 -  士君子澡心浴德,要使咳唾為玉,便溺皆香,才見工夫圓滿。若靈台中有一點污濁 -,便如瓜蒂藜蘆,入胃不嘔吐盡不止, -  豈可使一刻容留此中耶?夫如是,然後圂涵廁可沉,緇泥可入。 -  與其抑暴戾之氣,不若養和平之心;與其裁既溢之恩,不若絕分外之望;與其為後 -事之厚,不若施先事之簿;與其服延年之藥,不若守保身之方。 -  猥繁拂逆,生厭噁心,奮守耐之力;柔豔芳濃,生沾惹心,奮跳脫之力;推挽衝突 -,生隨逐心,奮執持之力;長途末路,生衰歇心,奮鼓舞之力;急遽疲勞,生苟且心, -奮敬慎之力。 -  進道入德莫要於有恒。有恒則不必欲速,不必助長,優優漸漸自到神聖地位。故天 -道只是個恒,每日定準是三百六十五度四分度之一,分毫不損不加,流行不緩不急,而 -萬古常存,萬物得所。只無恒了,萬事都成不得。余最坐此病。古人云:「有勤心,無 -遠道。」只有人勝道,無道勝人之理。 -  士君子只求四真:真心、真口、真耳、真眼。真心,無妄念;真口,無雜語;真耳 -,無邪聞;真眼,無錯識。 -  愚者人笑之,聰明者人疑之。聰明而愚,其大智也。夫《詩》云:「靡哲不愚」, -則知不愚非哲也。 -  以精到之識,用堅持之心,運精進之力,便是金石可穿,豚魚可格,更有甚麼難做 -之事功?難造之聖神?士君子碌碌一生,百事無成,只是無志。 -  其有善而彰者,必其有惡而掩者也。君子不彰善以損德,不掩惡以長慝。 -  余日日有過,然自信過發吾心,如清水之魚,才發即見,小發即覺,所以卒不得遂 -其豪悍,至流浪不可收拾者。胸中是非,原先有以照之也。所以常發者何也?只是心不 -存,養不定。 -  才為不善,怕污了名兒,此是徇外心,苟可瞞人,還是要做;才為不善,怕污了身 -子,此是為己心,即人不知,成為人疑謗,都不照管。是故欺大庭易,欺屋漏難;欺屋 -漏易,欺方寸難。 -  吾輩終日不長進處,只是個怨尤兩字,全不反己。聖賢學問,只是個自責自盡,自 -責自盡之道原無邊界,亦無盡頭。若完了自家分數,還要聽其在天在人,不敢怨尤。況 -自家舉動又多鬼責人非底罪過,卻敢怨尤耶?以是知自責自盡底人,決不怨尤;怨尤底 -人,決不肯自責自盡。吾輩不可不自家一照看,才照看,便知天人待我原不薄,惡只是 -我多慚負處。 -  果是瑚璉,人不忍以盛腐殠;果是荼蓼,人不肯以薦宗祊;履也,人不肯以加諸首 -;冠也,人不忍以籍其足。物猶然,而況於人乎?榮辱在所自樹,無以致之,何由及之 -?此自修者所 當知也。 -  無以小事動聲色,褻大人之體。 -  立身行已,服人甚難,也要看甚麼人不服,若中道君子不服,當蚤夜省惕。其意見 -不同、性術各別、志向相反者,只要求我一個是,也不須與他別自理會。 -  其惡惡不嚴者,必有惡於己者也;其好善不亟者,必無善於已者也。仁人之好善也 -,不啻口出;其惡惡也,迸諸四夷不與同中國。孟子曰:「無羞惡之心,非人也。」則 -惡惡亦君子所不免者,但恐為己私,作惡在他人,非可惡耳。若民之所惡而不惡;謂為 -民之父母可乎? -  世人糊塗,只是抵死沒自家不是,卻不自想,我是堯、舜乎?果是堯、舜,真是沒 -一毫不是?我若是湯武,未反之前也有分毫錯誤。如何盛氣拒人,巧言飾已,再不認一 -分過差耶? -  懶散二字,立身之賊也。千德萬業,日怠廢而無成;千罪萬惡,日橫恣而無制,皆 -此二字為之。西晉仇禮法而樂豪放,病本正在此安肆日偷。安肆,懶散之謂也。此聖賢 -之大成也。 -  甚麼降伏得此之字,日勤慎。勤慎者,敬之謂也。 -  不難天下相忘,只怕一人竊笑。夫舉世之不聞道也久矣,而聞道者未必無人。苟為 -聞道者所知,雖一世非之可也;苟為聞道者所笑,雖天下是之,終非純正之學。故曰: -眾皆悅之,其為士者笑之,有識之君子必不以眾悅博一笑也。 -  以聖賢之道教人易,以聖賢之道治人難,以聖賢之道出口易,以聖賢之道躬行難; -以聖賢之道奮始易,以聖賢之道克終難;以聖賢之道當人易,以聖賢之道慎獨難;以聖 -賢之道口耳易,以聖賢之道心得難;以聖賢之道處常易,以聖賢之道處變難。過此六難 -,真到聖賢地步。區區六易,豈不君子路上人?終不得謂篤實之士也。 -  山西臬司書齋,余新置一榻銘於其上左曰:「爾酣餘夢,得無有宵征露宿者乎?爾 -灸重衾,得無有抱肩裂膚者乎?古之人臥八埏於襁褓,置萬姓於衽席,而後突然得一夕 -之安。嗚呼!古之人亦人也夫?古之民亦民也夫?」右曰:「獨室不觸欲,君子所以養 -精;獨處不交言,君子所以養氣;獨魂不著礙,君子所以養神;獨寢不愧衾,君子所以 -養德。」 -  慎者之有餘,足以及人;不慎者之所積,不能保身。 -  近世料度人意,常向不好邊說去,固是衰世人心無忠厚之意。然土君子不可不自責 -。若是素行孚人,便是別念頭人亦向好邊料度,何者?所以自立者,足信也。是故君子 -慎所以立。 -  人不自愛,則無所不為;過於自愛,則一無可為。自愛者,先占名,實利於天下國 -家,而跡不足以白其心則不為;自愛者,先占利,有利於天下國家,而有損於富貴利達 -則不為。上之者即不為富貴利達,而有累於身家妻子則不為。天下事待其名利兩全而後 -為之,則所為者無幾矣。 -  與其喜聞人之過,不若喜聞已之過;與其樂道己之善,不若樂道人之善。 -  要非人,先要認的自家是個甚麼人;要認的自家,先看古人是個甚麼人。 -  口之罪大於百體,一進去百川灌不滿,一出來萬馬追不回。 -  家長不能令人敬,則教令不行?不能令人愛,則心志不孚。 -  自心得者,尚不能必其身體力行,自耳目入者,欲其勉從而強改焉,萬萬其難矣。 -故三達德不恃知也,而又欲其仁;不恃仁也,而又欲其勇。 -  合下作人自有作人道理,不為別個。 -  認得真了,便要不候終日,坐以待旦,成功而後止。 -  人生惟有說話是第一難事。 -  或問修己之道。曰:「無鮮克有終。」問治人之道。曰:「無忿疾於頑。」 -  人生天地間,要做有益於世底人。縱沒這心腸、這本事,也休作有損於世底人。 -  說話如作文字,字在心頭打點過,是心為草稿而口謄真也,猶不能無過,而況由易 -之言,真是病狂喪心者。 -  心不堅確,志不奮揚,力不勇猛,而欲徒義改過,雖千悔萬悔,競無補於分毫。 -  人到自家沒奈自家何時,便可慟哭。 -  福莫美於安常,禍莫危於盛滿。天地間萬物萬事未有盛滿而不衰者也。而盛滿各有 -分量,惟智者能知之。是故卮以一勺為盛滿,甕以數石為盛滿;有甕之容而懷勺之懼, -則慶有餘矣。 -  禍福是氣運,善惡是人事。理常相應,類亦相求。若執福善禍淫之說,而使之不爽 -,則為善之心衰矣。大叚氣運只是偶然,故善獲福、淫獲禍者半,善獲禍、淫獲福者亦 -半,不善不淫而獲禍獲福者亦半,人事只是個當然。善者獲福,吾非為福而修善;淫者 -獲禍,吾非為禍而改淫。善獲禍而淫獲福,吾 寧善而處禍,不肯淫而要福。是故君子 -論天道不言禍福,論人事不言利害。自吾性分當為之外,皆不庸心,其言禍福利害,為 -世教發也。 -  自天子以至於庶人,來有無所畏而不亡者也。天子者,上畏天,下畏民,畏言官於 -一時,畏史官於後世。百官畏君,群吏畏長吏,百姓畏上,君子畏公議,小人畏刑,子 -弟畏父兄,卑幼畏家長。畏則不敢肆而德以成,無畏則從其所欲而及於禍。 -  非生知,安行之?聖人未有無所畏而能成其德者也。 -  物忌全盛,事忌全美,人忌全名。是故天地有欠缺之體,聖賢無快足之心。而況瑣 -屑群氓,不安淺薄之分,而欲滿其難厭之欲,豈不安哉?是以君子見益而思損,持滿而 -思溢,不敢恣無涯之望。 -  靜定後看自家是甚麼一個人。 -  少年大病,第一怕是氣高。 -  余參政東藩日,與年友張督糧臨碧在座。余以朱判封筆濃字大,臨碧曰:「可惜! -可惜!」余擎筆舉手曰:「年兄此一念,天下受其福矣。判筆一字所費絲毫硃耳,積日 -積歲,省費不知幾萬倍。克用硃之心,萬事皆然。天下各衙門積日積歲省費又不知幾萬 -倍。且心不侈然自放,足以養德;財不侈然浪費,足以養福。不但天物不宜暴殄,民膏 -不宜慢棄而已。夫事有重於費者,過費不為奢;省有不廢事者,過省不為吝。」余在撫 -院日,不儉於紙,而戒示吏書片紙皆使有用。比見富貴家子弟,用財貨如泥沙,長餘之 -惠既不及人,有用之物皆棄於地,胸中無不忍一念,口中無可惜兩字。人或勸之,則曰 -:「所值幾何?」余嘗號為溝壑之鬼,而彼方侈然自以為大手段,不小家勢。痛哉!兒 -曹志之。 -  言語不到千該萬該,再休開口。 -  今人苦不肯謙,只要拿得架子定,以為存體。夫子告子張從政,以無小大、無眾寡 -、無敢慢為不驕,而周公為相,吐握下白屋甚者。父師有道之君,子不知損了甚體?若 -名分所在,自是貶損不得。 -  過寬殺人,過美殺身。是以君子不縱民情以全之也,不盈己欲以生之也。 -  閨門之事可傳,而後知君子之家法矣;近習之人起敬,而後知君子之身法矣。其作 -用處只是無不敬。 -  宋儒紛紛聚訟語且莫理會,只理會自家何等簡逕。 -  各自責,則天清地寧;各相責,則天翻地覆。 -  不逐物是大雄力量,學者第一工夫全在這裡做。 -  手容恭,足容重,頭容直,口容止,坐如屍,立如齋,儼若思,目無狂視,耳無傾 -聽,此外景也。外景是整齊嚴肅,內景是齋莊中正,未有不整齊嚴肅而能齋莊中正者。 -故撿束五宮百體,只為收攝此心。此心若從容和順於禮法之中,則曲肱指掌、浴沂行歌 -、吟風弄月、隨柳傍花,何適不可?所謂登彼岸無所事筏也。 -  天地位,萬物育,幾千年有一會,幾百年有一會,幾十年有一會。故天地之中和甚 -難。 -  敬對肆而言。敬是一步一步收斂向內,收斂至無內處,發出來自然暢四肢,發事業 -,瀰漫六合;肆是一步一步放縱外面去,肆之流禍不言可知。所以千古聖人只一敬字為 -允執的關捩子。堯欽明允恭,舜溫恭允塞,禹之安汝止,湯之聖敬日躋,文之朗恭,武 -之敬勝,孔於之恭而安。講學家不講這個,不知怎麼做工夫。 -  竊歎近來世道,在上者積寬成柔,積柔成怯,積怯成畏,積畏成廢;在下者積慢成 -驕,積驕成怨,積怨成橫,積橫成敢。 -  吾不知此時治體當如何反也。體面二字,法度之賊也。體面重,法度輕;法度弛, -紀綱壞。昔也病在法度,今也病在紀綱。名分者,紀綱之大物也。今也在朝小臣藐大臣 -,在邊軍士輕主帥,在家子婦蔑父母,在學校弟子慢師,後進凌先進,在鄉里卑幼軋尊 -長。惟貪肆是恣,不知禮法為何物,漸不可長。今已長矣,極之必亂必亡,勢已重矣, -反已難矣。無識者猶然,甚之,奈何? -  禍福者,天司之;榮辱者,君司之;毀譽者,人司之;善惡者,我司之。我只理會 -我司,別個都莫照管。 -  吾人終日最不可悠悠蕩蕩作空軀殼。 -  業有不得不廢時,至於德,則自有知以至無知時,不可一息斷進修之功也。 -  清無事澄,濁降則自清;禮無事復,己克則自復。去了病,便是好人;去了雲,便 -是晴天。 -  七尺之軀,戴天覆地,抵死不屈於人,乃自落草,以至蓋棺降志辱身、奉承物欲, -不啻奴隸,到那魂升於天之上,見那維皇上帝有何顏面?愧死!愧死! -  受不得誣謗,只是無識度。除是當罪臨刑,不得含冤而死,須是辯明。若污蔑名行 -,閒言長語,愈辨則愈加,徒自憤懑耳。 -  不若付之忘言,久則明也。得不明也,得自有天在耳。 -  作一節之士也要成章,不成章便是苗而不秀。 -  不患無人所共知之顯名,而患有人所不知之隱惡。顯明雖著遠邇,而隱惡獲罪神明 -。省躬者懼之。 -  蹈邪僻,則肆志抗額略無所顧忌;由義禮,則羞頭愧面若無以自容。此愚不肖之恒 -態,而士君子之大恥也。 -  物欲生於氣質。 -  要得富貴福澤,天主張,由不得我;要做賢人君子,我主張,由不得天。 -  為惡再沒個勉強底,為善再沒個自然底。學者勘破此念頭,寧不愧奮? -  不為三氏奴婢,便是兩間翁主。三氏者何?一曰氣質氏,生來氣稟在身,舉動皆其 -作使,如勇者多暴戾,懦者多退怯是已。二曰習俗氏,世態即成,賢者不能自免,只得 -與世浮沉,與世依違,明知之而不能獨立。三曰物欲氏,滿世皆可殢之物,每日皆殉欲 -之事,㽸痼流連,至死不能跳脫。魁然七尺之軀,奔走三家之門,不在此則在彼。降志辱 -身,心安意肯,迷戀不能自知,即知亦不愧憤,大丈夫立身天地之間,與兩儀參,為萬 -物靈,不能挺身自豎而倚門傍戶於三家,轟轟烈烈,以富貴利達自雄,亦可憐矣。予即 -非忠藏義獲,亦豪奴悍婢也,咆哮躑躅,不能解粘去縛,安得挺然脫然獨自當家為兩間 -一主人翁乎!可嘆可恨。 -  自家作人,自家十分曉底,乃虛美薰心,而喜動顏色,是為自欺。別人作人,自家 -十分曉底,乃明知其惡,而譽侈口頰,是謂欺人。二者皆可恥也。 -  知覺二字,奚翹天淵。致了知才覺,覺了才算知,不覺算不得知。而今說瘡痛,人 -人都知,惟病瘡者謂之覺。今人為善去惡不成,只是不覺,覺後便由不得不為善不去惡。 -  順其自然,只有一毫矯強,便不是;得其本有,只有一毫增益,便不是。 -  度之於長短也,權之於輕重也,不爽毫髮,也要個掌尺提秤底。 -  四端自有分量,擴充到盡處,只滿得原來分量,再增不得些子。 -  見義不為,立志無恒,只是腎氣不足。 -  過也,人皆見之,乃見君子。今人無過可見,豈能賢於君子哉?緣只在文飾彌縫上 -做工夫,費盡了無限巧回護,成就了一個真小人。 -  自家身子,原是自己心去害他,取禍招尤,陷於危敗,更不幹別個事。 -  六經四書,君子之律令。小人犯法,原不曾讀法律。士君子讀聖賢書而一一犯之, -是又在小人下矣。 -  慎言動於妻子僕隸之間,檢身心於食息起居之際,這工夫便密了。 -  休諉罪於氣化,一切責之人事;休過望於世間,一切求之我身。 -  常看得自家未必是,他人未必非,便有長進。再看得他人皆有可取,吾身只是過多 -,更有長進。 -  理會得義命兩字,自然不肯做低人。 -  稠眾中一言一動,大家環向而視之,口雖不言,而是非之公自在。果善也,大家同 -萌愛敬之念;果不善也,大家同萌厭惡之念,雖小言動,不可不謹。 -  或問:「傲為凶德,則謙為吉德矣?」曰:「謙真是吉,然謙不中禮,所損亦多。 -」在上者為非禮之謙,則亂名份、紊紀網,久之法令不行。在下者為非禮之謙,則取賤 -辱、喪氣節,久之廉恥掃地。君子接人未嘗不謹飭,持身未嘗不正大,有子曰:「恭近 -於禮,遠恥辱也。」孔子曰:「恭而無禮則勞。」又曰:「巧言令色足恭,某亦恥之。 -」曾子曰:「脅肩諂笑,病於夏畦。」君子無眾寡,無小大,無敢慢,何嘗貴傲哉?而 -其羞卑佞也又如此,可為立身行己者之法戒。 -  凡處人不繫確然之名分,便小有謙下不妨。得為而為之,雖無暫辱,必有後憂。即 -不論利害論道理,亦云居上不驕民,可近不可下。 -  只人情世故熟了,甚麼大官做不到?只天理人心合了,甚麼好事做不成? -  士君子常自點檢,晝思夜想,不得一時閑,郤思想個甚事?果為天下國家乎?抑為 -身家妻子乎?飛禽走獸,東鶩西奔,爭食奪巢;販夫豎子,朝出暮歸,風餐水宿,他自 -食其力,原為溫飽,又不曾受人付托,享人供奉,有何不可?士君子高官重祿,上藉之 -以名份,下奉之以尊榮,為汝乎?不為汝乎?乃資權勢而營鳥哭巿井之圖,細思真是愧 -死。 -  古者鄉有縉紳,家邦受其庇蔭,士民視為準繩。今也鄉有縉紳,增家邦陵奪勞費之 -憂,開土民奢靡浮薄之俗。然則鄉有縉紳,鄉之殃也,風教之蠹也。吾黨可自愧自恨矣。 -  俗氣入膏肓,扁鵲不能治。為人胸中無分毫道理,而庸調卑職、虛文濫套認之極真 -,而執之甚定,是人也,將欲救藥,知不可入。吾黨戒之。 -  士大夫居鄉,無論大有裨益,只不違禁出息,倚勢侵陵,受賄囑托,討佔夫役,無 -此四惡,也還算一分人。或曰:「家計蕭條,安得不治生?」曰:「治生有道,如此而 -後治生,無勢可藉者死乎?」或曰:「親族有事,安得不伸理?」曰:「官自有法,有 -訟必藉請謁,無力可通者死乎?」士大夫無窮餓而死之理,安用寡廉喪恥若是。 -  學者視人欲如寇仇,不患無攻治之力,只緣一向姑息他如驕子,所以養成猖獗之勢 -,無可奈何,故曰識不早,力不易也。制人欲在初發時,極易剿捕,到那橫流時,須要 -奮萬夫莫當之勇,才得濟事。 -  宇宙內事,皆備此身,即一種未完,一毫未盡,便是一分破綻;天地間生,莫非吾 -體,即一夫不獲,一物失所,便是一處瘡痍。 -  克一分、百分、千萬分,克得盡時,才見有生真我;退一步、百步、千萬步,退到 -極處,不愁無處安身。 -  事到放得心下,還慎一慎何妨?言於來向口邊,再思一步更好。 -  萬般好事說為,終日不為;百種貪心要足,何時是足? -  回著頭看,年年有過差;放開腳行,日日見長進。 -  難消客氣衰猶壯,不盡塵心老尚童。 -  但持鐵石同堅志,即有金鋼不壞身。 - - - - - -問學 - - -  學必相講而後明,講必相宜而後盡。孔門師友不厭窮問極言,不相然諾承順,所謂 -審問明辨也。故當其時,道學大明,如撥雲披霧,白日青天,無纖毫障蔽。講學須要如 -此,無堅自是之心,惡人相直也。 -  熟思審處,此四字德業之首務;銳意極力,此四字德業之要務;有漸無已,此四字 -德業之成務;深憂過計,此四字德業之終務。 -  靜是個見道的妙訣,只在靜處潛觀,六合中動的機括都解破。若見了,還有個妙訣 -以守之,只是一,一是大根本,運這一卻要因的通變。 -  學者只該說下學,更不消說上達。其未達也,空勞你說;其既達也,不須你說。故 -一貫惟參、賜可與,又到可語地位, -  才語又一個直語之,二個啟語之,便見孔子誨人妙處。 -  讀書人最怕誦底是古人語,做底是自家人。這等讀書雖閉戶十年,破卷五車,成甚 -麼用! -  能辨真假是一種大學問。世之所抵死奔走者,皆假也。萬古惟有真之一字磨滅不了 -,蓋藏不了。此鬼神之所把握,風雷之所呵護;天地無此不能發育,聖人無此不能參贊 -;朽腐得此可為神奇,鳥獸得此可為精怪。道也者,道此也;學也者,學此也。 -  或問:「孔子素位而行,非政不謀,而儒者著書立言,便談帝王之略,何也?」曰 -:古者十五而入大學,修齊治平此時便要理會。故陋巷而問為邦,布衣而許南面。由、 -求之志富強,孔子之志三代,孟子樂中,天下而立定,四海之民何曾便到手,但所志不 -得不然。所謂「如或知爾,則何以哉?」要知以個甚麼;苟有用我者,執此以往,要知 -此是甚麼;大人之事備矣,要知備個甚麼。若是平日如醉夢〔全〕不講求,到手如癡呆 -胡亂了事。 -  如此作人,只是一塊頑肉,成甚學者。即有聰明材辨之士,不過學眼前見識,作口 -頭話說,妝點支吾亦足塞責。如此作人,只是一場傀儡,有甚實用。修業盡職之人,到 -手未嘗不學,待汝學成,而事先受其敝,民已受其病,尋又遷官矣。譬之饑始種粟,寒 -始紡綿,怎得奏功?此凡事所以貴豫也。 -  不由心上做出,此是噴葉學問;不在獨中慎超,此是洗面工夫,成得甚事。 -  「堯、舜事功,孔、孟學術。」此八字是君子終身急務。或問:「堯、舜事功,孔 -、孟學術,何處下手?」曰:「以天地萬物為一體,此是孔、孟學術;使天下萬物各得 -其所,此是堯、舜事功。總來是一個念頭。」 -  上吐下瀉之疾,雖日進飲食,無補於憔悴;入耳出口之學,雖日事講究,無益於身 -心。 -  天地萬物只是個漸,理氣原是如此,雖欲不漸不得。而世儒好講一頓字,便是無根 -學問。 -  只人人去了我心,便是天清地寧世界。 -  塞乎天地之間,盡是浩然了。愚謂根荄須栽入九地之下,枝梢須插入九天之上,橫 -拓須透過八荒之外,才是個圓滿工夫,無量學問。 -  我信得過我,人未必信得過我,故君子避嫌。若以正大光明之心如青天白日,又以 -至誠惻怛之意如火熱水寒,何嫌之可避。故君子學問第一要體信,只信了,天下無些子 -事。 -  要體認,不須讀盡古今書,只一部《千字文》,終身受用不盡。要不體認,即三墳 -以來卷卷精熟,也只是個博學之士,資談口、侈文筆、長盛氣、助驕心耳。故君子貴體 -認。 -  悟者,吾心也。能見吾心,便是真悟。 -  明理省事,此四字學者之要務。 -  今人不如古人,只是無學無識。學識須從三代以上來,才正大,才中平。今只將秦 -漢以來見識抵死與人爭是非,已自可笑,況將眼前聞見、自己聰明,翹然不肯下人,尤 -可笑也。 -  學者大病痛,只是器度小。 -  識見議論,最怕小家子勢。 -  默契之妙,越過六經千聖,直與天地談,又不須與天交一語,只對越仰觀,兩心一 -個耳。 -  學者只是氣盈,便不長進。含六合如一粒,覓之不見;吐一粒於六合,出之不窮, -可謂大人矣。而自處如庸人,初不自表異;退讓如空夫,初不自滿足,抵掌攘臂而視世 -無人,謂之以善服人則可。 - -  心術、學術、政術,此三者不可不辨也。心術要辨個誠偽,學術要辨個邪正,政術 -要辨個王伯。總是心術誠了,別個再不差。 - -  聖門學問心訣,只是不做賊就好。或問之。曰:「做賊是個自欺心,自利心,學者 -於此二心,一毫擺脫不盡,與做賊何異?」 -  脫盡氣習二字,便是英雄。 -  理以心得為精,故當沉潛。不然,耳邊口頭也。事以典故為據,故當博洽。不然, -臆說杜撰也。 -  天是我底天,物是我底物。至誠所通,無不感格,而乃與之扞隔抵牾,只是自修之 -功未至。自修到格天動物處,方是學問,方是工夫。未至於此者,自愧自責不暇,豈可 -又萌出個怨尤底意思? -  世間事無巨細,都有古人留下底法程。才行一事,便思古人處這般事如何?才處一 -人,便思古人處這般人如何?至於起居、言動、語默,無不如此,久則古人與稽,而動 -與道合矣。 -  其要在存心,其工夫又只在誦詩讀書時便想曰:「此可以為我某事之法,可以藥我 -某事之病。」如此則臨事時觸之即應,不待思索矣。 -  扶持資質,全在學問,任是天資近聖,少此二字不得。三代而下無全才,都是負了 -在天的,欠了在我的,縱做出掀天揭地事業來,仔細看他,多少病痛! -  勸學者歆之以名利,勸善者歆之以福樣。哀哉! -  道理書盡讀,事務書多讀,文章書少讀,閒雜書休讀,邪妄書焚之可也。 -  君子知其可知,不知其不可知。不知其可知則愚,知其不可知則鑿。 -  余有責善之友,既別兩月矣,見而問之曰:「近不聞僕有過?」友曰:「子無過。 -」余曰:「此吾之大過也。有過之過小,無過之過大,何者?拒諫自矜而人不敢言,飾 -非掩惡而人不能知,過有大於此者乎?使余即聖人也,則可。余非聖人,而人謂無過, -余其大過哉!」 -  工夫全在冷清時,力量全在濃豔時。 -  萬仞崚嶒而呼人以登,登者必少。故聖人之道平,賢者之道峻。穴隙迫窄而招人以 -入,入者必少。故聖人之道博,賢者之道狹。 -  以是非決行止,而以利害生悔心,見道不明甚矣。 -  自天子以至於庶人,自堯、舜以至於途之人,必有所以汲汲皇皇者,而後其德進, -其業成。故曰:雞鳴而起,舜、跖之徒皆有所孳孳也。無所用心,孔子憂之曰:「不有 -博奕者乎?」懼無所孳孳者,不舜則跖也。今之君子縱無所用心,而不至於為跖,然飽 -食終日,惰慢彌年,既不作山林散客,又不問廟堂急務,如醉如癡,以了日月。《易》 -所謂「君子進德修業,欲及時也」,果是之謂乎?如是而自附於清品高賢,吾不信也。 -孟子論歷聖道統心傳,不出憂勤惕勵四字。其最親切者,曰:「仰而思之,夜以繼日; -幸而得之,坐以待旦。」此四語不獨作相,士、農、工、商皆可作座右銘也。 -  怠惰時看工夫,脫略時看點檢,喜怒時看涵養,患難時看力量。 -  今之為舉子文者,遇為學題目,每以知行作比。試思知個甚麼?行個甚麼?遇為政 -題目,每以教養作比。試問做官養了那個?教了那個?若資口舌浮談,以自致其身,以 -要國家寵利,此與誆騙何異?吾輩宜惕然省矣。 -  聖人以見義不為屬無勇,世儒以知而不行屬無知。聖人體道有三達德,曰:智、仁 -、勇。世儒曰知行。只是一個不知,誰說得是?愚謂自道統初開,工夫就是兩項,曰惟 -精察之也, 曰惟一守之也。千聖授受,惟此一道。蓋不精則為孟浪之守,不一則為想 -象之知。曰思,曰學,曰致知,曰力行,曰至明,曰至健,曰問察,曰用中,曰擇乎中 -庸、服膺勿失,曰非知之艱、惟行之艱,曰非苟知之、亦允蹈之,曰知及之、仁守之, -曰不明乎善、不誠乎身。 -  自德性中來,生死不變;自識見中來,則有時而變矣。故君子以識見養德性。德性 -堅定則可生可死。 -  昏弱二字是立身大業障,去此二字不得,做不出一分好人。 -  學問之功,生知聖人亦不敢廢。不從學問中來,任從有掀天揭地事業,都是氣質作 -用。氣象豈不炫赫可觀,一入聖賢秤尺,坐定不妥貼。學問之要如何?隨事用中而矣。 -  學者,窮經博古,涉事籌今,只見日之不足,惟恐一登薦舉,不能有所建樹。仕者 -,修政立事,淑世安民,只見日之不足,惟恐一旦升遷,不獲竟其施為。此是確實心腸 -,真正學問,為學為政之得真味也。 -  進德修業在少年,道明德立在中年,義精仁熟在晚年。若五十以前德性不能堅定, -五十以後愈懶散,愈昏弱,再休說那中興之力矣。 -  世間無一件可驕人之事。才藝不足驕人,德行是我性分事,不到堯、舜、周、孔, -便是欠缺,欠缺便自可恥,如何驕得人? -  有希天之學,有達天之學,有合天之學,有為天之學。 -  聖學下手處,是無不敬;住腳處,是恭而安。 -  小家學問不可以語廣大,圂障學問不可以語易簡。 -  天下至精之理,至難之事,若以潛玩沉思求之,無厭無躁,雖中人以下,未有不得 -者。 -  為學第一工夫,要降得浮躁之氣定。 -  學者萬病,只個靜字治得。 -  學問以澄心為大根本,以慎口為大節目。 -  讀書能使人寡過,不獨明理。此心日與道俱,邪念自不得乘之。 -  無所為而為,這五字是聖學根源。學者入門念頭就要在這上做。今人說話第二三句 -便落在有所為上來,只為毀譽利害心脫不去,開口便是如此。 -  已所獨知,盡是方便;人所不見,盡得自由。君子必兢兢然細行,必謹小物不遺者 -,懼工夫之間斷也,懼善念之停息也,懼私欲之乘間也,懼自欺之萌櫱也,懼一事苟而 -其徐皆苟也,懼閒居忽而大庭亦忽也。故廣眾者,幽獨之證佐;言動者,意念之枝葉。 -意中過,獨處疏,而十目十手能指視之者,枝葉、證佐上得之也。君子奈何其慢獨?不 -然,苟且於人不見之時,而矜持於視爾友之際,豈得自然?豈能周悉?徒爾勞心,而慎 -獨君子己見其肺肝矣。 -  古之學者在心上做工夫,故發之外面者為盛德之符;今之學者在外面做工夫,故反 -之於心則為實德之病。 -  事事有實際,言言有妙境,物物有至理,人人有處法,所貴乎學者,學此而已。無 -地而不學,無時而不學,無念而不學,不會其全、不詣其極不止,此之謂學者。今之學 -者果如是乎? - -  留心於浩瀚博雜之書,役志於靡麗刻削之辭,耽心於鑿真亂俗之技,爭勝於煩勞苛 -瑣之儀,可哀矣!而醉夢者又貿貿昏昏,若癡若病,華衣甘食而一無所用心,不尤可哀 -哉?是故學者貴好學,尤貴知學。 -  天地萬物,其情無一毫不與吾身相干涉,其理無一毫不與吾身相發明。 -  凡字不見經傳,語不根義理,君子不出諸口。 -  古之君子病其無能也,學之;今之君子恥其無能也,諱之。 -  無才無學,士之羞也;有才有學,士之憂也。夫才學非有之為難,降伏之難。君子 -貴才學以成身也,非以矜己也;以濟世也,非以誇人也。故才學如劍,當可試之時一試 -,不則藏諸室,無以衒弄,不然,鮮不為身禍者。自古十人而十,百人而百,無一倖免 -,可不憂哉? -  人生氣質都有個好處,都有個不好處、學問之道無他,只是培養那自家好處,救正 -那自家不好處便了。 -  道學不行,只為自家根腳站立不住。或倡而不和,則勢孤;或守而眾撓,則志惑, -或為而不成,則氣沮;或奪於風俗,則念雜。要挺身自拔,須是有萬夫莫當之勇,死而 -後已之心。不然,終日三五聚談,焦唇敝舌,成得甚事? -  役一己之聰明,雖聖人不能智;用天下之耳目,雖眾人不能愚。 -  涵養不定底,自初生至蓋棺時凡幾變?即知識已到,尚保不定畢竟作何種人,所以 -學者要德性堅定。到堅定時,隨常變、窮達、生死只一般;即有難料理處,亦自無難。 -若乎日不 -  遇事時,盡算好人,一遇個小小題目,便考出本態,假遇著難者、大者,知成個甚 -麼人?所以古人不可輕易笑,恐我當此未便在渠上也。 -  屋漏之地可服鬼神,室家之中不厭妻子,然後謂之真學、真養。勉強於大庭廣眾之 -中,幸一時一事不露本象,遂稱之曰賢人,君子恐未必然。 -  這一口呼吸去,萬古再無復返之理。呼吸暗積,不覺白頭,靜觀君子所以撫髀而愛 -時也。然而愛時不同,富貴之士歎榮顯之未極,功名之士歎事業之末成,放達之士恣情 -於酒以樂餘年,貪鄙之士苦心于家以遺後嗣。然猶可取者,功名之士耳。彼三人者,何 -貴於愛時哉?惟知道君子憂年數之日促,歎義理之無窮,天生此身無以稱塞,誠恐性分 -有缺,不能全歸,錯過一生也。此之謂真愛時。所謂此日不再得,此日足可惜者,皆救 -火追亡之念,踐形盡性之心也。嗚呼!不患無時,而患奔時。苟不棄時,而此心快足, -雖夕死何恨?不然,即百歲,幸生也。 -  身不修而惴惴焉,毀譽之是恤;學不進而汲汲焉,榮辱之是憂,此學者之通病也。 -  冰見烈火,吾知其易易也,然而以熾炭鑠堅冰,必舒徐而後盡;盡為寒水,又必待 -舒徐而後溫;溫為沸湯,又必待舒徐而後竭。夫學豈有速化之理哉?是故善學者無躁心 -,有事勿忘從容以俟之而巳。 -  學問大要,須把天道、人情、物理、世故識得透徹,卻以胸中獨得中正底道理消息 -之。 -  與人為善,真是好念頭。不知心無理路者,淡而不覺;道不相同者,拂而不入。強 -聒雜施,吾儒之戒也。孔子啟憤發、悱復、三隅,中人以下不語上,豈是倦於誨人?謂 -兩無益耳。 -  故大聲不煩奏,至教不苟傳。 -  羅百家者,多浩瀚之詞;工一家者,有獨詣之語。學者欲以有限之目力,而欲竟其 -律涯;以鹵莽之心思,而欲探其蘊奧,豈不難哉?故學貴有擇。 -  講學人不必另尋題目,只將四書六經發明得聖賢之道精盡有心得。此心默契千古, -便是真正學問。 -  善學者如鬧市求前,摩肩重足得一步便緊一步。 -  有志之士要百行兼修,萬善俱足。若只作一種人,硜硜自守,沾沾自多,這便不長 -進。 -  《大學》一部書,統於明德兩字;《中庸》一部書,統於修道兩字。 -  學識一分不到,便有一分遮障。譬之掘河分隔,一界土不通,便是一段流不去,須 -是衝開,要一點礙不得。涵養一分不到,便有一分氣質。譬之燒炭成熟,一分木未透, -便是一分煙不止,須待灼透,要一點煙也不得。 -  除了中字,再沒道理;除了敬字,再投學問。 -  心得之學,難與口耳者道;口耳之學,到心得者前,如權度之於輕重短長,一毫掩 -護不得。 -  學者只能使心平氣和,便有幾分工夫。心乎氣和人遇事卻執持擔當,毅然不撓,便 -有幾分人品。 -  學莫大於明分。進德要知是性分,修業要知是職分,所遇之窮通,要知是定分。 -  一率作,則覺有意味,日濃日豔,雖難事,不至成功不休;一間斷,則漸覺疏離, -日畏日怯,雖易事,再使繼續甚難。是以聖學在無息,聖心曰不已。一息一已,難接難 -起,此學者之大懼也。余平生德業無成,正坐此病。《詩》曰:「日就月將,學有緝熙 -於光明。」吾黨日宜三復之。 -  堯、舜、禹、湯、文、武全從「不自滿假」四字做出,至於孔子,平生謙退沖虛, -引過自責,只看著世間有無窮之道理,自家有未盡之分量。聖人之心蓋如此。孟子自任 -太勇,自視太高,而孜孜向學,〔舀欠〕〔舀欠〕自歉之意,似不見有宋儒口中談論都 -是道理,身所持循亦不著世俗,豈不聖賢路上人哉?但人非堯、舜,誰無氣質?稍偏, -造詣未至,識見未融,體驗未到,物欲未忘底過失,只是自家平生之所不足者,再不肯 -口中說出,以自勉自責,亦不肯向別人招認,以求相勸相規。所以自孟子以來,學問都 -似登壇說法,直下承當,終日說短道長,談天論性,看著自家便是聖人,更無分毫可增 -益處。只這見識,便與聖人作用已自不同,如何到得聖人地位? -  性躁急人,常令之理紛解結;性遲緩人,常令之逐獵追奔。 -  推此類,則氣質之性無不漸反。 -  恒言平穩二宇極可玩。蓋天下之事,惟平則穩,行險亦有得的,終是不穩。故君子 -居易。 -  二分寒暑之中也,晝夜分停,多不過七、八日;二至寒暑之偏也,晝夜偏長,每每 -二十三日。始知中道難持,偏氣易勝,天且然也。故堯舜毅然曰允執,蓋以人事勝耳。 -  裡面五分,外面只發得五分,多一釐不得;裡面十分,外面自發得十分,少一釐不 -得。誠之不可掩如此,夫故曰不誠無物。 -  休躡著人家腳跟走,此是自得學問。 -  正門學脈切近精實,旁門學脈奇特玄遠;正門工夫戒慎恐懼,旁門工夫曠大逍遙; -正門宗指漸次,旁門宗指逕頓;正門造詣俟其自然,旁門造詣矯揉造作。 -  或問:「仁、義、禮、智發而為惻隱、羞惡、辭讓、是非,便是天則否?」曰,「 -聖人發出來便是天則,眾人發出來都落氣質,不免有太過不及之病。只如好生一念,豈 -非惻隱?至以面為犧牲,便非天則。」 -  學問博識強記易,會通解悟難。會通到天地萬物[ 已難] ,解悟到幽明古今無間為 -尤難。 -  強恕是最拙底學問,三近人皆可行,下此無工夫矣。 -  王心齋每以樂為學,此等學問是不會苦的甜瓜。入門就學樂,其樂也,逍遙自在耳 -,不自深造真積、憂勤惕勵中得來。孔子之樂以忘憂,由於發憤忘食;顏子之不改其樂 -,由於博約克復。其樂也,優游自得,無意於歡欣,而自不擾,無心於曠達,而自不悶 -。若覺有可樂,還是乍得心;著意學樂,便是助長心,幾何而不為猖狂自恣也乎? -  余講學只主六字,曰天地萬物一體。或曰:「公亦另立門戶耶?」曰:「否。只是 -孔門一個仁字。」 -  無慎獨工夫,不是真學問;無大庭效驗,不是真慎獨。終日嘵嘵,只是口頭禪耳。 -  體認要嘗出悅心真味工夫,更要進到百尺竿頭始為真儒。 -  向與二三子暑月飲池上,因指水中蓮房以談學問曰:「山中人不識蓮,於藥鋪買得 -乾蓮肉,食之稱美。後入市買得久摘鮮蓮,食之更稱美也。」余歎曰:「渠食池上新摘 -,美當何如?一摘出池,真味猶漓,若臥蓮舟挽碧筒就房而裂食之,美更何如?今之體 -認皆食乾蓮肉者也。又如這樹上胡桃,連皮吞之,不可謂之不吃,不知此果須去厚肉皮 -,不則麻口;再去硬骨皮,不則損牙;再去瓤上粗皮,不則澀舌;再去薄皮內萌皮,不 -則欠細膩。如是而漬以蜜,煎以糖,始為盡美。今之工夫,皆囫圇吞胡桃者也。如此體 -認,始為精義入神;如此工夫,始為義精仁熟。」 -  上達無一頓底。一事有一事之上達,如灑掃應對,食息起居,皆有精義入神處。一 -步有一步上達,到有恒處達君子,到君子處達聖人,到湯、武聖人達堯、舜。堯、舜自 -視亦有上達,自歎不如無懷葛天之世矣。 -  學者不長進,病根只在護短。聞一善言,不知不肯問;理有所疑,對人不肯問,恐 -人笑己之不知也。孔文子不恥下問,今也恥上問;顏子以能問不能,今也以不能問能。 -若怕人笑,比德山捧臨濟喝法壇對眾如何承受?這般護短,到底成個人笑之人。一笑之 -恥,而終身之笑顧不恥乎?兒曹戒之。 -  學問之道,便是正也,怕雜。不一則不真,不真則不精。入萬景之山,處處堪游, -我原要到一處,只休亂了腳;入萬花之谷,朵朵堪觀,我原要折一枝,只休花了眼。 -  日落趕城門,遲一腳便關了,何處止宿?故學貴及時。懸崖抱孤樹,鬆一手便脫了 -,何處落身?故學貴著力。故傷悲於老大,要追時除是再生;既失於將得,要仍前除是 -從頭。 -  學問要訣只有八個字:「涵養德性,變化氣質。」守住這個,再莫問迷津問渡。 -  點檢將來,無愧心,無悔言,無恥行,胸中何等快樂!只苦不能,所以君子有終身 -之憂。常見王心齋「學樂歌」,心頗疑之,樂是自然養盛所致,如何學得。 -  除不了「我」,算不得學問。 -  學問二字原自外面得來。蓋學問之理,雖全於吾心,而學問之事,則皆古今名物, -人人而學,事事而問,攢零合整,融化貫串,然後此心與道方浹洽暢快。若怠於考古, -恥於問人,聰明只自己出,不知怎麼叫做學者。 -  聖人千言萬語,經史千帙萬卷,都是教人學好,禁人為非。若以先哲為依歸,前言 -為律令,即一二語受用不盡。若依舊作世上人,或更污下,即將蒼頡以來書讀盡,也只 -是個沒學問底人。 -  萬金之賈,貨雖不售不憂;販夫閉門數曰,則愁苦不任矣。凡不見知而慍,不見是 -而悶,皆中淺狹而養不厚者也。 -  善人無邪夢,夢是心上有底。男不夢生子,女不夢娶妻,念不及也。只到夢境,都 -是道理上做。這便是許大工夫,許大造詣。 -  天下難降伏、難管攝底,古今人都做得來,不謂難事。惟有降伏管攝自家難,聖賢 -做工夫只在這裡。 -  吾友楊道淵常自嘆恨,以為學者讀書,當失意時便奮發,曰:「到家郤要如何?」 -及奮發數日,或倦怠,或應酬,則曰:「且歇下一時,明日再做。」且、卻二字循環過 -了一生。予深味其言。士君子進德修業皆為且、卻二字所牽縛,白首竟成浩嘆。果能一 -旦奮發有為,鼓舞不倦,除卻進德是斃而後已工夫,其餘事業,不過五年七年,無不成 -就之理。 -  君子言見聞,不言不見聞;言有益,不言不益。 -  對左右言,四顧無愧色;對朋友言,臨別無戒語,可謂光明矣,胸中何累之有? -  學者常看得為我之念輕,則欲念自薄,仁心自達。是以為仁工夫曰「克己」,成仁 -地位曰「無我」。 -  天下事皆不可溺,惟是好德欲仁不嫌於溺。 -  把矜心要去得毫髮都盡,只有些須意念之萌,面上便帶著。聖賢志大心虛,只見得 -事事不如人,只見得人人皆可取,矜念安從生?此念不忘,只一善便自足,淺中狹量之 -鄙夫耳。 -  師無往而不在也,鄉國天下古人師善人也,三人行則師惡人矣。予師不止此也,鶴 -之父子,蟻之君臣,鴛鴦之夫婦,果然之朋友,鳥之孝,騶虞之仁,雉之耿介,鳩之守 -拙,則觀禽哭而得吾師矣。松柏之孤直,蘭芷之清芳,萍藻之潔,桐之高秀,蓮之淄泥 -不染,菊之晚節愈芳,梅之貞白,竹之內虛外直、圓通有節,則觀草木而得吾師矣。山 -之鎮重,川之委曲而直,石之堅貞,淵之涵蓄,土之渾厚,火之光明,金之剛健,則觀 -五行而得吾師矣。鑒之明,衡之直,權之通變,量之有容,機之經綸,則觀雜物而得吾 -師矣。嗟夫!能自得師,則盈天地間皆師也。不然堯舜自堯舜,朱均自朱均耳。 -  聖賢只在與人同欲惡,「己欲立而立人,己欲達而達人。」,「我不欲人之加諸我 -也,吾亦欲無加諸人」,便是聖人。能近取譬,施諸己而不願,亦勿施於人,便是賢者 -。專所欲於己,施所惡於人,便是小人。學者用情,只在此二字上體認,最為吃緊,充 -得盡時,六合都是個,有甚一己。 - -  人情只是個好惡,立身要在端好惡,治人要在同好惡。故好惡異,夫妻、父子、兄 -弟皆寇仇;好惡同,四海、九夷、八蠻皆骨肉。 -  「好學近乎知,力行近乎仁,知恥近乎勇。」有志者事竟成,那怕一生昏弱。「內 -視之謂明,反聽之謂聰,自勝之謂強。」外求則失愈遠,空勞百倍精神。 -  寄講學諸云:「白日當天,又向蟻封尋爝火;黃金滿室,卻穿鶉結丐藜羹。 -  歲首桃符:「新德隨年進,昨非與歲除。」 -  縱作神仙,到頭也要盡;莫言風水,何地不堪埋? - - - - - -應務 - - -  閒暇時留心不成,倉卒時措手不得。胡亂支吾,任其成敗,或悔或不悔,事過後依 -然如昨世之人。如此者,百人而百也。 -  凡事豫則立,此五字極當理會。 -  道眼在是非上見,情眼在愛憎上見,物眼無別白,渾沌而已。 -  實見得是時,便要斬釘截鐵,脫然爽潔,做成一件事,不可拖泥帶水,靠壁倚牆。 -  人定真足勝天。今人但委於天,而不知人事之未定耳。夫冬氣閉藏不能生物,而老 -圃能開冬花,結春實;物性蠢愚不解人事,而鳥師能使雀奕棋,蛙教書,況於能為之人 -事而可委之天乎? -  責善要看其人何如,其人可責以善,又當自盡長善救失之道。無指摘其所忌,無盡 -數其所失,無對人,無峭直,無長言,無累言,犯此六戒,雖忠告,非善道矣。其不見 -聽,我亦且有過焉,何以責人? -  余行年五十,悟得五不爭之味。人問之。曰:「不與居積人爭富,不與進取人爭貴 -,不與矜飾人爭名,不與簡傲人爭禮,不與盛氣人爭是非。」 -  眾人之所混同,賢者執之;賢者之所束縛,聖人融之。 -  做天下好事,既度德量力,又審勢擇人。專欲難成,眾怒難犯。此八字者,不獨妄 -動人宜慎,雖以至公無私之心,行正大光明之事,亦須調劑人情,發明事理,俾大家信 -從,然後動有成,事可久。盤庚遷殷,武王伐紂,三令五申猶恐弗從。蓋恒情多暗於遠 -識,小人不便於己私;群起而壞之,雖有良法,胡成胡久?自古皆然,故君子慎之。 -  辨學術,談治理,直須窮到至處,讓人不得,所謂宗廟朝廷便便言者。蓋道理,古 -今之道理,政事,國家之政事,務須求是乃已。我兩人皆置之度外,非求伸我也,非求 -勝人也,何讓人之有?只是平心易氣,為辨家第一法。才聲高色厲,便是沒涵養。 -  五月繅絲,正為寒時用;八月績麻,正為暑時用;平日涵養,正為臨時用。若臨時 -不能駕御氣質、張主物欲,平日而曰「我涵養」,吾不信也。夫涵養工夫豈為涵養時用 -哉?故馬蹷而後求轡,不如操持之有常;輻拆而後為輪,不如約束之有素。 -  其備之也若迂,正為有時而用也。 -  膚淺之見,偏執之說,傍經據傳也近一種道理,究竟到精處都是浮說陂辭。所以知 -言必須胸中有一副極准秤尺,又須在堂上,而後人始從。不然,窮年聚訟,其誰主持耶 -? -  纖芥眾人能見,置纖芥於百里外,非驪龍不能見,疑似賢人能辨,精義而至入神, -非聖人不解辨。夫以聖人之辨語賢人,且滋其感,況眾人乎?是故微言不入世人之耳。 -  理直而出之以婉,善言也,善道也。 -  因之一字妙不可言。因利者無一錢之費,因害者無一力之勞,因情者無一念之拂, -因言者無一語之爭。或曰:「不幾於徇乎?」曰:「此轉入而徇我者也。」或曰:「不 -幾於術乎?」曰:「此因勢而利導者也。」故惟聖人善用因,智者善用因。 -  處世常過厚無害,惟為公持法則不可。 -  天下之物紆徐柔和者多長,迫切躁急者多短。故烈風驟雨無祟朝之威,暴漲狂瀾無 -三日之勢,催拍促調非百板之聲,疾策緊銜非千里之轡。人生壽夭禍福無一不然,褊急 -者可以思矣。 -  干天下事無以期限自寬。事有不測,時有不給,常有餘於期限之內,有多少受用處! -  將事而能弭,當事而能救,既事而能挽,此之謂達權,此之謂才;未事而知其來, -始事而要其終,定事而知其變,此之謂長慮,此之謂識。 -  凡禍患,以安樂生,以憂勤免;以奢肆生,以謹約免;以觖望生,以知足免;以多 -事生,以慎動免。 -  任難任之事,要有力而無氣;處難處之人,要有知而無言。 -  撼大摧堅,要徐徐下手,久久見功,默默留意,攘臂極力,一犯手自家先敗。 -  昏暗難諭之識,優柔不斷之性,剛慎自是之心,皆不可與謀天下之事。智者一見即 -透,練者觸類而通,困者熟思而得。 -  三者之所長,謀事之資也,奈之何其自用也? -  事必要其所終,慮必防其所至。若見眼前快意便了,此最無識,故事有當怒,而君 -子不怒;當喜,而君子不喜;當為,而君子不為,當已,而君子不已者,眾人知其一, -君子知其他也。 -  柔而從人於惡,不若直而挽人於善;直而挽人於善,不若柔而挽人於善之為妙也。 -  激之以理法,則未至於惡也,而奮然為惡;愧之以情好,則本不徙義也,而奮然向 -義。此游說者所當知也。 -  善處世者,要得人自然之情。得人自然之情,則何所不得? -  失人自然之情,則何所不失?不惟帝王為然,雖二人同行,亦離此道不得。 -  察言觀色,度德量力,此八字處世處人一時少不得底。 -  人有言不能達意者,有其狀非其本心者,有其言貌誣其本心者。君子現人與其過察 -而誣人之心,寧過恕以逃人之情。 -  人情天下古今所同,聖人防其肆,特為之立中以的之。故立法不可太極,制禮不可 -太嚴,責人不可太盡,然後可以同歸於道。不然,是驅之使畔也。 - -  天下之事,有速而迫之者,有遲而耐之者,有勇而劫之者,有柔而折之者,有憤而 -激之者,有喻而悟之者,有獎而歆之者,有甚而談之者,有順而緩之者,有積誠而感之 -者,要在相機。 因時舛施,未有不敗者也。 -  論眼前事,就要說眼前處置,無追既往,無道遠圖,此等語雖精,無裨見在也。 -  我益智,人益愚;我益巧,人益拙。何者?相去之遠而相責之深也。惟有道者,智 -能諒人之愚,巧能容人之拙,知分量不相及,而人各有能不能也。 -  天下之事,只定了便無事。物無定主而爭,言無定見而爭,事無定體而爭。 -  至人無好惡,聖人公好惡,眾人隨好惡,小人作好惡。 -  僕隸下人昏愚者多,而理會人意,動必有合,又千萬人不一二也。後上者往往以我 -責之,不合則艴然怒,甚者繼以鞭答,則被愈惶惑而錯亂愈甚。是我之過大於彼也,彼 -不明而我當明也,彼無能事上而我無量容下也,彼無心之失而我有心之惡也。 -  若忍性平氣,指使而面命之,是兩益也。彼我無苦而事有濟,不亦可乎?《詩》曰 -:「匪怒伊教。」《書》曰:「無忿疾於頑。」此學者涵養氣質第一要務也。 -  或問:「士大夫交際禮與?」曰:「禮也。古者,睦鄰國有享禮、有私覿,士大夫 -相見各有所贄,鄉黨亦然,婦人亦然,何可廢也?」曰:「近者嚴禁之,何也?」曰: -「非禁交際,禁以交際行賄賂者也。夫無緣而交,無處而饋,其饋也過情,謂之賄可也 -。豈惟嚴禁,即不禁,君子不受焉。乃若宿在交,知情猶骨肉,數年不見,一飯不相留 -,人情乎?數千里來,一揖而告別,人情乎?則彼有饋遺,我有贈送,皆天理人情之不 -可已者也。士君子立身行己自有法度,絕人逃世,情所不安。余謂秉大政者貴持平,不 -貴一切。持平則有節,一切則愈潰,何者?勢不能也。」 -  古人愛人之意多,今日惡人之意多。愛人,故人易於改過;而視我也常親,我之教 -常易行;惡人,故人甘於自棄,而視我也常仇,我之言益不入。 -  觀一葉而知樹之死生,觀一面而知人之病否,現一言而知識之是非,現一事而知心 -之邪正。 -  論理要精詳,論事要剴切,論人須帶二三分渾厚。若切中人情,人必難堪。故君子 -不盡人之情,不盡人之過,非直遠禍,亦以留人掩飾之路,觸人悔悟之機,養人體面之 -餘,亦天地涵蓄之氣也。 -  「父母在難,盜能為我救之,感乎?」曰:「此不世之恩也,何可以弗感?」「設 -當用人之權,此人求用,可薦之乎?」曰:「何可薦也?天命有德,帝王之公典也,我 -何敢以私恩奸之?」「設當理刑之職,此人在獄,可縱之乎?」曰:「何可縱也?天討 -有罪,天下之公法也,我何敢以私恩骫之?」曰:「何以報之?」曰:「用吾身時,為 -之死可也;用吾家時,為之破可也。其他患難與之共可也。」 -  凡有橫逆來侵,先思所以取之之故,即思所以處之之法,不可便動氣。兩個動氣, -一對小人一般受禍。 -  喜奉承是個愚障。彼之甘言、卑辭、隆禮、過情,冀得其所欲,而免其可罪也,而 -我喜之,感之,遂其不當得之欲,而免其不可已之罪。以自蹈於廢公黨惡之大咎;以自 -犯於難事易悅之小人。是奉承人者智巧,而喜奉承者愚也。乃以為相沿舊規,責望於賢 -者,遂以不奉承恨之,甚者羅織而害之,其獲罪國法聖訓深矣。此居要路者之大戒也。 -雖然,奉承人者未嘗不愚也。使其所奉承而小人也,則可果;君子也,彼未嘗不以此觀 -人品也。 -  疑心最害事。二則疑,不二則不疑。然則聖人無疑乎?曰,「聖人只認得一個理, -因理以思,順理以行,何疑之有?賢人有疑惑於理也,眾人多疑惑於情也。」或曰:「 -不疑而為人所欺奈何?」曰:「學到不疑時自然能先覺。況不疑之學,至誠之學也,狡 -偽亦不忍欺矣。」 -  以時勢低昂理者,眾人也;以理低昂時勢者,賢人也;推理是視,無所低昂者,聖 -人也。 -  貧賤以傲為德,富貴以謙為德,皆賢人之見耳。聖人只看理當何如,富貴貧賤除外 -算。 -  成心者,見成之心也。聖人胸中洞然清虛,無個見成念頭,故曰絕四。今人應事宰 -物都是成心,縱使聰明照得破,畢竟是意見障。 -  凡聽言,先要知言者人品,又要知言者意向,又要知言者識見,又要知言者氣質, -則聽不爽矣。 -  不須犯一口說,不須著一意念,只恁真真誠誠行將去,久則自有不言之信,默成之 -孚,薰之善良,遍為爾德者矣。碱蓬生於碱地,燃之可碱;鹽蓬生於鹽地,燃之可鹽。 -  世人相與,非面上則口中也。人之心固不能掩於面與口,而不可測者則不盡於面與 -口也。故惟人心最可畏,人心最不可知。此天下之陷阱,而古今生死之衢也。余有一拙 -法,推之以至誠,施之以至厚,持之以至慎,遠是非,讓利名,處後下,則夷狄鳥獸可 -骨肉而腹心矣。將令深者且傾心,險者且化德,而何陷阱之予及哉?不然,必予道之未 -盡也。 -  處世只一恕字,可謂以已及人,視人猶己矣。然有不足以 盡者。天下之事,有已 -所不欲而人欲者,有己所欲而人不欲者。 -  這裡還須理會,有無限妙處。 -  寧開怨府,無開恩竇。怨府難充,而恩竇易擴也;怨府易閉,而恩竇難塞也。閉怨 -府為福,而塞恩竇為禍也。怨府一仁者能閉之,思竇非仁、義、禮、智、信備不能塞也 -。仁考布大德,不干小譽;義者能果斷,不為姑息;禮者有等差節文,不一切以苦人情 -;智者有權宜運用,不張皇以駭聞聽;信者素孚人,舉措不生眾疑,缺一必無全計矣。 -  君子與小人共事必敗,君子與君子共事亦未必無敗,何者? -  意見不同也。今有仁者、義者、禮者、智者、信者五人焉,而共一事,五相濟則事 -無不成,五有主,則事無不敗。仁者欲寬,義者欲嚴,智者欲巧,信者欲實,禮者欲文 -,事胡以成?此無他,自是之心勝,而相持之勢均也。歷觀往事,每有以意見相爭至亡 -人國家,釀成禍變而不顧。君子之罪大矣哉!然則何如? -  曰:「勢不可均。勢均則不相下,勢均則無忌憚而行其胸臆。三軍之事,卒伍獻計 -,偏裨謀事,主將斷一,何意見之敢爭?然則善天下之事,亦在乎通者當權而已。 -  萬弊都有個由來,只救枝葉成得甚事? -  與小人處,一分計較不得,須要放寬一步。 -  處天下事,只消得安詳二字。雖兵貴神速,也須從此二字做出。然安詳非遲緩之謂 -也,從容詳審養奮發於凝定之中耳。 -  是故不閒則不忙,不逸則不勞。若先怠緩,則後必急躁,是事之殃也。十行九悔, -豈得謂之安詳? -  果決人似忙,心中常有餘閒;因循人似閒,心中常有餘累。 -  君子應事接物,常贏得心中有從容閒暇時便好。若應酬時勞擾,不應酬時牽掛,極 -是吃累的。 -  為善而偏於所向,亦是病。聖人之為善,度德量力,審勢順時,且如發棠不勸,非 -忍萬民之死也,時勢不可也。若認煞民窮可悲,而枉巳徇人,便是欲矣。 -  分明不動聲色,濟之有餘,卻露許多痕跡,費許大張皇,最是拙工。 -  天下有兩可之事,非義精者不能擇。若到精處,畢竟只有一可耳。 -  聖人處事,有變易無方底,有執極不變底,有一事而所處不同底,有殊事而所處一 -致底,惟其可而已。自古聖人,適當其可者,堯、舜、禹、文、周、孔數聖人而已。當 -可而又無跡,此之謂至聖。 -  聖人處事,如日月之四照,隨物為影;如水之四流,隨地成形,己不與也。 -  使氣最害事,使心最害理,君子臨事平心易氣。 -  昧者知其一。不知其二,見其所見而不見其所不見,故於事鮮克有濟。惟智者能柔 -能剛,能圓能方,能存能亡,能顯能藏,舉世懼且疑,而彼確然為之,卒如所料者,見 -先定也。 -  字到不擇筆處,文到不修句處,話到不檢口處,事到不苦心處,皆謂之自得。自得 -者與天遇。 -  無用之樸,君子不貴。雖不事機械變詐,至於德慧術知,亦不可無。 -  神清人無忽語,機活人無癡事。 -  非謀之難,而斷之難也。謀者盡事物之理,達時勢之宜,意見所到不思其不精也, -然眾精集而兩可,斷斯難矣。故謀者較尺寸,斷者較毫釐;謀者見一方至盡,斷者會八 -方取中。故賢者皆可與謀,而斷非聖人不能也。 -  人情不便處,便要迴避。彼雖難於言;而心厭苦之,此慧者之所必覺也。是以君子 -體悉人情。悉者,委曲周至之謂也。 -  恤其私、濟其願、成其名、泯其跡,體悉之至也,感人淪於心骨矣。故察言觀色者 -,學之粗也;達情會意者,學之精也。 -  天下事只怕認不真,故依違觀望,看人言為行止。認得真時,則有不敢從之君親, -更那管一國非之,天下非之。若作事先怕人議論,做到中間一被謗誹,消然中止,這不 -止無定力,且是無定見。民各有心,豈得人人識見與我相同;民心至愚,豈得人人意思 -與我相信。是以作事君子要見事後功業,休恤事前議論,事成後眾論自息。即萬一不成 -,而我所為者,合下便是當為也,論不得成敗。 -  審勢量力,固智者事,然理所當為,而值可為之地,聖人必做一番,計不得成敗。 -如圍成不克,何損於舉動,竟是成當墮耳。孔子為政於衛,定要下手正名,便正不來, -去衛也得。 -  只事這個,事定姑息不過。今人做事只計成敗,都是利害心害了是非之公。 -  或問:「慮以下人,是應得下他不?」曰:「若應得下他,如子弟之下父兄,這何 -足道?然亦不是卑諂而徇人以非禮之恭,只是無分毫上人之心,把上一著,前一步,盡 -著別人占,天地間惟有下面底最寬,後面底最長。」 -  士君子在朝則論政,在野則論俗,在廟則論祭禮,在喪則論喪禮,在邊國則論戰守 -,非其地也,謂之羨談。 - -  處天下事,前面常長出一分,此之謂豫;後面常餘出一分,此之謂裕。如此則事無 -不濟,而心有餘樂。若扣殺分數做去,必有後悔處。人亦然,施在我有餘之恩,則可以 -廣德,留在人不盡之情,則可以全好。 -  非首任,非獨任,不可為禍福先。福始禍端,皆危道也。 -  士君子當大事時,先人而任,當知慎果二字;從人而行,當知明哲二字。明哲非避 -難也,無裨於事而只自沒耳。 -  養態,士大夫之陋習也。古之君子養德,德成而見諸外者有德容。見可怒,則有剛 -正之德容;見可行,則有果毅之德容。 -  當言,則終日不虛口,不害其為默;當刑,則不宥小故,不害其為量。今之人,士 -大夫以寬厚渾涵為盛德,以任事敢言為性氣,銷磨憂國濟時者之志,使之就文法,走俗 -狀,而一無所展布。 -  嗟夫!治平之世宜爾,萬一多故,不知張眉吐膽、奮身前步者誰也?此前代之覆轍 -也。 -  處事先求大體,居官先厚民風。 -  臨義莫計利害,論人莫計成敗。 -  一人覆屋以瓦,一人覆屋以茅,謂覆瓦者曰:「子之費十倍予,然而蔽風雨一也。 -」覆瓦者曰:「茅十年腐,而瓦百年不碎,子百年十更,而多以工力之費、屢變之勞也 -。」嗟夫!天下之患莫大於有堅久之費,貽屢變之勞,是之謂工無用,害有益。天下之 -思,亦莫大於狃朝夕之近,忘久遠之安,是之謂欲速成見小利。是故樸素渾堅,聖人制 -物利用之道也。彼好文者,惟樸素之恥而靡麗,夫易敗之物,不智甚矣。或曰:「糜麗 -其渾堅者可乎?」曰:「既渾堅矣,靡麗奚為?苟以靡麗之費而為渾堅之資,豈不尤渾 -堅哉?是故君子作有益,則輕千金;作無益,則惜一介。假令無一介之費,君子亦不作 -無益,何也?不敢以耳目之玩,啟天下民窮財盡之禍也。」 -  遇事不妨詳問、廣問,但不可有偏主心。 -  輕言驟發,聽言之大戒也。 -  君子處事主之以鎮靜有主之心,運之以圓活不拘之用,養之以從容敦大之度,循之 -以推行有漸之序,待之以序盡必至之效,又未嘗有心勤效遠之悔。今人臨事,才去安排 -,又不耐躊腸,草率含糊,與事拂亂,豈無幸成?競不成個處事之道。 -  君子與人共事,當公人己而不私。苟事之成,不必功之出自我也;不幸而敗,不必 -咎之歸諸人也。 -  有當然、有自然、有偶然。君子盡其當然,聽其自然,而不感於偶然;小人泥於偶 -然,拂其自然,而棄其當然。噫!偶然不可得,並其當然者失之,可哀也。 -  不為外撼,不以物移,而後可以任天下之大事。彼悅之則悅,怒之則怒,淺衷狹量 -,粗心浮氣,婦人孺子能笑之,而欲有所樹立,難矣。何也?其所以待用者無具也。 -  明白簡易,此四字可行之終身。役心機,擾事端,是自投劇網也。 -  水之流行也,礙於剛,則求通於柔;智者之於事也,礙於此,則求通於被。執礙以 -求通,則愚之甚也,徒勞而事不濟。 -  計天下大事,只在緊要處一著留心用力,別個都顧不得。 -  譬之奕棋,只在輸贏上留心,一馬一卒之失渾不放在心下,若觀者以此預計其高低 -,奕者以此預亂其心目,便不濟事。況善籌者以與為取,以喪為得;善奕者餌之使吞, -誘之使進,此豈尋常識見所能策哉?乃見其小失而遽沮撓之,擯斥之,英雄豪傑可為竊 -笑矣,可為慟惋矣。 - -  夫勢,智者之所藉以成功,愚者之所逆以取敗者也。夫勢之盛也,天地聖人不能裁 -,勢之衰也,天地聖人不能振,亦因之而已。因之中寓處之權,此善用勢者也,乃所以 -裁之振之也。 -  士君子抱經世之具,必先知五用。五用之道未將,而漫嘗試之,此小丈夫技癢、童 -心之所為也,事必不濟。是故貴擇人。 -  不擇可與共事之人,則不既厥心,不堪其任。或以虛文相欺,或以意見相傾,譬以 -玉杯付小兒,而奔走於崎嶇之峰也。是故貴達時。時者,成事之期也。機有可乘,會有 -可際,不先不後,則其道易行。不達於時。譬投種於堅凍之候也。是故貴審勢。 -  者,成事之藉也。登高而招,順風而呼,不勞不費,而其易就。不審於勢,譬行舟 -於平陸之地也。是故貴慎發。左盼望,長慮卻顧,實見得利矣,又思其害,實見得成矣 -,又慮其敗,萬無可虞則執極而不變。不慎所發,譬夜射儀的也。是故貴宜物。夫事有 -當蹈常襲故者,有當改弦易轍者,有當興廢舉墜者,有當救偏補救者,有以小棄大而卒 -以成其大者,有理屈於勢而不害其為理者,有當三令五申者,有當不動聲色者。不宜於 -物,譬苗莠兼存,而玉石俱焚也。溠夫!非有其具之難,而用其具者之難也。 -  腐儒之迂說,曲士之拘談,俗子之庸識,躁人之淺覓,譎者之異言,憸夫之邪語, -皆事之成也,謀斷家之所忌也。 -  智者之於事,有言之而不行者,有所言非所行者,有先言而後行者,有先行而後言 -者,有行之既成而始終不言其故者,要亦為國家深遠之慮,而求以必濟而已。 -  善用力者就力,善用勢者就勢,善用智者就智,善用財者就財,夫是之謂乘。乘者 -,知幾之謂也。失其所乘,則倍勞而力不就,得其所乘,則與物無忤,於我無困,而天 -下享其利。 -  凡酌量天下大事,全要個融通周密,憂深慮遠。營室者之正方面也,遠視近視,日 -有近視正而遠視不正者;較長較短,曰有准於短而不准於長者;應上應下,曰有合於上 -而不合於下者;顧左顧右,曰有協於左而不協於右者。既而遠近長短上下左右之皆宜也 -,然後執繩墨、運木石、鳩器用以定萬世不拔之基。今之處天下事者,粗心浮氣,淺見 -薄識,得其一方而固執以求勝。以此圖久大之業,為治安之計,難矣。 -  字經三書,未可遽真也;言傳三口,未可遽信也。 -  巧者,氣化之賊也,萬物之禍也,心術之蠹也,財用之災也,君子不貴焉。 -  君子之處事有真見矣,不遽行也,又驗眾見,察眾情,協諸理而協,協諸眾情、眾 -見而協,則斷以必行;果理當然,而眾情、眾見之不協也,又委曲以行吾理。既不貶理 -,又不駭人,此之謂理術。噫!惟聖人者能之,獵較之類是也。 -  干天下大事非氣不濟。然氣欲藏,不欲露;欲抑,不欲揚。 -  掀天揭地事業不動聲色,不驚耳目,做得停停妥妥,此為第一妙手,便是入神。譬 -之天地當春夏之時,發育萬物,何等盛大流行之氣!然視之不見,聽之不聞,豈無風雨 -雷霆,亦只時發間出,不顯匠作萬物之跡,這才是化工。 -  疏於料事,而拙於謀身,明哲者之所懼也。 -  實處著腳,穩處下手。 -  姑息依戀,是處人大病痛,當義處,雖處骨肉亦要果斷;鹵莽逕宜,是處事大病痛 -,當緊要處,雖細微亦要檢點。 -  正直之人能任天下之事。其才、其守小事自可見。若說小事且放過,大事到手才見 -擔當,這便是飾說,到大事定然也放過了。松柏生,小便直,未有始曲而終直者也。若 -用權變時另有較量,又是一副當說話。 -  無損損,無益益,無通通,無塞塞,此調天地之道,理人物之宜也。然人君自奉無 -嫌於損損,於百姓無嫌於益益;君子擴理路無嫌於通通,杜欲竇無嫌於塞塞。 -  事物之理有定,而人情意見千歧萬逕,吾得其定者而行之,即形跡可疑,心事難白 -,亦付之無可奈何。若惴惴畏譏,瑣瑣自明,豈能家置一喙哉?且人不我信,辯之何益 -?人若我信,何事於辯?若事有關涉,則不當以緘默妨大計。 -  處人、處已、處事都要有餘,無餘便無救性,此裡甚難言。 -  悔前莫如慎始,悔後莫如改圖,徒悔無益也。 -  居鄉而囿於數十里之見,硜硜然守之也,百攻不破,及游大都,見千里之事,茫然 -自失矣。居今而囿於千萬人之見,硜硜然守之也,百攻不破,及觀墳典,見千萬年之事 -,茫然自失矣。是故囿見不可狃,狃則狹,狹則不足以善天下之事。 -  事出於意外,雖智者亦窮,不可以苛責也。 -  天下之禍多隱成而卒至,或偶激而遂成。隱成者貴預防,偶激者貴堅忍。 -  當事有四要:際畔要果決,怕是綿;執持要堅耐,怕是脆;機括要深沉,怕是淺; -應變要機警,伯是遲。 -  君子動大事十利而無一害,其舉之也,必矣。然天下無十利之事,不得已而權其分 -數之多寡,利七而害三則吾全其利而防其害。又較其事勢之輕重,亦有九害而一利者為 -之,所利重而所害輕也,所利急而所害緩也,所利難得而所害可救也,所利久遠而所害 -一時也。此不可與淺見薄識者道。 -  當需莫厭久,久時與得時相鄰。若憤其久也,而決絕之,是不能忍於斯須,而甘棄 -前勞,坐失後得也。此從事者之大戒也。若看得事體審,便不必需,即需之久,亦當速 -去。 -  朝三暮四,用術者誠詐矣,人情之極致,有以朝三暮四為便者,有以朝四暮三為便 -者,要在當其所急。猿非愚,其中必有所當也。 -  天下之禍非偶然而成也,有輳合,有搏激,有積漸。輳合者,雜而不可解,在天為 -風雨雷電,在身為多過,在人為朋奸,在事為眾惡遭會,在病為風寒暑濕,合而成痹。 -搏激者,勇而不可御,在天為迅雷大雹,在身為忿狠,在人為橫逆卒加,在事為驟感成 -凶,在病為中寒暴厥。積漸者,極重而不可反,在天為寒暑之序,在身為罪惡貫盈,在 -人為包藏待逞,在事為大敝極壞,在病為血氣衰羸、痰火蘊鬱,;奄奄不可支。此三成 -者,理勢之自然,天地萬物皆不能外,禍福之來,恒必由之。故君子為善則籍眾美,而 -防錯履之多,奮志節而戒一朝之怒,體道以終身,孜孜不倦,而絕不可長之欲。 -  再之略,不如一之詳也;一之詳,不如再之詳也,再詳無後憂矣。 -  有徐,當事之妙道也。故萬無可慮之事備十一,難事備百一,大事備千一,不測之 -事備萬一。 -  在我有餘則足以當天下之感,以不足當感,未有不困者。 -  識有餘,理感而即透;才有餘,事感而即辦;力有餘,任感而即勝;氣有餘,變感 -而不震;身有餘,內外感而不病。 -  語之不從,爭之愈勍,名之乃驚。不語不爭,無所事名,忽忽冥冥,吾事已成,彼 -亦懵懵。昔人謂不動聲色而措天下於泰山,予以為動聲色則不能措天下於泰山矣。故曰 -默而成之,不言而信,存乎德行。 -  天下之事,在意外者常多。眾人見得眼前無事都放下心,明哲之士只在意外做工夫 -,故每萬全而無後憂。 -  不以外至者為榮辱,極有受用處,然須是裡面分數足始得。 -  今人見人敬慢,輒有喜慍,心皆外重者也。此迷不破,胸中冰炭一生。 -  有一介必吝者,有千金可輕者,而世之論取與動,曰所直幾何?此亂語耳。 -  才猶兵也,用之伐罪弔民,則為仁義之師;用之暴寡凌弱,則為劫奪之盜。是故君 -子非無才之患,患不善用才耳。故惟有德者能用才。 -  藏莫大之害,而以小利中其意;藏莫大之利,而以小害疑其心。此思者之所必墮, -而智者之所獨覺也。 -  今人見前輩先達作事不自振拔,輒生歎恨,不知渠當我時也會歎恨人否?我當渠時 -能免後人歎恨否?事不到手,責人盡易,待君到手時,事事努力不輕放過便好。只任嘵 -嘵責人,他日縱無可歎恨,今日亦浮薄子也。 -  區區與人較是非,其量與所較之人相去幾何? -  無識見底人,難與說話;偏識見底人,更難與說話。 -  兩君子無爭,相讓故也;一君子一小人無爭,有容故也。 -  爭者,兩小人也。有識者奈何自處於小人?即得之未必榮,而況無益於得以博小人 -之名,又小人而愚者。 -  方嚴是處人大病痛。聖賢處世離一溫厚不得,故曰泛愛眾,曰和而不同,曰和而不 -流,曰群而不黨,曰周而不比,曰愛人,曰慈樣,曰豈弟,曰樂只,曰親民,曰容眾, -曰萬物一體,曰天下一家,中國一人。只恁踽踽涼涼冷落難親,便是世上一個礙物。即 -使持正守方,獨立不苟,亦非用世之才,只是一節狷介之土耳。 -  謀天下後世事最不可草草,當深思遠慮。眾人之識,天下所同也,淺昧而狃於目前 -,其次有眾人看得一半者,其次豪傑之士與練達之人得其大概者,其次精識之人有曠世 -獨得之見者,其次經綸措置、當時不動聲色,後世不能變易者,至此則精矣,盡矣,無 -以復加矣,此之謂大智,此之謂真才。若偶得之見,借聽之言,翹能自喜而攘臂直言天 - -下事,此老成者之所哀,而深沉者之所懼也。 -  而今只一個苟字支吾世界,萬事安得不廢弛? -  天下事要乘勢待時,譬之決癰待其將潰,則病者不苦而癰自愈,若虺蝮毒人,雖即 -砭手斷臂,猶遲也。 -  飯休不嚼就咽,路休不看就走,人休不擇就交,話休不想就說,事休不思就做。 -  參苓歸芪本益人也,而與身無當,反以益病;親厚懇切本愛人也,而與人無當,反 -以速禍,故君子慎焉。 -  兩相磨蕩,有皆損無俱全,特大小久近耳。利刃終日斷割,必有缺折之時;砥石終 -日磨礱,亦有虧消之漸。故君子不欲敵人以自全也。 -  見前面之千里,不若見背後之一寸。故達現非難,而反觀為難;見見非難,而見不 -見為難;此舉世之所迷,而智者之獨覺也。 -  譽既汝歸,毀將安辭?利既汝歸,害將安辭?巧既汝歸,罪將安辭? -  上士會意,故體人也以意,觀人也亦以意。意之感人也深於骨肉,怠之殺人也毒於 -斧鉞。鷗鳥知漁父之機,會意也,可以人而不如鷗乎?至於征色發聲而不觀察,則又在 -色斯舉矣之下。 -  士君子要任天下國家事,先把本身除外。所以說策名委質,言自策名之後身已非我 -有矣,況富貴乎?若營營於富貴身家,卻是社稷蒼生委質於我也,君之賊臣乎?天之僇 -民乎? -  聖賢之量空闊,事到胸中如一葉之泛滄海。 -  聖賢處天下事,委曲紆徐,不輕徇一已之情,以違天下之欲,以破天下之防。是故 -道有不當直,事有不必果者,此類是也。 -  譬之行道然,循曲從遠順其成跡,而不敢以欲速適已之便者,勢不可也。若必欲簡 -捷直遂,則兩京程途正以繩墨,破城除邑,塞河夷山,終有數百里之近矣,而人情事勢 -不可也。是以處事要遜以出之,而學者接物怕徑情直行。 -  熱鬧中空老了多少豪傑,閒淡滋味惟聖賢嘗得出,及當熱鬧時也只以這閒淡心應之 -。天下萬事萬物之理都是閒淡中求來,熱鬧處使用。是故,靜者,動之母。 -  胸中無一毫欠缺,身上無一些點染,便是羲皇以上人,即在夷狄患難中,何異玉燭 -春台上? -  聖人掀天揭地事業只管做,只是不費力;除害去惡只管做,只是不動氣;蹈險投艱 -只管做,只是不動心。 -  聖賢用剛,只夠濟那一件事便了;用明,只夠得那件情便了;分外不剩分毫。所以 -作事無痕跡,甚渾厚,事既有成,而亦無議。 -  聖人只有一種才,千通萬貫隨事合宜,譬如富貴只積一種錢,貿易百貨都得。眾人 -之材如貨,輕縠雖美,不可禦寒;輕裘雖溫,不可當暑。又養才要有根本,則隨遇不窮 -;運才要有機括,故隨感不滯;持才要有涵蓄,故隨事不敗。 -  坐疑似之跡者,百口不能自辨;犯一見之真者,百口難奪其執。此世之通患也。聖 - -〔人〕虛明通變吻合人情,如人之肝肺在其腹中,既無遁情,亦無誣執。故人有感泣者 -,有愧服者,有歡悅者。故曰惟聖人為能通天下之志,不能如聖人,先要個虛心。 -  聖人處小人不露形跡,中間自有得已,處高崖陡塹,直氣壯頄皆偏也,即不論取禍 -,近小文夫矣。孟子見樂正子從王驩,何等深惡!及處王驩,與行而不與比,雖然,猶 -形跡矣。孔子處陽貨只是個紿法,處向魋只是個躲法。 -  君子所得不問,故其所行亦異。有小人於此,仁者憐之,義者惡之,禮者處之不失 -禮,智者處之不取禍,信者推誠以御之而不計利害,惟聖人處小人得當可之宜。 -  被發於鄉鄰之鬥,豈是惡念頭?但類於從井救人矣。聖賢不為善於性分之外。 -  仕途上只應酬無益人事,工夫占了八分,更有甚精力時候修正經職業?我嘗自喜行 -三種方便,甚於彼我有益:不面謁人,省其疲於應接;不輕寄書,省其困於裁答;不乞 -求人看顧,省其難於區處。 -  士君子終身應酬不止一事,全要將一個靜定心酌量緩急輕重為後先。若應轇轕情處 -紛雜事,都是一味熱忙,顛倒亂應,只此便不見存心定性之功,當事處物之法。 -  儒者先要個不俗,才不俗又怕乖俗。聖人只是和人一般,中間自有妙處。 -  處天下事,先把我字閣起,千軍萬馬中,先把人字閣起。 -  處毀譽,要有識有量。今之學者,盡有向上底,見世所譽而趨之,見世所毀而避之 -,只是識不定;聞譽我而喜,聞毀我而怒,只是量不廣。真善惡在我,毀譽於我無分毫 -相干。 -  某平生只欲開口見心,不解作吞吐語。或曰:「恐非其難其慎之義。」予矍然驚謝 -曰:「公言甚是。但其難其慎在未言之前,心中擇個是字才脫口,更不復疑,何吞吐之 -有?吞吐者,半明半暗,似於開成心三字礙。」 -  接人要和中有介,處事要精中有果,認理要正中有通。 -  天下之事常鼓舞不見罷勞,一衰歇便難振舉。是以君子提醒精神不令昏眩,役使筋 -骨不令怠惰,懼振舉之難也。 -  實官、實行、實心,無不孚人之理。 -  當大事,要心神定,心氣足。 -  世間無一處無拂意事,無一日無拂意事,椎度量寬弘有受用處,彼局量褊淺者空自 -懊恨耳。 -  聽言之道徐審為先,執不信之心與執必信之心,其失一也。 -  惟聖人能先覺,其次莫如徐審。 -  君子之處事也,要我就事,不令事就我;其長民也,要我就民,不令民就我。 -  上智不悔,詳於事先也;下愚不悔,迷於事後也。惟君子多悔。雖然,悔人事,不 -悔天命,悔我不悔人。我無可悔,則天也、人也,聽之矣。 -  某應酬時有一大病痛,每於事前疏忽,事後點檢,點檢後輒悔吝;閒時慵獺,忙時 -迫急,迫急後輒差錯。或曰:「此失先後著耳。」肯把點檢心放在事前,省得點檢,又 -省得悔吝。肯把急迫心放在閒時,省得差錯,又省得牽掛。大率我輩不是事累心,乃是 -心累心。一謹之不能,而謹無益之謹;一勤之不能,而勤無及之勤,於此心倍苦,而於 -事反不詳焉,昏懦甚矣!書此以自讓。 -  無謂人唯唯,遂以為是我也;無謂人默默,遂以為服我也,無謂人煦煦,遂以為愛 -我也;無謂人卑卑,遂以為恭我也。 -  事到手且莫急,便要緩緩想;想得時切莫緩,便要急急行。 -  我不能寧耐事,而令事如吾意,不則躁煩;我不能涵容人,而令人如吾意,不則譴 -怒。如是則終日無自在時矣,而事卒以僨,人卒以怨,我卒以損,此謂至愚。 -  有由衷之言,有由口之言;有根心之色,有浮面之色。各不同也,應之者貴審。 -  富貴,家之災也;才能,身之殃也;聲名,謗之媒也;歡樂,悲之藉也。故惟處順 -境為難。只是常有懼心,遲一步做,則免於禍。 -  語雲一錯二誤最好理會。凡一錯者,必二誤,蓋錯必悔怍,悔怍則心凝於所悔,不 -暇他思,又錯一事。是以無心成一錯,有心成二誤也。禮節應對間最多此失。苟有錯處 -,更宜鎮定,不可忙亂,一忙亂則相因而錯者無窮矣。 -  衝繁地,頑鈍人,紛雜事,遲滯期,拂逆時,此中最好養火。若決裂憤激,悔不可 -言;耐得過時,有無限受用。 -  當繁迫事,使聾瞽人;值追逐時,騎瘦病馬;對昏殘燭,理爛亂絲,而能意念不躁 -,聲色不動,亦不後事者,其才器吾誠服之矣。 -  義所當為,力所能為,心欲有為,而親友挽得回,妻拏勸得止,只是無志。 -  妙處先定不得,口傳不得,臨事臨時,相幾度勢,或只須色意,或只須片言,或用 -疾雷,或用積陰,務在當可,不必彼覺,不必人驚,卻要善持善發,一錯便是死生關。 -  意主於愛,則詬罵撲擊皆所以親之也;意主於惡,則獎譽綢繆皆所以仇之也。 -  養定者,上交則恭而不迫,下交則泰而不忽,處親則愛而不狎,處疏則真而不厭。 -  有進用,有退用,有虛用,有實用,有緩用,有驟用,有默用,有不用之用,此八 -用者,宰事之權也。而要之歸於濟義,不義,雖濟,君子不貴也。 -  責人要含蓄,忌太盡;要委婉,忌太直;要疑似,忌太真。 -  今子弟受父兄之責也,尚有所不堪,而況他人乎?孔子曰:「忠告而善道之,不可 -則止。」此語不止全交,亦可養氣。 -  禍莫大於不仇人而有仇人之辭色,恥莫大於不恩人而詐恩人之狀態。 -  柔勝剛,訥止辯,讓愧爭,謙伏傲。是故退者得常倍,進者失常倍。 -  余少時曾泄當密之語,先君責之,對曰:「已戒聞者使勿泄矣。」先君曰:「子不 -能必子之口,而能必人之口乎?且戒人與戒己孰難?小子慎之。」 -  中孚,妙之至也。格天動物不在形跡言語。事為之末;苟無誠以孚之,諸皆糟粕耳 -,徒勤無益於義;鳥抱卵曰孚,從爪從子,血氣潛入而子隨母化,豈在聲色?豈事造作 -?學者悟此,自不怨天尤人。 -  應萬變,索萬理,惟沉靜者得之。是故水止則能照,衡定則能稱。世亦有昏昏應酬 -而亦濟事,夢夢談道而亦有發明者,非資質高,則偶然合也,所不合者何限? -  禍莫大於不體人之私而又苦之,仇莫深於不諱人之短而又訐之。 -  肯替別人想,是第一等學問。 -  不怕千日密,只愁一事疏。誠了再無疏處,小人掩著,徒勞爾心矣。譬之於物,一 -毫欠缺,久則自有欠缺承當時;譬之於身,一毫虛弱,久則自有虛弱承當時。 -  置其身於是非之外,而後可以折是非之中;置其身於利害之外,而後可以觀利害之 -變。 -  余觀察晉中,每升堂,首領官凡四人,先揖堂官,次分班對揖,將退,則余揖手, -四人又一躬而行。一日,三人者以公出,一人在堂,偶忘對班之無人,又忽揖下,起, -愧不可言,群吏忍口而笑。余揖手謂之曰:「有事不妨先退。」揖者退,其色頓平。昔 -余令大同日,縣丞到任,余讓筆揖手,丞他顧而失瞻,余面責簿吏曰:「奈何不以禮告 -新官?」丞愧謝,終公宴不解容,余甚悔之。偶此舉能掩人過,可補前失矣。因識之以 -充忠厚之端云。 -  善用人底,是個人都用得;不善用人底,是個人用不得。 -  以多惡棄人,而以小失發端,是藉棄者以口實而自取不韙之譏也。曾有一隸,怒撻 -人,余杖而恕之。又竊同舍錢,又杖而恕之,且戒之曰:「汝慎,三犯不汝容矣!」一 -日在燕,醉而寢。余既行矣,而呼之不至,既至,托疾,實醉也。余逐之。出語人曰: -「余病不能從,遂逐我。」人曰:「某公有德器,乃以疾逐人耶?」不知余惡之也,以 -積愆而逐之也。以小失則余之拙也。雖然,彼藉口以自白,可為他日更主之先容,余拙 -何悔! -  手段不可太闊,太闊則填塞難完;頭緒不可太繁,太繁則照管不到。 -  得了真是非,才論公是非。而今是非不但捉風捕影,且無風無影,不知何處生來, -妄聽者遽信是實以定是非。曰:我無私也。噫!固無私矣,《采苓》止棘,暴公《巷伯 -》,孰為辯之? -  固可使之愧也,乃使之怨;固可使之悔也,乃使之怒;固可使之感也,乃使之恨。 -曉人當如是耶? -  不要使人有過。 -  謙忍皆居尊之道,儉樸皆居富之道。故曰:卑不學恭,貧不學儉。 -  豪雄之氣雖正多粗,只用他一分,便足濟事,那九分都多了,反以憤事矣。 -  君子不受人不得已之情,不苦人不敢不從之事。 -  教人十六字:誘掖,獎勸,提撕,警覺,涵育;薰陶,鼓舞,興作。 -  水激逆流,火激橫發,人激亂作,君子慎其所以激者。愧之,則小人可使為君子, -激之,則君子可使為小人。 -  事前忍易,正事忍難;正事悔易,事後悔難。 -  說盡有千說,是卻無兩是。故談道者必要諸一是而後精,謀事者必定於一是而後濟。 -  世間事各有恰好處,慎一分者得一分,忽一分者失一分,全慎全得,全忽全失。小 -事多忽,忽小則失大;易事多忽,忽易則失難。存心君子自得之體驗中耳。 -  到一處問一處風俗,果不大害,相與循之,無與相忤。果於義有妨,或不言而默默 -轉移,或婉言而徐徐感動,彼將不覺而同歸於我矣。若疾言厲色,是己非人,是激也, -自家取禍不惜,可惜好事做不成。 -  事有可以義起者,不必泥守舊例;有可以獨斷者,不必觀望眾人。若舊例當,眾人 -是,莫非胸中道理而彼先得之者也,方喜舊例免吾勞,方喜眾見印吾是,何可別生意見 -以作聰明哉? -  此繼人之後者之所當知也。 -  善用明者,用之於暗;善用密者,用之於疏。 -  你說底是我便從,我不是從你,我自從是,仍私之有?你說底不是我便不從,不是 -不從你,我自不從不是,何嫌之有? -  日用酬酢,事事物物要合天理人情。所謂合者,如物之有底蓋然,方者不與圓者合 -,大者不與小者合,欹者不與正者合。 -  覆諸其上而不廣不狹,旁視其隙而若有若無。一物有一物之合,不相苦窳;萬物各 -有其合,不相假借。此之謂天則,此之謂大中,此之謂天下萬事萬物各得其所,而聖人 -之所以從容中,賢者之所以精一求,眾人之所以醉心夢意、錯行亂施者也。 -  事有不當為而為者,固不是;有不當悔而悔者,亦不是。 -  聖賢終始無二心,只是見得定了。做時原不錯,做後如何悔? -  即有凶咎,亦是做時便大[ 扌棄] 如此。 -  心實不然,而跡實然。人執其然之跡,我辨其不然之心,雖百口,不相信也。故君 -子不示人以可疑之跡,不自誣其難辨之心。何者?正大之心孚人有素,光明之行無所掩 -覆也。倘有疑我者,任之而已,嘵嘵何為? -  大丈夫看得生死最輕,所以不肯死者,將以求死所也。死得其所,則為善用死矣。 -成仁取義,死之所也,雖死賢於生也。 -  將祭而齊其思慮之不齊者,不惟惡念,就是善念也是不該動的。這三日裡,時時刻 -刻只在那所祭者身上,更無別個想頭,故曰精白一心。才一毫雜便不是精白,才二便不 -是一心,故君子平日無邪夢,齊日無雜夢。 -  彰死友之過,此是第一不仁。生而告之也,望其能改,彼及聞之也,尚能自白,死 -而彰之,夫何為者?雖實過也,吾為掩之。 -  爭利起於人各有欲,爭言起於人各有見。惟君子以淡泊自處,以知能讓人,胸中有 -無限快活處。 -  吃這一箸飯,是何人種獲底?穿這一匹帛,是何人織染底? -  大廈高堂,如何該我住居?安車駟馬,如何該我乘坐?獲飽暖之休,思作者之勞; -享尊榮之樂,思供者之苦,此士大夫日夜不可忘情者也。不然,其負斯世斯民多矣。 -  只大公了,便是包涵天下氣象。 -  定、靜、安、慮、得,此五字時時有,事事有,離了此五字便是孟浪做。 -  公人易,公己難;公己易,公己於人難;公已於人易,忘人己之界而不知我之為誰 -難。公人處,人能公者也;公已處,己亦公者也。至於公己於人,則不以我為嫌時,當 -貴我富我。 -  泰然處之而不嫌於尊己事,當逸我利我。公然行之而不嫌於厲民,非富貴我,逸利 -我也。我者,天下之我也。天下名分紀綱於我乎寄,則我者,名分紀綱之具也。何嫌之 -有?此之謂公己於人,雖然,猶未能忘其道,未化也。聖人處富貴逸利之地,而忘其身 -;為天下勞苦卑因,而亦忘其身。非曰我分當然也,非曰我志欲然也。譬痛者之必呻吟 -,樂者之必談笑,癢者之必爬搔,自然而已。譬蟬之鳴秋,雞之啼曉,草木之榮枯,自 -然而已。夫如是,雖負之使灰其心,怒之使薄其意,不能也;況此分不盡,而此心少怠 -乎?況人情未孚,而惟人是責乎?夫是之謂忘人己之界,而不知我之為誰。不知我之為 -誰,則亦不知人之為誰矣。不知人我之為誰,則六合混一,而太和元氣塞於天地之間矣 -。必如是而後謂之仁。 -  才下手便想到究竟處。 -  理、勢、數皆有自然。聖人不與自然鬥,先之不敢於之,從之不敢迎之,待之不敢 -奈之,養之不敢強之。功在凝精不攖其鋒,妙在默成不揭其名。夫是以理、勢、數皆為 -我用,而相忘於不爭。噫!非善濟天下之事者,不足以語此。 -  心一氣純,可以格天動物,天下無不成之務矣。 -  握其機使自息,開其竅使自噭,發其萌使自崢,提其綱使自張,此老氏之術乎?曰 -:非也。二帝三王御世之大法不過是也。解其所不得不動,投其所不得不好,示其所不 -得不避。天下固有抵死而惟吾意指者,操之有要而敁敪其心故也。化工無他術,亦只是 -如此。 -  對憂人勿樂,對哭人勿笑,對失意人勿矜。 -  與禽獸奚擇哉?於禽獸又何難焉?此是孟子大排遣。初愛敬人時,就安排這念頭, -再不生氣。余因擴充排遺橫逆之法,此外有十:一曰與小人處,進德之資也。彼侮愈甚 -,我忍愈堅,於我奚損哉?《詩》曰:「他山之石,可以攻玉。」二曰不遇小人,不足 -以驗我之量。《書》曰:「有容德乃大。」三曰彼橫逆者至於自反,而忠猶不得免焉。 -其人之頑悖甚矣,一與之校必起禍端。兵法云:「求而不得者,挑也無應。」四曰始愛 -敬矣,又自反而仁禮矣,又自反而忠矣。我理益直,我過益寡。其卒也乃不忍於一逞以 -掩舊善,而與彼分惡,智者不為。太史公曰:「無棄前修而祟新過。」五曰是非之心, -人皆有之。彼固自昧其天,而責我無已,公論自明,吾亦付之不辯;古人云:「桃李不 -言,下自成蹊。」六曰自反無闕。彼欲難盈,安心以待之,緘口以聽之,彼計必窮。 -  兵志曰:「不應不動,敵將自靜。」七曰可避則避之,如太王之去邠;可下則下之 -,如韓信之跨下。古人云:「身愈詘,道愈尊。」 -  又曰:「終身讓畔,不失一段。」八曰付之天。天道有知,知我者其天乎?《詩》 -曰:「投彼有昊。」九曰委之命。人生相與,或順或忤,或合或離,或疏之而親,或厚 -之而疑,或偶遭而解,或久構而危。魯平公將出而遇臧倉,司馬牛為弟子而有桓魋,豈 -非命耶?十曰外寧必有內憂。小人侵陵則懼患、防危、長慮、卻顧,而不敢侈然。有肆 -心則百禍潛消。孟子曰:「出則無敵國外患者,國恒亡。」三自反後,君子存心猶如此 -。彼愛人不親禮,人不答而遽怒,與夫不愛人、不敬人而望人之愛敬己也,其去。 -  橫逆能幾何哉? -  過責望人,亡身之念也。君子相與,要兩有退心,不可兩有進心。自反者,退心也 -。故剛兩進則碎,柔兩進則屈,萬福皆生於退反。 -  施者不知,受者不知,誠動於天之南,而心通於海之北,是謂神應;我意才萌,彼 -意即覺,不俟出言,可以默會,是謂念應;我以目授之,彼以目受之,人皆不知,商人 -獨覺,是謂不言之應;我固強之,彼固拂之,陽異而陰同,是謂不應之應。 -  明乎此者,可以談兵矣。 -  卑幼有過,慎其所以責讓之者:對眾不責,愧悔不責,暮夜不則,正飲食不責,正 -歡慶不責,正悲憂不責,疾病不責。 -  舉世之議論有五:求之天理而順,即之人情而安,可按聖賢,可質神明,而不必於 -天下所同,曰公論。情有所便,意有所拂,逞辯博以濟其一偏之說,曰私論。心無私曲 -,氣甚豪雄,不察事之虛實、勢之難易、理之可否,執一隅之見,狃時俗之習,既不正 -大,又不精明,蠅哄蛙嗷,通國成一家之說,而不可與聖賢平正通達之識,曰妄論。造 -偽投奸,滃訾詭秘,為不根之言,播眾人之耳,千口成公,久傳成實,卒使夷由為蹻跖 -,曰誣論。稱人之善,胸無秤尺,惑於小廉曲謹,感其照意象恭,喜一激之義氣,悅一 -霎之道言,不觀大節,不較生平,不舉全體,不要永終,而遽許之,曰無識之論。嗚呼 -!議論之難也久矣,聽之者可弗察與? -  簡靜沉默之人發用出來不可當,故停蓄之水一決不可御也,蟄處之物其毒不可當也 -,潛伏之獸一猛不可禁也。輕泄驟舉,暴雨疾風耳,智者不懼焉。 -  平居無事之時,則丈夫不可繩以婦人之守也,及其臨難守死,則當與貞女烈婦比節 -;接人處眾之際,則君子未嘗示人以廉隅之跡也,及其任道徒義,則當與壯士健卒爭勇。 -  禍之成也必有漸,其激也奮於積。智者於其漸也絕之,於其積也消之,甚則決之。 -決之必須妙手,譬之瘍然,鬱而內潰,不如外決;成而後決,不如早散。 -  涵養不定的,惡言到耳先思馭氣,氣平再沒錯的。一不平,饒你做得是,也帶著五 -分過失在。 -  疾言、遽色、厲聲、怒氣,原無用處。萬事萬物只以心平氣和處之,自有妙應。余 -褊,每坐此失,書以自警。 -  嘗見一論人者云:「渠只把天下事認真做,安得不敗?」余聞之甚驚訝,竊意天下 -事盡認真做去,還做得不象,若只在假借面目上做工夫,成甚道理?天下事只認真做了 -。更有甚說?何事不成?方今大病痛,正患在不肯認真做,所以大綱常、正道理無人扶 -持,大可傷心。嗟夫!武子之愚,所謂認真也與? -  人人因循昏忽,在醉夢中過了一生,壞廢了天下多少事! -  惟憂勤惕勵之君子,常自惺惺爽覺。 -  明義理易,識時勢難;明義理腐儒可能,識時勢非通儒不能也。識時易,識勢難; -識時見者可能,識勢非蚤見者不能也。 -  識勢而蚤圖之,自不至於極重,何時之足憂? -  只有無跡而生疑,再無有意而能掩者,可不畏哉? -  令人可畏,未有不惡之者,惡生毀;令人可親,未有不愛之者,愛生譽。 -  先事體怠神昏,事到手忙腳亂,事過心安意散,此事之賊也。兵家尤不利此。 -  善用力者,舉百鈞若一羽,善用眾者,操萬旅若一人。 -  沒這點真情,可惜了繁文侈費;有這點真情,何嫌於二簋一掬? -  百代而下,百里而外,論人只是個耳邊紙上,並跡而誣之,那能論心?嗚呼!文士 -尚可輕論人乎哉?此天譴鬼責所繫,慎之! -  或問:「怨尤之念,底是難克,奈何?」曰:「君自來怨尤,怨尤出甚的?天之水 -旱為虐不怕人怨,死自死耳,水旱白若也;人之貪殘無厭不伯你尤,恨自恨耳,貪殘自 -若也。此皆無可奈何者。今且不望君自修自責,只將這無可奈何事惱亂心腸,又添了許 -多痛苦,不若淡然安之,討些便宜。」其人大笑而去。 -  見事易,任事難。當局者只怕不能實見得,果實見得,則死生以之,榮辱以之,更 -管甚一家非之,全國非之,天下非之。 -  人事者,事由人生也。清心省事,豈不在人? -  閉戶於鄉鄰之鬥,雖有解紛之智,息爭之力,不為也,雖忍而不得謂之楊朱。忘家 -於懷襄之時,雖有室家之憂,骨肉之難,不顧也,雖勞而不得謂之墨翟。 -  流俗污世中真難做人,又跳脫不出,只是清而不激就好。 -  恩莫到無以加處:情薄易厚,愛重成隙。 -  欲為便為,空言何益?不為便不為,空言何益? -  以至公之耳聽至私之口,舜、跖易名矣;以至公之心行至私之聞,黜陟易法矣。故 -兼聽則不蔽,精察則不眩,事可從容,不必急遽也。 -  某居官,厭無情者之多言,每裁抑之。蓋無厭之欲,非分之求,若以溫顏接之,彼 -懇乞無已,煩瑣不休,非嚴拒則一日之應酬幾何?及部署日看得人有不盡之情,抑不使 -通,亦未盡善。嘗題二語於私署云:「要說的盡著都說,我不嗔你;不該從未敢輕從, -你休怪我。」或曰:「畢竟往日是。」 -  同途而遇,男避女,騎避步,輕避重,易避難,卑幼避尊長。 -  勢之所極,理之所截,聖人不得而毫髮也。故保辜以時刻分死生,名次以相鄰分得 -失。引繩之絕,墮瓦之碎,非必當斷當敝之處,君子不必如此區區也。 -  制禮法以垂萬世、繩天下者,須是時中之聖人斟酌天理人情之至而為之。一以立極 -,無一毫矯拂心,無一毫懲創心,無一毫一切心,嚴也而於人情不苦,寬也而於天則不 -亂,俾天下肯從而萬世相安。故曰:「禮之用,和為貴。」和之一字,制禮法時合下便 -有,豈不為美?《儀禮》不知是何人製作,有近於迂闊者,有近於迫隘者,有近於矯拂 -者,大率是個嚴苛繁細之聖人所為,胸中又帶個懲創矯拂心,而一切之。後世以為周公 -也,遂相沿而守之,畢竟不便於人情者,成了個萬世虛車。是以繁密者激人躁心,而天 -下皆逃於闊大簡直之中;嚴峻者激人畔心,而天下皆逃於逍遙放恣之地。甚之者,乃所 -驅之也。此不可一二指。余讀《禮》,蓋心不安而口不敢道者,不啻百餘事也。而宋儒 -不察《禮》之情,又於節文上增一重鎖鑰,予小子何敢言? -  禮無不報,不必開多事之端怨;無不酬,不可種難言之恨。 -  舟中失火,須思救法。 -  象箸夾冰丸,須要夾得起。 -  相嫌之敬慎,不若相忘之怒詈。 -  士君子之相與也,必求協諸禮義,將世俗計較一切脫盡。今世號為知禮者全不理會 -聖賢本意,只是節文習熟,事體諳練,燦然可觀,人便稱之,自家欣然自得,泰然責人 -。嗟夫!自繁文彌尚而先王之道湮沒,天下之苦相責,群相逐者,皆末世之靡文也。求 -之於道,十九不合,此之謂習尚。習尚壞人,如飲狂泉。 -  學者處事處人,先要識個禮義之中。正這個中正處,要析之無毫釐之差,處之無過 -不及之謬,便是聖人。 -  當急遽冗雜時,只不動火,則神有餘而不勞事,從容而就理。一動火,種種都不濟。 -  予平生處人處事,淚切之病卄居其九,一向在這裡克,只憑消磨不去。始知不美之 -質變化甚難,而況以無恒之志、不深之養,如何能變化得?若志定而養深,便是下愚也 -移得一半。 -  予平生做事發言,有一大病痛,只是個盡字,是以無涵蓄,不渾厚,為終身之大戒。 -  凡當事,無論是非邪正,都要從容蘊藉,若一不當意便忿恚而決裂之,此人終非遠 -器。 -  以淚而發者,必以無而癈,此不自涵養中來,算不得有根本底學者。涵養中人,遇 -當為之事,來得不徙,若懶若遲,持得甚堅,不移不歇。彼攘臂抵掌而任天下之事,難 -說不是義氣,畢竟到盡頭處不全美。 -  天地萬物之理皆始於從容,而卒於急促。急促者盡氣也,從容者初氣也。事從容則 -有餘味,人從容則有餘年。 -  凡人應酬多不經思,一向任情做去,所以動多有悔。若心頭有一分檢點,便有一分 -得處,智者之忽固不若愚者之詳也。 -  日日行不怕千萬里,常常做不怕千萬事。 -  事見到無不可時便斬截做,不要留戀,兒女子之情不足以語辦大事者也。 -  斷之一事,原謂義所當行,郤念有牽纏,事有掣礙,不得脫然爽潔,才痛煞煞下一 -個斷字,如刀斬斧齊一般。總然只在大頭腦處成一個是字,第二義又都放下,況兒女情 -、利害念,那顧得他?若待你百可意、千趁心,一些好事做不成。 -  先眾人而為,後眾人而言。 -  在邪人前發正論,不問有心無心,此是不磨之恨。見貪者談廉道,已不堪聞;又說 -某官如何廉,益難堪;又說某官貪,愈益難堪;況又勸汝當廉,況又責汝如何貪,彼何 -以當之?或曰:「當如何?」曰:「位在,則進退在我,行法可也。位不在,而情意相 -關,密諷可也。若與我無干涉,則鉗口而已。」禮入門而問諱,此亦當諱者。 -  天下事最不可先必而豫道之,已定矣,臨時還有變更,況未定者乎?故寧有不知之 -名,無貽失言之悔。 -  舉世囂囂兢兢不得相安,只是抵死沒自家不是耳。若只把自家不是都認,再替別人 -認一分,便是清寧世界,兩忘言矣。 -  人人自責自盡,不直四海無爭,彌宇宙間皆太和之氣矣。 -  ▉當處都要個自強不息之心,天下何事不得了?天下何人不能處? -  規模先要個闊大,意思先要個安閑,古之人約己而豐人,故群下樂為之用,而所得 -常倍。徐思而審處,故己不勞而事極精詳。褊急二字,處世之大礙也。 -  凡人初動一念是如此,及做出來郤不是如此,事去回顧又覺不是如此,只是識見不 -定。聖賢才發一念,始終如一,即有思索,不過周詳此一念耳。蓋聖賢有得於豫養,故 -安閑;眾人取辦於臨時,故昡惑。 -  處人不可任己意,要悉人之情;處事不可任己見,要悉事之理。 -  天下無難處之事,只消得兩個「如之何」;天下無難處之人,只消得三個「必自成 -」。 -  人情要耐心體他,體到悉處,則人可寡過,我可寡怨。 -  事不關係都歇過到關係時悔之何及?事幸不敗都饒過,到敗事時懲之何益?是以君 -子不忽小防,其敗也不恕敗,防其再展。此心與旁觀者一般,何事不濟? -  世道、人心、民生、國計,此是士君子四大責任。這裡都有經略,都能張主,此是 -士君子四大功業。 -  情有可通,莫於舊有者過裁抑,以生寡恩之怨;事在得已,莫於舊無者妄增設,以 -開多事之門。若理當革、時當興,合於事勢人情,則非所拘矣。 -  毅然奮有為之志,到手來只做得五分。渠非不自信,未臨事之志向雖篤,既臨事之 -力量不足也。故平居觀人以自省,只可信得一半。 -  辦天下大事,要精詳,要通變,要果斷,要執持。才鬆軟怠弛,何異鼠頭蛇尾?除 -天下大奸,要顧慮,要深沉,要突卒,要潔絕,才張皇疏慢,是攖虎欿龍鱗。 -  利害死生間有毅然不奪之介,此謂大執持。驚急喜怒事無卒然遽變之容,此謂真涵 -養。 -  力負邱山未足雄,地負萬山,此身還負地。量包滄海不為大,天包四海,吾量欲包 -天。 -  天不可欺,人不可欺,何處瞞藏些子?性分當盡職分當盡,莫教久缺分毫。 -  何是何非,何長何短,但看百忍之圖。不喑不瞽,不痴不聾,自取一朝之忿。 -  植萬古綱常,先立定自家地步;做兩間事業,先推開物我藩籬。 -  捱不過底事,莫如早行;悔無及之言,何似休說。 -  苟時不苟真不苟,忙處無忙再無忙。 -  《謙》六爻,畫畫皆吉;恕一字,處處可行。 -  才逢樂處須知苦,既沒閑時那有忙。 -  生來不敢拂吾髮,義到何妨斷此頭。 -  量嫌六合隘,身負五岳輕。 -  休買貴後賤,休逐眾人見。 -  難乎能忍,妙在不言。 -  休忙休懶,不懶不忙。 - - - - -養生 - - -  夫水遏之,乃所以多之;泄之,乃所以竭之。惟仁者能泄。 -  惟智者知泄。 -  天地間之禍人者,莫如多;令人易多者,莫如美。美味令人多食,美色令人多欲, -美聲令人多聽,美物令人多貪,美官令人多求,美室令人多居,美田令人多置,美寢令 -人多逸,美言令人多入,美事令人多戀,美景令人多留,美趣令人多思,皆禍媒也。不 -美則不令人多。不多則不令人敗。予有一室,題之曰「遠美軒」,而扁其中曰「冷淡」 -。非不愛美,懼禍之及也。 - -  夫魚見餌不見鉤,虎見羊不見阱。猩猩見酒不見人,非不見也,迷於所美而不暇顧 -也。此心一冷,則熱鬧之景不能入;一淡,則豔冶之物不能動。夫能知困窮、抑鬱、貧 -賤,坎坷之為詳,則可與言道矣。 -  以肥甘愛兒女而不思其傷身,以姑息愛兒女而不恤其敗德, -  甚至病以死,患大辟而不知悔者,皆婦人之仁也。噫!舉世之自愛而陷於自殺者, -又十人而九矣。 -  五閉,養德養生之道也。或問之曰:「視、聽、言、動、思將不啟與?」曰:「常 -閉而時啟之,不弛於事可矣。此之謂夷夏關。」 -  今之養生者,餌藥、服氣、避險、辭難、慎時、寡慾,誠要法也。嵇康善養生,而 -其死也卻在所慮之外。乃知養德尤養生之第一要也。德在我,而蹈白刃以死,何害其為 -養生哉? -  愚愛談醫,久則厭之,客言及者,告之曰:「以寡慾為四物,以食淡為二陳,以清 -心省事為四君子。無價之藥,不名之醫,取諸身而已。」 -  仁者壽,生理完也;默者壽,元氣定也;拙者壽,元神固也。反比皆妖道也。其不 -然,非常理耳。 -  盜為男戎,色為女戎。人皆知盜之劫殺為可畏。而忘女戎之劫殺。悲夫! -  太樸,天地之命脈也。太樸散而天地之壽妖可卜矣。故萬物蕃,則造化之元精耗散 -。木多實者根傷,草出莖者根虛,費用廣者家貧,言行多者神竭,皆妖道也。老子受用 -處,盡在此中看破。 -  饑寒痛癢,此我獨覺,雖父母不之覺也;衰老病死,此我獨當,雖妻子不能代也。 -自愛自全之道,不自留心,將誰賴哉? -  氣有為而無知,神有知而無為。精者,無知無為,而有知有為之母也。精天一也, -屬水,水生氣;氣純陽也,屬火,火生神;神太虛也,屬無,而麗於有。精盛則氣盛, -精衰則氣衰,故甑涸而不蒸。氣存則神存,氣亡則神亡,故燭盡而火滅。 -  氣只夠喘息底,聲只夠聽聞底,切莫長餘分毫,以耗無聲無臭之真體。 - -  語云:「縱欲忘身」,忘之一字最宜體玩。昏不省記謂之忘,欲迷而不悟,情勝而 -不顧也。夜氣清明時,都一一分曉,著迷處,便思不起,沉溺者可以驚心回首矣。 -  在篋香韞,在几香損,在爐香燼。 -  書室聯:「曙枕酣餘夢,旭窗閑展書。」 - - - - - -天地 - - -  濕溫生物,濕熱長物,燥熱成物,淒涼殺物,嚴寒養物。 -  濕溫,沖和之氣也;濕熱,蒸發之氣也;燥熱,燔灼之氣也;淒涼,殺氣,陰壯而 -陽微也,嚴寒,斂氣,陰外激而陽內培也。 -  五氣惟嚴寒最仁。 -  渾厚,天之道也。是故處萬物而忘言,然不能無日月星辰以昭示之,是寓精明於渾 -厚之中。 -  精存則生神,精散則生形。太乙者,天地之神也;萬物者,天地之形也。太乙不盡 -而天地存,萬物不已而天地毀。人亦然。 -  天地只一個光明,故不言而人信。 -  天地不可知也,而吾知天地之所生,觀其所生,而天地之性情形體懼見之矣。是故 -觀子而知父母,觀器而知模範。天地者,萬物之父母而造物之模範也。 -  天地之氣化,生於不齊,而死於齊。故萬物參差,萬事雜揉,勢固然耳,天地亦主 -張不得。 -  觀七十二候者,謂物知時,非也,乃時變物耳。 -  天地盈虛消息是一個套子,萬物生長收藏是一副印板。 -  天積氣所成,自吾身以上皆天也。日月星辰去地八萬四千里,囿於積氣中,無纖隔 -微礙,徹地光明者,天氣清甚無分毫渣滓耳。故曰太清。不然,雖薄霧輕煙,一里外有 -不見之物矣。 -  地道,好生之至也,凡物之有根種者,必與之生。盡物之分量,盡己之力量,不至 -寒凝枯敗不止也、故曰坤稱母。 -  四時惟冬是天地之性,春夏秋皆天地之情。故其生萬物也,動氣多而靜氣少。 -  萬物得天地之氣以生,有宜溫者,有宜微溫者,有宜太溫者,有宜溫而風者,有宜 -溫而濕者,有宜溫而燥者,有宜溫而時風時濕者。何氣所生,則宜何氣,得之則長養, -失之則傷病。 -  氣有一毫之爽,萬物陰受一毫之病。其宜涼、宜寒、宜暑,無不皆然。飛潛動植, -蠛蠓之物,無不皆然。故天地位則萬物育,王道平則萬民遂。 -  六合中洪纖動植之物,都是天出氣、地出質熔鑄將出來,都要消磨無跡還他。故物 -不怕是金石,也要歸於無。蓋從無中生來,定要都歸無去。譬之一盆水,打攪起來大小 -浮漚以千萬計,原是假借成的,少安靜時,還化為一盆水。 -  先天立命處,是萬物自具的,天地只是個生息培養。只如草木原無個生理,天地好 -生亦無如之何。 -  天地間萬物,都是陰陽兩個共成的。其獨得於陰者,見陽必避,蝸牛壁蘚之類是也 -;其獨得於陽者,見陰必枯,夏枯草之類是也。 -  陰陽合時只管合,合極則離;窩時只管離,離極則合。不極則不離不合,極則必離 -必合。 -  定則水,燥則火,吾心自有水火;靜則寒,動則熱,吾身自有冰炭。然則天地之冰 -炭誰為之?亦動靜為之。一陰生而宇宙入靜,至十月閉塞而成寒;一陽生而宇宙入動, -至五月薰蒸而成暑。或曰,「五月陰生矣,而六月大暑,十一月陽生矣,而十二月大寒 -;何也?」曰:「陽不極則不能生陰,陰不極則不能生陽,勢窮則反也。微陰激陽,則 -陽不受激而愈熾;微陽激陰,則陰不受激而愈溢,氣逼則甚也。至七月、正月,則陰陽 -相戰,客不勝主,衰不勝旺,過去者不勝方來。故七月大火西流,而金漸生水;正月析 -木用事,而水漸生火。蓋陰陽之氣續接非直接,直接則絕,父母死而子始生,有是理乎 -?漸至非驟至,驟至則激,五穀種而能即熟,有是理乎?二氣萬古長存,萬物四時成遂 -,皆續與漸為之也。惟續,故不已;惟漸,故無跡。 -  既有個陰氣,必有聚結,故為月;既有個陽氣,必有精華,故為日。晦是月之體, -本是純陰無光之物,其光也映日得之,客也,非主也。 -  天地原無晝夜,日出而成晝,日入而成夜。星常在天,日出而不顯其光,日入乃顯 -耳。古人云星從日生。細看來,星不借日之光以為光。嘉靖壬寅日食,既滿天有星,當 -是時,日且無光,安能生星之光乎? -  水靜柔而動剛,金動柔而靜剛,木生柔而死剛,火生剛而死柔。土有剛有柔,不剛 -不柔,故金、木、水、火皆從鍾焉,得中故也,天地之全氣也。 -  噓氣自內而之外也,吸氣自外而之內也。天地之初噓為春,噓盡為夏,故萬物隨噓 -而生長;天地之初吸為秋,吸盡為冬,故萬物隨吸而收藏。噓者,上升陽氣也,陽主發 -;吸者,下降陰氣也,陰主成。噓氣溫,故為春夏;吸氣寒,故為秋冬。一噓一吸,自 -開闢以來至混沌之後,只這一絲氣有毫髮斷處,萬物滅,天地毀。萬物,天地之於也, -一氣生死無不肖之。 -  風惟知其吹拂而已,雨惟知其淋漓而已,雪惟知其嚴凝而已,水惟知其流行而已, -火惟知其燔灼而已。不足則屏息而各藏其用,有餘則猖狂而各恣其性。卒然而感則強者 -勝,若兩軍交戰,相下而後已。是故久陰則權在雨,而日月難為明;久旱則權在風,而 -雲雨難為澤,以至水火霜雪莫不皆然。誰為之? -  曰:明陽為之。陰陽誰為之?曰:自然為之。 -  陰陽征應,自漢儒穿鑿附會,以為某災樣應某政事,最迂。 -  大抵和氣致祥,戾氣致妖,與作善降樣,作惡降殃,道理原是如此。故聖人只說人 -事,只盡道理,應不應,在我不在我都不管。若求一一征應,如鼓答桴,堯、舜其猶病 -矣。大叚氣數有一定的,有偶然的,天地不能違,天地亦順之而已。旱而雩,水而滎, -彗孛而禳,火而祓,日月食而救,君子畏天威,謹天戒當如是爾。若雲隨禱輒應,則日 -月盈虧豈繫於救不救之間哉? -  大抵陰陽之氣一偏必極,勢極必反。陰陽乖戾而分,故孤陽亢而不下陰則旱,無其 -極,陽極必生陰,故久而雨;陰陽和合而留,故淫陰升而不捨陽則雨,無其極,陰極必 -生陽,故久而睛。 -  草木一衰不至遽茂,一茂不至遽衰;夫婦朋友失好不能遽合,合不至遽乖。天道物 -理人情自然如此是一定的,星隕地震,山崩雨血,火見河清此是偶然的。吉凶先見,。 -自非常理,故臣子以修德望君,不必以災異恐之。若因災而懼,困可修德。一有祥瑞使 -可謂德已足而罷修乎?乃若至德回天,災祥立應,桑穀枯,彗星退,冤獄釋而驟雨,忠 -心白而反風,亦間有之。但曰必然事,吾不能確確然信也。 -  氣化無一息之停,不屬進,就屬退。動植之物其氣機亦無一息之停,不屬生,就屬 -死,再無不進不退而止之理。 -  形生於氣。氣化沒有底,天地定然沒有;天地沒有底,萬物定然沒有。 -  生氣醇濃渾濁,殺氣清爽澄澈;生氣牽戀優柔,殺氣果決脆斷;生氣寬平溫厚,殺 -氣峻隘涼薄。故春氣絪縕,萬物以生:夏氣薰蒸,萬物以長;秋氣嚴肅,萬物以入;冬 -氣閉藏,萬物以亡。 -  一呼一吸,不得分毫有餘,不得分毫不足;不得連呼,不得連吸;不得一呼無吸, -不得一吸無呼,此盈虛之自然也。 -  水質也,以萬物為用;火氣也,以萬物為體。及其化也,同歸於無跡。水性徐,火 -性疾,故水之入物也,因火而疾。水有定氣,火無定氣,放火附剛則剛,附柔則柔,水 -則入柔不入剛也。 -  陽不能藏,陰不能顯。才有藏處,便是陽中之陰:才有顯處,便是陰中之陽。 -  水能實虛,火能虛實。 -  乾坤是毀的,故開闢後必有混沌所以主宰?乾坤是不毀的,故混沌還成開闢。主宰 -者何?元氣是已。元氣亙萬億歲年終不磨滅,是形化氣化之祖也。 - -  天地全不張主,任陰陽;陰陽全不擺佈,任自然。世之人趨避祈禳徒自苦耳。其奪 -自然者,惟至誠。 -  天地發萬物之氣到無外處,止收斂之氣到無內處。止不至而止者,非本氣不足,則 -客氣相奪也。 -  靜生動長,動消靜息。總則生,生則長,長則消,消則息。 -  萬物生於陰陽,死於陰陽。陰陽於萬物原不相干,任其自然而已。雨非欲潤物,旱 -非欲熯物,風非欲撓物,雷非欲震物,陰陽任其氣之自然,而萬物因之以生死耳。《易 -》稱「鼓之以雷霆,潤之以風雨」,另是一種道理,不然,是天地有心而成化也。若有 -心成化,則寒暑災樣得其正,乃見天心矣。 -  天極從容,故三百六十日為一噓吸;極次第,故溫暑涼寒不驀越而雜至;極精明, -故晝有容光之照而夜有月星;極平常,寒暑旦夜、生長收藏,萬古如斯而無新奇之調; -極含蓄,並包萬象而不見其滿塞;極沉默,無所不分明而無一言;極精細,色色象象條 -分縷析而不厭其繁;極周匹,疏而不漏;極凝定,風雲雷雨變態於胸中,悲歡叫號怨德 -於地下,而不惡其擾;極通變,普物因材不可執為定局;極自然,任陰陽氣數理勢之所 -極所生,而已不與;極堅耐,萬古不易而無欲速求進之心,消磨曲折之患;極勤敏,無 -一息之停;極聰明,亙古今無一人一事能欺罔之者,極老成,有虧欠而不隱藏;極知足 -,滿必損,盛必定;極仁慈,雨露霜雪無非生物之心;極正直,始終計量,未嘗養人之 -奸、容人之惡;極公平,抑高舉下,貧富貴賤一視同仁;極簡易,無瑣屑曲局示人以繁 -難;極雅淡,青蒼自若,更無炫飾;極靈爽,精誠所至,有感必通;極謙虛,四時之氣 -常下交;極正大,擅六合之恩威而不自有;極誠實,無一毫偽妄心,虛假事;極有信, -萬物皆任之而不疑。故人當法天。人,天所生也。如之者存,反之者亡,本其氣而失之 -也。 -  春夏後看萬物繁華,造化有多少淫巧,多少發揮,多少張大,元氣安得不斲喪?機 -緘安得不窮盡?此所以虛損之極,成否塞,成渾沌也。 -  形者,氣之橐囊也。氣者,形之線索也。無形,則氣無所憑籍以生;無氣,則形無 -所鼓舞以為生。形須臾不可無氣,氣無形則萬古依然在宇宙間也。 -  要知道雷霆霜雪都是太和。 -  濁氣醇,清氣漓;濁氣厚,清氣薄;濁氣同,清氣分;濁氣溫,清氣寒;濁氣柔, -清氣剛;濁氣陰,消氣陽;濁氣豐,清氣嗇;濁氣甘,清氣苦;濁氣喜,清氣惡;濁氣 -榮,清氣枯;濁氣融,清氣孤;濁氣生,清氣殺。 -  一陰一陽之謂道。二陰二陽之謂駁。陰多陽少、陽多陰少之謂偏。有陰無陽、有陽 -無陰之謂孤。一陰一陽,乾坤兩卦,不二不雜,純粹以精,此天地中和之氣,天地至善 -也。是道也,上帝降衷,君子衷之。是故繼之即善,成之為性,更無偏駁,不假修為, -是一陰一陽屬之君子之身矣。故曰,君子之道,仁者見之謂之仁,智者見之謂之智,此 -之謂偏。百勝日用而不知,此之謂駁。至於孤氣所生,大乖常理。孤陰之善,慈悲如母 -,惡則險毒如虺;孤陽之善,嫉惡如仇,惡則凶橫如虎。此篇夫子論性純以善者言之, -與性相近,稍稍不同。 -  天地萬物只是一個漸,故能成,故能久。所以成物悠者,漸之象也;久者,漸之積 -也。天地萬物不能頓也,而況於人乎? -  故悟能頓,成不能頓。 -  盛德莫如地,萬物於地,惡道無以加矣。聽其所為而莫之憾也,負菏生成而莫之厭 -也。故君子卑法地,樂莫大焉。 -  日正午,月正圓,一呼吸間耳。呼吸之前,未午未圓;呼吸之後,午過圓過。善觀 -中者,此亦足觀矣。 -  中和之氣,萬物之所由以立命者也,故無所不宜;偏盛之氣,萬物之所由以盛衰者 -也,故有宜有不宜。 -  祿、位、名、壽、康、寧、順、適、子孫賢達,此天福人之大權也。然嘗輕以與人 -,所最靳而不輕以與人者,惟名。福善禍淫之言,至名而始信。大聖得大名,其次得名 -,視德無分毫爽者,惡亦然。祿、位、壽、康在一身,名在天下;祿、位、壽、康在一 -時,名在萬世。其惡者備有百福,惡名愈著;善者備嘗艱苦,善譽日彰。桀、封、幽、 -厲之名,孝子慈孫百世不能改。此固天道報應之微權也。天之以百福予人者,恃有此耳 -。 -  彼天下萬世之所以仰慕欽承痰惡笑罵,其禍福固亦不小也。 -  以理言之,則當然者謂之天,命有德討有罪,奉三尺無私是已;以命言之,則自然 -者謂之天,莫之為而為,莫之致而至,定於有生之初是已;以數言之,則偶然者謂之天 -,會逢其適,偶值其際是已。 -  造物之氣有十:有中氣,有純氣,有雜氣,有戾氣,有似氣,有大氣,有細氣,有 -間氣,有變氣,有常氣,皆不外於五行。中氣,五行均調,精粹之氣也,人鍾之而為堯 -、舜、禹、文、周、孔,物得之而為鱗鳳之類是也。純氣,五行各具純一之氣也,人得 -之而為伯夷、伊尹、柳下惠,物得之而為龍虎之類是也。雜氣,五行交亂之氣也。戾氣 -,五行粗惡之氣也。 -  似氣,五行假借之氣也。大氣,磅磅渾淪之氣也。細氣,纖蒙浮渺之氣也。間氣, -積久充溢會合之氣也。變氣,偶爾遭逢之氣也。常氣,流行一定之氣也。萬物各有所受 -以為生,萬物各有所屬以為類,萬物不自由也。惟有學問之功,變九氣以歸中氣。 -  火性發揚,水性流動,木性條暢,金性堅剛,土性重厚,其生物也亦然。 -  太和在我,則天地在我,何動不臧?何往不得? -  彌六合皆動氣之所為也,靜氣一粒伏在九地之下以胎之。 - -  故動者靜之死鄉,靜者動之生門。無靜不生,無動不死。靜者常施,動者不還。發 -大造之生氣者動也,耗大造之生氣者亦動也。聖人主靜以涵元理,道家主靜以留元氣。 -  萬物發生,皆是流於既溢之餘,萬物收斂,皆是勞於既極之後。天地一歲一呼吸, -而萬物隨之。 -  天地萬物到頭來皆歸於母。故水、火、金、木有盡,而土不盡。何者?水、火、金 -、木,氣盡於天,質盡於地,而土無可盡。故真氣無歸,真形無藏。萬古不可磨滅,滅 -了更無開闢之時。所謂混沌者,真氣與真形不分也。形氣混而生天地,形氣分而生萬物 -。 -  天欲大小人之惡,必使其惡常得志。彼小人者,惟恐其惡之不遂也,故貪天禍以至 -於亡。 -  自然謂之天,當然謂之天,不得不然謂之天;陽亢必旱,久旱必陰,久陰必雨,久 -雨必晴,此之謂自然。君尊臣卑,父坐子立,夫唱婦隨,兄友弟恭,此之謂當然。小役 -大,弱役強,貧役富,賤役貴,此之謂不得不然。 -  心就是天,欺心便是欺天,事心便是事天,更不須向蒼蒼上面討。 -  天者,未定之命;命者,已定之天。天者,大家之命,命者,各物之天。命定而吉 -凶禍福隨之也,由不得天,天亦再不照管。 -  天地萬物只是一氣聚散,更無別個。形者,氣所附以為凝結;氣者,形所托以為運 -動。無氣則形不存,無形則氣不住。 -  天地既生人物,則人物各具一天地。天地之天地由得天地,人物之天地由不得天地 -。人各任其氣質之天地至於無涯牿,其降衷之天地幾於澌盡,天地亦無如之何也已。其 -吉凶禍福率由自造,天何尤乎而怨之? -  吾人渾是一天,故日用起居食總念念時時事事便當以天自處。 -  朱子云:「天者,理也。」余曰:「理者,天也。」 -  有在天之天,有在人之天。有在天之先天,太極是已;有在天之後天,陰陽五行是 -已。有在人之先天,元氣、無理是已;有在人之後天,血氣、心知是已。 -  問:「天地開闢之初,其狀何似?」曰:「未易形容。」因指齋前盆沼,令滿貯帶 -沙水一盆,投以瓦礫數小塊,雜穀豆升許,令人攪水渾濁,曰:「此是混沌未分之狀。 -待三日後再來看開闢。」至日而濁者清矣,輕清上浮。曰:「此是天開於子。沉底渾泥 -,此是地辟於丑。中間瓦礫出露,此是山陵,是時穀豆芽生,月餘而水中小蟲浮沉奔逐 -,此是人與萬物生於寅。徹底是水,天包乎地之象也。地從上下,故山上銳而下廣,象 -糧穀堆也。氣化日繁華,日廣侈,日消耗,萬物毀而生機微。天地雖不毀,至亥而又成 -混沌之世矣。」 -  雪非薰蒸之化也。天氣上升,地氣下降,是乾涸世界矣。然陰陽之氣不交則絕,故 -有留滯之餘陰,始生之嫩陽,往來交結,久久不散而迫於嚴寒,遂為雪為霰。白者,少 -明之色也,水之母也。盛則為雪,微則為霜,冬月片瓦半磚之下著濕地,皆有霜,陰氣 -所呵也,土乾則否。 -  兩間氣化,總是一副大蒸籠。 -  天地之於萬物,因之而已,分毫不與焉。 -  世界雖大,容得千萬人忍讓,容不得一兩個縱橫。 -  天地之於萬物原是一貫。 -  輕清之氣為霜露,濃濁之氣為雲雨。春雨少者,薰蒸之氣未濃也。春多雨則沁夏之 -氣,而夏雨必少,夏多雨者,薰蒸之氣有餘也。夏少雨則積氣之餘,而秋雨必多,此謂 -氣之常耳。至於霪潦之年,必有亢陽之年,則數年總計也。蜀中之漏天,四時多雨;雲 -中之高地,四時多旱;吳下之水鄉,黃梅之雨為多,則四方互計也。總之,一個陰陽, -一般分數,先有餘則後不足,此有餘則彼不足,均則各足,是謂太和,太和之歲,九有 -皆豐。 -  冬者,萬物之夜,所以待勞倦養精神者也。春生、夏長、秋成,而不培養之以冬, -則萬物之滅久矣。是知大冬嚴寒,所以仁萬物也。愈嚴凝則愈收斂,愈收斂則愈精神, -愈精神則生發之氣愈條暢。譬之人須要安歇,今夜能熟睡,則明日必精神。故曰:冬者 -萬物之所以歸命也。 - - - - - -世運 - - -  勢之所在,天地聖人不能違也。勢來時即摧之,未必遽壞;勢去時即挽之,未必能 -回。然而聖人每與勢忤,而不肯甘心從之者,人事宜然也。 -  世人賤老,而聖王尊之;世人棄愚,而君子取之;世人恥貧,而高士清之;世人厭 -淡,而智者味之;世人惡冷,而幽人寶之;世人薄素,而有道者尚之。悲夫!世之人難 -與言矣。 -  壞世教者,不是宦官宮安,不是農工商貿,不是衙門市井,不是囗囗。 -  古昔盛時,民自飽暖之外無過求,自利用之外無異好,安身家之便而不恣耳目之欲 -。家無奇貨,人無玩物,餘珠玉於山澤而不知寶,贏繭絲於箱篋而不知繡。偶行於途而 -知貴賤之等,創見於席而知隆殺之理。農於桑麻之外無異聞,士於禮義之外 -  無羨談;公卿大夫於勸深訓迪之外無簿書。知官之貴,而不知為民之難;知貧之可 -憂,而不知人富之可嫉。夜行不以兵,遠行不以餱. 施人者非欲其我德,施於人者不疑 -其欲我之德。訴訢渾渾,其時之春乎?其物之胚孽乎?吁!可想也已。 -  伏羲以前是一截世道,其治任之而已,己無所與也。五帝是一截世道,其治安之而 -已,不擾民也。三王是一截世道,其治正之而已,不使縱也。秦以後是一截世道,其治 -劫之而已,愚之而已,不以德也。 -  世界一般是唐虞時世界,黎民一般是唐虞時黎民,而治不古若,非氣化之罪也。 -  終極與始接,困極與亨接。 -  三皇是道德世界,五帝是仁義世界,三王是禮義世界,春秋是威力世界,戰國是智 -巧世界,漢以後是勢利世界。 -  士鮮衣美食,浮淡怪說、玩日愒時,而以農工為村鄙;女傅粉簪花、冶容學態、袖 -手樂游,而以勤儉為羞辱;官盛從豐供、繁文縟節、奔逐世態,而以教養為迂腐。世道 -可為傷心矣。 -  喜殺人是泰,愁殺人也是泰。泰之人昏惰侈肆,泰之事廢墜寬罷,泰之風紛華驕蹇 -,泰之前如上水之篙,泰之世如高竿之頂,泰之後如下坂之車。故否可以致泰,泰必至 -於否。故聖人憂泰不憂否。否易振,泰難持。 -  世之衰也,卑幼賤微氣高志肆而無上,子弟不知有父母,婦不知有舅姑,後進不知 -有先達,士民不知有官師,郎署不知有公卿,偏稗軍士不知有主帥。目空空而氣勃勃, -恥於分義而敢於陵駕。嗚呼!世道至此,未有不亂不亡者也。 -  節文度數,聖人之所以防肆也。偽禮文不如真愛敬,真簡率不如偽禮文。偽禮文猶 -足以成體,真簡率每至於逾閒;偽禮文流而為象恭滔天,真簡率而為禮法掃地。七賢八 -達,簡率之極也。舉世牛馬而晉因以亡。近世士風祟尚簡率;蕩然無檢,嗟嗟!吾莫知 -所終矣。 -  天下之勢頓可為也,漸不可為也。頓之來也驟驟多無根,漸之來也深深則難撼。頓 -著力在終,漸著力在始。 -  造物有涯而人情無涯,以有涯足無涯,勢必爭,故人人知足則天下有餘。造物有定 -而人心無定,以無定撼有定,勢必敗。 -  故人人安分則天下無事。 -  天地有真氣,有似氣。故有鳳皇則有昭明,有粟穀則有稂莠,兔葵似葵,燕麥似麥 -,野菽似菽,槐藍似槐之類。人亦然皆似氣之所鍾也。 -  六合是個情世界,萬物生於情死於情。至人無情,聖人調情,君子制情,小人縱情。 -  變民風易,變士風難;變士風易,變仕風難。仕風變,天下治矣。 -  古之居官也,在下民身上做工夫;今之居官也,在上官眼底做工夫。古之居官也尚 -正直,今之居官也尚縠阿。 -  任俠氣質皆賢者也,使人聖賢繩墨,皆光明俊偉之人。世教不明,紀法陵替,使此 -輩成此等氣習,誰之罪哉! -  世界畢竟是吾儒世界,雖二氏之教雜出其間,而紀綱法度、教化風俗,都是二帝三 -王一派家數。即百家井出,只要主僕分明,所謂元氣充實,即風寒入肌,瘡瘍在身,終 -非危症也。 -  一種不萌芽,六塵不締構,何須度萬眾成羅漢三千?九邊無夷狄,四海無奸雄,只 -宜銷五兵鑄金人十二。 - - - - -聖賢 - - -  孔子是五行造身,兩儀成性。其餘聖人得金氣多者則剛明果斷,得木氣多者則樸素 -質直,得火氣多者則發揚奮迅,得水氣多者則明徹圓融,得土氣多者則鎮靜渾厚,得陽 -氣多者則光明軒豁,得陰氣多者則沉默精細。氣質既有所限,雖造其極,終是一偏底聖 -人。此七子者,共事多不相合,共言多不相入,所同者大根本大節目耳。 -  孔顏窮居,不害其為仁覆天下,何則?仁覆天下之具在我,而仁覆天下之心未嘗一 -日忘也。 -  聖人不落氣質,賢人不渾厚便直方,便著了氣質色相;聖人不帶風土,賢人生燕趙 -則慷慨,生吳越則寬柔,就染了風土氣習。 -  性之聖人,只是個與理相忘,與道為體,不待思,惟橫行直撞,恰與時中吻合。反 -之,聖人常常小心,循規蹈矩,前望後顧,才執得中字,稍放鬆便有過不及之差。是以 -希聖君子心上無一時任情恣意處。 -  聖人一,聖人全,一則獨詣其極,全則各臻其妙。惜哉! -  至人有聖人之功而無聖人之全者,囿於見也。 -  所貴乎剛者,貴其能勝己也,非以其能勝人也。子路不勝其好勇之私,是為勇字所 -伏,終不成個剛者。聖門稱剛者誰?吾以為恂恂之顏子,其次魯鈍之曾子而已,餘無聞 -也。 -  天下古今一條大路,曰大中至正,是天造地設的。這個路上古今不多幾人走,曰堯 -、舜、禹、湯、文、武、周、孔、顏、曾、思、孟,其餘識得的周、程、張、朱,雖走 -不到盡頭,畢竟是這路上人。將這個路來比較古今人,雖伯夷、伊、惠也是異端,更那 -說那佛、老、楊、墨、陰陽術數諸家。若論個分曉,伯夷、伊、惠是旁行的,佛、老、 -楊、墨是斜行的,陰陽星數是歧行的。本原處都從正路起,卻念頭一差,走下路去,愈 -遠愈繆。所以說,異端言本原不異而發端異也。何也?佛之虛無是吾道中寂然不動差去 -,老之無為是吾道中守約施博差去,為我是吾道中正靜自守差去,兼愛是吾道中萬物一 -體差去,陰陽家是吾道中敬授人時差去,術數家是吾道中至誠前知差去。看來大路上人 -時為佛,時為老,時為楊,時為墨,時為陰陽術數,是合數家之所長。岔路上人佛是佛 -,老是老,楊是楊,墨是墨,陰陽術數是陰陽術數,殊失聖人之初意。譬之五味不適均 -不可以專用也,四時不錯行不可以專今也。 -  聖人之道不奇,才奇便是賢者。 -  戰國是個慘酷的氣運,巧偽的世道,君非富強之術不講,臣非功利之策不行,六合 -正氣獨鍾在孟子身上。故在當時疾世太嚴,憂民甚切。 -  清任和時,是孟子與四聖人議定的諡法。祖術堯、舜,憲章文、武,上律天時,下 -襲水土,是子思作仲尼的贊語。 -  聖賢養得天所賦之理完,仙家養得天所賦之氣完。然出陽脫殼,仙家未嘗不死,特 -留得此氣常存。性盡道全,聖賢未嘗不死,只是為此理常存。若修短存亡,則又繫乎氣 -質之厚薄,聖賢不計也。 -  賢人之言視聖人未免有病,此其大較耳。可怪俗儒見說是聖人語,便迴護其短而推 -類以求通;見說是賢人之言,便洗索其疵而深文以求過。設有附會者從而欺之,則陽虎 -優孟皆失其真,而不免徇名得象之譏矣。是故儒者要認理,理之所在,雖狂夫之言,不 -異於聖人。聖人豈無出於一時之感,而不可為當然不易之訓者哉? -  堯、舜功業如此之大,道德如此之全,孔子稱贊不啻口出。 -  在堯、舜心上有多少缺然不滿足處!道原體不盡,心原趁不滿,勢分不可強,力量 -不可勉,聖人怎放得下?是以聖人身囿於勢分,力量之中,心長於勢分、力量之外,才 -覺足了,便不是堯、舜。 -  伊尹看天下人無一個不是可憐的,伯夷看天下人無一個不是可惡的,柳下惠看天下 -人無個不是可與的。 -  浩然之氣孔子非無,但用的妙耳。孟子一生受用全是這兩字。我嘗云:「孟於是浩 -然之氣,孔於是渾然之氣。渾然是浩然的歸宿。浩然是渾然的作用。惜也!孟子未能到 -渾然耳。」 -  聖學專責人事,專言實理。 -  二女試舜,所謂書不可盡信也,且莫說玄德升聞,四岳共薦。以聖人遇聖人,一見 -而人品可定,一語而心理相符,又何須試? 即帝艱知人,還須一試,假若舜不能諧二 -女,將若之何?是堯輕視骨肉,而以二女為市貨也,有是哉? -  自古功業,惟孔孟最大且久。時雍風動,今日百姓也沒受用處,賴孔孟與之發揮, -而堯、舜之業至今在。 -  堯、舜、周、孔之道,如九達之衢,無所不通;如代明之日月,無所不照。其餘有 -所明,必有所昏,夷、尹、柳下惠昏於清、任、和,佛氏昏於寂,老氏昏於裔,楊氏昏 -於義,墨氏昏於仁,管、商昏於法。其心有所向也,譬之鵑鴿知南;其心有所厭也,譬 -之盍旦惡夜。豈不純然成一家人物?競是偏氣。 -  堯、舜、禹、文、周、孔,振古聖人無一毫偏倚,然五行所鍾,各有所厚,畢竟各 -人有各人氣質。堯敦大之氣多,舜精明之氣多,禹收斂之氣多,文王柔嘉之氣多,周公 -文為之氣多,孔子莊嚴之氣多,熟讀經史自見。若說天縱聖人,如太和元氣流行略不沾 -著一些,四時之氣純是德性,用事不落一毫氣質,則六聖人須索一個氣象無毫髮不同方 -是。 -  讀書要看聖人氣象性情。鄉黨見孔子氣象十九至其七情。 -  如回非助我牛刀割雞,見其喜處;由之瑟,由之使門人為臣,仍然於沮溺之對,見 -其怒處;喪予之慟,獲麟之泣,見其哀處;侍側言志之問,與人歌和之時,見其樂處; -山梁雌雉之歎,見其愛處;斥由之佞,答子貢「君子有惡」之語,見其惡處;周公之夢 -,東周之想,見其欲處。便見他發而皆中節處。 -  費宰之辭,長府之止,看閔子議論,全是一個機軸,便見他和悅而諍。處人論事之 -法,莫妙於閔於天生的一段中平之氣。 -  聖人妙處在轉移人不覺,賢者以下便露圭角,費聲色,做出來只見張皇。 -  或問,「孔、孟周流,到處欲行其道,似技癢的?」曰:「聖賢自家看的分數真, -天生出我來,抱千古帝王道術,有旋乾轉坤手投,只兀兀家居,甚是自負,所以遍行天 -下以求遇夫可行之君。既而天下皆無一遇,猶有九夷、浮海之思,公山佛肸之往。 -  夫子豈真欲如此?只見吾道有起死回生之力,天下有垂死欲生之民,必得君而後術 -可施也。譬之他人孺子入井與已無干,既在井畔,又知救法,豈忍袖手? -  明道答安石能使愧屈,伊川答子由,遂激成三黨,可以觀二公所得。 -  休作世上另一種人,形一世之短。聖人也只是與人一般,才使人覺異樣便不是聖人。 -  平生不作圓軟態,此是丈夫。能軟而不失剛方之氣,此是大丈夫。聖賢之所以分也。 -  聖人於萬事也,以無定體為定體,以無定用為定用,以無定見為定見,以無定守為 -定守。賢人有定體,有定用,有定見,有定守。故聖人為從心所欲,賢人為立身行己, -自有法度。 -  聖賢之私書,可與天下人見;密事,可與天下人知;不意之言,可與天下人聞;暗 -室之中,可與天下人窺。 -  好問、好察時,著一我字不得,此之謂能忘。執兩端時,著一人字不得,此之謂能 -定。欲見之施行,略無人己之嫌,此之謂能化。 -  無過之外,更無聖人;無病之外,更無好人。賢智者於無過之外求奇,此道之賊也。 -  積愛所移,雖至惡不能怒,狃於愛故也;積惡所習,雖至感莫能回,狃於惡故也。 -惟聖人之用情不狃。 -  聖人有功於天地,只是人事二字。其盡人事也,不言天命,非不知回天無力,人事 -當然,成敗不暇計也。 -  或問:「狂者動稱古人,而行不掩言,無乃行本顧言乎?孔子奚取焉?」曰:「此 -與行不顧言者人品懸絕。譬之於射,立拱把於百步之外,九矢參連,此養由基能事也。 -孱夫拙射,引弦之初,亦望拱把而從事焉,即發,不出十步之遠,中不近方丈之鵠,何 -害其為志士?又安知日關弓,月抽矢,白首終身,有不為由基者乎?是故學者貴有志, -聖人取有志。狷者言尺行尺,見寸守寸,孔子以為次者,取其守之確,而恨其志之隘也 -。今人安於凡陋,惡彼激昂,一切以行不顧言沮之,又甚者,以言是行非謗之,不知聖 -人豈有一蹴可至之理?希聖人豈有一朝逕頓之術?只有有志而廢於半途,未有無志而能 -行跬步者。」或曰:「不言而躬行何如?」曰:「此上智也,中人以下須要講求博學、 -審問、明辯,與同志之人相砥礪奮發,皆所以講求之也,安得不言?若行不顧言,則言 -如此,而行如彼,口古人,而心衰世,豈得與狂者同日語哉!」 -  君子立身行已自有法度,此有道之言也。但法度自堯、舜、禹、湯、文、武、周、 -孔以來只有一個,譬如律令一般,天下古今所共守者。若家自為律,人自為令,則為伯 -夷、伊尹、柳下惠之法度。故以道為法度者,時中之聖;以氣質為法度者,一偏之聖。 -  聖人是物來順應,眾人也是物來順應。聖人之順應也,從廓然太公來,故言之應人 -如響,而吻合乎當言之理;行之應物也,如取詣宮中,而吻合乎當行之理。眾人之順應 -也,從任情信意來,故言之應人也,好莠自口,而鮮與理合;事之應物也,可否惟欲, -而鮮與理合。君子則不然,其不能順應也,不敢以順應也。議之而後言,言猶恐尤也; -擬之而後動,動猶恐悔也。 -  卻從存養省察來。噫!今之物來順應者,人人是也,果聖人乎? -  可哀也已! -  聖人與眾人一般,只是盡得眾人的道理,其不同者,乃眾人自異於聖人也。 -  天道以無常為常,以無為為為。聖人以無心為心,以無事為事。 -  萬物之情,各求自遂者也。惟聖人之心,則欲遂萬物而志自遂。 -  為宇宙完人甚難,自初生以至屬纊,徹頭徹尾無些子破綻尤難,恐亙古以來不多幾 -人。其徐聖人都是半截人,前面破綻,後來修補,以至終年晚歲,才得乾淨成就了一個 -好人,還天付本來面目,故曰湯武反之也。曰反,則未反之前便有許多欠缺處。今人有 -過便甘自棄,以為不可復入聖人境域,不知盜賊也許改惡從善,何害其為有過哉?只看 -歸宿處成個甚人,以前都饒得過。 -  聖人低昂氣化,挽回事勢,如調劑氣血,損其侈不益其強,補其虛不甚其弱,要歸 -於平而已。不平則偏,偏則病,大偏則大病,小偏則小病。聖人雖欲不平,不可得也。 -  聖人絕四,不惟纖塵微障無處著腳,即萬理亦無作用處,所謂順萬事而無情也。 -  聖人胸中萬理渾然,寂時則如懸衡鑒,感之則若決江河,未有無故自發一善念。善 -念之發,胸中不純善之故也。故惟旦晝之牿食,然後有夜氣之清明。聖人無時不夜氣, -是以胸中無無故自見光景。 -  法令所行,可以使土偶奔趨;惠澤所浸,可以使枯木萌孽;教化所孚,可以使鳥獸 -伏馴;精神所極,可以使鬼神感格,吾必以為聖人矣。 -  聖人不強人以太難,只是撥轉他一點自然底肯心。 -  參贊化育底聖人,雖在人類中,其實是個活天,吾嘗謂之人天。 -  孔子只是一個通,通外更無孔子。 -  聖人不隨氣運走。不隨風俗走,不隨氣質走。 -  聖人平天下,不是夷山填海,高一寸還他一寸,低一分還他一分。 -  聖而不可知之之謂神。不可知,可知之祖也。無不可知做可知不出,無可知則不可 -知何所附屬? -  只為多了這知覺,便生出許多情緣,添了許多苦惱。落花飛絮豈無死生?他只恁委 -和委順而已。或曰:「聖學當如是乎?」 -  曰:「富貴、貧賤、壽夭、寵辱,聖人末嘗不落花飛絮之耳。雖有知覺,心不為知 -覺苦。」 -  聖人心上再無分毫不自在處。內省不疚,既無憂懼,外至之患,又不怨尤,只是一 -段不釋然,卻是畏天命,悲人窮也。 - -  定靜安慮,聖人無一刻不如此。或曰:「喜怒哀樂到面前何如?」曰:「只恁喜怒 -哀樂,定靜安慮,胸次無分毫加損。」 -  有相予者,謂面上部位多貴,處處指之。予曰:「所憂不在此也。汝相予一心要包 -藏得天下理,相予兩肩要擔當得天下事,相予兩腳要踏得萬事定,雖不貴,子奚憂?不 -然,予有愧於面也。」 -  物之入物者染物,入於物者染於物;惟聖人無所入,萬物亦不得而入之。惟無所入 -,故無所不入。惟不為物入,故物亦不得而離之。 -  人於吃飯穿衣,不曾說我當然不得不然,至於五常百行,卻說是當然不得不然,又 -竟不能然。 -  孔子七十而後從心,六十九歲未敢從也。眾人一生只是從心,從心安得好?聖學戰 -戰兢兢,只是降伏一個從字,不曰戒慎恐懼,則日憂勤惕勵,防其從也。豈無樂的,樂 -也只是樂天。眾人之樂則異是矣。任意若不離道,聖賢性不與人殊,何苦若此? -  日之於萬形也,鑒之於萬象也,風之於萬籟也,尺度權衡之於輕重長短也,聖人之 -於萬事萬物也,因其本然付以自然,分毫我無所與焉。然後感者常平,應者常逸,喜亦 -天,怒亦天,而吾心之天如故也。萬感劻勷,眾動轇轕,而吾心之天如故也。 -  平生無一事可瞞人,此是大快樂。 - -  堯、舜雖是生知安行,然堯、舜自有堯、舜工夫。學問但聰明睿智,千百眾人豈能 -不資見聞,不待思索?朱文公云:聖人生知安行,更無積累之漸。聖人有聖人底積累, -豈儒者所能測識哉? -  聖人不矯。 -  聖人一無所昏。 -  孟子謂文王取之,而燕民不悅則勿取,雖非文王之心,最看得時勢定。文王非利天 -下而取之,亦非惡富貴而逃之,順天命之予奪,聽人心之向背,而我不與焉。當是時, -三分天下才有其二,即武王亦動手不得,若三分天下有其三,即文王亦束手不得。《酌 -》之詩曰:「遵養時晦,時純熙矣,是用大介。」天命人心一毫假借不得。商家根深蒂 -固,須要失天命人心到極處,周家積功累仁,須要收天命人心到極處,然後得失界限決 -絕潔淨,無一毫黏帶。如瓜熟自落,栗熟自墜,不待剝摘之力;且莫道文王時動得手, -即到武王時,紂又失了幾年人心,武王又收了幾年人心。牧誓武成取得,何等費唇舌! -多士多方守得,何等耽驚怕;則武王者,生摘勁剝之所致也。又譬之瘡落痂、雞出卵, -爭一刻不得。若文王到武王時定不犯手,或讓位微箕為南河陽城之避,徐觀天命人心之 -所屬,屬我我不卻之使去,不屬我我不招之使來,安心定志,任其自去來耳。此文王之 -所以為至德。使安受二分之歸,不惟至德有損,若紂發兵而問,叛人即不勝,文王將何 -辭?雖萬萬出文王下者,亦不敢安受商之叛國也。用是見文王仁熟智精,所以為宣哲之 -聖也。 -  湯禱桑林以身為犧,此史氏之妄也。按湯世十八年旱,至二十三年禱桑林責六事, -於是早七年矣,天乃雨。夫農事冬旱不禁三月,夏旱不禁十日,使湯持七年而後禱,則 -民已無孑遺矣,何以為聖人?即湯以身禱而天不雨,將自殺,與是絕民也,將不自殺, -與是要天也,湯有一身能供幾禱?天雖享祭,寧欲食湯哉?是七年之間,歲歲有早,未 -必不禱,歲歲禱雨,未必不應,六事自責,史醫特紀其一時然耳。以人禱,斷斷乎其無 - -也。 -  伯夷見冠不正,望望然去之,何不告之使正?柳下惠見袒裼裸程,而由由與偕,何 -不告之使衣?故曰:不夷不惠,君子後身之珍也。 -  亙古五帝三王不散之精英,鑄成一個孔子,餘者猶成顏、曾以下諸賢至思、孟,而 -天地純粹之氣索然一空矣。春秋戰國君臣之不肖也宜哉!後乎此者無聖人出焉。靳孔、 -孟諸賢之精英,而未盡泄與! -  周子謂:「聖可學乎?曰無欲。」愚謂聖人不能無欲,七情中合下有欲。孔子曰己 -欲立欲達。孟子有云:「廣土眾民,君子欲之。」天欲不可無,人欲不可有。天欲,公 -也;人欲,私也。周子云「聖無欲」,愚云:「不如聖無私。」此二字者,三氏之所以 -異也。 -  聖人沒自家底見識。 -  對境忘情,猶分彼我,聖人可能入塵不染,則境我為一矣。而渾然無點染,所謂「 -入水不溺,入火不焚」,非聖人之至者不能也。若塵為我役,化而為一,則天矣。 -  聖人學問只是人定勝天。 -  聖人之私,公;眾人之公,私。 -  聖人無夜氣。 -  「衣錦尚絅」,自是學者作用,聖人無尚。 -  聖王不必天而必我,我之天定而天之天隨之。 -  生知之聖人不長進。 -  學問到孔子地位才算得個通,通之外無學問矣。 -  聖人嘗自視不如人,故天下無有如聖者,非聖人之過虛也,四海之廣,兆民之眾, -其一才一智未必皆出聖人下也。以聖人無所不能,豈無一毫之未至;以眾人之無所能, -豈無一見之獨精。以獨精補未至,固聖人之所樂取也。此聖人之心日歉然不自滿足,日 -汲汲然不已於取善也。 - -  聖人不示人以難法,其所行者,天下萬世之可能者也;其所言者,天下萬世之可知 -者也。非聖人貶以徇人也,聖人雖欲行其所不能,言其所不知,而不可得也。道本如是 -,其易知易從也。 - - - - - -品藻 - - -  獨處看不破,忽處看不破,勞倦時看不破,急遽倉卒時看不破,驚憂驟感時看不破 -,重大獨當時看不破,吾必以為聖人。 -  聖人做出來都是德性,賢人做出來都是氣質,眾人做出來都是習俗,小人做出來都 -是私欲。 -  漢儒雜道,宋儒隘道。宋儒自有宋儒局面,學者若入道,且休著宋儒橫其胸中,只 -讀六經四書而體玩之,久久胸次自是不同。若看宋儒,先看濂溪、明道。 -  一種人難悅亦難事,只是度量褊狹,不失為君子;一種人易事亦易悅,這是貪污軟 -弱,不失為小人。 -  為小人所薦者,辱也;為君子所棄者,恥也。 -  小人有恁一副邪心腸,便有一段邪見識;有一段邪見識,便有一段邪議論;有一段 -邪議論,便引一項邪朋黨,做出一番邪舉動。其議論也,援引附會,盡成一家之言,攻 -之則圓轉遷就而本可破;其舉動也,借善攻善,匿惡濟惡,善為騎牆之計,擊之則疑似 -牽纏而不可斷。此小人之尤,而借君子之跡者也。 -  此藉君子之名,而濟小人之私者也。亡國敗家,端是斯人。 -  明白小人,剛戾小人,這都不足恨。所以易惡陰柔陽只是一個,惟陰險伏而多瑞, -變幻而莫測,駁雜而疑似,譬之光天化日,黑白分明,人所共見,暗室晦夜,多少埋伏 -,多少類象,此陰陽之所以別也。虞廷黜陟,惟曰幽明,其以是夫? -  富於道德者不矜事功,猶矜事功,道德不足也;富於心得者不矜聞見,猶矜獲見, -心得不足也。文藝自多浮薄之心也,富貴自雄,卑陋之見也。此二人者,皆可憐也,而 -雄富貴者更不數於丈夫。行彼其冬烘盛大之態,皆君子之所欲嘔者也。而彼且志驕意得 -,可鄙孰甚焉? -  士君子在塵世中,擺脫得開,不為所束縛;擺脫得淨,不為所污蔑,此之謂天挺人 -豪。 -  藏名遠利,夙夜汲汲乎實行者,聖人也。為名修,為利勸,夙夜汲汲乎實行者,賢 -人也。不占名標,不尋利孔,氣昏志惰,荒德廢業者,眾人也。炫虛名,漁實利,而內 -存狡獪之心,陰為鳥獸之行者,盜賊也。 -  圈子裡幹實事,賢者可能;圈子外幹大事,非豪傑不能。或曰:「圈子外可幹乎? -」曰:「世俗所謂圈子外,乃聖賢所謂性分內也。人守一官,官求一稱,內外皆若人焉 -,天下可庶幾矣,所謂圈子內幹實事者也。心切憂世,志在匡時,苟利天下,文法所不 -能拘,苟計成功,形跡所不必避,則圈子外幹大事者也。 -  識高千古,慮週六合,挽末世之頹風,還先王之雅道,使海內復嘗秦漢以前之滋味 -,則又圈子以上人矣。世有斯人乎?吾將與之共流涕矣。乃若硜硜狃眾見,惴惴循弊規 -,威儀文辭,燦然可觀,勤慎謙默,居然寡過,是人也,但可為高官耳,世道奚賴焉? -  達人落葉窮通,浮雲生死;高士睥睨古今,玩弄六合;聖人古今一息,萬物一身; -眾人塵棄天真,腥集世味。 -  陽君子取禍,陰君子獨免;陽小人取禍,陰小人得福。陽君子剛正直方,陰君子柔 -嘉溫厚;陽小人暴慶放肆,陰小人奸回智巧。 -  古今士率有三品:上士不好名,中士好名,下士不知好名。 -  上士宜道德,中士重功名,下士重辭章,斗筲之人重富貴。 -  人流品格,以君子小人定之,大率有九等,有君子中君子,才全德備,無往不宜者 -也。有君子,優於德而短於才者也。有善人,恂雅溫樸,僅足自守,識見雖正,而不能 -自決,躬行雖力,而不能自保。有眾人,才德識見俱無足取,與世浮沉,趨利避害,祿 -祿風俗中無自表異。有小人,偏氣邪心,惟己私是殖,苟得所欲,亦不害物。有小人中 -小人,貪殘陰狠,恣意所極,而才足以濟之,斂怨怙終,無所顧忌。外有似小人之君子 -,高峻奇絕,不就俗檢,然規模弘遠,小疵常類,不足以病之。有似君子之小人,老詐 -濃文,善藏巧借,為天下之大惡,占天下之大名,事幸不敗當時,後世皆為所欺而競不 -知者。有君子小人之間,行亦近正而偏,語亦近道而雜,學圓通便近於俗,尚古樸則入 -於腐,寬便姑息,嚴便猛鷙。是人也,有君子之心,有小人之過者也,每至害道,學者 -成之。 -  有俗檢,有禮檢。有通達,有放達。君子通達於禮檢之中,騷士放達於俗檢之外。 -世之無識者,專以小節細行定人品,大可笑也。 -  上才為而不為,中才只見有為,下才一無所為。 -  心術平易,制行誠直,語言疏爽,文章明達,其人必君子也。心術微暖,制行詭秘 -,語言吞吐,文章晦澀,其人亦可知矣。 -  有過不害為君子,無過可指底,真則聖人,偽則大奸,非鄉願之媚世,則小人之欺 -世也。 -  從欲則如附羶,見道則若嚼蠟,此下愚之極者也。 -  有涵養人心思極細,雖應倉卒,而胸中依然暇豫,自無粗疏之病。心粗便是學不濟 -處。 -  功業之士,清虛者以為粗才,不知堯、舜、禹、湯、臯、夔、稷、契功業乎?清虛 -乎?飽食暖衣而工騷墨之事,話玄虛之理,謂勤政事者為俗吏,謂工農桑者為鄙夫,此 -敝化之民也,堯、舜之世無之。 -  觀人括以五品:高、正、雜、庸、下。獨行奇識曰高品,賢智者流。擇中有執曰正 -品,聖賢者流。有善有過曰雜品,勸懲可用。無短無長曰庸品,無益世用。邪偽二種曰 -下品,慎無用之。 -  氣節信不過人,有出一時之感慨,則小人能為君子之事;有出於一念之剽竊,則小 -人能盜君子之名。亦有初念甚力,久而屈其雅操,當危能奮安而喪其平生者,此皆不自 -涵養中來。 -  若聖賢學問,至死更無破綻。 - -  無根本底氣節,如酒漢毆人,醉時勇,醒時索然無分毫氣力。無學問底識見,如庖 -人煬灶,面前明,背後左右無一些照顧,而無知者賞其一時,惑其一偏,每擊節歎服, -信以終身。 -  吁!難言也。 -  眾惡必察,是仁者之心。不仁者聞人之惡,喜談樂道。疏薄者聞人之惡,深信不疑 -。惟長者知惡名易以污人,而作惡者之好為誣善也,既察為人所惡者何人,又察言者何 -心,又察致惡者何由,耐心留意,獨得其真,果在位也,則信任不疑,果不在位也,則 -舉辟無貳,果如人所中傷也,則扶救必力。嗚呼!此道不明久矣。 -  黨錮諸君,只是褊淺無度量。身當濁世,自處清流,譬之涇渭,不言自別。正當遵 -海濱而處,以待天下之清也,卻乃名檢自負,氣節相高,志滿意得,卑視一世而踐踏之 -,譏謗權勢而狗彘之,使人畏忌奉承愈熾愈驕,積津要之怒,潰權勢之毒,一朝而成載 -胥之凶,其死不足惜也。《詩》稱「明哲保身」,孔稱「默足有容,免於刑戮」,豈貴 -貨清市直,甘鼎鑊如飴哉?申、陳二子,得之郭林宗幾矣。顧廚俊及吾道中之罪人也, -僅愈於卑污耳。若張儉則又李膺、范滂之罪人,可誅也夫! -  問:「嚴子陵何如?」曰:「富貴利達之世不可無此種高人,但朋友不得加於君臣 -之上。五臣與舜同僚友,今日比肩,明日北面而臣之,何害其為聖人?若有用世之才, -抱憂世之志,朋時之所講求,正欲大行,竟施以康,天下孰君孰臣,正不必爾。 -  如欲遠引高蹈,何處不可藏身,便不見光武也得,既見矣,猶友視帝,而加足其腹 -焉,恐道理不當如是,若光武者則大矣。 -  見是賢者,就著意迴護,雖有過差,都向好邊替他想;見是不賢者,就著意搜索, -雖有偏長,都向惡邊替他想,自宋儒以來率坐此失。大叚都是個偏識見,所謂好而不知 -其惡,惡而不知其美者。惟聖人便無此失,只是此心虛平。 -  蘊藉之士深沉,負荷之士弘重,斡旋之士圓通,康濟之士精敏。反是皆凡才也,即 -聰明辯博無補焉。 -  君子之交怕激,小人之交怕合。斯二者,禍人之國,其罪均也。 -  聖人把得定理,把不得定勢。是非,理也。成敗,勢也。 -  有勢不可為而猶為之者,惟其理而已。知此則三仁可與五臣比事功,孔子可與堯、 -舜較政治。 -  未試於火,皆純金也。未試於事,皆完人也。惟聖人無往而不可。下聖人一等皆有 -所不足,皆可試而敗。夫三代而下人物,豈甚相遠哉?生而所短不遇於所試,則全名定 -論,可以蓋棺,不幸而偶試其所不足,則不免為累。夫試不試之間,不可以定人品也。 -故君子觀人不待試,而人物高下終身事業不爽分毫,彼其神識自在世眼之外耳。 -  世之頹波,明知其當變,狃於眾皆為之而不敢動;事之義舉,明知其當為,狃於眾 -皆不為而不敢動,是亦眾人而已。提抱之兒得一果餅,未敢輒食,母嘗之而後入口,彼 -不知其可食與否也。既知之矣,猶以眾人為行止,可愧也夫惟英雄豪傑不徇習以居非, -能違俗而任道,夫是之謂獨復。嗚呼!此庸人智巧之士,所謂生事而好異者也。 -  土氣不可無,傲氣不可有。士氣者,明於人己之分,守正而不詭隨。傲氣者,昧於 -上下之等,好高而不素位。自處者每以傲人為士氣,觀人者每以士氣為傲人。悲夫!故 -惟有士氣者能謙己下人。彼做人者昏夜乞哀,或不可知矣。 -  體解神昏、志消氣沮,天下事不是這般人幹底。接臂抵掌,矢志奮心,天下事也不 -是這般人幹底。干天下事者,智深勇沉、神閒氣定,有所不言,言必當,有所不為,為 -必成。不自好而露才,不輕試以倖功,此真才也,世鮮識之。近世惟前二種人,乃互相 -譏,識者胥笑之。 -  賢人君子,那一種人裡沒有?鄙夫小人,那一種人裡沒有? -  世俗都在那爵位上定人品,把那邪正卻作第二著看。今有僕隸乞丐之人,特地做忠 -孝節義之事,為天地間立大綱常,我當北面師事之;環視達官貴人,似俛首居其下矣。 -論到此,那富貴利達與這忠孝節義比來,豈直太山鴻毛哉?然則匹夫匹婦未可輕,而下 -士寒儒其自視亦不可渺然小也。故論勢分,雖抱關之吏,亦有所下以伸其尊。論性分, -則堯、舜與途人可揖讓於一堂。論心談道,孰貴孰賤?孰尊孰卑?故天地問惟道貴,天 -地間人惟得道者貴。 -  山林處士常養一個傲慢輕人之象,常積一腹痛憤不平之氣,此是大病痛。 -  好名之人充其心,父母兄弟妻子都顧不得,何者?名無兩成,必相形而後顯。葉人 -證父攘羊,陳仲子惡兄受鵝,周澤奏妻破戒,皆好名之心為之也。 -  世之人常把好事讓與他人做,而甘居已於不肖,又要掠個好名兒在身上,而詆他人 -為不肖。悲夫!是益其不肖也。 -  理聖人之口易,理眾人之口難。至人之口易為眾人,眾人之口難為聖人,豈直當時 -之毀譽,即千古英雄豪傑之士,節義正直之人,一入議論之家,彼臧此否,各騁偏執, -互為雌黃。 -  譬之舞文吏出入人罪,惟其所欲,求其有大公至正之見,死者復生。而響服者幾人 -?是生者肆口,而死者含冤也。噫!使臧否人物者,而出於無聞之士,猶昔人之幸也。 -彼擅著作之名,號為一世人傑,而立言不慎,則是獄成於廷尉,就死而莫之辯也,不仁 -莫大焉。是故君子之論人,與其刻也寧恕。 -  正直者必不忠厚,忠厚者必不正直。正直人植綱常扶世道,忠厚人養和平培根本。 -然而激天下之禍者,正直之人;養天下之禍者,忠厚之過也。此四字兼而有之,惟時中 -之聖。 -  露才是士君子大病痛,尤其甚於飾才。露者,不藏其所有也。飾者,虛剽其所無也。 -  士有三不顧:行道濟時人顧不得愛身,富貴利達人顧不得愛德,全身遠害人顧不得 -愛天下。 -  其事難言而於心無愧者,寧滅其可知之跡。故君子為心受惡,太伯是已。情有所不 -忍,而義不得不然者,寧負大不韙之名。故君子為理受惡,周公是已。情有可矜,而法 -不可廢者,寧自居於忍以伸法。故君子為法受惡,武侯是已。人皆為之,而我獨不為, -則掩其名以分謗。故君子為眾受惡,宋子罕是已。 -  不欲為小人,不能為君子。畢竟作甚麼人?曰:眾人。既眾人,當與眾人伍矣,而 -列其身名於士大夫之林可乎?故眾人而有士大夫之行者榮,士大夫而為眾人之行者辱。 -  天之生人,雖下愚亦有一竅之明聽其自為用。而極致之,亦有可觀而不可謂之才。 -所謂才者,能為人用,可圓可方,能陰能陽,而不以已用者也,以己用皆偏才也。 -  心平氣和而有強毅不可奪之力,秉公持正而有圓通不可拘之權,可以語人品矣。 -  從容而不後事,急遽而不失容,脫略而不疏忽,簡靜而不涼薄,真率而不鄙俚,溫 -潤而不脂韋,光明而不淺浮,沉靜而不陰險,嚴毅而不苛刻,周匝而不煩碎,權變而不 -譎詐,精明而不猜察,亦可以為成人矣。 -  厚德之士能掩人過,盛德之士不令人有過。不令人有過者,體其不得已之心,知其 -必至之情,而預遂之者也。 -  烈士死志,守士死職,任士死怨,忿士死鬥,貪士死財,躁士死言。 -  知其不可為而遂安之者,達人智士之見也;知其不可為而猶極力以圖之者,忠臣孝 -子之心也。 -  無識之士有三恥:恥貧,恥賤,恥老。或曰:「君子獨無恥與?」曰:「有恥。親 -在而貧恥,用賢之世而賤恥,年老而德業無聞恥。」 -  初開口便是煞尾語,初下手便是盡頭著,此人大無含蓄,大不濟事,學者戒之。 -  一個俗念頭,一雙俗眼目,一口俗話說,任教聰明才辯,可惜錯活了一生。 -  或問:「君子小人辯之最難?」曰:「君子而近小人之跡,小人而為君子之態,此 -誠難辯。若其大都,則如皂白不可掩也。君子容貌敦大老成,小人容貌浮薄瑣屑。君子 -平易,小人蹺蹊;君子誠實,小人奸詐;君子多讓,小人多爭;君子少文,小人多態。 -君子之心正直光明,小人之心邪曲微暖。君子之言雅淡質直,惟以達意;小人之言鮮濃 -柔澤,務於可人。君子與人親而不昵,宜諒而不養其過;小人與人狎而致情,諛悅而多 -濟其非。君子處事可以盟天質日,雖骨肉而不阿;小人處事低昂世態人情,雖昧理而不 -顧。君子臨義慷慨當前,惟視天下國家人物之利病,其禍福毀譽了不關心;小人防義則 -觀望顧忌,先慮爵祿身家妻子之便否,視社稷蒼生漫不屬己。君子事上,禮不敢不恭, -難使任道;小人事上,身不知為我,側意隨人。君子御下,防其邪而體其必至之情;小 -人御下,遂吾欲而忘彼同然之願。君子自奉節儉恬雅,小人自奉汰侈彌文。君子親賢愛 -士,樂道人之善;小人嫉賢妒能,樂道人之非。如此類者,色色頓殊。孔子曰「患不知 -人」,吾以為終日相與,其類可分,雖善矜持,自有不可掩者在也。 -  今之論人者,於辭受不論道義,只以辭為是,故辭寧矯廉,而避貪愛之嫌。於取與 -不論道義,只以與為是,故與寧傷惠,而避吝嗇之嫌。於怨怒不論道義,只以忍為是, -故禮雖當校,而避無量之嫌。義當明分,人皆病其諛而以倨傲矜陵為節概;禮當持體, -人皆病其倨而以過禮足恭為盛德。惟儉是取者,不辯禮有當豐;惟默是貴者,不論事有 -當言。此皆察理不精,貴賢知而忘其過者也。噫!與不及者誠有間矣,其賊道均也。 -  狃淺識狹聞,執偏見曲說,守陋規格套,斯人也若為鄉里常人,不足輕重,若居高 -位有令名,其壞世教不細。 -  以粗疏心看古人親切之語,以煩躁心看古人靜深之語,以浮泛心看古人玄細之語, -以淺狹心看古人博洽之語,便加品隲,真孟浪人也。 -  文姜與弒桓公,武后滅唐子孫,更其國廟,此二婦者,皆國賊也,而祔葬於墓,祔 -祭於廟,禮法安在?此千古未反一大案也。或曰:「子無廢母之義。」噫!是言也,閭 -閻市井兒女之識也。以禮言,三綱之重等於天地,天下共之。子之身,祖廟承繼之身, -非人子所得而有也。母之罪,宗廟君父之罪,非人子所得而庇也。文姜、武后,莊公、 -中宗安得而私之?以情言,弒吾身者與我同丘陵,易吾姓者與我同血食;祖父之心悅乎 -?怒乎?對子而言,則母尊;對祖父而言,則吾母臣妾也。以血屬而言,祖父我同姓, -而母異姓也。子為母忘身可也,不敢讐;雖殺我可也,不敢讐。宗廟也,父也,我得而 -專之乎?。專祖父之廟以濟其私,不孝;重生我之恩,而忘祖父之讐,亦不孝;不體祖 -父之心,強所讐而與之共土同牢,亦不孝。二婦之罪當誅,吾為人子不忍行,亦不敢行 -也。有為國討賊者,吾不當聞,亦不敢罪也。不誅不討,為吾母者逋戮之元凶也。葬於 -他所,食於別宮,稱后夫人而不係於夫,終身哀悼,以傷吾之不幸而已。莊公、中宗, -皆昏庸之主,吾無責矣。吾恨當時大臣陷君於大過而不顧也。或曰:「葬我小君文姜。 -夫子既許之矣,子何罪焉?」曰:「此胡氏失仲尼之意也。仲尼蓋傷魯君臣之昧禮,而 -特著其事以示譏爾。曰『我』言不當我而我之也,曰『小君』言不成小君而小君之也, -與歷世夫人同書而不異其詞,仲尼之心豈無別白至此哉?不然,姜氏會齊侯,每行必書 -其惡,惡之深如此,而肯許其為『我小君』耶?」或曰:「子狃於母重而不敢不尊,授 -狃於君命而不敢不從,是亦權變之禮耳。」余曰:「否!否!宋桓夫人出耳,襄公立而 -不敢迎其母,聖人不罪襄公之薄恩而美夫人之守禮。況二婦之罪瀰漫宇宙萬倍於出者, -臣子忘祖父之重,而尊一罪大惡極之母,以伸其私,天理民彝滅矣。道之不明一至是哉 -!余安得而忘言?」 -  平生無一人稱譽,其人可知矣。平生無一人詆毀,其人亦可知矣。大如天,聖如孔 -子,未嘗盡可人意。是人也,無分君子小人皆感激之,是在天與聖人上,賢耶?不肖耶 -?我不可知矣。 - -  尋行數墨是頭巾見識,慎步矜趨是釵裙見識,大刀闊斧是丈夫見識,能方能圓、能 -大能小是聖人見識。 -  春秋人計可否,畏禮義,惜體面。戰國人只是計利害,機械變詐,苟謀成計得,顧 -甚體面?說甚羞恥? -  太和中發出,金石可穿,何況民物有不孚格者乎? -  自古聖賢孜孜汲汲,惕勵憂勤,只是以濟世安民為己任,以檢身約己為先圖。自有 -知以至於蓋棺,尚有未畢之性分,不了之心緣,不惟孔、孟,雖佛、老、墨翟、申、韓 -皆有一種斃而後已念頭,是以生不為世間贅疣之物,死不為幽冥浮蕩之鬼。 -  乃西晉王衍輩一出,以身為懶散之物,百不經心,放蕩於禮法之外,一無所忌,以 -浮談玄語為得聖之清,以滅理廢教為得道之本,以浪遊於山水之間為高人,以銜杯於糟 -曲之林為達士,人廢職業,家尚虛無,不止亡晉,又開天下後世登臨題詠之禍;長惰慢 -放肆之風,以至於今。追原亂本,益開釁於莊、列、而基惡於巢、由。有世道之責者, -宜所戒矣。 -  微子抱祭器歸周,為宗祀也。有宋之封,但使先王血食,則數十世之神靈有托,我 -可也,箕子可也,但屬子姓者一人亦可也,若曰事異姓以苟富貴而避之嫌,則淺之乎其 -為識也。惟是箕子可為夷齊,而《洪範》之陳、朝鮮之封,是亦不可以已乎?曰:「繫 -累之臣,釋囚訪道,待以不臣之禮,而使作賓,固聖人之所不忍負也。此亦達節之一事 -,不可為後世宗臣借口。」 -  無心者公,無我者明。當局之君子不如旁觀之眾人者,有心有我之故也。 -  君子豪傑戰兢惕勵,當大事勇往直前;小人豪傑放縱恣睢,拼一命橫行直撞。 -  老子猶龍不是尊美之辭,蓋變化莫測,淵深不露之謂也。 -  樂要知內外。聖賢之樂在心,故順逆窮通隨處皆泰;眾人之樂在物,故山溪花鳥遇 -境才生。 -  可恨讀底是古人書,作底是俗人事。 -  言語以不肖而多,若皆上智人,更不須一語。 -  能用天下而不能用其身,君子惜之。善用其身者,善用天下者也。 -  粗豪人也自正氣,但一向恁底便不可與人道。 -  學者不能徙義改過,非是不知,只是積慵久慣。自家由不得自家,便沒一些指望。 -若真正格致了,便由不得自家,欲罷不能矣。 -  孔、孟以前人物只是見大,見大便不拘孿小家勢,人尋行數墨,使殺了只成就個狷 -者。 -  終日不歇口,無一句可議之言,高於緘默者百倍矣。 -  越是聰明人越教誨不得。 -  強恕,須是有這恕心才好。勉強推去,若視他人饑寒痛楚漠然通不動心,是恕念已 -無,更強個甚?還須是養個恕出來,才好與他說強。 -  盜莫大於瞞心昧己,而竊劫次之。 -  明道受用處,陰得之佛、老,康節受用處,陰得之莊、列,然作用自是吾儒。蓋能 -奴僕四氏,而不為其所用者。此語人不敢道,深於佛、老之莊、列者自然默識得。 -  鄉原是似不是偽,孟子也只定他個似字。今人卻把似字作偽字看,不惟欠確,且末 -減了他罪。 -  不當事,不知自家不濟。才隨遇長,識以窮精。坐談先生只好說理耳。 -  沉溺了,如神附,如鬼迷,全由不得自家,不怕你明見真知。眼見得深淵陡澗,心 -安意肯底直前撞去,到此翻然跳出,無分毫黏帶,非天下第一大勇不能。學者須要知此 -。 -  巢父、許由,世間要此等人作甚?荷蕢晨門,長沮架溺知世道已不可為,自有無道 -則隱一種道理。巢、由一派有許多人皆污濁堯、舜,噦吐臯、夔,自謂曠古高人,而不 -知不仕無義潔一身以病天下,吾道之罪人也。且世無巢、許不害其為唐虞,無堯、舜、 -臯、夔,巢、許也沒安頓處,誰成就你個高人? -  而今士大夫聚首時,只問我輩奔奔忙忙、熬熬煎煎,是為天下國家,欲濟世安民乎 -?是為身家妻子,欲位高金多乎?世之治亂,民之死生,國之安危,只於這兩個念頭定 -了。嗟夫! -  吾輩日多而世益苦,吾輩日貴而民日窮,世何貴於有吾輩哉? - -  只氣盛而色浮,便見所得底淺。邃養之人安詳沉靜,豈無慷慨激切,發強剛毅時, -畢竟不輕恁的。 -  以激為直,以淺為誠,皆賢者之過。 -  評品古人,必須胸中有段道理,如權平衡直,然後能稱輕重。若執偏見曲說,昧於 -時不知其勢,責其病不察其心,未嘗身處其地,未嘗心籌其事,而日某非也,某過也, -是瞽指星、聾議樂,大可笑也。君子恥之。 -  小勇噭燥,巧勇色笑,大勇沉毅,至勇無氣。 -  為善去惡是,趨吉避凶惑矣。陰陽異端之說也,祀非類之 -  鬼,禳白致之災,祈難得之福,泥無損益之時,日宗趨避之邪術。悲夫!愚民之抵 -死而不悟也。即悟之者,亦狃天下皆然,而不敢異。至有名公大人,尤極信尚。嗚呼! -反經以正邪慝,將誰望哉? - -  夫物愚者真,智者偽;愚者完,智者喪。無論人,即鳥之返哺,雉之耿介鳴鳩,均 -平專一,睢鳩和而不流,雁之貞靜自守,騶虞之仁,獬豸之隸正嫉邪,何嘗有矯偽哉? -人亦然,人之全其天者,皆非智巧者也。才智巧,則其天漓矣;漓則其天可奪,惟愚者 -之天不可奪。故求道真,當求之愚;求不二心之臣以任天下事,亦當求之愚。夫愚者何 -嘗不智哉?愚者之智,純正專一之智也。 -  面色不浮,眼光不亂,便知胸中靜定非久養不能。《禮》曰:「儼若思,安定辭, -善形容,有道氣象矣。」 -  於天理汲汲者,於人欲必淡;於私事耽耽者,於公務必疏;於虛文燁燁者,於本實 -必薄。 -  聖賢把持得義字最乾淨,無分毫利字干擾。眾人才有義舉,便不免有個利字來擾亂 -。利字不得,便做義字不成。 -  道自孔、孟以後,無人識三代以上面目。漢儒無見於精,宋儒無見於大。 -  有憂世之實心,泫然欲淚,有濟世之實才,施處輒宜。斯人也,我願為曳履執鞭。 -若聚談紙上,微言不關國家治忽;爭走塵中,眾轍不知黎庶死生,即品格有清濁,均於 -宇宙無補也。 -  安重深沉是第一美質。定天下之大難者,此人也。辯天下之大事者,此人也。剛明 -果斷次之。其他浮薄好任,翹能自喜,皆行不逮者也。即見諸行事而施為無術,反以僨 -事,此等只可居談論之科耳。 -  任有七難:繁任要提綱摯領,宜綜核之才。重任要審謀獨斷,宜鎮靜之才。急任要 -觀變會通,宜明敏之才。密任要藏機相可,宜周慎之才。獨任要擔當執持,宜剛毅之才 -。兼任要任賢取善,宜博大之才。疑任要內明外朗,宜駕馭之才。天之生人,各有偏長 -。國家之用人,備用群長。然而投之所向輒不濟事者,所用非所長,所長非所用也。 -  操進退用舍之權者,要知大體。若專以小知觀人,則卓犖奇偉之士都在所遺。何者 -?敦大節者不為細謹,有遠略者或無小才,肩巨任者或無捷識;而聰明材辯、敏給圓通 -之士,節文習熟、聞見廣洽之人,類不能裨緩急之用。嗟夫!難言之矣。 -  士之遇不遇,顧上之所愛憎也。 -  居官念頭有三用:念念用之君民,則為吉士。念念用之套數,則為俗吏。念念用之 -身家,則為賊臣。 -  小廉曲謹之土,循涂守轍之人,當太平時,使治一方、理一事,盡能本職。若定難 -決疑,應卒蹈險,寧用破綻人,不用尋常人。雖豪悍之魁,任俠之雄,駕御有方,更足 -以建奇功,成大務。噫!難與曲局者道。 -  聖人悲時憫俗,賢人痛世疾俗,眾人混世逐俗,小人敗常亂俗。嗚呼!小人壞之, -眾人從之,雖憫雖疾,、競無益矣。故明王在上,則移風易俗。 -  觀人只諒其心,心苟無他跡,皆可原。如下官之供應未備,禮節偶疏,此豈有意簡 -傲乎?簡傲上官以取罪,甚愚者不為也,何怒之有?供應豐溢,禮節卑屈,此豈敬戎乎 -?將以說我為進取之地也,何感之有? -  今之國語鄉評,皆繩人以細行,細行一虧,若不可容於清議,至於大節都脫略廢墜 -,渾不說起。道之不明,亦至此乎? -  可歎也已! -  凡見識,出於道理者第一,出於氣質者第二,出於世俗者第三,出於自私者為下。 -道理見識,可建天地,可質鬼神,可推四海,可達萬世,正大公平,光明易簡,此堯、 -舜、禹、湯文、武、周、孔相與授受者是也。氣質見識,仁者謂之仁,智者謂之智。剛 -氣多者為賢智,為高明;柔氣多者為沉潛,為謙忍。夷、惠、伊尹、老、莊、申、韓各 -發明其質之所近是已。 -  世俗見識,狃於傳習之舊,不辯是非;安於耳目之常,遂為依據。教之則藐不相入 -,攻之則牢不可破;淺庸卑陋而不可談王道。自秦、漢、唐、宋以彩,創業中興,往往 -多坐此病。故禮樂文章,因陋就簡,紀綱法度,緣勢因時。二帝三王旨趣〔楞去木加氵 -〕不曾試嘗,邈不入夢寐,可為流涕者,此輩也已。私見識,利害榮辱橫於胸次,是非 -可否迷其本真,援引根據亦足成一家之說,附會擴充盡可眩眾人之聽。秦皇本游觀也, -而托言巡狩四岳;漢武本窮兵也,而托言張皇六師。道自多歧,事有兩端,善辯者不能 -使服,不知者皆為所惑。是人也設使旁觀,未嘗不明,惟是當局,便不除己,其流之弊 -,至於禍國家亂世道而不顧,豈不大可憂大可懼哉?故聖賢蹈險履危,把自家搭在中間 -;定議決謀,把自家除在外面,即見識短長不敢自必,不害其大公無我之心也。 -  凡為外所勝者,皆內不足也;為邪所奪者,皆正不足也。 -  二者如持衡然,這邊低一分,那邊即昂一分,未有毫髮相下者也。 -  善為名者,借口以掩真心;不善為名者,無心而受惡名。 -  心跡之間,不可以不辯也。此觀人者之所忽也。 -  自中庸之道不明,而人之相病無終已。狷介之人病和易者為熟軟,和易之人病狷介 -者為乖戾;率真之人病慎密者為深險,慎密之人病率真者為粗疏;精明之人病渾厚者為 -含糊,渾厚之人病精明者為苛刻。使質於孔子,吾知其必有公案矣;孔子者,合千聖於 -一身,萃萬善於一心,隨事而時出之,因人而通變之,圓神不滯,化裁無端。其所自為 -,不可以教人者也。何也?難以言傳也。見人之為,不以備責也。伺也?難以速化也。 -  觀操存在利害時,觀精力在饑疲時,觀度量在喜怒時,觀存養在紛華時,觀鎮定在 -震驚時。 -  人言之不實者十九,聽言而易信者十九,聽言而易傳者十九。以易信之心,聽不實 -之言,播喜傳之口,何由何跖?而流傳海內,紀載史冊,冤者冤,幸者幸。嗚呼!難言 -之矣。 -  孔門心傳,惟有顏子一人,曾子便屬第二等。 -  名望甚隆,非大臣之福也;如素行無愆,人言不足仇也。 -  盡聰明底是盡昏愚,盡木訥底是盡智慧。 -  透悟天地萬物之情,然後可與言性。 -  僧道、宦官、乞丐,未有不許其為聖賢者。我儒衣儒冠且不類儒,彼顧得以嗤之, -奈何以為異類也,而鄙夷之乎? -  盈山寶玉,滿海珠璣,任人恣意採取,並無禁厲榷奪,而束手畏足,甘守艱難,愚 -亦爾此乎? - -  告子許大力量,無論可否,只一個不動心,豈無骨氣人所能?可惜只是沒學問,所 -謂其至爾力也。 -  千古一條大路,堯、舜、禹、湯、文、武、孔、孟由之。 -  此是官路古路,乞人盜跖都有分,都許由,人自不由耳。或曰:「須是跟著數聖人 -走。」曰:「各人走各人路。數聖人者,走底是誰底路?肯實在走,腳蹤兒自是暗合。」 -  功士後名,名士後功。三代而下,其功名之士絕少。聖人以道德為功名者也,賢人 -以功名為功名者也,眾人以富貴為功名者也。 -  建天下之大事功者,全要眼界大。眼界大則識見自別。 -  談治道,數千年來只有個唐虞禹湯文武,作用自是不侔。 -  衰周而後,直到於今,高之者為小康,卑之者為庸陋。唐虞時光景,百姓夢也夢不 -著。創業垂統之君臣,必有二帝五臣之學術而後可。若將後世眼界立一代規模,如何是 -好? -  一切人為惡,猶可言也,惟讀書人不可為惡。讀書人為惡,更無教化之人矣。一切 -人犯法猶可言也,做官人不可犯法。做官人犯法,更無禁治之人矣。 -  自有書契以來,穿鑿附會,作聰明以亂真者,不可勝紀。 -  無知者借信而好古之名,以誤天下後世蒼生。不有洞見天地萬物之性情者出而正之 -,迷誤何有極哉?虛心君子,寧闕疑可也。 -  君子當事,則小人皆為君子,至此不為君子,真小人也;小人當事,則中人皆為小 -人,至此不為小人,真君子也。 -  小人亦有好事,惡其人則並疵共事;君子亦有過差,好其人則並飾其非,皆偏也。 -  無欲底有,無私底難。二氏能無情慾,而不能無私。無私無欲,正三教之所分也。 -此中最要留心理會,非狃於聞見、章句之所能悟也。 -  道理中作人,天下古今都是一樣;氣質中作人,便自千狀萬態。 -  論造道之等級,士不能越賢而聖,越聖而天。論為學之志向,不分士、聖、賢,便 -要希天。 -  額淵透徹,曾子敦樸,子思縝細,孟子豪爽。 -  多學而識,原是中人以下一種學問。故夫子自言多聞,擇其善而從之,多見而識之 -。教子張多聞闕疑,多見闕殆。教人博學於文。教顏子博之以文。但不到一貫地位,終 -不成究竟。 -  故頓漸兩門,各緣資性。今人以一貫為入門上等天資,自是了悟,非所望於中人, -其誤後學不細。 -  無理之言,不能惑世誣人。只是他聰明才辯,附會成一段話說,甚有滋味,無知之 -人欣然從之,亂道之罪不細。世間此種話十居其六七,既博且久,非知道之君子,孰能 -辯之? -  間中都不容發,此智者之所乘,而思者之所昧也。 -  明道在朱、陸之間。 -  明道不落塵埃,多了看釋、老;伊川終是拘泥,少了看莊、列。 -  迷迷易悟,明迷難醒。明迷愚,迷明智。迷人之迷,一明則跳脫;明人之迷,明知 -而陷溺。明人之明,不保其身;迷人之明,默操其柄。明明可與共太平,明迷可與共患 -憂。 -  巢、由披卷佛、老、莊、列,只是認得我字真,將天地萬物只是成就我。堯、舜、 -禹、湯、文、武、孔、孟,只是認得人字真,將此身心性命只是為天下國家。 -  聞毀不可遽信,要看毀人者與毀於人者之人品。毀人者賢,則所毀者損;毀人者不 -肖,則所毀者重。考察之年,聞一毀言如獲珙璧,不暇計所從來,枉人多矣。 -  是眾人,即當取其偏長;是賢者,則當望以中道。 - -  士君子高談闊論,語細探玄,皆非實際,緊要在適用濟事。 -  故今之稱拙鈍者曰不中用,稱昏庸者曰不濟事。此雖諺語口頭,余嘗愧之同志者, -盍亦是務乎? -  秀雅溫文,正容謹節,清廟明堂所宜。若蹈湯火,衽金革,食牛吞象之氣,填海移 -山之志,死孝死忠,千捶百折,未可專望之斯人。 -  不做討便宜底學問,便是真儒。 -  千萬人吾往,赫殺老子。老子是保身學問。 -  親疏生愛憎,愛憎生毀譽,毀譽生禍福。此智者之所耽耽注意,而端人正士之所脫 -略而不顧者也。此個題目考人品者不可不知。 -  精神只顧得一邊,任你聰明智巧,有所密必有所疏。惟平心率物,無毫髮私意者, -當疏當密,一准予道而人自相忘。 -  讀書要看三代以上人物是甚學識,甚氣度,甚作用。漢之粗淺,便著世俗;宋之侷 -促,使落迂腐,如何見三代以前景象? -  真是真非,惟是非者知之,旁觀者不免信跡而誣其心,況門外之人,況千里之外, -百年之後乎?其不虞之譽,求全之毀,皆愛憎也。其愛僧者,皆恩怨也。故公史易,信 -史難。 -  或問:「某公如何?」曰:「可謂豪傑英雄,不可謂端人正士。」 -  問:「某公如何?」曰:「可謂端人正士,不可謂達節通儒。」達節通儒,乃端人 -正士中豪傑英雄者也。 -  名實如形影。無實之名,造物所忌,而矯偽者貪之,暗修者避之。 - - -  「遺葛牛羊,亳眾往耕」,似無此事。聖人雖委曲教人,未嘗不以誠心直道交鄰國 -。桀在則葛非湯之屬國也,奚問其不招,即知其無犧牲矣。亳之牛羊,豈可以常遺葛伯 -耶?葛豈真無牛羊耶?有亳之眾,自耕不暇,而又使為葛耕,無乃後世市恩好名、沾沾 -煦煦者之所為乎?不然,葛雖小,亦先王之建國也,寧至無牛羊粢盛哉?即可以供而不 -祭,當勸諭之矣。或告之天子,以明正其罪矣。何至遺牛羊往為之耕哉?可以不告天子 -而滅其國,顧可以不教之,自供祭事而代之勞且費乎?不然,是多彼之罪,而我得以藉 -口也。是伯者,假仁義濟貪欲之所為也。孟子此言,其亦劉太王好貨好色之類與? -  漢以來儒者一件大病痛,只是是古非今。今人見識作為不如古人,此其大都。至於 -風會所宜,勢極所變,禮義所起,自有今人精於古人處。二帝者,夏之古也。夏者,殷 -之古也。殷者,周之古也。其實制度文為三代不相祖述,而達者皆以為是。 -  宋儒泥古,更不考古昔真偽,今世是非。只如祭祀一節,古人席地不便於飲食,故 -尚簠簋籩豆,其器皆高。今祭古人用之,從其時也。子孫祭祖考,只宜用祖考常用所宜 -,而簠簋籩豆是設可乎?古者墓而不墳,不可識也,故不墓祭。後世父母體魄所藏,巍 -然丘壠,今欲舍人子所睹記者而敬數寸之木可乎?則墓祭似不可已也。諸如此類甚多, -皆古人所笑者也。使古人生於今,舉動必不如此。 -  儒者惟有建業立功是難事。自古儒者成名多是講學著述,人未嘗盡試所言,恐試後 -縱不邪氣,其實成個事功不狼狽以敗者定不多人。 -  而今講學不為明道,只為角勝,字面詞語間拿住一點半點錯,便要連篇累牘辨個足 -。這是甚麼心腸?講甚學問? -  得人不敢不然之情易,得人自然之情難。秦、漢而後皆得人不敢不然之情者也。 -  眾人但於義中尋個利字,再沒於利中尋個義字。 -  性分、名分不是兩項,盡性分底不傲名分。召之見,不肯見之;召之役,往執役之 -事。今之講學者,陵犯名分,自謂高潔。孔子乘田委吏何嘗不折腰屈膝於大夫之庭乎? -噫!道不明久矣。 -  中高第,做美官,欲得願足,這不是了卻一生事。只是作人不端,或無過可稱,而 -分毫無補於世,則高第美官反以益吾之▉者也。而世顧以此自多,予不知其何心。 -  隱逸之士只優於貪榮戀勢人,畢竟在行道濟時者之下。君子重之,所以羞富貴利達 -之流也。若高自標榜,塵視朝紳而自謂清流,傲然獨得,則聖世之罪人也。夫不仕無義 -,宇宙內皆儒者事,奈之何潔身娛己棄天下理亂於不聞,而又非笑堯舜稷契之儔哉?使 -天下而皆我也,我且不得有其身,況有此樂乎?予無用世具,行將老桑麻間,故敢云。 -  古之論賢不肖者,不曰幽明則曰枉直,則知光明洞達者為賢,隱伏深險者為不肖。 -真率爽快者為賢,斡旋轉折者為不肖。故賢者如白日青天,一見即知其心事。不肖者如 -深谷晦夜,窮年莫測其淺深。賢者如疾矢急弦,更無一些回顧。枉者如曲▉盤繩,不知 -多少機關。故虞廷曰「黜陟幽明」,孔子曰「舉直錯枉」。觀人者之用明,捨是無所取 -矣。 -  品第大臣率有六等,上焉者寬厚深沉,遠識兼照,造福於無形,消禍於未然,無智 -名勇功,而天下陰受其賜。其次剛明任事,慷慨敢言,愛國如家,憂時如病,而不免太 -露鋒芒,得失相半。其次恬靜逐時,動循故事,利不能興,害不能除。其次持祿養望, -保身固寵,國家安危,略不介懷。其次貪功啟▉,怙寵張威,愎是任情,擾亂國政。其 -次奸險凶淫,煽虐肆毒,賊傷善類,蠱惑君心,斷國家命脈,失四海人望。 -  極寬過厚足恭曲謹之人,亂世可以保身,治世可以敦俗。若草昧經綸,倉卒籌畫, -荷天下之重,襄四海之難,永百世之休,旋乾轉坤,安民阜物,自有一等英雄豪傑,渠 -輩當束之高閣。 -  棄此身操執之常而以圓軟沽俗譽,忘國家遠大之患而以寬厚巿私恩,巧趨人所未見 -之利,善避人所未識之害,立身於百禍不侵之地,事成而我有功,事敗而我無咎,此智 -巧士也,國家奚賴焉! -  委罪掠功,此小人事。掩罪誇功,此眾人事。讓美歸功,此君子事。分怨共過,此 -盛德事。 -  士君子立身難,是不苟;識見難,是不俗。 -  十分識見人與九分者說,便不能了悟,況愚智相去不翅倍蓗。而一不當意輒怒而棄 -之,則皋、夔、稷、契、伊、傅、周、召棄人多矣。所貴乎有識而居人上者,正以其能 -就無識之人,因其微長而善用之也。 -  大凡與人情不近,即行能卓越,道之賊也。聖人之道,人情而已。 -  以林皋安樂懶散心做官,未有不荒怠者。以在家治生營產心做官,未有不貪鄙者。 -  守先王之大防,不為苟且人開蹊竇,此儒者之操尚也。敷先王之道而布之宇宙,此 -儒者之事功也。 -  士君子須有三代以前一副見識,然後可以進退今,權衡道法,可以成濟世之業,可 -以建不世之功。 -  矯激之人加卑庸一等,其害道均也。吳季札、陳仲子、時苗、郭巨之類是已。君子 -矯世俗只到恰好處便止,矯枉只是求直,若過直則彼左枉而我右枉也。故聖賢之如衡, -處事與事低昂,分毫不得高下,使天下曉然知大中至正之所在,然後為不詭於道。 -  曲如煉鐵鉤,直似脫弓弦,不覓封侯貴,何為死道邊。 -  雅士無奇名,幽人絕隱慝。 -  題湯陰廟末聯:千古形銷骨已朽,丹心猶自血鮮鮮。 -  寄所知云:道高毀自來,名重身難隱。 - - - - -治道 - - -  廟堂之上,以養正氣為先;海字之內,以養元氣為本。能使賢人君子無鬱心之言, -則正氣培矣;能使群黎百姓無腹誹之語,則元氣固矣。此萬世帝王保天下之要道也。 -  六合之內,有一事一物相凌奪假借,而不各居其正位,不成清世界;有匹夫匹婦冤 -抑憤懑,而不得其分願,不成平世界。 - -  天下萬事萬物皆要求個實用。實用者,與吾身心關損益者也。凡一切不急之物,供 -耳目之玩好,皆非實用也,愚者甚至喪其實用以求無用。悲夫!是故明君治天下,必先 -盡革靡文,而嚴誅淫巧。 -  當事者若執一簿書,尋故事,循弊規,只用積年書手也得。 -  興利無太急,要左視右盼;革弊無太驟,要長慮卻顧。 -  苟可以柔道理,不必悻直也;苟可以無為理,不必多事也。 -  經濟之士,一居言官便一建白,此是上等人,去緘默保位者遠,只是治不古。若非 -前人議論不精,乃今人推行不力。試稽舊讀,今日我所言,昔人曾道否?若只一篇文章 -了事,雖牘如山,只為紙筆作孽障,架閣上添鼠食耳。夫土君子建白,豈欲文章奕世哉 -?冀諫行而民受其福也。今詔令刊布遏中外,而民間疾苦自若,當求其故。故在實政不 -行而虛文搪塞耳。綜核不力,罪將誰歸? -  為政之道,以不擾為安,以不取為與,以不害為利,以行所無事為興廢起敝。 -  從政自有個大體。大體既立,則小節雖抵〔牜吾〕,當別作張弛,以輔吾大體之所 -未備,不可便改弦易轍。譬如待民貴有恩,此大體也,即有頑暴不化者,重刑之,而待 -民之大體不變。待士有禮,此大體也,即有淫肆不檢者,嚴治之,而待士之大嚴不變。 -彼始之寬也,既養士民之惡,終之猛也,概及士民之善,非政也,不立大體故也。 -  為政先以扶持世教為主。在上者一舉措間,而世教之隆污、風俗之美惡繫焉。若不 -管大體何如,而執一時之偏見,雖一事未為不得,而風化所傷甚大,是謂亂常之政。先 -王慎之。 -  人情之所易忽,莫如漸;天下之大可畏,莫如漸。漸之始也,雖君子不以為意。有 -謂其當防者,雖君子亦以為迂。不知其極重不反之勢,天地聖人亦無如之奈何,其所由 -來者漸也。 -  周、鄭交質,若出於驟然,天子雖孱懦甚,亦必有恚心,諸侯雖豪橫極,豈敢生此 -念?迨積漸所成,其流不覺,至是故步視千里為遠,前步視後步為近。千里者,步步之 -積也。是以驟者舉世所驚,漸者聖人獨懼。明以燭之,堅以守之,毫髮不以假借,此慎 -漸之道也。 -  君子之於風俗也,守先王之禮而儉約是崇,不妄開事端以貽可長之漸。是故漆器不 -至金玉,而刻鏤之不止;黼黻不至庶人,錦繡被牆屋不止。民貧盜起不顧也,嚴刑峻法 -莫禁也。是故君子謹其事端,不開人情竇而恣小人無厭之欲。 -  著令甲者,凡以示天下萬世,最不可草率,草率則行時必有滯礙;最不可含糊,含 -糊則行者得以舞文;最不可疏漏,疏漏則出於吾令之外者無以憑藉,而行者得以專輒。 -  築基樹臬者,千年之計也;改弦易轍者,百年之計也;興廢補敝者,十年之計也; -堊白黝青者,一時之計也。因仍苟且,勢必積衰。助波覆傾,反以裕蠱。先天下之憂者 -,可以審矣。 -  氣運怕盈,故天下之勢不可使之盈。既盈之勢,便當使之損。是故不測之禍,一朝 -之忿,非目前之積也,成於勢盈。勢盈者,不可不自損。捧盈卮者,徐行不如少挹。 -  微者正之,甚者從之。從微則甚,正甚愈甚,天地萬物、氣化人事,莫不皆然。是 -故正微從甚,皆所以禁之也。此二帝三王之所以治也。 -  聖人治天下,常今天下之人精神奮發,意念斂束。奮發則萬民無棄業,而兵食足, -義氣充,平居可以勤國,有事可以捐軀。斂束則萬民無邪行,而身家重名檢修。世治則 -禮法易行,國衰則奸盜不起。後世之民怠惰放肆甚矣。臣民而怠惰放肆,明主之憂也。 - -  能使天下之人者,惟神、惟德、惟惠、惟威。神則無言無為,而妙應如響。德則共 -尊共親,而歸附自同。惠則民利其利,威則民畏其法。非是則動眾無術矣。 -  只有不容己之真心,自有不可易之良法。其處之未必當者,必其思之不精者也。其 -思之不精者,必其心之不切者也。故有純王之心,方有純王之政。 -  《關睢》是個和平之心,《麟趾》是個仁厚之德。只將和平仁厚念頭行政,則仁民 -愛物,天下各得其所。不然,周官法度以虛文行之,豈但無益,且以病民。 -  民胞物與子厚,胸中合下有這段著痛著癢,心方說出此等語。不然,只是做戲的一 -殷,雖是學哭學笑,有甚悲喜?故天下事只是要心真。二帝三王親親、仁民、愛物,不 -是向人學得來,亦不是見得道理當如此。曰親、曰仁、曰愛,看是何等心腸,只是這點 -念頭懇切殷濃,至誠惻怛,譬之慈母愛子,由不得自家。所以有許多生息愛養之政。悲 -夫!可為痛哭也己。 - -  為人上者,只是使所治之民個個要聊生,人人要安分,物物要得所,事事要協宜。 -這是本然職分。遂了這個心,才得暢然一霎歡,安然一覺睡。稍有一民一物一事不妥貼 -,此心如何放得下?何者?為一郡邑長,一郡邑皆待命於我者也;為一國君,一國皆待 -命於我者也;為天下主,天下皆待命於我者也。 -  無以答其望,何以稱此職?何以居此位?夙夜汲汲圖,惟之不暇,而暇於安富尊榮 -之奉,身家妻子之謀,一不遂心,而淫怒是逞耶?夫付之以生民之寄,寧為盈一已之欲 -哉?試一反思,便當愧汗。 -  王法上承天道,下顧人情,要個大中至正,不容有一毫偏重偏輕之制。行法者,要 -個大公無我,不容有一毫故出故入之心,則是天也。君臣以天行法,而後下民以天相安。 -  人情天下古今所同,聖人懼其肆,特為之立中以防之,故民易從。有亂道者從而矯 -之,為天下古今所難為之事,以為名高,無識者相與駭異之,祟獎之,以率天下,不知 -凡於人情不近者,皆道之賊也。故立法不可太激,制禮不可太嚴,責人不可太盡,然後 -可以同歸於道。不然,是驅之使畔也。 -  振玩興廢,用重典;懲奸止亂,用重典;齊眾摧強,用重典。 -  民情有五,皆生於便。見利則趨,見色則愛,見飲食則貪,見安逸則就,見愚弱則 -欺,皆便於己故也。惟便,則術不期工而自工;惟便,則奸不期多而自多。君子固知其 -難禁也,而德以柔之,教以偷之,禮以禁之,法以懲之,終日與便為敵,而競不能衰止 -。禁其所便,與強其所不便,其難一也。故聖人治民如治水,不能使不就下,能分之使 -不泛溢而已。堤之使不決,雖堯、舜不能。 -  堯、舜無不弊之法,而恃有不弊之身,用救弊之人以善天下之治,如此而已。今也 -不然,法有九利,不能必其無一害;法有始利,不能必其不終弊。嫉才妒能之人,惰身 -利口之士,執其一害終弊者訕笑之。謀國不切而慮事不深者,從而附和之。不曰天下本 -無事,安常襲故何妨,則曰時勢本難為,好動喜事何益。至大壞極弊,瓦解土崩,而後 -付之天命焉。嗚呼! -  國家養士何為哉?士君子委質何為哉?儒者以宇宙為分內何為哉? -  官多設而數易,事多議而屢更,生民之殃未知所極。古人慎擇人而久任,慎立政而 -久行。一年如是,百千年亦如是。不易代不改政,不弊事不更法。故百官法守一,不敢 -作聰明以擅更張;百姓耳目一,不至亂聽聞以乖政令。日漸月漬,莫不遵上之紀綱法度 -以淑其身,習上之政教號令以成其俗。譬之寒暑不易,而興作者歲歲有持循焉;道路不 -易,而往來者年年知遠近焉。何其定靜!何其經常!何其相安!何其易行!何其省勞費! -  或曰:「法久而弊奈何?」曰:「尋立法之本意,而救偏補弊耳。善醫者,去其疾 -不易五臟,攻本髒不及四髒;善補者,縫其破不剪餘完,浣其垢不改故制。 -  聖明之世,情禮法三者不相忤也。末世,情勝則奪法,法勝則奪禮。 -  湯、武之誥誓,堯、舜之所悲,桀、紂之所笑也。是豈不示信於民,而白已之心乎 -?堯、舜曰:何待嘵嘵爾!示民民不忍不從。桀、紂曰:何待嘵嘵爾!示民民不敢不從 -。觀《書》之誥誓,而知王道之衰矣。世道至湯、武,其勢必桀、紂,又其勢必至有秦 -、項、莽、操也。是故維持世道者,不可不慮其流。 -  聖人能用天下,而後天下樂為之用。聖人以心用,天下以形用。心用者,無用者也 -。眾用之所恃,以為用者也。若與天下競智勇、角聰明,則窮矣。 -  後世無人才,病本只是學政不修。而今把作萬分不急之務,才振舉這個題目,便笑 -倒人。官之無良,國家不受其福,蒼生且被其禍。不知當何如處? -  聖人感人心於患難處更驗。蓋聖人平日仁漸義摩,深思厚澤,入於人心者化矣。及 -臨難處倉卒之際,何暇思圖,拿出見成的念頭來,便足以捐軀赴義。非曰我以此成名也 -,我以此報君也。彼固亦不自知其何為,而迫切至此也。其次捐軀而志在圖報。其次易 -感而終難。其次厚賞以激其感。噫!至此而上下之相與薄矣,交孚之志解矣。嗟夫!先 -王何以得此於人哉? -  聖人在上,能使天下萬物各止其當然之所,而無陵奪假借之患,夫是之謂各安其分 -,而天地位焉;能使天地萬物各遂其同然之情,而無抑鬱倔強之態,夫是之謂各得其願 -,而萬物育焉。 -  民情既溢,裁之為難。裁溢如割駢拇贅疣,人甚不堪。故裁之也欲令民堪,有漸而 -已矣。安靜而不震激,此裁溢之道也。 -  故聖王在上,慎所以溢之者,不生民情。禮義以馴之,法制以防之,不使潛滋暴決 -,此慎溢之道也。二者帝王調劑民情之大機也,天下治亂恒必由之。 -  創業之君,當海內屬目傾聽之時,為一切雷厲風行之法。 -  故今行如流,民應如響。承平日久,法度疏闊,人心散而不收,惰而不振,頑而不 -爽。譬如熟睡之人,百呼若聾;欠倦之身,兩足如跛,惟是盜賊所追,水火所迫,或可 -猛醒而急奔。是以詔今廢格,政事頹靡,條上者紛紛,中傷者累累,而聽之者若罔聞知 -,徒多書發之勞,紙墨之費耳。即殺其尤者一人,以號召之,未知肅然改視易聽否。而 -迂腐之儒,猶曰宜崇長厚,勿為激切。嗟夫!養天下之禍,甚天下之弊者,必是人也。 -故物垢則浣,甚則改為;室傾則支,甚則改作。中興之君,綜核名實,整頓紀綱,當與 -創業等而後可。 -  先王為政,全在人心上用工夫。其體人心,在我心上用工夫。何者?同然之故也。 -故先王體人於我,而民心得,天下治。 -  天下之思,莫大於「苟可以」而止。養頹靡不復振之習,成亟重不可反之勢,皆「 -苟可以」三字為之也。是以聖人之治身也,勤勵不息;其治民也,鼓舞不倦。不以無事 -廢常規,不以無害忽小失。非多事,非好勞也,誠知夫天下之事,廑未然之憂者尚多; -或然之悔懷,太過之慮者猶貽不及之;憂兢慎始之圖者,不免怠終之患故耳。 -  天下之禍,成於怠忽者居其半,成於激迫者居其半。惟聖人能銷禍於未形,弭思於 -既著。夫是之謂知微知彰。知微者不動聲色,要在能察幾;知彰者不激怒濤,要在能審 -勢。嗚呼!非聖人之智,其誰與於此? -  精神爽奮,則百廢俱興;肢體怠弛,則百興俱廢。聖人之治天下,鼓舞人心,振作 -士氣,務使天下之人如含露之朝葉,不欲如久旱之午苗。 -  而今不要掀揭天地、驚駭世俗,也須拆洗乾坤、一新光景。 -  無治人,則良法美意反以殃民;有治人,則弊習陋規皆成善政。故有文武之政,須 -待文武之君臣。不然,青萍結綠,非不良劍也;烏號繁弱,非不良弓矢也,用之非人, -反以資敵。予觀放賑、均田、減糶、檢災、鄉約、保甲、社倉、官牛八政而傷心焉。不 -肖有司放流,有餘罪矣。 -  振則須起風雷之《益》,懲則須奮剛健之《乾》,不如是,海內大可憂矣。 -  一呼吸間,四肢百骸無所不到;一痛癢間,手足心知無所不通,一身之故也。無論 -人生,即偶提一線而渾身俱動矣,一脈之故也。守令者,一郡縣之線也。監司者,一省 -路之線也。君相者,天下之線也。心知所及,而四海莫不精神;政令所加,而萬姓莫不 -鼓舞者何?提其線故也。令一身有痛癢而不知覺,則為癡迷之心矣。手足不顧,則為痿 -痹之手足矣。三代以來,上下不聯屬久矣。是人各一身,而家各一情也,死生欣戚不相 -感,其罪不在下也。 -  夫民懷敢怒之心,畏不敢犯之法,以待可乘之釁。眾心已離,而上之人且恣其虐以 -甚之,此桀紂之所以亡也。是以明王推自然之心,置同然之腹,不恃其順我者之跡,而 -欲得其無怨我者之心。體其意欲而不忍拂,知民之心不盡見之於聲色,而有隱而難知者 -在也。此所以因結深厚,而子孫終必賴之也。 -  聖主在上,只留得一種天理、民彝、經常之道在,其餘小道、曲說、異端、橫議斬 -然芟除,不遺餘類。使天下之人易耳改目、洗心濯慮,於一切亂政之術,如再生,如夢 -覺,若未嘗見聞。然後道德一而風俗同,然後為純王之治。 -  治世莫先無偽,教民只是不爭。 -  任是權奸當國,也用幾個好人做公道,也行幾件好事收人心。繼之者欲矯前人以自 -高,所用之人一切罷去,所行之政一切更張,小人奉承以干進,又從而巧言附和,盡改 -良法而還弊規焉。這個念頭為國為民乎?為自家乎?果曰為國為民,識見已自聾瞽;果 -為自家,此之舉動二帝三王之所不赦者也,更說甚麼事業? -  至人無奇名,太平無奇事,何者?皇錫此極,民歸此極,道德一,風俗同,何奇之 -有? -  勢有時而窮。始皇以天下全盛之威力,受制於匹夫,何者? -  匹夫者,天子之所恃以成勢者也。自傾其勢反為勢所傾,故明王不恃蕭牆之防禦, -而以天下為藩籬。德之所漸,薄海皆腹心之兵;怨之所結,衽席皆肘腋之冠。故帝王虐 -民是自虐其身者也,愛民是自愛其身者也。覆轍滿前,而驅車者接踵,可慟哉! - -  如今天下人,譬之驕子,不敢熱氣,唐突便艴然起怒,縉紳稍加綜核,則曰苛刻; -學校稍加嚴明,則曰寡恩;軍士稍加斂戢,則曰凌虐;鄉官稍加持正,則曰踐踏。今縱 -不敢任怨,而廢公法以市恩,獨不可已乎?如今天下事,譬之敝屋,輕手推扶,便愕然 -咋舌。今縱不敢更張,而毀拆以滋壞,獨不可已乎? -  公私兩字,是宇宙的人鬼關。若自朝堂以至閭裡,只把持得公字定,便自天清地寧 -,政清訟息;只一個私字,擾攘得不成世界。 -  王道感人處,只在以我真誠怛惻之心,體其委曲必至之情。 -  是故不賞而勸,不激而奮,出一言而能使人致其死命,誠故也。 -  人君者,天下之所依以欣戚者也。一念怠荒,則四海必有廢弛之事,一念縱逸,則 -四海必有不得其所之民。故常一日之間,幾運心思於四海,而天下尚有君門萬里之歎。 -苟不察群情之向背,而惟己欲之是恣,嗚呼!可懼也。 -  天下之存亡繫兩字,曰「天命」。天下之去就繫兩字,曰「人心」。 -  耐煩則為三王,不耐煩則為五霸。 -  一人憂,則天下樂;一人樂,則天下憂。 -  聖人聯天下為一身,運天下於一心。今夫四肢百骸、五臟六腑皆吾身也,痛癢之微 -,無有不覺,無有不顧。四海之痛癢,豈帝王所可忽哉?夫一指之疔如粟,可以致人之 -死命。國之存亡不在耳目聞見時,聞見時則無及矣。此以利害言之耳。一身麻木若不是 -我,非身也。人君者,天下之人君。天下者,人君之天下。而血氣不相通,心知不相及 -,豈天立君之意耶? -  無厭之欲,亂之所自生也。不平之氣,亂之所由成也。皆有國者之所懼也。 -  用威行法,宜有三豫,一曰上下情通,二曰惠愛素孚,三曰公道難容。如此則雖死 -而人無怨矣。 -  第一要愛百姓。朝廷以赤子相付托,而士民以父母相稱謂。 -  試看父母之於赤子,是甚情懷,便知長民底道理。就是愚頑梗化之人,也須耐心漸 -漸馴服。王者必世而後仁,揣我自己德教有俄頃過化手段否?奈何以積習慣惡之人,而 -遽使之帖然我順,一教不從,而遽赫然武怒耶?此居官第一戒也。有一種不可馴化之民 -,有一種不教而殺之罪。此特萬分一耳,不可以立治體。 -  天下所望於聖人,只是個安字。聖人所以安天下,只是個平字。平則安,不平則不 -安矣。 -  三軍要他輕生,萬姓要他重生。不輕生不能勘亂,不重生易於為亂。 -  太古之世,上下相忘,不言而信。中古上下求相孚。後世上下求相勝:上用法勝下 -,下用欺以避法;下以術勝上,上用智以防術。以是而欲求治,胡可得哉?欲復古道, -不如一待以至誠。誠之所不學者,法以輔之,庶幾不死之人心,尚可與還三代之舊乎? -  治道尚陽,兵道尚陰;治道尚方,兵道尚圓。是惟無言,言必行;是惟無行,行必 -竟。易簡明達者,治之用也。有言之不必行者,有言之即行者,有行之後言者,有行之 -竟不言者,有行之非其所言者。融通變化,信我疑彼者,兵之用也。二者雜施,鮮不敗 -矣。 -  任人不任法,此惟堯、舜在上,五臣在下可矣。非是而任人,未有不亂者。二帝三 -王非不知通變宜民、達權宜事之為善也,以為吾常御天下,則吾身即法也,何以法為? -惟夫後世庸君具臣之不能興道致治,暴君邪臣之敢於恣惡肆奸也,故大綱細目備載具陳 -,以防檢之,以詔示之。固知夫今日之畫一,必有不便於後世之推行也,以為聖子神孫 -自能師其意,而善用於不窮,且尤足以濟吾法之所未及,庸君具臣相與守之而不敢變, -亦不失為半得。暴君邪臣即欲變亂,而奔髦之猶必有所顧忌,而法家拂士亦得執祖宗之 -成憲,以匡正其惡,而不苟從,暴君邪臣亦畏其義正事核也,而不敢遽肆,則法之不可 -廢也明矣。 -  善用威者不輕怒,善用恩者不安施。 -  居上之患,莫大於賞無功,赦有罪;尤莫大於有功不賞,而罰及無罪。是故王者任 -功罪,不任喜怒;任是非,不任毀譽。 -  所以平天下之情,而防其變也。此有國家者之大戒也。 -  事有知其當變而不得不因者,善救之而已矣;人有知其當退而不得不用者,善馭之 -而已矣。 -  下情之通於上也,如嬰兒之於慈母,無小弗達;上德之及於下也,如流水之於間隙 -,無微不入。如此而天下亂亡者,未之有也。故壅蔽之奸,為亡國罪首。 -  不齊,天之道也,數之自然也。故萬物生於不齊,而死於齊。而世之任情厭事者, -乃欲一切齊之,是益以甚其不齊者也。夫不齊其不齊,則簡而易治;齊其不齊,則亂而 -多端。 -  宇宙有三綱,智巧者不能逃也。一王法,二天理,三公論。 -  可畏哉! -  《詩》云:「樂只君子,民之父母。」又曰:「豈弟君子,民之父母。」君子觀於 -《詩》而知為政之道矣。 -  既成德矣,而誦其童年之小失;既成功矣,而笑其往日之偶敗,皆刻薄之見也。君 -子不為。 -  任是最愚拙人,必有一般可用,在善用之者耳。 -  公論,非眾口一詞之謂也。滿朝皆非,而一人是,則公論在一人。 -  為政者,非謂得行即行,從可行則行耳。有得行之勢,而昧可行之理,是位以濟其 -惡也。君子謂之賊。 -  使眾之道,不分職守,則分日月,然後有所責成而上不勞,無所推委而下不奸。混 -呼雜命,概怒偏勞,此不可以使二人,況眾人乎?勤者苦,惰者逸,訥者冤,辯者欺, -貪者飽,廉者饑,是人也,即為人下且不能,而使之為人上,可歎也夫! -  世教不明,風俗不美,只是策勵士大夫。 -  治病要擇良醫,安民要擇良吏。良吏不患無人,在選擇有法,而激勸有道耳。 -  孔子在魯,中大夫耳,下大夫僚儕也,而猶侃侃。今監司見屬吏,煦煦沾沾,溫之 -以兒女子之情,才正體統,輒曰示人以難堪,才尚綜核,則曰待人以苛刻。上務以長厚 -悅下官心,以樹他日之桃李;下務以彌文塗上官耳,以了今日之簿書。 -  吏治安得修舉?民生安得輯寧?憂時者,傷心慟之。 -  據冊點選,據俸升宮,據單進退,據本題覆,持至公無私之心,守畫一不二之法, -此守常吏部也。選人嚴於所用,遷官定於所宜,進退則出精識於撫按之外,題覆則持定 -見於科道之中,此有數吏部也。外而與士民同好惡,內而與君相爭是非。銓注為地方, -不為其人去留;為其人,不為其出身與所恃品材官。 -  如辨白黑,果黜陟,不論久新。任宇宙於一肩,等富貴於土苴。 -  庶幾哉其稱職矣。嗚呼!非大丈夫孰足以語此?乃若用一人則注聽宰執口脗,退一 -人則凝視相公眉睫,借公名以濟私,實結士口而灰民心,背公市譽、負國殖身。是人也 -,吾不忍道之。 -  藏人為君守財,吏為君守法,其守一也。藏人竊藏以營私,謂之盜。吏以法市恩, -不曰盜乎?賣公法以酬私德,剝民財以樹厚交,恬然以為當然,可歎哉!若吾身家,慨 -以許人,則吾專之矣。 -  弭盜之末務,莫如保甲;弭之本務,莫如教養。故鬥米十錢,夜戶不閉,足食之效 -也。守遺待主,始於盜牛,教化之功也。夫盜,辱名也。死,重法也。而人猶為之,此 -其罪豈獨在民哉?而惟城池是恃,關鍵是嚴,巡緝是密,可笑也已。 -  整頓世界,全要鼓舞天下人心。鼓舞人心,先要振作自家神氣。而今提綱摯領之人 -,奄奄氣不足以息,如何教海內不軟手折腳、零骨懈髓底! -  事有大於勞民傷財者,雖勞民傷財亦所不顧。事有不關利國安民者,雖不勞民傷財 -亦不可為。 -  足民,王政之大本。百姓足,萬政舉;百姓不足,萬政廢。 -  孔於告子貢以足食,告冉有以富之。孟子告梁王以養生、送死、無憾,告齊王以制 -田裡、教樹畜。堯、舜告此無良法矣。哀哉! -  百姓只幹正經事,不怕衣食不豐足。君臣只幹正經事,不怕天下不太平。試問百司 -庶府所職者何官?終日所幹者何事?有道者可以自省矣。 -  法至於平靜矣,君子又加之以恕。乃知平者,聖人之公也。 -  恕者,聖人之仁也。彼不平者,加之以深,不恕者,加之以刻,其傷天地之和多矣。 -  化民成俗之道,除卻身教,再無巧術;除卻久道,再無頓法。 -  禮之有次第也,猶堂之有階,使人不得驟僭也。故等級不妨於太煩。階有級,雖疾 -足者不得闊步;禮有等,雖倨傲者不敢凌節。 -  人才邪正,世道為之也。世道污隆,君相為之也。君人者何嘗不費富貴哉?以正富 -貴人,則小人皆化為君子;以邪富貴人,則君子皆化為小人。 -  滿目所見,世上無一物不有淫巧。這淫巧耗了世上多少生成底財貨,誤了世上多少 -生財底工夫,淫巧不誅,而欲講理財,皆苟且之談也。 -  天地之財,要看他從來處,又要看他歸宿處。從來處要豐要養,歸宿處要約要節。 -  將三代以來陋習敞規一洗而更之,還三代以上一半古意, -  也是一個相業。若改正朔、易服色,都是腐儒作用;茸傾廈,逐頹波,都是俗吏作 -用,於蒼生奚補?噫!此可與有識者道。 -  御戎之道,上焉者德化心孚,其次講信修睦,其次遠駕長驅,其次堅壁清野,其次 -陰符智運,其次接刃交鋒,其下叩關開市,又其下納幣和親。 -  為政之道,第一要德感誠服孚,第二要令行禁止。令不行,禁不止,與無官無政同 -,雖堯、舜不能治一鄉,而況天下乎! -  防奸之法,畢竟疏於作姦之人。彼作姦者,拙則作偽以逃防,巧則就法以生弊,不 -但去害,而反益其害。彼作者十,而犯者一耳。又輕其罪以為未犯者勸,法奈何得行? -故行法不嚴,不如無法。 -  世道有三責:責貴,責賢,責壞綱亂紀之最者。三責而世道可回矣。貴者握風俗教 -化之權,而首壞以為庶人倡,則庶人莫不象之。賢者明風俗教化之道,而自壞以為不肖 -者倡,則不肖者莫不象之。責此二人,此謂治本。風教既壞,誅之不可勝誅,故擇其最 -甚者以令天下,此渭治末。本末兼治,不三年而四海內光景自別。乃今貴者、賢者為教 -化風俗之大蠢,而以體面寬假之,少嚴則曰苛刻以傷士大夫之體,不知二帝三王曾有是 -說否乎?世教衰微,人心昏醉,不知此等見識何處來?所謂淫朋比德,相為庇護,以藏 -其短,而道與法兩病矣。天下如何不敝且亂也? -  印書先要個印板真,為陶先要個模子好。以邪官舉邪官,以俗士取俗士,國欲治, -得乎? -  不傷財,不害民,只是不為虐耳。苟設官而惟虐之慮也,不設官其誰虐之?正為家 -給人足,風移俗易,興利除害,轉危就安耳。設廉靜寡慾,分毫無損於民,而萬事廢弛 -,分毫無益於民也,逃不得尸位素餐四字。 -  天地所以信萬物,聖人所以安天下,只是一個常字。常也者,帝王所以定民志者也 -。常一定,則樂者以樂為常,不知德;苦者以苦為常,不知怨。若謂當然,有趨避而無 -恩仇,非有大奸臣凶,不敢輒生厭足之望,忿恨之心,何則?狃於常故也。 -  故常不至大壞極敝,只宜調適,不可輕變,一變則人人生覬覦。 -  心,一覬覦則大家引領垂涎,生怨起紛,數年不能定。是以聖人只是慎常,不敢輕 -變;必不得已,默變,不敢明變;公變,不敢私變;分變,不敢圂變。 -  紀綱法度,整齊嚴密,政教號令,委曲周詳,原是實踐躬行,期於有實用,得實力 -。今也自貪暴者好法,昏惰者廢法,延及今日萬事虛文,甚者迷製作之本意而不知,遂 -欲並其文而去之。只今文如學校,武如教場,書聲軍容,非不可觀可聽,將這二途作養 -人用出來,令人哀傷憤懑欲死。推之萬事,莫不 -  皆然。安用縉紳簪嬰塞破世間哉? -  安內攘外之略,須責之將吏。將吏不得其人,軍民且不得其所,安問夷狄?是將吏 -也,養之不善則責之文武二學校,用之不善則責吏兵兩尚書。或曰:「養有術乎?」曰 -:「何患於無術? -  儒學之大壞極矣,不十年不足以望成材。武學之不行久矣,不十年不足以求名。將 -至於遴選於未用之先,條責於方用之際,綜核於既用之後,黜陟於效不效之時,盡有良 -法可旋至,而立有驗者。 -  而今舉世有一大迷,自秦、漢以來,無人悟得。官高權重,原是投大遺艱。譬如百 -鈞重擔,須尋烏獲來擔;連雲大廈,須用大木為柱。乃朝廷求賢才,借之名器以任重, -非朝廷市私思,假之權勢以榮人也。今也崇階重地,用者以為榮,人重以予其所愛,而 -固以吝於所疏,不論其賢不賢。其用者以為榮,己未得則眼穿涎流以干人,既得則捐身 -樓骨以感德,不計其勝不勝。 - -  旁觀者不論其官之稱不稱,人之宜不宜,而以資淺議驟遷,以格卑議冒進,皆視官 -為富貴之物,而不知富貴之也,欲以何用?果朝廷為天下求人耶?抑君相為士人擇官耶 -?此三人者,皆可憐也。叔季之世生人,其識見固如此可笑也! -  漢始興郡守某者,御州兵,常操之內免操二月,繼之者罷操,又繼之者常給之外冬 -加酒銀人五錢,又繼之者加肉銀人五錢,又繼之者加花布銀人一兩。倉庫不足,括稅給 -之,猶不足,履畝加賦給之。兵不見德也,而民怨又繼之者,曰:「加吾不能,而損吾 -不敢。」競無加。兵相與鼓噪曰:「郡長無恩。」率怨民以叛,肆行攻掠。元帝命刺史 -按之,報曰:「郡守不職,不能撫鎮軍民,而致之叛。」竟棄市。嗟夫!當棄市者誰耶 -?識治體者為之傷心矣。 -  人情不論是非利害,莫不樂便已者,惡不便己者。居官立政,無論殃民,即教養諄 -諄,禁令惓惓,何嘗不欲其相養相安、免禍遠罪哉?然政一行,而未有不怨者。故聖人 -先之以躬行,浸之以口語,示之以好惡,激之以賞罰,日積月累,耐意精心,但盡薰陶 -之功,不計俄頃之效,然後民知善之當為,惡之可恥,默化潛移,而服從乎聖人。今以 -無本之令,責久散之民,求旦夕之效,逞不從之怒,忿疾於頑,而望敏德之治,即我且 -亦愚不肖者,而何怪乎蚩蚩之氓哉? -  嘉靖間,南京軍以放糧過期,減短常例,殺戶部侍郎,散銀數十萬,以安撫之。萬 -曆間,杭州軍以減月糧,又給以不通行之錢,欲殺巡撫不果,既而軍驕,散銀萬餘乃定 -。後嚴火夫夜巡之禁,寬免士夫而繩督市民,既而民變,殺數十人乃定。 -  鄖陽巡撫以風水之故,欲毀參將公署為學宮,激軍士變,致毆兵備副使幾死,巡撫 -被其把持,奏疏上,必露章明示之乃得行。 -  陝西兵以冬操太早,行法太嚴,再三請寬,不從,謀殺撫按總兵不成。論者曰:「 -兵驕卒悍如此,奈何?」余曰:「不然,工不信度而亂常規,恩不下究而犯眾怒,罪不 -在軍也。上人者,體其必至之情,寬其不能之罪,省其煩苛之法,養以忠義之教,明約 -束,信號令,我不負彼而彼奸,吾令即殺之,彼有愧懼而已。 -  鳥獸來必無知覺,而謂三軍之士無良心可乎?亂法壞政,以激軍士之暴,以損國家 -之威,以動天下之心,以開無窮之釁,當事者之罪,不容誅矣。裴度所謂韓洪輿疾討賊 -,承宗斂手削地。非朝廷之力能制其死命,特以處置得宜,能服其心故耳。 -  處置得宜四字,此統大眾之要法也。 -  霸者,豪強威武之名,非奸盜詐偽之類。小人之情,有力便挾力,不用偽,力不足 -而濟以謀,便用偽。若力量自足以壓服天下,震懾諸侯,直恁做將去,不怕他不從,便 -靠不到智術上,如何肯偽?王霸以誠偽分,自宋儒始。其實誤在五伯假之以力、假仁二 -「假」字上,不知這假字只是借字。二帝三王以天德為本,便自能行仁,夫焉有所倚? -霸者要做好事,原沒本領,便少不得借勢力以行之,不然,令不行、禁不止矣,乃是借 -威力以行仁義。故孟子曰:「以力假仁者霸。」以其非身有之,故曰假借耳。人之服之 -也,非為他智能愚人,沒奈他威力何,只得服他。服人者,以強;服於人者,以偽。管 -、商都是霸佐,看他作用都是威力制縛人,非略人,略賣人者。故夫子只說他器小,孟 -子只說他功烈,如彼其卑。而今定公孫鞅罪,只說他慘刻,更不說他奸詐。如今官府教 -民遷善遠罪,只靠那刑威,全是霸道,他有甚詐偽?看來王霸考語,自有見成公案。曰 -以德以力所行底,門面都是一般仁義,如五禁之盟,二帝三王難道說他不是?難道反其 -所為?他只是以力行之耳。德力二字最確,誠偽二字未穩,何也?王霸是個粗分別,不 -消說到誠偽上。 -  若到細分別處,二帝三王便有誠偽之分,何況霸者? -  驟制則小者未必貼服,以漸則天下豪傑皆就我羈靮矣。明制則愚者亦生機械,默制 -則天下無智巧皆入我範圍矣。此馭夷狄待小人之微權,君子用之則為術知,小人用之則 -為智巧,舍是未有能濟者也。或曰:「何不以至誠行之?」曰:「此何嘗不至誠? -  但不淺露輕率耳。孔子曰:「機事不密則害成。『此之謂與?」 -  迂儒識見,看得二帝三王事功,只似陽春雨露,嫗煦可人,再無一些冷落嚴肅之氣 -。便是慈母,也有訶罵小兒時,不知天地只恁陽春,成甚世界?故雷霆霜雪不備,不足 -以成天;威怒刑罰不用,不足以成治。只五臣耳,還要一個臯陶。而二十有二人,猶有 -四凶之誅。今只把天德王道看得恁秀雅溫柔,豈知殺之而不怨,便是存神過化處。目下 -作用,須是汗吐下後,服四君子四物百十劑,才是治體。 -  三公示無私也,三孤示無黨也,九卿示無隱也。事無私曲,心無閉藏,何隱之有? -嗚呼!顧名思義,官職亦少稱矣。 -  要天下太平,滿朝只消三個人,一省只消兩個人。 -  賢者只是一味,聖人備五味。一味之人,其性執,其見偏,自有用其一味處,但當 -因才器使耳。 -  天之氣運有常,人依之以事作,而百務成;因之以長養,而百病少。上之政體有常 -,則下之志趨定,而漸可責成。人之耳目一,而因以寡過。 -  君子見獄囚而加禮焉。今以後皆君子人也,可無敬與?噫! -  刑法之設,明王之所以愛小人,而示之以君子之路也。然則囹圄者,小人之學校與? -  小人只怕他有才,有才以濟之,流害無窮。君子只怕他無才,無才以行之,斯世何 -補? -  事有便於官吏之私者,百世常行,天下通行,或日盛月新,至瀰漫而不可救。若不 -便於己私,雖天下國家以為極,便屢加申飭,每不能行,即暫行亦不能久。負國負民, -吾黨之罪大矣。 -  恩威當使有餘,不可窮也。天子之恩威,止於爵三公、夷九族。恩威盡,而人思以 -勝之矣。故明君養恩不盡,常使人有餘榮;養威不盡,常使人有餘懼。此久安長治之道 -也。 -  封建自五帝已然,三王明知不便勢與情,不得不用耳。夏繼虞,而諸侯無罪,安得 -廢之?湯放桀,費征伐者十一國,餘皆服從,安得而廢之?武伐紂,不期而會者八百, -其不會者,或遠或不聞,亦在三分有二之數,安得而廢之?使六國尊秦為帝,秦亦不廢 -六國。緣他不肯服,勢必畢六王而後已。武王興滅繼絕,孔子之繼絕舉廢,亦自其先世 -曾有功德,及滅之,不以其罪言之耳。非謂六師所移及九族無血食者,必求復其國也。 -故封建不必是,郡縣不必非。郡縣者,無定之封建;封建者,有定之郡縣也。 -  刑禮非二物也,皆令人遷善而去惡也。故遠於禮,則近於刑。 -  上德默成示意而已。其次示觀動其自然。其次示聲色。其次示是非,使知當然。其 -次示毀譽,使不得不然。其次示禍福。 -  其次示賞罰。其次示生殺,使不敢不然。蓋至於示生殺,而御世之術窮矣。叔季之 -世,自生殺之外無示也。悲夫! -  權之所在,利之所歸也。聖人以權行道,小人以權濟私。 -  在上者慎以權與人。 -  太平之時,文武將吏習於懶散,拾前人之唾餘,高談闊論,盡似真才。乃稍稍艱, -大事到手,倉皇迷悶,無一干濟之術,可歎可恨!士君子平日事事講求,在在體驗,臨 -時只辦得三五分,若全然不理會,只似紙舟塵飯耳。 -  聖人之殺,所以止殺也。故果於殺,而不為姑息。故殺者一二,而所全活者千萬。 -後世之不殺,所以滋殺也。不忍於殺一二,以養天下之奸,故生其可殺,而生者多陷於 -殺。嗚呼!後世民多犯死,則為人上者婦人之仁為之也。世欲治得乎? -  天下事,不是一人做底,故舜五臣,周十亂,其餘所用皆小德小賢,方能興化致治 -。天下事,不是一時做底,故堯、舜相繼百五十年,然後黎民於變。文、武、周公相繼 -百年,然後教化大行。今無一人談治道,而孤掌欲鳴。一人倡之,眾人從而詆訾之;一 -時作之,後人從而傾記之。嗚呼!世道終不三代耶?振教鐸以化,吾儕得數人焉,相引 -而在事權,庶幾或可望乎? -  兩精兩備,兩勇兩智,兩愚兩意,則多寡強弱在所必較。 -  以精乘雜,以備乘疏,以勇乘怯,以智乘愚,以有餘乘不足,以有意乘不意,以決 -乘二三,以合德乘離心,以銳乘疲,以慎乘怠,則多寡強弱非所論矣。故戰之勝負無他 -,得其所乘與為人所乘,其得失不啻百也。實精也,而示之以雜;實備也,而示之以疏 -;實勇也,而示之以怯;實智也,而示之以愚;實有餘也,而示之以不足;實有意也, -而示之以不意;實有決也,而示之以二三;實合德也,而示之以離心;實銳也,而示之 -以疲;實慎也,而示之以怠,則多寡強弱亦非所論矣。故乘之可否無他,知其所示,知 -其無所示,其得失亦不啻百也。故不藏其所示,凶也。誤中於所示,凶也。此將家之所 -務審也。 -  守令於民,先有知疼知熱,如兒如女一副真心腸,甚麼愛養曲成事業做不出。只是 -生來沒此念頭,便與說綻唇舌,渾如醉夢。 -  兵士二黨,。近世之隱憂也。士黨易散,兵黨難馴,看來亦有法處。我欲三月而令 -可殺,殺之可令心服而無怨,何者?罪不在下故也。 -  或問:「宰相之道?」曰:「無私有識。」「塚宰之道?」曰:「知人善任使。」 -  當事者,須有賢聖心腸,英雄才識。其謀國憂民也,出於惻怛至誠;其圖事揆策也 -,必極詳慎精密、躊躕及於九有,計算至於千年,其所施設,安得不事善功成、宜民利 -國?今也懷貪功喜事之念,為孟浪苟且之圖,工粉飾彌縫之計,以遂其要榮取貴之奸, -為萬姓造殃不計也,為百年開釁不計也,為四海耗蠹不計也,計吾利否耳。嗚呼!可勝 -歎哉! -  為人上者,最怕器局小,見識俗。吏胥輿皂盡能笑人,不可不慎也。 -  為政者,立科條,發號令,寧寬些兒,只要真實行,永久行。若法極精密,而督責 -不嚴,綜核不至,總歸虛彌,反增煩擾。此為政者之大戒也。 -  民情不可使不便,不可使甚使。不便則壅閼而不通,甚者令之不行,必潰決而不可 -收拾;甚便則縱肆而不檢,甚者法不能制,必放溢而不敢約束。故聖人同其好惡,以休 -其必至之情,納之禮法,以防其不可長之漸。故能相安相習,而不至於為亂。 -  居官只一個快性,自家討了多少便宜,左右省了多少負累,百姓省了多少勞費。 -  自委質後,終日做底是朝廷官,執底是朝廷法,幹底是朝廷事。榮辱在君,愛憎在 -人,進退在我。吾輩而今錯處,把官認作自家官,所以萬事顧不得,只要保全這個在, -扶持這個尊,此雖是第二等說話,然見得這個透,還算五分久。 -  銛矛而秫挺,金矢而稭弓,雖有周官之法度,而無奉行之人,典訓謨訓何益哉? -  二帝三王功業,原不難做,只是人不曾理會。譬之遙望萬丈高峰,何等巍峨,他地 -步原自逶迤,上面亦不陡峻,不信只小試一試便見得。 - -  洗漆以油,洗污以灰,洗油以膩,去小人以小人,此古今妙手也。昔人明此意者幾 -?故以君子去小人,正治之法也。正治是堂堂之陣,妙手是玄玄之機。玄玄之機,非聖 -人不能用也。 -  吏治不但錯枉去慵懦無用之人,清仕路之最急者。長厚者誤國蠹民,以相培植,奈 -何? -  余佐司寇日,有罪人情極可恨,而法無以加者,司官曲擬重條,余不可。司官曰: -「非私惡也,以懲惡耳。」余曰:「謂非私惡誠然,謂非作惡可乎?君以公惡輕重法, -安知他日無以私惡輕重法者乎?刑部只有個法字,刑官只有個執宇,君其慎之!」 -  有聖人於此,與十人論爭,聖人之論是矣,十人亦各是己論以相持,莫之能下。旁 -觀者至有是聖人者,有是十人者,莫之能定。必有一聖人至,方是聖人之論;而十人者 -,旁觀者,又未必以後至者為聖人,又未必是聖人之是聖人也,然則是非將安取決哉? -昊天詩人,怨王惑於邪謀,不能斷以從善。噫! -  彼王也,未必不以邪謀為正謀,為先民之經,為大猶之程。當時在朝之臣,又安知 -不謂大夫為邪謀,為邇言也?是故執兩端而用中,必聖人在天子之位,獨斷堅持,必聖 -人居父師之尊,誠格意孚,不然人各有口,人各有心,在下者多指亂視,在上者蓄疑敗 -謀,孰得而禁之?孰得而定之? -  易衰歇而難奮發者,我也。易懶散而難振作者,眾也。易壞亂而難整飭者,事也。 -易蠱敝而難久當者,物也。此所以治日常少,而亂日常多也。故為政要鼓舞不倦,綱常 -張,紀常理。 -  濫准、株連、差拘、監禁、保押、淹久、解審、照提,此八者,獄情之大忌也,仁 -人之所隱也。居官者慎之。 -  養民之政,孟子云:「老者衣帛食肉,黎民不飢不寒。」韓子云:「鰥寡孤獨廢疾 -者皆有養也。」教民之道,孟子云:「使契為司徒,教以人倫,父子有親,君臣有義, -夫婦有別,長幼有序,朋友有信。放勛曰:『勞之來之,匡之直之,輔之翼之,使自得 -之,又從而振德之。』」《洪範》曰:「無偏無陂,遵王之義;無有作好,遵王之道; -無有作惡,遵王之路;無偏無黨,王道蕩蕩;無黨無偏,王道平平;無反無側,王道正 -直。會其有極,歸其有極。」予每三復斯言,汗輒浹背;三嘆斯語,淚便交頤。嗟夫! -今之民非古之民乎?今之道非古之道乎?抑世變若江河,世道終不可反乎?爵祿事勢視 -古人有何靳嗇?俾六合景象若斯,辱此七尺之軀,靦面萬民之上矣。 - -  智慧長於精神,精神生於喜悅,喜悅生於歡愛。故責人者,與其怒之也,不若教之 -;與其教之也,不若化之。從容寬大,諒其所不能而容其所不及,恕其所不知而體其所 -不欲,隨事講說,隨時開諭。彼樂接引之誠而喜於所好,感督責之寬而愧其不材,人非 -木石,無不長進。故曰:「敬敷五教在寬。」又曰:「無忿疾於頑。」又曰:「匪怒伊 -教。」又曰:「善誘人。」今也不令而責之豫,不言而責之意,不明而責之喻,未及令 -人,先懷怒意,梃詬恣加,既罪矣而不詳其故,是兩相仇、兩相苦也,智者之所笑而有 -量者之所羞也。為人上者切宜戒之。 -  德立行成了,論不得人之貴賤、家之富貧、分之尊卑。自然上下格心,大小象指, -歷山耕夫有甚威靈氣焰?故曰:「默而成之,不言而信,存乎德行。」 -  寬人之惡者,化人之惡者也;激人之過者,甚人之過者也。 -  五刑不如一恥,百戰不如一禮,萬勸不如一悔。 -  舉大事,動眾情,必協眾心而後濟。不能盡協者,須以誠意格之,懇言入之。如不 -格不入,須委曲以求濟事。不然彼其氣力智術足以撼眾而敗吾之謀,而吾又以直道行之 -,非所以成天下之務也。古之人神謀鬼謀,以卜以筮,豈真有惑於不可知哉?定眾志也 -,此濟事之微權也。 -  世間萬物皆有欲,其欲亦是天理人情。天下萬世公共之心,每憐萬物有多少不得其 -欲處,有餘者盈溢於所欲之外而死,不足者奔走於所欲之內而死,二者均,俱生之道也 -。常思天地生許多人物,自足以養之,然而不得其欲者,正緣不均之故耳。此無天地不 -是處,宇宙內自有任其責者。是以聖王治天下不說均就說平,其均平之術只是絜矩,絜 -矩之方,只是個同好惡。 -  做官都是苦事,為官是苦人,官職高一步,責任便大一步,憂勤便增一步。聖人胼 -手胝足,勞心焦思,惟天下之安而後樂,是樂者,樂其所苦者也。眾人快欲適情,身尊 -家潤,惟富貴之得而後樂,是樂者,樂其所樂者也。 -  法有定而持循之不易,則下之耳目心志習而上逸。無定,則上之指授口頰煩而下亂。 -  世人作無益事常十九,論有益惟有暖衣、飽食、安居、利用四者而已。臣子事君親 -,婦事夫,弟事兄,老慈幼,上惠下,不出乎此。《豳風》一章,萬世生人之大法,看 -他舉動,種種皆有益事。 -  天下之事,要其終而後知。君子之用心、君子之建立,要其成後見事功之濟否。可 -奈庸人俗識,讒夫利口,君子才一施設輒生議論,或附會以誣其心,或造言以甚其過, -是以志趣不堅、人言是恤者輒灰心喪氣,竟不卒功。識見不真、人言是聽者輒罷居子之 -所為,不使終事。鳴呼!大可憤心矣。古之大建立者,或利於千萬世而不利於一時,或 -利於千萬人而不利於一人,或利於千萬事而不利於一事。其有所費也似貪,其有所勞也 -似虐,其不避嫌也易以招摘取議。及其成功而心事如青天白日矣,奈之何鑠金銷骨之口 -奪未竟之施,誣不白之心哉?嗚呼!英雄豪傑冷眼天下之事,袖手天下之敝,付之長吁 -冷笑,任其腐潰決裂而不之理,玩日遬月,尸位素餐而苟且目前以全軀保妻子者豈得已 -哉?蓋懼此也。 -  變法者變時勢不變道,變枝葉不變本。吾怪夫後之議法者偶有意見,妄逞聰明,不 -知前人立法千思萬慮而後決。後人之所以新奇自喜,皆前人之所熟思而棄者也,豈前人 -之見不及此哉! -  鰥寡孤獨、疲癃殘疾、顛連無告之失所者,惟冬為甚。故凡詠紅爐錦帳之歡、忘雪 -夜呻吟之苦者,皆不仁者也。 -  天下之財,生者一人,食者九人;興者四人,害者六人。其涷餒而死者,生之人十 -九,食之人十一。其飽暖而樂者,害之人十九,興之人十一。嗚呼!可為傷心矣。三代 -之政行,寧有此哉! -  居生殺予奪之柄,而中奸細之術以陷正人君子,是受顧之刺客也。傷我天道,殃我 -子孫,而為他人快意,愚亦甚矣。愚嘗戲謂一友人曰:「能辱能榮,能殺能生,不當為 -人作荊卿。」友人謝曰:「此語可為當路藥石。」 -  秦家得罪於萬世,在變了井田上。春秋以後井田已是十分病民了,但當復十一之舊 -,正九一之界,不當一變而為阡陌。後世厚取重斂,與秦自不相干。至於貧富不均,開 -天下奢靡之俗,生天下竊劫之盜,廢比閭族黨之法,使後世十人九貧,死於飢寒者多有 -,則壞井田之禍也。三代井田之法,能使家給人足、俗儉倫明、盜息訟簡,天下各得其 -所。只一復了井田,萬事俱理。 -  赦何為者?以為冤邪,當罪不明之有司;以為不冤邪,當報無辜之死恨。聖王有大 -慶雖枯骨罔不蒙恩。今傷者傷矣,死者死矣,含憤鬱鬱莫不欲仇我者速罹於法以快吾心 -,而乃赦之,是何仁於有罪而不仁於於無辜也。將殘賊幸赦而屢逞,善良聞赦而傷心, -非聖王之政也。故聖王眚災宥過不待慶時,其刑故也不論慶時,夫是之謂大公至正之道 -。而不以一時之喜濫恩,則法執而小人懼,小人懼則善良得其所。 -  廟堂之上聚議者,其虛文也。當路者持不虛之成心,循不可廢之故事,特借群在以 -示公耳。是以尊者嚅囁,卑者唯諾,移日而退。巧於逢迎者觀其頤指意向而極口稱道, -他日驟得殊榮;激於公直者知其無益有害而奮色極言,他日中以奇禍。 -  近世士風大可哀已。英雄豪傑本欲為宇宙樹立大綱常、大事業,今也,驅之俗套, -繩以虛文,不俯首吞聲以從,惟有引身而退耳。是以道德之士遠引高蹈,功名之士以屈 -養伸。彼在上者倨傲成習,看下面人皆王順長息耳。 -  今四海九州之人,郡異風,鄉殊俗,道德不一故也。故天下皆守先王之禮,事上接 -下,交際往來,揆事宰物,率遵一個成法,尚安有詆笑者乎?故惟守禮可以笑人。 -  凡名器服飾,自天子而下庶人而上,各有一定籌差,不可僭逼。上太殺是謂逼下, -下太隆是謂僭上,先王不裁抑以逼下也,而下不敢僭。 -  禮與刑二者常相資也,禮先刑後,禮行則刑措,刑行則禮衰。 -  官貴精不貴多,權貴一不貴分。大都之內,法令不行,則官多權分之故也,故萬事 -俱馳。 -  名器於人無分毫之益,而國之存亡、民之死生於是乎系。是故衮冕非暖於綸巾,黃 -瓦非堅於白屋,別等威者非有利於身,受跪拜者非有益於己,然而聖王重之者,亂臣賊 -子非此無以防其漸而示之殊也。是故雖有大奸惡,而以區區之名分折之,莫不失辭喪氣 -。吁!名器之義大矣哉! -  今之用人,只怕無去處,不知其病根在來處。今之理財,只怕無來處,不知其病根 -在去處。 -  用人之道,貴當其才;理財之道,貴去其蠹。人君以識深慮遠者謀社稷,以老成持 -重者養國脈,以振勵明作者起頹敝,以通時達變者調治化,以秉公持正者寄鈞衡,以燭 -奸嫉邪者為按察,以厚下愛民者居守牧,以智深勇沉者典兵戎,以平恕明允者治刑獄, -以廉靜綜核者掌會計,以惜恥養德者司教化,則用人當其才矣。宮妾無慢棄之帛,殿廷 -無金珠之玩,近侍絕賄賂之通,寵幸無不貲之賞,臣工嚴貪墨之誅,迎送懲威福之濫, -工商重淫巧之罰,眾庶謹僭奢之戒,游惰杜幸食之門,緇黃示誑誘之罪,倡優就耕織之 -業,則理財得其道矣。 -  古之官人也擇而後用,故其考課也常恕。何也?不以小過棄所擇也。今之官人也用 -而後擇,郤又以姑息行之,是無擇也,是容保奸回也。豈不渾厚?哀哉萬姓矣! -  世無全才久矣,用人者各因其長可也。夫目不能聽,耳不能視,鼻不能食,口不能 -臭,勢也。今之用人不審其才之所堪,資格所及,雜然授之。方司會計,輒理刑名;既 -典文銓,又握兵柄。養之不得其道,用之不當其才,受之者但悅美秩而不自量。以此而 -求濟事,豈不難哉!夫公綽但宜為老而裨諶不可謀邑,今之人才豈能倍蓗古昔?愚以為 -學校養士,科目進人,便當如溫公條議,分為數科,使各學其才之所近,而質性英發能 -奮眾長者特設全才一科,及其授官,各任所長。夫資有所近,習有所通,施之政事,必 -有可觀。蓋古者以仕學為一事,今日分體用為兩截。窮居草澤,止事詞章;一入廟廊, -方學政事。雖有明敏之才,英達之識,豈能觀政數月便得每事盡善?不免鹵莽施設,鶻 -突支吾。苟不大敗,輒得遷升。以此用人,雖堯舜不治。夫古之明體也養適用之才,致 -君澤民之術固已熟於畎畝之中,苟能用我者,執此以往耳。今之學校,可為流涕矣。 -  官之所居曰任,此意最可玩。不惟取責仕負之義,任者,任也。聽其便宜信任而責 -成也。若牽制束縛,非任矣。 -  廝隸之言直徹之九重,台省以之為藏否,部院以之為進退,世道大可恨也。或訝之 -。愚曰:「天子之用舍托之吏部,吏部之賢不肖托之撫按,撫按之耳目托之兩司,兩司 -之心腹托之守令,守令之見聞托之皂快,皂快之採訪托之他邑別邵之皂快。彼其以恩仇 -為是非,以謬妄為情實,以前令為後宮,以舊愆為新過,以小失為大辜,密報密收,信 -如金石;愈偽愈詳,獲如至寶。謂夷、由污,謂蹻、跖廉,往往有之。而撫按據以上聞 -,吏部據以黜陟。一吏之榮辱不足惜,而奪所愛以失民望,培所恨以滋民殃,好惡拂人 -甚矣。 -  居官有五要:「休錯問一件事,休屈打一個人,休妄費一分財,休輕勞一夫力,休 -苟取一文錢。」 -  吳越之戰利用智,羌胡之戰利用勇。智在相機,勇在養氣。相機者務使鬼神不可知 -,養氣者務使身家不肯顧,此百姓之道也。 -  兵以死使人者也。用眾怒,用義怒,用恩怒。眾怒仇在萬姓也,湯武之師是已。義 -怒以直攻曲也,三軍縞素是已。恩怒感淚思奮也,李牧犒三軍,吳起同甘苦是已。此三 -者,用人之心,可以死人之身,非是皆強驅之也。猛虎在前,利兵在後,以死毆死,不 -戰安之?然而取勝者幸也,敗與潰者十九。 -  寓兵於農,三代聖王行之甚好,家家知耕,人人知戰,無論即戎,亦可弭盜,且經 -數十百年不用兵。說用兵,才用農十分之一耳。何者?有不道之國則天子命曰:「某國 -不道,某方伯連師討之。」天下無與也,天下所以享兵農未分之利。春秋以後,諸侯日 -尋干戈,農胥變而為兵,舍穡不事則吾國貧,因糧於敵則他國貧。與其農胥變而兵也, -不如兵農分。 -  凡戰之道,貪生者死,忘死者生,狃勝者敗,恥敗者勝。 -  疏法勝於密心,寬令勝於嚴主。 -  天下之事倡於作俑而濫於助波鼓焰之徒,至於大壞極敝,非截然毅然者不能救。於 -是而猶曰循舊安常,無更張以拂人意,不知其可也。 -  在上者能使人忘其尊而親之,可謂盛德也已。因偶然之事,立不變之法;懲一夫之 -失,苦天下之人。法莫病於此矣。近日建白,往往而然。 -  禮繁則難行,卒成廢閣之書;法繁則易犯,益甚決裂之罪。 -  為堯舜之民者逸於堯舜之臣,唐、虞世界全靠四岳、九官、十二牧,當時君民各享 -無為之業而已。臣勞之系於國家也,大哉!是故百官逸則君勞,而天下不得其所。 -  治世用端人正士,衰世用庸夫俗子,亂世用憤夫佞人。憸夫佞人盛,而英雄豪傑之 -士不伸。夫惟不伸也,而奮於一伸,遂至於亡天下。故明主在上必先平天下之情,將英 -雄豪傑服其心志,就我羈掗,不蓄其奮而使之逞。 -  天下之民皆朝廷之民,皆天地之民,皆吾民。 -  愈上則愈聾瞽,其壅蔽者眾也。愈下則愈聰明,其見聞者真也故論見聞則君之知不 -如相,相之知不如監司,監司之知不如守令,守令之知不如民。論壅蔽,則守令蔽監司 -,監司蔽相,相蔽君。惜哉!愈下之真情不能使愈上者聞之也。 -  周公是一部活《周禮》,世只有周公不必有《周禮》,使周公而生於今,寧一一用 -《周禮》哉!愚謂有周公雖無《周禮》可也,無周公雖無《周禮》可也。 -  民鮮恥可以觀上之德,民鮮畏可以觀上之威,更不須求之民。 -  民情甚不可鬱也。防以鬱水,一決則漂屋推山;炮以鬱火,一發則碎石破木。桀、 -紂鬱民情而湯、武通之,此存亡之大機也。有天下者之所夙夜孜孜者也。 -  天之生民非為君也,天之立君以為民也,奈何以我病百姓?夫為君之道無他,因天 -地自然之利而為民開尋撙節之,因人生固有之性而為民倡率裁制之,足其同欲,去其同 -惡,凡以安定之使無失所,而後立君之意終矣。豈其使一人肆於民上而剝天下以自奉哉 -?嗚呼!堯舜其知此也夫。 -  三代之法,井田、學校,萬世不可廢。世官、封建,廢之已晚矣。此難與不思者道。 -  聖王同民心而出治道,此成務者之要言也。夫民心之難同久矣。欲多而見鄙,聖王 -識度豈能同之?噫!治道以治民也,治民而不同之,其何能從?即從,其何能久?禹之 -戒舜曰:「罔咈百姓以從己之欲。」夫舜之欲豈適己自便哉?以為民也,而曰:「罔咈 -。」盤庚之遷殷也,再四曉譬;武王之伐紂也,三令五申。必如此而後事克有濟。故曰 -:「專欲難成,眾怒難犯。」我之欲未必非,彼之怒未必是,聖王求以濟事,則知專之 -不勝眾也,而不動聲色以因之,明其是非以悟之,陳其利害以動之,待其心安而意順也 -,然後行之。是謂以天下人成天下事,事不勞而底績。雖然,亦有先發後聞者,亦有不 -謀而斷者,有擬議已成,料度已審,疾雷迅電而民不得不然者。此特十一耳、百一耳, -不可為典則也。 -  人君有欲,前後左右之幸也。君欲一,彼欲百,致天下亂亡,則一欲者受禍,而百 -欲者轉事他人矣。此古今之明鑑,而有天下者之所當悟也。 -  平之一字極有意味,所以至治之世只說個天下平。或言:「水無高下,一經流注無 -不得平。」曰:「此是一味平了。世間千種人,萬般物,百樣事,各有分量,各有差等 -,只各安其位而無一毫拂淚不安之意,這便是太平。如君說則是等尊卑貴賤小大而齊之 -矣,不平莫大乎是。 -  國家之取士以言也,固將曰言如是行必如是也。及他日效用,舉背之矣。今閭閆小 -民立片紙,憑一人,終其身執所書而責之不敢二,何也?我之所言,昭然在紙筆間也, -人已據之矣。吁!執卷上數千言,憑滿闈之士大夫,且播之天下,視小民片紙何如?奈 -之何吾資之以進身,人君資之以進人,而自處於小民之下也哉?噫!無怪也。彼固以空 -言求之,而終身不復責券也。 -  漆器之諫,非為舜憂也,憂天下後世極欲之君自此而開其萌也。天下之勢,無必有 -,有必文,文必靡麗,靡麗必亡。漆器之諫,慎其有也。 -  矩之不可以不直方也,是萬物之所以曲直斜正也。是故矩無言而萬物則之無毫髮違 -,直方也。哀哉!為政之徒言也。 -暑之將退也先燠,天之將旦也先晦。投丸於壁,疾則內射,物極則反,不極則不反也。 -故愚者惟樂其極,智者先懼其反。然則否不害於極,泰極其可懼乎! -  余每食雖無肉味,而蔬食菜羹嘗足。因嘆曰:「嗟夫!使天下皆如此而後盜可誅也 -。」枵腹菜色,盜亦死,不盜亦死。夫守廉而俟死,此士君子之所難也。奈何以不能士 -君子之行而遂誅之乎?此富民為王道之首務也。 -  窮寇不可追也,遁辭不可攻也,貧民不可威也。 -  無事時埋藏著許多小人,多事時識破了許多君子。 -  法者,御世宰物之神器,人君本天理人情而定之,人君不得與;人臣為天下萬世守 -之,人臣不得與。譬之執圭捧節,奉持惟謹而已。非我物也,我何敢私?今也不然,人 -藉之以濟私,請托公行;我藉之以巿恩,聽從如響。而辯言亂政之徒又借曰長厚、曰慈 -仁、曰報德、曰崇尊。夫長厚慈仁當施於法之所不犯,報德崇尊當求諸己之所得為,奈 -何以朝廷公法徇人情、伸己私哉?此大公之賊也。 -  治世之大臣不避嫌,治世之小臣無橫議。 -  姑息之禍甚於威嚴,此不可與長厚者道。 -  卑卑世態,裊裊人情,在下者工不以道之悅,在上者悅不以道之工。奔走揖拜之日 -多,而公務填委;簡書酬酢之文盛,而民事罔聞。時光只有此時光,精神只有此精神, -所專在此,則所疏在彼。朝廷設官本勞己以安民,今也憂民以相奉矣。 -  天下存亡繫人君喜好,鶴乘軒,何損於民?且足以亡國,而況大於此者乎? -  動大眾,齊萬民,要主之以慈愛,而行之以威嚴,故曰:「威克厥愛。」又曰:「 -一怒而安天下之民。」若姑息寬緩,煦煦沾沾,便是婦人之仁,一些事濟不得。 -  為政以徇私、弭謗、違道、干譽為第一恥,為人上者自有應行道理,合則行,不合 -則去。若委曲遷就,計利慮害,不如奉身而退。孟子謂枉尺直尋,不可推起來。雖枉一 -寸,直千尺,恐亦未可也。或曰:「處君親之際,恐有當枉處。」曰:「當枉則不得謂 -之枉矣,是謂權以行經,畢竟是直道而行。」 -  「與其殺不辜,寧失不經。」此舜時獄也。以舜之聖,皋陶之明,聽比屋可封之民 -,當淳朴未散之世,宜無不得其情者,何疑而有不經之失哉?則知五聽之法不足以盡民 -,而疑獄難決自古有之,故聖人寧不明也而不忍不仁。今之決獄輒恥不明而以臆度之見 -、偏主之失殺人,大可恨也。夫天道好生,鬼神有知,奈何為此?故寧錯生了人,休錯 -殺了人。錯生則生者尚有悔過之時,錯殺則我亦有殺人之罪。司刑者慎之。 -  大纛高牙,鳴金奏管,飛旌卷蓋,清道唱騶,輿中之人志驕意得矣。蒼生之疾苦幾 -何?職業之修廢幾何?使無愧於心焉,即匹馬單車,如聽鈞天之樂。不然是益厚吾過也 -。婦人孺子豈不驚炫,恐有道者笑之。故君子之車服儀從足以辨等威而已,所汲汲者固 -自有在也。 - -  徇情而不廢法,執法而不病情,居官之妙悟也。聖人未嘗不屐正奉公,至其接人處 -事大段圓融渾厚,是以法紀不失而人亦不怨。何者?無躁急之心而不狃一切之術也。 -  寬簡二字,為政之大體。不寬則威令嚴,不簡則科條密。以至嚴之法繩至密之事, -是謂煩苛暴虐之政也。困己憂民,明王戒之。 -  世上沒個好做底官,雖抱關之吏,也須夜行早起,方為稱職。才說做官好,便不是 -做官的人。 -  罪不當笞,一朴便不是;罪不當怒,一叱便不是。為人上者慎之。 -  君子之事君也,道則直身而行,禮則鞠躬而盡,誠則開心而獻,禍福榮辱則順命而 -受。 -  弊端最不可開,弊風最不可成。禁弊端於未開之先易,挽弊風於既成之後難。識弊 -端而絕之,非知者不能;疾弊風而挽之,非勇者不能。聖王在上,誅開弊端者以徇天下 -,則弊風自革矣。 -  避其來銳,擊其惰歸,此之謂大智,大智者不敢常在我。擊其銳,避其惰歸,此之 -謂神武,神武者心服常在人。大智者可以常戰,神武者無俟再戰。 -  御眾之道,賞罰其小者,賞罰小,則大者勸懲;甚者,賞罰甚者費省而人不驚;明 -者,人所共知;公者,不以己私。如是雖百萬人可為一將用,不然必勞、必費、必不行 -,徒多賞罰耳。 -  為政要使百姓大家相安,其大利害當興革者不過什一,外此只宜行所無事,不可有 -意立名建功以求烜赫之譽。故君子之建白,以無智名勇功為第一。至於雷厲風行,未嘗 -不用,譬之天道然,以沖和鎮靜為常,疾風迅雷間用之而已。 -  罰人不盡數其罪,則有餘懼;賞人不盡數其功,則有餘望。 -  匹夫有不可奪之志,雖天子亦無可奈何。天子但能令人死,有視死如飴者,而天子 -之權窮矣。然而竟令之死,是天子自取過也。不若容而遂之,以成盛德。是以聖人體群 -情,不敢奪人之志,以傷天下之心,以成己之惡。 -  臨民要莊謹,即近習門吏起居常侍之間,不可示之以可慢。 -  聖王之道以簡為先,其繁者,其簡之所不能者也。故惟簡可以清心,惟簡可以率人 -,惟簡可以省人己之過,惟簡可以培壽命之原,惟簡可以養天下之財,惟簡可以不耗天 -地之氣。 -  聖人不以天下易一人之命,後世乃以天下之命易一身之尊,悲夫!吾不知得天下將 -以何為也。 -  聖君賢相在位,不必將在朝小人一網盡去之,只去元惡大奸,每種芟其甚者一二, -示吾意向之所在。彼群小眾邪與中人之可惡者莫不回心向道,以逃吾之所去,舊惡掩覆 -不暇,新善積累不及,而何敢怙終以自溺邪?故舉皋陶,不仁者遠;去四凶,不仁者亦 -遠。 -  有一種人,以姑息匪人巿寬厚名;有一種人,以毛舉細故巿精明名,皆偏也。聖人 -之寬厚不使人有所恃,聖人之精明不使人無所容,敦大中自有分曉。 -  申、韓亦王道之,聖人何嘗廢刑名不綜核?四凶之誅,舜之申、韓也;少正卯之誅 -,侏儒之斬,三都之墮,孔子之申、韓也。即雷霆霜雪,天亦何嘗不申、韓哉?故慈父 -梃詬,愛肉有針石。 -  三千三百,聖人靡文是尚而勞苦是甘也。人心無所存屬則惡念潛伏,人身有所便安 -則惡行滋長。禮之繁文使人心有所用而不得他適也,使人觀文得情而習於善也,使人勞 -其筋骨手足而不偷慢以養其淫也,使彼此相親相敬而不傷好以起爭也,是範身聯世、制 -欲已亂之大防也。故曠達者槳於簡便,一決而潰之則大亂起。後世之所謂禮者則異是矣 -,先王情文廢無一在而乃習容止,多揖拜,寀顏色,柔聲氣,工頌諛,艷交游,密附耳 -躡足之語,極籩豆筐之費,工書刺候問之文,君子所以深疾之,欲一洗而入於崇真尚簡 -之歸,是救俗之大要也。雖然,不講求先王之禮而一入於放達,樂有簡便,久而不流於 -西晉者幾希。 -  在上者無過,在下者多過。非在上者之無過,有過而人莫敢言。在下者非多過,誣 -之而人莫敢辯。夫惟使人無心言,然後為上者真無過;使人心服,而後為下者真多過也 -。 -  為政者貴因時。事在當因,不為後人開無故之端;事在當革,不為後人長不救之禍 -。 -  夫治水者,通之乃所以窮之,塞之乃所以決之也。民情亦然。故先王引民情於正, -不裁於法。法與情不俱行,一存則一亡。三代之得天下,得民情也;其守天下也,調民 -情也。順之而使不拂,節之而使不過,是謂之調。 -  治道之衰,起於文法之盛;弊蠹之滋,始於簿書之繁。彼所謂文法簿書者,不但經 -生黔首懵不見聞,即有司專職,亦未嘗檢閱校勘。何者?千宗百架,鼠蠹雨浥,或一事 -反覆異同,或一時互有可否。後欲遵守,何所適從?只為積年老猾媒利巿權之資耳,其 -實於事體無裨,弊蠹無損也。嗚呼!百家之言不火而道終不明,後世之文法不省而世終 -不治。 -  六合都是情世界,惟朝堂官府為法世界,若也只徇情,世間更無處覓公道。 -  進賢舉才而自以為恩,此斯世之大惑也。退不肖之怨,誰其當之?失賢之罪,誰其 -當之?奉君之命,盡己之職,而公法廢於私恩,舉世迷焉,亦可悲矣。 -  進言有四難:「審人、審己、審事、審時。」一有未審,事必不濟。 -  法不欲驟變,驟變雖美,駭人耳目,議論之媒也。法不欲硬變,硬變雖美,拂人心 -志,矯抗之藉也。故變法欲詳審,欲有漸,欲不動聲色,欲同民心而與之反覆其議論。 -欲心跡如青天白日,欲獨任躬行不令左右惜其名以行胸臆。欲明且確,不可含糊,使人 -得持兩可以為重輕。欲著實舉行,期有成效,無虛文搪塞,反貽實害。必如是而後法可 -變也。不然,寧仍舊貫而損益修舉之。無喜事,喜事人上者之僇也。 -  新法非十有益於前,百無慮於後,不可立也。舊法非於事萬無益,於理大有害,不 -可更也。要在文者實之,偏者救之,敝者補之,流者反之,怠廢者申明而振作之。此治 -體調停之中策,百世可循者也。 -  用三代以前見識而不迂,就三代以後家數而不俗,可以當國矣。 -  善處世者,要得人自然之情。得人自然之情,則何所不得?失人自然之情,則何所 -不失?不惟帝王為然,雖二人同行,亦離此道不得。 -  夫坐法堂,厲聲色,侍列武卒,錯陳嚴刑,可生可殺,惟吾所欲為而莫之禁,非不 -泰然得志也。俄而有狂士直言正色,詆過攻失,不畏尊嚴,則王公貴人為之奪氣。於斯 -時也,威非不足使之死也,理屈而威以劫之,則能使之死而不能使之服矣。大盜昏夜持 -利刃而加人之頸,人焉得而不畏哉?伸無理之威以服人,盜之類也,在上者之所恥也。 -彼以理伸,我以威伸,則彼之所伸者蓋多矣。故為上者之用威,所以行理也,非以行勢 -也。 -  禮之一字,全是個虛文,而國之治亂、家之存亡、人之死生、事之成敗罔不由之。 -故君子重禮,非謂其能厚生利用人,而厚生利用者之所必賴也。 -  兵革之用,德化之衰也。自古聖人亦甚盛德,即不過化存神,亦能久道成孚,使彼 -此相安於無事。豈有四夷不可講信修睦作鄰國邪?何至高城深池以為衛,堅甲利兵以崇 -誅,侈萬乘之師,靡數百萬之財以困民,塗百萬生靈之肝腦以角力,聖人之智術而止於 -是邪?將至愚極拙者謀之,其計豈出此下哉?若曰無可奈何不得不爾,無為貴聖人矣。 -將干羽曲格、因壘崇降,盡虛語矣乎?夫無德化可恃,無恩信可結,而曰去兵,則外夷 -交侵,內寇嘯聚,何以應敵?不知所以使之不侵不聚者,亦有道否也?古稱「四夷來王 -」,八蠻通道,越裳重譯,日月霜露之所照墮者莫不尊親,斷非虛語。苟於此而歲歲求 -之,日日講之,必有良法,何至因天下之半而為此無可奈何之策哉! -  事無定分則人人各諉其勞而萬事廢,物無定分則人人各滿其欲而萬物爭。分也者, -物各付物,息人奸懶貪得之心,而使事得其理、人得其情者也。分定雖萬人不須交一言 -。此修齊治平之要務,二帝三王之所不能外也。 -  驕慣之極,父不能制子,君不能制臣,夫不能制妻,身不能自制。視死如飴,何威 -之能加?視恩為玩,何惠之能益?不禍不止。故君子情盛不敢廢紀綱,兢兢然使所愛者 -知恩而不敢肆,所以生之也,所以全之也。 -  物理人情,自然而已。聖人得其自然者以觀天下,而天下之人不能逃聖人之洞察; -握其自然者以運天下,而天下之人不覺為聖人所斡旋。即其軌物所繩於矯拂,然拂其人 -欲自然之私,而順其天理自然之公。故雖有倔強錮蔽之人,莫不憬悟而馴服,則聖人觸 -其自然之機而鼓其自然之情也。 -  監司視小民譪然,待左右肅然,待寮寀溫然,待屬官侃然,庶幾乎得體矣。 -  自委質後,此身原不屬我。朝廷名分,為朝廷守之。一毫貶損不得,非抗也;一毫 -高亢不得,非卑也。朝廷法紀為朝廷執之,一毫徇人不得,非固也;一毫任己不得,非 -葸也。 -  未到手時,嫌於出位而不敢學;既到手時,迫於應酬而不及學。一世業官苟且,只 -於虛套搪塞,竟不嚼真味,竟不見成功。雖位至三公,點檢真足愧汗。學者思之。 -  今天下一切人、一切事,都是苟且做,尋不著真正題目。便認了題目,嘗不著真正 -滋味。欲望三代之治甚難。 -  凡居官,為前人者,無幹譽矯情立一切不可常之法以難後人;為後人者,無矜能露 -跡為一朝即改革之政以苦前人。此不惟不近人情,政體自不宜爾。若惡政弊規,不防改 -圖,只是渾厚便好。 -  將古人心信今人,真是信不過;若以古人至誠之道感今人,今人未必在豚魚下也。 -  泰極必有受其否者,否極必有受其泰者。故水一壅必決,水一決必涸。世道縱極, -必有操切者出,出則不分賢愚,一番人受其敝。嚴極必有長厚者出,出則不分賢愚,一 -番人受其福。此非獨人事,氣數固然也。故智者乘時因勢,不以否為憂,而以泰為俱。 -審勢相時,不決裂於一懲之後,而驟更以一切之法。昔有獵者入山,見騶虞以為虎也, -殺之,尋復悔。明日見虎以為騶虞也,捨之,又復悔。主時勢者之過於所懲也,亦若是 -夫。 -  法多則遁情愈多,譬之逃者,入千人之群則不可覓,入三人之群則不可藏矣。 -  兵,陰物也;用兵,陰道也,故貴謀。不好謀不成。我之動定敵人不聞,敵之動定 -盡在我心,此萬全之計也。 -  取天下,守天下,只在一種人上加意念,一個字上做工夫。一種人是那個?曰民。 -一個字是甚麼?曰安。 -  禮重而法輕,禮嚴而法恕,此二者常相權也。故禮不得不嚴,不嚴則肆而入於法; -法不得不恕,不恕則激而法窮。 -  夫禮也,嚴於婦人之守貞而疏於男子之縱欲,亦聖人之偏也。今輿隸僕僮皆有婢妾 -娼女,小童莫不淫狎,以為丈夫之小節而莫之問,陵嫡失所,逼妾殞身者紛紛。恐非聖 -王之世所宜也,此不可不嚴為之禁也。 -  西門疆尹河西,以賞勸民。道有遺羊,值五百,一人守而待。失者謝之,不受。疆 -曰:「是義民也。」賞之千。其人喜,他日謂所知曰:「汝遺金,我拾之以還。」所知 -者從之。以告疆曰:「小人遺金一兩,某拾而還之。」疆曰:「義民也。」賞之二金。 -其人愈益喜。曰:「我貪,每得利則失名,今也名利兩得,何憚而不為?」 -  篤恭之所發,事事皆純王,如何天下不平?或曰:才說所發,不動聲色乎?曰:「 -日月星辰皆天之文章,風雷雨露皆天之政令,上天依舊篤恭在那裡。篤恭,君子之無聲 -無臭也。無聲無臭,天之篤恭也。」 -  君子小人調停,則勢不兩立,畢竟是君子易退,小人難除。若攻之太慘,處之太激 -,是謂土障狂瀾,灰埋烈火。不若君子秉成而擇才以使之,任使不效,而次第裁抑之。 -我懸富貴之權而示之的曰:「如此則富貴,不如此則貧賤。」彼小人者,不過得富貴耳 -,其才可以僨天下之事,亦可以成天下之功;可激之釀天下之禍,亦可養之興天下之利 -。大都中人十居八九,其大奸凶極頑悍者亦自有數。棄人於惡而迫之自棄,俾中人為小 -人,小小人為大小人,甘心抵死而不反顧者,則吾黨之罪也。噫!此難與君子道,三代 -以還,覆轍一一可鑒。此品題人物者所以先器識也。 -  當多事之秋,用無才之君子,不如用有才之小人。 -  肩天下之任者全要個氣,御天下之氣者全要個理。 -  無事時惟有邱民好蹂踐,自吏卒以上,人人得而魚肉之。有事時惟有邱民難收拾, -雖天子亦無躲避處,何況衣冠?此難與誦詩讀書者道也。 -  余居官有六自:「簿均徭先令自審,均地先令自丈,未完令其自限,紙贖令其自催 -,幹証催詞訟令其自拘,幹証拘小事令其自處。」鄉約亦往往行得去,官逸而事亦理, -欠之可省刑罰。當今天下之民極苦官之繁苛,一與寬仁,其應如響。 -  自井田廢而竊劫始多矣。飽暖無資,飢寒難耐,等死耳。與其瘠僵於溝壑無人稱廉 -,不若苟活於旦夕未必即犯。彼義士廉夫尚難責以餓死,而況種種貧民半於天下乎?彼 -膏粱文繡坐於法堂而嚴刑峻法以正竊劫之罪者,不患無人,所謂「哀矜而勿喜」者誰與 -?余以為,衣食足而為盜者,殺無赦;其迫於飢寒者,皆宜有以處之。不然罪有所由而 -獨誅盜,亦可愧矣。 -  余作《原財》一篇,有六生十二耗。六生者何?曰墾荒閑之田,曰通水泉之利,曰 -教農桑之務,曰招流移之民,曰當時事之宜,曰詳積貯之法。十二耗者何?曰嚴造飲之 -禁,曰懲淫巧之工,曰重游手之罰,曰絕倡優劇戲,曰限在官之役,曰抑僭奢之俗,曰 -禁寺廟之建,曰戒坊第游觀之所刻無益之書,曰禁邪教之倡,曰重迎送供張之罪,曰定 -學校之額、科舉之制,曰誅貪墨之使。語多憤世,其文不傳。 -  太和之氣雖貫徹於四時,然炎徼以南常熱,朔方以北常寒姑無論,只以中土言之, -純然暄燠而無一毫寒涼之氣者,惟是五月半後、八月半前九十日耳。中間亦有夜用袷綿 -時。至七月而暑已處,八月而白露零,九月寒露霜降,亥子丑寅其寒無俟言矣。二三月 -後猶未脫綿,穀雨以後始得斷霜。四月已夏,猶謂清和,大都嚴肅之氣歲常十八,而草 -木二月萌芽,十月猶有生意,乃生育長養不專在於暄燠,而嚴肅之中正所以操縱沖和之 -機者也。聖人之為政也法天,當寬則用春夏,當嚴則用秋冬,而常持之體則於嚴威之中 -施長養之惠。何者?嚴不匱,惠易窮,威中之惠鼓舞人群,惠中之惠驕馳眾志。子產相 -鄰,鑄刑書,誅強宗,伍田疇,褚衣冠。及語子太叔,他日又曰子產眾人之母。孔子之 -為政可考矣。彼沾沾煦煦,尚姑息以養民之惡,卒至廢馳玩遫,令不行,禁不止,小人 -縱恣,善良吞泣,則孔子之罪人也。故曰居上以寬為本,未嘗以寬為政。嚴也者,所以 -成其寬也。故懷寬心不宜任寬政,是以懦主殺臣,慈母殺子。 -  余息而在溝壑,斗珠不如升糠;祼裎而臥冰雪,敗絮重於繡縠。舉世用人,皆珠縠 - -之貴也。有甚高品,有甚清流?不適緩急之用,即真非所急矣。 -  盈天地間只靠二種人為命,曰農夫、織婦。郤又沒人重他,是自戕其命也。 -  一代人才自足以成一代之治,既養無術而用之者又非其人,無怪乎萬事不理也。 -  三代之後,治天下只求個不敢。不知其不敢者,皆苟文以應上也。真敢在心,暗則 -足以盅國家,明之足以亡社稷,乃知不敢不足恃也。 -  古者國不易君,家不易大夫,故其治因民宜俗,立綱陳紀。百姓與己相安,然後從 -容漸漬,日新月盛,而治功成。故曰「必世後仁」,曰「欠道成化」。譬之天地不悠欠 -便成物不得。自封建變而為郡懸,官無欠暖之席,民無盡識之官,施設未竟而讒毀隨之 -,建官未久而黜陟隨之。方朘熊蹯而奪之薪,方繅茧絲而截其緒。一番人至,一度更張 -。各有性情,各有識見。百姓聞其政令半不及理會,聽其教化尚未及信從,而新者卒至 -,舊政廢閣。何所信從?何所遵守?況加以監司之掣肘,制一幘而不問首之大小,都使 -之冠;制一衣而不問時之冬夏,必使之服。不審民情便否,先以書督責,即高才疾足之 -士,俄頃措置之功,亦不過目前小康,一事小補,而上以此為殿最,下以此為歡虞,嗚 -呼!傷心矣。先正有言,人不里居,田不井授,雖欲言治,皆苟而已。愚謂建官亦然, -政因地而定之,官擇人而守之,政善不得更張,民安不得易法。其多事擾民,任情變法 -,與惰政慢法者斥遂之,更其人不易其治,則郡懸賢於封建遠矣。 -  法之立也,體其必至之情,寬以自生之路,而後繩其逾分之私,則上有直色而下無 -心言。今也小官之俸不足供饔飧,偶受常例而輒以貪法罷之,是小官終不可設也。識體 -者欲廣其公而閉之私,而當事者又計其私,某常例、某從來也。夫寬其所應得而後罪其 -不義之取,與夫因有不義之取也遂儉於應得焉孰是?蓋倉官月糧一石而驛丞俸金歲七兩 -云。 -  順心之言易入也,有害於治;逆耳之言裨治也,不可於人。可恨也!夫惟聖君以逆 -耳者順於心,故天下治。 -  使馬者知地險,操舟者觀水勢,馭天下者察民情,此安危之機也。 -  宇內有三權:「天之權曰禍福,人君之權曰刑賞,天下之權曰褒貶。」禍福不爽, -曰天道之清平,有不盡然者,奪於氣數。刑賞不忒,曰君道之清平,有不盡然者,限於 -見聞,蔽於喜怒。褒貶不誣,日人道之清平,有不盡然者,偏於愛憎,誤於聲響。褒貶 -者,天之所恃以為禍福者也,故曰:「天視自我民視,天聽自我民聽。」君之所恃以為 -刑賞者也,故曰:「好人之所惡,惡人之所好,是謂拂人之性。」褒貶不可以不慎也, -是天道、君道之所用也。一有作好作惡,是謂天之罪人,君之戮民。 -  而今當民窮財盡之時,動稱礦稅之害。以為事幹君父,諫之不行,總付無可奈何。 -吾且就吾輩安民節用以自便者言之。飲食入腹,三分銀用之不盡,而食前方丈,總屬暴 -殄,要他何用?僕隸二人,無三十里不肉食者,不程飯桌,要他何用?轎扛人夫,吏書 -馬匹,寬然有餘,而鼓吹旌旗,要他何用?下莞上簟,公座圍裙,盡章物采矣,而滿房 -鋪氈,要他何用?上司新到,須要參謁,而節壽之日,各州懸幣帛下程,充庭盈門,要 -他何用?前呼後擁,不減百人,巡捕聽事,不缺官吏,而司道府官交界送接,到處追隨 -,要他何用?隨巡司道,拜揖之外,張筵互款,期會不遑,而帶道文卷盡取抬隨,帶道 -書吏盡人跟隨,要他何用?官官如此,在在如此,民間節省,一歲盡多,此豈朝廷令之 -不得不如此邪?吾輩可以深省矣。 -  酒之為害不可勝紀也,有天下者不知嚴酒禁,雖談教養,皆苟道耳。此可與留心治 -道者道。 -  簿書所以防奸也,簿書愈多而奸愈黠,何也?千冊萬簿,何官經眼?不過為左右開 -打點之門,廣刁難之計,為下司增紙筆之孽,為百姓添需索之名。舉世昏迷,了不經意 -,以為當然,一細思之,可為大笑。有識者裁簿書十分之九而上下相安,弊端自清矣。 -  養士用人,國家存亡第一緊事,而今只當故事。 -  臣是皋、夔、稷、契,君自然是堯、舜,民自然是唐、虞。士君子當自責我是皋、 -夔、稷、契否?終日悠悠泄泄,只說吾君不堯、舜,弗俾厥後惟堯、舜,是誰之愧恥? -吾輩高爵厚祿,寧不遑汗。 -  惟有為上底難,今人都容易做。 -  聽訟者要如天平,未稱物先須是對針,則稱物不爽。聽訟之時心不虛平,色態才有 -所著,中証便有趨向,況以辭示之意乎?當官先要慎此。 -  天下之勢,頓可為也,漸不可為也。頓之來也驟,漸之來也遠。頓之著力在終,漸 -之著力在始。 -  屋漏尚有十目十手,為人上者,大庭廣眾之中,萬手千目之地,譬之懸日月以示人 -,分毫掩護不得,如之何弗慎? -  事休問大家行不行,舊規有不有,只看義上協不協。勢不在我,而於義無害,且須 -勉從,若有害於義,即有主之者,吾不敢從也。 -  有美意,必須有良法乃可行。有良法,又須有良吏乃能成。良吏者,本真實之心, -有通變之才,厲明作之政者也。心真則為民懇至,終始如一;才通則因地宜民,不狃於 -法;明作則禁止令行,察奸釐弊,如是而民必受福。故天下好事,要做必須實做,虛者 -為之,則文具以擾人;不肖者為之,則濟私以害政。不如不做,無損無益。 -  把天地間真實道理作虛套子幹,把世間虛套子作實事幹,吁!所從來久矣。非霹靂 -手段,變此錮習不得。 -  自家官靠著別人做,只是不肯踏定腳跟挺身自拔,此縉紳第一恥事。若鐵錚錚底做 -將去,任他如何,亦有不顛躓僵僕時。縱教顛躓僵僕,也無可奈何,自是照管不得。 -  作「焉能為有無」底人,以之居鄉,盡可容得。只是受一命之寄,便是曠一命之官 -;在一日之職,便是廢一日之業。況碌碌苟苟,久居高華。唐、虞、三代課官是如此否 -?今以其不貪酷也而容之,以其善夤緣也而進之,國一無所賴,民一無所裨,而俾之貪 -位竊祿,此人何足責?用人者無辭矣。 -  近日居官,動說舊規,彼相沿以來,不便於己者悉去之,便於己者悉存之,如此, -舊規百世不變。只將這念頭移在百姓身上,有利於民者悉修舉之,有害於民者悉掃除之 -,豈不是居官真正道理。噫!利於民生者皆不便於己,便於己者豈能不害於民?從古以 -來,民生不遂,事故日多,其由可知己。 -  古人事業精專,志向果確,一到手便做,故孔子治魯三日而教化大行。今世居官, -奔走奉承,簿書期會,不緊要底虛文,先佔了大半工夫,況平日又無修政立事之心、急 -君愛民之志,蹉跎因循,但以浮泛之精神了目前之俗事。即有志者,亦不過將正經職業 -帶修一二足矣。誰始此風?誰甚此風?誰當責任而不易此風?此三人之罪不止於罷黜矣 -。 -  做上官底只是要尊重,迎送欲遠,稱呼欲尊,拜跪欲恭,供具欲麗,酒席欲豐,騶 -從欲都,伺候欲謹。行部所至,萬人負累,千家愁苦,即使於地方有益,蒼生所損已多 -。及問其職業,舉是譽文濫套,縱虎狼之吏胥騷擾傳郵,重瑣尾之文移督繩郡懸,括奇 -異之貨幣交結要津,習圓軟之容辭網羅聲譽。至生民疾苦,若聾瞽然。豈不驟貴躐遷, -然而顯負君恩,陰觸天怒,吾黨恥之。 -  士君子到一個地位,就理會一個地位底職分,無逆料時之久暫而苟且其行,無期必 -人之用否而感忽其心。入門就心安志定,為久遠之計。即使不久於此,而一日在官,一 -日盡職,豈容一日苟祿尸位哉! - -  水以潤苗,水多則苗腐;膏以助焰,膏重則焰滅。為治一寬,非民之福也。故善人 -百年始可去殺。天有四時,不能去秋。 -  古之為人上者,不虐人以示威,而道法自可畏也;不卑人以示尊,而德容自可敬也 -。脫勢分於堂階而居尊之休未嘗褻,見腹心於詞色而防檢之法未嘗疏。嗚呼!可想矣。 -  為政以問察為第一要,此堯舜治天下之妙法也。今人塞耳閉目只憑獨斷,以寧錯勿 -問,恐蹈耳軟之病,大可笑。此不求本原耳。吾心果明,則擇眾論以取中,自無偏聽之 -失。心一愚暗,即詢岳牧芻蕘,尚不能自決,況獨斷乎?所謂獨斷者,先集謀之謂也。 -謀非集眾不精,斷非一己不決。 -  治道只要有先王一點心,至於制度文為,不必一一復古。有好古者,將一切典章文 -物都要反太古之初,而先王精意全不理會,譬之刻木肖人,形貌絕似,無一些精神貫徹 -,依然是死底。故為政不能因民隨時,以寓潛移默化之機,輒紛紛更變,驚世駭俗,紹 -先復古,此天下之拙夫愚子也。意念雖佳,一無可取。 - -  賞及淫人則善者不以賞為榮,罰及善人則惡者不以罰為辱。是故君子不輕施恩,施 -恩則勸;不輕動罰,動罰則懲。 -  在上者當慎無名之賞。眾皆藉口以希恩,歲遂相沿為故事。故君子惡苟恩。苟恩之 -人,顧一時,巿小惠,徇無厭者之情,而財用之賊也。 -  要知用刑本意原為弼教,苟寬能教,更是聖德感人,更見妙手作用。若只恃雷霆之 -威,霜雪之法,民知畏而不知愧,待無可畏時,依舊為惡,何能成化?故畏之不如愧之 -,忿之不如訓之,遠之不如感之。 -  法者,一也。法曹者,執此一也。以貧富貴賤二之,則非法矣。或曰:「親貴難與 -疏賤同法。」曰:「是也,八議已別之矣。」八議之所不別而亦二之,將何說之辭?夫 -執天子之法而顧忌己之爵祿,以徇高明而虐煢獨,如國法天道何?裂綱壞紀,摧善長惡 -,國必病焉。 -  治人治法不可相無,聖人竭耳目力,此治人也。繼之以規矩準繩、六律五音,此治 -法也。說者猶曰有治人無治法。然則治人無矣,治法可盡廢乎?夫以藏在盟府之空言, -猶足以伏六百年後之霸主,而況法乎?故治天下者以治人立治法,法無不善;留治法以 -待治人,法無不行。 -  君子有君子之長,小人有小人之長。用君子易,用小人難,惟聖人能用小人。用君 -子在當其才,用小人在制其毒。 -  只用人得其當,委任而責成之,不患天下不治。二帝三王急親賢,作當務之急第一 -事。 -  古之聖王不盡人之情,故下之忠愛嘗有餘。後世不然,平日君臣相與僅足以存體面 -而無可感之恩,甚或拂其心而壞待逞之志,至其趨大事、犯大難,皆出於分之不得已。 -以不得已之心供所不欲之役,雖臨時固結,猶死不親,而上之誅求責又復太過,故其空 -名積勢不足以鎮服人心而庇其身國。嗚呼!民無自然之感而徒迫於不得不然之勢,君無 -油然之愛而徒劫之不敢不然之威,殆哉! -  古之學者,窮居而籌兼善之略。今也同為僚殠,後進不敢問先達之事,右署不敢知 -左署之職。在我避侵職之嫌,在彼生望蜀之議。是以未至其地也不敢圖,既至其地也不 -及習,急遽苟且,了目前之套數而已,安得樹可久之功,張無前之業哉? -  百姓寧賤售而與民為巿,不貴值而與官為巿。故物滿於廛,貨充於肆,官求之則不 -得,益價而求之亦不得。有一官府欲採繒,知巿直,密使吏增直,得之。既行,而商知 -其官買也,追之,已入公門矣。是商也,明日逃去。人謂商曰:「此公物不虧值。」曰 -:「吾非為此公。今日得我一繒,他日責我無極。人人未必皆此公,後日未必猶此公也 -。減直何害?甚者經年不予直;遲直何害?甚者竟不予直;一物無直何害?甚者數取皆 -無直。吏卒因而附取亦無直。無直何害?甚者無是貨也而責之有,捶楚亂加。為之遍索 -而不得,為之遠求而難待。誅求者非一官,逼取者非一貨,公差之需索,公門之侵扣, -價銀之低假又不暇論心。嗟夫!寧逢盜劫,無逢官賒。盜劫猶申冤於官,官賒則無所赴 -訴矣。」予聞之,謂僚友曰:「民不我信,非民之罪也。彼固求貨之出手耳,何擇於官 -民?又何親於民而何仇於官哉?無輕取,無多取,與民同直而即日面給焉,年年如是, -人人如是,又禁府州懸之不如是者,百姓獨非人哉?無彼尤也。」 -  公正二字是撐持世界底,沒了這二字,便塌了天。 - -  人臣有二懲,曰私,曰偽。私則利己徇人而公法壞,偽則彌縫粉飾而實政墮。公法 -壞則豪強得以橫恣,貧賤無所控訴而愁怨多。實政墮則視國民不啻越秦,逐勢利如同商 -賈而身家肥。此亂亡之漸也,何可不懲。 -  「與上大夫言,誾誾如也」朱注云:「誾誾,和悅而諍。」只一諍字,十分扶持世 -道。近世見上大夫,少不了和悅,只欠一諍字。 -  古今觀人,離不了好惡,武叔毀仲尼,伯寮訴子路,臧倉沮孟子,從來聖賢未有不 -遭謗毀者,故曰:「其不善者惡之,不為不善所惡,不成君子。後世執進退之柄者只在 -鄉人皆好之上取人,千人之譽不足以敵一人之毀,更不察這毀言從何處來,更不察這毀 -人者是小人是君子。是以正士傷心,端人喪氣。一入仕途,只在彌縫塗抹上做工夫,更 -不敢得罪一人。嗚呼!端人正士叛中行而惟鄉愿是師,皆由是非失真、進退失當者驅之 -也。 -  圖大於細,不勞力,不費財,不動聲色,暗收百倍之功。用柔為剛,愈涵容;愈愧 -屈,愈契腹心,化作兩人之美。 -  銓署楹帖:「直者無庸我力,枉者我無庸力,何敢貪天之功;恩則以奸為賢,怨則 -以賢為奸,豈能逃鬼之責。」 -  公署楹帖:「只一個志誠,任從你千欺百罔;有三尺明法,休犯他十惡五刑。」 -  公署楹帖二:「皇天下鑒此心,敢不光明正直;赤子來游吾腹,願言豈弟慈祥。」 -  按察司署楹帖:「光天化日之下,四方陰邪休行;大冬嚴雪之中,一點陽春自在。」 -  發示驛遞:「痛蒼赤食草飯沙,安忍吸民膏以縱口腹;睹閭閻賣妻鬻子,豈容窮物 -力而擁車徒。」 -  發示州懸:「憫其飢,念其寒,誰不可憐子女,肯推毫髮與蒼生,不枉為民父母; -受若直,怠若事,誰能放過僕童,況糜膏脂無治狀,也應念及兒孫。」 -  襄垣懸署楹帖:「百姓有知,願教竹頭生筍;三堂無事,任從門外張羅。」 -  莫以勤勞怨辛苦,朝庭覓你做奶母。 -  城門四聯:「東延和門:『青帝布陽春,鬱鬱蔥蔥生氣溢沙隨之外;黃堂流德澤, -融融液液太和在梁苑之西。』南文明門:『萬丈文光北射斗牛通魁柄;三星物採東聯箕 -尾上台躔。』西寶成門:『萬寶告成,耕夫織婦白叟黃童年年歌大有;五徵來備,東舍 -西鄰南村北疃處處樂同人。』北鍾祥門:『洪濤來萬里恩波,遠抱崇墉浮瑞靄;玄女注 -千年聖水,潛滋環海護生靈。』」 - - - - - - -人情 - - -  無所樂有所苦,即父子不相保也,而況民乎?有所樂無所苦,即戎狄且相親也,而 -況民乎? -  世之人,聞人過失,便喜談而樂道之;見人規已之過,既掩護之,又痛疾之;聞人 -稱譽,便欣喜而誇張之;見人稱人之善,既蓋藏之,又搜索之。試思這個念頭是君子乎 -?是小人乎? -  乍見之患,愚者所驚;漸至之殃,智者所忽也。以愚者而當智者之所忽,可畏哉! -  論人情只往薄處求,說人心只往惡邊想,此是私而刻底念頭,自家便是個小人。古 -人貴人每於有過中求無過,此是長厚心、盛德事,學者熟思,自有滋味。 -  人說己善則喜,人說己過則怒。自家善惡自家真知,待禍 -  敗時欺人不得。人說體實則喜,人說體虛則怒,自家病痛自家獨覺,到死亡時欺人 -不得。 -  一巨卿還家,門戶不如做官時,悄然不樂曰:「世態炎涼如是,人何以堪?」余曰 -:「君自炎涼,非獨世態之過也。平常淡素是我本來事,熱鬧紛華是我倘來事。君留戀 -富貴以為當然,厭惡貧賤以為遭際,何炎涼如之,而暇歎世情哉?」 -  迷莫迷於明知,愚莫愚於用智,辱莫辱於求榮,小莫小於好大。 -  兩人相非,不破家不止,只回頭任自家一句錯,便是無邊受用;兩人自是,不反面 -稽唇不止,只溫語稱人一句好,便是無限歡欣。 -  將好名兒都收在自家身上,將惡名幾都推在別人身上,此天下通情。不知此兩個念 -頭都攬個惡名在身,不如讓善引過。 -  露己之美者惡,分入之美者尤惡,而況專人之美,竊人之美乎?吾黨戒之。 -  守義禮者,今人以為倨傲;工諛佞者,今人以為謙恭。舉世名公達宦自號儒流,亦 -迷亂相責而不悟,大可笑也。 -  愛人以德而令人仇,人以德愛我而仇之,此二人者皆愚也。 -  無可知處盡有可知之人而忽之,謂之瞽;可知處盡有不可知之人而忽之,亦謂之瞽。 -  世間有三利衢壞人心術,有四要路壞人氣質,當此地而不壞者,可謂定守矣。君門 -,士大夫之利衢也。公門,吏胥之利衢也。市門,商賈之利衢也。翰林、吏部、台、省 -,四要路也。 -  有道者處之,在在都是真我。 -  朝廷法紀做不得人情,天下名分做不得人情,聖賢道理做不得人情,他人事做不得 -人情,我無力量做不得人情。以此五者徇人,皆安也。君子慎之。 -  古人之相與也,明目張膽,推心置腔。其未言也,無先疑;其既言也,無後慮。今 -人之相與也,小心屏息,藏意飾容。其未言也,懷疑畏;其既言也,觸禍機。哀哉!安 -得心地光明之君子,而與之披情愫、論肝膈也?哀哉!彼亦示人以光明,而以機阱陷人 -也。 -  古之君子,不以其所能者病人;今人卻以其所不能者病人。 -  古人名望相近則相得,今人名望相近則相妒。 -  福莫大於無禍,禍莫大於求福。 -  言在行先,名在實先,食在事先,皆君子之所恥也。 -  兩悔無不釋之怨,兩求無不合之交,兩怒無不成之禍。 -  已無才而不讓能,甚則害之;己為惡而惡人之為善,甚則誣之;己貧賤而惡人之富 -貴,甚則傾之;此三妒者,人之大戮也。 -  以患難時,心居安樂;以貧賤時,心居富貴;以屈局時,心居廣大,則無往而不泰 -然。以淵谷視康莊,以疾病視強健,以不測視無事,則無往而不安穩。 -  不怕在朝市中無泉石心,只怕歸泉石時動朝市心。 -  積威與積恩,二者皆禍也。積威之禍可救,積恩之禍難救。 -  積威之後,寬一分則安,恩二分則悅;積恩之後,止而不加則以為薄,才減毫髮則 -以為怨。恩極則窮,窮則難繼;愛極則縱,縱則難堪。不可繼則不進,其勢必退。故威 -退為福,恩退為禍;恩進為福,威進為禍。聖人非靳恩也,懼禍也。濕薪之解也易,燥 -薪之束也難。聖人之靳恩也,其愛人無已之至情,調劑人情之微權也。 -  人皆知少之為憂,而不知多之為憂也。惟智者憂多。 -  眾惡之必察焉,眾好之必察焉,易;自惡之必察焉,自好之必察焉,難。 -  有人情之識,有物理之識,有事體之識,有事勢之識,有事變之識,有精細之識, -有闊大之識。此皆不可兼也,而事變之識為難,闊大之識為貴。 -  聖人之道,本不拂人,然亦不求可人。人情原無限量,務可人不惟不是,亦自不能 -。故君子只務可理。 -  施人者雖無已,而我常慎所求,是謂養施;報我者雖無已,而我常不敢當,是謂養 -報;此不盡人之情,而全交之道也。 -  攻人者,有五分過惡,只攻他三四分,不惟彼有餘懼,而亦傾心引服,足以塞其辯 -口。攻到五分,已傷渾厚,而我無救性矣。若更多一分,是貽之以自解之資,彼據其一 -而得五,我貪其一而失五矣。此言責家之大戒也。 -  見利向前,見害退後,同功專美於已,同過委罪於人,此小人恒態,而丈夫之恥行 -也。 -  任彼薄惡,而吾以厚道敦之,則薄惡者必愧感,而情好愈篤。若因其薄惡也,而亦 -以薄惡報之,則彼我同非,特分先後耳,畢竟何時解釋?此庸人之行,而君子不由也。 -  恕人有六:或彼識見有不到處,或彼聽聞有未真處,或彼力量有不及處,或彼心事 -有所苦處,或彼精神有所忽處,或彼微意有所在處。先此六恕而命之不從,教之不改, -然後可罪也已。是以君子教人而後責人,體人而後怒人。 -  直友難得,而吾又拒以諱過之聲色;佞人不少,而吾又接以喜諛之意態。嗚呼!欲 -不日入於惡也難矣。 -  笞、杖、徒、流、死,此五者小人之律今也;禮、義、廉、恥,此四者君子之律令 -也。小人犯津令刑於有司,君子犯律令刑於公論。雖然,刑罰濫及,小人不懼,何也? -非至當之刑也;毀謗交攻,君子不懼,何也?非至公之論也。 -  情不足而文之以言,其言不可親也;誠不足而文之以貌,其貌不足信也。是以天下 -之事貴真,真不容掩,而見之言貌,其可親可信也夫! -  勢、利、術、言,此四者公道之敵也。炙手可熱則公道為屈,賄賂潛通則公道為屈 -,智巧陰投則公道為屈,毀譽肆行則公道為屈。世之冀幸受誣者,不啻十五也,可慨夫! -  聖人處世只於人情上做工夫,其於人情又只於未言之先、不言之表上做工夫。 -  美生愛,愛生狎,狎生玩,玩生驕,驕生悍,悍生死。 -  禮是聖人制底,情不是聖人制底。聖人緣情而生禮,君子見禮而得情。眾人以禮視 -禮,而不知其情,由是禮為天下虛文,而崇真者思棄之矣。 -  人到無所顧惜時,君父之尊不能使之嚴,鼎鑊之威不能使之懼,千言萬語不能使之 -喻,雖聖人亦無如之何也已。聖人知其然也,每養其體面,體其情私,而不使至於無所 -顧惜。 -  稱人以顏子,無不悅者,忘其貧賤而夭;稱人以桀、紂、盜跖,無不怒者,忘其富 -貴而壽。好善惡惡之同然如此,而作人卻與桀、紂、盜跖同歸,何惡其名而好其實耶? -  今人骨肉之好不終,只為看得爾我二字太分曉。 -  聖人制禮本以體人情,非以拂之也。聖人之心非不因人情之所便而各順之,然順一 -時便一人,而後天下之大不順便者因之矣。故聖人不敢恤小便拂大順,徇一時弊萬世, -其拂人情者,乃所以宜人情也。 -  好人之善,惡人之惡,不難於過甚。只是好己之善,惡己之惡,便不如此痛切。 -  誠則無心,無心則無跡,無跡則人不疑,即疑,久將自消。 -  我一著意,自然著跡,著跡則兩相疑,兩相疑則似者皆真,故著意之害大。三五歲 -之男女終日談笑於市,男女不相嫌,見者亦無疑於男女,兩誠故也。繼母之慈,嫡妻之 -惠,不能脫然自忘,人未必脫然相信,則著意之故耳。 -  一人運一甓,其行疾,一人運三甓,其行遲,又二人共輿十甓,其行又遲,比暮而 -較之,此四人者其數均。天下之事苟從其所便,而足以濟事,不必律之使一也,一則人 -情必有所苦。 -  先王不苦人所便以就吾之一而又病於事。 -  人之情,有言然而意未必然,有事然而意未必然者,非勉強於事勢,則束縛於體面 -。善體人者要在識其難言之情,而不使其為言與事所苦。此聖人之所以感人心,而人樂 -為之死也。 -  人情愈體悉愈有趣味,物理愈玩索愈有入頭。 -  不怕多感,只怕愛感。世之逐逐戀戀,皆愛感者也。 - - -  人情之險也,極矣。一令貪,上官欲論之而事泄,彼陽以他事得罪,上官避嫌,遂 -不敢論,世謂之箝口計。 -  「有二三道義之友,數日別便相思,以為世俗之念,一別便生親厚之情,一別便疏 -。」余曰:「君此語甚有趣向,與淫朋狎友滋味迥然不同,但真味未深耳。孔、孟、顏 -、思,我輩平生何嘗一接?只今誦讀體認間如朝夕同堂對語,如家人父子相依,何者? -心交神契,千載一時,萬里一身也。久之,彼我且無,孰離孰合,孰親孰疏哉?若相與 -而善念生,相違而欲心長,即旦暮一生,濟得甚事?」 -  受病於平日,而歸咎於一旦。發源於臟腑,而求效於皮毛。太倉之竭也,責窮於囤 -底。大廈之傾也,歸罪於一霖。 -  世之人,聞稱人之善輒有妒心,聞稱人之惡輒有喜心,此天理忘而人欲肆者也。孔 -子所惡,惡稱人之惡;孔子所樂,樂道人之善。吾人豈可另有一副心腸。 -  人欲之動,初念最熾,須要遲遲,就做便差了。天理之動,初念最勇,須要就做, -遲遲便歇了。 -  凡人為不善,其初皆不忍也,其後忍不忍半,其後忍之,其後安之,其後樂之。鳴 -呼!至於樂為不善而後良心死矣。 -  聞人之善而掩覆之,或文致以誣其心;聞人之過而播揚之,或枝葉以多其罪。此皆 -得罪於鬼神者也,吾黨戒之。 -  恕之一字,是個好道理,看那惟心者是甚麼念頭。好色者恕人之淫,好貨者恕人之 -貪,好飲者恕人之醉,好安逸者恕人之惰慢,未嘗不以己度人,未嘗不視人猶己,而道 -之賊也。故行恕者,不可以不審也。 -  心怕二三,情怕一。 -  別個短長作己事,自家痛癢問他人。 -  休將煩惱求恩愛,不得恩愛將煩惱。 -  利算無餘處,禍防不意中。 - - - - -物理 - - -  鴟鴉,其本聲也如鵲鳩然,第其聲可憎,聞者以為不祥,每彈殺之。夫物之飛鳴,何 -嘗擇地哉?集屋鳴屋,集樹鳴樹。 -  彼鳴屋者,主人疑之矣,不知其鳴於野樹,主何人不祥也?至於犬人行、鼠人言、豕 -人立,真大異事,然不祥在物,無與於人。即使於人為凶,然亦不過感戾氣而呈兆,在物 -亦莫知所以然耳。蓋鬼神愛人,每示人以趨避之幾,人能恐懼修省,則可轉禍為福。如景 -公之退孛星,高宗之枯桑穀,妖不勝德,理氣必然。然則妖異之呈兆,即蓍龜之告繇,是 -吾師也,何深惡而痛去之哉? -  春夏秋冬不是四個天,東西南北不是四個地,溫涼寒熱不是四個氣,喜怒哀樂不是四 -個面。 -  臨池者不必仰觀,而日月星辰可知也;閉戶者不必遊覽,而陰睛寒暑可知也。 -  有國家者要知真正祥瑞,真正祥瑞者,致祥瑞之根本也。 -  民安物阜,四海清寧,和氣薰蒸,而樣瑞生焉,此至治之符也。 -  至治已成,而應征乃見者也,即無祥瑞,何害其為至治哉?若世亂而祥瑞生焉,則祥 -瑞乃災異耳。是故災祥無定名,治亂有定象。庭生桑穀未必為妖,殿生玉芝未必為瑞。是 -故聖君不懼災異,不喜祥瑞,盡吾自修之道而已。不然,豈後世祥瑞之主出二帝三王上哉 -? -  先得天氣而生者,本上而末下人是已。先得地氣而生者,本下而末上草木是已。得氣 -中之質者;飛。得質中之氣者,走。 -  得渾淪磅礡之氣質者,為山河,為巨體之物。得游散纖細之氣質者,為蠛蠓蚊蟻蠢動 -之蟲,為苔蘚萍蓬藂蔇之草。 -  入釘惟恐其不堅,拔釘推恐其不出。下鎖惟恐其不嚴,開鎖惟恐其不易。 -  以恒常度氣數,以知識定窈冥,皆造化之所笑者也。造化亦定不得,造化尚聽命於自 -然,而況為造化所造化者乎?堪輿星卜諸書,皆屢中者也。 -  古今載藉,莫濫於今日。括之有九:有全書,有要書,有贅書,有經世之書,有益人 -之書,有無用之書,有病道之書,有雜道之書,有敗俗之書。《十三經注疏》,《二十一 -史》,此謂全書。 -  或撮其要領,或類其雋腴,如《四書》、《六經集注》、《通簽》之類,此謂要書。 -當時務,中機宜,用之而物阜民安,功成事濟,此謂經世之書。言雖近理;而掇拾陳言, -不足以羽翼經史,是謂贅書。醫技農卜,養生防患,勸善懲惡,是謂益人之書。無關於天 -下國家,無益於身心性命,語不根心,言皆應世,而妨當世之務,是謂無用之書。又不如 -贅佛老莊列,是謂病道之書。迂儒腐說,賢智偏言,是謂雜道之書,淫邪幻誕,機械誇張 -,是謂敗俗之書。有世道之責者,不毅然沙汰而芟鋤之,其為世教人心之害也不小。 -  火不自知其熱,水不自知其寒,鵬不自知其大,蟻不自知其小,相忘於所生也。 -  聲無形色,寄之於器;火無體質,寄之於薪;色無著落,寄之草木。故五行惟火無體 -,而用不窮。 -  大風無聲,湍水無浪,烈火無燄,萬物無影。 -  萬物得氣之先 -  無功而食,雀鼠是已;肆害而食,虎狼是已。士大夫可圖諸座右。 -  薰香蕕臭,蕕固不可有,薰也是多了的,不如無臭。無臭者,臭之母也。 -  聖人因蛛而知網罟,蛛非學聖人而布絲也;因蠅而悟作繩,蠅非學聖人而交足也。物 -者,天能;聖人者,人能。 -  執火不焦指,輪圓不及下者,速也。 -  柳炭鬆弱無力,見火即盡。榆炭稍強,火稍烈。桑炭強,山栗炭更強。皆逼人而耐久 -。木死成灰,其性自在。 -  莫向落花長太息,世間何物無終盡。 - - - - - -廣喻 - - - -  劍長三尺,用在一絲之銛刃;筆長三寸,用在一端之銳毫,其餘皆無用之羨物也。雖 -然,使劍與筆但有其銛者銳者焉,則其用不可施。則知無用者,有用之資;有用者,無用 -之施。易牙不能無爨子,歐冶不能無砧手,工輸不能無鑽廝。苟不能無,則與有用者等也 -,若之何而可以相病也? -  坐井者不可與言一度之天,出而四顧,則始覺其大矣。雖然,雲木礙眼,所見猶拘也 -,登泰山之巔,則視天莫知其際矣。 -  雖然,不如身游八極之表,心通九垓之外。天在胸中如太倉一粒,然後可以語通達之 -識。 -  著味非至味也,故玄酒為五味先;著色非至色也,故太素為五色主;著象非至象也, -故無象為萬象母;著力非至力也,故大塊載萬物而不負;著情非至情也,故太清生萬物而 -不親;著心非至心也,故聖人應萬事而不有。 -  凡病人面紅如赭、發潤如油者不治,蓋萃一身之元氣血脈盡於面目之上也。嗚呼!人 -君富四海,貧可以懼矣。 -  有國家者,厚下恤民,非獨為民也。譬之於墉,廣其下,削其上,乃可固也;譬之於 -木,溉其本,剔其末,乃可茂也。 -  夫墉未有上豐下狹而不傾,木未有露本繁末而不斃者。可畏也夫! -  天下之勢,積漸成之也。無忽一毫輿羽拆軸者,積也。無忽寒露尋至堅冰者,漸也。 -自古天下國家、身之敗亡,不出積漸二字。積之微漸之始,可為寒心哉! -  火之大灼者無煙,水之順流者無聲,人之情平者無語。 -  風之初發於谷也,拔木走石,漸遠而減,又遠而弱,又遠而微,又遠而盡。其勢然也 -。使風出谷也,僅能振葉拂毛,即咫尺不能推行矣。京師號令之首也,紀法不可以不振也。 -  背上有物,反顧千萬轉而不可見也,遂謂人言不可信,若必待自見,則無見時矣。 -  人有畏更衣之寒而忍一歲之凍,懼一針之痛而甘必死之瘍者。一勞永逸,可與有識者 -道。齒之密比,不嫌於相逼,固有故也。落而補之,則覺有物矣。夫惟固有者多不得,少 -不得。 -  嬰珠珮玉,服錦曳羅,而餓死於室中,不如丐人持一升之粟。是以明王貴用物,而誅 -尚無用者。 -  元氣已虛,而血肉未潰,飲食起居不甚覺也,一旦外邪襲之,溘然死矣。不怕千日怕 -一旦,一旦者,千日之積也。千日可為,一旦不可為矣。故慎於千日,正以防其一旦也。 -有天下國家者,可惕然懼矣。 -  以果下車駕騏驥,以盆池水養蛟龍,以小廉細謹繩英雄豪傑,善官人者笑之。 -  水千流萬派,始於一源,木千枝萬葉,出於一本;人千酬萬應,發於一心;身千病萬 -症,根於一髒。眩於千萬,舉世之大迷也;直指原頭,智者之獨見也。故病治一,而千萬 -皆除;政理一,而千萬皆舉矣。 -  水簽、燈燭、日、月、眼,世間惟此五照,宜謂五明。 -  毫釐之輕,斤鈞之所藉以為重者也;合勺之微,斛鬥之所賴以為多者也;分寸之短, -丈尺之所需以為長者也。 -  人中黃之穢,天靈蓋之凶,人人畏惡之矣。臥病於牀,命在須臾,片腦蘇合,玉屑金 -泊,固有視為無用之物,而唯彼之亟亟者,時有所需也。膠柱用人於緩急之際,良可悲矣! -  長戟利於錐,而戟不可以為錐;猛虎勇於狸,而虎不可以為狸。用小者無取於大,猶 -用大者無取於小,二者不可以相誚也。 -  夭喬之物利於水澤,土燥烈,天暵乾,固枯稿矣。然沃以鹵水則黃,沃以油漿則病, -沃以沸湯則死,惟井水則生,又不如河水之王。雖然,倘浸漬汪洋,泥淖經月,惟水物則 -生,其他未有不死者。用思顧不難哉! -  鑒不能自照,尺不能自度,權不能自稱,圍於物也。聖人則自照、自度、自稱,成其 -為鑒、為尺、為權,而後能妍媸長短,輕重天下。 -  冰凌燒不熟,石砂蒸不黏。 -  火性空,故以蘭麝投之則香,以毛骨投之則臭;水性空,故烹茶清苦,煮肉則腥羶, -無我故也。無我故能物物,若自家有一種氣味雜於其間,則物矣。物與物交,兩無賓主, -同歸於雜。如煮肉於茶,投毛骨於蘭麝,是謂渾淆駁雜。物且不物,況語道乎? -  大車滿載,蚊蚋千萬集焉,其去其來,無加於重輕也。 -  蒼松古柏與夭桃穠李爭妍,重較鸞鑣與衝車獵馬爭步,豈宜不能?亦可醜矣。 -  射之不中也,弓無罪,矢無罪,鵠無罪;書之弗工也,筆無罪,墨無罪,紙無罪。 -  鎖鑰各有合,合則開,不合則不開。亦有合而不開者,必有所以合而不開之故也。亦 -有終日開,偶然抵死不開,必有所以偶然不開之故也。萬事必有故,應萬事必求其故。 -  窗間一紙,能障拔木之風;胸前一瓠,不溺拍天之浪。其所托者然也。 -  人有饋一木者,家僮曰:「留以為梁。」余曰:「木小不堪也。」 -  僮曰:「留以為棟。」余曰:「木大不宜也。」僮笑曰:「木一也,忽病其大,又病 -其小。」余曰:「小子聽之,物各有宜用也,言各有攸當也,豈惟木哉?」他日為餘生炭 -滿爐烘人。余曰:「太多矣。」乃盡溫之,留星星三二點,欲明欲滅。余曰:「太少矣。 -」僮怨曰:「火一也,既嫌其多,又嫌其少。」余曰:「小子聽之,情各有所適也,事各 -有所量也,豈惟火哉?」 -  海投以污穢,投以瓦礫,無所不容;取其寶藏,取其生育,無所不與。廣博之量足以 -納,觸忤而不驚;富有之積足以供,採取而不竭。聖人者,萬物之海也。 -  鏡空而無我相,故照物不爽分毫。若有一絲痕,照人面上便有一絲;若有一點瘢,照 -人面上便有一點,差不在人面也。 -  心體不虛,而應物亦然。故禪家嘗教人空諸有,而吾儒惟有喜怒哀樂未發之中,故有 -發而中節之和。 -  人未有洗面而不閉目,撮紅而不慮手者,此猶愛小體也。 -  人未有過簷滴而不疾走,踐泥塗而不揭足者,此直愛衣履耳。 -  七尺之軀顧不如一履哉?乃沉之滔天情慾之海,拼於焚林暴怒之場,粉身碎體甘心焉 -而不顧,悲夫! -  惡言如鴟梟之噭,閒言如燕雀之喧,正言如狻猊之吼,仁言如鸞鳳之鳴。以此思之, -言可弗慎歟? -  左手畫圓,右手畫方,是可能也。鼻左受香,右受惡;耳左聽絲,右聽竹;目左視東 -,右視西,是不可能也。二體且難分,況一念而可雜乎? -  擲發於地,雖烏獲不能使有聲;投核於石,雖童子不能使無聲。人豈能使我輕重哉? -自輕重耳。 -  澤潞之役,餘與僚友並肩輿。日莫矣,僚友問輿夫:「去路幾何?」曰:「五十里。 -」僚友憮然。少間又問:「尚有幾何?」曰:「四十五里。」如此者數問,而聲愈厲,意 -迫切不可言,甚者怒罵。 -  余少憩車中,既下車,戲之曰:「君費力如許,到來與我一般。」 -  僚友笑曰:「餘口津且竭矣,而咽若火,始信兄討得便宜多也。」 -  問卜築者亦然。天下豈有兒不下迫而強自催生之理乎?大抵皆揠苗之見也。 -  進香叫佛某不禁,同僚非之。餘憮然曰:「王道荊榛而後蹊逕多。彼所為誠非善事, -而心且福利之,為何可弗禁?所賴者緣是以自戒,而不敢為惡也。故歲饑不禁草木之實, -待年豐彼自不食矣。善乎孟子之言曰『君子反經而已矣』。『而已矣』三字,旨哉妙哉! -涵蓄多少趣味!」 -  日食膾炙者,日見其美,若不可一日無。素食三月,聞肉味只覺其腥矣。今與膾炙人 -言腥,豈不訝哉? -  鉤吻、砒霜也,都治病,看是甚麼醫手。 -  家家有路到長安,莫辨東西與南北。 -  一薪無燄,而百枝之束燎原;一泉無渠,而萬泉之會溢海。 -  鐘一鳴,而萬戶千門有耳者莫不入其聲,而聲非不足。使鐘鳴於百里無人之野,無一 -人聞之,而聲非有餘。鐘非人人分送其聲而使之入,人人非取足於鐘之聲以盈吾耳,此一 -貫之說也。 -  未有有其心而無其政,如漬種之必苗,爇蘭之必香;未有無其心而有其政者,如塑人 -之無語,畫鳥之不飛。 -  某嘗與友人論一事,友人曰:「我胸中自有權量。」某曰:「雖婦人孺子未嘗不權量 -,只怕他大鬥小秤。」 -  齁鼾驚鄰而睡者不聞,垢污滿背而負者不見。 -  愛虺蝮而撫摩之,鮮不受其毒矣;惡虎豹而搏之,鮮不受其噬矣。處小人在不遠不近 -之間。 -  玄奇之疾,醫以平易。英發之疾,醫以深沉;闊大之疾,醫以充實。 -  不遠之復,不若未行之審也。 -  千金之子非一日而貧也。日朘月削,損於平日而貧於一旦,不咎其積,而咎其一旦, -愚也。是故君子重小損,矜細行,防微敝。 -  上等手段用賊,其次拿賊,其次躲著賊走。 -  曳新屨者,行必擇地。苟擇地而行,則屨可以常新矣。 -  被桐以絲,其聲兩相借也。道不孤成,功不獨立。 -  坐對明燈,不可以見暗,而暗中人見對燈者甚真。是故君子貴處幽。 -  無涵養之功,一開口動身便露出本象,說不得你有灼見真知;無保養之實,遇外感內 -傷依舊是病人,說不得你有真傳口授。 -  磨墨得省身克已之法,膏筆得用人處事之法,寫字得經世宰物之法。 -  不知天地觀四時,不知四時觀萬物。四時分成是四截,總是一氣呼吸,譬如釜水寒溫 -熱涼,隨火之有無而變,不可謂之四水。萬物分來是萬種,總來一氣薰陶,譬如一樹花, -大小後先,隨氣之完欠而成,不可謂之殊花。 -  陽主動,動生燥,有得於陽,則袒裼可以臥冰雪,陰主靜,靜生寒,有得於靜,則盛 -暑可以衣裘褐。君子有得於道焉,往如不裕如哉?外若可撓,必內無所得者也。 -  或問:「士希賢,賢希聖,聖希天,何如?」曰:「體味之不免有病。士賢聖皆志於 -天,而分量有大小,造詣有淺深者也。譬之適長安者,皆志於長安,其行有疾遲,有止不 -止耳。若曰跬步者希百里,百里者希千里,則非也。故造道之等,必由賢而後能聖,志之 -所希,則合下便欲與聖人一般。」 -  言教不如身教之行也,事化不如意化之妙也。事化信,信則不勞而教成;意化神,神 -則不知而俗變。螟蛉語生,言化也。 -  鳥孚生,氣化也。鱉思生,神化也。 -  天道漸則生,躐則殺。陰陽之氣皆以漸,故萬物長養而百化昌遂。冬燠則生氣散,夏 -寒則生氣收,皆躐也。故聖人舉事,不駭人聽聞。 -  只一條線,把緊要機括提掇得醒,滿眼景物都生色,到處鬼神都響應。 -  一法立而一弊生,誠是,然因弊生而不立法,未見其為是也。夫立法以禁弊,猶為防 -以止水也,堤薄土疏而乘隙決潰誠有之矣,未有因決而廢防者。無弊之法,雖堯、舜不能 -。生弊之法亦立法者之拙也。故聖人不苟立法,不立一事之法,不為一切之法,不懲小弊 -而廢良法,不為一對之弊而廢可久之法。 -  廟堂之上最要蕩蕩平平,寧留有餘不盡之意,無為一著快心之事。或者不然予言,予 -曰:「君見懸墜乎?懸墜者,以一線繫重物下垂,往來不定者也。當兩壁之間,人以一手 -撼之,撞於東壁重則反於西壁亦重,無撞而不反之理,無撞重而反輕之理,待其定也,中 -懸而止。君快於東壁之一撞,而不慮西壁之一反乎?國家以無事無福,無心處事,當可而 -止,則無事矣。 -  地以一氣噓萬物,而使之生,而物之受其氣者,早暮不同,則物之性殊也,氣無早暮 -,夭喬不同,物之體殊也,氣無天喬,甘苦不同,物之味殊也,氣無甘苦,紅白不同,物 -之色殊也,氣無紅白,榮悴不同,物之稟遇殊也,氣無榮悴。盡吾發育之力,滿物各足之 -分量;順吾生植之道,聽其取足之多寡,如此而已。聖人之治天下也亦然。 -  口塞而鼻氣盛,鼻塞而口氣盛,鼻口俱塞,脹悶而死。治河者不可不知也。故欲其力 -大而勢急,則塞其旁流,欲其力微而勢殺也,則多其支派,欲其蓄積而有用也,則節其急 -流。治天下之於民情也亦然。 -  木鐘撞之也有木聲,土鼓擊之也有土響,未有感而不應者也,如何只是怨尤?或曰: -「亦有感而不應者。」曰:「以發擊鼓,以羽撞鐘,何應之有?」 -  四時之氣,先感萬物,而萬物應。所以應者何也?天地萬物一氣也。故春感而糞壤氣 -升,雨感而礎石先潤,磁石動而針轉,陽燧映而火生,況有知乎?格天動物,只是這個道 -理。 -  積衰之難振也,如痿人之不能起。然若久痿,須補養之,使之漸起,若新痿,須針砭 -之,使之驟起。 -  器械與其備二之不精,不如精其一之為約。二而精之,萬全之慮也。 -  我之子我憐之,鄰人之子鄰人憐之,非我非鄰人之子,而轉相鬻育,則不死為恩矣。 -是故公衙不如私。舍之堅,驛馬不如家騎之肥,不以我有視之也。苟擴其無我之心,則垂 -永逸者不憚。今日之一勞,惟民財與力之可惜耳,奚必我居也?懷一體者,當使芻牧之常 -足,惟造物生命之可憫耳,奚必我乘也?嗚呼!天下之有我久矣,不獨此一二事也。學者 -須要打破這藩籬,才成大世界。 -  膾炙之處,蠅飛滿幾,而太羹玄酒不至。膾炙日增,而欲蠅之集太羹玄酒,雖驅之不 -至也。膾炙徹而蠅不得不趨於太羹玄酒矣。是故返樸還淳,莫如崇儉而禁其可欲。 -  駝負百鈞,蟻負一粒,各盡其力也,象飲數石,鼷飲一勺,各充其量也。君子之用人 -,不必其效之同,各盡所長而已。 -  古人云:「聲色之於以化民,末也。」這個末,好容易底。近世聲色不行,動大聲色 -,大聲色不行,動大刑罰,大刑罰才濟得一半事,化不化全不暇理會。常言三代之民與禮 -教習,若有姦宄然後麗刑,如腹與菽粟,偶一失調,始用藥餌。後世之民與刑罰習,若德 -化不由,日積月累,如孔子之三年,王者之必世,驟使欣然向道,萬萬不能。譬之剛腸硬 -腹之人,服大承氣湯三五劑始覺,而卻以四物,君子補之,非不養人,殊與疾悖,而反生 -他症矣。卻要在刑政中兼德禮,則德禮可行,所謂兼攻兼補,以攻為補,先攻後補,有宜 -攻有宜補,惟在劑量。民情不拂不縱始得,噫!可與良醫道。 -  得良醫而撓之,與委庸醫而聽之,其失均。 -  以莫耶授嬰兒而使之御虜,以繁弱授矇瞍而使之中的,其不勝任,授者之罪也。 -  道途不治,不責婦人,中饋不治,不責僕夫。各有所官也。 -  齊有南北官道洿下者裡餘,雨多行潦,行者不便則傍西踏人田行,行數日而成路。田 -家苦之,斷以橫牆,十步一堵,堵數十焉,行者避牆,更西踏田愈廣,數日又成路。田家 -無計,乃蹲田邊且罵且泣,欲止欲訟,而無如多人何也。或告之曰:「牆之所斷,已成棄 -地矣。胡不僕牆而使之通,猶得省於牆之更西者乎?」予笑曰:「更有奇法,以築牆之土 -垫道,則道平矣。道平人皆由道,又不省於道之西者乎?安用牆為?」越數日道成,而道 -傍無一人跡矣。 -  瓦礫在道,過者皆弗見也,裹之以紙,人必拾之矣,十襲而櫝之,人必盜之矣。故藏 -之,人思亡之,掩之,人思檢之;圍之,人思窺之;障之,人思望之,惟光明者不令人疑 -。故君子置其身於光天化日之下,丑好在我,我無飾也,愛憎在人,我無與也。 -  穩卓腳者於平處著力,益甚其不平。不平有二:有兩聥不平,有一隅不平。於不少處 -著力,必致其欹斜。 -  極必反,自然之勢也。故繩過絞則反轉,擲過急則反射。 -  無知之物尚爾,勢使然也。 -  是把鑰匙都開底鎖,只看投簧不投簧。 -  蜀道不難,有難於蜀道者,只要在人得步。得步則蜀道若周行,失步則家庭皆蜀道矣。 -  未有冥行疾走於斷崖絕壁之道而不傾跌者。 -  張敬伯常經山險,謂余曰,「天下事常震於始,而安於習。 -  某數過棧道,初不敢移足,今如履平地矣。余曰:「君始以為險,是不險;近以為不 -險,卻是險。」 -  君子之教人也,能妙夫因材之術,不能變其各具之質。譬之地然,發育萬物者,其性 -也,草得之而為柔,木得之而為剛,不能使草之為木,而木之為草也。是故君子以人治人 -,不以我治人。 -  無星之秤,公則公矣,而不分明,無權之秤,平則平矣,而不通變。君子不法焉。 -  羊腸之隘,前車覆而後車協力,非以厚之也。前車當關,後車停駕,匪惟同緩急,亦 -且共利害。為人也,而實自為也。 -  嗚呼!士君子共事而忘人之急,無乃所以自孤也夫? -  萬水自發源處入百川,容不得,入江、淮、河、漢,容不得,直流至海,則浩浩恢恢 -,不知江、淮幾時入,河、漢何處來,兼收而並容之矣。閒雜懊惱,無端謗讟,償來橫逆 -,加之眾人,不受,加之賢人,不受,加之聖人,則了不見其辭色,自有道以處之。故聖 -人者,疾垢之海也。 -  兩物交必有聲,兩人交必有爭。有聲,兩剛之故也。兩柔則無聲,一柔一剛亦無聲矣 -。有爭,兩貪之故也。兩讓則無爭,一貪一讓亦無爭矣。抑有進焉,一柔可以馴剛,一讓 -可以化貪。 -  石不入水者,堅也,磁不入水者,密也。人身內堅而外密;何外感之能入?物有一隙 -,水即入一隙,物虛一寸,水即入一寸。 - -  人有兄弟爭長者,其一生於甲子八月二十五日,其一生於乙丑二月初三日。一曰:「 -我多汝一歲。」一曰:「我多汝月與日。」 -  不決,訟於有司,有司無以自斷,曰:「汝兩人者,均平不相兄,更不然,遞相兄可 -也。」(此河圖太衍對待流行之全數) -  撻人者梃也,而受撻者不怨梃,殺人者刃也,而受殺者不怨刃。 -  人間等子多不准,自有准等兒,人又不識。我自是定等子底人,用底是時行天平法馬。 -  頸檠一首,足荷七尺,終身由之而不覺其重,固有之也。 -  使他人之首枕我肩,他人之身在我足,則不勝其重矣。 -  不怕炊不熟,只愁斷了火。火不斷時,煉金煮砂可使為水作泥。而今冷灶清鍋,卻恁 -空忙作甚? -  王酒者,京師富店也。樹百尺之竿揭,金書之簾羅,玉相之器,繪五楹之室,出十石 -之壺,名其館曰「五美」,飲者爭趨之也。然而酒惡,明日酒惡之名遍都市。又明日,門 -外有張羅者。予歎曰:「嘻!王酒以五美之名而彰一惡之實,自取窮也。夫京師之市酒者 -不減萬家,其為酒惡者多矣,必人人嘗之,人人始知之,待人人知之,已三二歲矣。彼無 -所表著以彰其惡,而飲者亦無所指記以名其惡也,計所獲視王酒亦百涪焉。朱酒者,酒美 -亦無所表著,計所獲視王酒亦百倍焉。」或曰:「為酒者將掩名以售其惡乎?」曰:「二 -者吾不居焉,吾居朱氏。夫名為善之累也,故藏修者惡之。彼朱酒者無名,何害其為美酒 -哉?」 -  有膾炙於此,一人曰鹹,一人曰酸,一人曰淡,一人曰辛,一人曰精,一人曰粗,一 -人曰生,一人曰熟,一人曰適口,未知誰是。質之易牙而味定矣。夫明知易牙之知味,而 -未必已口之信從,人之情也。況世未必有易牙,而易牙又未易識,識之又來必信從已。嗚 -呼!是非之難一久矣。 -  余燕服長公服少許,余惡之,令差短焉。或曰:「何害?」余曰:「為下者出其分寸 -長,以形在上者乏短,身之災也,害孰大焉?」 - -  水至清不掩魚鮞之細,練至白不藏蠅點之緇。故清白二宇,君子以持身則可,若以處 -世,道之賊而禍之藪也。故渾淪無所不包,幽晦無所不藏。 -  人入餅肆,問:「餅直幾何?」館人曰:「餅一錢一。」食數餅矣,錢如數與之,館 -人曰:「餅不用面乎?應面錢若干。」食者曰,「是也,」與之,又曰:「不用薪水乎? -應薪水錢若干。」食者曰:「是也。」與之。又曰:「不用人工為之乎?應工錢若干。」 -食者曰,「是也。」與之。歸而思於路曰:「吾愚也哉!出此三色錢,不應又有餅錢矣。」 -  一人買布一匹,價錢百五十,令染人青之,染人曰:「欲青,錢三百。」既染矣, -逾年而不能取,染人牽而索之曰:「若負我錢三百,何久不與?吾訟汝。」買布者懼,跽 -而懇之曰:「我布值已百五十矣,再益百五十,其免我乎?」染人得錢而釋之。 -  無鹽而脂粉,猶可言也,西施而脂粉,不仁甚矣。 -  昨見一少婦行哭甚哀,聲似賢節,意甚憐之。友人曰:「子得無視婦女乎?」曰:「 -非視也,見也。大都廣衙之中,好醜雜沓,情態繽紛,入吾目者千般萬狀,不可勝數也, -吾何嘗視?吾何嘗不見?吾見此婦亦如不可勝數者而已。夫能使聰明不為所留,心志不為 -所引,如風聲日影然,何害其為見哉?子欲入市而閉目乎?將有所擇而見乎?雖然,吾猶 -感心也,見可惡而惡之,見可哀而哀之,見可好而好之。雖惰性之正猶感也,感則人,無 -感則天。感之正者聖人,感之雜者眾人,感之邪者小人。君子不能無感,慎其所以感之者 -。此謂動處試靜,亂中見治,工夫效驗都在這裡。」 -  嘗與友人游圃,品題眾芳,渠以豔色濃香為第一。余曰:「濃香不如清香,清香不若 -無香之為香;豔色不如淺色,淺色不如白色之為色。」友人曰:「既謂之花,不厭濃豔矣 -。」余曰:「花也,而能淡素,豈不尤難哉?若松柏本淡素,則不須稱矣。」 -  服砒霜巴豆者,豈不得腸胃一時之快?而留毒五臟,以賊元氣,病者暗受而不知也。 -養虎以除豺狼,豺狼盡而虎將何食哉?主人亦可寒心矣。是故梁冀去而五侯來,宦官滅而 -董卓起。 -  以佳兒易一跛子,子之父母不從,非不辨美惡也,各有所愛也。 -  一人多避忌,家有慶賀,一切尚紅而惡素。客有乘白馬者,不令入廄。閒有少年面白 -者,善諧謔,以朱塗面入,主人驚問,生曰:「知翁之惡素也,不敢以白面取罪。」滿座 -大笑,主人愧而改之。 -  有過彭澤者,值盛夏風濤拍天,及其反也,則隆冬矣,堅冰可履。問舊館人:「此何 -所也?」曰:「彭澤。」怒曰:「欺我哉!吾始過彭澤可舟也,而今可車。始也水活潑, -而今堅結,無一似昔也,而君曰彭澤,欺我哉!」 -  人有夫婦將他出者,托僕守戶。愛子在牀,火延寢室。及歸,婦人震號,其夫環庭追 -僕而杖之。當是時也,汲水撲火,其兒尚可免與! -  發去木一段,造神櫝一,鏡台一,腳桶一。錫五斤,造香爐一,酒壺一,溺器一。( -此造物之象也。一段之木,五斤之錫,初無貴賤榮辱之等,賦畀之初無心,而成形之後各 -殊,造物者亦不知莫之為而為耳。木造物之不還者,貧賤憂慼,當安於有生之初,錫造物 -之循環者,富貴福澤,莫恃為固有之物。) -  某嘗入一富室,見四海奇珍山積,曰:「某物予取諸蜀,某物予取諸越,不遠數千里 -,積數十年以有今日。」謂予:「公有此否?」曰:「予性無所嗜,設有所嗜,則百物無 -足而至前。」問:「何以得此?」曰:「我只是積錢。」 -  弄潮於萬層波面,進步於百尺竿頭。 -  人之手無異於己之手也,腋肋足底,己摸之不癢,而人摸之則癢。補之齒不大於己之 -齒也,己之齒不覺塞,而補之齒覺塞。 -  四腳平穩不須又加搘墊。 -  只見倒了牆,幾曾見倒了地。 -  無垢子浴面,拭之以巾,既而洗足,仍以其巾拭之。弟子曰:「”夕手”矣,先生之 -用物也,即不為物分清濁,豈不為身分貴賤乎?」無垢子曰:「嘻!汝何太分別也。足未 -濯時,面潔於足;足既濯時,何殊於面?面若不浴,面同於足,潔足污面,孰貴孰賤?」 -予謂弟子曰:「此禪宗也。」分別與不分別,此孔、釋之所以殊也。 -  兩家比舍而居,南鄰牆頹,北鄰為之塗埴丹堊而南鄰不歸德,南鄰失火,北鄰為之焦 -頭爛額而南鄰不謝勞。 -  喜者大笑,而怒者亦大笑;哀者痛哭,而樂者亦痛哭;歡暢者歌,而憂思者亦歌;逃 -亡者走,而追逐者亦走。豈可以形論心哉。 -  抱得不哭孩兒易,抱得孩兒不哭難。 -  疥癬雖小疾,只不染在身上就好。一到身上,難說是無病底人。 -  一滴多於一斝,一分長似一尋,誰謂細微可忽?死生只系滴分。 -  四板築牆,下面仍為上面;兩杆推磨,前頭即是後頭。 -  白花菜,掐不盡,一股掗十頭,一夜生三寸。 -  鑽腦既滑忙扯索,軋頭才轉緊蹬杆。 -  誰見八珍能半飽,我欲一捷便收兵。 -  水銀豈可蕩漾,沐猴更莫教調。 -  賦蠶一聯:苟絲綸之既盡,雖鼎鑊其奚辭。 -  詠輿夫一聯:倒垂背上珍珠樹,高起肩頭瑪瑙峰。 - - - - - -詞章 - - -  六經之文不相師也,而後世不敢軒輊。後之為文者,吾惑矣。 - - -  擬韓臨柳,效馬學班,代相祖述,竊其糟粕,謬矣。夫文以載道也,苟文足以明道, -謂吾之文為六經可也。何也?與六經不相叛也。否則,發明申、韓之學術,飾以六經之文 -法,有道君子以之覆瓿矣。 -  詩、詞、文、賦,都要有個憂君愛國之意,濟人利物之心,春風舞雩之趣,達天見性 -之精;不為贅言,不襲餘緒,不道鄙迂,不言幽僻,不事刻削,不徇偏執。 -  一先達為文示予,令改之,予謙讓。先達曰:「某不護短,即令公笑我,只是一人笑 -。若為我迴護,是令天下笑也。」予極服其誠,又服其智。嗟夫!惡一人面指,而安受天 -下之背笑者,豈獨文哉?豈獨一二人哉?觀此可以悟矣。 -  議論之家,旁引根據,然而,據傳莫如據經,據經莫如據理。 -  古今載籍之言率有七種:一曰天分語。身為道鑄,心是理成,自然而然,毫無所為, -生知安行之聖人。二曰性分語。理所當然,職所當盡,務滿分量,斃而後已,學知利行之 -聖人。 -  三曰是非語。為善者為君子,為惡者為小人,以勸賢者。四曰利害語。作善降之百祥 -,作不善降之百殃,以策眾人。五曰權變語。托詞畫策以應務。六曰威令語。五刑以防淫 -。七曰無奈語。五兵以禁亂。此語之外,皆亂道之談也,學者之所務辨也。 -  疏狂之人多豪興,其詩雄,讀之令人灑落,有起懦之功。 -  清逸之人多芳興,其詩俊,讀之令人自愛,脫粗鄙之態。沉潛之人多幽興,其詩淡, -讀之令人寂靜,動深遠之思。沖淡之人多雅興,其詩老,讀之令人平易,消童稚之氣。 -  愁紅怨綠,是兒女語,對白抽黃,是騷墨語,歎老嗟卑,是寒酸語,慕羶附腥,是乞 -丐語。 -  艱語深辭,險句怪字,文章之妖而道之賊也,後學之殃而木之災也。路本平,而山溪 -之,日月本明,而雲霧之。無異理,有異言,無深情,有深語。是人不誡,而是書不焚, -有世教之責者之罪也。若曰其人學博而識深,意奧而語奇,然則孔、孟之言淺鄙甚矣。 -  聖人不作無用文章,其論道則為有德之言,其論事則為有見之言,其敘述歌詠則為有 -益世教之言。 -  真字要如聖人燕居危坐,端莊而和氣自在,草字要如聖人應物,進退存亡,辭受取予 -,變化不測,因事異施而不失其中。 -  要之同歸於任其自然,不事造作。 -  聖人作經,有指時物者,有指時事者,有指方事者,有論心事者,當時精意與身往矣 -。話言所遺,不能寫心之十一,而儒者以後世之事物,一己之意見度之,不得則強為訓詁 -。嗚呼! -  漢宋諸儒不生,則先聖經旨後世誠不得十一,然以牽合附會而失其自然之旨者,亦不 -少也。 -  聖人垂世則為持衡之言,救世則有偏重之言。持衡之言達之天下萬世者也,可以示極 -,偏重之言因事因人者也,可以矯枉。 -  而不善讀書者,每以偏重之言垂訓,亂道也夫!誣聖也夫! -  言語者,聖人之糟粕也。聖人不可言之妙,非言語所能形容。漢宋以來,解經諸儒泥 -文拘字,破碎牽合,失聖人天然自得之趣,晦天下本然自在之道,不近人情,不合物理, -使後世學者無所適從。且其負一世之高明,繫千古之重望,遂成百世不刊之典。後學者豈 -無千慮一得,發前聖之心傳,而救先儒之小失?然一下筆開喙,腐儒俗士不辨是非,噬指 -而驚,掩口而笑,且曰:「茲先哲之明訓也,安得妄議?」噫!此誠信而好古之義也。泥 -傳離經,勉從強信,是先儒阿意曲從之子也。昔朱子將終,尚改誠意注說,使朱子先一年 -而卒,則誠意章必非精到之語;使天假朱子數年,所改寧止誠意章哉? -  聖人之言,簡淡明直中有無窮之味,大羹玄酒也;賢人之言,一見便透,而理趣充溢 -,讀之使人豁然,膾炙珍羞也。 -  聖人終日信口開闔,千言萬語,隨事問答,無一字不可為訓。賢者深沉而思,稽留而 -應,平氣而言,易心而語,始免於過。出此二者,而恣口放言,皆狂迷醉夢語也,終日言 -無一字近道,何以多為? -  詩低處在覓故事尋對頭,高處在寫胸中自得之趣,說眼前見在之景 -  自孔子時便說「史不闕文」,又曰「文勝質則史」,把史字就作了一偽字看。如今讀 -史只看他治亂興亡,足為法戒,至於是非真偽,總是除外底。譬之聽戲文一般,何須問他 -真假,只是足為感創,便於風化有關。但有一樁可恨處,只緣當真看,把偽底當真,只緣 -當偽看,又把真底當偽。這裡便宜了多少小人,虧枉了多少君子。 -  詩辭要如哭笑,發乎情之不容已,則真切而有味。果真矣,不必較工拙。後世只要學 -詩辭,然工而失真,非詩辭之本意矣。 -  故詩辭以情真切、語自然者為第一。 -  古人無無益之文章,其明道也不得不形而為言,其發言也不得不成而為文。所謂因文 -見道者也,其文之古今工拙無論。 -  唐宋以來,漸尚文章,然猶以道飾文,意雖非古,而文猶可傳,後世則專為文章矣。 -工其辭語,涣其波瀾,煉其字句,怪其機軸,深其意指,而道則破碎支離,晦盲否塞矣, -是道之賊也。 -  而無識者猶以文章崇尚之,哀哉! -  文章有八要,簡、切、明、盡、正、大、溫、雅。不簡則失之繁冗,不切則失之浮泛 -,不明則失之含糊,不盡則失之疏遺,不正則理不足以服人,不大則失冠冕之體,不溫則 -暴厲刻削,不雅則鄙陋淺俗。廟堂文要有天覆地載,山林文要有仙風道骨,征伐文要有吞 -象食牛,奏對文要有忠肝義膽。諸如此類,可以例求。 -  學者讀書只替前人解說,全不向自家身上照一照。譬之小郎替人負貨,努盡筋力,覓 -得幾文錢,更不知此中是何細軟珍重。 -  《太玄》雖終身不看亦可。 -  自鄉舉裡選之法廢,而後世率尚詞章。唐以詩賦求真才,更為可歎。宋以經義取士, -而我朝因之。夫取士以文,已為言舉人矣。然猶曰:言,心聲也。因文可得其心,因心可 -知其人。 -  其文爽亮者,其心必光明,而察其粗淺之病;其文勁直者,其人必剛方,而察其豪悍 -之病;其文藻麗者,其人必文采,而察其靡曼之病;其文莊重者,其人必端嚴,而察其寥 -落之病;其文飄逸者,其人必流動,而察其浮薄之病;其文典雅者,其人必質實,而察其 -樸鈍之病;其文雄暢者,其人必揮霍,而察其弛跅之病;其文溫潤者,其人必和順,而察 -其巽軟之病;其文簡潔者,其人必修謹,而察其拘攣之病;其文深沉者,其人必精細,而 -察其陰險之病;其文沖淡者,其人必恬雅,而察其懶散之病;其文變化者,其人必圓通, -而察其機械之病;其文奇巧者,其人必聰明,而察其怪誕之病;其文蒼老者,其人必不俗 -,而察其迂腐之病。有文之長,而無文之病,則其人可知矣,文即未純,必不可棄。今也 -但取其文而已。見欲深邃,調欲新脫,意欲奇特,句欲飣餖,鍛鍊欲工,態度欲俏,粉黛 -欲濃,面皮欲厚。是以業舉之家,棄理而工辭,忘我而徇世,剽竊湊泊,全無自己神情, -口語筆端,迎合主司好尚。沿習之調既成,本然之天不露,而校文者亦迷於世調,取其文 -而忘其人,何異暗摸而辨蒼黃,隔壁而察妍媸?欲得真才,豈不難哉? -  隆慶戊辰,永城胡君格誠登第,三場文字皆塗抹過半,西安鄭給諫大經所取士也,人 -皆笑之。後餘閱其卷,乃歎曰:「塗抹即盡,棄擲不能,何者?其荒疏狂誕,繩之以舉業 -,自當落地,而一段雄偉器度、爽朗精神,英英然一世豪傑如對其面,其人之可收,自在 -文章之外耳。胡君不羈之才,難挫之氣,吞牛食象,倒海衝山,自非尋常庸眾人。惜也! -以不合世調,竟使沉淪。」餘因拈出以為取士者不專在數篇工拙,當得之牝牡驪黃之外也。 -  萬曆丙戌而後,舉業文字如晦夜濃陰封地穴,閉目蒙被滅燈光;又如墓中人說鬼話, -顛狂人說風話,伏章人說天話,又如楞嚴孔雀,咒語真言,世道之大妖也。其名家云:「 -文到人不省得處才中,到自家不省得處才高中。」不重其法,人心日趨於魑魅魍魎矣。或 -曰:「文章關甚麼人心世道?」嗟嗟!此醉生夢死語也。國家以文取士,非取其文,因文 -而知其心,因心而知其人,故取之耳。言若此矣,謂其人曰光明正大之君子,吾不信也。 -且錄其人曰中式,進呈其文曰中式之文,試問其式安在乃? -  高皇帝所謂文理平通,明順典實者也,今以編造晦澀妄誕放恣之辭為式,悖典甚矣。 -今之選試官者,必以高科,其高科所中,便非明順典實之文。其典試也,安得不黜明順典 -實之士乎?人心巧偽,皆此文為之祟耳。噫!是言也,向誰人道?不過仰屋長太息而已。 -使禮曹禮科得正大光明、執持風力之士,無所畏徇,重一懲創,一兩科後,無劉幾矣。 -  《左傳》、《國語,、《戰國策》,春秋之時文也,未嘗見春秋時人學三代。《史記 -》、《漢書》,西漢之時文也,未嘗見班、馬學《國》、《左》。今之時文,安知非後世 -之古文?而不擬《國》、《左》,則擬《史》、《漢》,陋矣,人之棄己而襲人也!六經 -四書,三代以上之古文也,而不擬者何?習見也。甚矣人之厭常而喜異也!餘以為文貴理 -勝,得理,何古何今?苟理不如人而摹仿於句字之間,以希博洽之譽,有識者恥之。 -  詩家無拘鄙之氣,然令人放曠;詞家無暴戾之氣,然令人淫靡。道學自有泰而不驕、 -樂而不淫氣象,雖寄意於詩詞,而綴景言情皆自義理中流出,所謂吟風弄月,有「吾與點 -也」之意。 - - - - - - - - - - - - - -*** END OF THE PROJECT GUTENBERG EBOOK 呻吟語 *** - - - - -Updated editions will replace the previous one—the old editions will -be renamed. - -Creating the works from print editions not protected by U.S. copyright -law means that no one owns a United States copyright in these works, -so the Foundation (and you!) can copy and distribute it in the United -States without permission and without paying copyright -royalties. Special rules, set forth in the General Terms of Use part -of this license, apply to copying and distributing Project -Gutenberg™ electronic works to protect the PROJECT GUTENBERG™ -concept and trademark. Project Gutenberg is a registered trademark, -and may not be used if you charge for an eBook, except by following -the terms of the trademark license, including paying royalties for use -of the Project Gutenberg trademark. If you do not charge anything for -copies of this eBook, complying with the trademark license is very -easy. You may use this eBook for nearly any purpose such as creation -of derivative works, reports, performances and research. Project -Gutenberg eBooks may be modified and printed and given away—you may -do practically ANYTHING in the United States with eBooks not protected -by U.S. copyright law. Redistribution is subject to the trademark -license, especially commercial redistribution. - - -START: FULL LICENSE - -THE FULL PROJECT GUTENBERG LICENSE - -PLEASE READ THIS BEFORE YOU DISTRIBUTE OR USE THIS WORK - -To protect the Project Gutenberg™ mission of promoting the free -distribution of electronic works, by using or distributing this work -(or any other work associated in any way with the phrase “Project -Gutenberg”), you agree to comply with all the terms of the Full -Project Gutenberg™ License available with this file or online at -www.gutenberg.org/license. - -Section 1. General Terms of Use and Redistributing Project Gutenberg™ -electronic works - -1.A. By reading or using any part of this Project Gutenberg™ -electronic work, you indicate that you have read, understand, agree to -and accept all the terms of this license and intellectual property -(trademark/copyright) agreement. If you do not agree to abide by all -the terms of this agreement, you must cease using and return or -destroy all copies of Project Gutenberg™ electronic works in your -possession. If you paid a fee for obtaining a copy of or access to a -Project Gutenberg™ electronic work and you do not agree to be bound -by the terms of this agreement, you may obtain a refund from the person -or entity to whom you paid the fee as set forth in paragraph 1.E.8. - -1.B. “Project Gutenberg” is a registered trademark. It may only be -used on or associated in any way with an electronic work by people who -agree to be bound by the terms of this agreement. There are a few -things that you can do with most Project Gutenberg™ electronic works -even without complying with the full terms of this agreement. See -paragraph 1.C below. There are a lot of things you can do with Project -Gutenberg™ electronic works if you follow the terms of this -agreement and help preserve free future access to Project Gutenberg™ -electronic works. See paragraph 1.E below. - -1.C. The Project Gutenberg Literary Archive Foundation (“the -Foundation” or PGLAF), owns a compilation copyright in the collection -of Project Gutenberg™ electronic works. Nearly all the individual -works in the collection are in the public domain in the United -States. If an individual work is unprotected by copyright law in the -United States and you are located in the United States, we do not -claim a right to prevent you from copying, distributing, performing, -displaying or creating derivative works based on the work as long as -all references to Project Gutenberg are removed. Of course, we hope -that you will support the Project Gutenberg™ mission of promoting -free access to electronic works by freely sharing Project Gutenberg™ -works in compliance with the terms of this agreement for keeping the -Project Gutenberg™ name associated with the work. You can easily -comply with the terms of this agreement by keeping this work in the -same format with its attached full Project Gutenberg™ License when -you share it without charge with others. - -1.D. The copyright laws of the place where you are located also govern -what you can do with this work. Copyright laws in most countries are -in a constant state of change. If you are outside the United States, -check the laws of your country in addition to the terms of this -agreement before downloading, copying, displaying, performing, -distributing or creating derivative works based on this work or any -other Project Gutenberg™ work. The Foundation makes no -representations concerning the copyright status of any work in any -country other than the United States. - -1.E. Unless you have removed all references to Project Gutenberg: - -1.E.1. The following sentence, with active links to, or other -immediate access to, the full Project Gutenberg™ License must appear -prominently whenever any copy of a Project Gutenberg™ work (any work -on which the phrase “Project Gutenberg” appears, or with which the -phrase “Project Gutenberg” is associated) is accessed, displayed, -performed, viewed, copied or distributed: - - This eBook is for the use of anyone anywhere in the United States and most - other parts of the world at no cost and with almost no restrictions - whatsoever. You may copy it, give it away or re-use it under the terms - of the Project Gutenberg License included with this eBook or online - at www.gutenberg.org. If you - are not located in the United States, you will have to check the laws - of the country where you are located before using this eBook. - -1.E.2. If an individual Project Gutenberg™ electronic work is -derived from texts not protected by U.S. copyright law (does not -contain a notice indicating that it is posted with permission of the -copyright holder), the work can be copied and distributed to anyone in -the United States without paying any fees or charges. If you are -redistributing or providing access to a work with the phrase “Project -Gutenberg” associated with or appearing on the work, you must comply -either with the requirements of paragraphs 1.E.1 through 1.E.7 or -obtain permission for the use of the work and the Project Gutenberg™ -trademark as set forth in paragraphs 1.E.8 or 1.E.9. - -1.E.3. If an individual Project Gutenberg™ electronic work is posted -with the permission of the copyright holder, your use and distribution -must comply with both paragraphs 1.E.1 through 1.E.7 and any -additional terms imposed by the copyright holder. Additional terms -will be linked to the Project Gutenberg™ License for all works -posted with the permission of the copyright holder found at the -beginning of this work. - -1.E.4. Do not unlink or detach or remove the full Project Gutenberg™ -License terms from this work, or any files containing a part of this -work or any other work associated with Project Gutenberg™. - -1.E.5. Do not copy, display, perform, distribute or redistribute this -electronic work, or any part of this electronic work, without -prominently displaying the sentence set forth in paragraph 1.E.1 with -active links or immediate access to the full terms of the Project -Gutenberg™ License. - -1.E.6. You may convert to and distribute this work in any binary, -compressed, marked up, nonproprietary or proprietary form, including -any word processing or hypertext form. However, if you provide access -to or distribute copies of a Project Gutenberg™ work in a format -other than “Plain Vanilla ASCII” or other format used in the official -version posted on the official Project Gutenberg™ website -(www.gutenberg.org), you must, at no additional cost, fee or expense -to the user, provide a copy, a means of exporting a copy, or a means -of obtaining a copy upon request, of the work in its original “Plain -Vanilla ASCII” or other form. Any alternate format must include the -full Project Gutenberg™ License as specified in paragraph 1.E.1. - -1.E.7. Do not charge a fee for access to, viewing, displaying, -performing, copying or distributing any Project Gutenberg™ works -unless you comply with paragraph 1.E.8 or 1.E.9. - -1.E.8. You may charge a reasonable fee for copies of or providing -access to or distributing Project Gutenberg™ electronic works -provided that: - - • You pay a royalty fee of 20% of the gross profits you derive from - the use of Project Gutenberg™ works calculated using the method - you already use to calculate your applicable taxes. The fee is owed - to the owner of the Project Gutenberg™ trademark, but he has - agreed to donate royalties under this paragraph to the Project - Gutenberg Literary Archive Foundation. Royalty payments must be paid - within 60 days following each date on which you prepare (or are - legally required to prepare) your periodic tax returns. Royalty - payments should be clearly marked as such and sent to the Project - Gutenberg Literary Archive Foundation at the address specified in - Section 4, “Information about donations to the Project Gutenberg - Literary Archive Foundation.” - - • You provide a full refund of any money paid by a user who notifies - you in writing (or by e-mail) within 30 days of receipt that s/he - does not agree to the terms of the full Project Gutenberg™ - License. You must require such a user to return or destroy all - copies of the works possessed in a physical medium and discontinue - all use of and all access to other copies of Project Gutenberg™ - works. - - • You provide, in accordance with paragraph 1.F.3, a full refund of - any money paid for a work or a replacement copy, if a defect in the - electronic work is discovered and reported to you within 90 days of - receipt of the work. - - • You comply with all other terms of this agreement for free - distribution of Project Gutenberg™ works. - - -1.E.9. If you wish to charge a fee or distribute a Project -Gutenberg™ electronic work or group of works on different terms than -are set forth in this agreement, you must obtain permission in writing -from the Project Gutenberg Literary Archive Foundation, the manager of -the Project Gutenberg™ trademark. Contact the Foundation as set -forth in Section 3 below. - -1.F. - -1.F.1. Project Gutenberg volunteers and employees expend considerable -effort to identify, do copyright research on, transcribe and proofread -works not protected by U.S. copyright law in creating the Project -Gutenberg™ collection. Despite these efforts, Project Gutenberg™ -electronic works, and the medium on which they may be stored, may -contain “Defects,” such as, but not limited to, incomplete, inaccurate -or corrupt data, transcription errors, a copyright or other -intellectual property infringement, a defective or damaged disk or -other medium, a computer virus, or computer codes that damage or -cannot be read by your equipment. - -1.F.2. LIMITED WARRANTY, DISCLAIMER OF DAMAGES - Except for the “Right -of Replacement or Refund” described in paragraph 1.F.3, the Project -Gutenberg Literary Archive Foundation, the owner of the Project -Gutenberg™ trademark, and any other party distributing a Project -Gutenberg™ electronic work under this agreement, disclaim all -liability to you for damages, costs and expenses, including legal -fees. YOU AGREE THAT YOU HAVE NO REMEDIES FOR NEGLIGENCE, STRICT -LIABILITY, BREACH OF WARRANTY OR BREACH OF CONTRACT EXCEPT THOSE -PROVIDED IN PARAGRAPH 1.F.3. YOU AGREE THAT THE FOUNDATION, THE -TRADEMARK OWNER, AND ANY DISTRIBUTOR UNDER THIS AGREEMENT WILL NOT BE -LIABLE TO YOU FOR ACTUAL, DIRECT, INDIRECT, CONSEQUENTIAL, PUNITIVE OR -INCIDENTAL DAMAGES EVEN IF YOU GIVE NOTICE OF THE POSSIBILITY OF SUCH -DAMAGE. - -1.F.3. LIMITED RIGHT OF REPLACEMENT OR REFUND - If you discover a -defect in this electronic work within 90 days of receiving it, you can -receive a refund of the money (if any) you paid for it by sending a -written explanation to the person you received the work from. If you -received the work on a physical medium, you must return the medium -with your written explanation. The person or entity that provided you -with the defective work may elect to provide a replacement copy in -lieu of a refund. If you received the work electronically, the person -or entity providing it to you may choose to give you a second -opportunity to receive the work electronically in lieu of a refund. If -the second copy is also defective, you may demand a refund in writing -without further opportunities to fix the problem. - -1.F.4. Except for the limited right of replacement or refund set forth -in paragraph 1.F.3, this work is provided to you ‘AS-IS’, WITH NO -OTHER WARRANTIES OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT -LIMITED TO WARRANTIES OF MERCHANTABILITY OR FITNESS FOR ANY PURPOSE. - -1.F.5. Some states do not allow disclaimers of certain implied -warranties or the exclusion or limitation of certain types of -damages. If any disclaimer or limitation set forth in this agreement -violates the law of the state applicable to this agreement, the -agreement shall be interpreted to make the maximum disclaimer or -limitation permitted by the applicable state law. The invalidity or -unenforceability of any provision of this agreement shall not void the -remaining provisions. - -1.F.6. INDEMNITY - You agree to indemnify and hold the Foundation, the -trademark owner, any agent or employee of the Foundation, anyone -providing copies of Project Gutenberg™ electronic works in -accordance with this agreement, and any volunteers associated with the -production, promotion and distribution of Project Gutenberg™ -electronic works, harmless from all liability, costs and expenses, -including legal fees, that arise directly or indirectly from any of -the following which you do or cause to occur: (a) distribution of this -or any Project Gutenberg™ work, (b) alteration, modification, or -additions or deletions to any Project Gutenberg™ work, and (c) any -Defect you cause. - -Section 2. Information about the Mission of Project Gutenberg™ - -Project Gutenberg™ is synonymous with the free distribution of -electronic works in formats readable by the widest variety of -computers including obsolete, old, middle-aged and new computers. It -exists because of the efforts of hundreds of volunteers and donations -from people in all walks of life. - -Volunteers and financial support to provide volunteers with the -assistance they need are critical to reaching Project Gutenberg™’s -goals and ensuring that the Project Gutenberg™ collection will -remain freely available for generations to come. In 2001, the Project -Gutenberg Literary Archive Foundation was created to provide a secure -and permanent future for Project Gutenberg™ and future -generations. To learn more about the Project Gutenberg Literary -Archive Foundation and how your efforts and donations can help, see -Sections 3 and 4 and the Foundation information page at www.gutenberg.org. - -Section 3. Information about the Project Gutenberg Literary Archive Foundation - -The Project Gutenberg Literary Archive Foundation is a non-profit -501(c)(3) educational corporation organized under the laws of the -state of Mississippi and granted tax exempt status by the Internal -Revenue Service. The Foundation’s EIN or federal tax identification -number is 64-6221541. Contributions to the Project Gutenberg Literary -Archive Foundation are tax deductible to the full extent permitted by -U.S. federal laws and your state’s laws. - -The Foundation’s business office is located at 809 North 1500 West, -Salt Lake City, UT 84116, (801) 596-1887. Email contact links and up -to date contact information can be found at the Foundation’s website -and official page at www.gutenberg.org/contact - -Section 4. Information about Donations to the Project Gutenberg -Literary Archive Foundation - -Project Gutenberg™ depends upon and cannot survive without widespread -public support and donations to carry out its mission of -increasing the number of public domain and licensed works that can be -freely distributed in machine-readable form accessible by the widest -array of equipment including outdated equipment. Many small donations -($1 to $5,000) are particularly important to maintaining tax exempt -status with the IRS. - -The Foundation is committed to complying with the laws regulating -charities and charitable donations in all 50 states of the United -States. Compliance requirements are not uniform and it takes a -considerable effort, much paperwork and many fees to meet and keep up -with these requirements. We do not solicit donations in locations -where we have not received written confirmation of compliance. To SEND -DONATIONS or determine the status of compliance for any particular state -visit www.gutenberg.org/donate. - -While we cannot and do not solicit contributions from states where we -have not met the solicitation requirements, we know of no prohibition -against accepting unsolicited donations from donors in such states who -approach us with offers to donate. - -International donations are gratefully accepted, but we cannot make -any statements concerning tax treatment of donations received from -outside the United States. U.S. laws alone swamp our small staff. - -Please check the Project Gutenberg web pages for current donation -methods and addresses. Donations are accepted in a number of other -ways including checks, online payments and credit card donations. To -donate, please visit: www.gutenberg.org/donate. - -Section 5. General Information About Project Gutenberg™ electronic works - -Professor Michael S. Hart was the originator of the Project -Gutenberg™ concept of a library of electronic works that could be -freely shared with anyone. For forty years, he produced and -distributed Project Gutenberg™ eBooks with only a loose network of -volunteer support. - -Project Gutenberg™ eBooks are often created from several printed -editions, all of which are confirmed as not protected by copyright in -the U.S. unless a copyright notice is included. Thus, we do not -necessarily keep eBooks in compliance with any particular paper -edition. - -Most people start at our website which has the main PG search -facility: www.gutenberg.org. - -This website includes information about Project Gutenberg™, -including how to make donations to the Project Gutenberg Literary -Archive Foundation, how to help produce our new eBooks, and how to -subscribe to our email newsletter to hear about new eBooks. - diff --git a/backend/reconcile/tests/resources/pride_and_prejudice.txt b/backend/reconcile/tests/resources/pride_and_prejudice.txt deleted file mode 100644 index 2dd9de33..00000000 --- a/backend/reconcile/tests/resources/pride_and_prejudice.txt +++ /dev/null @@ -1,14910 +0,0 @@ -prThe Project Gutenberg eBook of Pride and Prejudice - -This ebook is for the use of anyone anywhere in the United States and -most other parts of the world at no cost and with almost no restrictions -whatsoever. You may copy it, give it away or re-use it under the terms -of the Project Gutenberg License included with this ebook or online -at www.gutenberg.org. If you are not located in the United States, -you will have to check the laws of the country where you are located -before using this eBook. - -Title: Pride and Prejudice - -Author: Jane Austen - -Release date: June 1, 1998 [eBook #1342] - Most recently updated: June 17, 2024 - -Language: English - -Credits: Chuck Greif and the Online Distributed Proofreading Team at http://www.pgdp.net (This file was produced from images available at The Internet Archive) - - -*** START OF THE PROJECT GUTENBERG EBOOK PRIDE AND PREJUDICE *** - - - - - [Illustration: - - GEORGE ALLEN - PUBLISHER - - 156 CHARING CROSS ROAD - LONDON - - RUSKIN HOUSE - ] - - [Illustration: - - _Reading Jane’s Letters._ _Chap 34._ - ] - - - - - PRIDE. - and - PREJUDICE - - by - Jane Austen, - - with a Preface by - George Saintsbury - and - Illustrations by - Hugh Thomson - - [Illustration: 1894] - - Ruskin 156. Charing - House. Cross Road. - - London - George Allen. - - - - - CHISWICK PRESS:--CHARLES WHITTINGHAM AND CO. - TOOKS COURT, CHANCERY LANE, LONDON. - - - - - [Illustration: - - _To J. Comyns Carr - in acknowledgment of all I - owe to his friendship and - advice, these illustrations are - gratefully inscribed_ - - _Hugh Thomson_ - ] - - - - -PREFACE. - -[Illustration] - - -_Walt Whitman has somewhere a fine and just distinction between “loving -by allowance” and “loving with personal love.” This distinction applies -to books as well as to men and women; and in the case of the not very -numerous authors who are the objects of the personal affection, it -brings a curious consequence with it. There is much more difference as -to their best work than in the case of those others who are loved “by -allowance” by convention, and because it is felt to be the right and -proper thing to love them. And in the sect--fairly large and yet -unusually choice--of Austenians or Janites, there would probably be -found partisans of the claim to primacy of almost every one of the -novels. To some the delightful freshness and humour of_ Northanger -Abbey, _its completeness, finish, and_ entrain, _obscure the undoubted -critical facts that its scale is small, and its scheme, after all, that -of burlesque or parody, a kind in which the first rank is reached with -difficulty._ Persuasion, _relatively faint in tone, and not enthralling -in interest, has devotees who exalt above all the others its exquisite -delicacy and keeping. The catastrophe of_ Mansfield Park _is admittedly -theatrical, the hero and heroine are insipid, and the author has almost -wickedly destroyed all romantic interest by expressly admitting that -Edmund only took Fanny because Mary shocked him, and that Fanny might -very likely have taken Crawford if he had been a little more assiduous; -yet the matchless rehearsal-scenes and the characters of Mrs. Norris and -others have secured, I believe, a considerable party for it._ Sense and -Sensibility _has perhaps the fewest out-and-out admirers; but it does -not want them._ - -_I suppose, however, that the majority of at least competent votes -would, all things considered, be divided between_ Emma _and the present -book; and perhaps the vulgar verdict (if indeed a fondness for Miss -Austen be not of itself a patent of exemption from any possible charge -of vulgarity) would go for_ Emma. _It is the larger, the more varied, the -more popular; the author had by the time of its composition seen rather -more of the world, and had improved her general, though not her most -peculiar and characteristic dialogue; such figures as Miss Bates, as the -Eltons, cannot but unite the suffrages of everybody. On the other hand, -I, for my part, declare for_ Pride and Prejudice _unhesitatingly. It -seems to me the most perfect, the most characteristic, the most -eminently quintessential of its author’s works; and for this contention -in such narrow space as is permitted to me, I propose here to show -cause._ - -_In the first place, the book (it may be barely necessary to remind the -reader) was in its first shape written very early, somewhere about 1796, -when Miss Austen was barely twenty-one; though it was revised and -finished at Chawton some fifteen years later, and was not published till -1813, only four years before her death. I do not know whether, in this -combination of the fresh and vigorous projection of youth, and the -critical revision of middle life, there may be traced the distinct -superiority in point of construction, which, as it seems to me, it -possesses over all the others. The plot, though not elaborate, is almost -regular enough for Fielding; hardly a character, hardly an incident -could be retrenched without loss to the story. The elopement of Lydia -and Wickham is not, like that of Crawford and Mrs. Rushworth, a_ coup de -théâtre; _it connects itself in the strictest way with the course of the -story earlier, and brings about the denouement with complete propriety. -All the minor passages--the loves of Jane and Bingley, the advent of Mr. -Collins, the visit to Hunsford, the Derbyshire tour--fit in after the -same unostentatious, but masterly fashion. There is no attempt at the -hide-and-seek, in-and-out business, which in the transactions between -Frank Churchill and Jane Fairfax contributes no doubt a good deal to the -intrigue of_ Emma, _but contributes it in a fashion which I do not think -the best feature of that otherwise admirable book. Although Miss Austen -always liked something of the misunderstanding kind, which afforded her -opportunities for the display of the peculiar and incomparable talent to -be noticed presently, she has been satisfied here with the perfectly -natural occasions provided by the false account of Darcy’s conduct given -by Wickham, and by the awkwardness (arising with equal naturalness) from -the gradual transformation of Elizabeth’s own feelings from positive -aversion to actual love. I do not know whether the all-grasping hand of -the playwright has ever been laid upon_ Pride and Prejudice; _and I dare -say that, if it were, the situations would prove not startling or -garish enough for the footlights, the character-scheme too subtle and -delicate for pit and gallery. But if the attempt were made, it would -certainly not be hampered by any of those loosenesses of construction, -which, sometimes disguised by the conveniences of which the novelist can -avail himself, appear at once on the stage._ - -_I think, however, though the thought will doubtless seem heretical to -more than one school of critics, that construction is not the highest -merit, the choicest gift, of the novelist. It sets off his other gifts -and graces most advantageously to the critical eye; and the want of it -will sometimes mar those graces--appreciably, though not quite -consciously--to eyes by no means ultra-critical. But a very badly-built -novel which excelled in pathetic or humorous character, or which -displayed consummate command of dialogue--perhaps the rarest of all -faculties--would be an infinitely better thing than a faultless plot -acted and told by puppets with pebbles in their mouths. And despite the -ability which Miss Austen has shown in working out the story, I for one -should put_ Pride and Prejudice _far lower if it did not contain what -seem to me the very masterpieces of Miss Austen’s humour and of her -faculty of character-creation--masterpieces who may indeed admit John -Thorpe, the Eltons, Mrs. Norris, and one or two others to their company, -but who, in one instance certainly, and perhaps in others, are still -superior to them._ - -_The characteristics of Miss Austen’s humour are so subtle and delicate -that they are, perhaps, at all times easier to apprehend than to -express, and at any particular time likely to be differently -apprehended by different persons. To me this humour seems to possess a -greater affinity, on the whole, to that of Addison than to any other of -the numerous species of this great British genus. The differences of -scheme, of time, of subject, of literary convention, are, of course, -obvious enough; the difference of sex does not, perhaps, count for much, -for there was a distinctly feminine element in “Mr. Spectator,” and in -Jane Austen’s genius there was, though nothing mannish, much that was -masculine. But the likeness of quality consists in a great number of -common subdivisions of quality--demureness, extreme minuteness of touch, -avoidance of loud tones and glaring effects. Also there is in both a -certain not inhuman or unamiable cruelty. It is the custom with those -who judge grossly to contrast the good nature of Addison with the -savagery of Swift, the mildness of Miss Austen with the boisterousness -of Fielding and Smollett, even with the ferocious practical jokes that -her immediate predecessor, Miss Burney, allowed without very much -protest. Yet, both in Mr. Addison and in Miss Austen there is, though a -restrained and well-mannered, an insatiable and ruthless delight in -roasting and cutting up a fool. A man in the early eighteenth century, -of course, could push this taste further than a lady in the early -nineteenth; and no doubt Miss Austen’s principles, as well as her heart, -would have shrunk from such things as the letter from the unfortunate -husband in the_ Spectator, _who describes, with all the gusto and all the -innocence in the world, how his wife and his friend induce him to play -at blind-man’s-buff. But another_ Spectator _letter--that of the damsel -of fourteen who wishes to marry Mr. Shapely, and assures her selected -Mentor that “he admires your_ Spectators _mightily”--might have been -written by a rather more ladylike and intelligent Lydia Bennet in the -days of Lydia’s great-grandmother; while, on the other hand, some (I -think unreasonably) have found “cynicism” in touches of Miss Austen’s -own, such as her satire of Mrs. Musgrove’s self-deceiving regrets over -her son. But this word “cynical” is one of the most misused in the -English language, especially when, by a glaring and gratuitous -falsification of its original sense, it is applied, not to rough and -snarling invective, but to gentle and oblique satire. If cynicism means -the perception of “the other side,” the sense of “the accepted hells -beneath,” the consciousness that motives are nearly always mixed, and -that to seem is not identical with to be--if this be cynicism, then -every man and woman who is not a fool, who does not care to live in a -fool’s paradise, who has knowledge of nature and the world and life, is -a cynic. And in that sense Miss Austen certainly was one. She may even -have been one in the further sense that, like her own Mr. Bennet, she -took an epicurean delight in dissecting, in displaying, in setting at -work her fools and her mean persons. I think she did take this delight, -and I do not think at all the worse of her for it as a woman, while she -was immensely the better for it as an artist._ - -_In respect of her art generally, Mr. Goldwin Smith has truly observed -that “metaphor has been exhausted in depicting the perfection of it, -combined with the narrowness of her field;” and he has justly added that -we need not go beyond her own comparison to the art of a miniature -painter. To make this latter observation quite exact we must not use the -term miniature in its restricted sense, and must think rather of Memling -at one end of the history of painting and Meissonier at the other, than -of Cosway or any of his kind. And I am not so certain that I should -myself use the word “narrow” in connection with her. If her world is a -microcosm, the cosmic quality of it is at least as eminent as the -littleness. She does not touch what she did not feel herself called to -paint; I am not so sure that she could not have painted what she did not -feel herself called to touch. It is at least remarkable that in two very -short periods of writing--one of about three years, and another of not -much more than five--she executed six capital works, and has not left a -single failure. It is possible that the romantic paste in her -composition was defective: we must always remember that hardly -anybody born in her decade--that of the eighteenth-century -seventies--independently exhibited the full romantic quality. Even Scott -required hill and mountain and ballad, even Coleridge metaphysics and -German to enable them to chip the classical shell. Miss Austen was an -English girl, brought up in a country retirement, at the time when -ladies went back into the house if there was a white frost which might -pierce their kid shoes, when a sudden cold was the subject of the -gravest fears, when their studies, their ways, their conduct were -subject to all those fantastic limits and restrictions against which -Mary Wollstonecraft protested with better general sense than particular -taste or judgment. Miss Austen, too, drew back when the white frost -touched her shoes; but I think she would have made a pretty good journey -even in a black one._ - -_For if her knowledge was not very extended, she knew two things which -only genius knows. The one was humanity, and the other was art. On the -first head she could not make a mistake; her men, though limited, are -true, and her women are, in the old sense, “absolute.” As to art, if she -has never tried idealism, her realism is real to a degree which makes -the false realism of our own day look merely dead-alive. Take almost any -Frenchman, except the late M. de Maupassant, and watch him laboriously -piling up strokes in the hope of giving a complete impression. You get -none; you are lucky if, discarding two-thirds of what he gives, you can -shape a real impression out of the rest. But with Miss Austen the -myriad, trivial, unforced strokes build up the picture like magic. -Nothing is false; nothing is superfluous. When (to take the present book -only) Mr. Collins changed his mind from Jane to Elizabeth “while Mrs. -Bennet was stirring the fire” (and we know_ how _Mrs. Bennet would have -stirred the fire), when Mr. Darcy “brought his coffee-cup back_ -himself,” _the touch in each case is like that of Swift--“taller by the -breadth of my nail”--which impressed the half-reluctant Thackeray with -just and outspoken admiration. Indeed, fantastic as it may seem, I -should put Miss Austen as near to Swift in some ways, as I have put her -to Addison in others._ - -_This Swiftian quality appears in the present novel as it appears -nowhere else in the character of the immortal, the ineffable Mr. -Collins. Mr. Collins is really_ great; _far greater than anything Addison -ever did, almost great enough for Fielding or for Swift himself. It has -been said that no one ever was like him. But in the first place,_ he -_was like him; he is there--alive, imperishable, more real than hundreds -of prime ministers and archbishops, of “metals, semi-metals, and -distinguished philosophers.” In the second place, it is rash, I think, -to conclude that an actual Mr. Collins was impossible or non-existent at -the end of the eighteenth century. It is very interesting that we -possess, in this same gallery, what may be called a spoiled first -draught, or an unsuccessful study of him, in John Dashwood. The -formality, the under-breeding, the meanness, are there; but the portrait -is only half alive, and is felt to be even a little unnatural. Mr. -Collins is perfectly natural, and perfectly alive. In fact, for all the -“miniature,” there is something gigantic in the way in which a certain -side, and more than one, of humanity, and especially eighteenth-century -humanity, its Philistinism, its well-meaning but hide-bound morality, -its formal pettiness, its grovelling respect for rank, its materialism, -its selfishness, receives exhibition. I will not admit that one speech -or one action of this inestimable man is incapable of being reconciled -with reality, and I should not wonder if many of these words and actions -are historically true._ - -_But the greatness of Mr. Collins could not have been so satisfactorily -exhibited if his creatress had not adjusted so artfully to him the -figures of Mr. Bennet and of Lady Catherine de Bourgh. The latter, like -Mr. Collins himself, has been charged with exaggeration. There is, -perhaps, a very faint shade of colour for the charge; but it seems to me -very faint indeed. Even now I do not think that it would be impossible -to find persons, especially female persons, not necessarily of noble -birth, as overbearing, as self-centred, as neglectful of good manners, -as Lady Catherine. A hundred years ago, an earl’s daughter, the Lady -Powerful (if not exactly Bountiful) of an out-of-the-way country parish, -rich, long out of marital authority, and so forth, had opportunities of -developing these agreeable characteristics which seldom present -themselves now. As for Mr. Bennet, Miss Austen, and Mr. Darcy, and even -Miss Elizabeth herself, were, I am inclined to think, rather hard on him -for the “impropriety” of his conduct. His wife was evidently, and must -always have been, a quite irreclaimable fool; and unless he had shot her -or himself there was no way out of it for a man of sense and spirit but -the ironic. From no other point of view is he open to any reproach, -except for an excusable and not unnatural helplessness at the crisis of -the elopement, and his utterances are the most acutely delightful in the -consciously humorous kind--in the kind that we laugh with, not at--that -even Miss Austen has put into the mouth of any of her characters. It is -difficult to know whether he is most agreeable when talking to his wife, -or when putting Mr. Collins through his paces; but the general sense of -the world has probably been right in preferring to the first rank his -consolation to the former when she maunders over the entail, “My dear, -do not give way to such gloomy thoughts. Let us hope for better things. -Let us flatter ourselves that_ I _may be the survivor;” and his inquiry -to his colossal cousin as to the compliments which Mr. Collins has just -related as made by himself to Lady Catherine, “May I ask whether these -pleasing attentions proceed from the impulse of the moment, or are the -result of previous study?” These are the things which give Miss Austen’s -readers the pleasant shocks, the delightful thrills, which are felt by -the readers of Swift, of Fielding, and we may here add, of Thackeray, as -they are felt by the readers of no other English author of fiction -outside of these four._ - -_The goodness of the minor characters in_ Pride and Prejudice _has been -already alluded to, and it makes a detailed dwelling on their beauties -difficult in any space, and impossible in this. Mrs. Bennet we have -glanced at, and it is not easy to say whether she is more exquisitely -amusing or more horribly true. Much the same may be said of Kitty and -Lydia; but it is not every author, even of genius, who would have -differentiated with such unerring skill the effects of folly and -vulgarity of intellect and disposition working upon the common -weaknesses of woman at such different ages. With Mary, Miss Austen has -taken rather less pains, though she has been even more unkind to her; -not merely in the text, but, as we learn from those interesting -traditional appendices which Mr. Austen Leigh has given us, in dooming -her privately to marry “one of Mr. Philips’s clerks.” The habits of -first copying and then retailing moral sentiments, of playing and -singing too long in public, are, no doubt, grievous and criminal; but -perhaps poor Mary was rather the scapegoat of the sins of blue stockings -in that Fordyce-belectured generation. It is at any rate difficult not -to extend to her a share of the respect and affection (affection and -respect of a peculiar kind; doubtless), with which one regards Mr. -Collins, when she draws the moral of Lydia’s fall. I sometimes wish -that the exigencies of the story had permitted Miss Austen to unite -these personages, and thus at once achieve a notable mating and soothe -poor Mrs. Bennet’s anguish over the entail._ - -_The Bingleys and the Gardiners and the Lucases, Miss Darcy and Miss de -Bourgh, Jane, Wickham, and the rest, must pass without special comment, -further than the remark that Charlotte Lucas (her egregious papa, though -delightful, is just a little on the thither side of the line between -comedy and farce) is a wonderfully clever study in drab of one kind, and -that Wickham (though something of Miss Austen’s hesitation of touch in -dealing with young men appears) is a not much less notable sketch in -drab of another. Only genius could have made Charlotte what she is, yet -not disagreeable; Wickham what he is, without investing him either with -a cheap Don Juanish attractiveness or a disgusting rascality. But the -hero and the heroine are not tints to be dismissed._ - -_Darcy has always seemed to me by far the best and most interesting of -Miss Austen’s heroes; the only possible competitor being Henry Tilney, -whose part is so slight and simple that it hardly enters into -comparison. It has sometimes, I believe, been urged that his pride is -unnatural at first in its expression and later in its yielding, while -his falling in love at all is not extremely probable. Here again I -cannot go with the objectors. Darcy’s own account of the way in which -his pride had been pampered, is perfectly rational and sufficient; and -nothing could be, psychologically speaking, a_ causa verior _for its -sudden restoration to healthy conditions than the shock of Elizabeth’s -scornful refusal acting on a nature_ ex hypothesi _generous. Nothing in -even our author is finer and more delicately touched than the change of -his demeanour at the sudden meeting in the grounds of Pemberley. Had he -been a bad prig or a bad coxcomb, he might have been still smarting -under his rejection, or suspicious that the girl had come -husband-hunting. His being neither is exactly consistent with the -probable feelings of a man spoilt in the common sense, but not really -injured in disposition, and thoroughly in love. As for his being in -love, Elizabeth has given as just an exposition of the causes of that -phenomenon as Darcy has of the conditions of his unregenerate state, -only she has of course not counted in what was due to her own personal -charm._ - -_The secret of that charm many men and not a few women, from Miss Austen -herself downwards, have felt, and like most charms it is a thing rather -to be felt than to be explained. Elizabeth of course belongs to the_ -allegro _or_ allegra _division of the army of Venus. Miss Austen was -always provokingly chary of description in regard to her beauties; and -except the fine eyes, and a hint or two that she had at any rate -sometimes a bright complexion, and was not very tall, we hear nothing -about her looks. But her chief difference from other heroines of the -lively type seems to lie first in her being distinctly clever--almost -strong-minded, in the better sense of that objectionable word--and -secondly in her being entirely destitute of ill-nature for all her -propensity to tease and the sharpness of her tongue. Elizabeth can give -at least as good as she gets when she is attacked; but she never -“scratches,” and she never attacks first. Some of the merest -obsoletenesses of phrase and manner give one or two of her early -speeches a slight pertness, but that is nothing, and when she comes to -serious business, as in the great proposal scene with Darcy (which is, -as it should be, the climax of the interest of the book), and in the -final ladies’ battle with Lady Catherine, she is unexceptionable. Then -too she is a perfectly natural girl. She does not disguise from herself -or anybody that she resents Darcy’s first ill-mannered personality with -as personal a feeling. (By the way, the reproach that the ill-manners of -this speech are overdone is certainly unjust; for things of the same -kind, expressed no doubt less stiltedly but more coarsely, might have -been heard in more than one ball-room during this very year from persons -who ought to have been no worse bred than Darcy.) And she lets the -injury done to Jane and the contempt shown to the rest of her family -aggravate this resentment in the healthiest way in the world._ - -_Still, all this does not explain her charm, which, taking beauty as a -common form of all heroines, may perhaps consist in the addition to her -playfulness, her wit, her affectionate and natural disposition, of a -certain fearlessness very uncommon in heroines of her type and age. -Nearly all of them would have been in speechless awe of the magnificent -Darcy; nearly all of them would have palpitated and fluttered at the -idea of proposals, even naughty ones, from the fascinating Wickham. -Elizabeth, with nothing offensive, nothing_ viraginous, _nothing of the -“New Woman” about her, has by nature what the best modern (not “new”) -women have by education and experience, a perfect freedom from the idea -that all men may bully her if they choose, and that most will away with -her if they can. Though not in the least “impudent and mannish grown,” -she has no mere sensibility, no nasty niceness about her. The form of -passion common and likely to seem natural in Miss Austen’s day was so -invariably connected with the display of one or the other, or both of -these qualities, that she has not made Elizabeth outwardly passionate. -But I, at least, have not the slightest doubt that she would have -married Darcy just as willingly without Pemberley as with it, and -anybody who can read between lines will not find the lovers’ -conversations in the final chapters so frigid as they might have looked -to the Della Cruscans of their own day, and perhaps do look to the Della -Cruscans of this._ - -_And, after all, what is the good of seeking for the reason of -charm?--it is there. There were better sense in the sad mechanic -exercise of determining the reason of its absence where it is not. In -the novels of the last hundred years there are vast numbers of young -ladies with whom it might be a pleasure to fall in love; there are at -least five with whom, as it seems to me, no man of taste and spirit can -help doing so. Their names are, in chronological order, Elizabeth -Bennet, Diana Vernon, Argemone Lavington, Beatrix Esmond, and Barbara -Grant. I should have been most in love with Beatrix and Argemone; I -should, I think, for mere occasional companionship, have preferred Diana -and Barbara. But to live with and to marry, I do not know that any one -of the four can come into competition with Elizabeth._ - -_GEORGE SAINTSBURY._ - - - - -[Illustration: List of Illustrations.] - - - PAGE - -Frontispiece iv - -Title-page v - -Dedication vii - -Heading to Preface ix - -Heading to List of Illustrations xxv - -Heading to Chapter I. 1 - -“He came down to see the place” 2 - -Mr. and Mrs. Bennet 5 - -“I hope Mr. Bingley will like it” 6 - -“I’m the tallest” 9 - -“He rode a black horse” 10 - -“When the party entered” 12 - -“She is tolerable” 15 - -Heading to Chapter IV. 18 - -Heading to Chapter V. 22 - -“Without once opening his lips” 24 - -Tailpiece to Chapter V. 26 - -Heading to Chapter VI. 27 - -“The entreaties of several” 31 - -“A note for Miss Bennet” 36 - -“Cheerful prognostics” 40 - -“The apothecary came” 43 - -“Covering a screen” 45 - -“Mrs. Bennet and her two youngest girls” 53 - -Heading to Chapter X. 60 - -“No, no; stay where you are” 67 - -“Piling up the fire” 69 - -Heading to Chapter XII. 75 - -Heading to Chapter XIII. 78 - -Heading to Chapter XIV. 84 - -“Protested that he never read novels” 87 - -Heading to Chapter XV. 89 - -Heading to Chapter XVI. 95 - -“The officers of the ----shire” 97 - -“Delighted to see their dear friend again” 108 - -Heading to Chapter XVIII. 113 - -“Such very superior dancing is not often seen” 118 - -“To assure you in the most animated language” 132 - -Heading to Chapter XX. 139 - -“They entered the breakfast-room” 143 - -Heading to Chapter XXI. 146 - -“Walked back with them” 148 - -Heading to Chapter XXII. 154 - -“So much love and eloquence” 156 - -“Protested he must be entirely mistaken” 161 - -“Whenever she spoke in a low voice” 166 - -Heading to Chapter XXIV. 168 - -Heading to Chapter XXV. 175 - -“Offended two or three young ladies” 177 - -“Will you come and see me?” 181 - -“On the stairs” 189 - -“At the door” 194 - -“In conversation with the ladies” 198 - -“Lady Catherine,” said she, “you have given me a treasure” 200 - -Heading to Chapter XXX. 209 - -“He never failed to inform them” 211 - -“The gentlemen accompanied him” 213 - -Heading to Chapter XXXI. 215 - -Heading to Chapter XXXII. 221 - -“Accompanied by their aunt” 225 - -“On looking up” 228 - -Heading to Chapter XXXIV. 235 - -“Hearing herself called” 243 - -Heading to Chapter XXXVI. 253 - -“Meeting accidentally in town” 256 - -“His parting obeisance” 261 - -“Dawson” 263 - -“The elevation of his feelings” 267 - -“They had forgotten to leave any message” 270 - -“How nicely we are crammed in!” 272 - -Heading to Chapter XL. 278 - -“I am determined never to speak of it again” 283 - -“When Colonel Miller’s regiment went away” 285 - -“Tenderly flirting” 290 - -The arrival of the Gardiners 294 - -“Conjecturing as to the date” 301 - -Heading to Chapter XLIV. 318 - -“To make herself agreeable to all” 321 - -“Engaged by the river” 327 - -Heading to Chapter XLVI. 334 - -“I have not an instant to lose” 339 - -“The first pleasing earnest of their welcome” 345 - -The Post 359 - -“To whom I have related the affair” 363 - -Heading to Chapter XLIX. 368 - -“But perhaps you would like to read it” 370 - -“The spiteful old ladies” 377 - -“With an affectionate smile” 385 - -“I am sure she did not listen” 393 - -“Mr. Darcy with him” 404 - -“Jane happened to look round” 415 - -“Mrs. Long and her nieces” 420 - -“Lizzy, my dear, I want to speak to you” 422 - -Heading to Chapter LVI. 431 - -“After a short survey” 434 - -“But now it comes out” 442 - -“The efforts of his aunt” 448 - -“Unable to utter a syllable” 457 - -“The obsequious civility” 466 - -Heading to Chapter LXI. 472 - -The End 476 - - - - -[Illustration: ·PRIDE AND PREJUDICE· - - - - -Chapter I.] - - -It is a truth universally acknowledged, that a single man in possession -of a good fortune must be in want of a wife. - -However little known the feelings or views of such a man may be on his -first entering a neighbourhood, this truth is so well fixed in the minds -of the surrounding families, that he is considered as the rightful -property of some one or other of their daughters. - -“My dear Mr. Bennet,” said his lady to him one day, “have you heard that -Netherfield Park is let at last?” - -Mr. Bennet replied that he had not. - -“But it is,” returned she; “for Mrs. Long has just been here, and she -told me all about it.” - -Mr. Bennet made no answer. - -“Do not you want to know who has taken it?” cried his wife, impatiently. - -“_You_ want to tell me, and I have no objection to hearing it.” - -[Illustration: - -“He came down to see the place” - -[_Copyright 1894 by George Allen._]] - -This was invitation enough. - -“Why, my dear, you must know, Mrs. Long says that Netherfield is taken -by a young man of large fortune from the north of England; that he came -down on Monday in a chaise and four to see the place, and was so much -delighted with it that he agreed with Mr. Morris immediately; that he is -to take possession before Michaelmas, and some of his servants are to be -in the house by the end of next week.” - -“What is his name?” - -“Bingley.” - -“Is he married or single?” - -“Oh, single, my dear, to be sure! A single man of large fortune; four or -five thousand a year. What a fine thing for our girls!” - -“How so? how can it affect them?” - -“My dear Mr. Bennet,” replied his wife, “how can you be so tiresome? You -must know that I am thinking of his marrying one of them.” - -“Is that his design in settling here?” - -“Design? Nonsense, how can you talk so! But it is very likely that he -_may_ fall in love with one of them, and therefore you must visit him as -soon as he comes.” - -“I see no occasion for that. You and the girls may go--or you may send -them by themselves, which perhaps will be still better; for as you are -as handsome as any of them, Mr. Bingley might like you the best of the -party.” - -“My dear, you flatter me. I certainly _have_ had my share of beauty, but -I do not pretend to be anything extraordinary now. When a woman has five -grown-up daughters, she ought to give over thinking of her own beauty.” - -“In such cases, a woman has not often much beauty to think of.” - -“But, my dear, you must indeed go and see Mr. Bingley when he comes into -the neighbourhood.” - -“It is more than I engage for, I assure you.” - -“But consider your daughters. Only think what an establishment it would -be for one of them. Sir William and Lady Lucas are determined to go, -merely on that account; for in general, you know, they visit no new -comers. Indeed you must go, for it will be impossible for _us_ to visit -him, if you do not.” - -“You are over scrupulous, surely. I dare say Mr. Bingley will be very -glad to see you; and I will send a few lines by you to assure him of my -hearty consent to his marrying whichever he chooses of the girls--though -I must throw in a good word for my little Lizzy.” - -“I desire you will do no such thing. Lizzy is not a bit better than the -others: and I am sure she is not half so handsome as Jane, nor half so -good-humoured as Lydia. But you are always giving _her_ the preference.” - -“They have none of them much to recommend them,” replied he: “they are -all silly and ignorant like other girls; but Lizzy has something more of -quickness than her sisters.” - -“Mr. Bennet, how can you abuse your own children in such a way? You take -delight in vexing me. You have no compassion on my poor nerves.” - -“You mistake me, my dear. I have a high respect for your nerves. They -are my old friends. I have heard you mention them with consideration -these twenty years at least.” - -“Ah, you do not know what I suffer.” - -“But I hope you will get over it, and live to see many young men of four -thousand a year come into the neighbourhood.” - -“It will be no use to us, if twenty such should come, since you will not -visit them.” - -“Depend upon it, my dear, that when there are twenty, I will visit them -all.” - -Mr. Bennet was so odd a mixture of quick parts, sarcastic humour, -reserve, and caprice, that the experience of three-and-twenty years had -been insufficient to make his wife understand his character. _Her_ mind -was less difficult to develope. She was a woman of mean understanding, -little information, and uncertain temper. When she was discontented, she -fancied herself nervous. The business of her life was to get her -daughters married: its solace was visiting and news. - -[Illustration: M^{r.} & M^{rs.} Bennet - -[_Copyright 1894 by George Allen._]] - - - - -[Illustration: - -“I hope Mr. Bingley will like it” - -[_Copyright 1894 by George Allen._]] - - - - -CHAPTER II. - - -[Illustration] - -Mr. Bennet was among the earliest of those who waited on Mr. Bingley. He -had always intended to visit him, though to the last always assuring his -wife that he should not go; and till the evening after the visit was -paid she had no knowledge of it. It was then disclosed in the following -manner. Observing his second daughter employed in trimming a hat, he -suddenly addressed her with,-- - -“I hope Mr. Bingley will like it, Lizzy.” - -“We are not in a way to know _what_ Mr. Bingley likes,” said her mother, -resentfully, “since we are not to visit.” - -“But you forget, mamma,” said Elizabeth, “that we shall meet him at the -assemblies, and that Mrs. Long has promised to introduce him.” - -“I do not believe Mrs. Long will do any such thing. She has two nieces -of her own. She is a selfish, hypocritical woman, and I have no opinion -of her.” - -“No more have I,” said Mr. Bennet; “and I am glad to find that you do -not depend on her serving you.” - -Mrs. Bennet deigned not to make any reply; but, unable to contain -herself, began scolding one of her daughters. - -“Don’t keep coughing so, Kitty, for heaven’s sake! Have a little -compassion on my nerves. You tear them to pieces.” - -“Kitty has no discretion in her coughs,” said her father; “she times -them ill.” - -“I do not cough for my own amusement,” replied Kitty, fretfully. “When -is your next ball to be, Lizzy?” - -“To-morrow fortnight.” - -“Ay, so it is,” cried her mother, “and Mrs. Long does not come back till -the day before; so, it will be impossible for her to introduce him, for -she will not know him herself.” - -“Then, my dear, you may have the advantage of your friend, and introduce -Mr. Bingley to _her_.” - -“Impossible, Mr. Bennet, impossible, when I am not acquainted with him -myself; how can you be so teasing?” - -“I honour your circumspection. A fortnight’s acquaintance is certainly -very little. One cannot know what a man really is by the end of a -fortnight. But if _we_ do not venture, somebody else will; and after -all, Mrs. Long and her nieces must stand their chance; and, therefore, -as she will think it an act of kindness, if you decline the office, I -will take it on myself.” - -The girls stared at their father. Mrs. Bennet said only, “Nonsense, -nonsense!” - -“What can be the meaning of that emphatic exclamation?” cried he. “Do -you consider the forms of introduction, and the stress that is laid on -them, as nonsense? I cannot quite agree with you _there_. What say you, -Mary? For you are a young lady of deep reflection, I know, and read -great books, and make extracts.” - -Mary wished to say something very sensible, but knew not how. - -“While Mary is adjusting her ideas,” he continued, “let us return to Mr. -Bingley.” - -“I am sick of Mr. Bingley,” cried his wife. - -“I am sorry to hear _that_; but why did you not tell me so before? If I -had known as much this morning, I certainly would not have called on -him. It is very unlucky; but as I have actually paid the visit, we -cannot escape the acquaintance now.” - -The astonishment of the ladies was just what he wished--that of Mrs. -Bennet perhaps surpassing the rest; though when the first tumult of joy -was over, she began to declare that it was what she had expected all the -while. - -“How good it was in you, my dear Mr. Bennet! But I knew I should -persuade you at last. I was sure you loved your girls too well to -neglect such an acquaintance. Well, how pleased I am! And it is such a -good joke, too, that you should have gone this morning, and never said a -word about it till now.” - -“Now, Kitty, you may cough as much as you choose,” said Mr. Bennet; and, -as he spoke, he left the room, fatigued with the raptures of his wife. - -“What an excellent father you have, girls,” said she, when the door was -shut. “I do not know how you will ever make him amends for his kindness; -or me either, for that matter. At our time of life, it is not so -pleasant, I can tell you, to be making new acquaintances every day; but -for your sakes we would do anything. Lydia, my love, though you _are_ -the youngest, I dare say Mr. Bingley will dance with you at the next -ball.” - -“Oh,” said Lydia, stoutly, “I am not afraid; for though I _am_ the -youngest, I’m the tallest.” - -The rest of the evening was spent in conjecturing how soon he would -return Mr. Bennet’s visit, and determining when they should ask him to -dinner. - -[Illustration: “I’m the tallest”] - - - - -[Illustration: - - “He rode a black horse” -] - - - - -CHAPTER III. - - -[Illustration] - -Not all that Mrs. Bennet, however, with the assistance of her five -daughters, could ask on the subject, was sufficient to draw from her -husband any satisfactory description of Mr. Bingley. They attacked him -in various ways, with barefaced questions, ingenious suppositions, and -distant surmises; but he eluded the skill of them all; and they were at -last obliged to accept the second-hand intelligence of their neighbour, -Lady Lucas. Her report was highly favourable. Sir William had been -delighted with him. He was quite young, wonderfully handsome, extremely -agreeable, and, to crown the whole, he meant to be at the next assembly -with a large party. Nothing could be more delightful! To be fond of -dancing was a certain step towards falling in love; and very lively -hopes of Mr. Bingley’s heart were entertained. - -“If I can but see one of my daughters happily settled at Netherfield,” -said Mrs. Bennet to her husband, “and all the others equally well -married, I shall have nothing to wish for.” - -In a few days Mr. Bingley returned Mr. Bennet’s visit, and sat about ten -minutes with him in his library. He had entertained hopes of being -admitted to a sight of the young ladies, of whose beauty he had heard -much; but he saw only the father. The ladies were somewhat more -fortunate, for they had the advantage of ascertaining, from an upper -window, that he wore a blue coat and rode a black horse. - -An invitation to dinner was soon afterwards despatched; and already had -Mrs. Bennet planned the courses that were to do credit to her -housekeeping, when an answer arrived which deferred it all. Mr. Bingley -was obliged to be in town the following day, and consequently unable to -accept the honour of their invitation, etc. Mrs. Bennet was quite -disconcerted. She could not imagine what business he could have in town -so soon after his arrival in Hertfordshire; and she began to fear that -he might always be flying about from one place to another, and never -settled at Netherfield as he ought to be. Lady Lucas quieted her fears a -little by starting the idea of his - -[Illustration: - - “When the Party entered” - -[_Copyright 1894 by George Allen._]] - -being gone to London only to get a large party for the ball; and a -report soon followed that Mr. Bingley was to bring twelve ladies and -seven gentlemen with him to the assembly. The girls grieved over such a -number of ladies; but were comforted the day before the ball by hearing -that, instead of twelve, he had brought only six with him from London, -his five sisters and a cousin. And when the party entered the -assembly-room, it consisted of only five altogether: Mr. Bingley, his -two sisters, the husband of the eldest, and another young man. - -Mr. Bingley was good-looking and gentlemanlike: he had a pleasant -countenance, and easy, unaffected manners. His sisters were fine women, -with an air of decided fashion. His brother-in-law, Mr. Hurst, merely -looked the gentleman; but his friend Mr. Darcy soon drew the attention -of the room by his fine, tall person, handsome features, noble mien, and -the report, which was in general circulation within five minutes after -his entrance, of his having ten thousand a year. The gentlemen -pronounced him to be a fine figure of a man, the ladies declared he was -much handsomer than Mr. Bingley, and he was looked at with great -admiration for about half the evening, till his manners gave a disgust -which turned the tide of his popularity; for he was discovered to be -proud, to be above his company, and above being pleased; and not all his -large estate in Derbyshire could save him from having a most forbidding, -disagreeable countenance, and being unworthy to be compared with his -friend. - -Mr. Bingley had soon made himself acquainted with all the principal -people in the room: he was lively and unreserved, danced every dance, -was angry that the ball closed so early, and talked of giving one -himself at Netherfield. Such amiable qualities must speak for -themselves. What a contrast between him and his friend! Mr. Darcy danced -only once with Mrs. Hurst and once with Miss Bingley, declined being -introduced to any other lady, and spent the rest of the evening in -walking about the room, speaking occasionally to one of his own party. -His character was decided. He was the proudest, most disagreeable man in -the world, and everybody hoped that he would never come there again. -Amongst the most violent against him was Mrs. Bennet, whose dislike of -his general behaviour was sharpened into particular resentment by his -having slighted one of her daughters. - -Elizabeth Bennet had been obliged, by the scarcity of gentlemen, to sit -down for two dances; and during part of that time, Mr. Darcy had been -standing near enough for her to overhear a conversation between him and -Mr. Bingley, who came from the dance for a few minutes to press his -friend to join it. - -“Come, Darcy,” said he, “I must have you dance. I hate to see you -standing about by yourself in this stupid manner. You had much better -dance.” - -“I certainly shall not. You know how I detest it, unless I am -particularly acquainted with my partner. At such an assembly as this, it -would be insupportable. Your sisters are engaged, and there is not -another woman in the room whom it would not be a punishment to me to -stand up with.” - -“I would not be so fastidious as you are,” cried Bingley, “for a -kingdom! Upon my honour, I never met with so many pleasant girls in my -life as I have this evening; and there are several of them, you see, -uncommonly pretty.” - -“_You_ are dancing with the only handsome girl in the room,” said Mr. -Darcy, looking at the eldest Miss Bennet. - -“Oh, she is the most beautiful creature I ever beheld! But there is one -of her sisters sitting down just behind you, who is very pretty, and I -dare say very agreeable. Do let me ask my partner to introduce you.” - -[Illustration: - -“She is tolerable” - -[_Copyright 1894 by George Allen._]] - -“Which do you mean?” and turning round, he looked for a moment at -Elizabeth, till, catching her eye, he withdrew his own, and coldly said, -“She is tolerable: but not handsome enough to tempt _me_; and I am in no -humour at present to give consequence to young ladies who are slighted -by other men. You had better return to your partner and enjoy her -smiles, for you are wasting your time with me.” - -Mr. Bingley followed his advice. Mr. Darcy walked off; and Elizabeth -remained with no very cordial feelings towards him. She told the story, -however, with great spirit among her friends; for she had a lively, -playful disposition, which delighted in anything ridiculous. - -The evening altogether passed off pleasantly to the whole family. Mrs. -Bennet had seen her eldest daughter much admired by the Netherfield -party. Mr. Bingley had danced with her twice, and she had been -distinguished by his sisters. Jane was as much gratified by this as her -mother could be, though in a quieter way. Elizabeth felt Jane’s -pleasure. Mary had heard herself mentioned to Miss Bingley as the most -accomplished girl in the neighbourhood; and Catherine and Lydia had been -fortunate enough to be never without partners, which was all that they -had yet learnt to care for at a ball. They returned, therefore, in good -spirits to Longbourn, the village where they lived, and of which they -were the principal inhabitants. They found Mr. Bennet still up. With a -book, he was regardless of time; and on the present occasion he had a -good deal of curiosity as to the event of an evening which had raised -such splendid expectations. He had rather hoped that all his wife’s -views on the stranger would be disappointed; but he soon found that he -had a very different story to hear. - -“Oh, my dear Mr. Bennet,” as she entered the room, “we have had a most -delightful evening, a most excellent ball. I wish you had been there. -Jane was so admired, nothing could be like it. Everybody said how well -she looked; and Mr. Bingley thought her quite beautiful, and danced with -her twice. Only think of _that_, my dear: he actually danced with her -twice; and she was the only creature in the room that he asked a second -time. First of all, he asked Miss Lucas. I was so vexed to see him stand -up with her; but, however, he did not admire her at all; indeed, nobody -can, you know; and he seemed quite struck with Jane as she was going -down the dance. So he inquired who she was, and got introduced, and -asked her for the two next. Then, the two third he danced with Miss -King, and the two fourth with Maria Lucas, and the two fifth with Jane -again, and the two sixth with Lizzy, and the _Boulanger_----” - -“If he had had any compassion for _me_,” cried her husband impatiently, -“he would not have danced half so much! For God’s sake, say no more of -his partners. O that he had sprained his ancle in the first dance!” - -“Oh, my dear,” continued Mrs. Bennet, “I am quite delighted with him. He -is so excessively handsome! and his sisters are charming women. I never -in my life saw anything more elegant than their dresses. I dare say the -lace upon Mrs. Hurst’s gown----” - -Here she was interrupted again. Mr. Bennet protested against any -description of finery. She was therefore obliged to seek another branch -of the subject, and related, with much bitterness of spirit, and some -exaggeration, the shocking rudeness of Mr. Darcy. - -“But I can assure you,” she added, “that Lizzy does not lose much by not -suiting _his_ fancy; for he is a most disagreeable, horrid man, not at -all worth pleasing. So high and so conceited, that there was no enduring -him! He walked here, and he walked there, fancying himself so very -great! Not handsome enough to dance with! I wish you had been there, my -dear, to have given him one of your set-downs. I quite detest the man.” - - - - -[Illustration] - - - - -CHAPTER IV. - - -[Illustration] - -When Jane and Elizabeth were alone, the former, who had been cautious in -her praise of Mr. Bingley before, expressed to her sister how very much -she admired him. - -“He is just what a young-man ought to be,” said she, “sensible, -good-humoured, lively; and I never saw such happy manners! so much ease, -with such perfect good breeding!” - -“He is also handsome,” replied Elizabeth, “which a young man ought -likewise to be if he possibly can. His character is thereby complete.” - -“I was very much flattered by his asking me to dance a second time. I -did not expect such a compliment.” - -“Did not you? _I_ did for you. But that is one great difference between -us. Compliments always take _you_ by surprise, and _me_ never. What -could be more natural than his asking you again? He could not help -seeing that you were about five times as pretty as every other woman in -the room. No thanks to his gallantry for that. Well, he certainly is -very agreeable, and I give you leave to like him. You have liked many a -stupider person.” - -“Dear Lizzy!” - -“Oh, you are a great deal too apt, you know, to like people in general. -You never see a fault in anybody. All the world are good and agreeable -in your eyes. I never heard you speak ill of a human being in my life.” - -“I would wish not to be hasty in censuring anyone; but I always speak -what I think.” - -“I know you do: and it is _that_ which makes the wonder. With _your_ -good sense, to be so honestly blind to the follies and nonsense of -others! Affectation of candour is common enough; one meets with it -everywhere. But to be candid without ostentation or design,--to take the -good of everybody’s character and make it still better, and say nothing -of the bad,--belongs to you alone. And so, you like this man’s sisters, -too, do you? Their manners are not equal to his.” - -“Certainly not, at first; but they are very pleasing women when you -converse with them. Miss Bingley is to live with her brother, and keep -his house; and I am much mistaken if we shall not find a very charming -neighbour in her.” - -Elizabeth listened in silence, but was not convinced: their behaviour at -the assembly had not been calculated to please in general; and with more -quickness of observation and less pliancy of temper than her sister, and -with a judgment, too, unassailed by any attention to herself, she was -very little disposed to approve them. They were, in fact, very fine -ladies; not deficient in good-humour when they were pleased, nor in the -power of being agreeable where they chose it; but proud and conceited. -They were rather handsome; had been educated in one of the first private -seminaries in town; had a fortune of twenty thousand pounds; were in the -habit of spending more than they ought, and of associating with people -of rank; and were, therefore, in every respect entitled to think well of -themselves and meanly of others. They were of a respectable family in -the north of England; a circumstance more deeply impressed on their -memories than that their brother’s fortune and their own had been -acquired by trade. - -Mr. Bingley inherited property to the amount of nearly a hundred -thousand pounds from his father, who had intended to purchase an estate, -but did not live to do it. Mr. Bingley intended it likewise, and -sometimes made choice of his county; but, as he was now provided with a -good house and the liberty of a manor, it was doubtful to many of those -who best knew the easiness of his temper, whether he might not spend the -remainder of his days at Netherfield, and leave the next generation to -purchase. - -His sisters were very anxious for his having an estate of his own; but -though he was now established only as a tenant, Miss Bingley was by no -means unwilling to preside at his table; nor was Mrs. Hurst, who had -married a man of more fashion than fortune, less disposed to consider -his house as her home when it suited her. Mr. Bingley had not been of -age two years when he was tempted, by an accidental recommendation, to -look at Netherfield House. He did look at it, and into it, for half an -hour; was pleased with the situation and the principal rooms, satisfied -with what the owner said in its praise, and took it immediately. - -Between him and Darcy there was a very steady friendship, in spite of a -great opposition of character. Bingley was endeared to Darcy by the -easiness, openness, and ductility of his temper, though no disposition -could offer a greater contrast to his own, and though with his own he -never appeared dissatisfied. On the strength of Darcy’s regard, Bingley -had the firmest reliance, and of his judgment the highest opinion. In -understanding, Darcy was the superior. Bingley was by no means -deficient; but Darcy was clever. He was at the same time haughty, -reserved, and fastidious; and his manners, though well bred, were not -inviting. In that respect his friend had greatly the advantage. Bingley -was sure of being liked wherever he appeared; Darcy was continually -giving offence. - -The manner in which they spoke of the Meryton assembly was sufficiently -characteristic. Bingley had never met with pleasanter people or prettier -girls in his life; everybody had been most kind and attentive to him; -there had been no formality, no stiffness; he had soon felt acquainted -with all the room; and as to Miss Bennet, he could not conceive an angel -more beautiful. Darcy, on the contrary, had seen a collection of people -in whom there was little beauty and no fashion, for none of whom he had -felt the smallest interest, and from none received either attention or -pleasure. Miss Bennet he acknowledged to be pretty; but she smiled too -much. - -Mrs. Hurst and her sister allowed it to be so; but still they admired -her and liked her, and pronounced her to be a sweet girl, and one whom -they should not object to know more of. Miss Bennet was therefore -established as a sweet girl; and their brother felt authorized by such -commendation to think of her as he chose. - - - - -[Illustration: [_Copyright 1894 by George Allen._]] - - - - -CHAPTER V. - - -[Illustration] - -Within a short walk of Longbourn lived a family with whom the Bennets -were particularly intimate. Sir William Lucas had been formerly in trade -in Meryton, where he had made a tolerable fortune, and risen to the -honour of knighthood by an address to the king during his mayoralty. The -distinction had, perhaps, been felt too strongly. It had given him a -disgust to his business and to his residence in a small market town; -and, quitting them both, he had removed with his family to a house about -a mile from Meryton, denominated from that period Lucas Lodge; where he -could think with pleasure of his own importance, and, unshackled by -business, occupy himself solely in being civil to all the world. For, -though elated by his rank, it did not render him supercilious; on the -contrary, he was all attention to everybody. By nature inoffensive, -friendly, and obliging, his presentation at St. James’s had made him -courteous. - -Lady Lucas was a very good kind of woman, not too clever to be a -valuable neighbour to Mrs. Bennet. They had several children. The eldest -of them, a sensible, intelligent young woman, about twenty-seven, was -Elizabeth’s intimate friend. - -That the Miss Lucases and the Miss Bennets should meet to talk over a -ball was absolutely necessary; and the morning after the assembly -brought the former to Longbourn to hear and to communicate. - -“_You_ began the evening well, Charlotte,” said Mrs. Bennet, with civil -self-command, to Miss Lucas. “_You_ were Mr. Bingley’s first choice.” - -“Yes; but he seemed to like his second better.” - -“Oh, you mean Jane, I suppose, because he danced with her twice. To be -sure that _did_ seem as if he admired her--indeed, I rather believe he -_did_--I heard something about it--but I hardly know what--something -about Mr. Robinson.” - -“Perhaps you mean what I overheard between him and Mr. Robinson: did not -I mention it to you? Mr. Robinson’s asking him how he liked our Meryton -assemblies, and whether he did not think there were a great many pretty -women in the room, and _which_ he thought the prettiest? and his -answering immediately to the last question, ‘Oh, the eldest Miss Bennet, -beyond a doubt: there cannot be two opinions on that point.’” - -“Upon my word! Well, that was very decided, indeed--that does seem as -if--but, however, it may all come to nothing, you know.” - -“_My_ overhearings were more to the purpose than _yours_, Eliza,” said -Charlotte. “Mr. Darcy is not so well worth listening to as his friend, -is he? Poor Eliza! to be only just _tolerable_.” - -“I beg you will not put it into Lizzy’s head to be vexed by his -ill-treatment, for he is such a disagreeable man that it would be quite -a misfortune to be liked by him. Mrs. Long told me last night that he -sat close to her for half an hour without once opening his lips.” - -[Illustration: “Without once opening his lips” - -[_Copyright 1894 by George Allen._]] - -“Are you quite sure, ma’am? Is not there a little mistake?” said Jane. -“I certainly saw Mr. Darcy speaking to her.” - -“Ay, because she asked him at last how he liked Netherfield, and he -could not help answering her; but she said he seemed very angry at being -spoke to.” - -“Miss Bingley told me,” said Jane, “that he never speaks much unless -among his intimate acquaintance. With _them_ he is remarkably -agreeable.” - -“I do not believe a word of it, my dear. If he had been so very -agreeable, he would have talked to Mrs. Long. But I can guess how it -was; everybody says that he is eat up with pride, and I dare say he had -heard somehow that Mrs. Long does not keep a carriage, and had to come -to the ball in a hack chaise.” - -“I do not mind his not talking to Mrs. Long,” said Miss Lucas, “but I -wish he had danced with Eliza.” - -“Another time, Lizzy,” said her mother, “I would not dance with _him_, -if I were you.” - -“I believe, ma’am, I may safely promise you _never_ to dance with him.” - -“His pride,” said Miss Lucas, “does not offend _me_ so much as pride -often does, because there is an excuse for it. One cannot wonder that so -very fine a young man, with family, fortune, everything in his favour, -should think highly of himself. If I may so express it, he has a _right_ -to be proud.” - -“That is very true,” replied Elizabeth, “and I could easily forgive -_his_ pride, if he had not mortified _mine_.” - -“Pride,” observed Mary, who piqued herself upon the solidity of her -reflections, “is a very common failing, I believe. By all that I have -ever read, I am convinced that it is very common indeed; that human -nature is particularly prone to it, and that there are very few of us -who do not cherish a feeling of self-complacency on the score of some -quality or other, real or imaginary. Vanity and pride are different -things, though the words are often used synonymously. A person may be -proud without being vain. Pride relates more to our opinion of -ourselves; vanity to what we would have others think of us.” - -“If I were as rich as Mr. Darcy,” cried a young Lucas, who came with his -sisters, “I should not care how proud I was. I would keep a pack of -foxhounds, and drink a bottle of wine every day.” - -“Then you would drink a great deal more than you ought,” said Mrs. -Bennet; “and if I were to see you at it, I should take away your bottle -directly.” - -The boy protested that she should not; she continued to declare that she -would; and the argument ended only with the visit. - -[Illustration] - - - - -[Illustration] - - - - -CHAPTER VI. - - -[Illustration] - -The ladies of Longbourn soon waited on those of Netherfield. The visit -was returned in due form. Miss Bennet’s pleasing manners grew on the -good-will of Mrs. Hurst and Miss Bingley; and though the mother was -found to be intolerable, and the younger sisters not worth speaking to, -a wish of being better acquainted with _them_ was expressed towards the -two eldest. By Jane this attention was received with the greatest -pleasure; but Elizabeth still saw superciliousness in their treatment of -everybody, hardly excepting even her sister, and could not like them; -though their kindness to Jane, such as it was, had a value, as arising, -in all probability, from the influence of their brother’s admiration. It -was generally evident, whenever they met, that he _did_ admire her; and -to _her_ it was equally evident that Jane was yielding to the preference -which she had begun to entertain for him from the first, and was in a -way to be very much in love; but she considered with pleasure that it -was not likely to be discovered by the world in general, since Jane -united with great strength of feeling, a composure of temper and an -uniform cheerfulness of manner, which would guard her from the -suspicions of the impertinent. She mentioned this to her friend, Miss -Lucas. - -“It may, perhaps, be pleasant,” replied Charlotte, “to be able to impose -on the public in such a case; but it is sometimes a disadvantage to be -so very guarded. If a woman conceals her affection with the same skill -from the object of it, she may lose the opportunity of fixing him; and -it will then be but poor consolation to believe the world equally in the -dark. There is so much of gratitude or vanity in almost every -attachment, that it is not safe to leave any to itself. We can all -_begin_ freely--a slight preference is natural enough; but there are -very few of us who have heart enough to be really in love without -encouragement. In nine cases out of ten, a woman had better show _more_ -affection than she feels. Bingley likes your sister undoubtedly; but he -may never do more than like her, if she does not help him on.” - -“But she does help him on, as much as her nature will allow. If _I_ can -perceive her regard for him, he must be a simpleton indeed not to -discover it too.” - -“Remember, Eliza, that he does not know Jane’s disposition as you do.” - -“But if a woman is partial to a man, and does not endeavor to conceal -it, he must find it out.” - -“Perhaps he must, if he sees enough of her. But though Bingley and Jane -meet tolerably often, it is never for many hours together; and as they -always see each other in large mixed parties, it is impossible that -every moment should be employed in conversing together. Jane should -therefore make the most of every half hour in which she can command his -attention. When she is secure of him, there will be leisure for falling -in love as much as she chooses.” - -“Your plan is a good one,” replied Elizabeth, “where nothing is in -question but the desire of being well married; and if I were determined -to get a rich husband, or any husband, I dare say I should adopt it. But -these are not Jane’s feelings; she is not acting by design. As yet she -cannot even be certain of the degree of her own regard, nor of its -reasonableness. She has known him only a fortnight. She danced four -dances with him at Meryton; she saw him one morning at his own house, -and has since dined in company with him four times. This is not quite -enough to make her understand his character.” - -“Not as you represent it. Had she merely _dined_ with him, she might -only have discovered whether he had a good appetite; but you must -remember that four evenings have been also spent together--and four -evenings may do a great deal.” - -“Yes: these four evenings have enabled them to ascertain that they both -like Vingt-un better than Commerce, but with respect to any other -leading characteristic, I do not imagine that much has been unfolded.” - -“Well,” said Charlotte, “I wish Jane success with all my heart; and if -she were married to him to-morrow, I should think she had as good a -chance of happiness as if she were to be studying his character for a -twelvemonth. Happiness in marriage is entirely a matter of chance. If -the dispositions of the parties are ever so well known to each other, or -ever so similar beforehand, it does not advance their felicity in the -least. They always continue to grow sufficiently unlike afterwards to -have their share of vexation; and it is better to know as little as -possible of the defects of the person with whom you are to pass your -life.” - -“You make me laugh, Charlotte; but it is not sound. You know it is not -sound, and that you would never act in this way yourself.” - -Occupied in observing Mr. Bingley’s attention to her sister, Elizabeth -was far from suspecting that she was herself becoming an object of some -interest in the eyes of his friend. Mr. Darcy had at first scarcely -allowed her to be pretty: he had looked at her without admiration at the -ball; and when they next met, he looked at her only to criticise. But no -sooner had he made it clear to himself and his friends that she had -hardly a good feature in her face, than he began to find it was rendered -uncommonly intelligent by the beautiful expression of her dark eyes. To -this discovery succeeded some others equally mortifying. Though he had -detected with a critical eye more than one failure of perfect symmetry -in her form, he was forced to acknowledge her figure to be light and -pleasing; and in spite of his asserting that her manners were not those -of the fashionable world, he was caught by their easy playfulness. Of -this she was perfectly unaware: to her he was only the man who made -himself agreeable nowhere, and who had not thought her handsome enough -to dance with. - -He began to wish to know more of her; and, as a step towards conversing -with her himself, attended to her conversation with others. His doing so -drew her notice. It was at Sir William Lucas’s, where a large party were -assembled. - -“What does Mr. Darcy mean,” said she to Charlotte, “by listening to my -conversation with Colonel Forster?” - -“That is a question which Mr. Darcy only can answer.” - -“But if he does it any more, I shall certainly let him know that I see -what he is about. He has a very satirical eye, and if I do not begin by -being impertinent myself, I shall soon grow afraid of him.” - -[Illustration: “The entreaties of several” [_Copyright 1894 by George -Allen._]] - -On his approaching them soon afterwards, though without seeming to have -any intention of speaking, Miss Lucas defied her friend to mention such -a subject to him, which immediately provoking Elizabeth to do it, she -turned to him and said,-- - -“Did not you think, Mr. Darcy, that I expressed myself uncommonly well -just now, when I was teasing Colonel Forster to give us a ball at -Meryton?” - -“With great energy; but it is a subject which always makes a lady -energetic.” - -“You are severe on us.” - -“It will be _her_ turn soon to be teased,” said Miss Lucas. “I am going -to open the instrument, Eliza, and you know what follows.” - -“You are a very strange creature by way of a friend!--always wanting me -to play and sing before anybody and everybody! If my vanity had taken a -musical turn, you would have been invaluable; but as it is, I would -really rather not sit down before those who must be in the habit of -hearing the very best performers.” On Miss Lucas’s persevering, however, -she added, “Very well; if it must be so, it must.” And gravely glancing -at Mr. Darcy, “There is a very fine old saying, which everybody here is -of course familiar with--‘Keep your breath to cool your porridge,’--and -I shall keep mine to swell my song.” - -Her performance was pleasing, though by no means capital. After a song -or two, and before she could reply to the entreaties of several that she -would sing again, she was eagerly succeeded at the instrument by her -sister Mary, who having, in consequence of being the only plain one in -the family, worked hard for knowledge and accomplishments, was always -impatient for display. - -Mary had neither genius nor taste; and though vanity had given her -application, it had given her likewise a pedantic air and conceited -manner, which would have injured a higher degree of excellence than she -had reached. Elizabeth, easy and unaffected, had been listened to with -much more pleasure, though not playing half so well; and Mary, at the -end of a long concerto, was glad to purchase praise and gratitude by -Scotch and Irish airs, at the request of her younger sisters, who with -some of the Lucases, and two or three officers, joined eagerly in -dancing at one end of the room. - -Mr. Darcy stood near them in silent indignation at such a mode of -passing the evening, to the exclusion of all conversation, and was too -much engrossed by his own thoughts to perceive that Sir William Lucas -was his neighbour, till Sir William thus began:-- - -“What a charming amusement for young people this is, Mr. Darcy! There is -nothing like dancing, after all. I consider it as one of the first -refinements of polished societies.” - -“Certainly, sir; and it has the advantage also of being in vogue amongst -the less polished societies of the world: every savage can dance.” - -Sir William only smiled. “Your friend performs delightfully,” he -continued, after a pause, on seeing Bingley join the group; “and I doubt -not that you are an adept in the science yourself, Mr. Darcy.” - -“You saw me dance at Meryton, I believe, sir.” - -“Yes, indeed, and received no inconsiderable pleasure from the sight. Do -you often dance at St. James’s?” - -“Never, sir.” - -“Do you not think it would be a proper compliment to the place?” - -“It is a compliment which I never pay to any place if I can avoid it.” - -“You have a house in town, I conclude?” - -Mr. Darcy bowed. - -“I had once some thoughts of fixing in town myself, for I am fond of -superior society; but I did not feel quite certain that the air of -London would agree with Lady Lucas.” - -He paused in hopes of an answer: but his companion was not disposed to -make any; and Elizabeth at that instant moving towards them, he was -struck with the notion of doing a very gallant thing, and called out to -her,-- - -“My dear Miss Eliza, why are not you dancing? Mr. Darcy, you must allow -me to present this young lady to you as a very desirable partner. You -cannot refuse to dance, I am sure, when so much beauty is before you.” -And, taking her hand, he would have given it to Mr. Darcy, who, though -extremely surprised, was not unwilling to receive it, when she instantly -drew back, and said with some discomposure to Sir William,-- - -“Indeed, sir, I have not the least intention of dancing. I entreat you -not to suppose that I moved this way in order to beg for a partner.” - -Mr. Darcy, with grave propriety, requested to be allowed the honour of -her hand, but in vain. Elizabeth was determined; nor did Sir William at -all shake her purpose by his attempt at persuasion. - -“You excel so much in the dance, Miss Eliza, that it is cruel to deny me -the happiness of seeing you; and though this gentleman dislikes the -amusement in general, he can have no objection, I am sure, to oblige us -for one half hour.” - -“Mr. Darcy is all politeness,” said Elizabeth, smiling. - -“He is, indeed: but considering the inducement, my dear Miss Eliza, we -cannot wonder at his complaisance; for who would object to such a -partner?” - -Elizabeth looked archly, and turned away. Her resistance had not injured -her with the gentleman, and he was thinking of her with some -complacency, when thus accosted by Miss Bingley,-- - -“I can guess the subject of your reverie.” - -“I should imagine not.” - -“You are considering how insupportable it would be to pass many -evenings in this manner,--in such society; and, indeed, I am quite of -your opinion. I was never more annoyed! The insipidity, and yet the -noise--the nothingness, and yet the self-importance, of all these -people! What would I give to hear your strictures on them!” - -“Your conjecture is totally wrong, I assure you. My mind was more -agreeably engaged. I have been meditating on the very great pleasure -which a pair of fine eyes in the face of a pretty woman can bestow.” - -Miss Bingley immediately fixed her eyes on his face, and desired he -would tell her what lady had the credit of inspiring such reflections. -Mr. Darcy replied, with great intrepidity,-- - -“Miss Elizabeth Bennet.” - -“Miss Elizabeth Bennet!” repeated Miss Bingley. “I am all astonishment. -How long has she been such a favourite? and pray when am I to wish you -joy?” - -“That is exactly the question which I expected you to ask. A lady’s -imagination is very rapid; it jumps from admiration to love, from love -to matrimony, in a moment. I knew you would be wishing me joy.” - -“Nay, if you are so serious about it, I shall consider the matter as -absolutely settled. You will have a charming mother-in-law, indeed, and -of course she will be always at Pemberley with you.” - -He listened to her with perfect indifference, while she chose to -entertain herself in this manner; and as his composure convinced her -that all was safe, her wit flowed along. - - - - -[Illustration: - - “A note for Miss Bennet” - -[_Copyright 1894 by George Allen._]] - - - - -CHAPTER VII. - - -[Illustration] - -Mr. Bennet’s property consisted almost entirely in an estate of two -thousand a year, which, unfortunately for his daughters, was entailed, -in default of heirs male, on a distant relation; and their mother’s -fortune, though ample for her situation in life, could but ill supply -the deficiency of his. Her father had been an attorney in Meryton, and -had left her four thousand pounds. - -She had a sister married to a Mr. Philips, who had been a clerk to their -father and succeeded him in the business, and a brother settled in -London in a respectable line of trade. - -The village of Longbourn was only one mile from Meryton; a most -convenient distance for the young ladies, who were usually tempted -thither three or four times a week, to pay their duty to their aunt, and -to a milliner’s shop just over the way. The two youngest of the family, -Catherine and Lydia, were particularly frequent in these attentions: -their minds were more vacant than their sisters’, and when nothing -better offered, a walk to Meryton was necessary to amuse their morning -hours and furnish conversation for the evening; and, however bare of -news the country in general might be, they always contrived to learn -some from their aunt. At present, indeed, they were well supplied both -with news and happiness by the recent arrival of a militia regiment in -the neighbourhood; it was to remain the whole winter, and Meryton was -the head-quarters. - -Their visits to Mrs. Philips were now productive of the most interesting -intelligence. Every day added something to their knowledge of the -officers’ names and connections. Their lodgings were not long a secret, -and at length they began to know the officers themselves. Mr. Philips -visited them all, and this opened to his nieces a source of felicity -unknown before. They could talk of nothing but officers; and Mr. -Bingley’s large fortune, the mention of which gave animation to their -mother, was worthless in their eyes when opposed to the regimentals of -an ensign. - -After listening one morning to their effusions on this subject, Mr. -Bennet coolly observed,-- - -“From all that I can collect by your manner of talking, you must be two -of the silliest girls in the country. I have suspected it some time, but -I am now convinced.” - -Catherine was disconcerted, and made no answer; but Lydia, with perfect -indifference, continued to express her admiration of Captain Carter, and -her hope of seeing him in the course of the day, as he was going the -next morning to London. - -“I am astonished, my dear,” said Mrs. Bennet, “that you should be so -ready to think your own children silly. If I wished to think slightingly -of anybody’s children, it should not be of my own, however.” - -“If my children are silly, I must hope to be always sensible of it.” - -“Yes; but as it happens, they are all of them very clever.” - -“This is the only point, I flatter myself, on which we do not agree. I -had hoped that our sentiments coincided in every particular, but I must -so far differ from you as to think our two youngest daughters uncommonly -foolish.” - -“My dear Mr. Bennet, you must not expect such girls to have the sense of -their father and mother. When they get to our age, I dare say they will -not think about officers any more than we do. I remember the time when I -liked a red coat myself very well--and, indeed, so I do still at my -heart; and if a smart young colonel, with five or six thousand a year, -should want one of my girls, I shall not say nay to him; and I thought -Colonel Forster looked very becoming the other night at Sir William’s in -his regimentals.” - -“Mamma,” cried Lydia, “my aunt says that Colonel Forster and Captain -Carter do not go so often to Miss Watson’s as they did when they first -came; she sees them now very often standing in Clarke’s library.” - -Mrs. Bennet was prevented replying by the entrance of the footman with a -note for Miss Bennet; it came from Netherfield, and the servant waited -for an answer. Mrs. Bennet’s eyes sparkled with pleasure, and she was -eagerly calling out, while her daughter read,-- - -“Well, Jane, who is it from? What is it about? What does he say? Well, -Jane, make haste and tell us; make haste, my love.” - -“It is from Miss Bingley,” said Jane, and then read it aloud. - - /* NIND “My dear friend, */ - - “If you are not so compassionate as to dine to-day with Louisa and - me, we shall be in danger of hating each other for the rest of our - lives; for a whole day’s _tête-à-tête_ between two women can never - end without a quarrel. Come as soon as you can on the receipt of - this. My brother and the gentlemen are to dine with the officers. - Yours ever, - -“CAROLINE BINGLEY.” - -“With the officers!” cried Lydia: “I wonder my aunt did not tell us of -_that_.” - -“Dining out,” said Mrs. Bennet; “that is very unlucky.” - -“Can I have the carriage?” said Jane. - -“No, my dear, you had better go on horseback, because it seems likely to -rain; and then you must stay all night.” - -“That would be a good scheme,” said Elizabeth, “if you were sure that -they would not offer to send her home.” - -“Oh, but the gentlemen will have Mr. Bingley’s chaise to go to Meryton; -and the Hursts have no horses to theirs.” - -“I had much rather go in the coach.” - -“But, my dear, your father cannot spare the horses, I am sure. They are -wanted in the farm, Mr. Bennet, are not they?” - -[Illustration: Cheerful prognostics] - -“They are wanted in the farm much oftener than I can get them.” - -“But if you have got them to-day,” said Elizabeth, “my mother’s purpose -will be answered.” - -She did at last extort from her father an acknowledgment that the horses -were engaged; Jane was therefore obliged to go on horseback, and her -mother attended her to the door with many cheerful prognostics of a bad -day. Her hopes were answered; Jane had not been gone long before it -rained hard. Her sisters were uneasy for her, but her mother was -delighted. The rain continued the whole evening without intermission; -Jane certainly could not come back. - -“This was a lucky idea of mine, indeed!” said Mrs. Bennet, more than -once, as if the credit of making it rain were all her own. Till the next -morning, however, she was not aware of all the felicity of her -contrivance. Breakfast was scarcely over when a servant from Netherfield -brought the following note for Elizabeth:-- - - /* NIND “My dearest Lizzie, */ - - “I find myself very unwell this morning, which, I suppose, is to be - imputed to my getting wet through yesterday. My kind friends will - not hear of my returning home till I am better. They insist also on - my seeing Mr. Jones--therefore do not be alarmed if you should hear - of his having been to me--and, excepting a sore throat and a - headache, there is not much the matter with me. - -“Yours, etc.” - -“Well, my dear,” said Mr. Bennet, when Elizabeth had read the note -aloud, “if your daughter should have a dangerous fit of illness--if she -should die--it would be a comfort to know that it was all in pursuit of -Mr. Bingley, and under your orders.” - -“Oh, I am not at all afraid of her dying. People do not die of little -trifling colds. She will be taken good care of. As long as she stays -there, it is all very well. I would go and see her if I could have the -carriage.” - -Elizabeth, feeling really anxious, determined to go to her, though the -carriage was not to be had: and as she was no horsewoman, walking was -her only alternative. She declared her resolution. - -“How can you be so silly,” cried her mother, “as to think of such a -thing, in all this dirt! You will not be fit to be seen when you get -there.” - -“I shall be very fit to see Jane--which is all I want.” - -“Is this a hint to me, Lizzy,” said her father, “to send for the -horses?” - -“No, indeed. I do not wish to avoid the walk. The distance is nothing, -when one has a motive; only three miles. I shall be back by dinner.” - -“I admire the activity of your benevolence,” observed Mary, “but every -impulse of feeling should be guided by reason; and, in my opinion, -exertion should always be in proportion to what is required.” - -“We will go as far as Meryton with you,” said Catherine and Lydia. -Elizabeth accepted their company, and the three young ladies set off -together. - -“If we make haste,” said Lydia, as they walked along, “perhaps we may -see something of Captain Carter, before he goes.” - -In Meryton they parted: the two youngest repaired to the lodgings of one -of the officers’ wives, and Elizabeth continued her walk alone, crossing -field after field at a quick pace, jumping over stiles and springing -over puddles, with impatient activity, and finding herself at last -within view of the house, with weary ancles, dirty stockings, and a face -glowing with the warmth of exercise. - -She was shown into the breakfast parlour, where all but Jane were -assembled, and where her appearance created a great deal of surprise. -That she should have walked three miles so early in the day in such -dirty weather, and by herself, was almost incredible to Mrs. Hurst and -Miss Bingley; and Elizabeth was convinced that they held her in contempt -for it. She was received, however, very politely by them; and in their -brother’s manners there was something better than politeness--there was -good-humour and kindness. Mr. Darcy said very little, and Mr. Hurst -nothing at all. The former was divided between admiration of the -brilliancy which exercise had given to her complexion and doubt as to -the occasion’s justifying her coming so far alone. The latter was -thinking only of his breakfast. - -Her inquiries after her sister were not very favourably answered. Miss -Bennet had slept ill, and though up, was very feverish, and not well -enough to leave her room. Elizabeth was glad to be taken to her -immediately; and Jane, who had only been withheld by the fear of giving -alarm or inconvenience, from expressing in her note how much she longed -for such a visit, was delighted at her entrance. She was not equal, -however, to much conversation; and when Miss Bingley left them together, -could attempt little beside expressions of gratitude for the -extraordinary kindness she was treated with. Elizabeth silently attended -her. - -When breakfast was over, they were joined by the sisters; and Elizabeth -began to like them herself, when she saw how much affection and -solicitude they showed for Jane. The apothecary came; and having -examined his patient, said, as might be supposed, that she had caught a -violent cold, and that they must endeavour to get the better of it; -advised her to return to bed, and promised her some draughts. The advice -was followed readily, for the feverish symptoms increased, and her head -ached acutely. Elizabeth did not quit her room for a moment, nor were -the other ladies often absent; the gentlemen being out, they had in fact -nothing to do elsewhere. - -When the clock struck three, Elizabeth felt that she must go, and very -unwillingly said so. Miss Bingley offered her the carriage, and she only -wanted a little pressing to accept it, when Jane testified such concern -at parting with her that Miss Bingley was obliged to convert the offer -of the chaise into an invitation to remain at Netherfield for the -present. Elizabeth most thankfully consented, and a servant was -despatched to Longbourn, to acquaint the family with her stay, and bring -back a supply of clothes. - -[Illustration: - -“The Apothecary came” -] - - - - -[Illustration: - -“covering a screen” -] - - - - -CHAPTER VIII. - - -[Illustration] - -At five o’clock the two ladies retired to dress, and at half-past six -Elizabeth was summoned to dinner. To the civil inquiries which then -poured in, and amongst which she had the pleasure of distinguishing the -much superior solicitude of Mr. Bingley, she could not make a very -favourable answer. Jane was by no means better. The sisters, on hearing -this, repeated three or four times how much they were grieved, how -shocking it was to have a bad cold, and how excessively they disliked -being ill themselves; and then thought no more of the matter: and their -indifference towards Jane, when not immediately before them, restored -Elizabeth to the enjoyment of all her original dislike. - -Their brother, indeed, was the only one of the party whom she could -regard with any complacency. His anxiety for Jane was evident, and his -attentions to herself most pleasing; and they prevented her feeling -herself so much an intruder as she believed she was considered by the -others. She had very little notice from any but him. Miss Bingley was -engrossed by Mr. Darcy, her sister scarcely less so; and as for Mr. -Hurst, by whom Elizabeth sat, he was an indolent man, who lived only to -eat, drink, and play at cards, who, when he found her prefer a plain -dish to a ragout, had nothing to say to her. - -When dinner was over, she returned directly to Jane, and Miss Bingley -began abusing her as soon as she was out of the room. Her manners were -pronounced to be very bad indeed,--a mixture of pride and impertinence: -she had no conversation, no style, no taste, no beauty. Mrs. Hurst -thought the same, and added,-- - -“She has nothing, in short, to recommend her, but being an excellent -walker. I shall never forget her appearance this morning. She really -looked almost wild.” - -“She did indeed, Louisa. I could hardly keep my countenance. Very -nonsensical to come at all! Why must _she_ be scampering about the -country, because her sister had a cold? Her hair so untidy, so blowzy!” - -“Yes, and her petticoat; I hope you saw her petticoat, six inches deep -in mud, I am absolutely certain, and the gown which had been let down to -hide it not doing its office.” - -“Your picture may be very exact, Louisa,” said Bingley; “but this was -all lost upon me. I thought Miss Elizabeth Bennet looked remarkably well -when she came into the room this morning. Her dirty petticoat quite -escaped my notice.” - -“_You_ observed it, Mr. Darcy, I am sure,” said Miss Bingley; “and I am -inclined to think that you would not wish to see _your sister_ make such -an exhibition.” - -“Certainly not.” - -“To walk three miles, or four miles, or five miles, or whatever it is, -above her ancles in dirt, and alone, quite alone! what could she mean by -it? It seems to me to show an abominable sort of conceited independence, -a most country-town indifference to decorum.” - -“It shows an affection for her sister that is very pleasing,” said -Bingley. - -“I am afraid, Mr. Darcy,” observed Miss Bingley, in a half whisper, -“that this adventure has rather affected your admiration of her fine -eyes.” - -“Not at all,” he replied: “they were brightened by the exercise.” A -short pause followed this speech, and Mrs. Hurst began again,-- - -“I have an excessive regard for Jane Bennet,--she is really a very sweet -girl,--and I wish with all my heart she were well settled. But with such -a father and mother, and such low connections, I am afraid there is no -chance of it.” - -“I think I have heard you say that their uncle is an attorney in -Meryton?” - -“Yes; and they have another, who lives somewhere near Cheapside.” - -“That is capital,” added her sister; and they both laughed heartily. - -“If they had uncles enough to fill _all_ Cheapside,” cried Bingley, “it -would not make them one jot less agreeable.” - -“But it must very materially lessen their chance of marrying men of any -consideration in the world,” replied Darcy. - -To this speech Bingley made no answer; but his sisters gave it their -hearty assent, and indulged their mirth for some time at the expense of -their dear friend’s vulgar relations. - -With a renewal of tenderness, however, they repaired to her room on -leaving the dining-parlour, and sat with her till summoned to coffee. -She was still very poorly, and Elizabeth would not quit her at all, till -late in the evening, when she had the comfort of seeing her asleep, and -when it appeared to her rather right than pleasant that she should go -down stairs herself. On entering the drawing-room, she found the whole -party at loo, and was immediately invited to join them; but suspecting -them to be playing high, she declined it, and making her sister the -excuse, said she would amuse herself, for the short time she could stay -below, with a book. Mr. Hurst looked at her with astonishment. - -“Do you prefer reading to cards?” said he; “that is rather singular.” - -“Miss Eliza Bennet,” said Miss Bingley, “despises cards. She is a great -reader, and has no pleasure in anything else.” - -“I deserve neither such praise nor such censure,” cried Elizabeth; “I -am _not_ a great reader, and I have pleasure in many things.” - -“In nursing your sister I am sure you have pleasure,” said Bingley; “and -I hope it will soon be increased by seeing her quite well.” - -Elizabeth thanked him from her heart, and then walked towards a table -where a few books were lying. He immediately offered to fetch her -others; all that his library afforded. - -“And I wish my collection were larger for your benefit and my own -credit; but I am an idle fellow; and though I have not many, I have more -than I ever looked into.” - -Elizabeth assured him that she could suit herself perfectly with those -in the room. - -“I am astonished,” said Miss Bingley, “that my father should have left -so small a collection of books. What a delightful library you have at -Pemberley, Mr. Darcy!” - -“It ought to be good,” he replied: “it has been the work of many -generations.” - -“And then you have added so much to it yourself--you are always buying -books.” - -“I cannot comprehend the neglect of a family library in such days as -these.” - -“Neglect! I am sure you neglect nothing that can add to the beauties of -that noble place. Charles, when you build _your_ house, I wish it may be -half as delightful as Pemberley.” - -“I wish it may.” - -“But I would really advise you to make your purchase in that -neighbourhood, and take Pemberley for a kind of model. There is not a -finer county in England than Derbyshire.” - -“With all my heart: I will buy Pemberley itself, if Darcy will sell it.” - -“I am talking of possibilities, Charles.” - -“Upon my word, Caroline, I should think it more possible to get -Pemberley by purchase than by imitation.” - -Elizabeth was so much caught by what passed, as to leave her very little -attention for her book; and, soon laying it wholly aside, she drew near -the card-table, and stationed herself between Mr. Bingley and his eldest -sister, to observe the game. - -“Is Miss Darcy much grown since the spring?” said Miss Bingley: “will -she be as tall as I am?” - -“I think she will. She is now about Miss Elizabeth Bennet’s height, or -rather taller.” - -“How I long to see her again! I never met with anybody who delighted me -so much. Such a countenance, such manners, and so extremely accomplished -for her age! Her performance on the pianoforte is exquisite.” - -“It is amazing to me,” said Bingley, “how young ladies can have patience -to be so very accomplished as they all are.” - -“All young ladies accomplished! My dear Charles, what do you mean?” - -“Yes, all of them, I think. They all paint tables, cover screens, and -net purses. I scarcely know any one who cannot do all this; and I am -sure I never heard a young lady spoken of for the first time, without -being informed that she was very accomplished.” - -“Your list of the common extent of accomplishments,” said Darcy, “has -too much truth. The word is applied to many a woman who deserves it no -otherwise than by netting a purse or covering a screen; but I am very -far from agreeing with you in your estimation of ladies in general. I -cannot boast of knowing more than half-a-dozen in the whole range of my -acquaintance that are really accomplished.” - -“Nor I, I am sure,” said Miss Bingley. - -“Then,” observed Elizabeth, “you must comprehend a great deal in your -idea of an accomplished woman.” - -“Yes; I do comprehend a great deal in it.” - -“Oh, certainly,” cried his faithful assistant, “no one can be really -esteemed accomplished who does not greatly surpass what is usually met -with. A woman must have a thorough knowledge of music, singing, drawing, -dancing, and the modern languages, to deserve the word; and, besides all -this, she must possess a certain something in her air and manner of -walking, the tone of her voice, her address and expressions, or the word -will be but half deserved.” - -“All this she must possess,” added Darcy; “and to all she must yet add -something more substantial in the improvement of her mind by extensive -reading.” - -“I am no longer surprised at your knowing _only_ six accomplished women. -I rather wonder now at your knowing _any_.” - -“Are you so severe upon your own sex as to doubt the possibility of all -this?” - -“_I_ never saw such a woman. _I_ never saw such capacity, and taste, and -application, and elegance, as you describe, united.” - -Mrs. Hurst and Miss Bingley both cried out against the injustice of her -implied doubt, and were both protesting that they knew many women who -answered this description, when Mr. Hurst called them to order, with -bitter complaints of their inattention to what was going forward. As all -conversation was thereby at an end, Elizabeth soon afterwards left the -room. - -“Eliza Bennet,” said Miss Bingley, when the door was closed on her, “is -one of those young ladies who seek to recommend themselves to the other -sex by undervaluing their own; and with many men, I daresay, it -succeeds; but, in my opinion, it is a paltry device, a very mean art.” - -“Undoubtedly,” replied Darcy, to whom this remark was chiefly addressed, -“there is meanness in _all_ the arts which ladies sometimes condescend -to employ for captivation. Whatever bears affinity to cunning is -despicable.” - -Miss Bingley was not so entirely satisfied with this reply as to -continue the subject. - -Elizabeth joined them again only to say that her sister was worse, and -that she could not leave her. Bingley urged Mr. Jones’s being sent for -immediately; while his sisters, convinced that no country advice could -be of any service, recommended an express to town for one of the most -eminent physicians. This she would not hear of; but she was not so -unwilling to comply with their brother’s proposal; and it was settled -that Mr. Jones should be sent for early in the morning, if Miss Bennet -were not decidedly better. Bingley was quite uncomfortable; his sisters -declared that they were miserable. They solaced their wretchedness, -however, by duets after supper; while he could find no better relief to -his feelings than by giving his housekeeper directions that every -possible attention might be paid to the sick lady and her sister. - - - - -[Illustration: - -M^{rs} Bennet and her two youngest girls - -[_Copyright 1894 by George Allen._]] - - - - -CHAPTER IX. - - -[Illustration] - -Elizabeth passed the chief of the night in her sister’s room, and in the -morning had the pleasure of being able to send a tolerable answer to the -inquiries which she very early received from Mr. Bingley by a housemaid, -and some time afterwards from the two elegant ladies who waited on his -sisters. In spite of this amendment, however, she requested to have a -note sent to Longbourn, desiring her mother to visit Jane, and form her -own judgment of her situation. The note was immediately despatched, and -its contents as quickly complied with. Mrs. Bennet, accompanied by her -two youngest girls, reached Netherfield soon after the family breakfast. - -Had she found Jane in any apparent danger, Mrs. Bennet would have been -very miserable; but being satisfied on seeing her that her illness was -not alarming, she had no wish of her recovering immediately, as her -restoration to health would probably remove her from Netherfield. She -would not listen, therefore, to her daughter’s proposal of being carried -home; neither did the apothecary, who arrived about the same time, think -it at all advisable. After sitting a little while with Jane, on Miss -Bingley’s appearance and invitation, the mother and three daughters all -attended her into the breakfast parlour. Bingley met them with hopes -that Mrs. Bennet had not found Miss Bennet worse than she expected. - -“Indeed I have, sir,” was her answer. “She is a great deal too ill to be -moved. Mr. Jones says we must not think of moving her. We must trespass -a little longer on your kindness.” - -“Removed!” cried Bingley. “It must not be thought of. My sister, I am -sure, will not hear of her removal.” - -“You may depend upon it, madam,” said Miss Bingley, with cold civility, -“that Miss Bennet shall receive every possible attention while she -remains with us.” - -Mrs. Bennet was profuse in her acknowledgments. - -“I am sure,” she added, “if it was not for such good friends, I do not -know what would become of her, for she is very ill indeed, and suffers a -vast deal, though with the greatest patience in the world, which is -always the way with her, for she has, without exception, the sweetest -temper I ever met with. I often tell my other girls they are nothing to -_her_. You have a sweet room here, Mr. Bingley, and a charming prospect -over that gravel walk. I do not know a place in the country that is -equal to Netherfield. You will not think of quitting it in a hurry, I -hope, though you have but a short lease.” - -“Whatever I do is done in a hurry,” replied he; “and therefore if I -should resolve to quit Netherfield, I should probably be off in five -minutes. At present, however, I consider myself as quite fixed here.” - -“That is exactly what I should have supposed of you,” said Elizabeth. - -“You begin to comprehend me, do you?” cried he, turning towards her. - -“Oh yes--I understand you perfectly.” - -“I wish I might take this for a compliment; but to be so easily seen -through, I am afraid, is pitiful.” - -“That is as it happens. It does not necessarily follow that a deep, -intricate character is more or less estimable than such a one as yours.” - -“Lizzy,” cried her mother, “remember where you are, and do not run on in -the wild manner that you are suffered to do at home.” - -“I did not know before,” continued Bingley, immediately, “that you were -a studier of character. It must be an amusing study.” - -“Yes; but intricate characters are the _most_ amusing. They have at -least that advantage.” - -“The country,” said Darcy, “can in general supply but few subjects for -such a study. In a country neighbourhood you move in a very confined and -unvarying society.” - -“But people themselves alter so much, that there is something new to be -observed in them for ever.” - -“Yes, indeed,” cried Mrs. Bennet, offended by his manner of mentioning a -country neighbourhood. “I assure you there is quite as much of _that_ -going on in the country as in town.” - -Everybody was surprised; and Darcy, after looking at her for a moment, -turned silently away. Mrs. Bennet, who fancied she had gained a complete -victory over him, continued her triumph,-- - -“I cannot see that London has any great advantage over the country, for -my part, except the shops and public places. The country is a vast deal -pleasanter, is not it, Mr. Bingley?” - -“When I am in the country,” he replied, “I never wish to leave it; and -when I am in town, it is pretty much the same. They have each their -advantages, and I can be equally happy in either.” - -“Ay, that is because you have the right disposition. But that -gentleman,” looking at Darcy, “seemed to think the country was nothing -at all.” - -“Indeed, mamma, you are mistaken,” said Elizabeth, blushing for her -mother. “You quite mistook Mr. Darcy. He only meant that there was not -such a variety of people to be met with in the country as in town, which -you must acknowledge to be true.” - -“Certainly, my dear, nobody said there were; but as to not meeting with -many people in this neighbourhood, I believe there are few -neighbourhoods larger. I know we dine with four-and-twenty families.” - -Nothing but concern for Elizabeth could enable Bingley to keep his -countenance. His sister was less delicate, and directed her eye towards -Mr. Darcy with a very expressive smile. Elizabeth, for the sake of -saying something that might turn her mother’s thoughts, now asked her if -Charlotte Lucas had been at Longbourn since _her_ coming away. - -“Yes, she called yesterday with her father. What an agreeable man Sir -William is, Mr. Bingley--is not he? so much the man of fashion! so -genteel and so easy! He has always something to say to everybody. _That_ -is my idea of good breeding; and those persons who fancy themselves very -important and never open their mouths quite mistake the matter.” - -“Did Charlotte dine with you?” - -“No, she would go home. I fancy she was wanted about the mince-pies. For -my part, Mr. Bingley, _I_ always keep servants that can do their own -work; _my_ daughters are brought up differently. But everybody is to -judge for themselves, and the Lucases are a very good sort of girls, I -assure you. It is a pity they are not handsome! Not that _I_ think -Charlotte so _very_ plain; but then she is our particular friend.” - -“She seems a very pleasant young woman,” said Bingley. - -“Oh dear, yes; but you must own she is very plain. Lady Lucas herself -has often said so, and envied me Jane’s beauty. I do not like to boast -of my own child; but to be sure, Jane--one does not often see anybody -better looking. It is what everybody says. I do not trust my own -partiality. When she was only fifteen there was a gentleman at my -brother Gardiner’s in town so much in love with her, that my -sister-in-law was sure he would make her an offer before we came away. -But, however, he did not. Perhaps he thought her too young. However, he -wrote some verses on her, and very pretty they were.” - -“And so ended his affection,” said Elizabeth, impatiently. “There has -been many a one, I fancy, overcome in the same way. I wonder who first -discovered the efficacy of poetry in driving away love!” - -“I have been used to consider poetry as the _food_ of love,” said Darcy. - -“Of a fine, stout, healthy love it may. Everything nourishes what is -strong already. But if it be only a slight, thin sort of inclination, I -am convinced that one good sonnet will starve it entirely away.” - -Darcy only smiled; and the general pause which ensued made Elizabeth -tremble lest her mother should be exposing herself again. She longed to -speak, but could think of nothing to say; and after a short silence Mrs. -Bennet began repeating her thanks to Mr. Bingley for his kindness to -Jane, with an apology for troubling him also with Lizzy. Mr. Bingley was -unaffectedly civil in his answer, and forced his younger sister to be -civil also, and say what the occasion required. She performed her part, -indeed, without much graciousness, but Mrs. Bennet was satisfied, and -soon afterwards ordered her carriage. Upon this signal, the youngest of -her daughters put herself forward. The two girls had been whispering to -each other during the whole visit; and the result of it was, that the -youngest should tax Mr. Bingley with having promised on his first coming -into the country to give a ball at Netherfield. - -Lydia was a stout, well-grown girl of fifteen, with a fine complexion -and good-humoured countenance; a favourite with her mother, whose -affection had brought her into public at an early age. She had high -animal spirits, and a sort of natural self-consequence, which the -attentions of the officers, to whom her uncle’s good dinners and her -own easy manners recommended her, had increased into assurance. She was -very equal, therefore, to address Mr. Bingley on the subject of the -ball, and abruptly reminded him of his promise; adding, that it would be -the most shameful thing in the world if he did not keep it. His answer -to this sudden attack was delightful to her mother’s ear. - -“I am perfectly ready, I assure you, to keep my engagement; and, when -your sister is recovered, you shall, if you please, name the very day of -the ball. But you would not wish to be dancing while she is ill?” - -Lydia declared herself satisfied. “Oh yes--it would be much better to -wait till Jane was well; and by that time, most likely, Captain Carter -would be at Meryton again. And when you have given _your_ ball,” she -added, “I shall insist on their giving one also. I shall tell Colonel -Forster it will be quite a shame if he does not.” - -Mrs. Bennet and her daughters then departed, and Elizabeth returned -instantly to Jane, leaving her own and her relations’ behaviour to the -remarks of the two ladies and Mr. Darcy; the latter of whom, however, -could not be prevailed on to join in their censure of _her_, in spite of -all Miss Bingley’s witticisms on _fine eyes_. - - - - -[Illustration] - - - - -CHAPTER X. - - -[Illustration] - -The day passed much as the day before had done. Mrs. Hurst and Miss -Bingley had spent some hours of the morning with the invalid, who -continued, though slowly, to mend; and, in the evening, Elizabeth joined -their party in the drawing-room. The loo table, however, did not appear. -Mr. Darcy was writing, and Miss Bingley, seated near him, was watching -the progress of his letter, and repeatedly calling off his attention by -messages to his sister. Mr. Hurst and Mr. Bingley were at piquet, and -Mrs. Hurst was observing their game. - -Elizabeth took up some needlework, and was sufficiently amused in -attending to what passed between Darcy and his companion. The perpetual -commendations of the lady either on his hand-writing, or on the evenness -of his lines, or on the length of his letter, with the perfect unconcern -with which her praises were received, formed a curious dialogue, and was -exactly in unison with her opinion of each. - -“How delighted Miss Darcy will be to receive such a letter!” - -He made no answer. - -“You write uncommonly fast.” - -“You are mistaken. I write rather slowly.” - -“How many letters you must have occasion to write in the course of a -year! Letters of business, too! How odious I should think them!” - -“It is fortunate, then, that they fall to my lot instead of to yours.” - -“Pray tell your sister that I long to see her.” - -“I have already told her so once, by your desire.” - -“I am afraid you do not like your pen. Let me mend it for you. I mend -pens remarkably well.” - -“Thank you--but I always mend my own.” - -“How can you contrive to write so even?” - -He was silent. - -“Tell your sister I am delighted to hear of her improvement on the harp, -and pray let her know that I am quite in raptures with her beautiful -little design for a table, and I think it infinitely superior to Miss -Grantley’s.” - -“Will you give me leave to defer your raptures till I write again? At -present I have not room to do them justice.” - -“Oh, it is of no consequence. I shall see her in January. But do you -always write such charming long letters to her, Mr. Darcy?” - -“They are generally long; but whether always charming, it is not for me -to determine.” - -“It is a rule with me, that a person who can write a long letter with -ease cannot write ill.” - -“That will not do for a compliment to Darcy, Caroline,” cried her -brother, “because he does _not_ write with ease. He studies too much -for words of four syllables. Do not you, Darcy?” - -“My style of writing is very different from yours.” - -“Oh,” cried Miss Bingley, “Charles writes in the most careless way -imaginable. He leaves out half his words, and blots the rest.” - -“My ideas flow so rapidly that I have not time to express them; by which -means my letters sometimes convey no ideas at all to my correspondents.” - -“Your humility, Mr. Bingley,” said Elizabeth, “must disarm reproof.” - -“Nothing is more deceitful,” said Darcy, “than the appearance of -humility. It is often only carelessness of opinion, and sometimes an -indirect boast.” - -“And which of the two do you call _my_ little recent piece of modesty?” - -“The indirect boast; for you are really proud of your defects in -writing, because you consider them as proceeding from a rapidity of -thought and carelessness of execution, which, if not estimable, you -think at least highly interesting. The power of doing anything with -quickness is always much prized by the possessor, and often without any -attention to the imperfection of the performance. When you told Mrs. -Bennet this morning, that if you ever resolved on quitting Netherfield -you should be gone in five minutes, you meant it to be a sort of -panegyric, of compliment to yourself; and yet what is there so very -laudable in a precipitance which must leave very necessary business -undone, and can be of no real advantage to yourself or anyone else?” - -“Nay,” cried Bingley, “this is too much, to remember at night all the -foolish things that were said in the morning. And yet, upon my honour, I -believed what I said of myself to be true, and I believe it at this -moment. At least, therefore, I did not assume the character of needless -precipitance merely to show off before the ladies.” - -“I daresay you believed it; but I am by no means convinced that you -would be gone with such celerity. Your conduct would be quite as -dependent on chance as that of any man I know; and if, as you were -mounting your horse, a friend were to say, ‘Bingley, you had better stay -till next week,’ you would probably do it--you would probably not -go--and, at another word, might stay a month.” - -“You have only proved by this,” cried Elizabeth, “that Mr. Bingley did -not do justice to his own disposition. You have shown him off now much -more than he did himself.” - -“I am exceedingly gratified,” said Bingley, “by your converting what my -friend says into a compliment on the sweetness of my temper. But I am -afraid you are giving it a turn which that gentleman did by no means -intend; for he would certainly think the better of me if, under such a -circumstance, I were to give a flat denial, and ride off as fast as I -could.” - -“Would Mr. Darcy then consider the rashness of your original intention -as atoned for by your obstinacy in adhering to it?” - -“Upon my word, I cannot exactly explain the matter--Darcy must speak for -himself.” - -“You expect me to account for opinions which you choose to call mine, -but which I have never acknowledged. Allowing the case, however, to -stand according to your representation, you must remember, Miss Bennet, -that the friend who is supposed to desire his return to the house, and -the delay of his plan, has merely desired it, asked it without offering -one argument in favour of its propriety.” - -“To yield readily--easily--to the _persuasion_ of a friend is no merit -with you.” - -“To yield without conviction is no compliment to the understanding of -either.” - -“You appear to me, Mr. Darcy, to allow nothing for the influence of -friendship and affection. A regard for the requester would often make -one readily yield to a request, without waiting for arguments to reason -one into it. I am not particularly speaking of such a case as you have -supposed about Mr. Bingley. We may as well wait, perhaps, till the -circumstance occurs, before we discuss the discretion of his behaviour -thereupon. But in general and ordinary cases, between friend and friend, -where one of them is desired by the other to change a resolution of no -very great moment, should you think ill of that person for complying -with the desire, without waiting to be argued into it?” - -“Will it not be advisable, before we proceed on this subject, to arrange -with rather more precision the degree of importance which is to -appertain to this request, as well as the degree of intimacy subsisting -between the parties?” - -“By all means,” cried Bingley; “let us hear all the particulars, not -forgetting their comparative height and size, for that will have more -weight in the argument, Miss Bennet, than you may be aware of. I assure -you that if Darcy were not such a great tall fellow, in comparison with -myself, I should not pay him half so much deference. I declare I do not -know a more awful object than Darcy on particular occasions, and in -particular places; at his own house especially, and of a Sunday evening, -when he has nothing to do.” - -Mr. Darcy smiled; but Elizabeth thought she could perceive that he was -rather offended, and therefore checked her laugh. Miss Bingley warmly -resented the indignity he had received, in an expostulation with her -brother for talking such nonsense. - -“I see your design, Bingley,” said his friend. “You dislike an argument, -and want to silence this.” - -“Perhaps I do. Arguments are too much like disputes. If you and Miss -Bennet will defer yours till I am out of the room, I shall be very -thankful; and then you may say whatever you like of me.” - -“What you ask,” said Elizabeth, “is no sacrifice on my side; and Mr. -Darcy had much better finish his letter.” - -Mr. Darcy took her advice, and did finish his letter. - -When that business was over, he applied to Miss Bingley and Elizabeth -for the indulgence of some music. Miss Bingley moved with alacrity to -the pianoforte, and after a polite request that Elizabeth would lead the -way, which the other as politely and more earnestly negatived, she -seated herself. - -Mrs. Hurst sang with her sister; and while they were thus employed, -Elizabeth could not help observing, as she turned over some music-books -that lay on the instrument, how frequently Mr. Darcy’s eyes were fixed -on her. She hardly knew how to suppose that she could be an object of -admiration to so great a man, and yet that he should look at her because -he disliked her was still more strange. She could only imagine, however, -at last, that she drew his notice because there was something about her -more wrong and reprehensible, according to his ideas of right, than in -any other person present. The supposition did not pain her. She liked -him too little to care for his approbation. - -After playing some Italian songs, Miss Bingley varied the charm by a -lively Scotch air; and soon afterwards Mr. Darcy, drawing near -Elizabeth, said to her,-- - -“Do you not feel a great inclination, Miss Bennet, to seize such an -opportunity of dancing a reel?” - -She smiled, but made no answer. He repeated the question, with some -surprise at her silence. - -“Oh,” said she, “I heard you before; but I could not immediately -determine what to say in reply. You wanted me, I know, to say ‘Yes,’ -that you might have the pleasure of despising my taste; but I always -delight in overthrowing those kind of schemes, and cheating a person of -their premeditated contempt. I have, therefore, made up my mind to tell -you that I do not want to dance a reel at all; and now despise me if you -dare.” - -“Indeed I do not dare.” - -Elizabeth, having rather expected to affront him, was amazed at his -gallantry; but there was a mixture of sweetness and archness in her -manner which made it difficult for her to affront anybody, and Darcy had -never been so bewitched by any woman as he was by her. He really -believed that, were it not for the inferiority of her connections, he -should be in some danger. - -Miss Bingley saw, or suspected, enough to be jealous; and her great -anxiety for the recovery of her dear friend Jane received some -assistance from her desire of getting rid of Elizabeth. - -She often tried to provoke Darcy into disliking her guest, by talking of -their supposed marriage, and planning his happiness in such an alliance. - -“I hope,” said she, as they were walking together in the shrubbery the -next day, “you will give your mother-in-law a few hints, when this -desirable event takes place, as to the advantage of holding her tongue; -and if you can compass it, to cure the younger girls of running after -the officers. And, if I may mention so delicate a subject, endeavour to -check that little something, bordering on conceit and impertinence, -which your lady possesses.” - -[Illustration: - - “No, no; stay where you are” - -[_Copyright 1894 by George Allen._]] - -“Have you anything else to propose for my domestic felicity?” - -“Oh yes. Do let the portraits of your uncle and aunt Philips be placed -in the gallery at Pemberley. Put them next to your great-uncle the -judge. They are in the same profession, you know, only in different -lines. As for your Elizabeth’s picture, you must not attempt to have it -taken, for what painter could do justice to those beautiful eyes?” - -“It would not be easy, indeed, to catch their expression; but their -colour and shape, and the eyelashes, so remarkably fine, might be -copied.” - -At that moment they were met from another walk by Mrs. Hurst and -Elizabeth herself. - -“I did not know that you intended to walk,” said Miss Bingley, in some -confusion, lest they had been overheard. - -“You used us abominably ill,” answered Mrs. Hurst, “running away without -telling us that you were coming out.” - -Then taking the disengaged arm of Mr. Darcy, she left Elizabeth to walk -by herself. The path just admitted three. Mr. Darcy felt their rudeness, -and immediately said,-- - -“This walk is not wide enough for our party. We had better go into the -avenue.” - -But Elizabeth, who had not the least inclination to remain with them, -laughingly answered,-- - -“No, no; stay where you are. You are charmingly grouped, and appear to -uncommon advantage. The picturesque would be spoilt by admitting a -fourth. Good-bye.” - -She then ran gaily off, rejoicing, as she rambled about, in the hope of -being at home again in a day or two. Jane was already so much recovered -as to intend leaving her room for a couple of hours that evening. - - - - -[Illustration: - - “Piling up the fire” - -[_Copyright 1894 by George Allen._]] - - - - -CHAPTER XI. - - -[Illustration] - -When the ladies removed after dinner Elizabeth ran up to her sister, and -seeing her well guarded from cold, attended her into the drawing-room, -where she was welcomed by her two friends with many professions of -pleasure; and Elizabeth had never seen them so agreeable as they were -during the hour which passed before the gentlemen appeared. Their powers -of conversation were considerable. They could describe an entertainment -with accuracy, relate an anecdote with humour, and laugh at their -acquaintance with spirit. - -But when the gentlemen entered, Jane was no longer the first object; -Miss Bingley’s eyes were instantly turned towards Darcy, and she had -something to say to him before he had advanced many steps. He addressed -himself directly to Miss Bennet with a polite congratulation; Mr. Hurst -also made her a slight bow, and said he was “very glad;” but diffuseness -and warmth remained for Bingley’s salutation. He was full of joy and -attention. The first half hour was spent in piling up the fire, lest she -should suffer from the change of room; and she removed, at his desire, -to the other side of the fireplace, that she might be farther from the -door. He then sat down by her, and talked scarcely to anyone else. -Elizabeth, at work in the opposite corner, saw it all with great -delight. - -When tea was over Mr. Hurst reminded his sister-in-law of the -card-table--but in vain. She had obtained private intelligence that Mr. -Darcy did not wish for cards, and Mr. Hurst soon found even his open -petition rejected. She assured him that no one intended to play, and the -silence of the whole party on the subject seemed to justify her. Mr. -Hurst had, therefore, nothing to do but to stretch himself on one of the -sofas and go to sleep. Darcy took up a book. Miss Bingley did the same; -and Mrs. Hurst, principally occupied in playing with her bracelets and -rings, joined now and then in her brother’s conversation with Miss -Bennet. - -Miss Bingley’s attention was quite as much engaged in watching Mr. -Darcy’s progress through _his_ book, as in reading her own; and she was -perpetually either making some inquiry, or looking at his page. She -could not win him, however, to any conversation; he merely answered her -question and read on. At length, quite exhausted by the attempt to be -amused with her own book, which she had only chosen because it was the -second volume of his, she gave a great yawn and said, “How pleasant it -is to spend an evening in this way! I declare, after all, there is no -enjoyment like reading! How much sooner one tires of anything than of a -book! When I have a house of my own, I shall be miserable if I have not -an excellent library.” - -No one made any reply. She then yawned again, threw aside her book, and -cast her eyes round the room in quest of some amusement; when, hearing -her brother mentioning a ball to Miss Bennet, she turned suddenly -towards him and said,-- - -“By the bye Charles, are you really serious in meditating a dance at -Netherfield? I would advise you, before you determine on it, to consult -the wishes of the present party; I am much mistaken if there are not -some among us to whom a ball would be rather a punishment than a -pleasure.” - -“If you mean Darcy,” cried her brother, “he may go to bed, if he -chooses, before it begins; but as for the ball, it is quite a settled -thing, and as soon as Nicholls has made white soup enough I shall send -round my cards.” - -“I should like balls infinitely better,” she replied, “if they were -carried on in a different manner; but there is something insufferably -tedious in the usual process of such a meeting. It would surely be much -more rational if conversation instead of dancing made the order of the -day.” - -“Much more rational, my dear Caroline, I dare say; but it would not be -near so much like a ball.” - -Miss Bingley made no answer, and soon afterwards got up and walked about -the room. Her figure was elegant, and she walked well; but Darcy, at -whom it was all aimed, was still inflexibly studious. In the -desperation of her feelings, she resolved on one effort more; and, -turning to Elizabeth, said,-- - -“Miss Eliza Bennet, let me persuade you to follow my example, and take a -turn about the room. I assure you it is very refreshing after sitting so -long in one attitude.” - -Elizabeth was surprised, but agreed to it immediately. Miss Bingley -succeeded no less in the real object of her civility: Mr. Darcy looked -up. He was as much awake to the novelty of attention in that quarter as -Elizabeth herself could be, and unconsciously closed his book. He was -directly invited to join their party, but he declined it, observing that -he could imagine but two motives for their choosing to walk up and down -the room together, with either of which motives his joining them would -interfere. What could he mean? She was dying to know what could be his -meaning--and asked Elizabeth whether she could at all understand him. - -“Not at all,” was her answer; “but, depend upon it, he means to be -severe on us, and our surest way of disappointing him will be to ask -nothing about it.” - -Miss Bingley, however, was incapable of disappointing Mr. Darcy in -anything, and persevered, therefore, in requiring an explanation of his -two motives. - -“I have not the smallest objection to explaining them,” said he, as soon -as she allowed him to speak. “You either choose this method of passing -the evening because you are in each other’s confidence, and have secret -affairs to discuss, or because you are conscious that your figures -appear to the greatest advantage in walking: if the first, I should be -completely in your way; and if the second, I can admire you much better -as I sit by the fire.” - -“Oh, shocking!” cried Miss Bingley. “I never heard anything so -abominable. How shall we punish him for such a speech?” - -“Nothing so easy, if you have but the inclination,” said Elizabeth. “We -can all plague and punish one another. Tease him--laugh at him. Intimate -as you are, you must know how it is to be done.” - -“But upon my honour I do _not_. I do assure you that my intimacy has not -yet taught me _that_. Tease calmness of temper and presence of mind! No, -no; I feel he may defy us there. And as to laughter, we will not expose -ourselves, if you please, by attempting to laugh without a subject. Mr. -Darcy may hug himself.” - -“Mr. Darcy is not to be laughed at!” cried Elizabeth. “That is an -uncommon advantage, and uncommon I hope it will continue, for it would -be a great loss to _me_ to have many such acquaintance. I dearly love a -laugh.” - -“Miss Bingley,” said he, “has given me credit for more than can be. The -wisest and best of men,--nay, the wisest and best of their actions,--may -be rendered ridiculous by a person whose first object in life is a -joke.” - -“Certainly,” replied Elizabeth, “there are such people, but I hope I am -not one of _them_. I hope I never ridicule what is wise or good. Follies -and nonsense, whims and inconsistencies, _do_ divert me, I own, and I -laugh at them whenever I can. But these, I suppose, are precisely what -you are without.” - -“Perhaps that is not possible for anyone. But it has been the study of -my life to avoid those weaknesses which often expose a strong -understanding to ridicule.” - -“Such as vanity and pride.” - -“Yes, vanity is a weakness indeed. But pride--where there is a real -superiority of mind--pride will be always under good regulation.” - -Elizabeth turned away to hide a smile. - -“Your examination of Mr. Darcy is over, I presume,” said Miss Bingley; -“and pray what is the result?” - -“I am perfectly convinced by it that Mr. Darcy has no defect. He owns it -himself without disguise.” - -“No,” said Darcy, “I have made no such pretension. I have faults enough, -but they are not, I hope, of understanding. My temper I dare not vouch -for. It is, I believe, too little yielding; certainly too little for the -convenience of the world. I cannot forget the follies and vices of -others so soon as I ought, nor their offences against myself. My -feelings are not puffed about with every attempt to move them. My temper -would perhaps be called resentful. My good opinion once lost is lost for -ever.” - -“_That_ is a failing, indeed!” cried Elizabeth. “Implacable resentment -_is_ a shade in a character. But you have chosen your fault well. I -really cannot _laugh_ at it. You are safe from me.” - -“There is, I believe, in every disposition a tendency to some particular -evil, a natural defect, which not even the best education can overcome.” - -“And _your_ defect is a propensity to hate everybody.” - -“And yours,” he replied, with a smile, “is wilfully to misunderstand -them.” - -“Do let us have a little music,” cried Miss Bingley, tired of a -conversation in which she had no share. “Louisa, you will not mind my -waking Mr. Hurst.” - -Her sister made not the smallest objection, and the pianoforte was -opened; and Darcy, after a few moments’ recollection, was not sorry for -it. He began to feel the danger of paying Elizabeth too much attention. - - - - -[Illustration] - - - - -CHAPTER XII. - - -[Illustration] - -In consequence of an agreement between the sisters, Elizabeth wrote the -next morning to her mother, to beg that the carriage might be sent for -them in the course of the day. But Mrs. Bennet, who had calculated on -her daughters remaining at Netherfield till the following Tuesday, which -would exactly finish Jane’s week, could not bring herself to receive -them with pleasure before. Her answer, therefore, was not propitious, at -least not to Elizabeth’s wishes, for she was impatient to get home. Mrs. -Bennet sent them word that they could not possibly have the carriage -before Tuesday; and in her postscript it was added, that if Mr. Bingley -and his sister pressed them to stay longer, she could spare them very -well. Against staying longer, however, Elizabeth was positively -resolved--nor did she much expect it would be asked; and fearful, on the -contrary, of being considered as intruding themselves needlessly long, -she urged Jane to borrow Mr. Bingley’s carriage immediately, and at -length it was settled that their original design of leaving Netherfield -that morning should be mentioned, and the request made. - -The communication excited many professions of concern; and enough was -said of wishing them to stay at least till the following day to work on -Jane; and till the morrow their going was deferred. Miss Bingley was -then sorry that she had proposed the delay; for her jealousy and dislike -of one sister much exceeded her affection for the other. - -The master of the house heard with real sorrow that they were to go so -soon, and repeatedly tried to persuade Miss Bennet that it would not be -safe for her--that she was not enough recovered; but Jane was firm where -she felt herself to be right. - -To Mr. Darcy it was welcome intelligence: Elizabeth had been at -Netherfield long enough. She attracted him more than he liked; and Miss -Bingley was uncivil to _her_ and more teasing than usual to himself. He -wisely resolved to be particularly careful that no sign of admiration -should _now_ escape him--nothing that could elevate her with the hope of -influencing his felicity; sensible that, if such an idea had been -suggested, his behaviour during the last day must have material weight -in confirming or crushing it. Steady to his purpose, he scarcely spoke -ten words to her through the whole of Saturday: and though they were at -one time left by themselves for half an hour, he adhered most -conscientiously to his book, and would not even look at her. - -On Sunday, after morning service, the separation, so agreeable to almost -all, took place. Miss Bingley’s civility to Elizabeth increased at last -very rapidly, as well as her affection for Jane; and when they parted, -after assuring the latter of the pleasure it would always give her to -see her either at Longbourn or Netherfield, and embracing her most -tenderly, she even shook hands with the former. Elizabeth took leave of -the whole party in the liveliest spirits. - -They were not welcomed home very cordially by their mother. Mrs. Bennet -wondered at their coming, and thought them very wrong to give so much -trouble, and was sure Jane would have caught cold again. But their -father, though very laconic in his expressions of pleasure, was really -glad to see them; he had felt their importance in the family circle. The -evening conversation, when they were all assembled, had lost much of its -animation, and almost all its sense, by the absence of Jane and -Elizabeth. - -They found Mary, as usual, deep in the study of thorough bass and human -nature; and had some new extracts to admire and some new observations of -threadbare morality to listen to. Catherine and Lydia had information -for them of a different sort. Much had been done, and much had been said -in the regiment since the preceding Wednesday; several of the officers -had dined lately with their uncle; a private had been flogged; and it -had actually been hinted that Colonel Forster was going to be married. - - - - -[Illustration] - - - - -CHAPTER XIII - - -[Illustration] - -“I hope, my dear,” said Mr. Bennet to his wife, as they were at -breakfast the next morning, “that you have ordered a good dinner to-day, -because I have reason to expect an addition to our family party.” - -“Who do you mean, my dear? I know of nobody that is coming, I am sure, -unless Charlotte Lucas should happen to call in; and I hope _my_ dinners -are good enough for her. I do not believe she often sees such at home.” - -“The person of whom I speak is a gentleman and a stranger.” - -Mrs. Bennet’s eyes sparkled. “A gentleman and a stranger! It is Mr. -Bingley, I am sure. Why, Jane--you never dropped a word of this--you sly -thing! Well, I am sure I shall be extremely glad to see Mr. Bingley. -But--good Lord! how unlucky! there is not a bit of fish to be got -to-day. Lydia, my love, ring the bell. I must speak to Hill this -moment.” - -“It is _not_ Mr. Bingley,” said her husband; “it is a person whom I -never saw in the whole course of my life.” - -This roused a general astonishment; and he had the pleasure of being -eagerly questioned by his wife and five daughters at once. - -After amusing himself some time with their curiosity, he thus -explained:--“About a month ago I received this letter, and about a -fortnight ago I answered it; for I thought it a case of some delicacy, -and requiring early attention. It is from my cousin, Mr. Collins, who, -when I am dead, may turn you all out of this house as soon as he -pleases.” - -“Oh, my dear,” cried his wife, “I cannot bear to hear that mentioned. -Pray do not talk of that odious man. I do think it is the hardest thing -in the world, that your estate should be entailed away from your own -children; and I am sure, if I had been you, I should have tried long ago -to do something or other about it.” - -Jane and Elizabeth attempted to explain to her the nature of an entail. -They had often attempted it before: but it was a subject on which Mrs. -Bennet was beyond the reach of reason; and she continued to rail -bitterly against the cruelty of settling an estate away from a family of -five daughters, in favour of a man whom nobody cared anything about. - -“It certainly is a most iniquitous affair,” said Mr. Bennet; “and -nothing can clear Mr. Collins from the guilt of inheriting Longbourn. -But if you will listen to his letter, you may, perhaps, be a little -softened by his manner of expressing himself.” - -“No, that I am sure I shall not: and I think it was very impertinent of -him to write to you at all, and very hypocritical. I hate such false -friends. Why could not he keep on quarrelling with you, as his father -did before him?” - -“Why, indeed, he does seem to have had some filial scruples on that -head, as you will hear.” - - /* RIGHT “Hunsford, near Westerham, Kent, _15th October_. */ - -“Dear Sir, - - “The disagreement subsisting between yourself and my late honoured - father always gave me much uneasiness; and, since I have had the - misfortune to lose him, I have frequently wished to heal the - breach: but, for some time, I was kept back by my own doubts, - fearing lest it might seem disrespectful to his memory for me to be - on good terms with anyone with whom it had always pleased him to be - at variance.”--‘There, Mrs. Bennet.’--“My mind, however, is now - made up on the subject; for, having received ordination at Easter, - I have been so fortunate as to be distinguished by the patronage of - the Right Honourable Lady Catherine de Bourgh, widow of Sir Lewis - de Bourgh, whose bounty and beneficence has preferred me to the - valuable rectory of this parish, where it shall be my earnest - endeavour to demean myself with grateful respect towards her - Ladyship, and be ever ready to perform those rites and ceremonies - which are instituted by the Church of England. As a clergyman, - moreover, I feel it my duty to promote and establish the blessing - of peace in all families within the reach of my influence; and on - these grounds I flatter myself that my present overtures of - good-will are highly commendable, and that the circumstance of my - being next in the entail of Longbourn estate will be kindly - overlooked on your side, and not lead you to reject the offered - olive branch. I cannot be otherwise than concerned at being the - means of injuring your amiable daughters, and beg leave to - apologize for it, as well as to assure you of my readiness to make - them every possible amends; but of this hereafter. If you should - have no objection to receive me into your house, I propose myself - the satisfaction of waiting on you and your family, Monday, - November 18th, by four o’clock, and shall probably trespass on your - hospitality till the Saturday se’nnight following, which I can do - without any inconvenience, as Lady Catherine is far from objecting - to my occasional absence on a Sunday, provided that some other - clergyman is engaged to do the duty of the day. I remain, dear sir, - with respectful compliments to your lady and daughters, your - well-wisher and friend, - -“WILLIAM COLLINS.” - -“At four o’clock, therefore, we may expect this peace-making gentleman,” -said Mr. Bennet, as he folded up the letter. “He seems to be a most -conscientious and polite young man, upon my word; and, I doubt not, will -prove a valuable acquaintance, especially if Lady Catherine should be so -indulgent as to let him come to us again.” - -“There is some sense in what he says about the girls, however; and, if -he is disposed to make them any amends, I shall not be the person to -discourage him.” - -“Though it is difficult,” said Jane, “to guess in what way he can mean -to make us the atonement he thinks our due, the wish is certainly to his -credit.” - -Elizabeth was chiefly struck with his extraordinary deference for Lady -Catherine, and his kind intention of christening, marrying, and burying -his parishioners whenever it were required. - -“He must be an oddity, I think,” said she. “I cannot make him out. There -is something very pompous in his style. And what can he mean by -apologizing for being next in the entail? We cannot suppose he would -help it, if he could. Can he be a sensible man, sir?” - -“No, my dear; I think not. I have great hopes of finding him quite the -reverse. There is a mixture of servility and self-importance in his -letter which promises well. I am impatient to see him.” - -“In point of composition,” said Mary, “his letter does not seem -defective. The idea of the olive branch perhaps is not wholly new, yet I -think it is well expressed.” - -To Catherine and Lydia neither the letter nor its writer were in any -degree interesting. It was next to impossible that their cousin should -come in a scarlet coat, and it was now some weeks since they had -received pleasure from the society of a man in any other colour. As for -their mother, Mr. Collins’s letter had done away much of her ill-will, -and she was preparing to see him with a degree of composure which -astonished her husband and daughters. - -Mr. Collins was punctual to his time, and was received with great -politeness by the whole family. Mr. Bennet indeed said little; but the -ladies were ready enough to talk, and Mr. Collins seemed neither in need -of encouragement, nor inclined to be silent himself. He was a tall, -heavy-looking young man of five-and-twenty. His air was grave and -stately, and his manners were very formal. He had not been long seated -before he complimented Mrs. Bennet on having so fine a family of -daughters, said he had heard much of their beauty, but that, in this -instance, fame had fallen short of the truth; and added, that he did not -doubt her seeing them all in due time well disposed of in marriage. This -gallantry was not much to the taste of some of his hearers; but Mrs. -Bennet, who quarrelled with no compliments, answered most readily,-- - -“You are very kind, sir, I am sure; and I wish with all my heart it may -prove so; for else they will be destitute enough. Things are settled so -oddly.” - -“You allude, perhaps, to the entail of this estate.” - -“Ah, sir, I do indeed. It is a grievous affair to my poor girls, you -must confess. Not that I mean to find fault with _you_, for such things, -I know, are all chance in this world. There is no knowing how estates -will go when once they come to be entailed.” - -“I am very sensible, madam, of the hardship to my fair cousins, and -could say much on the subject, but that I am cautious of appearing -forward and precipitate. But I can assure the young ladies that I come -prepared to admire them. At present I will not say more, but, perhaps, -when we are better acquainted----” - -He was interrupted by a summons to dinner; and the girls smiled on each -other. They were not the only objects of Mr. Collins’s admiration. The -hall, the dining-room, and all its furniture, were examined and praised; -and his commendation of everything would have touched Mrs. Bennet’s -heart, but for the mortifying supposition of his viewing it all as his -own future property. The dinner, too, in its turn, was highly admired; -and he begged to know to which of his fair cousins the excellence of its -cookery was owing. But here he was set right by Mrs. Bennet, who assured -him, with some asperity, that they were very well able to keep a good -cook, and that her daughters had nothing to do in the kitchen. He begged -pardon for having displeased her. In a softened tone she declared -herself not at all offended; but he continued to apologize for about a -quarter of an hour. - - - - -[Illustration] - - - - -CHAPTER XIV - - -[Illustration] - -During dinner, Mr. Bennet scarcely spoke at all; but when the servants -were withdrawn, he thought it time to have some conversation with his -guest, and therefore started a subject in which he expected him to -shine, by observing that he seemed very fortunate in his patroness. Lady -Catherine de Bourgh’s attention to his wishes, and consideration for his -comfort, appeared very remarkable. Mr. Bennet could not have chosen -better. Mr. Collins was eloquent in her praise. The subject elevated him -to more than usual solemnity of manner; and with a most important aspect -he protested that he had never in his life witnessed such behaviour in a -person of rank--such affability and condescension, as he had himself -experienced from Lady Catherine. She had been graciously pleased to -approve of both the discourses which he had already had the honour of -preaching before her. She had also asked him twice to dine at Rosings, -and had sent for him only the Saturday before, to make up her pool of -quadrille in the evening. Lady Catherine was reckoned proud by many -people, he knew, but _he_ had never seen anything but affability in her. -She had always spoken to him as she would to any other gentleman; she -made not the smallest objection to his joining in the society of the -neighbourhood, nor to his leaving his parish occasionally for a week or -two to visit his relations. She had even condescended to advise him to -marry as soon as he could, provided he chose with discretion; and had -once paid him a visit in his humble parsonage, where she had perfectly -approved all the alterations he had been making, and had even vouchsafed -to suggest some herself,--some shelves in the closets upstairs. - -“That is all very proper and civil, I am sure,” said Mrs. Bennet, “and I -dare say she is a very agreeable woman. It is a pity that great ladies -in general are not more like her. Does she live near you, sir?” - -“The garden in which stands my humble abode is separated only by a lane -from Rosings Park, her Ladyship’s residence.” - -“I think you said she was a widow, sir? has she any family?” - -“She has one only daughter, the heiress of Rosings, and of very -extensive property.” - -“Ah,” cried Mrs. Bennet, shaking her head, “then she is better off than -many girls. And what sort of young lady is she? Is she handsome?” - -“She is a most charming young lady, indeed. Lady Catherine herself says -that, in point of true beauty, Miss de Bourgh is far superior to the -handsomest of her sex; because there is that in her features which marks -the young woman of distinguished birth. She is unfortunately of a sickly -constitution, which has prevented her making that progress in many -accomplishments which she could not otherwise have failed of, as I am -informed by the lady who superintended her education, and who still -resides with them. But she is perfectly amiable, and often condescends -to drive by my humble abode in her little phaeton and ponies.” - -“Has she been presented? I do not remember her name among the ladies at -court.” - -“Her indifferent state of health unhappily prevents her being in town; -and by that means, as I told Lady Catherine myself one day, has deprived -the British Court of its brightest ornament. Her Ladyship seemed pleased -with the idea; and you may imagine that I am happy on every occasion to -offer those little delicate compliments which are always acceptable to -ladies. I have more than once observed to Lady Catherine, that her -charming daughter seemed born to be a duchess; and that the most -elevated rank, instead of giving her consequence, would be adorned by -her. These are the kind of little things which please her Ladyship, and -it is a sort of attention which I conceive myself peculiarly bound to -pay.” - -“You judge very properly,” said Mr. Bennet; “and it is happy for you -that you possess the talent of flattering with delicacy. May I ask -whether these pleasing attentions proceed from the impulse of the -moment, or are the result of previous study?” - -“They arise chiefly from what is passing at the time; and though I -sometimes amuse myself with suggesting and arranging such little elegant -compliments as may be adapted to ordinary occasions, I always wish to -give them as unstudied an air as possible.” - -Mr. Bennet’s expectations were fully answered. His cousin was as absurd -as he had hoped; and he listened to him with the keenest enjoyment, -maintaining at the same time the most resolute composure of countenance, -and, except in an occasional glance at Elizabeth, requiring no partner -in his pleasure. - -By tea-time, however, the dose had been enough, and Mr. Bennet was glad -to take his guest into the drawing-room again, and when tea was over, -glad to invite him - -[Illustration: - -“Protested -that he never read novels” H.T Feb 94 -] - -to read aloud to the ladies. Mr. Collins readily assented, and a book -was produced; but on beholding it (for everything announced it to be -from a circulating library) he started back, and, begging pardon, -protested that he never read novels. Kitty stared at him, and Lydia -exclaimed. Other books were produced, and after some deliberation he -chose “Fordyce’s Sermons.” Lydia gaped as he opened the volume; and -before he had, with very monotonous solemnity, read three pages, she -interrupted him with,-- - -“Do you know, mamma, that my uncle Philips talks of turning away -Richard? and if he does, Colonel Forster will hire him. My aunt told me -so herself on Saturday. I shall walk to Meryton to-morrow to hear more -about it, and to ask when Mr. Denny comes back from town.” - -Lydia was bid by her two eldest sisters to hold her tongue; but Mr. -Collins, much offended, laid aside his book, and said,-- - -“I have often observed how little young ladies are interested by books -of a serious stamp, though written solely for their benefit. It amazes -me, I confess; for certainly there can be nothing so advantageous to -them as instruction. But I will no longer importune my young cousin.” - -Then, turning to Mr. Bennet, he offered himself as his antagonist at -backgammon. Mr. Bennet accepted the challenge, observing that he acted -very wisely in leaving the girls to their own trifling amusements. Mrs. -Bennet and her daughters apologized most civilly for Lydia’s -interruption, and promised that it should not occur again, if he would -resume his book; but Mr. Collins, after assuring them that he bore his -young cousin no ill-will, and should never resent her behaviour as any -affront, seated himself at another table with Mr. Bennet, and prepared -for backgammon. - - - - -[Illustration] - - - - -CHAPTER XV. - - -[Illustration] - -Mr. Collins was not a sensible man, and the deficiency of nature had -been but little assisted by education or society; the greatest part of -his life having been spent under the guidance of an illiterate and -miserly father; and though he belonged to one of the universities, he -had merely kept the necessary terms without forming at it any useful -acquaintance. The subjection in which his father had brought him up had -given him originally great humility of manner; but it was now a good -deal counteracted by the self-conceit of a weak head, living in -retirement, and the consequential feelings of early and unexpected -prosperity. A fortunate chance had recommended him to Lady Catherine de -Bourgh when the living of Hunsford was vacant; and the respect which he -felt for her high rank, and his veneration for her as his patroness, -mingling with a very good opinion of himself, of his authority as a -clergyman, and his right as a rector, made him altogether a mixture of -pride and obsequiousness, self-importance and humility. - -Having now a good house and a very sufficient income, he intended to -marry; and in seeking a reconciliation with the Longbourn family he had -a wife in view, as he meant to choose one of the daughters, if he found -them as handsome and amiable as they were represented by common report. -This was his plan of amends--of atonement--for inheriting their father’s -estate; and he thought it an excellent one, full of eligibility and -suitableness, and excessively generous and disinterested on his own -part. - -His plan did not vary on seeing them. Miss Bennet’s lovely face -confirmed his views, and established all his strictest notions of what -was due to seniority; and for the first evening _she_ was his settled -choice. The next morning, however, made an alteration; for in a quarter -of an hour’s _tête-à-tête_ with Mrs. Bennet before breakfast, a -conversation beginning with his parsonage-house, and leading naturally -to the avowal of his hopes, that a mistress for it might be found at -Longbourn, produced from her, amid very complaisant smiles and general -encouragement, a caution against the very Jane he had fixed on. “As to -her _younger_ daughters, she could not take upon her to say--she could -not positively answer--but she did not _know_ of any prepossession;--her -_eldest_ daughter she must just mention--she felt it incumbent on her to -hint, was likely to be very soon engaged.” - -Mr. Collins had only to change from Jane to Elizabeth--and it was soon -done--done while Mrs. Bennet was stirring the fire. Elizabeth, equally -next to Jane in birth and beauty, succeeded her of course. - -Mrs. Bennet treasured up the hint, and trusted that she might soon have -two daughters married; and the man whom she could not bear to speak of -the day before, was now high in her good graces. - -Lydia’s intention of walking to Meryton was not forgotten: every sister -except Mary agreed to go with her; and Mr. Collins was to attend them, -at the request of Mr. Bennet, who was most anxious to get rid of him, -and have his library to himself; for thither Mr. Collins had followed -him after breakfast, and there he would continue, nominally engaged with -one of the largest folios in the collection, but really talking to Mr. -Bennet, with little cessation, of his house and garden at Hunsford. Such -doings discomposed Mr. Bennet exceedingly. In his library he had been -always sure of leisure and tranquillity; and though prepared, as he told -Elizabeth, to meet with folly and conceit in every other room in the -house, he was used to be free from them there: his civility, therefore, -was most prompt in inviting Mr. Collins to join his daughters in their -walk; and Mr. Collins, being in fact much better fitted for a walker -than a reader, was extremely well pleased to close his large book, and -go. - -In pompous nothings on his side, and civil assents on that of his -cousins, their time passed till they entered Meryton. The attention of -the younger ones was then no longer to be gained by _him_. Their eyes -were immediately wandering up the street in quest of the officers, and -nothing less than a very smart bonnet, indeed, or a really new muslin in -a shop window, could recall them. - -But the attention of every lady was soon caught by a young man, whom -they had never seen before, of most gentlemanlike appearance, walking -with an officer on the other side of the way. The officer was the very -Mr. Denny concerning whose return from London Lydia came to inquire, and -he bowed as they passed. All were struck with the stranger’s air, all -wondered who he could be; and Kitty and Lydia, determined if possible -to find out, led the way across the street, under pretence of wanting -something in an opposite shop, and fortunately had just gained the -pavement, when the two gentlemen, turning back, had reached the same -spot. Mr. Denny addressed them directly, and entreated permission to -introduce his friend, Mr. Wickham, who had returned with him the day -before from town, and, he was happy to say, had accepted a commission in -their corps. This was exactly as it should be; for the young man wanted -only regimentals to make him completely charming. His appearance was -greatly in his favour: he had all the best parts of beauty, a fine -countenance, a good figure, and very pleasing address. The introduction -was followed up on his side by a happy readiness of conversation--a -readiness at the same time perfectly correct and unassuming; and the -whole party were still standing and talking together very agreeably, -when the sound of horses drew their notice, and Darcy and Bingley were -seen riding down the street. On distinguishing the ladies of the group -the two gentlemen came directly towards them, and began the usual -civilities. Bingley was the principal spokesman, and Miss Bennet the -principal object. He was then, he said, on his way to Longbourn on -purpose to inquire after her. Mr. Darcy corroborated it with a bow, and -was beginning to determine not to fix his eyes on Elizabeth, when they -were suddenly arrested by the sight of the stranger; and Elizabeth -happening to see the countenance of both as they looked at each other, -was all astonishment at the effect of the meeting. Both changed colour, -one looked white, the other red. Mr. Wickham, after a few moments, -touched his hat--a salutation which Mr. Darcy just deigned to return. -What could be the meaning of it? It was impossible to imagine; it was -impossible not to long to know. - -In another minute Mr. Bingley, but without seeming to have noticed what -passed, took leave and rode on with his friend. - -Mr. Denny and Mr. Wickham walked with the young ladies to the door of -Mr. Philips’s house, and then made their bows, in spite of Miss Lydia’s -pressing entreaties that they would come in, and even in spite of Mrs. -Philips’s throwing up the parlour window, and loudly seconding the -invitation. - -Mrs. Philips was always glad to see her nieces; and the two eldest, from -their recent absence, were particularly welcome; and she was eagerly -expressing her surprise at their sudden return home, which, as their own -carriage had not fetched them, she should have known nothing about, if -she had not happened to see Mr. Jones’s shopboy in the street, who had -told her that they were not to send any more draughts to Netherfield, -because the Miss Bennets were come away, when her civility was claimed -towards Mr. Collins by Jane’s introduction of him. She received him with -her very best politeness, which he returned with as much more, -apologizing for his intrusion, without any previous acquaintance with -her, which he could not help flattering himself, however, might be -justified by his relationship to the young ladies who introduced him to -her notice. Mrs. Philips was quite awed by such an excess of good -breeding; but her contemplation of one stranger was soon put an end to -by exclamations and inquiries about the other, of whom, however, she -could only tell her nieces what they already knew, that Mr. Denny had -brought him from London, and that he was to have a lieutenant’s -commission in the ----shire. She had been watching him the last hour, -she said, as he walked up and down the street,--and had Mr. Wickham -appeared, Kitty and Lydia would certainly have continued the occupation; -but unluckily no one passed the windows now except a few of the -officers, who, in comparison with the stranger, were become “stupid, -disagreeable fellows.” Some of them were to dine with the Philipses the -next day, and their aunt promised to make her husband call on Mr. -Wickham, and give him an invitation also, if the family from Longbourn -would come in the evening. This was agreed to; and Mrs. Philips -protested that they would have a nice comfortable noisy game of lottery -tickets, and a little bit of hot supper afterwards. The prospect of such -delights was very cheering, and they parted in mutual good spirits. Mr. -Collins repeated his apologies in quitting the room, and was assured, -with unwearying civility, that they were perfectly needless. - -As they walked home, Elizabeth related to Jane what she had seen pass -between the two gentlemen; but though Jane would have defended either or -both, had they appeared to be wrong, she could no more explain such -behaviour than her sister. - -Mr. Collins on his return highly gratified Mrs. Bennet by admiring Mrs. -Philips’s manners and politeness. He protested that, except Lady -Catherine and her daughter, he had never seen a more elegant woman; for -she had not only received him with the utmost civility, but had even -pointedly included him in her invitation for the next evening, although -utterly unknown to her before. Something, he supposed, might be -attributed to his connection with them, but yet he had never met with so -much attention in the whole course of his life. - - - - -[Illustration] - - - - -CHAPTER XVI. - - -[Illustration] - -As no objection was made to the young people’s engagement with their -aunt, and all Mr. Collins’s scruples of leaving Mr. and Mrs. Bennet for -a single evening during his visit were most steadily resisted, the coach -conveyed him and his five cousins at a suitable hour to Meryton; and the -girls had the pleasure of hearing, as they entered the drawing-room, -that Mr. Wickham had accepted their uncle’s invitation, and was then in -the house. - -When this information was given, and they had all taken their seats, Mr. -Collins was at leisure to look around him and admire, and he was so much -struck with the size and furniture of the apartment, that he declared he -might almost have supposed himself in the small summer breakfast parlour -at Rosings; a comparison that did not at first convey much -gratification; but when Mrs. Philips understood from him what Rosings -was, and who was its proprietor, when she had listened to the -description of only one of Lady Catherine’s drawing-rooms, and found -that the chimney-piece alone had cost eight hundred pounds, she felt all -the force of the compliment, and would hardly have resented a comparison -with the housekeeper’s room. - -In describing to her all the grandeur of Lady Catherine and her mansion, -with occasional digressions in praise of his own humble abode, and the -improvements it was receiving, he was happily employed until the -gentlemen joined them; and he found in Mrs. Philips a very attentive -listener, whose opinion of his consequence increased with what she -heard, and who was resolving to retail it all among her neighbours as -soon as she could. To the girls, who could not listen to their cousin, -and who had nothing to do but to wish for an instrument, and examine -their own indifferent imitations of china on the mantel-piece, the -interval of waiting appeared very long. It was over at last, however. -The gentlemen did approach: and when Mr. Wickham walked into the room, -Elizabeth felt that she had neither been seeing him before, nor thinking -of him since, with the smallest degree of unreasonable admiration. The -officers of the ----shire were in general a very creditable, -gentlemanlike set and the best of them were of the present party; but -Mr, Wickham was as far beyond them all in person, countenance, air, and -walk, as _they_ were superior to the broad-faced stuffy uncle Philips, -breathing port wine, who followed them into the room. - -[Illustration: - -“The officers of the ----shire” - -[_Copyright 1894 by George Allen._]] - -Mr. Wickham was the happy man towards whom almost every female eye was -turned, and Elizabeth was the happy woman by whom he finally seated -himself; and the agreeable manner in which he immediately fell into -conversation, though it was only on its being a wet night, and on the -probability of a rainy season, made her feel that the commonest, -dullest, most threadbare topic might be rendered interesting by the -skill of the speaker. - -With such rivals for the notice of the fair as Mr. Wickham and the -officers, Mr. Collins seemed to sink into insignificance; to the young -ladies he certainly was nothing; but he had still at intervals a kind -listener in Mrs. Philips, and was, by her watchfulness, most abundantly -supplied with coffee and muffin. - -When the card tables were placed, he had an opportunity of obliging her, -in return, by sitting down to whist. - -“I know little of the game at present,” said he, “but I shall be glad to -improve myself; for in my situation of life----” Mrs. Philips was very -thankful for his compliance, but could not wait for his reason. - -Mr. Wickham did not play at whist, and with ready delight was he -received at the other table between Elizabeth and Lydia. At first there -seemed danger of Lydia’s engrossing him entirely, for she was a most -determined talker; but being likewise extremely fond of lottery tickets, -she soon grew too much interested in the game, too eager in making bets -and exclaiming after prizes, to have attention for anyone in particular. -Allowing for the common demands of the game, Mr. Wickham was therefore -at leisure to talk to Elizabeth, and she was very willing to hear him, -though what she chiefly wished to hear she could not hope to be told, -the history of his acquaintance with Mr. Darcy. She dared not even -mention that gentleman. Her curiosity, however, was unexpectedly -relieved. Mr. Wickham began the subject himself. He inquired how far -Netherfield was from Meryton; and, after receiving her answer, asked in -a hesitating manner how long Mr. Darcy had been staying there. - -“About a month,” said Elizabeth; and then, unwilling to let the subject -drop, added, “he is a man of very large property in Derbyshire, I -understand.” - -“Yes,” replied Wickham; “his estate there is a noble one. A clear ten -thousand per annum. You could not have met with a person more capable of -giving you certain information on that head than myself--for I have been -connected with his family, in a particular manner, from my infancy.” - -Elizabeth could not but look surprised. - -“You may well be surprised, Miss Bennet, at such an assertion, after -seeing, as you probably might, the very cold manner of our meeting -yesterday. Are you much acquainted with Mr. Darcy?” - -“As much as I ever wish to be,” cried Elizabeth, warmly. “I have spent -four days in the same house with him, and I think him very -disagreeable.” - -“I have no right to give _my_ opinion,” said Wickham, “as to his being -agreeable or otherwise. I am not qualified to form one. I have known him -too long and too well to be a fair judge. It is impossible for _me_ to -be impartial. But I believe your opinion of him would in general -astonish--and, perhaps, you would not express it quite so strongly -anywhere else. Here you are in your own family.” - -“Upon my word I say no more _here_ than I might say in any house in the -neighbourhood, except Netherfield. He is not at all liked in -Hertfordshire. Everybody is disgusted with his pride. You will not find -him more favourably spoken of by anyone.” - -“I cannot pretend to be sorry,” said Wickham, after a short -interruption, “that he or that any man should not be estimated beyond -their deserts; but with _him_ I believe it does not often happen. The -world is blinded by his fortune and consequence, or frightened by his -high and imposing manners, and sees him only as he chooses to be seen.” - -“I should take him, even on _my_ slight acquaintance, to be an -ill-tempered man.” - -Wickham only shook his head. - -“I wonder,” said he, at the next opportunity of speaking, “whether he is -likely to be in this country much longer.” - -“I do not at all know; but I _heard_ nothing of his going away when I -was at Netherfield. I hope your plans in favour of the ----shire will -not be affected by his being in the neighbourhood.” - -“Oh no--it is not for _me_ to be driven away by Mr. Darcy. If _he_ -wishes to avoid seeing _me_ he must go. We are not on friendly terms, -and it always gives me pain to meet him, but I have no reason for -avoiding _him_ but what I might proclaim to all the world--a sense of -very great ill-usage, and most painful regrets at his being what he is. -His father, Miss Bennet, the late Mr. Darcy, was one of the best men -that ever breathed, and the truest friend I ever had; and I can never be -in company with this Mr. Darcy without being grieved to the soul by a -thousand tender recollections. His behaviour to myself has been -scandalous; but I verily believe I could forgive him anything and -everything, rather than his disappointing the hopes and disgracing the -memory of his father.” - -Elizabeth found the interest of the subject increase, and listened with -all her heart; but the delicacy of it prevented further inquiry. - -Mr. Wickham began to speak on more general topics, Meryton, the -neighbourhood, the society, appearing highly pleased with all that he -had yet seen, and speaking of the latter, especially, with gentle but -very intelligible gallantry. - -“It was the prospect of constant society, and good society,” he added, -“which was my chief inducement to enter the ----shire. I know it to be a -most respectable, agreeable corps; and my friend Denny tempted me -further by his account of their present quarters, and the very great -attentions and excellent acquaintance Meryton had procured them. -Society, I own, is necessary to me. I have been a disappointed man, and -my spirits will not bear solitude. I _must_ have employment and society. -A military life is not what I was intended for, but circumstances have -now made it eligible. The church _ought_ to have been my profession--I -was brought up for the church; and I should at this time have been in -possession of a most valuable living, had it pleased the gentleman we -were speaking of just now.” - -“Indeed!” - -“Yes--the late Mr. Darcy bequeathed me the next presentation of the best -living in his gift. He was my godfather, and excessively attached to me. -I cannot do justice to his kindness. He meant to provide for me amply, -and thought he had done it; but when the living fell, it was given -elsewhere.” - -“Good heavens!” cried Elizabeth; “but how could _that_ be? How could his -will be disregarded? Why did not you seek legal redress?” - -“There was just such an informality in the terms of the bequest as to -give me no hope from law. A man of honour could not have doubted the -intention, but Mr. Darcy chose to doubt it--or to treat it as a merely -conditional recommendation, and to assert that I had forfeited all claim -to it by extravagance, imprudence, in short, anything or nothing. -Certain it is that the living became vacant two years ago, exactly as I -was of an age to hold it, and that it was given to another man; and no -less certain is it, that I cannot accuse myself of having really done -anything to deserve to lose it. I have a warm unguarded temper, and I -may perhaps have sometimes spoken my opinion _of_ him, and _to_ him, too -freely. I can recall nothing worse. But the fact is, that we are very -different sort of men, and that he hates me.” - -“This is quite shocking! He deserves to be publicly disgraced.” - -“Some time or other he _will_ be--but it shall not be by _me_. Till I -can forget his father, I can never defy or expose _him_.” - -Elizabeth honoured him for such feelings, and thought him handsomer than -ever as he expressed them. - -“But what,” said she, after a pause, “can have been his motive? what can -have induced him to behave so cruelly?” - -“A thorough, determined dislike of me--a dislike which I cannot but -attribute in some measure to jealousy. Had the late Mr. Darcy liked me -less, his son might have borne with me better; but his father’s uncommon -attachment to me irritated him, I believe, very early in life. He had -not a temper to bear the sort of competition in which we stood--the sort -of preference which was often given me.” - -“I had not thought Mr. Darcy so bad as this--though I have never liked -him, I had not thought so very ill of him--I had supposed him to be -despising his fellow-creatures in general, but did not suspect him of -descending to such malicious revenge, such injustice, such inhumanity as -this!” - -After a few minutes’ reflection, however, she continued, “I _do_ -remember his boasting one day, at Netherfield, of the implacability of -his resentments, of his having an unforgiving temper. His disposition -must be dreadful.” - -“I will not trust myself on the subject,” replied Wickham; “_I_ can -hardly be just to him.” - -Elizabeth was again deep in thought, and after a time exclaimed, “To -treat in such a manner the godson, the friend, the favourite of his -father!” She could have added, “A young man, too, like _you_, whose very -countenance may vouch for your being amiable.” But she contented herself -with--“And one, too, who had probably been his own companion from -childhood, connected together, as I think you said, in the closest -manner.” - -“We were born in the same parish, within the same park; the greatest -part of our youth was passed together: inmates of the same house, -sharing the same amusements, objects of the same parental care. _My_ -father began life in the profession which your uncle, Mr. Philips, -appears to do so much credit to; but he gave up everything to be of use -to the late Mr. Darcy, and devoted all his time to the care of the -Pemberley property. He was most highly esteemed by Mr. Darcy, a most -intimate, confidential friend. Mr. Darcy often acknowledged himself to -be under the greatest obligations to my father’s active superintendence; -and when, immediately before my father’s death, Mr. Darcy gave him a -voluntary promise of providing for me, I am convinced that he felt it -to be as much a debt of gratitude to _him_ as of affection to myself.” - -“How strange!” cried Elizabeth. “How abominable! I wonder that the very -pride of this Mr. Darcy has not made him just to you. If from no better -motive, that he should not have been too proud to be dishonest,--for -dishonesty I must call it.” - -“It _is_ wonderful,” replied Wickham; “for almost all his actions may be -traced to pride; and pride has often been his best friend. It has -connected him nearer with virtue than any other feeling. But we are none -of us consistent; and in his behaviour to me there were stronger -impulses even than pride.” - -“Can such abominable pride as his have ever done him good?” - -“Yes; it has often led him to be liberal and generous; to give his money -freely, to display hospitality, to assist his tenants, and relieve the -poor. Family pride, and _filial_ pride, for he is very proud of what his -father was, have done this. Not to appear to disgrace his family, to -degenerate from the popular qualities, or lose the influence of the -Pemberley House, is a powerful motive. He has also _brotherly_ pride, -which, with _some_ brotherly affection, makes him a very kind and -careful guardian of his sister; and you will hear him generally cried up -as the most attentive and best of brothers.” - -“What sort of a girl is Miss Darcy?” - -He shook his head. “I wish I could call her amiable. It gives me pain to -speak ill of a Darcy; but she is too much like her brother,--very, very -proud. As a child, she was affectionate and pleasing, and extremely fond -of me; and I have devoted hours and hours to her amusement. But she is -nothing to me now. She is a handsome girl, about fifteen or sixteen, -and, I understand, highly accomplished. Since her father’s death her -home has been London, where a lady lives with her, and superintends her -education.” - -After many pauses and many trials of other subjects, Elizabeth could not -help reverting once more to the first, and saying,-- - -“I am astonished at his intimacy with Mr. Bingley. How can Mr. Bingley, -who seems good-humour itself, and is, I really believe, truly amiable, -be in friendship with such a man? How can they suit each other? Do you -know Mr. Bingley?” - -“Not at all.” - -“He is a sweet-tempered, amiable, charming man. He cannot know what Mr. -Darcy is.” - -“Probably not; but Mr. Darcy can please where he chooses. He does not -want abilities. He can be a conversible companion if he thinks it worth -his while. Among those who are at all his equals in consequence, he is a -very different man from what he is to the less prosperous. His pride -never deserts him; but with the rich he is liberal-minded, just, -sincere, rational, honourable, and, perhaps, agreeable,--allowing -something for fortune and figure.” - -The whist party soon afterwards breaking up, the players gathered round -the other table, and Mr. Collins took his station between his cousin -Elizabeth and Mrs. Philips. The usual inquiries as to his success were -made by the latter. It had not been very great; he had lost every point; -but when Mrs. Philips began to express her concern thereupon, he assured -her, with much earnest gravity, that it was not of the least importance; -that he considered the money as a mere trifle, and begged she would not -make herself uneasy. - -“I know very well, madam,” said he, “that when persons sit down to a -card table they must take their chance of these things,--and happily I -am not in such circumstances as to make five shillings any object. There -are, undoubtedly, many who could not say the same; but, thanks to Lady -Catherine de Bourgh, I am removed far beyond the necessity of regarding -little matters.” - -Mr. Wickham’s attention was caught; and after observing Mr. Collins for -a few moments, he asked Elizabeth in a low voice whether her relations -were very intimately acquainted with the family of De Bourgh. - -“Lady Catherine de Bourgh,” she replied, “has very lately given him a -living. I hardly know how Mr. Collins was first introduced to her -notice, but he certainly has not known her long.” - -“You know of course that Lady Catherine de Bourgh and Lady Anne Darcy -were sisters; consequently that she is aunt to the present Mr. Darcy.” - -“No, indeed, I did not. I knew nothing at all of Lady Catherine’s -connections. I never heard of her existence till the day before -yesterday.” - -“Her daughter, Miss de Bourgh, will have a very large fortune, and it is -believed that she and her cousin will unite the two estates.” - -This information made Elizabeth smile, as she thought of poor Miss -Bingley. Vain indeed must be all her attentions, vain and useless her -affection for his sister and her praise of himself, if he were already -self-destined to another. - -“Mr. Collins,” said she, “speaks highly both of Lady Catherine and her -daughter; but, from some particulars that he has related of her -Ladyship, I suspect his gratitude misleads him; and that, in spite of -her being his patroness, she is an arrogant, conceited woman.” - -“I believe her to be both in a great degree,” replied Wickham; “I have -not seen her for many years; but I very well remember that I never liked -her, and that her manners were dictatorial and insolent. She has the -reputation of being remarkably sensible and clever; but I rather believe -she derives part of her abilities from her rank and fortune, part from -her authoritative manner, and the rest from the pride of her nephew, who -chooses that everyone connected with him should have an understanding of -the first class.” - -Elizabeth allowed that he had given a very rational account of it, and -they continued talking together with mutual satisfaction till supper put -an end to cards, and gave the rest of the ladies their share of Mr. -Wickham’s attentions. There could be no conversation in the noise of -Mrs. Philips’s supper party, but his manners recommended him to -everybody. Whatever he said, was said well; and whatever he did, done -gracefully. Elizabeth went away with her head full of him. She could -think of nothing but of Mr. Wickham, and of what he had told her, all -the way home; but there was not time for her even to mention his name as -they went, for neither Lydia nor Mr. Collins were once silent. Lydia -talked incessantly of lottery tickets, of the fish she had lost and the -fish she had won; and Mr. Collins, in describing the civility of Mr. and -Mrs. Philips, protesting that he did not in the least regard his losses -at whist, enumerating all the dishes at supper, and repeatedly fearing -that he crowded his cousins, had more to say than he could well manage -before the carriage stopped at Longbourn House. - - - - -[Illustration: - - “delighted to see their dear friend again” -] - - - - -CHAPTER XVII. - - -[Illustration] - -Elizabeth related to Jane, the next day, what had passed between Mr. -Wickham and herself. Jane listened with astonishment and concern: she -knew not how to believe that Mr. Darcy could be so unworthy of Mr. -Bingley’s regard; and yet it was not in her nature to question the -veracity of a young man of such amiable appearance as Wickham. The -possibility of his having really endured such unkindness was enough to -interest all her tender feelings; and nothing therefore remained to be -done but to think well of them both, to defend the conduct of each, and -throw into the account of accident or mistake whatever could not be -otherwise explained. - -“They have both,” said she, “been deceived, I dare say, in some way or -other, of which we can form no idea. Interested people have perhaps -misrepresented each to the other. It is, in short, impossible for us to -conjecture the causes or circumstances which may have alienated them, -without actual blame on either side.” - -“Very true, indeed; and now, my dear Jane, what have you got to say in -behalf of the interested people who have probably been concerned in the -business? Do clear _them_, too, or we shall be obliged to think ill of -somebody.” - -“Laugh as much as you choose, but you will not laugh me out of my -opinion. My dearest Lizzy, do but consider in what a disgraceful light -it places Mr. Darcy, to be treating his father’s favourite in such a -manner,--one whom his father had promised to provide for. It is -impossible. No man of common humanity, no man who had any value for his -character, could be capable of it. Can his most intimate friends be so -excessively deceived in him? Oh no.” - -“I can much more easily believe Mr. Bingley’s being imposed on than that -Mr. Wickham should invent such a history of himself as he gave me last -night; names, facts, everything mentioned without ceremony. If it be not -so, let Mr. Darcy contradict it. Besides, there was truth in his looks.” - -“It is difficult, indeed--it is distressing. One does not know what to -think.” - -“I beg your pardon;--one knows exactly what to think.” - -But Jane could think with certainty on only one point,--that Mr. -Bingley, if he _had been_ imposed on, would have much to suffer when -the affair became public. - -The two young ladies were summoned from the shrubbery, where this -conversation passed, by the arrival of some of the very persons of whom -they had been speaking; Mr. Bingley and his sisters came to give their -personal invitation for the long expected ball at Netherfield, which was -fixed for the following Tuesday. The two ladies were delighted to see -their dear friend again, called it an age since they had met, and -repeatedly asked what she had been doing with herself since their -separation. To the rest of the family they paid little attention; -avoiding Mrs. Bennet as much as possible, saying not much to Elizabeth, -and nothing at all to the others. They were soon gone again, rising from -their seats with an activity which took their brother by surprise, and -hurrying off as if eager to escape from Mrs. Bennet’s civilities. - -The prospect of the Netherfield ball was extremely agreeable to every -female of the family. Mrs. Bennet chose to consider it as given in -compliment to her eldest daughter, and was particularly flattered by -receiving the invitation from Mr. Bingley himself, instead of a -ceremonious card. Jane pictured to herself a happy evening in the -society of her two friends, and the attentions of their brother; and -Elizabeth thought with pleasure of dancing a great deal with Mr. -Wickham, and of seeing a confirmation of everything in Mr. Darcy’s look -and behaviour. The happiness anticipated by Catherine and Lydia depended -less on any single event, or any particular person; for though they -each, like Elizabeth, meant to dance half the evening with Mr. Wickham, -he was by no means the only partner who could satisfy them, and a ball -was, at any rate, a ball. And even Mary could assure her family that she -had no disinclination for it. - -“While I can have my mornings to myself,” said she, “it is enough. I -think it is no sacrifice to join occasionally in evening engagements. -Society has claims on us all; and I profess myself one of those who -consider intervals of recreation and amusement as desirable for -everybody.” - -Elizabeth’s spirits were so high on the occasion, that though she did -not often speak unnecessarily to Mr. Collins, she could not help asking -him whether he intended to accept Mr. Bingley’s invitation, and if he -did, whether he would think it proper to join in the evening’s -amusement; and she was rather surprised to find that he entertained no -scruple whatever on that head, and was very far from dreading a rebuke, -either from the Archbishop or Lady Catherine de Bourgh, by venturing to -dance. - -“I am by no means of opinion, I assure you,” said he, “that a ball of -this kind, given by a young man of character, to respectable people, can -have any evil tendency; and I am so far from objecting to dancing -myself, that I shall hope to be honoured with the hands of all my fair -cousins in the course of the evening; and I take this opportunity of -soliciting yours, Miss Elizabeth, for the two first dances especially; a -preference which I trust my cousin Jane will attribute to the right -cause, and not to any disrespect for her.” - -Elizabeth felt herself completely taken in. She had fully proposed being -engaged by Wickham for those very dances; and to have Mr. Collins -instead!--her liveliness had been never worse timed. There was no help -for it, however. Mr. Wickham’s happiness and her own was perforce -delayed a little longer, and Mr. Collins’s proposal accepted with as -good a grace as she could. She was not the better pleased with his -gallantry, from the idea it suggested of something more. It now first -struck her, that _she_ was selected from among her sisters as worthy of -being the mistress of Hunsford Parsonage, and of assisting to form a -quadrille table at Rosings, in the absence of more eligible visitors. -The idea soon reached to conviction, as she observed his increasing -civilities towards herself, and heard his frequent attempt at a -compliment on her wit and vivacity; and though more astonished than -gratified herself by this effect of her charms, it was not long before -her mother gave her to understand that the probability of their marriage -was exceedingly agreeable to _her_. Elizabeth, however, did not choose -to take the hint, being well aware that a serious dispute must be the -consequence of any reply. Mr. Collins might never make the offer, and, -till he did, it was useless to quarrel about him. - -If there had not been a Netherfield ball to prepare for and talk of, the -younger Miss Bennets would have been in a pitiable state at this time; -for, from the day of the invitation to the day of the ball, there was -such a succession of rain as prevented their walking to Meryton once. No -aunt, no officers, no news could be sought after; the very shoe-roses -for Netherfield were got by proxy. Even Elizabeth might have found some -trial of her patience in weather which totally suspended the improvement -of her acquaintance with Mr. Wickham; and nothing less than a dance on -Tuesday could have made such a Friday, Saturday, Sunday, and Monday -endurable to Kitty and Lydia. - - - - -[Illustration] - - - - -CHAPTER XVIII. - - -[Illustration] - -Till Elizabeth entered the drawing-room at Netherfield, and looked in -vain for Mr. Wickham among the cluster of red coats there assembled, a -doubt of his being present had never occurred to her. The certainty of -meeting him had not been checked by any of those recollections that -might not unreasonably have alarmed her. She had dressed with more than -usual care, and prepared in the highest spirits for the conquest of all -that remained unsubdued of his heart, trusting that it was not more than -might be won in the course of the evening. But in an instant arose the -dreadful suspicion of his being purposely omitted, for Mr. Darcy’s -pleasure, in the Bingleys’ invitation to the officers; and though this -was not exactly the case, the absolute fact of his absence was -pronounced by his friend Mr. Denny, to whom Lydia eagerly applied, and -who told them that Wickham had been obliged to go to town on business -the day before, and was not yet returned; adding, with a significant -smile,-- - -“I do not imagine his business would have called him away just now, if -he had not wished to avoid a certain gentleman here.” - -This part of his intelligence, though unheard by Lydia, was caught by -Elizabeth; and, as it assured her that Darcy was not less answerable for -Wickham’s absence than if her first surmise had been just, every feeling -of displeasure against the former was so sharpened by immediate -disappointment, that she could hardly reply with tolerable civility to -the polite inquiries which he directly afterwards approached to make. -Attention, forbearance, patience with Darcy, was injury to Wickham. She -was resolved against any sort of conversation with him, and turned away -with a degree of ill-humour which she could not wholly surmount even in -speaking to Mr. Bingley, whose blind partiality provoked her. - -But Elizabeth was not formed for ill-humour; and though every prospect -of her own was destroyed for the evening, it could not dwell long on her -spirits; and, having told all her griefs to Charlotte Lucas, whom she -had not seen for a week, she was soon able to make a voluntary -transition to the oddities of her cousin, and to point him out to her -particular notice. The two first dances, however, brought a return of -distress: they were dances of mortification. Mr. Collins, awkward and -solemn, apologizing instead of attending, and often moving wrong -without being aware of it, gave her all the shame and misery which a -disagreeable partner for a couple of dances can give. The moment of her -release from him was ecstasy. - -She danced next with an officer, and had the refreshment of talking of -Wickham, and of hearing that he was universally liked. When those dances -were over, she returned to Charlotte Lucas, and was in conversation with -her, when she found herself suddenly addressed by Mr. Darcy, who took -her so much by surprise in his application for her hand, that, without -knowing what she did, she accepted him. He walked away again -immediately, and she was left to fret over her own want of presence of -mind: Charlotte tried to console her. - -“I dare say you will find him very agreeable.” - -“Heaven forbid! _That_ would be the greatest misfortune of all! To find -a man agreeable whom one is determined to hate! Do not wish me such an -evil.” - -When the dancing recommenced, however, and Darcy approached to claim her -hand, Charlotte could not help cautioning her, in a whisper, not to be a -simpleton, and allow her fancy for Wickham to make her appear unpleasant -in the eyes of a man often times his consequence. Elizabeth made no -answer, and took her place in the set, amazed at the dignity to which -she was arrived in being allowed to stand opposite to Mr. Darcy, and -reading in her neighbours’ looks their equal amazement in beholding it. -They stood for some time without speaking a word; and she began to -imagine that their silence was to last through the two dances, and, at -first, was resolved not to break it; till suddenly fancying that it -would be the greater punishment to her partner to oblige him to talk, -she made some slight observation on the dance. He replied, and was again -silent. After a pause of some minutes, she addressed him a second time, -with-- - -“It is _your_ turn to say something now, Mr. Darcy. _I_ talked about the -dance, and _you_ ought to make some kind of remark on the size of the -room, or the number of couples.” - -He smiled, and assured her that whatever she wished him to say should be -said. - -“Very well; that reply will do for the present. Perhaps, by-and-by, I -may observe that private balls are much pleasanter than public ones; but -_now_ we may be silent.” - -“Do you talk by rule, then, while you are dancing?” - -“Sometimes. One must speak a little, you know. It would look odd to be -entirely silent for half an hour together; and yet, for the advantage of -_some_, conversation ought to be so arranged as that they may have the -trouble of saying as little as possible.” - -“Are you consulting your own feelings in the present case, or do you -imagine that you are gratifying mine?” - -“Both,” replied Elizabeth archly; “for I have always seen a great -similarity in the turn of our minds. We are each of an unsocial, -taciturn disposition, unwilling to speak, unless we expect to say -something that will amaze the whole room, and be handed down to -posterity with all the _éclat_ of a proverb.” - -“This is no very striking resemblance of your own character, I am sure,” -said he. “How near it may be to _mine_, I cannot pretend to say. _You_ -think it a faithful portrait, undoubtedly.” - -“I must not decide on my own performance.” - -He made no answer; and they were again silent till they had gone down -the dance, when he asked her if she and her sisters did not very often -walk to Meryton. She answered in the affirmative; and, unable to resist -the temptation, added, “When you met us there the other day, we had just -been forming a new acquaintance.” - -The effect was immediate. A deeper shade of _hauteur_ overspread his -features, but he said not a word; and Elizabeth, though blaming herself -for her own weakness, could not go on. At length Darcy spoke, and in a -constrained manner said,-- - -“Mr. Wickham is blessed with such happy manners as may insure his -_making_ friends; whether he may be equally capable of _retaining_ them, -is less certain.” - -“He has been so unlucky as to lose your friendship,” replied Elizabeth, -with emphasis, “and in a manner which he is likely to suffer from all -his life.” - -Darcy made no answer, and seemed desirous of changing the subject. At -that moment Sir William Lucas appeared close to them, meaning to pass -through the set to the other side of the room; but, on perceiving Mr. -Darcy, he stopped, with a bow of superior courtesy, to compliment him on -his dancing and his partner. - -“I have been most highly gratified, indeed, my dear sir; such very -superior dancing is not often seen. It is evident that you belong to the -first circles. Allow me to say, however, that your fair partner does not -disgrace you: and that I must hope to have this pleasure often repeated, -especially when a certain desirable event, my dear Miss Eliza (glancing -at her sister and Bingley), shall take place. What congratulations will -then flow in! I appeal to Mr. Darcy;--but let me not interrupt you, sir. -You will not thank me for detaining you from the bewitching converse of -that young lady, whose bright eyes are also upbraiding me.” - -[Illustration: - -“Such very superior dancing is not -often seen.” - -[_Copyright 1894 by George Allen._]] - -The latter part of this address was scarcely heard by Darcy; but Sir -William’s allusion to his friend seemed to strike him forcibly, and his -eyes were directed, with a very serious expression, towards Bingley and -Jane, who were dancing together. Recovering himself, however, shortly, -he turned to his partner, and said,-- - -“Sir William’s interruption has made me forget what we were talking -of.” - -“I do not think we were speaking at all. Sir William could not have -interrupted any two people in the room who had less to say for -themselves. We have tried two or three subjects already without success, -and what we are to talk of next I cannot imagine.” - -“What think you of books?” said he, smiling. - -“Books--oh no!--I am sure we never read the same, or not with the same -feelings.” - -“I am sorry you think so; but if that be the case, there can at least be -no want of subject. We may compare our different opinions.” - -“No--I cannot talk of books in a ball-room; my head is always full of -something else.” - -“The _present_ always occupies you in such scenes--does it?” said he, -with a look of doubt. - -“Yes, always,” she replied, without knowing what she said; for her -thoughts had wandered far from the subject, as soon afterwards appeared -by her suddenly exclaiming, “I remember hearing you once say, Mr. Darcy, -that you hardly ever forgave;--that your resentment, once created, was -unappeasable. You are very cautious, I suppose, as to its _being -created_?” - -“I am,” said he, with a firm voice. - -“And never allow yourself to be blinded by prejudice?” - -“I hope not.” - -“It is particularly incumbent on those who never change their opinion, -to be secure of judging properly at first.” - -“May I ask to what these questions tend?” - -“Merely to the illustration of _your_ character,” said she, endeavouring -to shake off her gravity. “I am trying to make it out.” - -“And what is your success?” - -She shook her head. “I do not get on at all. I hear such different -accounts of you as puzzle me exceedingly.” - -“I can readily believe,” answered he, gravely, “that reports may vary -greatly with respect to me; and I could wish, Miss Bennet, that you were -not to sketch my character at the present moment, as there is reason to -fear that the performance would reflect no credit on either.” - -“But if I do not take your likeness now, I may never have another -opportunity.” - -“I would by no means suspend any pleasure of yours,” he coldly replied. -She said no more, and they went down the other dance and parted in -silence; on each side dissatisfied, though not to an equal degree; for -in Darcy’s breast there was a tolerably powerful feeling towards her, -which soon procured her pardon, and directed all his anger against -another. - -They had not long separated when Miss Bingley came towards her, and, -with an expression of civil disdain, thus accosted her,-- - -“So, Miss Eliza, I hear you are quite delighted with George Wickham? -Your sister has been talking to me about him, and asking me a thousand -questions; and I find that the young man forgot to tell you, among his -other communications, that he was the son of old Wickham, the late Mr. -Darcy’s steward. Let me recommend you, however, as a friend, not to give -implicit confidence to all his assertions; for, as to Mr. Darcy’s using -him ill, it is perfectly false: for, on the contrary, he has been always -remarkably kind to him, though George Wickham has treated Mr. Darcy in a -most infamous manner. I do not know the particulars, but I know very -well that Mr. Darcy is not in the least to blame; that he cannot bear -to hear George Wickham mentioned; and that though my brother thought he -could not well avoid including him in his invitation to the officers, he -was excessively glad to find that he had taken himself out of the way. -His coming into the country at all is a most insolent thing, indeed, and -I wonder how he could presume to do it. I pity you, Miss Eliza, for this -discovery of your favourite’s guilt; but really, considering his -descent, one could not expect much better.” - -“His guilt and his descent appear, by your account, to be the same,” -said Elizabeth, angrily; “for I have heard you accuse him of nothing -worse than of being the son of Mr. Darcy’s steward, and of _that_, I can -assure you, he informed me himself.” - -“I beg your pardon,” replied Miss Bingley, turning away with a sneer. -“Excuse my interference; it was kindly meant.” - -“Insolent girl!” said Elizabeth to herself. “You are much mistaken if -you expect to influence me by such a paltry attack as this. I see -nothing in it but your own wilful ignorance and the malice of Mr. -Darcy.” She then sought her eldest sister, who had undertaken to make -inquiries on the same subject of Bingley. Jane met her with a smile of -such sweet complacency, a glow of such happy expression, as sufficiently -marked how well she was satisfied with the occurrences of the evening. -Elizabeth instantly read her feelings; and, at that moment, solicitude -for Wickham, resentment against his enemies, and everything else, gave -way before the hope of Jane’s being in the fairest way for happiness. - -“I want to know,” said she, with a countenance no less smiling than her -sister’s, “what you have learnt about Mr. Wickham. But perhaps you have -been too pleasantly engaged to think of any third person, in which case -you may be sure of my pardon.” - -“No,” replied Jane, “I have not forgotten him; but I have nothing -satisfactory to tell you. Mr. Bingley does not know the whole of his -history, and is quite ignorant of the circumstances which have -principally offended Mr. Darcy; but he will vouch for the good conduct, -the probity and honour, of his friend, and is perfectly convinced that -Mr. Wickham has deserved much less attention from Mr. Darcy than he has -received; and I am sorry to say that by his account, as well as his -sister’s, Mr. Wickham is by no means a respectable young man. I am -afraid he has been very imprudent, and has deserved to lose Mr. Darcy’s -regard.” - -“Mr. Bingley does not know Mr. Wickham himself.” - -“No; he never saw him till the other morning at Meryton.” - -“This account then is what he has received from Mr. Darcy. I am -perfectly satisfied. But what does he say of the living?” - -“He does not exactly recollect the circumstances, though he has heard -them from Mr. Darcy more than once, but he believes that it was left to -him _conditionally_ only.” - -“I have not a doubt of Mr. Bingley’s sincerity,” said Elizabeth warmly, -“but you must excuse my not being convinced by assurances only. Mr. -Bingley’s defence of his friend was a very able one, I dare say; but -since he is unacquainted with several parts of the story, and has learnt -the rest from that friend himself, I shall venture still to think of -both gentlemen as I did before.” - -She then changed the discourse to one more gratifying to each, and on -which there could be no difference of sentiment. Elizabeth listened with -delight to the happy though modest hopes which Jane entertained of -Bingley’s regard, and said all in her power to heighten her confidence -in it. On their being joined by Mr. Bingley himself, Elizabeth withdrew -to Miss Lucas; to whose inquiry after the pleasantness of her last -partner she had scarcely replied, before Mr. Collins came up to them, -and told her with great exultation, that he had just been so fortunate -as to make a most important discovery. - -“I have found out,” said he, “by a singular accident, that there is now -in the room a near relation to my patroness. I happened to overhear the -gentleman himself mentioning to the young lady who does the honours of -this house the names of his cousin Miss De Bourgh, and of her mother, -Lady Catherine. How wonderfully these sort of things occur! Who would -have thought of my meeting with--perhaps--a nephew of Lady Catherine de -Bourgh in this assembly! I am most thankful that the discovery is made -in time for me to pay my respects to him, which I am now going to do, -and trust he will excuse my not having done it before. My total -ignorance of the connection must plead my apology.” - -“You are not going to introduce yourself to Mr. Darcy?” - -“Indeed I am. I shall entreat his pardon for not having done it earlier. -I believe him to be Lady Catherine’s _nephew_. It will be in my power to -assure him that her Ladyship was quite well yesterday se’nnight.” - -Elizabeth tried hard to dissuade him from such a scheme; assuring him -that Mr. Darcy would consider his addressing him without introduction as -an impertinent freedom, rather than a compliment to his aunt; that it -was not in the least necessary there should be any notice on either -side, and that if it were, it must belong to Mr. Darcy, the superior in -consequence, to begin the acquaintance. Mr. Collins listened to her with -the determined air of following his own inclination, and when she ceased -speaking, replied thus,-- - -“My dear Miss Elizabeth, I have the highest opinion in the world of your -excellent judgment in all matters within the scope of your -understanding, but permit me to say that there must be a wide difference -between the established forms of ceremony amongst the laity and those -which regulate the clergy; for, give me leave to observe that I consider -the clerical office as equal in point of dignity with the highest rank -in the kingdom--provided that a proper humility of behaviour is at the -same time maintained. You must, therefore, allow me to follow the -dictates of my conscience on this occasion, which lead me to perform -what I look on as a point of duty. Pardon me for neglecting to profit by -your advice, which on every other subject shall be my constant guide, -though in the case before us I consider myself more fitted by education -and habitual study to decide on what is right than a young lady like -yourself;” and with a low bow he left her to attack Mr. Darcy, whose -reception of his advances she eagerly watched, and whose astonishment at -being so addressed was very evident. Her cousin prefaced his speech with -a solemn bow, and though she could not hear a word of it, she felt as if -hearing it all, and saw in the motion of his lips the words “apology,” -“Hunsford,” and “Lady Catherine de Bourgh.” It vexed her to see him -expose himself to such a man. Mr. Darcy was eyeing him with -unrestrained wonder; and when at last Mr. Collins allowed him to speak, -replied with an air of distant civility. Mr. Collins, however, was not -discouraged from speaking again, and Mr. Darcy’s contempt seemed -abundantly increasing with the length of his second speech; and at the -end of it he only made him a slight bow, and moved another way: Mr. -Collins then returned to Elizabeth. - -“I have no reason, I assure you,” said he, “to be dissatisfied with my -reception. Mr. Darcy seemed much pleased with the attention. He answered -me with the utmost civility, and even paid me the compliment of saying, -that he was so well convinced of Lady Catherine’s discernment as to be -certain she could never bestow a favour unworthily. It was really a very -handsome thought. Upon the whole, I am much pleased with him.” - -As Elizabeth had no longer any interest of her own to pursue, she turned -her attention almost entirely on her sister and Mr. Bingley; and the -train of agreeable reflections which her observations gave birth to made -her perhaps almost as happy as Jane. She saw her in idea settled in that -very house, in all the felicity which a marriage of true affection could -bestow; and she felt capable, under such circumstances, of endeavouring -even to like Bingley’s two sisters. Her mother’s thoughts she plainly -saw were bent the same way, and she determined not to venture near her, -lest she might hear too much. When they sat down to supper, therefore, -she considered it a most unlucky perverseness which placed them within -one of each other; and deeply was she vexed to find that her mother was -talking to that one person (Lady Lucas) freely, openly, and of nothing -else but of her expectation that Jane would be soon married to Mr. -Bingley. It was an animating subject, and Mrs. Bennet seemed incapable -of fatigue while enumerating the advantages of the match. His being such -a charming young man, and so rich, and living but three miles from them, -were the first points of self-gratulation; and then it was such a -comfort to think how fond the two sisters were of Jane, and to be -certain that they must desire the connection as much as she could do. It -was, moreover, such a promising thing for her younger daughters, as -Jane’s marrying so greatly must throw them in the way of other rich men; -and, lastly, it was so pleasant at her time of life to be able to -consign her single daughters to the care of their sister, that she might -not be obliged to go into company more than she liked. It was necessary -to make this circumstance a matter of pleasure, because on such -occasions it is the etiquette; but no one was less likely than Mrs. -Bennet to find comfort in staying at home at any period of her life. She -concluded with many good wishes that Lady Lucas might soon be equally -fortunate, though evidently and triumphantly believing there was no -chance of it. - -In vain did Elizabeth endeavour to check the rapidity of her mother’s -words, or persuade her to describe her felicity in a less audible -whisper; for to her inexpressible vexation she could perceive that the -chief of it was overheard by Mr. Darcy, who sat opposite to them. Her -mother only scolded her for being nonsensical. - -“What is Mr. Darcy to me, pray, that I should be afraid of him? I am -sure we owe him no such particular civility as to be obliged to say -nothing _he_ may not like to hear.” - -“For heaven’s sake, madam, speak lower. What advantage can it be to you -to offend Mr. Darcy? You will never recommend yourself to his friend by -so doing.” - -Nothing that she could say, however, had any influence. Her mother would -talk of her views in the same intelligible tone. Elizabeth blushed and -blushed again with shame and vexation. She could not help frequently -glancing her eye at Mr. Darcy, though every glance convinced her of what -she dreaded; for though he was not always looking at her mother, she was -convinced that his attention was invariably fixed by her. The expression -of his face changed gradually from indignant contempt to a composed and -steady gravity. - -At length, however, Mrs. Bennet had no more to say; and Lady Lucas, who -had been long yawning at the repetition of delights which she saw no -likelihood of sharing, was left to the comforts of cold ham and chicken. -Elizabeth now began to revive. But not long was the interval of -tranquillity; for when supper was over, singing was talked of, and she -had the mortification of seeing Mary, after very little entreaty, -preparing to oblige the company. By many significant looks and silent -entreaties did she endeavour to prevent such a proof of -complaisance,--but in vain; Mary would not understand them; such an -opportunity of exhibiting was delightful to her, and she began her song. -Elizabeth’s eyes were fixed on her, with most painful sensations; and -she watched her progress through the several stanzas with an impatience -which was very ill rewarded at their close; for Mary, on receiving -amongst the thanks of the table the hint of a hope that she might be -prevailed on to favour them again, after the pause of half a minute -began another. Mary’s powers were by no means fitted for such a display; -her voice was weak, and her manner affected. Elizabeth was in agonies. -She looked at Jane to see how she bore it; but Jane was very composedly -talking to Bingley. She looked at his two sisters, and saw them making -signs of derision at each other, and at Darcy, who continued, however, -impenetrably grave. She looked at her father to entreat his -interference, lest Mary should be singing all night. He took the hint, -and, when Mary had finished her second song, said aloud,-- - -“That will do extremely well, child. You have delighted us long enough. -Let the other young ladies have time to exhibit.” - -Mary, though pretending not to hear, was somewhat disconcerted; and -Elizabeth, sorry for her, and sorry for her father’s speech, was afraid -her anxiety had done no good. Others of the party were now applied to. - -“If I,” said Mr. Collins, “were so fortunate as to be able to sing, I -should have great pleasure, I am sure, in obliging the company with an -air; for I consider music as a very innocent diversion, and perfectly -compatible with the profession of a clergyman. I do not mean, however, -to assert that we can be justified in devoting too much of our time to -music, for there are certainly other things to be attended to. The -rector of a parish has much to do. In the first place, he must make such -an agreement for tithes as may be beneficial to himself and not -offensive to his patron. He must write his own sermons; and the time -that remains will not be too much for his parish duties, and the care -and improvement of his dwelling, which he cannot be excused from making -as comfortable as possible. And I do not think it of light importance -that he should have attentive and conciliatory manners towards -everybody, especially towards those to whom he owes his preferment. I -cannot acquit him of that duty; nor could I think well of the man who -should omit an occasion of testifying his respect towards anybody -connected with the family.” And with a bow to Mr. Darcy, he concluded -his speech, which had been spoken so loud as to be heard by half the -room. Many stared--many smiled; but no one looked more amused than Mr. -Bennet himself, while his wife seriously commended Mr. Collins for -having spoken so sensibly, and observed, in a half-whisper to Lady -Lucas, that he was a remarkably clever, good kind of young man. - -To Elizabeth it appeared, that had her family made an agreement to -expose themselves as much as they could during the evening, it would -have been impossible for them to play their parts with more spirit, or -finer success; and happy did she think it for Bingley and her sister -that some of the exhibition had escaped his notice, and that his -feelings were not of a sort to be much distressed by the folly which he -must have witnessed. That his two sisters and Mr. Darcy, however, should -have such an opportunity of ridiculing her relations was bad enough; and -she could not determine whether the silent contempt of the gentleman, or -the insolent smiles of the ladies, were more intolerable. - -The rest of the evening brought her little amusement. She was teased by -Mr. Collins, who continued most perseveringly by her side; and though he -could not prevail with her to dance with him again, put it out of her -power to dance with others. In vain did she entreat him to stand up with -somebody else, and offered to introduce him to any young lady in the -room. He assured her that, as to dancing, he was perfectly indifferent -to it; that his chief object was, by delicate attentions, to recommend -himself to her; and that he should therefore make a point of remaining -close to her the whole evening. There was no arguing upon such a -project. She owed her greatest relief to her friend Miss Lucas, who -often joined them, and good-naturedly engaged Mr. Collins’s conversation -to herself. - -She was at least free from the offence of Mr. Darcy’s further notice: -though often standing within a very short distance of her, quite -disengaged, he never came near enough to speak. She felt it to be the -probable consequence of her allusions to Mr. Wickham, and rejoiced in -it. - -The Longbourn party were the last of all the company to depart; and by a -manœuvre of Mrs. Bennet had to wait for their carriage a quarter of an -hour after everybody else was gone, which gave them time to see how -heartily they were wished away by some of the family. Mrs. Hurst and her -sister scarcely opened their mouths except to complain of fatigue, and -were evidently impatient to have the house to themselves. They repulsed -every attempt of Mrs. Bennet at conversation, and, by so doing, threw a -languor over the whole party, which was very little relieved by the long -speeches of Mr. Collins, who was complimenting Mr. Bingley and his -sisters on the elegance of their entertainment, and the hospitality and -politeness which had marked their behaviour to their guests. Darcy said -nothing at all. Mr. Bennet, in equal silence, was enjoying the scene. -Mr. Bingley and Jane were standing together a little detached from the -rest, and talked only to each other. Elizabeth preserved as steady a -silence as either Mrs. Hurst or Miss Bingley; and even Lydia was too -much fatigued to utter more than the occasional exclamation of “Lord, -how tired I am!” accompanied by a violent yawn. - -When at length they arose to take leave, Mrs. Bennet was most pressingly -civil in her hope of seeing the whole family soon at Longbourn; and -addressed herself particularly to Mr. Bingley, to assure him how happy -he would make them, by eating a family dinner with them at any time, -without the ceremony of a formal invitation. Bingley was all grateful -pleasure; and he readily engaged for taking the earliest opportunity of -waiting on her after his return from London, whither he was obliged to -go the next day for a short time. - -Mrs. Bennet was perfectly satisfied; and quitted the house under the -delightful persuasion that, allowing for the necessary preparations of -settlements, new carriages, and wedding clothes, she should undoubtedly -see her daughter settled at Netherfield in the course of three or four -months. Of having another daughter married to Mr. Collins she thought -with equal certainty, and with considerable, though not equal, pleasure. -Elizabeth was the least dear to her of all her children; and though the -man and the match were quite good enough for _her_, the worth of each -was eclipsed by Mr. Bingley and Netherfield. - - - - -[Illustration: - - “to assure you in the most animated language” -] - - - - -CHAPTER XIX. - - -[Illustration] - -The next day opened a new scene at Longbourn. Mr. Collins made his -declaration in form. Having resolved to do it without loss of time, as -his leave of absence extended only to the following Saturday, and having -no feelings of diffidence to make it distressing to himself even at the -moment, he set about it in a very orderly manner, with all the -observances which he supposed a regular part of the business. On finding -Mrs. Bennet, Elizabeth, and one of the younger girls together, soon -after breakfast, he addressed the mother in these words,-- - -“May I hope, madam, for your interest with your fair daughter Elizabeth, -when I solicit for the honour of a private audience with her in the -course of this morning?” - -Before Elizabeth had time for anything but a blush of surprise, Mrs. -Bennet instantly answered,-- - -“Oh dear! Yes, certainly. I am sure Lizzy will be very happy--I am sure -she can have no objection. Come, Kitty, I want you upstairs.” And -gathering her work together, she was hastening away, when Elizabeth -called out,-- - -“Dear ma’am, do not go. I beg you will not go. Mr. Collins must excuse -me. He can have nothing to say to me that anybody need not hear. I am -going away myself.” - -“No, no, nonsense, Lizzy. I desire you will stay where you are.” And -upon Elizabeth’s seeming really, with vexed and embarrassed looks, about -to escape, she added, “Lizzy, I _insist_ upon your staying and hearing -Mr. Collins.” - -Elizabeth would not oppose such an injunction; and a moment’s -consideration making her also sensible that it would be wisest to get it -over as soon and as quietly as possible, she sat down again, and tried -to conceal, by incessant employment, the feelings which were divided -between distress and diversion. Mrs. Bennet and Kitty walked off, and as -soon as they were gone, Mr. Collins began,-- - -“Believe me, my dear Miss Elizabeth, that your modesty, so far from -doing you any disservice, rather adds to your other perfections. You -would have been less amiable in my eyes had there _not_ been this little -unwillingness; but allow me to assure you that I have your respected -mother’s permission for this address. You can hardly doubt the purport -of my discourse, however your natural delicacy may lead you to -dissemble; my attentions have been too marked to be mistaken. Almost as -soon as I entered the house I singled you out as the companion of my -future life. But before I am run away with by my feelings on this -subject, perhaps it will be advisable for me to state my reasons for -marrying--and, moreover, for coming into Hertfordshire with the design -of selecting a wife, as I certainly did.” - -The idea of Mr. Collins, with all his solemn composure, being run away -with by his feelings, made Elizabeth so near laughing that she could not -use the short pause he allowed in any attempt to stop him farther, and -he continued,-- - -“My reasons for marrying are, first, that I think it a right thing for -every clergyman in easy circumstances (like myself) to set the example -of matrimony in his parish; secondly, that I am convinced it will add -very greatly to my happiness; and, thirdly, which perhaps I ought to -have mentioned earlier, that it is the particular advice and -recommendation of the very noble lady whom I have the honour of calling -patroness. Twice has she condescended to give me her opinion (unasked -too!) on this subject; and it was but the very Saturday night before I -left Hunsford,--between our pools at quadrille, while Mrs. Jenkinson was -arranging Miss De Bourgh’s footstool,--that she said, ‘Mr. Collins, you -must marry. A clergyman like you must marry. Choose properly, choose a -gentlewoman for _my_ sake, and for your _own_; let her be an active, -useful sort of person, not brought up high, but able to make a small -income go a good way. This is my advice. Find such a woman as soon as -you can, bring her to Hunsford, and I will visit her.’ Allow me, by the -way, to observe, my fair cousin, that I do not reckon the notice and -kindness of Lady Catherine de Bourgh as among the least of the -advantages in my power to offer. You will find her manners beyond -anything I can describe; and your wit and vivacity, I think, must be -acceptable to her, especially when tempered with the silence and respect -which her rank will inevitably excite. Thus much for my general -intention in favour of matrimony; it remains to be told why my views -were directed to Longbourn instead of my own neighbourhood, where I -assure you there are many amiable young women. But the fact is, that -being, as I am, to inherit this estate after the death of your honoured -father (who, however, may live many years longer), I could not satisfy -myself without resolving to choose a wife from among his daughters, that -the loss to them might be as little as possible when the melancholy -event takes place--which, however, as I have already said, may not be -for several years. This has been my motive, my fair cousin, and I -flatter myself it will not sink me in your esteem. And now nothing -remains for me but to assure you in the most animated language of the -violence of my affection. To fortune I am perfectly indifferent, and -shall make no demand of that nature on your father, since I am well -aware that it could not be complied with; and that one thousand pounds -in the 4 per cents., which will not be yours till after your mother’s -decease, is all that you may ever be entitled to. On that head, -therefore, I shall be uniformly silent: and you may assure yourself that -no ungenerous reproach shall ever pass my lips when we are married.” - -It was absolutely necessary to interrupt him now. - -“You are too hasty, sir,” she cried. “You forget that I have made no -answer. Let me do it without further loss of time. Accept my thanks for -the compliment you are paying me. I am very sensible of the honour of -your proposals, but it is impossible for me to do otherwise than decline -them.” - -“I am not now to learn,” replied Mr. Collins, with a formal wave of the -hand, “that it is usual with young ladies to reject the addresses of the -man whom they secretly mean to accept, when he first applies for their -favour; and that sometimes the refusal is repeated a second or even a -third time. I am, therefore, by no means discouraged by what you have -just said, and shall hope to lead you to the altar ere long.” - -“Upon my word, sir,” cried Elizabeth, “your hope is rather an -extraordinary one after my declaration. I do assure you that I am not -one of those young ladies (if such young ladies there are) who are so -daring as to risk their happiness on the chance of being asked a second -time. I am perfectly serious in my refusal. You could not make _me_ -happy, and I am convinced that I am the last woman in the world who -would make _you_ so. Nay, were your friend Lady Catherine to know me, I -am persuaded she would find me in every respect ill qualified for the -situation.” - -“Were it certain that Lady Catherine would think so,” said Mr. Collins, -very gravely--“but I cannot imagine that her Ladyship would at all -disapprove of you. And you may be certain that when I have the honour of -seeing her again I shall speak in the highest terms of your modesty, -economy, and other amiable qualifications.” - -“Indeed, Mr. Collins, all praise of me will be unnecessary. You must -give me leave to judge for myself, and pay me the compliment of -believing what I say. I wish you very happy and very rich, and by -refusing your hand, do all in my power to prevent your being otherwise. -In making me the offer, you must have satisfied the delicacy of your -feelings with regard to my family, and may take possession of Longbourn -estate whenever it falls, without any self-reproach. This matter may be -considered, therefore, as finally settled.” And rising as she thus -spoke, she would have quitted the room, had not Mr. Collins thus -addressed her,-- - -“When I do myself the honour of speaking to you next on the subject, I -shall hope to receive a more favourable answer than you have now given -me; though I am far from accusing you of cruelty at present, because I -know it to be the established custom of your sex to reject a man on the -first application, and, perhaps, you have even now said as much to -encourage my suit as would be consistent with the true delicacy of the -female character.” - -“Really, Mr. Collins,” cried Elizabeth, with some warmth, “you puzzle me -exceedingly. If what I have hitherto said can appear to you in the form -of encouragement, I know not how to express my refusal in such a way as -may convince you of its being one.” - -“You must give me leave to flatter myself, my dear cousin, that your -refusal of my addresses are merely words of course. My reasons for -believing it are briefly these:--It does not appear to me that my hand -is unworthy of your acceptance, or that the establishment I can offer -would be any other than highly desirable. My situation in life, my -connections with the family of De Bourgh, and my relationship to your -own, are circumstances highly in my favour; and you should take it into -further consideration that, in spite of your manifold attractions, it is -by no means certain that another offer of marriage may ever be made you. -Your portion is unhappily so small, that it will in all likelihood undo -the effects of your loveliness and amiable qualifications. As I must, -therefore, conclude that you are not serious in your rejection of me, I -shall choose to attribute it to your wish of increasing my love by -suspense, according to the usual practice of elegant females.” - -“I do assure you, sir, that I have no pretensions whatever to that kind -of elegance which consists in tormenting a respectable man. I would -rather be paid the compliment of being believed sincere. I thank you -again and again for the honour you have done me in your proposals, but -to accept them is absolutely impossible. My feelings in every respect -forbid it. Can I speak plainer? Do not consider me now as an elegant -female intending to plague you, but as a rational creature speaking the -truth from her heart.” - -“You are uniformly charming!” cried he, with an air of awkward -gallantry; “and I am persuaded that, when sanctioned by the express -authority of both your excellent parents, my proposals will not fail of -being acceptable.” - -To such perseverance in wilful self-deception Elizabeth would make no -reply, and immediately and in silence withdrew; determined, that if he -persisted in considering her repeated refusals as flattering -encouragement, to apply to her father, whose negative might be uttered -in such a manner as must be decisive, and whose behaviour at least could -not be mistaken for the affectation and coquetry of an elegant female. - - - - -[Illustration] - - - - -CHAPTER XX. - - -[Illustration] - -Mr. Collins was not left long to the silent contemplation of his -successful love; for Mrs. Bennet, having dawdled about in the vestibule -to watch for the end of the conference, no sooner saw Elizabeth open the -door and with quick step pass her towards the staircase, than she -entered the breakfast-room, and congratulated both him and herself in -warm terms on the happy prospect of their nearer connection. Mr. Collins -received and returned these felicitations with equal pleasure, and then -proceeded to relate the particulars of their interview, with the result -of which he trusted he had every reason to be satisfied, since the -refusal which his cousin had steadfastly given him would naturally flow -from her bashful modesty and the genuine delicacy of her character. - -This information, however, startled Mrs. Bennet: she would have been -glad to be equally satisfied that her daughter had meant to encourage -him by protesting against his proposals, but she dared not believe it, -and could not help saying so. - -“But depend upon it, Mr. Collins,” she added, “that Lizzy shall be -brought to reason. I will speak to her about it myself directly. She is -a very headstrong, foolish girl, and does not know her own interest; but -I will _make_ her know it.” - -“Pardon me for interrupting you, madam,” cried Mr. Collins; “but if she -is really headstrong and foolish, I know not whether she would -altogether be a very desirable wife to a man in my situation, who -naturally looks for happiness in the marriage state. If, therefore, she -actually persists in rejecting my suit, perhaps it were better not to -force her into accepting me, because, if liable to such defects of -temper, she could not contribute much to my felicity.” - -“Sir, you quite misunderstand me,” said Mrs. Bennet, alarmed. “Lizzy is -only headstrong in such matters as these. In everything else she is as -good-natured a girl as ever lived. I will go directly to Mr. Bennet, and -we shall very soon settle it with her, I am sure.” - -She would not give him time to reply, but hurrying instantly to her -husband, called out, as she entered the library,-- - -“Oh, Mr. Bennet, you are wanted immediately; we are all in an uproar. -You must come and make Lizzy marry Mr. Collins, for she vows she will -not have him; and if you do not make haste he will change his mind and -not have _her_.” - -Mr. Bennet raised his eyes from his book as she entered, and fixed them -on her face with a calm unconcern, which was not in the least altered by -her communication. - -“I have not the pleasure of understanding you,” said he, when she had -finished her speech. “Of what are you talking?” - -“Of Mr. Collins and Lizzy. Lizzy declares she will not have Mr. Collins, -and Mr. Collins begins to say that he will not have Lizzy.” - -“And what am I to do on the occasion? It seems a hopeless business.” - -“Speak to Lizzy about it yourself. Tell her that you insist upon her -marrying him.” - -“Let her be called down. She shall hear my opinion.” - -Mrs. Bennet rang the bell, and Miss Elizabeth was summoned to the -library. - -“Come here, child,” cried her father as she appeared. “I have sent for -you on an affair of importance. I understand that Mr. Collins has made -you an offer of marriage. Is it true?” - -Elizabeth replied that it was. - -“Very well--and this offer of marriage you have refused?” - -“I have, sir.” - -“Very well. We now come to the point. Your mother insists upon your -accepting it. Is it not so, Mrs. Bennet?” - -“Yes, or I will never see her again.” - -“An unhappy alternative is before you, Elizabeth. From this day you must -be a stranger to one of your parents. Your mother will never see you -again if you do _not_ marry Mr. Collins, and I will never see you again -if you _do_.” - -Elizabeth could not but smile at such a conclusion of such a beginning; -but Mrs. Bennet, who had persuaded herself that her husband regarded the -affair as she wished, was excessively disappointed. - -“What do you mean, Mr. Bennet, by talking in this way? You promised me -to _insist_ upon her marrying him.” - -“My dear,” replied her husband, “I have two small favours to request. -First, that you will allow me the free use of my understanding on the -present occasion; and, secondly, of my room. I shall be glad to have the -library to myself as soon as may be.” - -Not yet, however, in spite of her disappointment in her husband, did -Mrs. Bennet give up the point. She talked to Elizabeth again and again; -coaxed and threatened her by turns. She endeavoured to secure Jane in -her interest, but Jane, with all possible mildness, declined -interfering; and Elizabeth, sometimes with real earnestness, and -sometimes with playful gaiety, replied to her attacks. Though her manner -varied, however, her determination never did. - -Mr. Collins, meanwhile, was meditating in solitude on what had passed. -He thought too well of himself to comprehend on what motive his cousin -could refuse him; and though his pride was hurt, he suffered in no other -way. His regard for her was quite imaginary; and the possibility of her -deserving her mother’s reproach prevented his feeling any regret. - -While the family were in this confusion, Charlotte Lucas came to spend -the day with them. She was met in the vestibule by Lydia, who, flying to -her, cried in a half whisper, “I am glad you are come, for there is such -fun here! What do you think has happened this morning? Mr. Collins has -made an offer to Lizzy, and she will not have him.” - -[Illustration: - - “they entered the breakfast room” -] - -Charlotte had hardly time to answer before they were joined by Kitty, -who came to tell the same news; and no sooner had they entered the -breakfast-room, where Mrs. Bennet was alone, than she likewise began on -the subject, calling on Miss Lucas for her compassion, and entreating -her to persuade her friend Lizzy to comply with the wishes of her -family. “Pray do, my dear Miss Lucas,” she added, in a melancholy tone; -“for nobody is on my side, nobody takes part with me; I am cruelly used, -nobody feels for my poor nerves.” - -Charlotte’s reply was spared by the entrance of Jane and Elizabeth. - -“Ay, there she comes,” continued Mrs. Bennet, “looking as unconcerned as -may be, and caring no more for us than if we were at York, provided she -can have her own way. But I tell you what, Miss Lizzy, if you take it -into your head to go on refusing every offer of marriage in this way, -you will never get a husband at all--and I am sure I do not know who is -to maintain you when your father is dead. _I_ shall not be able to keep -you--and so I warn you. I have done with you from this very day. I told -you in the library, you know, that I should never speak to you again, -and you will find me as good as my word. I have no pleasure in talking -to undutiful children. Not that I have much pleasure, indeed, in talking -to anybody. People who suffer as I do from nervous complaints can have -no great inclination for talking. Nobody can tell what I suffer! But it -is always so. Those who do not complain are never pitied.” - -Her daughters listened in silence to this effusion, sensible that any -attempt to reason with or soothe her would only increase the irritation. -She talked on, therefore, without interruption from any of them till -they were joined by Mr. Collins, who entered with an air more stately -than usual, and on perceiving whom, she said to the girls,-- - -“Now, I do insist upon it, that you, all of you, hold your tongues, and -let Mr. Collins and me have a little conversation together.” - -Elizabeth passed quietly out of the room, Jane and Kitty followed, but -Lydia stood her ground, determined to hear all she could; and Charlotte, -detained first by the civility of Mr. Collins, whose inquiries after -herself and all her family were very minute, and then by a little -curiosity, satisfied herself with walking to the window and pretending -not to hear. In a doleful voice Mrs. Bennet thus began the projected -conversation:-- - -“Oh, Mr. Collins!” - -“My dear madam,” replied he, “let us be for ever silent on this point. -Far be it from me,” he presently continued, in a voice that marked his -displeasure, “to resent the behaviour of your daughter. Resignation to -inevitable evils is the duty of us all: the peculiar duty of a young man -who has been so fortunate as I have been, in early preferment; and, I -trust, I am resigned. Perhaps not the less so from feeling a doubt of my -positive happiness had my fair cousin honoured me with her hand; for I -have often observed, that resignation is never so perfect as when the -blessing denied begins to lose somewhat of its value in our estimation. -You will not, I hope, consider me as showing any disrespect to your -family, my dear madam, by thus withdrawing my pretensions to your -daughter’s favour, without having paid yourself and Mr. Bennet the -compliment of requesting you to interpose your authority in my behalf. -My conduct may, I fear, be objectionable in having accepted my -dismission from your daughter’s lips instead of your own; but we are all -liable to error. I have certainly meant well through the whole affair. -My object has been to secure an amiable companion for myself, with due -consideration for the advantage of all your family; and if my _manner_ -has been at all reprehensible, I here beg leave to apologize.” - - - - -[Illustration] - - - - -CHAPTER XXI. - - -[Illustration] - -The discussion of Mr. Collins’s offer was now nearly at an end, and -Elizabeth had only to suffer from the uncomfortable feelings necessarily -attending it, and occasionally from some peevish allusion of her mother. -As for the gentleman himself, _his_ feelings were chiefly expressed, not -by embarrassment or dejection, or by trying to avoid her, but by -stiffness of manner and resentful silence. He scarcely ever spoke to -her; and the assiduous attentions which he had been so sensible of -himself were transferred for the rest of the day to Miss Lucas, whose -civility in listening to him was a seasonable relief to them all, and -especially to her friend. - -The morrow produced no abatement of Mrs. Bennet’s ill humour or ill -health. Mr. Collins was also in the same state of angry pride. Elizabeth -had hoped that his resentment might shorten his visit, but his plan did -not appear in the least affected by it. He was always to have gone on -Saturday, and to Saturday he still meant to stay. - -After breakfast, the girls walked to Meryton, to inquire if Mr. Wickham -were returned, and to lament over his absence from the Netherfield ball. -He joined them on their entering the town, and attended them to their -aunt’s, where his regret and vexation and the concern of everybody were -well talked over. To Elizabeth, however, he voluntarily acknowledged -that the necessity of his absence _had_ been self-imposed. - -“I found,” said he, “as the time drew near, that I had better not meet -Mr. Darcy;--that to be in the same room, the same party with him for so -many hours together, might be more than I could bear, and that scenes -might arise unpleasant to more than myself.” - -She highly approved his forbearance; and they had leisure for a full -discussion of it, and for all the commendations which they civilly -bestowed on each other, as Wickham and another officer walked back with -them to Longbourn, and during the walk he particularly attended to her. -His accompanying them was a double advantage: she felt all the -compliment it offered to herself; and it was most acceptable as an -occasion of introducing him to her father and mother. - -[Illustration: “Walked back with them” - -[_Copyright 1894 by George Allen._]] - -Soon after their return, a letter was delivered to Miss Bennet; it came -from Netherfield, and was opened immediately. The envelope contained a -sheet of elegant, little, hot-pressed paper, well covered with a lady’s -fair, flowing hand; and Elizabeth saw her sister’s countenance change as -she read it, and saw her dwelling intently on some particular passages. -Jane recollected herself soon; and putting the letter away, tried to -join, with her usual cheerfulness, in the general conversation: but -Elizabeth felt an anxiety on the subject which drew off her attention -even from Wickham; and no sooner had he and his companion taken leave, -than a glance from Jane invited her to follow her upstairs. When they -had gained their own room, Jane, taking out her letter, said, “This is -from Caroline Bingley: what it contains has surprised me a good deal. -The whole party have left Netherfield by this time, and are on their way -to town; and without any intention of coming back again. You shall hear -what she says.” - -She then read the first sentence aloud, which comprised the information -of their having just resolved to follow their brother to town directly, -and of their meaning to dine that day in Grosvenor Street, where Mr. -Hurst had a house. The next was in these words:--“‘I do not pretend to -regret anything I shall leave in Hertfordshire except your society, my -dearest friend; but we will hope, at some future period, to enjoy many -returns of that delightful intercourse we have known, and in the -meanwhile may lessen the pain of separation by a very frequent and most -unreserved correspondence. I depend on you for that.’” To these -high-flown expressions Elizabeth listened with all the insensibility of -distrust; and though the suddenness of their removal surprised her, she -saw nothing in it really to lament: it was not to be supposed that their -absence from Netherfield would prevent Mr. Bingley’s being there; and as -to the loss of their society, she was persuaded that Jane must soon -cease to regard it in the enjoyment of his. - -“It is unlucky,” said she, after a short pause, “that you should not be -able to see your friends before they leave the country. But may we not -hope that the period of future happiness, to which Miss Bingley looks -forward, may arrive earlier than she is aware, and that the delightful -intercourse you have known as friends will be renewed with yet greater -satisfaction as sisters? Mr. Bingley will not be detained in London by -them.” - -“Caroline decidedly says that none of the party will return into -Hertfordshire this winter. I will read it to you. - -“‘When my brother left us yesterday, he imagined that the business which -took him to London might be concluded in three or four days; but as we -are certain it cannot be so, and at the same time convinced that when -Charles gets to town he will be in no hurry to leave it again, we have -determined on following him thither, that he may not be obliged to spend -his vacant hours in a comfortless hotel. Many of my acquaintance are -already there for the winter: I wish I could hear that you, my dearest -friend, had any intention of making one in the crowd, but of that I -despair. I sincerely hope your Christmas in Hertfordshire may abound in -the gaieties which that season generally brings, and that your beaux -will be so numerous as to prevent your feeling the loss of the three of -whom we shall deprive you.’ - -“It is evident by this,” added Jane, “that he comes back no more this -winter.” - -“It is only evident that Miss Bingley does not mean he _should_.” - -“Why will you think so? It must be his own doing; he is his own master. -But you do not know _all_. I _will_ read you the passage which -particularly hurts me. I will have no reserves from _you_. ‘Mr. Darcy is -impatient to see his sister; and to confess the truth, _we_ are scarcely -less eager to meet her again. I really do not think Georgiana Darcy has -her equal for beauty, elegance, and accomplishments; and the affection -she inspires in Louisa and myself is heightened into something still -more interesting from the hope we dare to entertain of her being -hereafter our sister. I do not know whether I ever before mentioned to -you my feelings on this subject, but I will not leave the country -without confiding them, and I trust you will not esteem them -unreasonable. My brother admires her greatly already; he will have -frequent opportunity now of seeing her on the most intimate footing; her -relations all wish the connection as much as his own; and a sister’s -partiality is not misleading me, I think, when I call Charles most -capable of engaging any woman’s heart. With all these circumstances to -favour an attachment, and nothing to prevent it, am I wrong, my dearest -Jane, in indulging the hope of an event which will secure the happiness -of so many?’ What think you of _this_ sentence, my dear Lizzy?” said -Jane, as she finished it. “Is it not clear enough? Does it not expressly -declare that Caroline neither expects nor wishes me to be her sister; -that she is perfectly convinced of her brother’s indifference; and that -if she suspects the nature of my feelings for him she means (most -kindly!) to put me on my guard. Can there be any other opinion on the -subject?” - -“Yes, there can; for mine is totally different. Will you hear it?” - -“Most willingly.” - -“You shall have it in a few words. Miss Bingley sees that her brother is -in love with you and wants him to marry Miss Darcy. She follows him to -town in the hope of keeping him there, and tries to persuade you that he -does not care about you.” - -Jane shook her head. - -“Indeed, Jane, you ought to believe me. No one who has ever seen you -together can doubt his affection; Miss Bingley, I am sure, cannot: she -is not such a simpleton. Could she have seen half as much love in Mr. -Darcy for herself, she would have ordered her wedding clothes. But the -case is this:--we are not rich enough or grand enough for them; and she -is the more anxious to get Miss Darcy for her brother, from the notion -that when there has been _one_ inter-marriage, she may have less trouble -in achieving a second; in which there is certainly some ingenuity, and I -dare say it would succeed if Miss de Bourgh were out of the way. But, my -dearest Jane, you cannot seriously imagine that, because Miss Bingley -tells you her brother greatly admires Miss Darcy, he is in the smallest -degree less sensible of _your_ merit than when he took leave of you on -Tuesday; or that it will be in her power to persuade him that, instead -of being in love with you, he is very much in love with her friend.” - -“If we thought alike of Miss Bingley,” replied Jane, “your -representation of all this might make me quite easy. But I know the -foundation is unjust. Caroline is incapable of wilfully deceiving -anyone; and all that I can hope in this case is, that she is deceived -herself.” - -“That is right. You could not have started a more happy idea, since you -will not take comfort in mine: believe her to be deceived, by all means. -You have now done your duty by her, and must fret no longer.” - -“But, my dear sister, can I be happy, even supposing the best, in -accepting a man whose sisters and friends are all wishing him to marry -elsewhere?” - -“You must decide for yourself,” said Elizabeth; “and if, upon mature -deliberation, you find that the misery of disobliging his two sisters is -more than equivalent to the happiness of being his wife, I advise you, -by all means, to refuse him.” - -“How can you talk so?” said Jane, faintly smiling; “you must know, that, -though I should be exceedingly grieved at their disapprobation, I could -not hesitate.” - -“I did not think you would; and that being the case, I cannot consider -your situation with much compassion.” - -“But if he returns no more this winter, my choice will never be -required. A thousand things may arise in six months.” - -The idea of his returning no more Elizabeth treated with the utmost -contempt. It appeared to her merely the suggestion of Caroline’s -interested wishes; and she could not for a moment suppose that those -wishes, however openly or artfully spoken, could influence a young man -so totally independent of everyone. - -She represented to her sister, as forcibly as possible, what she felt on -the subject, and had soon the pleasure of seeing its happy effect. -Jane’s temper was not desponding; and she was gradually led to hope, -though the diffidence of affection sometimes overcame the hope, that -Bingley would return to Netherfield, and answer every wish of her heart. - -They agreed that Mrs. Bennet should only hear of the departure of the -family, without being alarmed on the score of the gentleman’s conduct; -but even this partial communication gave her a great deal of concern, -and she bewailed it as exceedingly unlucky that the ladies should happen -to go away just as they were all getting so intimate together. After -lamenting it, however, at some length, she had the consolation of -thinking that Mr. Bingley would be soon down again, and soon dining at -Longbourn; and the conclusion of all was the comfortable declaration, -that, though he had been invited only to a family dinner, she would take -care to have two full courses. - - - - -[Illustration] - - - - -CHAPTER XXII. - - -[Illustration] - -The Bennets were engaged to dine with the Lucases; and again, during the -chief of the day, was Miss Lucas so kind as to listen to Mr. Collins. -Elizabeth took an opportunity of thanking her. “It keeps him in good -humour,” said she, “and I am more obliged to you than I can express.” - -Charlotte assured her friend of her satisfaction in being useful, and -that it amply repaid her for the little sacrifice of her time. This was -very amiable; but Charlotte’s kindness extended farther than Elizabeth -had any conception of:--its object was nothing less than to secure her -from any return of Mr. Collins’s addresses, by engaging them towards -herself. Such was Miss Lucas’s scheme; and appearances were so -favourable, that when they parted at night, she would have felt almost -sure of success if he had not been to leave Hertfordshire so very soon. -But here she did injustice to the fire and independence of his -character; for it led him to escape out of Longbourn House the next -morning with admirable slyness, and hasten to Lucas Lodge to throw -himself at her feet. He was anxious to avoid the notice of his cousins, -from a conviction that, if they saw him depart, they could not fail to -conjecture his design, and he was not willing to have the attempt known -till its success could be known likewise; for, though feeling almost -secure, and with reason, for Charlotte had been tolerably encouraging, -he was comparatively diffident since the adventure of Wednesday. His -reception, however, was of the most flattering kind. Miss Lucas -perceived him from an upper window as he walked towards the house, and -instantly set out to meet him accidentally in the lane. But little had -she dared to hope that so much love and eloquence awaited her there. - -In as short a time as Mr. Collins’s long speeches would allow, -everything was settled between them to the satisfaction of both; and as -they entered the house, he earnestly entreated her to name the day that -was to make him the happiest of men; and though such a solicitation must -be waived for the present, the lady felt no inclination to trifle with -his happiness. The stupidity with which he was favoured by nature must -guard his courtship from any charm that could make a woman wish for its -continuance; and Miss Lucas, who accepted him solely from the pure and -disinterested desire of an establishment, cared not how soon that -establishment were gained. - -Sir William and Lady Lucas were speedily applied to for their consent; -and it was bestowed with a most joyful alacrity. Mr. Collins’s present -circumstances made it a most eligible match for their daughter, to whom -they could give little fortune; and his prospects of future wealth were -exceedingly fair. Lady Lucas began directly to calculate, with more -interest than the matter had ever - -[Illustration: - - “So much love and eloquence” - -[_Copyright 1894 by George Allen._]] - -excited before, how many years longer Mr. Bennet was likely to live; and -Sir William gave it as his decided opinion, that whenever Mr. Collins -should be in possession of the Longbourn estate, it would be highly -expedient that both he and his wife should make their appearance at St. -James’s. The whole family in short were properly overjoyed on the -occasion. The younger girls formed hopes of _coming out_ a year or two -sooner than they might otherwise have done; and the boys were relieved -from their apprehension of Charlotte’s dying an old maid. Charlotte -herself was tolerably composed. She had gained her point, and had time -to consider of it. Her reflections were in general satisfactory. Mr. -Collins, to be sure, was neither sensible nor agreeable: his society was -irksome, and his attachment to her must be imaginary. But still he would -be her husband. Without thinking highly either of men or of matrimony, -marriage had always been her object: it was the only honourable -provision for well-educated young women of small fortune, and, however -uncertain of giving happiness, must be their pleasantest preservative -from want. This preservative she had now obtained; and at the age of -twenty-seven, without having ever been handsome, she felt all the good -luck of it. The least agreeable circumstance in the business was the -surprise it must occasion to Elizabeth Bennet, whose friendship she -valued beyond that of any other person. Elizabeth would wonder, and -probably would blame her; and though her resolution was not to be -shaken, her feelings must be hurt by such a disapprobation. She resolved -to give her the information herself; and therefore charged Mr. Collins, -when he returned to Longbourn to dinner, to drop no hint of what had -passed before any of the family. A promise of secrecy was of course very -dutifully given, but it could not be kept without difficulty; for the -curiosity excited by his long absence burst forth in such very direct -questions on his return, as required some ingenuity to evade, and he was -at the same time exercising great self-denial, for he was longing to -publish his prosperous love. - -As he was to begin his journey too early on the morrow to see any of -the family, the ceremony of leave-taking was performed when the ladies -moved for the night; and Mrs. Bennet, with great politeness and -cordiality, said how happy they should be to see him at Longbourn again, -whenever his other engagements might allow him to visit them. - -“My dear madam,” he replied, “this invitation is particularly -gratifying, because it is what I have been hoping to receive; and you -may be very certain that I shall avail myself of it as soon as -possible.” - -They were all astonished; and Mr. Bennet, who could by no means wish for -so speedy a return, immediately said,-- - -“But is there not danger of Lady Catherine’s disapprobation here, my -good sir? You had better neglect your relations than run the risk of -offending your patroness.” - -“My dear sir,” replied Mr. Collins, “I am particularly obliged to you -for this friendly caution, and you may depend upon my not taking so -material a step without her Ladyship’s concurrence.” - -“You cannot be too much on your guard. Risk anything rather than her -displeasure; and if you find it likely to be raised by your coming to us -again, which I should think exceedingly probable, stay quietly at home, -and be satisfied that _we_ shall take no offence.” - -“Believe me, my dear sir, my gratitude is warmly excited by such -affectionate attention; and, depend upon it, you will speedily receive -from me a letter of thanks for this as well as for every other mark of -your regard during my stay in Hertfordshire. As for my fair cousins, -though my absence may not be long enough to render it necessary, I shall -now take the liberty of wishing them health and happiness, not excepting -my cousin Elizabeth.” - -With proper civilities, the ladies then withdrew; all of them equally -surprised to find that he meditated a quick return. Mrs. Bennet wished -to understand by it that he thought of paying his addresses to one of -her younger girls, and Mary might have been prevailed on to accept him. -She rated his abilities much higher than any of the others: there was a -solidity in his reflections which often struck her; and though by no -means so clever as herself, she thought that, if encouraged to read and -improve himself by such an example as hers, he might become a very -agreeable companion. But on the following morning every hope of this -kind was done away. Miss Lucas called soon after breakfast, and in a -private conference with Elizabeth related the event of the day before. - -The possibility of Mr. Collins’s fancying himself in love with her -friend had once occurred to Elizabeth within the last day or two: but -that Charlotte could encourage him seemed almost as far from possibility -as that she could encourage him herself; and her astonishment was -consequently so great as to overcome at first the bounds of decorum, and -she could not help crying out,-- - -“Engaged to Mr. Collins! my dear Charlotte, impossible!” - -The steady countenance which Miss Lucas had commanded in telling her -story gave way to a momentary confusion here on receiving so direct a -reproach; though, as it was no more than she expected, she soon regained -her composure, and calmly replied,-- - -“Why should you be surprised, my dear Eliza? Do you think it incredible -that Mr. Collins should be able to procure any woman’s good opinion, -because he was not so happy as to succeed with you?” - -But Elizabeth had now recollected herself; and, making a strong effort -for it, was able to assure her, with tolerable firmness, that the -prospect of their relationship was highly grateful to her, and that she -wished her all imaginable happiness. - -“I see what you are feeling,” replied Charlotte; “you must be surprised, -very much surprised, so lately as Mr. Collins was wishing to marry you. -But when you have had time to think it all over, I hope you will be -satisfied with what I have done. I am not romantic, you know. I never -was. I ask only a comfortable home; and, considering Mr. Collins’s -character, connections, and situation in life, I am convinced that my -chance of happiness with him is as fair as most people can boast on -entering the marriage state.” - -Elizabeth quietly answered “undoubtedly;” and, after an awkward pause, -they returned to the rest of the family. Charlotte did not stay much -longer; and Elizabeth was then left to reflect on what she had heard. It -was a long time before she became at all reconciled to the idea of so -unsuitable a match. The strangeness of Mr. Collins’s making two offers -of marriage within three days was nothing in comparison of his being now -accepted. She had always felt that Charlotte’s opinion of matrimony was -not exactly like her own; but she could not have supposed it possible -that, when called into action, she would have sacrificed every better -feeling to worldly advantage. Charlotte, the wife of Mr. Collins, was a -most humiliating picture! And to the pang of a friend disgracing -herself, and sunk in her esteem, was added the distressing conviction -that it was impossible for that friend to be tolerably happy in the lot -she had chosen. - - - - -[Illustration: - - “Protested he must be entirely mistaken.” - -[_Copyright 1894 by George Allen._]] - - - - -CHAPTER XXIII. - - -[Illustration] - -Elizabeth was sitting with her mother and sisters, reflecting on what -she had heard, and doubting whether she was authorized to mention it, -when Sir William Lucas himself appeared, sent by his daughter to -announce her engagement to the family. With many compliments to them, -and much self-gratulation on the prospect of a connection between the -houses, he unfolded the matter,--to an audience not merely wondering, -but incredulous; for Mrs. Bennet, with more perseverance than -politeness, protested he must be entirely mistaken; and Lydia, always -unguarded and often uncivil, boisterously exclaimed,-- - -“Good Lord! Sir William, how can you tell such a story? Do not you know -that Mr. Collins wants to marry Lizzy?” - -Nothing less than the complaisance of a courtier could have borne -without anger such treatment: but Sir William’s good-breeding carried -him through it all; and though he begged leave to be positive as to the -truth of his information, he listened to all their impertinence with the -most forbearing courtesy. - -Elizabeth, feeling it incumbent on her to relieve him from so unpleasant -a situation, now put herself forward to confirm his account, by -mentioning her prior knowledge of it from Charlotte herself; and -endeavoured to put a stop to the exclamations of her mother and sisters, -by the earnestness of her congratulations to Sir William, in which she -was readily joined by Jane, and by making a variety of remarks on the -happiness that might be expected from the match, the excellent character -of Mr. Collins, and the convenient distance of Hunsford from London. - -Mrs. Bennet was, in fact, too much overpowered to say a great deal while -Sir William remained; but no sooner had he left them than her feelings -found a rapid vent. In the first place, she persisted in disbelieving -the whole of the matter; secondly, she was very sure that Mr. Collins -had been taken in; thirdly, she trusted that they would never be happy -together; and, fourthly, that the match might be broken off. Two -inferences, however, were plainly deduced from the whole: one, that -Elizabeth was the real cause of all the mischief; and the other, that -she herself had been barbarously used by them all; and on these two -points she principally dwelt during the rest of the day. Nothing could -console and nothing appease her. Nor did that day wear out her -resentment. A week elapsed before she could see Elizabeth without -scolding her: a month passed away before she could speak to Sir William -or Lady Lucas without being rude; and many months were gone before she -could at all forgive their daughter. - -Mr. Bennet’s emotions were much more tranquil on the occasion, and such -as he did experience he pronounced to be of a most agreeable sort; for -it gratified him, he said, to discover that Charlotte Lucas, whom he had -been used to think tolerably sensible, was as foolish as his wife, and -more foolish than his daughter! - -Jane confessed herself a little surprised at the match: but she said -less of her astonishment than of her earnest desire for their happiness; -nor could Elizabeth persuade her to consider it as improbable. Kitty and -Lydia were far from envying Miss Lucas, for Mr. Collins was only a -clergyman; and it affected them in no other way than as a piece of news -to spread at Meryton. - -Lady Lucas could not be insensible of triumph on being able to retort on -Mrs. Bennet the comfort of having a daughter well married; and she -called at Longbourn rather oftener than usual to say how happy she was, -though Mrs. Bennet’s sour looks and ill-natured remarks might have been -enough to drive happiness away. - -Between Elizabeth and Charlotte there was a restraint which kept them -mutually silent on the subject; and Elizabeth felt persuaded that no -real confidence could ever subsist between them again. Her -disappointment in Charlotte made her turn with fonder regard to her -sister, of whose rectitude and delicacy she was sure her opinion could -never be shaken, and for whose happiness she grew daily more anxious, as -Bingley had now been gone a week, and nothing was heard of his return. - -Jane had sent Caroline an early answer to her letter, and was counting -the days till she might reasonably hope to hear again. The promised -letter of thanks from Mr. Collins arrived on Tuesday, addressed to their -father, and written with all the solemnity of gratitude which a -twelve-month’s abode in the family might have prompted. After -discharging his conscience on that head, he proceeded to inform them, -with many rapturous expressions, of his happiness in having obtained the -affection of their amiable neighbour, Miss Lucas, and then explained -that it was merely with the view of enjoying her society that he had -been so ready to close with their kind wish of seeing him again at -Longbourn, whither he hoped to be able to return on Monday fortnight; -for Lady Catherine, he added, so heartily approved his marriage, that -she wished it to take place as soon as possible, which he trusted would -be an unanswerable argument with his amiable Charlotte to name an early -day for making him the happiest of men. - -Mr. Collins’s return into Hertfordshire was no longer a matter of -pleasure to Mrs. Bennet. On the contrary, she was as much disposed to -complain of it as her husband. It was very strange that he should come -to Longbourn instead of to Lucas Lodge; it was also very inconvenient -and exceedingly troublesome. She hated having visitors in the house -while her health was so indifferent, and lovers were of all people the -most disagreeable. Such were the gentle murmurs of Mrs. Bennet, and they -gave way only to the greater distress of Mr. Bingley’s continued -absence. - -Neither Jane nor Elizabeth were comfortable on this subject. Day after -day passed away without bringing any other tidings of him than the -report which shortly prevailed in Meryton of his coming no more to -Netherfield the whole winter; a report which highly incensed Mrs. -Bennet, and which she never failed to contradict as a most scandalous -falsehood. - -Even Elizabeth began to fear--not that Bingley was indifferent--but that -his sisters would be successful in keeping him away. Unwilling as she -was to admit an idea so destructive to Jane’s happiness, and so -dishonourable to the stability of her lover, she could not prevent its -frequently recurring. The united efforts of his two unfeeling sisters, -and of his overpowering friend, assisted by the attractions of Miss -Darcy and the amusements of London, might be too much, she feared, for -the strength of his attachment. - -As for Jane, _her_ anxiety under this suspense was, of course, more -painful than Elizabeth’s: but whatever she felt she was desirous of -concealing; and between herself and Elizabeth, therefore, the subject -was never alluded to. But as no such delicacy restrained her mother, an -hour seldom passed in which she did not talk of Bingley, express her -impatience for his arrival, or even require Jane to confess that if he -did not come back she should think herself very ill-used. It needed all -Jane’s steady mildness to bear these attacks with tolerable -tranquillity. - -Mr. Collins returned most punctually on the Monday fortnight, but his -reception at Longbourn was not quite so gracious as it had been on his -first introduction. He was too happy, however, to need much attention; -and, luckily for the others, the business of love-making relieved them -from a great deal of his company. The chief of every day was spent by -him at Lucas Lodge, and he sometimes returned to Longbourn only in time -to make an apology for his absence before the family went to bed. - -[Illustration: - - “_Whenever she spoke in a low voice_” -] - -Mrs. Bennet was really in a most pitiable state. The very mention of -anything concerning the match threw her into an agony of ill-humour, and -wherever she went she was sure of hearing it talked of. The sight of -Miss Lucas was odious to her. As her successor in that house, she -regarded her with jealous abhorrence. Whenever Charlotte came to see -them, she concluded her to be anticipating the hour of possession; and -whenever she spoke in a low voice to Mr. Collins, was convinced that -they were talking of the Longbourn estate, and resolving to turn herself -and her daughters out of the house as soon as Mr. Bennet was dead. She -complained bitterly of all this to her husband. - -“Indeed, Mr. Bennet,” said she, “it is very hard to think that Charlotte -Lucas should ever be mistress of this house, that _I_ should be forced -to make way for _her_, and live to see her take my place in it!” - -“My dear, do not give way to such gloomy thoughts. Let us hope for -better things. Let us flatter ourselves that _I_ may be the survivor.” - -This was not very consoling to Mrs. Bennet; and, therefore, instead of -making any answer, she went on as before. - -“I cannot bear to think that they should have all this estate. If it was -not for the entail, I should not mind it.” - -“What should not you mind?” - -“I should not mind anything at all.” - -“Let us be thankful that you are preserved from a state of such -insensibility.” - -“I never can be thankful, Mr. Bennet, for anything about the entail. How -anyone could have the conscience to entail away an estate from one’s own -daughters I cannot understand; and all for the sake of Mr. Collins, too! -Why should _he_ have it more than anybody else?” - -“I leave it to yourself to determine,” said Mr. Bennet. - - - - -[Illustration] - - - - -CHAPTER XXIV. - - -[Illustration] - -Miss Bingley’s letter arrived, and put an end to doubt. The very first -sentence conveyed the assurance of their being all settled in London for -the winter, and concluded with her brother’s regret at not having had -time to pay his respects to his friends in Hertfordshire before he left -the country. - -Hope was over, entirely over; and when Jane could attend to the rest of -the letter, she found little, except the professed affection of the -writer, that could give her any comfort. Miss Darcy’s praise occupied -the chief of it. Her many attractions were again dwelt on; and Caroline -boasted joyfully of their increasing intimacy, and ventured to predict -the accomplishment of the wishes which had been unfolded in her former -letter. She wrote also with great pleasure of her brother’s being an -inmate of Mr. Darcy’s house, and mentioned with raptures some plans of -the latter with regard to new furniture. - -Elizabeth, to whom Jane very soon communicated the chief of all this, -heard it in silent indignation. Her heart was divided between concern -for her sister and resentment against all others. To Caroline’s -assertion of her brother’s being partial to Miss Darcy, she paid no -credit. That he was really fond of Jane, she doubted no more than she -had ever done; and much as she had always been disposed to like him, she -could not think without anger, hardly without contempt, on that easiness -of temper, that want of proper resolution, which now made him the slave -of his designing friends, and led him to sacrifice his own happiness to -the caprice of their inclinations. Had his own happiness, however, been -the only sacrifice, he might have been allowed to sport with it in -whatever manner he thought best; but her sister’s was involved in it, as -she thought he must be sensible himself. It was a subject, in short, on -which reflection would be long indulged, and must be unavailing. She -could think of nothing else; and yet, whether Bingley’s regard had -really died away, or were suppressed by his friends’ interference; -whether he had been aware of Jane’s attachment, or whether it had -escaped his observation; whichever were the case, though her opinion of -him must be materially affected by the difference, her sister’s -situation remained the same, her peace equally wounded. - -A day or two passed before Jane had courage to speak of her feelings to -Elizabeth; but at last, on Mrs. Bennet’s leaving them together, after a -longer irritation than usual about Netherfield and its master, she could -not help saying,-- - -“O that my dear mother had more command over herself! she can have no -idea of the pain she gives me by her continual reflections on him. But I -will not repine. It cannot last long. He will be forgot, and we shall -all be as we were before.” - -Elizabeth looked at her sister with incredulous solicitude, but said -nothing. - -“You doubt me,” cried Jane, slightly colouring; “indeed, you have no -reason. He may live in my memory as the most amiable man of my -acquaintance but that is all. I have nothing either to hope or fear, and -nothing to reproach him with. Thank God I have not _that_ pain. A little -time, therefore--I shall certainly try to get the better----” - -With a stronger voice she soon added, “I have this comfort immediately, -that it has not been more than an error of fancy on my side, and that it -has done no harm to anyone but myself.” - -“My dear Jane,” exclaimed Elizabeth, “you are too good. Your sweetness -and disinterestedness are really angelic; I do not know what to say to -you. I feel as if I had never done you justice, or loved you as you -deserve.” - -Miss Bennet eagerly disclaimed all extraordinary merit, and threw back -the praise on her sister’s warm affection. - -“Nay,” said Elizabeth, “this is not fair. _You_ wish to think all the -world respectable, and are hurt if I speak ill of anybody. _I_ only want -to think _you_ perfect, and you set yourself against it. Do not be -afraid of my running into any excess, of my encroaching on your -privilege of universal good-will. You need not. There are few people -whom I really love, and still fewer of whom I think well. The more I see -of the world the more am I dissatisfied with it; and every day confirms -my belief of the inconsistency of all human characters, and of the -little dependence that can be placed on the appearance of either merit -or sense. I have met with two instances lately: one I will not mention, -the other is Charlotte’s marriage. It is unaccountable! in every view it -is unaccountable!” - -“My dear Lizzy, do not give way to such feelings as these. They will -ruin your happiness. You do not make allowance enough for difference of -situation and temper. Consider Mr. Collins’s respectability, and -Charlotte’s prudent, steady character. Remember that she is one of a -large family; that as to fortune it is a most eligible match; and be -ready to believe, for everybody’s sake, that she may feel something like -regard and esteem for our cousin.” - -“To oblige you, I would try to believe almost anything, but no one else -could be benefited by such a belief as this; for were I persuaded that -Charlotte had any regard for him, I should only think worse of her -understanding than I now do of her heart. My dear Jane, Mr. Collins is a -conceited, pompous, narrow-minded, silly man: you know he is, as well as -I do; and you must feel, as well as I do, that the woman who marries him -cannot have a proper way of thinking. You shall not defend her, though -it is Charlotte Lucas. You shall not, for the sake of one individual, -change the meaning of principle and integrity, nor endeavour to persuade -yourself or me, that selfishness is prudence, and insensibility of -danger security for happiness.” - -“I must think your language too strong in speaking of both,” replied -Jane; “and I hope you will be convinced of it, by seeing them happy -together. But enough of this. You alluded to something else. You -mentioned _two_ instances. I cannot misunderstand you, but I entreat -you, dear Lizzy, not to pain me by thinking _that person_ to blame, and -saying your opinion of him is sunk. We must not be so ready to fancy -ourselves intentionally injured. We must not expect a lively young man -to be always so guarded and circumspect. It is very often nothing but -our own vanity that deceives us. Women fancy admiration means more than -it does.” - -“And men take care that they should.” - -“If it is designedly done, they cannot be justified; but I have no idea -of there being so much design in the world as some persons imagine.” - -“I am far from attributing any part of Mr. Bingley’s conduct to design,” -said Elizabeth; “but, without scheming to do wrong, or to make others -unhappy, there may be error and there may be misery. Thoughtlessness, -want of attention to other people’s feelings, and want of resolution, -will do the business.” - -“And do you impute it to either of those?” - -“Yes; to the last. But if I go on I shall displease you by saying what I -think of persons you esteem. Stop me, whilst you can.” - -“You persist, then, in supposing his sisters influence him?” - -“Yes, in conjunction with his friend.” - -“I cannot believe it. Why should they try to influence him? They can -only wish his happiness; and if he is attached to me no other woman can -secure it.” - -“Your first position is false. They may wish many things besides his -happiness: they may wish his increase of wealth and consequence; they -may wish him to marry a girl who has all the importance of money, great -connections, and pride.” - -“Beyond a doubt they do wish him to choose Miss Darcy,” replied Jane; -“but this may be from better feelings than you are supposing. They have -known her much longer than they have known me; no wonder if they love -her better. But, whatever may be their own wishes, it is very unlikely -they should have opposed their brother’s. What sister would think -herself at liberty to do it, unless there were something very -objectionable? If they believed him attached to me they would not try to -part us; if he were so, they could not succeed. By supposing such an -affection, you make everybody acting unnaturally and wrong, and me most -unhappy. Do not distress me by the idea. I am not ashamed of having been -mistaken--or, at least, it is slight, it is nothing in comparison of -what I should feel in thinking ill of him or his sisters. Let me take it -in the best light, in the light in which it may be understood.” - -Elizabeth could not oppose such a wish; and from this time Mr. Bingley’s -name was scarcely ever mentioned between them. - -Mrs. Bennet still continued to wonder and repine at his returning no -more; and though a day seldom passed in which Elizabeth did not account -for it clearly, there seemed little chance of her ever considering it -with less perplexity. Her daughter endeavoured to convince her of what -she did not believe herself, that his attentions to Jane had been merely -the effect of a common and transient liking, which ceased when he saw -her no more; but though the probability of the statement was admitted at -the time, she had the same story to repeat every day. Mrs. Bennet’s best -comfort was, that Mr. Bingley must be down again in the summer. - -Mr. Bennet treated the matter differently. “So, Lizzy,” said he, one -day, “your sister is crossed in love, I find. I congratulate her. Next -to being married, a girl likes to be crossed in love a little now and -then. It is something to think of, and gives her a sort of distinction -among her companions. When is your turn to come? You will hardly bear to -be long outdone by Jane. Now is your time. Here are officers enough at -Meryton to disappoint all the young ladies in the country. Let Wickham -be your man. He is a pleasant fellow, and would jilt you creditably.” - -“Thank you, sir, but a less agreeable man would satisfy me. We must not -all expect Jane’s good fortune.” - -“True,” said Mr. Bennet; “but it is a comfort to think that, whatever of -that kind may befall you, you have an affectionate mother who will -always make the most of it.” - -Mr. Wickham’s society was of material service in dispelling the gloom -which the late perverse occurrences had thrown on many of the Longbourn -family. They saw him often, and to his other recommendations was now -added that of general unreserve. The whole of what Elizabeth had already -heard, his claims on Mr. Darcy, and all that he had suffered from him, -was now openly acknowledged and publicly canvassed; and everybody was -pleased to think how much they had always disliked Mr. Darcy before they -had known anything of the matter. - -Miss Bennet was the only creature who could suppose there might be any -extenuating circumstances in the case unknown to the society of -Hertfordshire: her mild and steady candour always pleaded for -allowances, and urged the possibility of mistakes; but by everybody else -Mr. Darcy was condemned as the worst of men. - - - - -[Illustration] - - - - -CHAPTER XXV. - - -[Illustration] - -After a week spent in professions of love and schemes of felicity, Mr. -Collins was called from his amiable Charlotte by the arrival of -Saturday. The pain of separation, however, might be alleviated on his -side by preparations for the reception of his bride, as he had reason to -hope, that shortly after his next return into Hertfordshire, the day -would be fixed that was to make him the happiest of men. He took leave -of his relations at Longbourn with as much solemnity as before; wished -his fair cousins health and happiness again, and promised their father -another letter of thanks. - -On the following Monday, Mrs. Bennet had the pleasure of receiving her -brother and his wife, who came, as usual, to spend the Christmas at -Longbourn. Mr. Gardiner was a sensible, gentlemanlike man, greatly -superior to his sister, as well by nature as education. The Netherfield -ladies would have had difficulty in believing that a man who lived by -trade, and within view of his own warehouses, could have been so -well-bred and agreeable. Mrs. Gardiner, who was several years younger -than Mrs. Bennet and Mrs. Philips, was an amiable, intelligent, elegant -woman, and a great favourite with her Longbourn nieces. Between the two -eldest and herself especially, there subsisted a very particular regard. -They had frequently been staying with her in town. - -The first part of Mrs. Gardiner’s business, on her arrival, was to -distribute her presents and describe the newest fashions. When this was -done, she had a less active part to play. It became her turn to listen. -Mrs. Bennet had many grievances to relate, and much to complain of. They -had all been very ill-used since she last saw her sister. Two of her -girls had been on the point of marriage, and after all there was nothing -in it. - -“I do not blame Jane,” she continued, “for Jane would have got Mr. -Bingley if she could. But, Lizzy! Oh, sister! it is very hard to think -that she might have been Mr. Collins’s wife by this time, had not it -been for her own perverseness. He made her an offer in this very room, -and she refused him. The consequence of it is, that Lady Lucas will have -a daughter married before I have, and that Longbourn estate is just as -much entailed as ever. The Lucases are very artful people, indeed, -sister. They are all for what they can get. I am sorry to say it of -them, but so it is. It makes me very nervous and poorly, to be thwarted -so in my own family, and to have neighbours who think of themselves -before anybody else. However, your coming just at this time is the -greatest of comforts, and I am very glad to hear what you tell us of -long sleeves.” - -Mrs. Gardiner, to whom the chief of this news had been given before, in -the course of Jane and Elizabeth’s correspondence with her, made her -sister a slight answer, and, in compassion to her nieces, turned the -conversation. - -When alone with Elizabeth afterwards, she spoke more on the subject. -“It seems likely to have been a desirable match for Jane,” said she. “I -am sorry it went off. But these things happen so often! A young man, -such as you describe Mr. Bingley, so easily falls in love with a pretty -girl for a few weeks, and, when accident separates them, so easily -forgets her, that these sort of inconstancies are very frequent.” - -[Illustration: - - “Offended two or three young ladies” - -[_Copyright 1894 by George Allen._]] - -“An excellent consolation in its way,” said Elizabeth; “but it will not -do for _us_. We do not suffer by accident. It does not often happen -that the interference of friends will persuade a young man of -independent fortune to think no more of a girl whom he was violently in -love with only a few days before.” - -“But that expression of ‘violently in love’ is so hackneyed, so -doubtful, so indefinite, that it gives me very little idea. It is as -often applied to feelings which arise only from a half hour’s -acquaintance, as to a real, strong attachment. Pray, how _violent was_ -Mr. Bingley’s love?” - -“I never saw a more promising inclination; he was growing quite -inattentive to other people, and wholly engrossed by her. Every time -they met, it was more decided and remarkable. At his own ball he -offended two or three young ladies by not asking them to dance; and I -spoke to him twice myself without receiving an answer. Could there be -finer symptoms? Is not general incivility the very essence of love?” - -“Oh, yes! of that kind of love which I suppose him to have felt. Poor -Jane! I am sorry for her, because, with her disposition, she may not get -over it immediately. It had better have happened to _you_, Lizzy; you -would have laughed yourself out of it sooner. But do you think she would -be prevailed on to go back with us? Change of scene might be of -service--and perhaps a little relief from home may be as useful as -anything.” - -Elizabeth was exceedingly pleased with this proposal, and felt persuaded -of her sister’s ready acquiescence. - -“I hope,” added Mrs. Gardiner, “that no consideration with regard to -this young man will influence her. We live in so different a part of -town, all our connections are so different, and, as you well know, we go -out so little, that it is very improbable they should meet at all, -unless he really comes to see her.” - -“And _that_ is quite impossible; for he is now in the custody of his -friend, and Mr. Darcy would no more suffer him to call on Jane in such a -part of London! My dear aunt, how could you think of it? Mr. Darcy may, -perhaps, have _heard_ of such a place as Gracechurch Street, but he -would hardly think a month’s ablution enough to cleanse him from its -impurities, were he once to enter it; and, depend upon it, Mr. Bingley -never stirs without him.” - -“So much the better. I hope they will not meet at all. But does not Jane -correspond with his sister? _She_ will not be able to help calling.” - -“She will drop the acquaintance entirely.” - -But, in spite of the certainty in which Elizabeth affected to place this -point, as well as the still more interesting one of Bingley’s being -withheld from seeing Jane, she felt a solicitude on the subject which -convinced her, on examination, that she did not consider it entirely -hopeless. It was possible, and sometimes she thought it probable, that -his affection might be re-animated, and the influence of his friends -successfully combated by the more natural influence of Jane’s -attractions. - -Miss Bennet accepted her aunt’s invitation with pleasure; and the -Bingleys were no otherwise in her thoughts at the same time than as she -hoped, by Caroline’s not living in the same house with her brother, she -might occasionally spend a morning with her, without any danger of -seeing him. - -The Gardiners stayed a week at Longbourn; and what with the Philipses, -the Lucases, and the officers, there was not a day without its -engagement. Mrs. Bennet had so carefully provided for the entertainment -of her brother and sister, that they did not once sit down to a family -dinner. When the engagement was for home, some of the officers always -made part of it, of which officers Mr. Wickham was sure to be one; and -on these occasions Mrs. Gardiner, rendered suspicious by Elizabeth’s -warm commendation of him, narrowly observed them both. Without supposing -them, from what she saw, to be very seriously in love, their preference -of each other was plain enough to make her a little uneasy; and she -resolved to speak to Elizabeth on the subject before she left -Hertfordshire, and represent to her the imprudence of encouraging such -an attachment. - -To Mrs. Gardiner, Wickham had one means of affording pleasure, -unconnected with his general powers. About ten or a dozen years ago, -before her marriage, she had spent a considerable time in that very part -of Derbyshire to which he belonged. They had, therefore, many -acquaintance in common; and, though Wickham had been little there since -the death of Darcy’s father, five years before, it was yet in his power -to give her fresher intelligence of her former friends than she had been -in the way of procuring. - -Mrs. Gardiner had seen Pemberley, and known the late Mr. Darcy by -character perfectly well. Here, consequently, was an inexhaustible -subject of discourse. In comparing her recollection of Pemberley with -the minute description which Wickham could give, and in bestowing her -tribute of praise on the character of its late possessor, she was -delighting both him and herself. On being made acquainted with the -present Mr. Darcy’s treatment of him, she tried to remember something of -that gentleman’s reputed disposition, when quite a lad, which might -agree with it; and was confident, at last, that she recollected having -heard Mr. Fitzwilliam Darcy formerly spoken of as a very proud, -ill-natured boy. - - - - -[Illustration: - - “Will you come and see me?” -] - - - - -CHAPTER XXVI. - - -[Illustration] - -Mrs. Gardiner’s caution to Elizabeth was punctually and kindly given on -the first favourable opportunity of speaking to her alone: after -honestly telling her what she thought, she thus went on:-- - -“You are too sensible a girl, Lizzy, to fall in love merely because you -are warned against it; and, therefore, I am not afraid of speaking -openly. Seriously, I would have you be on your guard. Do not involve -yourself, or endeavour to involve him, in an affection which the want of -fortune would make so very imprudent. I have nothing to say against -_him_: he is a most interesting young man; and if he had the fortune he -ought to have, I should think you could not do better. But as it is--you -must not let your fancy run away with you. You have sense, and we all -expect you to use it. Your father would depend on _your_ resolution and -good conduct, I am sure. You must not disappoint your father.” - -“My dear aunt, this is being serious indeed.” - -“Yes, and I hope to engage you to be serious likewise.” - -“Well, then, you need not be under any alarm. I will take care of -myself, and of Mr. Wickham too. He shall not be in love with me, if I -can prevent it.” - -“Elizabeth, you are not serious now.” - -“I beg your pardon. I will try again. At present I am not in love with -Mr. Wickham; no, I certainly am not. But he is, beyond all comparison, -the most agreeable man I ever saw--and if he becomes really attached to -me--I believe it will be better that he should not. I see the imprudence -of it. Oh, _that_ abominable Mr. Darcy! My father’s opinion of me does -me the greatest honour; and I should be miserable to forfeit it. My -father, however, is partial to Mr. Wickham. In short, my dear aunt, I -should be very sorry to be the means of making any of you unhappy; but -since we see, every day, that where there is affection young people are -seldom withheld, by immediate want of fortune, from entering into -engagements with each other, how can I promise to be wiser than so many -of my fellow-creatures, if I am tempted, or how am I even to know that -it would be wiser to resist? All that I can promise you, therefore, is -not to be in a hurry. I will not be in a hurry to believe myself his -first object. When I am in company with him, I will not be wishing. In -short, I will do my best.” - -“Perhaps it will be as well if you discourage his coming here so very -often. At least you should not _remind_ your mother of inviting him.” - -“As I did the other day,” said Elizabeth, with a conscious smile; “very -true, it will be wise in me to refrain from _that_. But do not imagine -that he is always here so often. It is on your account that he has been -so frequently invited this week. You know my mother’s ideas as to the -necessity of constant company for her friends. But really, and upon my -honour, I will try to do what I think to be wisest; and now I hope you -are satisfied.” - -Her aunt assured her that she was; and Elizabeth, having thanked her for -the kindness of her hints, they parted,--a wonderful instance of advice -being given on such a point without being resented. - -Mr. Collins returned into Hertfordshire soon after it had been quitted -by the Gardiners and Jane; but, as he took up his abode with the -Lucases, his arrival was no great inconvenience to Mrs. Bennet. His -marriage was now fast approaching; and she was at length so far resigned -as to think it inevitable, and even repeatedly to say, in an ill-natured -tone, that she “_wished_ they might be happy.” Thursday was to be the -wedding-day, and on Wednesday Miss Lucas paid her farewell visit; and -when she rose to take leave, Elizabeth, ashamed of her mother’s -ungracious and reluctant good wishes, and sincerely affected herself, -accompanied her out of the room. As they went down stairs together, -Charlotte said,-- - -“I shall depend on hearing from you very often, Eliza.” - -“_That_ you certainly shall.” - -“And I have another favour to ask. Will you come and see me?” - -“We shall often meet, I hope, in Hertfordshire.” - -“I am not likely to leave Kent for some time. Promise me, therefore, to -come to Hunsford.” - -Elizabeth could not refuse, though she foresaw little pleasure in the -visit. - -“My father and Maria are to come to me in March,” added Charlotte, “and -I hope you will consent to be of the party. Indeed, Eliza, you will be -as welcome to me as either of them.” - -The wedding took place: the bride and bridegroom set off for Kent from -the church door, and everybody had as much to say or to hear on the -subject as usual. Elizabeth soon heard from her friend, and their -correspondence was as regular and frequent as it ever had been: that it -should be equally unreserved was impossible. Elizabeth could never -address her without feeling that all the comfort of intimacy was over; -and, though determined not to slacken as a correspondent, it was for the -sake of what had been rather than what was. Charlotte’s first letters -were received with a good deal of eagerness: there could not but be -curiosity to know how she would speak of her new home, how she would -like Lady Catherine, and how happy she would dare pronounce herself to -be; though, when the letters were read, Elizabeth felt that Charlotte -expressed herself on every point exactly as she might have foreseen. She -wrote cheerfully, seemed surrounded with comforts, and mentioned nothing -which she could not praise. The house, furniture, neighbourhood, and -roads, were all to her taste, and Lady Catherine’s behaviour was most -friendly and obliging. It was Mr. Collins’s picture of Hunsford and -Rosings rationally softened; and Elizabeth perceived that she must wait -for her own visit there, to know the rest. - -Jane had already written a few lines to her sister, to announce their -safe arrival in London; and when she wrote again, Elizabeth hoped it -would be in her power to say something of the Bingleys. - -Her impatience for this second letter was as well rewarded as impatience -generally is. Jane had been a week in town, without either seeing or -hearing from Caroline. She accounted for it, however, by supposing that -her last letter to her friend from Longbourn had by some accident been -lost. - -“My aunt,” she continued, “is going to-morrow into that part of the -town, and I shall take the opportunity of calling in Grosvenor Street.” - -She wrote again when the visit was paid, and she had seen Miss Bingley. -“I did not think Caroline in spirits,” were her words, “but she was very -glad to see me, and reproached me for giving her no notice of my coming -to London. I was right, therefore; my last letter had never reached her. -I inquired after their brother, of course. He was well, but so much -engaged with Mr. Darcy that they scarcely ever saw him. I found that -Miss Darcy was expected to dinner: I wish I could see her. My visit was -not long, as Caroline and Mrs. Hurst were going out. I dare say I shall -soon see them here.” - -Elizabeth shook her head over this letter. It convinced her that -accident only could discover to Mr. Bingley her sister’s being in town. - -Four weeks passed away, and Jane saw nothing of him. She endeavoured to -persuade herself that she did not regret it; but she could no longer be -blind to Miss Bingley’s inattention. After waiting at home every morning -for a fortnight, and inventing every evening a fresh excuse for her, the -visitor did at last appear; but the shortness of her stay, and, yet -more, the alteration of her manner, would allow Jane to deceive herself -no longer. The letter which she wrote on this occasion to her sister -will prove what she felt:-- - - “My dearest Lizzy will, I am sure, be incapable of triumphing in - her better judgment, at my expense, when I confess myself to have - been entirely deceived in Miss Bingley’s regard for me. But, my - dear sister, though the event has proved you right, do not think me - obstinate if I still assert that, considering what her behaviour - was, my confidence was as natural as your suspicion. I do not at - all comprehend her reason for wishing to be intimate with me; but, - if the same circumstances were to happen again, I am sure I should - be deceived again. Caroline did not return my visit till yesterday; - and not a note, not a line, did I receive in the meantime. When she - did come, it was very evident that she had no pleasure in it; she - made a slight, formal apology for not calling before, said not a - word of wishing to see me again, and was, in every respect, so - altered a creature, that when she went away I was perfectly - resolved to continue the acquaintance no longer. I pity, though I - cannot help blaming, her. She was very wrong in singling me out as - she did; I can safely say, that every advance to intimacy began on - her side. But I pity her, because she must feel that she has been - acting wrong, and because I am very sure that anxiety for her - brother is the cause of it. I need not explain myself farther; and - though _we_ know this anxiety to be quite needless, yet if she - feels it, it will easily account for her behaviour to me; and so - deservedly dear as he is to his sister, whatever anxiety she may - feel on his behalf is natural and amiable. I cannot but wonder, - however, at her having any such fears now, because if he had at all - cared about me, we must have met long, long ago. He knows of my - being in town, I am certain, from something she said herself; and - yet it would seem, by her manner of talking, as if she wanted to - persuade herself that he is really partial to Miss Darcy. I cannot - understand it. If I were not afraid of judging harshly, I should be - almost tempted to say, that there is a strong appearance of - duplicity in all this. I will endeavour to banish every painful - thought, and think only of what will make me happy, your affection, - and the invariable kindness of my dear uncle and aunt. Let me hear - from you very soon. Miss Bingley said something of his never - returning to Netherfield again, of giving up the house, but not - with any certainty. We had better not mention it. I am extremely - glad that you have such pleasant accounts from our friends at - Hunsford. Pray go to see them, with Sir William and Maria. I am - sure you will be very comfortable there. - -“Yours, etc.” - -This letter gave Elizabeth some pain; but her spirits returned, as she -considered that Jane would no longer be duped, by the sister at least. -All expectation from the brother was now absolutely over. She would not -even wish for any renewal of his attentions. His character sunk on every -review of it; and, as a punishment for him, as well as a possible -advantage to Jane, she seriously hoped he might really soon marry Mr. -Darcy’s sister, as, by Wickham’s account, she would make him abundantly -regret what he had thrown away. - -Mrs. Gardiner about this time reminded Elizabeth of her promise -concerning that gentleman, and required information; and Elizabeth had -such to send as might rather give contentment to her aunt than to -herself. His apparent partiality had subsided, his attentions were over, -he was the admirer of some one else. Elizabeth was watchful enough to -see it all, but she could see it and write of it without material pain. -Her heart had been but slightly touched, and her vanity was satisfied -with believing that _she_ would have been his only choice, had fortune -permitted it. The sudden acquisition of ten thousand pounds was the most -remarkable charm of the young lady to whom he was now rendering himself -agreeable; but Elizabeth, less clear-sighted perhaps in this case than -in Charlotte’s, did not quarrel with him for his wish of independence. -Nothing, on the contrary, could be more natural; and, while able to -suppose that it cost him a few struggles to relinquish her, she was -ready to allow it a wise and desirable measure for both, and could very -sincerely wish him happy. - -All this was acknowledged to Mrs. Gardiner; and, after relating the -circumstances, she thus went on:--“I am now convinced, my dear aunt, -that I have never been much in love; for had I really experienced that -pure and elevating passion, I should at present detest his very name, -and wish him all manner of evil. But my feelings are not only cordial -towards _him_, they are even impartial towards Miss King. I cannot find -out that I hate her at all, or that I am in the least unwilling to think -her a very good sort of girl. There can be no love in all this. My -watchfulness has been effectual; and though I should certainly be a more -interesting object to all my acquaintance, were I distractedly in love -with him, I cannot say that I regret my comparative insignificance. -Importance may sometimes be purchased too dearly. Kitty and Lydia take -his defection much more to heart than I do. They are young in the ways -of the world, and not yet open to the mortifying conviction that -handsome young men must have something to live on as well as the -plain.” - - - - -[Illustration: - - “On the Stairs” -] - - - - -CHAPTER XXVII. - - -[Illustration] - -With no greater events than these in the Longbourn family, and otherwise -diversified by little beyond the walks to Meryton, sometimes dirty and -sometimes cold, did January and February pass away. March was to take -Elizabeth to Hunsford. She had not at first thought very seriously of -going thither; but Charlotte, she soon found, was depending on the -plan, and she gradually learned to consider it herself with greater -pleasure as well as greater certainty. Absence had increased her desire -of seeing Charlotte again, and weakened her disgust of Mr. Collins. -There was novelty in the scheme; and as, with such a mother and such -uncompanionable sisters, home could not be faultless, a little change -was not unwelcome for its own sake. The journey would, moreover, give -her a peep at Jane; and, in short, as the time drew near, she would have -been very sorry for any delay. Everything, however, went on smoothly, -and was finally settled according to Charlotte’s first sketch. She was -to accompany Sir William and his second daughter. The improvement of -spending a night in London was added in time, and the plan became as -perfect as plan could be. - -The only pain was in leaving her father, who would certainly miss her, -and who, when it came to the point, so little liked her going, that he -told her to write to him, and almost promised to answer her letter. - -The farewell between herself and Mr. Wickham was perfectly friendly; on -his side even more. His present pursuit could not make him forget that -Elizabeth had been the first to excite and to deserve his attention, the -first to listen and to pity, the first to be admired; and in his manner -of bidding her adieu, wishing her every enjoyment, reminding her of what -she was to expect in Lady Catherine de Bourgh, and trusting their -opinion of her--their opinion of everybody--would always coincide, there -was a solicitude, an interest, which she felt must ever attach her to -him with a most sincere regard; and she parted from him convinced, that, -whether married or single, he must always be her model of the amiable -and pleasing. - -Her fellow-travellers the next day were not of a kind to make her think -him less agreeable. Sir William Lucas, and his daughter Maria, a -good-humoured girl, but as empty-headed as himself, had nothing to say -that could be worth hearing, and were listened to with about as much -delight as the rattle of the chaise. Elizabeth loved absurdities, but -she had known Sir William’s too long. He could tell her nothing new of -the wonders of his presentation and knighthood; and his civilities were -worn out, like his information. - -It was a journey of only twenty-four miles, and they began it so early -as to be in Gracechurch Street by noon. As they drove to Mr. Gardiner’s -door, Jane was at a drawing-room window watching their arrival: when -they entered the passage, she was there to welcome them, and Elizabeth, -looking earnestly in her face, was pleased to see it healthful and -lovely as ever. On the stairs were a troop of little boys and girls, -whose eagerness for their cousin’s appearance would not allow them to -wait in the drawing-room, and whose shyness, as they had not seen her -for a twelvemonth, prevented their coming lower. All was joy and -kindness. The day passed most pleasantly away; the morning in bustle and -shopping, and the evening at one of the theatres. - -Elizabeth then contrived to sit by her aunt. Their first subject was her -sister; and she was more grieved than astonished to hear, in reply to -her minute inquiries, that though Jane always struggled to support her -spirits, there were periods of dejection. It was reasonable, however, to -hope that they would not continue long. Mrs. Gardiner gave her the -particulars also of Miss Bingley’s visit in Gracechurch Street, and -repeated conversations occurring at different times between Jane and -herself, which proved that the former had, from her heart, given up the -acquaintance. - -Mrs. Gardiner then rallied her niece on Wickham’s desertion, and -complimented her on bearing it so well. - -“But, my dear Elizabeth,” she added, “what sort of girl is Miss King? I -should be sorry to think our friend mercenary.” - -“Pray, my dear aunt, what is the difference in matrimonial affairs, -between the mercenary and the prudent motive? Where does discretion end, -and avarice begin? Last Christmas you were afraid of his marrying me, -because it would be imprudent; and now, because he is trying to get a -girl with only ten thousand pounds, you want to find out that he is -mercenary.” - -“If you will only tell me what sort of girl Miss King is, I shall know -what to think.” - -“She is a very good kind of girl, I believe. I know no harm of her.” - -“But he paid her not the smallest attention till her grandfather’s death -made her mistress of this fortune?” - -“No--why should he? If it were not allowable for him to gain _my_ -affections, because I had no money, what occasion could there be for -making love to a girl whom he did not care about, and who was equally -poor?” - -“But there seems indelicacy in directing his attentions towards her so -soon after this event.” - -“A man in distressed circumstances has not time for all those elegant -decorums which other people may observe. If _she_ does not object to it, -why should _we_?” - -“_Her_ not objecting does not justify _him_. It only shows her being -deficient in something herself--sense or feeling.” - -“Well,” cried Elizabeth, “have it as you choose. _He_ shall be -mercenary, and _she_ shall be foolish.” - -“No, Lizzy, that is what I do _not_ choose. I should be sorry, you know, -to think ill of a young man who has lived so long in Derbyshire.” - -“Oh, if that is all, I have a very poor opinion of young men who live in -Derbyshire; and their intimate friends who live in Hertfordshire are not -much better. I am sick of them all. Thank heaven! I am going to-morrow -where I shall find a man who has not one agreeable quality, who has -neither manners nor sense to recommend him. Stupid men are the only ones -worth knowing, after all.” - -“Take care, Lizzy; that speech savours strongly of disappointment.” - -Before they were separated by the conclusion of the play, she had the -unexpected happiness of an invitation to accompany her uncle and aunt in -a tour of pleasure which they proposed taking in the summer. - -“We have not quite determined how far it shall carry us,” said Mrs. -Gardiner; “but perhaps, to the Lakes.” - -No scheme could have been more agreeable to Elizabeth, and her -acceptance of the invitation was most ready and grateful. “My dear, dear -aunt,” she rapturously cried, “what delight! what felicity! You give me -fresh life and vigour. Adieu to disappointment and spleen. What are men -to rocks and mountains? Oh, what hours of transport we shall spend! And -when we _do_ return, it shall not be like other travellers, without -being able to give one accurate idea of anything. We _will_ know where -we have gone--we _will_ recollect what we have seen. Lakes, mountains, -and rivers, shall not be jumbled together in our imaginations; nor, when -we attempt to describe any particular scene, will we begin quarrelling -about its relative situation. Let _our_ first effusions be less -insupportable than those of the generality of travellers.” - - - - -[Illustration: - - “At the door” -] - - - - -CHAPTER XXVIII. - - -[Illustration] - -Every object in the next day’s journey was new and interesting to -Elizabeth; and her spirits were in a state of enjoyment; for she had -seen her sister looking so well as to banish all fear for her health, -and the prospect of her northern tour was a constant source of delight. - -When they left the high road for the lane to Hunsford, every eye was in -search of the Parsonage, and every turning expected to bring it in view. -The paling of Rosings park was their boundary on one side. Elizabeth -smiled at the recollection of all that she had heard of its inhabitants. - -At length the Parsonage was discernible. The garden sloping to the -road, the house standing in it, the green pales and the laurel hedge, -everything declared they were arriving. Mr. Collins and Charlotte -appeared at the door, and the carriage stopped at the small gate, which -led by a short gravel walk to the house, amidst the nods and smiles of -the whole party. In a moment they were all out of the chaise, rejoicing -at the sight of each other. Mrs. Collins welcomed her friend with the -liveliest pleasure, and Elizabeth was more and more satisfied with -coming, when she found herself so affectionately received. She saw -instantly that her cousin’s manners were not altered by his marriage: -his formal civility was just what it had been; and he detained her some -minutes at the gate to hear and satisfy his inquiries after all her -family. They were then, with no other delay than his pointing out the -neatness of the entrance, taken into the house; and as soon as they were -in the parlour, he welcomed them a second time, with ostentatious -formality, to his humble abode, and punctually repeated all his wife’s -offers of refreshment. - -Elizabeth was prepared to see him in his glory; and she could not help -fancying that in displaying the good proportion of the room, its aspect, -and its furniture, he addressed himself particularly to her, as if -wishing to make her feel what she had lost in refusing him. But though -everything seemed neat and comfortable, she was not able to gratify him -by any sigh of repentance; and rather looked with wonder at her friend, -that she could have so cheerful an air with such a companion. When Mr. -Collins said anything of which his wife might reasonably be ashamed, -which certainly was not seldom, she involuntarily turned her eye on -Charlotte. Once or twice she could discern a faint blush; but in general -Charlotte wisely did not hear. After sitting long enough to admire -every article of furniture in the room, from the sideboard to the -fender, to give an account of their journey, and of all that had -happened in London, Mr. Collins invited them to take a stroll in the -garden, which was large and well laid out, and to the cultivation of -which he attended himself. To work in his garden was one of his most -respectable pleasures; and Elizabeth admired the command of countenance -with which Charlotte talked of the healthfulness of the exercise, and -owned she encouraged it as much as possible. Here, leading the way -through every walk and cross walk, and scarcely allowing them an -interval to utter the praises he asked for, every view was pointed out -with a minuteness which left beauty entirely behind. He could number the -fields in every direction, and could tell how many trees there were in -the most distant clump. But of all the views which his garden, or which -the country or the kingdom could boast, none were to be compared with -the prospect of Rosings, afforded by an opening in the trees that -bordered the park nearly opposite the front of his house. It was a -handsome modern building, well situated on rising ground. - -From his garden, Mr. Collins would have led them round his two meadows; -but the ladies, not having shoes to encounter the remains of a white -frost, turned back; and while Sir William accompanied him, Charlotte -took her sister and friend over the house, extremely well pleased, -probably, to have the opportunity of showing it without her husband’s -help. It was rather small, but well built and convenient; and everything -was fitted up and arranged with a neatness and consistency, of which -Elizabeth gave Charlotte all the credit. When Mr. Collins could be -forgotten, there was really a great air of comfort throughout, and by -Charlotte’s evident enjoyment of it, Elizabeth supposed he must be often -forgotten. - -She had already learnt that Lady Catherine was still in the country. It -was spoken of again while they were at dinner, when Mr. Collins joining -in, observed,-- - -“Yes, Miss Elizabeth, you will have the honour of seeing Lady Catherine -de Bourgh on the ensuing Sunday at church, and I need not say you will -be delighted with her. She is all affability and condescension, and I -doubt not but you will be honoured with some portion of her notice when -service is over. I have scarcely any hesitation in saying that she will -include you and my sister Maria in every invitation with which she -honours us during your stay here. Her behaviour to my dear Charlotte is -charming. We dine at Rosings twice every week, and are never allowed to -walk home. Her Ladyship’s carriage is regularly ordered for us. I -_should_ say, one of her Ladyship’s carriages, for she has several.” - -“Lady Catherine is a very respectable, sensible woman, indeed,” added -Charlotte, “and a most attentive neighbour.” - -“Very true, my dear, that is exactly what I say. She is the sort of -woman whom one cannot regard with too much deference.” - -The evening was spent chiefly in talking over Hertfordshire news, and -telling again what had been already written; and when it closed, -Elizabeth, in the solitude of her chamber, had to meditate upon -Charlotte’s degree of contentment, to understand her address in guiding, -and composure in bearing with, her husband, and to acknowledge that it -was all done very well. She had also to anticipate how her visit would -pass, the quiet tenour of their usual employments, the vexatious -interruptions of Mr. Collins, and the gaieties of their intercourse -with Rosings. A lively imagination soon settled it all. - -About the middle of the next day, as she was in her room getting ready -for a walk, a sudden noise below seemed to speak the whole house in -confusion; and, after listening a moment, she heard somebody running -upstairs in a violent hurry, and calling loudly after her. She opened -the door, and met Maria in the landing-place, who, breathless with -agitation, cried out,-- - -[Illustration: - - “In Conversation with the ladies” - -[Copyright 1894 by George Allen.]] - -“Oh, my dear Eliza! pray make haste and come into the dining-room, for -there is such a sight to be seen! I will not tell you what it is. Make -haste, and come down this moment.” - -Elizabeth asked questions in vain; Maria would tell her nothing more; -and down they ran into the dining-room which fronted the lane, in quest -of this wonder; it was two ladies, stopping in a low phaeton at the -garden gate. - -“And is this all?” cried Elizabeth. “I expected at least that the pigs -were got into the garden, and here is nothing but Lady Catherine and her -daughter!” - -“La! my dear,” said Maria, quite shocked at the mistake, “it is not Lady -Catherine. The old lady is Mrs. Jenkinson, who lives with them. The -other is Miss De Bourgh. Only look at her. She is quite a little -creature. Who would have thought she could be so thin and small!” - -“She is abominably rude to keep Charlotte out of doors in all this wind. -Why does she not come in?” - -“Oh, Charlotte says she hardly ever does. It is the greatest of favours -when Miss De Bourgh comes in.” - -“I like her appearance,” said Elizabeth, struck with other ideas. “She -looks sickly and cross. Yes, she will do for him very well. She will -make him a very proper wife.” - -Mr. Collins and Charlotte were both standing at the gate in conversation -with the ladies; and Sir William, to Elizabeth’s high diversion, was -stationed in the doorway, in earnest contemplation of the greatness -before him, and constantly bowing whenever Miss De Bourgh looked that -way. - -At length there was nothing more to be said; the ladies drove on, and -the others returned into the house. Mr. Collins no sooner saw the two -girls than he began to congratulate them on their good fortune, which -Charlotte explained by letting them know that the whole party was asked -to dine at Rosings the next day. - - - - -[Illustration: - - ‘Lady Catherine, said she, you have given me a treasure.’ - -[_Copyright 1894 by George Allen._]] - - - - -CHAPTER XXIX. - - -[Illustration] - -Mr. Collins’s triumph, in consequence of this invitation, was complete. -The power of displaying the grandeur of his patroness to his wondering -visitors, and of letting them see her civility towards himself and his -wife, was exactly what he had wished for; and that an opportunity of -doing it should be given so soon was such an instance of Lady -Catherine’s condescension as he knew not how to admire enough. - -“I confess,” said he, “that I should not have been at all surprised by -her Ladyship’s asking us on Sunday to drink tea and spend the evening -at Rosings. I rather expected, from my knowledge of her affability, that -it would happen. But who could have foreseen such an attention as this? -Who could have imagined that we should receive an invitation to dine -there (an invitation, moreover, including the whole party) so -immediately after your arrival?” - -“I am the less surprised at what has happened,” replied Sir William, -“from that knowledge of what the manners of the great really are, which -my situation in life has allowed me to acquire. About the court, such -instances of elegant breeding are not uncommon.” - -Scarcely anything was talked of the whole day or next morning but their -visit to Rosings. Mr. Collins was carefully instructing them in what -they were to expect, that the sight of such rooms, so many servants, and -so splendid a dinner, might not wholly overpower them. - -When the ladies were separating for the toilette, he said to -Elizabeth,-- - -“Do not make yourself uneasy, my dear cousin, about your apparel. Lady -Catherine is far from requiring that elegance of dress in us which -becomes herself and daughter. I would advise you merely to put on -whatever of your clothes is superior to the rest--there is no occasion -for anything more. Lady Catherine will not think the worse of you for -being simply dressed. She likes to have the distinction of rank -preserved.” - -While they were dressing, he came two or three times to their different -doors, to recommend their being quick, as Lady Catherine very much -objected to be kept waiting for her dinner. Such formidable accounts of -her Ladyship, and her manner of living, quite frightened Maria Lucas, -who had been little used to company; and she looked forward to her -introduction at Rosings with as much apprehension as her father had done -to his presentation at St. James’s. - -As the weather was fine, they had a pleasant walk of about half a mile -across the park. Every park has its beauty and its prospects; and -Elizabeth saw much to be pleased with, though she could not be in such -raptures as Mr. Collins expected the scene to inspire, and was but -slightly affected by his enumeration of the windows in front of the -house, and his relation of what the glazing altogether had originally -cost Sir Lewis de Bourgh. - -When they ascended the steps to the hall, Maria’s alarm was every moment -increasing, and even Sir William did not look perfectly calm. -Elizabeth’s courage did not fail her. She had heard nothing of Lady -Catherine that spoke her awful from any extraordinary talents or -miraculous virtue, and the mere stateliness of money and rank she -thought she could witness without trepidation. - -From the entrance hall, of which Mr. Collins pointed out, with a -rapturous air, the fine proportion and finished ornaments, they followed -the servants through an antechamber to the room where Lady Catherine, -her daughter, and Mrs. Jenkinson were sitting. Her Ladyship, with great -condescension, arose to receive them; and as Mrs. Collins had settled it -with her husband that the office of introduction should be hers, it was -performed in a proper manner, without any of those apologies and thanks -which he would have thought necessary. - -In spite of having been at St. James’s, Sir William was so completely -awed by the grandeur surrounding him, that he had but just courage -enough to make a very low bow, and take his seat without saying a word; -and his daughter, frightened almost out of her senses, sat on the edge -of her chair, not knowing which way to look. Elizabeth found herself -quite equal to the scene, and could observe the three ladies before her -composedly. Lady Catherine was a tall, large woman, with strongly-marked -features, which might once have been handsome. Her air was not -conciliating, nor was her manner of receiving them such as to make her -visitors forget their inferior rank. She was not rendered formidable by -silence: but whatever she said was spoken in so authoritative a tone as -marked her self-importance, and brought Mr. Wickham immediately to -Elizabeth’s mind; and, from the observation of the day altogether, she -believed Lady Catherine to be exactly what he had represented. - -When, after examining the mother, in whose countenance and deportment -she soon found some resemblance of Mr. Darcy, she turned her eyes on the -daughter, she could almost have joined in Maria’s astonishment at her -being so thin and so small. There was neither in figure nor face any -likeness between the ladies. Miss de Bourgh was pale and sickly: her -features, though not plain, were insignificant; and she spoke very -little, except in a low voice, to Mrs. Jenkinson, in whose appearance -there was nothing remarkable, and who was entirely engaged in listening -to what she said, and placing a screen in the proper direction before -her eyes. - -After sitting a few minutes, they were all sent to one of the windows to -admire the view, Mr. Collins attending them to point out its beauties, -and Lady Catherine kindly informing them that it was much better worth -looking at in the summer. - -The dinner was exceedingly handsome, and there were all the servants, -and all the articles of plate which Mr. Collins had promised; and, as he -had likewise foretold, he took his seat at the bottom of the table, by -her Ladyship’s desire, and looked as if he felt that life could furnish -nothing greater. He carved and ate and praised with delighted alacrity; -and every dish was commended first by him, and then by Sir William, who -was now enough recovered to echo whatever his son-in-law said, in a -manner which Elizabeth wondered Lady Catherine could bear. But Lady -Catherine seemed gratified by their excessive admiration, and gave most -gracious smiles, especially when any dish on the table proved a novelty -to them. The party did not supply much conversation. Elizabeth was ready -to speak whenever there was an opening, but she was seated between -Charlotte and Miss de Bourgh--the former of whom was engaged in -listening to Lady Catherine, and the latter said not a word to her all -the dinnertime. Mrs. Jenkinson was chiefly employed in watching how -little Miss de Bourgh ate, pressing her to try some other dish and -fearing she was indisposed. Maria thought speaking out of the question, -and the gentlemen did nothing but eat and admire. - -When the ladies returned to the drawing-room, there was little to be -done but to hear Lady Catherine talk, which she did without any -intermission till coffee came in, delivering her opinion on every -subject in so decisive a manner as proved that she was not used to have -her judgment controverted. She inquired into Charlotte’s domestic -concerns familiarly and minutely, and gave her a great deal of advice as -to the management of them all; told her how everything ought to be -regulated in so small a family as hers, and instructed her as to the -care of her cows and her poultry. Elizabeth found that nothing was -beneath this great lady’s attention which could furnish her with an -occasion for dictating to others. In the intervals of her discourse with -Mrs. Collins, she addressed a variety of questions to Maria and -Elizabeth, but especially to the latter, of whose connections she knew -the least, and who, she observed to Mrs. Collins, was a very genteel, -pretty kind of girl. She asked her at different times how many sisters -she had, whether they were older or younger than herself, whether any of -them were likely to be married, whether they were handsome, where they -had been educated, what carriage her father kept, and what had been her -mother’s maiden name? Elizabeth felt all the impertinence of her -questions, but answered them very composedly. Lady Catherine then -observed,-- - -“Your father’s estate is entailed on Mr. Collins, I think? For your -sake,” turning to Charlotte, “I am glad of it; but otherwise I see no -occasion for entailing estates from the female line. It was not thought -necessary in Sir Lewis de Bourgh’s family. Do you play and sing, Miss -Bennet?” - -“A little.” - -“Oh then--some time or other we shall be happy to hear you. Our -instrument is a capital one, probably superior to ---- you shall try it -some day. Do your sisters play and sing?” - -“One of them does.” - -“Why did not you all learn? You ought all to have learned. The Miss -Webbs all play, and their father has not so good an income as yours. Do -you draw?” - -“No, not at all.” - -“What, none of you?” - -“Not one.” - -“That is very strange. But I suppose you had no opportunity. Your mother -should have taken you to town every spring for the benefit of masters.” - -“My mother would have no objection, but my father hates London.” - -“Has your governess left you?” - -“We never had any governess.” - -“No governess! How was that possible? Five daughters brought up at home -without a governess! I never heard of such a thing. Your mother must -have been quite a slave to your education.” - -Elizabeth could hardly help smiling, as she assured her that had not -been the case. - -“Then who taught you? who attended to you? Without a governess, you must -have been neglected.” - -“Compared with some families, I believe we were; but such of us as -wished to learn never wanted the means. We were always encouraged to -read, and had all the masters that were necessary. Those who chose to be -idle certainly might.” - -“Ay, no doubt: but that is what a governess will prevent; and if I had -known your mother, I should have advised her most strenuously to engage -one. I always say that nothing is to be done in education without steady -and regular instruction, and nobody but a governess can give it. It is -wonderful how many families I have been the means of supplying in that -way. I am always glad to get a young person well placed out. Four nieces -of Mrs. Jenkinson are most delightfully situated through my means; and -it was but the other day that I recommended another young person, who -was merely accidentally mentioned to me, and the family are quite -delighted with her. Mrs. Collins, did I tell you of Lady Metcalfe’s -calling yesterday to thank me? She finds Miss Pope a treasure. ‘Lady -Catherine,’ said she, ‘you have given me a treasure.’ Are any of your -younger sisters out, Miss Bennet?” - -“Yes, ma’am, all.” - -“All! What, all five out at once? Very odd! And you only the second. The -younger ones out before the elder are married! Your younger sisters must -be very young?” - -“Yes, my youngest is not sixteen. Perhaps _she_ is full young to be much -in company. But really, ma’am, I think it would be very hard upon -younger sisters that they should not have their share of society and -amusement, because the elder may not have the means or inclination to -marry early. The last born has as good a right to the pleasures of youth -as the first. And to be kept back on _such_ a motive! I think it would -not be very likely to promote sisterly affection or delicacy of mind.” - -“Upon my word,” said her Ladyship, “you give your opinion very decidedly -for so young a person. Pray, what is your age?” - -“With three younger sisters grown up,” replied Elizabeth, smiling, “your -Ladyship can hardly expect me to own it.” - -Lady Catherine seemed quite astonished at not receiving a direct answer; -and Elizabeth suspected herself to be the first creature who had ever -dared to trifle with so much dignified impertinence. - -“You cannot be more than twenty, I am sure,--therefore you need not -conceal your age.” - -“I am not one-and-twenty.” - -When the gentlemen had joined them, and tea was over, the card tables -were placed. Lady Catherine, Sir William, and Mr. and Mrs. Collins sat -down to quadrille; and as Miss De Bourgh chose to play at cassino, the -two girls had the honour of assisting Mrs. Jenkinson to make up her -party. Their table was superlatively stupid. Scarcely a syllable was -uttered that did not relate to the game, except when Mrs. Jenkinson -expressed her fears of Miss De Bourgh’s being too hot or too cold, or -having too much or too little light. A great deal more passed at the -other table. Lady Catherine was generally speaking--stating the mistakes -of the three others, or relating some anecdote of herself. Mr. Collins -was employed in agreeing to everything her Ladyship said, thanking her -for every fish he won, and apologizing if he thought he won too many. -Sir William did not say much. He was storing his memory with anecdotes -and noble names. - -When Lady Catherine and her daughter had played as long as they chose, -the tables were broken up, the carriage was offered to Mrs. Collins, -gratefully accepted, and immediately ordered. The party then gathered -round the fire to hear Lady Catherine determine what weather they were -to have on the morrow. From these instructions they were summoned by the -arrival of the coach; and with many speeches of thankfulness on Mr. -Collins’s side, and as many bows on Sir William’s, they departed. As -soon as they had driven from the door, Elizabeth was called on by her -cousin to give her opinion of all that she had seen at Rosings, which, -for Charlotte’s sake, she made more favourable than it really was. But -her commendation, though costing her some trouble, could by no means -satisfy Mr. Collins, and he was very soon obliged to take her Ladyship’s -praise into his own hands. - - - - -[Illustration] - - - - -CHAPTER XXX. - - -[Illustration] - -Sir William stayed only a week at Hunsford; but his visit was long -enough to convince him of his daughter’s being most comfortably settled, -and of her possessing such a husband and such a neighbour as were not -often met with. While Sir William was with them, Mr. Collins devoted his -mornings to driving him out in his gig, and showing him the country: but -when he went away, the whole family returned to their usual employments, -and Elizabeth was thankful to find that they did not see more of her -cousin by the alteration; for the chief of the time between breakfast -and dinner was now passed by him either at work in the garden, or in -reading and writing, and looking out of window in his own book room, -which fronted the road. The room in which the ladies sat was backwards. -Elizabeth at first had rather wondered that Charlotte should not prefer -the dining parlour for common use; it was a better sized room, and had a -pleasanter aspect: but she soon saw that her friend had an excellent -reason for what she did, for Mr. Collins would undoubtedly have been -much less in his own apartment had they sat in one equally lively; and -she gave Charlotte credit for the arrangement. - -From the drawing-room they could distinguish nothing in the lane, and -were indebted to Mr. Collins for the knowledge of what carriages went -along, and how often especially Miss De Bourgh drove by in her phaeton, -which he never failed coming to inform them of, though it happened -almost every day. She not unfrequently stopped at the Parsonage, and had -a few minutes’ conversation with Charlotte, but was scarcely ever -prevailed on to get out. - -Very few days passed in which Mr. Collins did not walk to Rosings, and -not many in which his wife did not think it necessary to go likewise; -and till Elizabeth recollected that there might be other family livings -to be disposed of, she could not understand the sacrifice of so many -hours. Now and then they were honoured with a call from her Ladyship, -and nothing escaped her observation that was passing in the room during -these visits. She examined into their employments, looked at their work, -and advised them to do it differently; found fault with the arrangement -of the furniture, or detected the housemaid in negligence; and if she -accepted any refreshment, seemed to do it only for the sake of finding -out that Mrs. Collins’s joints of meat were too large for her family. - -Elizabeth soon perceived, that though this great lady was not in the -commission of the peace for the county, she was a most active magistrate -in her own parish, the minutest concerns of which were carried to her by -Mr. Collins; and whenever any of the cottagers were disposed to be -quarrelsome, discontented, or too poor, she sallied forth into the -village to settle their differences, silence their complaints, and scold -them into harmony and plenty. - -[Illustration: - - “he never failed to inform them” -] - -The entertainment of dining at Rosings was repeated about twice a week; -and, allowing for the loss of Sir William, and there being only one -card-table in the evening, every such entertainment was the counterpart -of the first. Their other engagements were few, as the style of living -of the neighbourhood in general was beyond the Collinses’ reach. This, -however, was no evil to Elizabeth, and upon the whole she spent her time -comfortably enough: there were half hours of pleasant conversation with -Charlotte, and the weather was so fine for the time of year, that she -had often great enjoyment out of doors. Her favourite walk, and where -she frequently went while the others were calling on Lady Catherine, was -along the open grove which edged that side of the park, where there was -a nice sheltered path, which no one seemed to value but herself, and -where she felt beyond the reach of Lady Catherine’s curiosity. - -In this quiet way the first fortnight of her visit soon passed away. -Easter was approaching, and the week preceding it was to bring an -addition to the family at Rosings, which in so small a circle must be -important. Elizabeth had heard, soon after her arrival, that Mr. Darcy -was expected there in the course of a few weeks; and though there were -not many of her acquaintance whom she did not prefer, his coming would -furnish one comparatively new to look at in their Rosings parties, and -she might be amused in seeing how hopeless Miss Bingley’s designs on him -were, by his behaviour to his cousin, for whom he was evidently destined -by Lady Catherine, who talked of his coming with the greatest -satisfaction, spoke of him in terms of the highest admiration, and -seemed almost angry to find that he had already been frequently seen by -Miss Lucas and herself. - -His arrival was soon known at the Parsonage; for Mr. Collins was walking -the whole morning within view of the lodges opening into Hunsford Lane, -in order to have - -[Illustration: - -“The gentlemen accompanied him.” - -[_Copyright 1894 by George Allen._]] - -the earliest assurance of it; and, after making his bow as the carriage -turned into the park, hurried home with the great intelligence. On the -following morning he hastened to Rosings to pay his respects. There were -two nephews of Lady Catherine to require them, for Mr. Darcy had brought -with him a Colonel Fitzwilliam, the younger son of his uncle, Lord ----; -and, to the great surprise of all the party, when Mr. Collins returned, -the gentlemen accompanied him. Charlotte had seen them from her -husband’s room, crossing the road, and immediately running into the -other, told the girls what an honour they might expect, adding,-- - -“I may thank you, Eliza, for this piece of civility. Mr. Darcy would -never have come so soon to wait upon me.” - -Elizabeth had scarcely time to disclaim all right to the compliment -before their approach was announced by the door-bell, and shortly -afterwards the three gentlemen entered the room. Colonel Fitzwilliam, -who led the way, was about thirty, not handsome, but in person and -address most truly the gentleman. Mr. Darcy looked just as he had been -used to look in Hertfordshire, paid his compliments, with his usual -reserve, to Mrs. Collins; and whatever might be his feelings towards her -friend, met her with every appearance of composure. Elizabeth merely -courtesied to him, without saying a word. - -Colonel Fitzwilliam entered into conversation directly, with the -readiness and ease of a well-bred man, and talked very pleasantly; but -his cousin, after having addressed a slight observation on the house and -garden to Mrs. Collins, sat for some time without speaking to anybody. -At length, however, his civility was so far awakened as to inquire of -Elizabeth after the health of her family. She answered him in the usual -way; and, after a moment’s pause, added,-- - -“My eldest sister has been in town these three months. Have you never -happened to see her there?” - -She was perfectly sensible that he never had: but she wished to see -whether he would betray any consciousness of what had passed between the -Bingleys and Jane; and she thought he looked a little confused as he -answered that he had never been so fortunate as to meet Miss Bennet. The -subject was pursued no further, and the gentlemen soon afterwards went -away. - - - - -[Illustration: - -“At Church” -] - - - - -CHAPTER XXXI. - - -[Illustration] - -Colonel Fitzwilliam’s manners were very much admired at the Parsonage, -and the ladies all felt that he must add considerably to the pleasure of -their engagements at Rosings. It was some days, however, before they -received any invitation thither, for while there were visitors in the -house they could not be necessary; and it was not till Easter-day, -almost a week after the gentlemen’s arrival, that they were honoured by -such an attention, and then they were merely asked on leaving church to -come there in the evening. For the last week they had seen very little -of either Lady Catherine or her daughter. Colonel Fitzwilliam had called -at the Parsonage more than once during the time, but Mr. Darcy they had -only seen at church. - -The invitation was accepted, of course, and at a proper hour they joined -the party in Lady Catherine’s drawing-room. Her Ladyship received them -civilly, but it was plain that their company was by no means so -acceptable as when she could get nobody else; and she was, in fact, -almost engrossed by her nephews, speaking to them, especially to Darcy, -much more than to any other person in the room. - -Colonel Fitzwilliam seemed really glad to see them: anything was a -welcome relief to him at Rosings; and Mrs. Collins’s pretty friend had, -moreover, caught his fancy very much. He now seated himself by her, and -talked so agreeably of Kent and Hertfordshire, of travelling and staying -at home, of new books and music, that Elizabeth had never been half so -well entertained in that room before; and they conversed with so much -spirit and flow as to draw the attention of Lady Catherine herself, as -well as of Mr. Darcy. _His_ eyes had been soon and repeatedly turned -towards them with a look of curiosity; and that her Ladyship, after a -while, shared the feeling, was more openly acknowledged, for she did not -scruple to call out,-- - -“What is that you are saying, Fitzwilliam? What is it you are talking -of? What are you telling Miss Bennet? Let me hear what it is.” - -“We were talking of music, madam,” said he, when no longer able to avoid -a reply. - -“Of music! Then pray speak aloud. It is of all subjects my delight. I -must have my share in the conversation, if you are speaking of music. -There are few people in England, I suppose, who have more true -enjoyment of music than myself, or a better natural taste. If I had ever -learnt, I should have been a great proficient. And so would Anne, if her -health had allowed her to apply. I am confident that she would have -performed delightfully. How does Georgiana get on, Darcy?” - -Mr. Darcy spoke with affectionate praise of his sister’s proficiency. - -“I am very glad to hear such a good account of her,” said Lady -Catherine; “and pray tell her from me, that she cannot expect to excel, -if she does not practise a great deal.” - -“I assure you, madam,” he replied, “that she does not need such advice. -She practises very constantly.” - -“So much the better. It cannot be done too much; and when I next write -to her, I shall charge her not to neglect it on any account. I often -tell young ladies, that no excellence in music is to be acquired without -constant practice. I have told Miss Bennet several times, that she will -never play really well, unless she practises more; and though Mrs. -Collins has no instrument, she is very welcome, as I have often told -her, to come to Rosings every day, and play on the pianoforte in Mrs. -Jenkinson’s room. She would be in nobody’s way, you know, in that part -of the house.” - -Mr. Darcy looked a little ashamed of his aunt’s ill-breeding, and made -no answer. - -When coffee was over, Colonel Fitzwilliam reminded Elizabeth of having -promised to play to him; and she sat down directly to the instrument. He -drew a chair near her. Lady Catherine listened to half a song, and then -talked, as before, to her other nephew; till the latter walked away from -her, and moving with his usual deliberation towards the pianoforte, -stationed himself so as to command a full view of the fair performer’s -countenance. Elizabeth saw what he was doing, and at the first -convenient pause turned to him with an arch smile, and said,-- - -“You mean to frighten me, Mr. Darcy, by coming in all this state to hear -me. But I will not be alarmed, though your sister _does_ play so well. -There is a stubbornness about me that never can bear to be frightened at -the will of others. My courage always rises with every attempt to -intimidate me.” - -“I shall not say that you are mistaken,” he replied, “because you could -not really believe me to entertain any design of alarming you; and I -have had the pleasure of your acquaintance long enough to know, that you -find great enjoyment in occasionally professing opinions which, in fact, -are not your own.” - -Elizabeth laughed heartily at this picture of herself, and said to -Colonel Fitzwilliam, “Your cousin will give you a very pretty notion of -me, and teach you not to believe a word I say. I am particularly unlucky -in meeting with a person so well able to expose my real character, in a -part of the world where I had hoped to pass myself off with some degree -of credit. Indeed, Mr. Darcy, it is very ungenerous in you to mention -all that you knew to my disadvantage in Hertfordshire--and, give me -leave to say, very impolitic too--for it is provoking me to retaliate, -and such things may come out as will shock your relations to hear.” - -“I am not afraid of you,” said he, smilingly. - -“Pray let me hear what you have to accuse him of,” cried Colonel -Fitzwilliam. “I should like to know how he behaves among strangers.” - -“You shall hear, then--but prepare for something very dreadful. The -first time of my ever seeing him in Hertfordshire, you must know, was at -a ball--and at this ball, what do you think he did? He danced only four -dances! I am sorry to pain you, but so it was. He danced only four -dances, though gentlemen were scarce; and, to my certain knowledge, more -than one young lady was sitting down in want of a partner. Mr. Darcy, -you cannot deny the fact.” - -“I had not at that time the honour of knowing any lady in the assembly -beyond my own party.” - -“True; and nobody can ever be introduced in a ball-room. Well, Colonel -Fitzwilliam, what do I play next? My fingers wait your orders.” - -“Perhaps,” said Darcy, “I should have judged better had I sought an -introduction, but I am ill-qualified to recommend myself to strangers.” - -“Shall we ask your cousin the reason of this?” said Elizabeth, still -addressing Colonel Fitzwilliam. “Shall we ask him why a man of sense and -education, and who has lived in the world, is ill-qualified to recommend -himself to strangers?” - -“I can answer your question,” said Fitzwilliam, “without applying to -him. It is because he will not give himself the trouble.” - -“I certainly have not the talent which some people possess,” said Darcy, -“of conversing easily with those I have never seen before. I cannot -catch their tone of conversation, or appear interested in their -concerns, as I often see done.” - -“My fingers,” said Elizabeth, “do not move over this instrument in the -masterly manner which I see so many women’s do. They have not the same -force or rapidity, and do not produce the same expression. But then I -have always supposed it to be my own fault--because I would not take -the trouble of practising. It is not that I do not believe _my_ fingers -as capable as any other woman’s of superior execution.” - -Darcy smiled and said, “You are perfectly right. You have employed your -time much better. No one admitted to the privilege of hearing you can -think anything wanting. We neither of us perform to strangers.” - -Here they were interrupted by Lady Catherine, who called out to know -what they were talking of. Elizabeth immediately began playing again. -Lady Catherine approached, and, after listening for a few minutes, said -to Darcy,-- - -“Miss Bennet would not play at all amiss if she practised more, and -could have the advantage of a London master. She has a very good notion -of fingering, though her taste is not equal to Anne’s. Anne would have -been a delightful performer, had her health allowed her to learn.” - -Elizabeth looked at Darcy, to see how cordially he assented to his -cousin’s praise: but neither at that moment nor at any other could she -discern any symptom of love; and from the whole of his behaviour to Miss -De Bourgh she derived this comfort for Miss Bingley, that he might have -been just as likely to marry _her_, had she been his relation. - -Lady Catherine continued her remarks on Elizabeth’s performance, mixing -with them many instructions on execution and taste. Elizabeth received -them with all the forbearance of civility; and at the request of the -gentlemen remained at the instrument till her Ladyship’s carriage was -ready to take them all home. - - - - -[Illustration] - - - - -CHAPTER XXXII. - - -[Illustration] - -Elizabeth was sitting by herself the next morning, and writing to Jane, -while Mrs. Collins and Maria were gone on business into the village, -when she was startled by a ring at the door, the certain signal of a -visitor. As she had heard no carriage, she thought it not unlikely to be -Lady Catherine; and under that apprehension was putting away her -half-finished letter, that she might escape all impertinent questions, -when the door opened, and to her very great surprise Mr. Darcy, and Mr. -Darcy only, entered the room. - -He seemed astonished too on finding her alone, and apologized for his -intrusion, by letting her know that he had understood all the ladies to -be within. - -They then sat down, and when her inquiries after Rosings were made, -seemed in danger of sinking into total silence. It was absolutely -necessary, therefore, to think of something; and in this emergency -recollecting _when_ she had seen him last in Hertfordshire, and feeling -curious to know what he would say on the subject of their hasty -departure, she observed,-- - -“How very suddenly you all quitted Netherfield last November, Mr. Darcy! -It must have been a most agreeable surprise to Mr. Bingley to see you -all after him so soon; for, if I recollect right, he went but the day -before. He and his sisters were well, I hope, when you left London?” - -“Perfectly so, I thank you.” - -She found that she was to receive no other answer; and, after a short -pause, added,-- - -“I think I have understood that Mr. Bingley has not much idea of ever -returning to Netherfield again?” - -“I have never heard him say so; but it is probable that he may spend -very little of his time there in future. He has many friends, and he is -at a time of life when friends and engagements are continually -increasing.” - -“If he means to be but little at Netherfield, it would be better for the -neighbourhood that he should give up the place entirely, for then we -might possibly get a settled family there. But, perhaps, Mr. Bingley did -not take the house so much for the convenience of the neighbourhood as -for his own, and we must expect him to keep or quit it on the same -principle.” - -“I should not be surprised,” said Darcy, “if he were to give it up as -soon as any eligible purchase offers.” - -Elizabeth made no answer. She was afraid of talking longer of his -friend; and, having nothing else to say, was now determined to leave the -trouble of finding a subject to him. - -He took the hint and soon began with, “This seems a very comfortable -house. Lady Catherine, I believe, did a great deal to it when Mr. -Collins first came to Hunsford.” - -“I believe she did--and I am sure she could not have bestowed her -kindness on a more grateful object.” - -“Mr. Collins appears very fortunate in his choice of a wife.” - -“Yes, indeed; his friends may well rejoice in his having met with one of -the very few sensible women who would have accepted him, or have made -him happy if they had. My friend has an excellent understanding--though -I am not certain that I consider her marrying Mr. Collins as the wisest -thing she ever did. She seems perfectly happy, however; and, in a -prudential light, it is certainly a very good match for her.” - -“It must be very agreeable to her to be settled within so easy a -distance of her own family and friends.” - -“An easy distance do you call it? It is nearly fifty miles.” - -“And what is fifty miles of good road? Little more than half a day’s -journey. Yes, I call it a very easy distance.” - -“I should never have considered the distance as one of the _advantages_ -of the match,” cried Elizabeth. “I should never have said Mrs. Collins -was settled _near_ her family.” - -“It is a proof of your own attachment to Hertfordshire. Anything beyond -the very neighbourhood of Longbourn, I suppose, would appear far.” - -As he spoke there was a sort of smile, which Elizabeth fancied she -understood; he must be supposing her to be thinking of Jane and -Netherfield, and she blushed as she answered,-- - -“I do not mean to say that a woman may not be settled too near her -family. The far and the near must be relative, and depend on many -varying circumstances. Where there is fortune to make the expense of -travelling unimportant, distance becomes no evil. But that is not the -case _here_. Mr. and Mrs. Collins have a comfortable income, but not -such a one as will allow of frequent journeys--and I am persuaded my -friend would not call herself _near_ her family under less than _half_ -the present distance.” - -Mr. Darcy drew his chair a little towards her, and said, “_You_ cannot -have a right to such very strong local attachment. _You_ cannot have -been always at Longbourn.” - -Elizabeth looked surprised. The gentleman experienced some change of -feeling; he drew back his chair, took a newspaper from the table, and, -glancing over it, said, in a colder voice,-- - -“Are you pleased with Kent?” - -A short dialogue on the subject of the country ensued, on either side -calm and concise--and soon put an end to by the entrance of Charlotte -and her sister, just returned from their walk. The _tête-à-tête_ -surprised them. Mr. Darcy related the mistake which had occasioned his -intruding on Miss Bennet, and, after sitting a few minutes longer, -without saying much to anybody, went away. - -[Illustration: “Accompanied by their aunt” - -[_Copyright 1894 by George Allen._]] - -“What can be the meaning of this?” said Charlotte, as soon as he was -gone. “My dear Eliza, he must be in love with you, or he would never -have called on us in this familiar way.” - -But when Elizabeth told of his silence, it did not seem very likely, -even to Charlotte’s wishes, to be the case; and, after various -conjectures, they could at last only suppose his visit to proceed from -the difficulty of finding anything to do, which was the more probable -from the time of year. All field sports were over. Within doors there -was Lady Catherine, books, and a billiard table, but gentlemen cannot be -always within doors; and in the nearness of the Parsonage, or the -pleasantness of the walk to it, or of the people who lived in it, the -two cousins found a temptation from this period of walking thither -almost every day. They called at various times of the morning, sometimes -separately, sometimes together, and now and then accompanied by their -aunt. It was plain to them all that Colonel Fitzwilliam came because he -had pleasure in their society, a persuasion which of course recommended -him still more; and Elizabeth was reminded by her own satisfaction in -being with him, as well as by his evident admiration, of her former -favourite, George Wickham; and though, in comparing them, she saw there -was less captivating softness in Colonel Fitzwilliam’s manners, she -believed he might have the best informed mind. - -But why Mr. Darcy came so often to the Parsonage it was more difficult -to understand. It could not be for society, as he frequently sat there -ten minutes together without opening his lips; and when he did speak, it -seemed the effect of necessity rather than of choice--a sacrifice to -propriety, not a pleasure to himself. He seldom appeared really -animated. Mrs. Collins knew not what to make of him. Colonel -Fitzwilliam’s occasionally laughing at his stupidity proved that he was -generally different, which her own knowledge of him could not have told -her; and as she would have liked to believe this change the effect of -love, and the object of that love her friend Eliza, she set herself -seriously to work to find it out: she watched him whenever they were at -Rosings, and whenever he came to Hunsford; but without much success. He -certainly looked at her friend a great deal, but the expression of that -look was disputable. It was an earnest, steadfast gaze, but she often -doubted whether there were much admiration in it, and sometimes it -seemed nothing but absence of mind. - -She had once or twice suggested to Elizabeth the possibility of his -being partial to her, but Elizabeth always laughed at the idea; and Mrs. -Collins did not think it right to press the subject, from the danger of -raising expectations which might only end in disappointment; for in her -opinion it admitted not of a doubt, that all her friend’s dislike would -vanish, if she could suppose him to be in her power. - -In her kind schemes for Elizabeth, she sometimes planned her marrying -Colonel Fitzwilliam. He was, beyond comparison, the pleasantest man: he -certainly admired her, and his situation in life was most eligible; but, -to counterbalance these advantages, Mr. Darcy had considerable patronage -in the church, and his cousin could have none at all. - - - - -[Illustration: “On looking up”] - - - - -CHAPTER XXXIII. - - -[Illustration] - -More than once did Elizabeth, in her ramble within the park, -unexpectedly meet Mr. Darcy. She felt all the perverseness of the -mischance that should bring him where no one else was brought; and, to -prevent its ever happening again, took care to inform him, at first, -that it was a favourite haunt of hers. How it could occur a second time, -therefore, was very odd! Yet it did, and even the third. It seemed like -wilful ill-nature, or a voluntary penance; for on these occasions it was -not merely a few formal inquiries and an awkward pause and then away, -but he actually thought it necessary to turn back and walk with her. He -never said a great deal, nor did she give herself the trouble of talking -or of listening much; but it struck her in the course of their third -encounter that he was asking some odd unconnected questions--about her -pleasure in being at Hunsford, her love of solitary walks, and her -opinion of Mr. and Mrs. Collins’s happiness; and that in speaking of -Rosings, and her not perfectly understanding the house, he seemed to -expect that whenever she came into Kent again she would be staying -_there_ too. His words seemed to imply it. Could he have Colonel -Fitzwilliam in his thoughts? She supposed, if he meant anything, he must -mean an allusion to what might arise in that quarter. It distressed her -a little, and she was quite glad to find herself at the gate in the -pales opposite the Parsonage. - -She was engaged one day, as she walked, in re-perusing Jane’s last -letter, and dwelling on some passages which proved that Jane had not -written in spirits, when, instead of being again surprised by Mr. Darcy, -she saw, on looking up, that Colonel Fitzwilliam was meeting her. -Putting away the letter immediately, and forcing a smile, she said,-- - -“I did not know before that you ever walked this way.” - -“I have been making the tour of the park,” he replied, “as I generally -do every year, and intended to close it with a call at the Parsonage. -Are you going much farther?” - -“No, I should have turned in a moment.” - -And accordingly she did turn, and they walked towards the Parsonage -together. - -“Do you certainly leave Kent on Saturday?” said she. - -“Yes--if Darcy does not put it off again. But I am at his disposal. He -arranges the business just as he pleases.” - -“And if not able to please himself in the arrangement, he has at least -great pleasure in the power of choice. I do not know anybody who seems -more to enjoy the power of doing what he likes than Mr. Darcy.” - -“He likes to have his own way very well,” replied Colonel Fitzwilliam. -“But so we all do. It is only that he has better means of having it than -many others, because he is rich, and many others are poor. I speak -feelingly. A younger son, you know, must be inured to self-denial and -dependence.” - -“In my opinion, the younger son of an earl can know very little of -either. Now, seriously, what have you ever known of self-denial and -dependence? When have you been prevented by want of money from going -wherever you chose or procuring anything you had a fancy for?” - -“These are home questions--and perhaps I cannot say that I have -experienced many hardships of that nature. But in matters of greater -weight, I may suffer from the want of money. Younger sons cannot marry -where they like.” - -“Unless where they like women of fortune, which I think they very often -do.” - -“Our habits of expense make us too dependent, and there are not many in -my rank of life who can afford to marry without some attention to -money.” - -“Is this,” thought Elizabeth, “meant for me?” and she coloured at the -idea; but, recovering herself, said in a lively tone, “And pray, what is -the usual price of an earl’s younger son? Unless the elder brother is -very sickly, I suppose you would not ask above fifty thousand pounds.” - -He answered her in the same style, and the subject dropped. To interrupt -a silence which might make him fancy her affected with what had passed, -she soon afterwards said,-- - -“I imagine your cousin brought you down with him chiefly for the sake of -having somebody at his disposal. I wonder he does not marry, to secure a -lasting convenience of that kind. But, perhaps, his sister does as well -for the present; and, as she is under his sole care, he may do what he -likes with her.” - -“No,” said Colonel Fitzwilliam, “that is an advantage which he must -divide with me. I am joined with him in the guardianship of Miss Darcy.” - -“Are you, indeed? And pray what sort of a guardian do you make? Does -your charge give you much trouble? Young ladies of her age are sometimes -a little difficult to manage; and if she has the true Darcy spirit, she -may like to have her own way.” - -As she spoke, she observed him looking at her earnestly; and the manner -in which he immediately asked her why she supposed Miss Darcy likely to -give them any uneasiness, convinced her that she had somehow or other -got pretty near the truth. She directly replied,-- - -“You need not be frightened. I never heard any harm of her; and I dare -say she is one of the most tractable creatures in the world. She is a -very great favourite with some ladies of my acquaintance, Mrs. Hurst and -Miss Bingley. I think I have heard you say that you know them.” - -“I know them a little. Their brother is a pleasant, gentlemanlike -man--he is a great friend of Darcy’s.” - -“Oh yes,” said Elizabeth drily--“Mr. Darcy is uncommonly kind to Mr. -Bingley, and takes a prodigious deal of care of him.” - -“Care of him! Yes, I really believe Darcy _does_ take care of him in -those points where he most wants care. From something that he told me -in our journey hither, I have reason to think Bingley very much indebted -to him. But I ought to beg his pardon, for I have no right to suppose -that Bingley was the person meant. It was all conjecture.” - -“What is it you mean?” - -“It is a circumstance which Darcy of course could not wish to be -generally known, because if it were to get round to the lady’s family it -would be an unpleasant thing.” - -“You may depend upon my not mentioning it.” - -“And remember that I have not much reason for supposing it to be -Bingley. What he told me was merely this: that he congratulated himself -on having lately saved a friend from the inconveniences of a most -imprudent marriage, but without mentioning names or any other -particulars; and I only suspected it to be Bingley from believing him -the kind of young man to get into a scrape of that sort, and from -knowing them to have been together the whole of last summer.” - -“Did Mr. Darcy give you his reasons for this interference?” - -“I understood that there were some very strong objections against the -lady.” - -“And what arts did he use to separate them?” - -“He did not talk to me of his own arts,” said Fitzwilliam, smiling. “He -only told me what I have now told you.” - -Elizabeth made no answer, and walked on, her heart swelling with -indignation. After watching her a little, Fitzwilliam asked her why she -was so thoughtful. - -“I am thinking of what you have been telling me,” said she. “Your -cousin’s conduct does not suit my feelings. Why was he to be the -judge?” - -“You are rather disposed to call his interference officious?” - -“I do not see what right Mr. Darcy had to decide on the propriety of his -friend’s inclination; or why, upon his own judgment alone, he was to -determine and direct in what manner that friend was to be happy. But,” -she continued, recollecting herself, “as we know none of the -particulars, it is not fair to condemn him. It is not to be supposed -that there was much affection in the case.” - -“That is not an unnatural surmise,” said Fitzwilliam; “but it is -lessening the honour of my cousin’s triumph very sadly.” - -This was spoken jestingly, but it appeared to her so just a picture of -Mr. Darcy, that she would not trust herself with an answer; and, -therefore, abruptly changing the conversation, talked on indifferent -matters till they reached the Parsonage. There, shut into her own room, -as soon as their visitor left them, she could think without interruption -of all that she had heard. It was not to be supposed that any other -people could be meant than those with whom she was connected. There -could not exist in the world _two_ men over whom Mr. Darcy could have -such boundless influence. That he had been concerned in the measures -taken to separate Mr. Bingley and Jane, she had never doubted; but she -had always attributed to Miss Bingley the principal design and -arrangement of them. If his own vanity, however, did not mislead him, -_he_ was the cause--his pride and caprice were the cause--of all that -Jane had suffered, and still continued to suffer. He had ruined for a -while every hope of happiness for the most affectionate, generous heart -in the world; and no one could say how lasting an evil he might have -inflicted. - -“There were some very strong objections against the lady,” were Colonel -Fitzwilliam’s words; and these strong objections probably were, her -having one uncle who was a country attorney, and another who was in -business in London. - -“To Jane herself,” she exclaimed, “there could be no possibility of -objection,--all loveliness and goodness as she is! Her understanding -excellent, her mind improved, and her manners captivating. Neither could -anything be urged against my father, who, though with some -peculiarities, has abilities which Mr. Darcy himself need not disdain, -and respectability which he will probably never reach.” When she thought -of her mother, indeed, her confidence gave way a little; but she would -not allow that any objections _there_ had material weight with Mr. -Darcy, whose pride, she was convinced, would receive a deeper wound from -the want of importance in his friend’s connections than from their want -of sense; and she was quite decided, at last, that he had been partly -governed by this worst kind of pride, and partly by the wish of -retaining Mr. Bingley for his sister. - -The agitation and tears which the subject occasioned brought on a -headache; and it grew so much worse towards the evening that, added to -her unwillingness to see Mr. Darcy, it determined her not to attend her -cousins to Rosings, where they were engaged to drink tea. Mrs. Collins, -seeing that she was really unwell, did not press her to go, and as much -as possible prevented her husband from pressing her; but Mr. Collins -could not conceal his apprehension of Lady Catherine’s being rather -displeased by her staying at home. - - - - -[Illustration] - - - - -CHAPTER XXXIV. - - -[Illustration] - -When they were gone, Elizabeth, as if intending to exasperate herself as -much as possible against Mr. Darcy, chose for her employment the -examination of all the letters which Jane had written to her since her -being in Kent. They contained no actual complaint, nor was there any -revival of past occurrences, or any communication of present suffering. -But in all, and in almost every line of each, there was a want of that -cheerfulness which had been used to characterize her style, and which, -proceeding from the serenity of a mind at ease with itself, and kindly -disposed towards everyone, had been scarcely ever clouded. Elizabeth -noticed every sentence conveying the idea of uneasiness, with an -attention which it had hardly received on the first perusal. Mr. Darcy’s -shameful boast of what misery he had been able to inflict gave her a -keener sense of her sister’s sufferings. It was some consolation to -think that his visit to Rosings was to end on the day after the next, -and a still greater that in less than a fortnight she should herself be -with Jane again, and enabled to contribute to the recovery of her -spirits, by all that affection could do. - -She could not think of Darcy’s leaving Kent without remembering that his -cousin was to go with him; but Colonel Fitzwilliam had made it clear -that he had no intentions at all, and, agreeable as he was, she did not -mean to be unhappy about him. - -While settling this point, she was suddenly roused by the sound of the -door-bell; and her spirits were a little fluttered by the idea of its -being Colonel Fitzwilliam himself, who had once before called late in -the evening, and might now come to inquire particularly after her. But -this idea was soon banished, and her spirits were very differently -affected, when, to her utter amazement, she saw Mr. Darcy walk into the -room. In a hurried manner he immediately began an inquiry after her -health, imputing his visit to a wish of hearing that she were better. -She answered him with cold civility. He sat down for a few moments, and -then getting up walked about the room. Elizabeth was surprised, but -said not a word. After a silence of several minutes, he came towards her -in an agitated manner, and thus began:-- - -“In vain have I struggled. It will not do. My feelings will not be -repressed. You must allow me to tell you how ardently I admire and love -you.” - -Elizabeth’s astonishment was beyond expression. She stared, coloured, -doubted, and was silent. This he considered sufficient encouragement, -and the avowal of all that he felt and had long felt for her immediately -followed. He spoke well; but there were feelings besides those of the -heart to be detailed, and he was not more eloquent on the subject of -tenderness than of pride. His sense of her inferiority, of its being a -degradation, of the family obstacles which judgment had always opposed -to inclination, were dwelt on with a warmth which seemed due to the -consequence he was wounding, but was very unlikely to recommend his -suit. - -In spite of her deeply-rooted dislike, she could not be insensible to -the compliment of such a man’s affection, and though her intentions did -not vary for an instant, she was at first sorry for the pain he was to -receive; till roused to resentment by his subsequent language, she lost -all compassion in anger. She tried, however, to compose herself to -answer him with patience, when he should have done. He concluded with -representing to her the strength of that attachment which in spite of -all his endeavours he had found impossible to conquer; and with -expressing his hope that it would now be rewarded by her acceptance of -his hand. As he said this she could easily see that he had no doubt of a -favourable answer. He _spoke_ of apprehension and anxiety, but his -countenance expressed real security. Such a circumstance could only -exasperate farther; and when he ceased the colour rose into her cheeks -and she said,-- - -“In such cases as this, it is, I believe, the established mode to -express a sense of obligation for the sentiments avowed, however -unequally they may be returned. It is natural that obligation should be -felt, and if I could _feel_ gratitude, I would now thank you. But I -cannot--I have never desired your good opinion, and you have certainly -bestowed it most unwillingly. I am sorry to have occasioned pain to -anyone. It has been most unconsciously done, however, and I hope will be -of short duration. The feelings which you tell me have long prevented -the acknowledgment of your regard can have little difficulty in -overcoming it after this explanation.” - -Mr. Darcy, who was leaning against the mantel-piece with his eyes fixed -on her face, seemed to catch her words with no less resentment than -surprise. His complexion became pale with anger, and the disturbance of -his mind was visible in every feature. He was struggling for the -appearance of composure, and would not open his lips till he believed -himself to have attained it. The pause was to Elizabeth’s feelings -dreadful. At length, in a voice of forced calmness, he said,-- - -“And this is all the reply which I am to have the honour of expecting! I -might, perhaps, wish to be informed why, with so little _endeavour_ at -civility, I am thus rejected. But it is of small importance.” - -“I might as well inquire,” replied she, “why, with so evident a design -of offending and insulting me, you chose to tell me that you liked me -against your will, against your reason, and even against your character? -Was not this some excuse for incivility, if I _was_ uncivil? But I have -other provocations. You know I have. Had not my own feelings decided -against you, had they been indifferent, or had they even been -favourable, do you think that any consideration would tempt me to accept -the man who has been the means of ruining, perhaps for ever, the -happiness of a most beloved sister?” - -As she pronounced these words, Mr. Darcy changed colour; but the emotion -was short, and he listened without attempting to interrupt her while she -continued,-- - -“I have every reason in the world to think ill of you. No motive can -excuse the unjust and ungenerous part you acted _there_. You dare not, -you cannot deny that you have been the principal, if not the only means -of dividing them from each other, of exposing one to the censure of the -world for caprice and instability, the other to its derision for -disappointed hopes, and involving them both in misery of the acutest -kind.” - -She paused, and saw with no slight indignation that he was listening -with an air which proved him wholly unmoved by any feeling of remorse. -He even looked at her with a smile of affected incredulity. - -“Can you deny that you have done it?” she repeated. - -With assumed tranquillity he then replied, “I have no wish of denying -that I did everything in my power to separate my friend from your -sister, or that I rejoice in my success. Towards _him_ I have been -kinder than towards myself.” - -Elizabeth disdained the appearance of noticing this civil reflection, -but its meaning did not escape, nor was it likely to conciliate her. - -“But it is not merely this affair,” she continued, “on which my dislike -is founded. Long before it had taken place, my opinion of you was -decided. Your character was unfolded in the recital which I received -many months ago from Mr. Wickham. On this subject, what can you have to -say? In what imaginary act of friendship can you here defend yourself? -or under what misrepresentation can you here impose upon others?” - -“You take an eager interest in that gentleman’s concerns,” said Darcy, -in a less tranquil tone, and with a heightened colour. - -“Who that knows what his misfortunes have been can help feeling an -interest in him?” - -“His misfortunes!” repeated Darcy, contemptuously,--“yes, his -misfortunes have been great indeed.” - -“And of your infliction,” cried Elizabeth, with energy; “You have -reduced him to his present state of poverty--comparative poverty. You -have withheld the advantages which you must know to have been designed -for him. You have deprived the best years of his life of that -independence which was no less his due than his desert. You have done -all this! and yet you can treat the mention of his misfortunes with -contempt and ridicule.” - -“And this,” cried Darcy, as he walked with quick steps across the room, -“is your opinion of me! This is the estimation in which you hold me! I -thank you for explaining it so fully. My faults, according to this -calculation, are heavy indeed! But, perhaps,” added he, stopping in his -walk, and turning towards her, “these offences might have been -overlooked, had not your pride been hurt by my honest confession of the -scruples that had long prevented my forming any serious design. These -bitter accusations might have been suppressed, had I, with greater -policy, concealed my struggles, and flattered you into the belief of my -being impelled by unqualified, unalloyed inclination; by reason, by -reflection, by everything. But disguise of every sort is my abhorrence. -Nor am I ashamed of the feelings I related. They were natural and just. -Could you expect me to rejoice in the inferiority of your -connections?--to congratulate myself on the hope of relations whose -condition in life is so decidedly beneath my own?” - -Elizabeth felt herself growing more angry every moment; yet she tried to -the utmost to speak with composure when she said,-- - -“You are mistaken, Mr. Darcy, if you suppose that the mode of your -declaration affected me in any other way than as it spared me the -concern which I might have felt in refusing you, had you behaved in a -more gentlemanlike manner.” - -She saw him start at this; but he said nothing, and she continued,-- - -“You could not have made me the offer of your hand in any possible way -that would have tempted me to accept it.” - -Again his astonishment was obvious; and he looked at her with an -expression of mingled incredulity and mortification. She went on,-- - -“From the very beginning, from the first moment, I may almost say, of my -acquaintance with you, your manners impressing me with the fullest -belief of your arrogance, your conceit, and your selfish disdain of the -feelings of others, were such as to form that groundwork of -disapprobation, on which succeeding events have built so immovable a -dislike; and I had not known you a month before I felt that you were the -last man in the world whom I could ever be prevailed on to marry.” - -“You have said quite enough, madam. I perfectly comprehend your -feelings, and have now only to be ashamed of what my own have been. -Forgive me for having taken up so much of your time, and accept my best -wishes for your health and happiness.” - -And with these words he hastily left the room, and Elizabeth heard him -the next moment open the front door and quit the house. The tumult of -her mind was now painfully great. She knew not how to support herself, -and, from actual weakness, sat down and cried for half an hour. Her -astonishment, as she reflected on what had passed, was increased by -every review of it. That she should receive an offer of marriage from -Mr. Darcy! that he should have been in love with her for so many months! -so much in love as to wish to marry her in spite of all the objections -which had made him prevent his friend’s marrying her sister, and which -must appear at least with equal force in his own case, was almost -incredible! it was gratifying to have inspired unconsciously so strong -an affection. But his pride, his abominable pride, his shameless avowal -of what he had done with respect to Jane, his unpardonable assurance in -acknowledging, though he could not justify it, and the unfeeling manner -which he had mentioned Mr. Wickham, his cruelty towards whom he had not -attempted to deny, soon overcame the pity which the consideration of his -attachment had for a moment excited. - -She continued in very agitating reflections till the sound of Lady -Catherine’s carriage made her feel how unequal she was to encounter -Charlotte’s observation, and hurried her away to her room. - - - - -[Illustration: - -“Hearing herself called” -] - - - - -CHAPTER XXXV. - - -[Illustration] - -Elizabeth awoke the next morning to the same thoughts and meditations -which had at length closed her eyes. She could not yet recover from the -surprise of what had happened: it was impossible to think of anything -else; and, totally indisposed for employment, she resolved soon after -breakfast to indulge herself in air and exercise. She was proceeding -directly to her favourite walk, when the recollection of Mr. Darcy’s -sometimes coming there stopped her, and instead of entering the park, -she turned up the lane which led her farther from the turnpike road. The -park paling was still the boundary on one side, and she soon passed one -of the gates into the ground. - -After walking two or three times along that part of the lane, she was -tempted, by the pleasantness of the morning, to stop at the gates and -look into the park. The five weeks which she had now passed in Kent had -made a great difference in the country, and every day was adding to the -verdure of the early trees. She was on the point of continuing her -walk, when she caught a glimpse of a gentleman within the sort of grove -which edged the park: he was moving that way; and fearful of its being -Mr. Darcy, she was directly retreating. But the person who advanced was -now near enough to see her, and stepping forward with eagerness, -pronounced her name. She had turned away; but on hearing herself called, -though in a voice which proved it to be Mr. Darcy, she moved again -towards the gate. He had by that time reached it also; and, holding out -a letter, which she instinctively took, said, with a look of haughty -composure, “I have been walking in the grove some time, in the hope of -meeting you. Will you do me the honour of reading that letter?” and -then, with a slight bow, turned again into the plantation, and was soon -out of sight. - -With no expectation of pleasure, but with the strongest curiosity, -Elizabeth opened the letter, and to her still increasing wonder, -perceived an envelope containing two sheets of letter paper, written -quite through, in a very close hand. The envelope itself was likewise -full. Pursuing her way along the lane, she then began it. It was dated -from Rosings, at eight o’clock in the morning, and was as follows:-- - -“Be not alarmed, madam, on receiving this letter, by the apprehension of -its containing any repetition of those sentiments, or renewal of those -offers, which were last night so disgusting to you. I write without any -intention of paining you, or humbling myself, by dwelling on wishes, -which, for the happiness of both, cannot be too soon forgotten; and the -effort which the formation and the perusal of this letter must occasion, -should have been spared, had not my character required it to be written -and read. You must, therefore, pardon the freedom with which I demand -your attention; your feelings, I know, will bestow it unwillingly, but I -demand it of your justice. - -“Two offences of a very different nature, and by no means of equal -magnitude, you last night laid to my charge. The first mentioned was, -that, regardless of the sentiments of either, I had detached Mr. Bingley -from your sister,--and the other, that I had, in defiance of various -claims, in defiance of honour and humanity, ruined the immediate -prosperity and blasted the prospects of Mr. Wickham. Wilfully and -wantonly to have thrown off the companion of my youth, the acknowledged -favourite of my father, a young man who had scarcely any other -dependence than on our patronage, and who had been brought up to expect -its exertion, would be a depravity, to which the separation of two young -persons whose affection could be the growth of only a few weeks, could -bear no comparison. But from the severity of that blame which was last -night so liberally bestowed, respecting each circumstance, I shall hope -to be in future secured, when the following account of my actions and -their motives has been read. If, in the explanation of them which is due -to myself, I am under the necessity of relating feelings which may be -offensive to yours, I can only say that I am sorry. The necessity must -be obeyed, and further apology would be absurd. I had not been long in -Hertfordshire before I saw, in common with others, that Bingley -preferred your elder sister to any other young woman in the country. But -it was not till the evening of the dance at Netherfield that I had any -apprehension of his feeling a serious attachment. I had often seen him -in love before. At that ball, while I had the honour of dancing with -you, I was first made acquainted, by Sir William Lucas’s accidental -information, that Bingley’s attentions to your sister had given rise to -a general expectation of their marriage. He spoke of it as a certain -event, of which the time alone could be undecided. From that moment I -observed my friend’s behaviour attentively; and I could then perceive -that his partiality for Miss Bennet was beyond what I had ever witnessed -in him. Your sister I also watched. Her look and manners were open, -cheerful, and engaging as ever, but without any symptom of peculiar -regard; and I remained convinced, from the evening’s scrutiny, that -though she received his attentions with pleasure, she did not invite -them by any participation of sentiment. If _you_ have not been mistaken -here, _I_ must have been in an error. Your superior knowledge of your -sister must make the latter probable. If it be so, if I have been misled -by such error to inflict pain on her, your resentment has not been -unreasonable. But I shall not scruple to assert, that the serenity of -your sister’s countenance and air was such as might have given the most -acute observer a conviction that, however amiable her temper, her heart -was not likely to be easily touched. That I was desirous of believing -her indifferent is certain; but I will venture to say that my -investigations and decisions are not usually influenced by my hopes or -fears. I did not believe her to be indifferent because I wished it; I -believed it on impartial conviction, as truly as I wished it in reason. -My objections to the marriage were not merely those which I last night -acknowledged to have required the utmost force of passion to put aside -in my own case; the want of connection could not be so great an evil to -my friend as to me. But there were other causes of repugnance; causes -which, though still existing, and existing to an equal degree in both -instances, I had myself endeavoured to forget, because they were not -immediately before me. These causes must be stated, though briefly. The -situation of your mother’s family, though objectionable, was nothing in -comparison of that total want of propriety so frequently, so almost -uniformly betrayed by herself, by your three younger sisters, and -occasionally even by your father:--pardon me,--it pains me to offend -you. But amidst your concern for the defects of your nearest relations, -and your displeasure at this representation of them, let it give you -consolation to consider that to have conducted yourselves so as to avoid -any share of the like censure is praise no less generally bestowed on -you and your eldest sister than it is honourable to the sense and -disposition of both. I will only say, farther, that from what passed -that evening my opinion of all parties was confirmed, and every -inducement heightened, which could have led me before to preserve my -friend from what I esteemed a most unhappy connection. He left -Netherfield for London on the day following, as you, I am certain, -remember, with the design of soon returning. The part which I acted is -now to be explained. His sisters’ uneasiness had been equally excited -with my own: our coincidence of feeling was soon discovered; and, alike -sensible that no time was to be lost in detaching their brother, we -shortly resolved on joining him directly in London. We accordingly -went--and there I readily engaged in the office of pointing out to my -friend the certain evils of such a choice. I described and enforced them -earnestly. But however this remonstrance might have staggered or delayed -his determination, I do not suppose that it would ultimately have -prevented the marriage, had it not been seconded by the assurance, which -I hesitated not in giving, of your sister’s indifference. He had before -believed her to return his affection with sincere, if not with equal, -regard. But Bingley has great natural modesty, with a stronger -dependence on my judgment than on his own. To convince him, therefore, -that he had deceived himself was no very difficult point. To persuade -him against returning into Hertfordshire, when that conviction had been -given, was scarcely the work of a moment. I cannot blame myself for -having done thus much. There is but one part of my conduct, in the whole -affair, on which I do not reflect with satisfaction; it is that I -condescended to adopt the measures of art so far as to conceal from him -your sister’s being in town. I knew it myself, as it was known to Miss -Bingley; but her brother is even yet ignorant of it. That they might -have met without ill consequence is, perhaps, probable; but his regard -did not appear to me enough extinguished for him to see her without some -danger. Perhaps this concealment, this disguise, was beneath me. It is -done, however, and it was done for the best. On this subject I have -nothing more to say, no other apology to offer. If I have wounded your -sister’s feelings, it was unknowingly done; and though the motives which -governed me may to you very naturally appear insufficient, I have not -yet learnt to condemn them.--With respect to that other, more weighty -accusation, of having injured Mr. Wickham, I can only refute it by -laying before you the whole of his connection with my family. Of what he -has _particularly_ accused me I am ignorant; but of the truth of what I -shall relate I can summon more than one witness of undoubted veracity. -Mr. Wickham is the son of a very respectable man, who had for many years -the management of all the Pemberley estates, and whose good conduct in -the discharge of his trust naturally inclined my father to be of service -to him; and on George Wickham, who was his godson, his kindness was -therefore liberally bestowed. My father supported him at school, and -afterwards at Cambridge; most important assistance, as his own father, -always poor from the extravagance of his wife, would have been unable to -give him a gentleman’s education. My father was not only fond of this -young man’s society, whose manners were always engaging, he had also the -highest opinion of him, and hoping the church would be his profession, -intended to provide for him in it. As for myself, it is many, many years -since I first began to think of him in a very different manner. The -vicious propensities, the want of principle, which he was careful to -guard from the knowledge of his best friend, could not escape the -observation of a young man of nearly the same age with himself, and who -had opportunities of seeing him in unguarded moments, which Mr. Darcy -could not have. Here again I shall give you pain--to what degree you -only can tell. But whatever may be the sentiments which Mr. Wickham has -created, a suspicion of their nature shall not prevent me from unfolding -his real character. It adds even another motive. My excellent father -died about five years ago; and his attachment to Mr. Wickham was to the -last so steady, that in his will he particularly recommended it to me to -promote his advancement in the best manner that his profession might -allow, and if he took orders, desired that a valuable family living -might be his as soon as it became vacant. There was also a legacy of -one thousand pounds. His own father did not long survive mine; and -within half a year from these events Mr. Wickham wrote to inform me -that, having finally resolved against taking orders, he hoped I should -not think it unreasonable for him to expect some more immediate -pecuniary advantage, in lieu of the preferment, by which he could not be -benefited. He had some intention, he added, of studying the law, and I -must be aware that the interest of one thousand pounds would be a very -insufficient support therein. I rather wished than believed him to be -sincere; but, at any rate, was perfectly ready to accede to his -proposal. I knew that Mr. Wickham ought not to be a clergyman. The -business was therefore soon settled. He resigned all claim to assistance -in the church, were it possible that he could ever be in a situation to -receive it, and accepted in return three thousand pounds. All connection -between us seemed now dissolved. I thought too ill of him to invite him -to Pemberley, or admit his society in town. In town, I believe, he -chiefly lived, but his studying the law was a mere pretence; and being -now free from all restraint, his life was a life of idleness and -dissipation. For about three years I heard little of him; but on the -decease of the incumbent of the living which had been designed for him, -he applied to me again by letter for the presentation. His -circumstances, he assured me, and I had no difficulty in believing it, -were exceedingly bad. He had found the law a most unprofitable study, -and was now absolutely resolved on being ordained, if I would present -him to the living in question--of which he trusted there could be little -doubt, as he was well assured that I had no other person to provide for, -and I could not have forgotten my revered father’s intentions. You will -hardly blame me for refusing to comply with this entreaty, or for -resisting every repetition of it. His resentment was in proportion to -the distress of his circumstances--and he was doubtless as violent in -his abuse of me to others as in his reproaches to myself. After this -period, every appearance of acquaintance was dropped. How he lived, I -know not. But last summer he was again most painfully obtruded on my -notice. I must now mention a circumstance which I would wish to forget -myself, and which no obligation less than the present should induce me -to unfold to any human being. Having said thus much, I feel no doubt of -your secrecy. My sister, who is more than ten years my junior, was left -to the guardianship of my mother’s nephew, Colonel Fitzwilliam, and -myself. About a year ago, she was taken from school, and an -establishment formed for her in London; and last summer she went with -the lady who presided over it to Ramsgate; and thither also went Mr. -Wickham, undoubtedly by design; for there proved to have been a prior -acquaintance between him and Mrs. Younge, in whose character we were -most unhappily deceived; and by her connivance and aid he so far -recommended himself to Georgiana, whose affectionate heart retained a -strong impression of his kindness to her as a child, that she was -persuaded to believe herself in love and to consent to an elopement. She -was then but fifteen, which must be her excuse; and after stating her -imprudence, I am happy to add, that I owed the knowledge of it to -herself. I joined them unexpectedly a day or two before the intended -elopement; and then Georgiana, unable to support the idea of grieving -and offending a brother whom she almost looked up to as a father, -acknowledged the whole to me. You may imagine what I felt and how I -acted. Regard for my sister’s credit and feelings prevented any public -exposure; but I wrote to Mr. Wickham, who left the place immediately, -and Mrs. Younge was of course removed from her charge. Mr. Wickham’s -chief object was unquestionably my sister’s fortune, which is thirty -thousand pounds; but I cannot help supposing that the hope of revenging -himself on me was a strong inducement. His revenge would have been -complete indeed. This, madam, is a faithful narrative of every event in -which we have been concerned together; and if you do not absolutely -reject it as false, you will, I hope, acquit me henceforth of cruelty -towards Mr. Wickham. I know not in what manner, under what form of -falsehood, he has imposed on you; but his success is not perhaps to be -wondered at, ignorant as you previously were of everything concerning -either. Detection could not be in your power, and suspicion certainly -not in your inclination. You may possibly wonder why all this was not -told you last night. But I was not then master enough of myself to know -what could or ought to be revealed. For the truth of everything here -related, I can appeal more particularly to the testimony of Colonel -Fitzwilliam, who, from our near relationship and constant intimacy, and -still more as one of the executors of my father’s will, has been -unavoidably acquainted with every particular of these transactions. If -your abhorrence of _me_ should make _my_ assertions valueless, you -cannot be prevented by the same cause from confiding in my cousin; and -that there may be the possibility of consulting him, I shall endeavour -to find some opportunity of putting this letter in your hands in the -course of the morning. I will only add, God bless you. - -“FITZWILLIAM DARCY.” - - - - -[Illustration] - - - - -CHAPTER XXXVI. - - -[Illustration] - -Elizabeth, when Mr. Darcy gave her the letter, did not expect it to -contain a renewal of his offers, she had formed no expectation at all of -its contents. But such as they were, it may be well supposed how eagerly -she went through them, and what a contrariety of emotion they excited. -Her feelings as she read were scarcely to be defined. With amazement did -she first understand that he believed any apology to be in his power; -and steadfastly was she persuaded, that he could have no explanation to -give, which a just sense of shame would not conceal. With a strong -prejudice against everything he might say, she began his account of -what had happened at Netherfield. She read with an eagerness which -hardly left her power of comprehension; and from impatience of knowing -what the next sentence might bring, was incapable of attending to the -sense of the one before her eyes. His belief of her sister’s -insensibility she instantly resolved to be false; and his account of the -real, the worst objections to the match, made her too angry to have any -wish of doing him justice. He expressed no regret for what he had done -which satisfied her; his style was not penitent, but haughty. It was all -pride and insolence. - -But when this subject was succeeded by his account of Mr. Wickham--when -she read, with somewhat clearer attention, a relation of events which, -if true, must overthrow every cherished opinion of his worth, and which -bore so alarming an affinity to his own history of himself--her feelings -were yet more acutely painful and more difficult of definition. -Astonishment, apprehension, and even horror, oppressed her. She wished -to discredit it entirely, repeatedly exclaiming, “This must be false! -This cannot be! This must be the grossest falsehood!”--and when she had -gone through the whole letter, though scarcely knowing anything of the -last page or two, put it hastily away, protesting that she would not -regard it, that she would never look in it again. - -In this perturbed state of mind, with thoughts that could rest on -nothing, she walked on; but it would not do: in half a minute the letter -was unfolded again; and collecting herself as well as she could, she -again began the mortifying perusal of all that related to Wickham, and -commanded herself so far as to examine the meaning of every sentence. -The account of his connection with the Pemberley family was exactly -what he had related himself; and the kindness of the late Mr. Darcy, -though she had not before known its extent, agreed equally well with his -own words. So far each recital confirmed the other; but when she came to -the will, the difference was great. What Wickham had said of the living -was fresh in her memory; and as she recalled his very words, it was -impossible not to feel that there was gross duplicity on one side or the -other, and, for a few moments, she flattered herself that her wishes did -not err. But when she read and re-read, with the closest attention, the -particulars immediately following of Wickham’s resigning all pretensions -to the living, of his receiving in lieu so considerable a sum as three -thousand pounds, again was she forced to hesitate. She put down the -letter, weighed every circumstance with what she meant to be -impartiality--deliberated on the probability of each statement--but with -little success. On both sides it was only assertion. Again she read on. -But every line proved more clearly that the affair, which she had -believed it impossible that any contrivance could so represent as to -render Mr. Darcy’s conduct in it less than infamous, was capable of a -turn which must make him entirely blameless throughout the whole. - -The extravagance and general profligacy which he scrupled not to lay to -Mr. Wickham’s charge exceedingly shocked her; the more so, as she could -bring no proof of its injustice. She had never heard of him before his -entrance into the ----shire militia, in which he had engaged at the -persuasion of the young man, who, on meeting him accidentally in town, -had there renewed a slight acquaintance. Of his former way of life, -nothing had been known in Hertfordshire but what he told - -[Illustration: - - “Meeting accidentally in Town” - -[_Copyright 1894 by George Allen._]] - -himself. As to his real character, had information been in her power, -she had never felt a wish of inquiring. His countenance, voice, and -manner, had established him at once in the possession of every virtue. -She tried to recollect some instance of goodness, some distinguished -trait of integrity or benevolence, that might rescue him from the -attacks of Mr. Darcy; or at least, by the predominance of virtue, atone -for those casual errors, under which she would endeavour to class what -Mr. Darcy had described as the idleness and vice of many years’ -continuance. But no such recollection befriended her. She could see him -instantly before her, in every charm of air and address, but she could -remember no more substantial good than the general approbation of the -neighbourhood, and the regard which his social powers had gained him in -the mess. After pausing on this point a considerable while, she once -more continued to read. But, alas! the story which followed, of his -designs on Miss Darcy, received some confirmation from what had passed -between Colonel Fitzwilliam and herself only the morning before; and at -last she was referred for the truth of every particular to Colonel -Fitzwilliam himself--from whom she had previously received the -information of his near concern in all his cousin’s affairs and whose -character she had no reason to question. At one time she had almost -resolved on applying to him, but the idea was checked by the awkwardness -of the application, and at length wholly banished by the conviction that -Mr. Darcy would never have hazarded such a proposal, if he had not been -well assured of his cousin’s corroboration. - -She perfectly remembered everything that had passed in conversation -between Wickham and herself in their first evening at Mr. Philips’s. -Many of his expressions were still fresh in her memory. She was _now_ -struck with the impropriety of such communications to a stranger, and -wondered it had escaped her before. She saw the indelicacy of putting -himself forward as he had done, and the inconsistency of his professions -with his conduct. She remembered that he had boasted of having no fear -of seeing Mr. Darcy--that Mr. Darcy might leave the country, but that -_he_ should stand his ground; yet he had avoided the Netherfield ball -the very next week. She remembered, also, that till the Netherfield -family had quitted the country, he had told his story to no one but -herself; but that after their removal, it had been everywhere discussed; -that he had then no reserves, no scruples in sinking Mr. Darcy’s -character, though he had assured her that respect for the father would -always prevent his exposing the son. - -How differently did everything now appear in which he was concerned! His -attentions to Miss King were now the consequence of views solely and -hatefully mercenary; and the mediocrity of her fortune proved no longer -the moderation of his wishes, but his eagerness to grasp at anything. -His behaviour to herself could now have had no tolerable motive: he had -either been deceived with regard to her fortune, or had been gratifying -his vanity by encouraging the preference which she believed she had most -incautiously shown. Every lingering struggle in his favour grew fainter -and fainter; and in further justification of Mr. Darcy, she could not -but allow that Mr. Bingley, when questioned by Jane, had long ago -asserted his blamelessness in the affair;--that, proud and repulsive as -were his manners, she had never, in the whole course of their -acquaintance--an acquaintance which had latterly brought them much -together, and given her a sort of intimacy with his ways--seen anything -that betrayed him to be unprincipled or unjust--anything that spoke him -of irreligious or immoral habits;--that among his own connections he was -esteemed and valued;--that even Wickham had allowed him merit as a -brother, and that she had often heard him speak so affectionately of his -sister as to prove him capable of some amiable feeling;--that had his -actions been what Wickham represented them, so gross a violation of -everything right could hardly have been concealed from the world; and -that friendship between a person capable of it and such an amiable man -as Mr. Bingley was incomprehensible. - -She grew absolutely ashamed of herself. Of neither Darcy nor Wickham -could she think, without feeling that she had been blind, partial, -prejudiced, absurd. - -“How despicably have I acted!” she cried. “I, who have prided myself on -my discernment! I, who have valued myself on my abilities! who have -often disdained the generous candour of my sister, and gratified my -vanity in useless or blameless distrust. How humiliating is this -discovery! Yet, how just a humiliation! Had I been in love, I could not -have been more wretchedly blind. But vanity, not love, has been my -folly. Pleased with the preference of one, and offended by the neglect -of the other, on the very beginning of our acquaintance, I have courted -prepossession and ignorance, and driven reason away where either were -concerned. Till this moment, I never knew myself.” - -From herself to Jane, from Jane to Bingley, her thoughts were in a line -which soon brought to her recollection that Mr. Darcy’s explanation -_there_ had appeared very insufficient; and she read it again. Widely -different was the effect of a second perusal. How could she deny that -credit to his assertions, in one instance, which she had been obliged to -give in the other? He declared himself to have been totally unsuspicious -of her sister’s attachment; and she could not help remembering what -Charlotte’s opinion had always been. Neither could she deny the justice -of his description of Jane. She felt that Jane’s feelings, though -fervent, were little displayed, and that there was a constant -complacency in her air and manner, not often united with great -sensibility. - -When she came to that part of the letter in which her family were -mentioned, in tones of such mortifying, yet merited, reproach, her sense -of shame was severe. The justice of the charge struck her too forcibly -for denial; and the circumstances to which he particularly alluded, as -having passed at the Netherfield ball, and as confirming all his first -disapprobation, could not have made a stronger impression on his mind -than on hers. - -The compliment to herself and her sister was not unfelt. It soothed, but -it could not console her for the contempt which had been thus -self-attracted by the rest of her family; and as she considered that -Jane’s disappointment had, in fact, been the work of her nearest -relations, and reflected how materially the credit of both must be hurt -by such impropriety of conduct, she felt depressed beyond anything she -had ever known before. - -After wandering along the lane for two hours, giving way to every -variety of thought, reconsidering events, determining probabilities, and -reconciling herself, as well as she could, to a change so sudden and so -important, fatigue, and a recollection of her long absence, made her at -length return home; and she entered the house with the wish of appearing -cheerful as usual, and the resolution of repressing such reflections as -must make her unfit for conversation. - -She was immediately told, that the two gentlemen from Rosings had each -called during her absence; Mr. Darcy, only for a few minutes, to take -leave, but that Colonel Fitzwilliam had been sitting with them at least -an hour, hoping for her return, and almost resolving to walk after her -till she could be found. Elizabeth could but just _affect_ concern in -missing him; she really rejoiced at it. Colonel Fitzwilliam was no -longer an object. She could think only of her letter. - - - - -[Illustration: - -“His parting obeisance” -] - - - - -CHAPTER XXXVII. - - -[Illustration] - -The two gentlemen left Rosings the next morning; and Mr. Collins having -been in waiting near the lodges, to make them his parting obeisance, was -able to bring home the pleasing intelligence of their appearing in very -good health, and in as tolerable spirits as could be expected, after the -melancholy scene so lately gone through at Rosings. To Rosings he then -hastened to console Lady Catherine and her daughter; and on his return -brought back, with great satisfaction, a message from her Ladyship, -importing that she felt herself so dull as to make her very desirous of -having them all to dine with her. - -Elizabeth could not see Lady Catherine without recollecting that, had -she chosen it, she might by this time have been presented to her as her -future niece; nor could she think, without a smile, of what her -Ladyship’s indignation would have been. “What would she have said? how -would she have behaved?” were the questions with which she amused -herself. - -Their first subject was the diminution of the Rosings’ party. “I assure -you, I feel it exceedingly,” said Lady Catherine; “I believe nobody -feels the loss of friends so much as I do. But I am particularly -attached to these young men; and know them to be so much attached to me! -They were excessively sorry to go! But so they always are. The dear -Colonel rallied his spirits tolerably till just at last; but Darcy -seemed to feel it most acutely--more, I think, than last year. His -attachment to Rosings certainly increases.” - -Mr. Collins had a compliment and an allusion to throw in here, which -were kindly smiled on by the mother and daughter. - -Lady Catherine observed, after dinner, that Miss Bennet seemed out of -spirits; and immediately accounting for it herself, by supposing that -she did not like to go home again so soon, she added,-- - -“But if that is the case, you must write to your mother to beg that you -may stay a little longer. Mrs. Collins will be very glad of your -company, I am sure.” - -“I am much obliged to your Ladyship for your kind invitation,” replied -Elizabeth; “but it is not in my power to accept it. I must be in town -next Saturday.” - -“Why, at that rate, you will have been here only six weeks. I expected -you to stay two months. I told Mrs. Collins so before you came. There -can be no occasion for your going so soon. Mrs. Bennet could certainly -spare you for another fortnight.” - -“But my father cannot. He wrote last week to hurry my return.” - -[Illustration: - -“Dawson” - -[_Copyright 1894 by George Allen._]] - -“Oh, your father, of course, may spare you, if your mother can. -Daughters are never of so much consequence to a father. And if you will -stay another _month_ complete, it will be in my power to take one of you -as far as London, for I am going there early in June, for a week; and -as Dawson does not object to the barouche-box, there will be very good -room for one of you--and, indeed, if the weather should happen to be -cool, I should not object to taking you both, as you are neither of you -large.” - -“You are all kindness, madam; but I believe we must abide by our -original plan.” - -Lady Catherine seemed resigned. “Mrs. Collins, you must send a servant -with them. You know I always speak my mind, and I cannot bear the idea -of two young women travelling post by themselves. It is highly improper. -You must contrive to send somebody. I have the greatest dislike in the -world to that sort of thing. Young women should always be properly -guarded and attended, according to their situation in life. When my -niece Georgiana went to Ramsgate last summer, I made a point of her -having two men-servants go with her. Miss Darcy, the daughter of Mr. -Darcy of Pemberley, and Lady Anne, could not have appeared with -propriety in a different manner. I am excessively attentive to all those -things. You must send John with the young ladies, Mrs. Collins. I am -glad it occurred to me to mention it; for it would really be -discreditable to _you_ to let them go alone.” - -“My uncle is to send a servant for us.” - -“Oh! Your uncle! He keeps a man-servant, does he? I am very glad you -have somebody who thinks of those things. Where shall you change horses? -Oh, Bromley, of course. If you mention my name at the Bell, you will be -attended to.” - -Lady Catherine had many other questions to ask respecting their journey; -and as she did not answer them all herself attention was -necessary--which Elizabeth believed to be lucky for her; or, with a -mind so occupied, she might have forgotten where she was. Reflection -must be reserved for solitary hours: whenever she was alone, she gave -way to it as the greatest relief; and not a day went by without a -solitary walk, in which she might indulge in all the delight of -unpleasant recollections. - -Mr. Darcy’s letter she was in a fair way of soon knowing by heart. She -studied every sentence; and her feelings towards its writer were at -times widely different. When she remembered the style of his address, -she was still full of indignation: but when she considered how unjustly -she had condemned and upbraided him, her anger was turned against -herself; and his disappointed feelings became the object of compassion. -His attachment excited gratitude, his general character respect: but she -could not approve him; nor could she for a moment repent her refusal, or -feel the slightest inclination ever to see him again. In her own past -behaviour, there was a constant source of vexation and regret: and in -the unhappy defects of her family, a subject of yet heavier chagrin. -They were hopeless of remedy. Her father, contented with laughing at -them, would never exert himself to restrain the wild giddiness of his -youngest daughters; and her mother, with manners so far from right -herself, was entirely insensible of the evil. Elizabeth had frequently -united with Jane in an endeavour to check the imprudence of Catherine -and Lydia; but while they were supported by their mother’s indulgence, -what chance could there be of improvement? Catherine, weak-spirited, -irritable, and completely under Lydia’s guidance, had been always -affronted by their advice; and Lydia, self-willed and careless, would -scarcely give them a hearing. They were ignorant, idle, and vain. While -there was an officer in Meryton, they would flirt with him; and while -Meryton was within a walk of Longbourn, they would be going there for -ever. - -Anxiety on Jane’s behalf was another prevailing concern; and Mr. Darcy’s -explanation, by restoring Bingley to all her former good opinion, -heightened the sense of what Jane had lost. His affection was proved to -have been sincere, and his conduct cleared of all blame, unless any -could attach to the implicitness of his confidence in his friend. How -grievous then was the thought that, of a situation so desirable in every -respect, so replete with advantage, so promising for happiness, Jane had -been deprived, by the folly and indecorum of her own family! - -When to these recollections was added the development of Wickham’s -character, it may be easily believed that the happy spirits which had -seldom been depressed before were now so much affected as to make it -almost impossible for her to appear tolerably cheerful. - -Their engagements at Rosings were as frequent during the last week of -her stay as they had been at first. The very last evening was spent -there; and her Ladyship again inquired minutely into the particulars of -their journey, gave them directions as to the best method of packing, -and was so urgent on the necessity of placing gowns in the only right -way, that Maria thought herself obliged, on her return, to undo all the -work of the morning, and pack her trunk afresh. - -When they parted, Lady Catherine, with great condescension, wished them -a good journey, and invited them to come to Hunsford again next year; -and Miss de Bourgh exerted herself so far as to courtesy and hold out -her hand to both. - - - - -[Illustration: - -“The elevation of his feelings.” -] - - - - -CHAPTER XXXVIII. - - -[Illustration] - -On Saturday morning Elizabeth and Mr. Collins met for breakfast a few -minutes before the others appeared; and he took the opportunity of -paying the parting civilities which he deemed indispensably necessary. - -“I know not, Miss Elizabeth,” said he, “whether Mrs. Collins has yet -expressed her sense of your kindness in coming to us; but I am very -certain you will not leave the house without receiving her thanks for -it. The favour of your company has been much felt, I assure you. We know -how little there is to tempt anyone to our humble abode. Our plain -manner of living, our small rooms, and few domestics, and the little we -see of the world, must make Hunsford extremely dull to a young lady like -yourself; but I hope you will believe us grateful for the condescension, -and that we have done everything in our power to prevent you spending -your time unpleasantly.” - -Elizabeth was eager with her thanks and assurances of happiness. She had -spent six weeks with great enjoyment; and the pleasure of being with -Charlotte, and the kind attention she had received, must make _her_ feel -the obliged. Mr. Collins was gratified; and with a more smiling -solemnity replied,-- - -“It gives me the greatest pleasure to hear that you have passed your -time not disagreeably. We have certainly done our best; and most -fortunately having it in our power to introduce you to very superior -society, and from our connection with Rosings, the frequent means of -varying the humble home scene, I think we may flatter ourselves that -your Hunsford visit cannot have been entirely irksome. Our situation -with regard to Lady Catherine’s family is, indeed, the sort of -extraordinary advantage and blessing which few can boast. You see on -what a footing we are. You see how continually we are engaged there. In -truth, I must acknowledge, that, with all the disadvantages of this -humble parsonage, I should not think anyone abiding in it an object of -compassion, while they are sharers of our intimacy at Rosings.” - -Words were insufficient for the elevation of his feelings; and he was -obliged to walk about the room, while Elizabeth tried to unite civility -and truth in a few short sentences. - -“You may, in fact, carry a very favourable report of us into -Hertfordshire, my dear cousin. I flatter myself, at least, that you will -be able to do so. Lady Catherine’s great attentions to Mrs. Collins you -have been a daily witness of; and altogether I trust it does not appear -that your friend has drawn an unfortunate--but on this point it will be -as well to be silent. Only let me assure you, my dear Miss Elizabeth, -that I can from my heart most cordially wish you equal felicity in -marriage. My dear Charlotte and I have but one mind and one way of -thinking. There is in everything a most remarkable resemblance of -character and ideas between us. We seem to have been designed for each -other.” - -Elizabeth could safely say that it was a great happiness where that was -the case, and with equal sincerity could add, that she firmly believed -and rejoiced in his domestic comforts. She was not sorry, however, to -have the recital of them interrupted by the entrance of the lady from -whom they sprang. Poor Charlotte! it was melancholy to leave her to such -society! But she had chosen it with her eyes open; and though evidently -regretting that her visitors were to go, she did not seem to ask for -compassion. Her home and her housekeeping, her parish and her poultry, -and all their dependent concerns, had not yet lost their charms. - -At length the chaise arrived, the trunks were fastened on, the parcels -placed within, and it was pronounced to be ready. After an affectionate -parting between the friends, Elizabeth was attended to the carriage by -Mr. Collins; and as they walked down the garden, he was commissioning -her with his best respects to all her family, not forgetting his thanks -for the kindness he had received at Longbourn in the winter, and his -compliments to Mr. and Mrs. Gardiner, though unknown. He then handed -her in, Maria followed, and the door was on the point of being closed, -when he suddenly reminded them, with some consternation, that they had -hitherto forgotten to leave any message for the ladies of Rosings. - -[Illustration: - -“They had forgotten to leave any message” -] - -“But,” he added, “you will of course wish to have your humble respects -delivered to them, with your grateful thanks for their kindness to you -while you have been here.” - -Elizabeth made no objection: the door was then allowed to be shut, and -the carriage drove off. - -“Good gracious!” cried Maria, after a few minutes’ silence, “it seems -but a day or two since we first came! and yet how many things have -happened!” - -“A great many indeed,” said her companion, with a sigh. - -“We have dined nine times at Rosings, besides drinking tea there twice! -How much I shall have to tell!” - -Elizabeth privately added, “And how much I shall have to conceal!” - -Their journey was performed without much conversation, or any alarm; and -within four hours of their leaving Hunsford they reached Mr. Gardiner’s -house, where they were to remain a few days. - -Jane looked well, and Elizabeth had little opportunity of studying her -spirits, amidst the various engagements which the kindness of her aunt -had reserved for them. But Jane was to go home with her, and at -Longbourn there would be leisure enough for observation. - -It was not without an effort, meanwhile, that she could wait even for -Longbourn, before she told her sister of Mr. Darcy’s proposals. To know -that she had the power of revealing what would so exceedingly astonish -Jane, and must, at the same time, so highly gratify whatever of her own -vanity she had not yet been able to reason away, was such a temptation -to openness as nothing could have conquered, but the state of indecision -in which she remained as to the extent of what she should communicate, -and her fear, if she once entered on the subject, of being hurried into -repeating something of Bingley, which might only grieve her sister -further. - - - - -[Illustration: - - “How nicely we are crammed in” -] - - - - -CHAPTER XXXIX. - - -[Illustration] - -It was the second week in May, in which the three young ladies set out -together from Gracechurch Street for the town of ----, in Hertfordshire; -and, as they drew near the appointed inn where Mr. Bennet’s carriage was -to meet them, they quickly perceived, in token of the coachman’s -punctuality, both Kitty and Lydia looking out of a dining-room upstairs. -These two girls had been above an hour in the place, happily employed -in visiting an opposite milliner, watching the sentinel on guard, and -dressing a salad and cucumber. - -After welcoming their sisters, they triumphantly displayed a table set -out with such cold meat as an inn larder usually affords, exclaiming, -“Is not this nice? is not this an agreeable surprise?” - -“And we mean to treat you all,” added Lydia; “but you must lend us the -money, for we have just spent ours at the shop out there.” Then showing -her purchases,--“Look here, I have bought this bonnet. I do not think it -is very pretty; but I thought I might as well buy it as not. I shall -pull it to pieces as soon as I get home, and see if I can make it up any -better.” - -And when her sisters abused it as ugly, she added, with perfect -unconcern, “Oh, but there were two or three much uglier in the shop; and -when I have bought some prettier-coloured satin to trim it with fresh, I -think it will be very tolerable. Besides, it will not much signify what -one wears this summer, after the ----shire have left Meryton, and they -are going in a fortnight.” - -“Are they, indeed?” cried Elizabeth, with the greatest satisfaction. - -“They are going to be encamped near Brighton; and I do so want papa to -take us all there for the summer! It would be such a delicious scheme, -and I dare say would hardly cost anything at all. Mamma would like to -go, too, of all things! Only think what a miserable summer else we shall -have!” - -“Yes,” thought Elizabeth; “_that_ would be a delightful scheme, indeed, -and completely do for us at once. Good Heaven! Brighton and a whole -campful of soldiers, to us, who have been overset already by one poor -regiment of militia, and the monthly balls of Meryton!” - -“Now I have got some news for you,” said Lydia, as they sat down to -table. “What do you think? It is excellent news, capital news, and about -a certain person that we all like.” - -Jane and Elizabeth looked at each other, and the waiter was told that he -need not stay. Lydia laughed, and said,-- - -“Ay, that is just like your formality and discretion. You thought the -waiter must not hear, as if he cared! I dare say he often hears worse -things said than I am going to say. But he is an ugly fellow! I am glad -he is gone. I never saw such a long chin in my life. Well, but now for -my news: it is about dear Wickham; too good for the waiter, is not it? -There is no danger of Wickham’s marrying Mary King--there’s for you! She -is gone down to her uncle at Liverpool; gone to stay. Wickham is safe.” - -“And Mary King is safe!” added Elizabeth; “safe from a connection -imprudent as to fortune.” - -“She is a great fool for going away, if she liked him.” - -“But I hope there is no strong attachment on either side,” said Jane. - -“I am sure there is not on _his_. I will answer for it, he never cared -three straws about her. Who _could_ about such a nasty little freckled -thing?” - -Elizabeth was shocked to think that, however incapable of such -coarseness of _expression_ herself, the coarseness of the _sentiment_ -was little other than her own breast had formerly harboured and fancied -liberal! - -As soon as all had ate, and the elder ones paid, the carriage was -ordered; and, after some contrivance, the whole party, with all their -boxes, workbags, and parcels, and the unwelcome addition of Kitty’s and -Lydia’s purchases, were seated in it. - -“How nicely we are crammed in!” cried Lydia. “I am glad I brought my -bonnet, if it is only for the fun of having another band-box! Well, now -let us be quite comfortable and snug, and talk and laugh all the way -home. And in the first place, let us hear what has happened to you all -since you went away. Have you seen any pleasant men? Have you had any -flirting? I was in great hopes that one of you would have got a husband -before you came back. Jane will be quite an old maid soon, I declare. -She is almost three-and-twenty! Lord! how ashamed I should be of not -being married before three-and-twenty! My aunt Philips wants you so to -get husbands you can’t think. She says Lizzy had better have taken Mr. -Collins; but _I_ do not think there would have been any fun in it. Lord! -how I should like to be married before any of you! and then I would -_chaperon_ you about to all the balls. Dear me! we had such a good piece -of fun the other day at Colonel Forster’s! Kitty and me were to spend -the day there, and Mrs. Forster promised to have a little dance in the -evening; (by-the-bye, Mrs. Forster and me are _such_ friends!) and so -she asked the two Harringtons to come: but Harriet was ill, and so Pen -was forced to come by herself; and then, what do you think we did? We -dressed up Chamberlayne in woman’s clothes, on purpose to pass for a -lady,--only think what fun! Not a soul knew of it, but Colonel and Mrs. -Forster, and Kitty and me, except my aunt, for we were forced to borrow -one of her gowns; and you cannot imagine how well he looked! When Denny, -and Wickham, and Pratt, and two or three more of the men came in, they -did not know him in the least. Lord! how I laughed! and so did Mrs. -Forster. I thought I should have died. And _that_ made the men suspect -something, and then they soon found out what was the matter.” - -With such kind of histories of their parties and good jokes did Lydia, -assisted by Kitty’s hints and additions, endeavour to amuse her -companions all the way to Longbourn. Elizabeth listened as little as she -could, but there was no escaping the frequent mention of Wickham’s name. - -Their reception at home was most kind. Mrs. Bennet rejoiced to see Jane -in undiminished beauty; and more than once during dinner did Mr. Bennet -say voluntarily to Elizabeth,---- - -“I am glad you are come back, Lizzy.” - -Their party in the dining-room was large, for almost all the Lucases -came to meet Maria and hear the news; and various were the subjects -which occupied them: Lady Lucas was inquiring of Maria, across the -table, after the welfare and poultry of her eldest daughter; Mrs. Bennet -was doubly engaged, on one hand collecting an account of the present -fashions from Jane, who sat some way below her, and on the other, -retailing them all to the younger Miss Lucases; and Lydia, in a voice -rather louder than any other person’s, was enumerating the various -pleasures of the morning to anybody who would hear her. - -“Oh, Mary,” said she, “I wish you had gone with us, for we had such fun! -as we went along Kitty and me drew up all the blinds, and pretended -there was nobody in the coach; and I should have gone so all the way, if -Kitty had not been sick; and when we got to the George, I do think we -behaved very handsomely, for we treated the other three with the nicest -cold luncheon in the world, and if you would have gone, we would have -treated you too. And then when we came away it was such fun! I thought -we never should have got into the coach. I was ready to die of laughter. -And then we were so merry all the way home! we talked and laughed so -loud, that anybody might have heard us ten miles off!” - -To this, Mary very gravely replied, “Far be it from me, my dear sister, -to depreciate such pleasures. They would doubtless be congenial with the -generality of female minds. But I confess they would have no charms for -_me_. I should infinitely prefer a book.” - -But of this answer Lydia heard not a word. She seldom listened to -anybody for more than half a minute, and never attended to Mary at all. - -In the afternoon Lydia was urgent with the rest of the girls to walk to -Meryton, and see how everybody went on; but Elizabeth steadily opposed -the scheme. It should not be said, that the Miss Bennets could not be at -home half a day before they were in pursuit of the officers. There was -another reason, too, for her opposition. She dreaded seeing Wickham -again, and was resolved to avoid it as long as possible. The comfort to -_her_, of the regiment’s approaching removal, was indeed beyond -expression. In a fortnight they were to go, and once gone, she hoped -there could be nothing more to plague her on his account. - -She had not been many hours at home, before she found that the Brighton -scheme, of which Lydia had given them a hint at the inn, was under -frequent discussion between her parents. Elizabeth saw directly that her -father had not the smallest intention of yielding; but his answers were -at the same time so vague and equivocal, that her mother, though often -disheartened, had never yet despaired of succeeding at last. - - - - -[Illustration] - - - - -CHAPTER XL. - - -[Illustration] - -Elizabeth’s impatience to acquaint Jane with what had happened could no -longer be overcome; and at length resolving to suppress every particular -in which her sister was concerned, and preparing her to be surprised, -she related to her the next morning the chief of the scene between Mr. -Darcy and herself. - -Miss Bennet’s astonishment was soon lessened by the strong sisterly -partiality which made any admiration of Elizabeth appear perfectly -natural; and all surprise was shortly lost in other feelings. She was -sorry that Mr. Darcy should have delivered his sentiments in a manner so -little suited to recommend them; but still more was she grieved for the -unhappiness which her sister’s refusal must have given him. - -“His being so sure of succeeding was wrong,” said she, “and certainly -ought not to have appeared; but consider how much it must increase his -disappointment.” - -“Indeed,” replied Elizabeth, “I am heartily sorry for him; but he has -other feelings which will probably soon drive away his regard for me. -You do not blame me, however, for refusing him?” - -“Blame you! Oh, no.” - -“But you blame me for having spoken so warmly of Wickham?” - -“No--I do not know that you were wrong in saying what you did.” - -“But you _will_ know it, when I have told you what happened the very -next day.” - -She then spoke of the letter, repeating the whole of its contents as far -as they concerned George Wickham. What a stroke was this for poor Jane, -who would willingly have gone through the world without believing that -so much wickedness existed in the whole race of mankind as was here -collected in one individual! Nor was Darcy’s vindication, though -grateful to her feelings, capable of consoling her for such discovery. -Most earnestly did she labour to prove the probability of error, and -seek to clear one, without involving the other. - -“This will not do,” said Elizabeth; “you never will be able to make both -of them good for anything. Take your choice, but you must be satisfied -with only one. There is but such a quantity of merit between them; just -enough to make one good sort of man; and of late it has been shifting -about pretty much. For my part, I am inclined to believe it all Mr. -Darcy’s, but you shall do as you choose.” - -It was some time, however, before a smile could be extorted from Jane. - -“I do not know when I have been more shocked,” said she. “Wickham so -very bad! It is almost past belief. And poor Mr. Darcy! dear Lizzy, -only consider what he must have suffered. Such a disappointment! and -with the knowledge of your ill opinion too! and having to relate such a -thing of his sister! It is really too distressing, I am sure you must -feel it so.” - -“Oh no, my regret and compassion are all done away by seeing you so full -of both. I know you will do him such ample justice, that I am growing -every moment more unconcerned and indifferent. Your profusion makes me -saving; and if you lament over him much longer, my heart will be as -light as a feather.” - -“Poor Wickham! there is such an expression of goodness in his -countenance! such an openness and gentleness in his manner.” - -“There certainly was some great mismanagement in the education of those -two young men. One has got all the goodness, and the other all the -appearance of it.” - -“I never thought Mr. Darcy so deficient in the _appearance_ of it as you -used to do.” - -“And yet I meant to be uncommonly clever in taking so decided a dislike -to him, without any reason. It is such a spur to one’s genius, such an -opening for wit, to have a dislike of that kind. One may be continually -abusive without saying anything just; but one cannot be always laughing -at a man without now and then stumbling on something witty.” - -“Lizzy, when you first read that letter, I am sure you could not treat -the matter as you do now.” - -“Indeed, I could not. I was uncomfortable enough, I was very -uncomfortable--I may say unhappy. And with no one to speak to of what I -felt, no Jane to comfort me, and say that I had not been so very weak, -and vain, and nonsensical, as I knew I had! Oh, how I wanted you!” - -“How unfortunate that you should have used such very strong expressions -in speaking of Wickham to Mr. Darcy, for now they _do_ appear wholly -undeserved.” - -“Certainly. But the misfortune of speaking with bitterness is a most -natural consequence of the prejudices I had been encouraging. There is -one point on which I want your advice. I want to be told whether I -ought, or ought not, to make our acquaintance in general understand -Wickham’s character.” - -Miss Bennet paused a little, and then replied, “Surely there can be no -occasion for exposing him so dreadfully. What is your own opinion?” - -“That it ought not to be attempted. Mr. Darcy has not authorized me to -make his communication public. On the contrary, every particular -relative to his sister was meant to be kept as much as possible to -myself; and if I endeavour to undeceive people as to the rest of his -conduct, who will believe me? The general prejudice against Mr. Darcy is -so violent, that it would be the death of half the good people in -Meryton, to attempt to place him in an amiable light. I am not equal to -it. Wickham will soon be gone; and, therefore, it will not signify to -anybody here what he really is. Some time hence it will be all found -out, and then we may laugh at their stupidity in not knowing it before. -At present I will say nothing about it.” - -“You are quite right. To have his errors made public might ruin him for -ever. He is now, perhaps, sorry for what he has done, and anxious to -re-establish a character. We must not make him desperate.” - -The tumult of Elizabeth’s mind was allayed by this conversation. She -had got rid of two of the secrets which had weighed on her for a -fortnight, and was certain of a willing listener in Jane, whenever she -might wish to talk again of either. But there was still something -lurking behind, of which prudence forbade the disclosure. She dared not -relate the other half of Mr. Darcy’s letter, nor explain to her sister -how sincerely she had been valued by his friend. Here was knowledge in -which no one could partake; and she was sensible that nothing less than -a perfect understanding between the parties could justify her in -throwing off this last encumbrance of mystery. “And then,” said she, “if -that very improbable event should ever take place, I shall merely be -able to tell what Bingley may tell in a much more agreeable manner -himself. The liberty of communication cannot be mine till it has lost -all its value!” - -She was now, on being settled at home, at leisure to observe the real -state of her sister’s spirits. Jane was not happy. She still cherished a -very tender affection for Bingley. Having never even fancied herself in -love before, her regard had all the warmth of first attachment, and from -her age and disposition, greater steadiness than first attachments often -boast; and so fervently did she value his remembrance, and prefer him to -every other man, that all her good sense, and all her attention to the -feelings of her friends, were requisite to check the indulgence of those -regrets which must have been injurious to her own health and their -tranquillity. - -“Well, Lizzy,” said Mrs. Bennet, one day, “what is your opinion _now_ of -this sad business of Jane’s? For my part, I am determined never to speak -of it again to anybody. I told my sister Philips so the other day. But I -cannot find out that Jane saw anything of him in London. Well, he is a -very undeserving young man--and I do not suppose there is the least -chance in the world of her ever getting him now. There is no talk of his -coming to Netherfield again in the summer; and I have inquired of -everybody, too, who is likely to know.” - -[Illustration: - - “I am determined never to speak of it again” -] - -“I do not believe that he will ever live at Netherfield any more.” - -“Oh, well! it is just as he chooses. Nobody wants him to come; though I -shall always say that he used my daughter extremely ill; and, if I was -her, I would not have put up with it. Well, my comfort is, I am sure -Jane will die of a broken heart, and then he will be sorry for what he -has done.” - -But as Elizabeth could not receive comfort from any such expectation she -made no answer. - -“Well, Lizzy,” continued her mother, soon afterwards, “and so the -Collinses live very comfortable, do they? Well, well, I only hope it -will last. And what sort of table do they keep? Charlotte is an -excellent manager, I dare say. If she is half as sharp as her mother, -she is saving enough. There is nothing extravagant in _their_ -housekeeping, I dare say.” - -“No, nothing at all.” - -“A great deal of good management, depend upon it. Yes, yes. _They_ will -take care not to outrun their income. _They_ will never be distressed -for money. Well, much good may it do them! And so, I suppose, they often -talk of having Longbourn when your father is dead. They look upon it -quite as their own, I dare say, whenever that happens.” - -“It was a subject which they could not mention before me.” - -“No; it would have been strange if they had. But I make no doubt they -often talk of it between themselves. Well, if they can be easy with an -estate that is not lawfully their own, so much the better. _I_ should be -ashamed of having one that was only entailed on me.” - - - - -[Illustration: - -“When Colonel Miller’s regiment went away” - -[_Copyright 1894 by George Allen._]] - - - - -CHAPTER XLI. - - -[Illustration] - -The first week of their return was soon gone. The second began. It was -the last of the regiment’s stay in Meryton, and all the young ladies in -the neighbourhood were drooping apace. The dejection was almost -universal. The elder Miss Bennets alone were still able to eat, drink, -and sleep, and pursue the usual course of their employments. Very -frequently were they reproached for this insensibility by Kitty and -Lydia, whose own misery was extreme, and who could not comprehend such -hard-heartedness in any of the family. - -“Good Heaven! What is to become of us? What are we to do?” would they -often exclaim in the bitterness of woe. “How can you be smiling so, -Lizzy?” - -Their affectionate mother shared all their grief; she remembered what -she had herself endured on a similar occasion five-and-twenty years ago. - -“I am sure,” said she, “I cried for two days together when Colonel -Miller’s regiment went away. I thought I should have broke my heart.” - -“I am sure I shall break _mine_,” said Lydia. - -“If one could but go to Brighton!” observed Mrs. Bennet. - -“Oh yes!--if one could but go to Brighton! But papa is so disagreeable.” - -“A little sea-bathing would set me up for ever.” - -“And my aunt Philips is sure it would do _me_ a great deal of good,” -added Kitty. - -Such were the kind of lamentations resounding perpetually through -Longbourn House. Elizabeth tried to be diverted by them; but all sense -of pleasure was lost in shame. She felt anew the justice of Mr. Darcy’s -objections; and never had she before been so much disposed to pardon his -interference in the views of his friend. - -But the gloom of Lydia’s prospect was shortly cleared away; for she -received an invitation from Mrs. Forster, the wife of the colonel of the -regiment, to accompany her to Brighton. This invaluable friend was a -very young woman, and very lately married. A resemblance in good-humour -and good spirits had recommended her and Lydia to each other, and out of -their _three_ months’ acquaintance they had been intimate _two_. - -The rapture of Lydia on this occasion, her adoration of Mrs. Forster, -the delight of Mrs. Bennet, and the mortification of Kitty, are scarcely -to be described. Wholly inattentive to her sister’s feelings, Lydia flew -about the house in restless ecstasy, calling for everyone’s -congratulations, and laughing and talking with more violence than ever; -whilst the luckless Kitty continued in the parlour repining at her fate -in terms as unreasonable as her accent was peevish. - -“I cannot see why Mrs. Forster should not ask _me_ as well as Lydia,” -said she, “though I am _not_ her particular friend. I have just as much -right to be asked as she has, and more too, for I am two years older.” - -In vain did Elizabeth attempt to make her reasonable, and Jane to make -her resigned. As for Elizabeth herself, this invitation was so far from -exciting in her the same feelings as in her mother and Lydia, that she -considered it as the death-warrant of all possibility of common sense -for the latter; and detestable as such a step must make her, were it -known, she could not help secretly advising her father not to let her -go. She represented to him all the improprieties of Lydia’s general -behaviour, the little advantage she could derive from the friendship of -such a woman as Mrs. Forster, and the probability of her being yet more -imprudent with such a companion at Brighton, where the temptations must -be greater than at home. He heard her attentively, and then said,-- - -“Lydia will never be easy till she has exposed herself in some public -place or other, and we can never expect her to do it with so little -expense or inconvenience to her family as under the present -circumstances.” - -“If you were aware,” said Elizabeth, “of the very great disadvantage to -us all, which must arise from the public notice of Lydia’s unguarded and -imprudent manner, nay, which has already arisen from it, I am sure you -would judge differently in the affair.” - -“Already arisen!” repeated Mr. Bennet. “What! has she frightened away -some of your lovers? Poor little Lizzy! But do not be cast down. Such -squeamish youths as cannot bear to be connected with a little absurdity -are not worth a regret. Come, let me see the list of the pitiful fellows -who have been kept aloof by Lydia’s folly.” - -“Indeed, you are mistaken. I have no such injuries to resent. It is not -of peculiar, but of general evils, which I am now complaining. Our -importance, our respectability in the world, must be affected by the -wild volatility, the assurance and disdain of all restraint which mark -Lydia’s character. Excuse me,--for I must speak plainly. If you, my dear -father, will not take the trouble of checking her exuberant spirits, and -of teaching her that her present pursuits are not to be the business of -her life, she will soon be beyond the reach of amendment. Her character -will be fixed; and she will, at sixteen, be the most determined flirt -that ever made herself and her family ridiculous;--a flirt, too, in the -worst and meanest degree of flirtation; without any attraction beyond -youth and a tolerable person; and, from the ignorance and emptiness of -her mind, wholly unable to ward off any portion of that universal -contempt which her rage for admiration will excite. In this danger Kitty -is also comprehended. She will follow wherever Lydia leads. Vain, -ignorant, idle, and absolutely uncontrolled! Oh, my dear father, can you -suppose it possible that they will not be censured and despised wherever -they are known, and that their sisters will not be often involved in the -disgrace?” - -Mr. Bennet saw that her whole heart was in the subject; and, -affectionately taking her hand, said, in reply,-- - -“Do not make yourself uneasy, my love. Wherever you and Jane are known, -you must be respected and valued; and you will not appear to less -advantage for having a couple of--or I may say, three--very silly -sisters. We shall have no peace at Longbourn if Lydia does not go to -Brighton. Let her go, then. Colonel Forster is a sensible man, and will -keep her out of any real mischief; and she is luckily too poor to be an -object of prey to anybody. At Brighton she will be of less importance -even as a common flirt than she has been here. The officers will find -women better worth their notice. Let us hope, therefore, that her being -there may teach her her own insignificance. At any rate, she cannot grow -many degrees worse, without authorizing us to lock her up for the rest -of her life.” - -With this answer Elizabeth was forced to be content; but her own opinion -continued the same, and she left him disappointed and sorry. It was not -in her nature, however, to increase her vexations by dwelling on them. -She was confident of having performed her duty; and to fret over -unavoidable evils, or augment them by anxiety, was no part of her -disposition. - -Had Lydia and her mother known the substance of her conference with her -father, their indignation would hardly have found expression in their -united volubility. In Lydia’s imagination, a visit to Brighton comprised -every possibility of earthly happiness. She saw, with the creative eye -of fancy, the streets of that gay bathing-place covered with officers. -She saw herself the object of attention to tens and to scores of them at -present unknown. She saw all the glories of the camp: its tents -stretched forth in beauteous uniformity of lines, crowded with the young -and the gay, and dazzling with scarlet; and, to complete the view, she -saw herself seated beneath a tent, tenderly flirting with at least six -officers at once. - -[Illustration: - -“Tenderly flirting” - -[_Copyright 1894 by George Allen._]] - -Had she known that her sister sought to tear her from such prospects and -such realities as these, what would have been her sensations? They could -have been understood only by her mother, who might have felt nearly the -same. Lydia’s going to Brighton was all that consoled her for the -melancholy conviction of her husband’s never intending to go there -himself. - -But they were entirely ignorant of what had passed; and their raptures -continued, with little intermission, to the very day of Lydia’s leaving -home. - -Elizabeth was now to see Mr. Wickham for the last time. Having been -frequently in company with him since her return, agitation was pretty -well over; the agitations of former partiality entirely so. She had even -learnt to detect, in the very gentleness which had first delighted her, -an affectation and a sameness to disgust and weary. In his present -behaviour to herself, moreover, she had a fresh source of displeasure; -for the inclination he soon testified of renewing those attentions which -had marked the early part of their acquaintance could only serve, after -what had since passed, to provoke her. She lost all concern for him in -finding herself thus selected as the object of such idle and frivolous -gallantry; and while she steadily repressed it, could not but feel the -reproof contained in his believing, that however long, and for whatever -cause, his attentions had been withdrawn, her vanity would be gratified, -and her preference secured, at any time, by their renewal. - -On the very last day of the regiment’s remaining in Meryton, he dined, -with others of the officers, at Longbourn; and so little was Elizabeth -disposed to part from him in good-humour, that, on his making some -inquiry as to the manner in which her time had passed at Hunsford, she -mentioned Colonel Fitzwilliam’s and Mr. Darcy’s having both spent three -weeks at Rosings, and asked him if he were acquainted with the former. - -He looked surprised, displeased, alarmed; but, with a moment’s -recollection, and a returning smile, replied, that he had formerly seen -him often; and, after observing that he was a very gentlemanlike man, -asked her how she had liked him. Her answer was warmly in his favour. -With an air of indifference, he soon afterwards added, “How long did you -say that he was at Rosings?” - -“Nearly three weeks.” - -“And you saw him frequently?” - -“Yes, almost every day.” - -“His manners are very different from his cousin’s.” - -“Yes, very different; but I think Mr. Darcy improves on acquaintance.” - -“Indeed!” cried Wickham, with a look which did not escape her. “And pray -may I ask--” but checking himself, he added, in a gayer tone, “Is it in -address that he improves? Has he deigned to add aught of civility to his -ordinary style? for I dare not hope,” he continued, in a lower and more -serious tone, “that he is improved in essentials.” - -“Oh, no!” said Elizabeth. “In essentials, I believe, he is very much -what he ever was.” - -While she spoke, Wickham looked as if scarcely knowing whether to -rejoice over her words or to distrust their meaning. There was a -something in her countenance which made him listen with an apprehensive -and anxious attention, while she added,-- - -“When I said that he improved on acquaintance, I did not mean that -either his mind or manners were in a state of improvement; but that, -from knowing him better, his disposition was better understood.” - -Wickham’s alarm now appeared in a heightened complexion and agitated -look; for a few minutes he was silent; till, shaking off his -embarrassment, he turned to her again, and said in the gentlest of -accents,-- - -“You, who so well know my feelings towards Mr. Darcy, will readily -comprehend how sincerely I must rejoice that he is wise enough to assume -even the _appearance_ of what is right. His pride, in that direction, -may be of service, if not to himself, to many others, for it must deter -him from such foul misconduct as I have suffered by. I only fear that -the sort of cautiousness to which you, I imagine, have been alluding, is -merely adopted on his visits to his aunt, of whose good opinion and -judgment he stands much in awe. His fear of her has always operated, I -know, when they were together; and a good deal is to be imputed to his -wish of forwarding the match with Miss de Bourgh, which I am certain he -has very much at heart.” - -Elizabeth could not repress a smile at this, but she answered only by a -slight inclination of the head. She saw that he wanted to engage her on -the old subject of his grievances, and she was in no humour to indulge -him. The rest of the evening passed with the _appearance_, on his side, -of usual cheerfulness, but with no further attempt to distinguish -Elizabeth; and they parted at last with mutual civility, and possibly a -mutual desire of never meeting again. - -When the party broke up, Lydia returned with Mrs. Forster to Meryton, -from whence they were to set out early the next morning. The separation -between her and her family was rather noisy than pathetic. Kitty was the -only one who shed tears; but she did weep from vexation and envy. Mrs. -Bennet was diffuse in her good wishes for the felicity of her daughter, -and impressive in her injunctions that she would not miss the -opportunity of enjoying herself as much as possible,--advice which there -was every reason to believe would be attended to; and, in the clamorous -happiness of Lydia herself in bidding farewell, the more gentle adieus -of her sisters were uttered without being heard. - - - - -[Illustration: - -The arrival of the -Gardiners -] - - - - -CHAPTER XLII. - - -[Illustration] - -Had Elizabeth’s opinion been all drawn from her own family, she could -not have formed a very pleasing picture of conjugal felicity or domestic -comfort. Her father, captivated by youth and beauty, and that appearance -of good-humour which youth and beauty generally give, had married a -woman whose weak understanding and illiberal mind had very early in -their marriage put an end to all real affection for her. Respect, -esteem, and confidence had vanished for ever; and all his views of -domestic happiness were overthrown. But Mr. Bennet was not of a -disposition to seek comfort for the disappointment which his own -imprudence had brought on in any of those pleasures which too often -console the unfortunate for their folly or their vice. He was fond of -the country and of books; and from these tastes had arisen his principal -enjoyments. To his wife he was very little otherwise indebted than as -her ignorance and folly had contributed to his amusement. This is not -the sort of happiness which a man would in general wish to owe to his -wife; but where other powers of entertainment are wanting, the true -philosopher will derive benefit from such as are given. - -Elizabeth, however, had never been blind to the impropriety of her -father’s behaviour as a husband. She had always seen it with pain; but -respecting his abilities, and grateful for his affectionate treatment of -herself, she endeavoured to forget what she could not overlook, and to -banish from her thoughts that continual breach of conjugal obligation -and decorum which, in exposing his wife to the contempt of her own -children, was so highly reprehensible. But she had never felt so -strongly as now the disadvantages which must attend the children of so -unsuitable a marriage, nor ever been so fully aware of the evils arising -from so ill-judged a direction of talents--talents which, rightly used, -might at least have preserved the respectability of his daughters, even -if incapable of enlarging the mind of his wife. - -When Elizabeth had rejoiced over Wickham’s departure, she found little -other cause for satisfaction in the loss of the regiment. Their parties -abroad were less varied than before; and at home she had a mother and -sister, whose constant repinings at the dulness of everything around -them threw a real gloom over their domestic circle; and, though Kitty -might in time regain her natural degree of sense, since the disturbers -of her brain were removed, her other sister, from whose disposition -greater evil might be apprehended, was likely to be hardened in all her -folly and assurance, by a situation of such double danger as a -watering-place and a camp. Upon the whole, therefore, she found, what -has been sometimes found before, that an event to which she had looked -forward with impatient desire, did not, in taking place, bring all the -satisfaction she had promised herself. It was consequently necessary to -name some other period for the commencement of actual felicity; to have -some other point on which her wishes and hopes might be fixed, and by -again enjoying the pleasure of anticipation, console herself for the -present, and prepare for another disappointment. Her tour to the Lakes -was now the object of her happiest thoughts: it was her best consolation -for all the uncomfortable hours which the discontentedness of her mother -and Kitty made inevitable; and could she have included Jane in the -scheme, every part of it would have been perfect. - -“But it is fortunate,” thought she, “that I have something to wish for. -Were the whole arrangement complete, my disappointment would be certain. -But here, by carrying with me one ceaseless source of regret in my -sister’s absence, I may reasonably hope to have all my expectations of -pleasure realized. A scheme of which every part promises delight can -never be successful; and general disappointment is only warded off by -the defence of some little peculiar vexation.” - -When Lydia went away she promised to write very often and very minutely -to her mother and Kitty; but her letters were always long expected, and -always very short. Those to her mother contained little else than that -they were just returned from the library, where such and such officers -had attended them, and where she had seen such beautiful ornaments as -made her quite wild; that she had a new gown, or a new parasol, which -she would have described more fully, but was obliged to leave off in a -violent hurry, as Mrs. Forster called her, and they were going to the -camp; and from her correspondence with her sister there was still less -to be learnt, for her letters to Kitty, though rather longer, were much -too full of lines under the words to be made public. - -After the first fortnight or three weeks of her absence, health, -good-humour, and cheerfulness began to reappear at Longbourn. Everything -wore a happier aspect. The families who had been in town for the winter -came back again, and summer finery and summer engagements arose. Mrs. -Bennet was restored to her usual querulous serenity; and by the middle -of June Kitty was so much recovered as to be able to enter Meryton -without tears,--an event of such happy promise as to make Elizabeth -hope, that by the following Christmas she might be so tolerably -reasonable as not to mention an officer above once a day, unless, by -some cruel and malicious arrangement at the War Office, another regiment -should be quartered in Meryton. - -The time fixed for the beginning of their northern tour was now fast -approaching; and a fortnight only was wanting of it, when a letter -arrived from Mrs. Gardiner, which at once delayed its commencement and -curtailed its extent. Mr. Gardiner would be prevented by business from -setting out till a fortnight later in July, and must be in London again -within a month; and as that left too short a period for them to go so -far, and see so much as they had proposed, or at least to see it with -the leisure and comfort they had built on, they were obliged to give up -the Lakes, and substitute a more contracted tour; and, according to the -present plan, were to go no farther northward than Derbyshire. In that -county there was enough to be seen to occupy the chief of their three -weeks; and to Mrs. Gardiner it had a peculiarly strong attraction. The -town where she had formerly passed some years of her life, and where -they were now to spend a few days, was probably as great an object of -her curiosity as all the celebrated beauties of Matlock, Chatsworth, -Dovedale, or the Peak. - -Elizabeth was excessively disappointed: she had set her heart on seeing -the Lakes; and still thought there might have been time enough. But it -was her business to be satisfied--and certainly her temper to be happy; -and all was soon right again. - -With the mention of Derbyshire, there were many ideas connected. It was -impossible for her to see the word without thinking of Pemberley and its -owner. “But surely,” said she, “I may enter his county with impunity, -and rob it of a few petrified spars, without his perceiving me.” - -The period of expectation was now doubled. Four weeks were to pass away -before her uncle and aunt’s arrival. But they did pass away, and Mr. and -Mrs. Gardiner, with their four children, did at length appear at -Longbourn. The children, two girls of six and eight years old, and two -younger boys, were to be left under the particular care of their cousin -Jane, who was the general favourite, and whose steady sense and -sweetness of temper exactly adapted her for attending to them in every -way--teaching them, playing with them, and loving them. - -The Gardiners stayed only one night at Longbourn, and set off the next -morning with Elizabeth in pursuit of novelty and amusement. One -enjoyment was certain--that of suitableness as companions; a -suitableness which comprehended health and temper to bear -inconveniences--cheerfulness to enhance every pleasure--and affection -and intelligence, which might supply it among themselves if there were -disappointments abroad. - -It is not the object of this work to give a description of Derbyshire, -nor of any of the remarkable places through which their route thither -lay--Oxford, Blenheim, Warwick, Kenilworth, Birmingham, etc., are -sufficiently known. A small part of Derbyshire is all the present -concern. To the little town of Lambton, the scene of Mrs. Gardiner’s -former residence, and where she had lately learned that some -acquaintance still remained, they bent their steps, after having seen -all the principal wonders of the country; and within five miles of -Lambton, Elizabeth found, from her aunt, that Pemberley was situated. It -was not in their direct road; nor more than a mile or two out of it. In -talking over their route the evening before, Mrs. Gardiner expressed an -inclination to see the place again. Mr. Gardiner declared his -willingness, and Elizabeth was applied to for her approbation. - -“My love, should not you like to see a place of which you have heard so -much?” said her aunt. “A place, too, with which so many of your -acquaintance are connected. Wickham passed all his youth there, you -know.” - -Elizabeth was distressed. She felt that she had no business at -Pemberley, and was obliged to assume a disinclination for seeing it. She -must own that she was tired of great houses: after going over so many, -she really had no pleasure in fine carpets or satin curtains. - -Mrs. Gardiner abused her stupidity. “If it were merely a fine house -richly furnished,” said she, “I should not care about it myself; but the -grounds are delightful. They have some of the finest woods in the -country.” - -Elizabeth said no more; but her mind could not acquiesce. The -possibility of meeting Mr. Darcy, while viewing the place, instantly -occurred. It would be dreadful! She blushed at the very idea; and -thought it would be better to speak openly to her aunt, than to run such -a risk. But against this there were objections; and she finally resolved -that it could be the last resource, if her private inquiries as to the -absence of the family were unfavourably answered. - -Accordingly, when she retired at night, she asked the chambermaid -whether Pemberley were not a very fine place, what was the name of its -proprietor, and, with no little alarm, whether the family were down for -the summer? A most welcome negative followed the last question; and her -alarms being now removed, she was at leisure to feel a great deal of -curiosity to see the house herself; and when the subject was revived the -next morning, and she was again applied to, could readily answer, and -with a proper air of indifference, that she had not really any dislike -to the scheme. - -To Pemberley, therefore, they were to go. - - - - -[Illustration: - - “Conjecturing as to the date” -] - - - - -CHAPTER XLIII. - - -[Illustration] - -Elizabeth, as they drove along, watched for the first appearance of -Pemberley Woods with some perturbation; and when at length they turned -in at the lodge, her spirits were in a high flutter. - -The park was very large, and contained great variety of ground. They -entered it in one of its lowest points, and drove for some time through -a beautiful wood stretching over a wide extent. - -Elizabeth’s mind was too full for conversation, but she saw and admired -every remarkable spot and point of view. They gradually ascended for -half a mile, and then found themselves at the top of a considerable -eminence, where the wood ceased, and the eye was instantly caught by -Pemberley House, situated on the opposite side of the valley, into which -the road with some abruptness wound. It was a large, handsome stone -building, standing well on rising ground, and backed by a ridge of high -woody hills; and in front a stream of some natural importance was -swelled into greater, but without any artificial appearance. Its banks -were neither formal nor falsely adorned. Elizabeth was delighted. She -had never seen a place for which nature had done more, or where natural -beauty had been so little counteracted by an awkward taste. They were -all of them warm in their admiration; and at that moment she felt that -to be mistress of Pemberley might be something! - -They descended the hill, crossed the bridge, and drove to the door; and, -while examining the nearer aspect of the house, all her apprehension of -meeting its owner returned. She dreaded lest the chambermaid had been -mistaken. On applying to see the place, they were admitted into the -hall; and Elizabeth, as they waited for the housekeeper, had leisure to -wonder at her being where she was. - -The housekeeper came; a respectable looking elderly woman, much less -fine, and more civil, than she had any notion of finding her. They -followed her into the dining-parlour. It was a large, well-proportioned -room, handsomely fitted up. Elizabeth, after slightly surveying it, went -to a window to enjoy its prospect. The hill, crowned with wood, from -which they had descended, receiving increased abruptness from the -distance, was a beautiful object. Every disposition of the ground was -good; and she looked on the whole scene, the river, the trees scattered -on its banks, and the winding of the valley, as far as she could trace -it, with delight. As they passed into other rooms, these objects were -taking different positions; but from every window there were beauties -to be seen. The rooms were lofty and handsome, and their furniture -suitable to the fortune of their proprietor; but Elizabeth saw, with -admiration of his taste, that it was neither gaudy nor uselessly -fine,--with less of splendour, and more real elegance, than the -furniture of Rosings. - -“And of this place,” thought she, “I might have been mistress! With -these rooms I might have now been familiarly acquainted! Instead of -viewing them as a stranger, I might have rejoiced in them as my own, and -welcomed to them as visitors my uncle and aunt. But, no,” recollecting -herself, “that could never be; my uncle and aunt would have been lost to -me; I should not have been allowed to invite them.” - -This was a lucky recollection--it saved her from something like regret. - -She longed to inquire of the housekeeper whether her master were really -absent, but had not courage for it. At length, however, the question was -asked by her uncle; and she turned away with alarm, while Mrs. Reynolds -replied, that he was; adding, “But we expect him to-morrow, with a large -party of friends.” How rejoiced was Elizabeth that their own journey had -not by any circumstance been delayed a day! - -Her aunt now called her to look at a picture. She approached, and saw -the likeness of Mr. Wickham, suspended, amongst several other -miniatures, over the mantel-piece. Her aunt asked her, smilingly, how -she liked it. The housekeeper came forward, and told them it was the -picture of a young gentleman, the son of her late master’s steward, who -had been brought up by him at his own expense. “He is now gone into the -army,” she added; “but I am afraid he has turned out very wild.” - -Mrs. Gardiner looked at her niece with a smile, but Elizabeth could not -return it. - -“And that,” said Mrs. Reynolds, pointing to another of the miniatures, -“is my master--and very like him. It was drawn at the same time as the -other--about eight years ago.” - -“I have heard much of your master’s fine person,” said Mrs. Gardiner, -looking at the picture; “it is a handsome face. But, Lizzy, you can tell -us whether it is like or not.” - -Mrs. Reynolds’ respect for Elizabeth seemed to increase on this -intimation of her knowing her master. - -“Does that young lady know Mr. Darcy?” - -Elizabeth coloured, and said, “A little.” - -“And do not you think him a very handsome gentleman, ma’am?” - -“Yes, very handsome.” - -“I am sure _I_ know none so handsome; but in the gallery upstairs you -will see a finer, larger picture of him than this. This room was my late -master’s favourite room, and these miniatures are just as they used to -be then. He was very fond of them.” - -This accounted to Elizabeth for Mr. Wickham’s being among them. - -Mrs. Reynolds then directed their attention to one of Miss Darcy, drawn -when she was only eight years old. - -“And is Miss Darcy as handsome as her brother?” said Mr. Gardiner. - -“Oh, yes--the handsomest young lady that ever was seen; and so -accomplished! She plays and sings all day long. In the next room is a -new instrument just come down for her--a present from my master: she -comes here to-morrow with him.” - -Mr. Gardiner, whose manners were easy and pleasant, encouraged her -communicativeness by his questions and remarks: Mrs. Reynolds, either -from pride or attachment, had evidently great pleasure in talking of her -master and his sister. - -“Is your master much at Pemberley in the course of the year?” - -“Not so much as I could wish, sir: but I dare say he may spend half his -time here; and Miss Darcy is always down for the summer months.” - -“Except,” thought Elizabeth, “when she goes to Ramsgate.” - -“If your master would marry, you might see more of him.” - -“Yes, sir; but I do not know when _that_ will be. I do not know who is -good enough for him.” - -Mr. and Mrs. Gardiner smiled. Elizabeth could not help saying, “It is -very much to his credit, I am sure, that you should think so.” - -“I say no more than the truth, and what everybody will say that knows -him,” replied the other. Elizabeth thought this was going pretty far; -and she listened with increasing astonishment as the housekeeper added, -“I have never had a cross word from him in my life, and I have known him -ever since he was four years old.” - -This was praise of all others most extraordinary, most opposite to her -ideas. That he was not a good-tempered man had been her firmest opinion. -Her keenest attention was awakened: she longed to hear more; and was -grateful to her uncle for saying,-- - -“There are very few people of whom so much can be said. You are lucky in -having such a master.” - -“Yes, sir, I know I am. If I were to go through the world, I could not -meet with a better. But I have always observed, that they who are -good-natured when children, are good-natured when they grow up; and he -was always the sweetest tempered, most generous-hearted boy in the -world.” - -Elizabeth almost stared at her. “Can this be Mr. Darcy?” thought she. - -“His father was an excellent man,” said Mrs. Gardiner. - -“Yes, ma’am, that he was indeed; and his son will be just like him--just -as affable to the poor.” - -Elizabeth listened, wondered, doubted, and was impatient for more. Mrs. -Reynolds could interest her on no other point. She related the subjects -of the pictures, the dimensions of the rooms, and the price of the -furniture in vain. Mr. Gardiner, highly amused by the kind of family -prejudice, to which he attributed her excessive commendation of her -master, soon led again to the subject; and she dwelt with energy on his -many merits, as they proceeded together up the great staircase. - -“He is the best landlord, and the best master,” said she, “that ever -lived. Not like the wild young men now-a-days, who think of nothing but -themselves. There is not one of his tenants or servants but what will -give him a good name. Some people call him proud; but I am sure I never -saw anything of it. To my fancy, it is only because he does not rattle -away like other young men.” - -“In what an amiable light does this place him!” thought Elizabeth. - -“This fine account of him,” whispered her aunt as they walked, “is not -quite consistent with his behaviour to our poor friend.” - -“Perhaps we might be deceived.” - -“That is not very likely; our authority was too good.” - -On reaching the spacious lobby above, they were shown into a very pretty -sitting-room, lately fitted up with greater elegance and lightness than -the apartments below; and were informed that it was but just done to -give pleasure to Miss Darcy, who had taken a liking to the room, when -last at Pemberley. - -“He is certainly a good brother,” said Elizabeth, as she walked towards -one of the windows. - -Mrs. Reynolds anticipated Miss Darcy’s delight, when she should enter -the room. “And this is always the way with him,” she added. “Whatever -can give his sister any pleasure, is sure to be done in a moment. There -is nothing he would not do for her.” - -The picture gallery, and two or three of the principal bed-rooms, were -all that remained to be shown. In the former were many good paintings: -but Elizabeth knew nothing of the art; and from such as had been already -visible below, she had willingly turned to look at some drawings of Miss -Darcy’s, in crayons, whose subjects were usually more interesting, and -also more intelligible. - -In the gallery there were many family portraits, but they could have -little to fix the attention of a stranger. Elizabeth walked on in quest -of the only face whose features would be known to her. At last it -arrested her--and she beheld a striking resemblance of Mr. Darcy, with -such a smile over the face, as she remembered to have sometimes seen, -when he looked at her. She stood several minutes before the picture, in -earnest contemplation, and returned to it again before they quitted the -gallery. Mrs. Reynolds informed them, that it had been taken in his -father’s lifetime. - -There was certainly at this moment, in Elizabeth’s mind, a more gentle -sensation towards the original than she had ever felt in the height of -their acquaintance. The commendation bestowed on him by Mrs. Reynolds -was of no trifling nature. What praise is more valuable than the praise -of an intelligent servant? As a brother, a landlord, a master, she -considered how many people’s happiness were in his guardianship! How -much of pleasure or pain it was in his power to bestow! How much of good -or evil must be done by him! Every idea that had been brought forward by -the housekeeper was favourable to his character; and as she stood before -the canvas, on which he was represented, and fixed his eyes upon -herself, she thought of his regard with a deeper sentiment of gratitude -than it had ever raised before: she remembered its warmth, and softened -its impropriety of expression. - -When all of the house that was open to general inspection had been seen, -they returned down stairs; and, taking leave of the housekeeper, were -consigned over to the gardener, who met them at the hall door. - -As they walked across the lawn towards the river, Elizabeth turned back -to look again; her uncle and aunt stopped also; and while the former was -conjecturing as to the date of the building, the owner of it himself -suddenly came forward from the road which led behind it to the stables. - -They were within twenty yards of each other; and so abrupt was his -appearance, that it was impossible to avoid his sight. Their eyes -instantly met, and the cheeks of each were overspread with the deepest -blush. He absolutely started, and for a moment seemed immovable from -surprise; but shortly recovering himself, advanced towards the party, -and spoke to Elizabeth, if not in terms of perfect composure, at least -of perfect civility. - -She had instinctively turned away; but stopping on his approach, -received his compliments with an embarrassment impossible to be -overcome. Had his first appearance, or his resemblance to the picture -they had just been examining, been insufficient to assure the other two -that they now saw Mr. Darcy, the gardener’s expression of surprise, on -beholding his master, must immediately have told it. They stood a little -aloof while he was talking to their niece, who, astonished and confused, -scarcely dared lift her eyes to his face, and knew not what answer she -returned to his civil inquiries after her family. Amazed at the -alteration of his manner since they last parted, every sentence that he -uttered was increasing her embarrassment; and every idea of the -impropriety of her being found there recurring to her mind, the few -minutes in which they continued together were some of the most -uncomfortable of her life. Nor did he seem much more at ease; when he -spoke, his accent had none of its usual sedateness; and he repeated his -inquiries as to the time of her having left Longbourn, and of her stay -in Derbyshire, so often, and in so hurried a way, as plainly spoke the -distraction of his thoughts. - -At length, every idea seemed to fail him; and after standing a few -moments without saying a word, he suddenly recollected himself, and took -leave. - -The others then joined her, and expressed their admiration of his -figure; but Elizabeth heard not a word, and, wholly engrossed by her own -feelings, followed them in silence. She was overpowered by shame and -vexation. Her coming there was the most unfortunate, the most ill-judged -thing in the world! How strange must it appear to him! In what a -disgraceful light might it not strike so vain a man! It might seem as if -she had purposely thrown herself in his way again! Oh! why did she come? -or, why did he thus come a day before he was expected? Had they been -only ten minutes sooner, they should have been beyond the reach of his -discrimination; for it was plain that he was that moment arrived, that -moment alighted from his horse or his carriage. She blushed again and -again over the perverseness of the meeting. And his behaviour, so -strikingly altered,--what could it mean? That he should even speak to -her was amazing!--but to speak with such civility, to inquire after her -family! Never in her life had she seen his manners so little dignified, -never had he spoken with such gentleness as on this unexpected meeting. -What a contrast did it offer to his last address in Rosings Park, when -he put his letter into her hand! She knew not what to think, or how to -account for it. - -They had now entered a beautiful walk by the side of the water, and -every step was bringing forward a nobler fall of ground, or a finer -reach of the woods to which they were approaching: but it was some time -before Elizabeth was sensible of any of it; and, though she answered -mechanically to the repeated appeals of her uncle and aunt, and seemed -to direct her eyes to such objects as they pointed out, she -distinguished no part of the scene. Her thoughts were all fixed on that -one spot of Pemberley House, whichever it might be, where Mr. Darcy then -was. She longed to know what at that moment was passing in his mind; in -what manner he thought of her, and whether, in defiance of everything, -she was still dear to him. Perhaps he had been civil only because he -felt himself at ease; yet there had been _that_ in his voice, which was -not like ease. Whether he had felt more of pain or of pleasure in seeing -her, she could not tell, but he certainly had not seen her with -composure. - -At length, however, the remarks of her companions on her absence of mind -roused her, and she felt the necessity of appearing more like herself. - -They entered the woods, and, bidding adieu to the river for a while, -ascended some of the higher grounds; whence, in spots where the opening -of the trees gave the eye power to wander, were many charming views of -the valley, the opposite hills, with the long range of woods -overspreading many, and occasionally part of the stream. Mr. Gardiner -expressed a wish of going round the whole park, but feared it might be -beyond a walk. With a triumphant smile, they were told, that it was ten -miles round. It settled the matter; and they pursued the accustomed -circuit; which brought them again, after some time, in a descent among -hanging woods, to the edge of the water, and one of its narrowest parts. -They crossed it by a simple bridge, in character with the general air of -the scene: it was a spot less adorned than any they had yet visited; and -the valley, here contracted into a glen, allowed room only for the -stream, and a narrow walk amidst the rough coppice-wood which bordered -it. Elizabeth longed to explore its windings; but when they had crossed -the bridge, and perceived their distance from the house, Mrs. Gardiner, -who was not a great walker, could go no farther, and thought only of -returning to the carriage as quickly as possible. Her niece was, -therefore, obliged to submit, and they took their way towards the house -on the opposite side of the river, in the nearest direction; but their -progress was slow, for Mr. Gardiner, though seldom able to indulge the -taste, was very fond of fishing, and was so much engaged in watching the -occasional appearance of some trout in the water, and talking to the man -about them, that he advanced but little. Whilst wandering on in this -slow manner, they were again surprised, and Elizabeth’s astonishment was -quite equal to what it had been at first, by the sight of Mr. Darcy -approaching them, and at no great distance. The walk being here less -sheltered than on the other side, allowed them to see him before they -met. Elizabeth, however astonished, was at least more prepared for an -interview than before, and resolved to appear and to speak with -calmness, if he really intended to meet them. For a few moments, indeed, -she felt that he would probably strike into some other path. The idea -lasted while a turning in the walk concealed him from their view; the -turning past, he was immediately before them. With a glance she saw that -he had lost none of his recent civility; and, to imitate his politeness, -she began as they met to admire the beauty of the place; but she had not -got beyond the words “delightful,” and “charming,” when some unlucky -recollections obtruded, and she fancied that praise of Pemberley from -her might be mischievously construed. Her colour changed, and she said -no more. - -Mrs. Gardiner was standing a little behind; and on her pausing, he asked -her if she would do him the honour of introducing him to her friends. -This was a stroke of civility for which she was quite unprepared; and -she could hardly suppress a smile at his being now seeking the -acquaintance of some of those very people, against whom his pride had -revolted, in his offer to herself. “What will be his surprise,” thought -she, “when he knows who they are! He takes them now for people of -fashion.” - -The introduction, however, was immediately made; and as she named their -relationship to herself, she stole a sly look at him, to see how he bore -it; and was not without the expectation of his decamping as fast as he -could from such disgraceful companions. That he was _surprised_ by the -connection was evident: he sustained it, however, with fortitude: and, -so far from going away, turned back with them, and entered into -conversation with Mr. Gardiner. Elizabeth could not but be pleased, -could not but triumph. It was consoling that he should know she had some -relations for whom there was no need to blush. She listened most -attentively to all that passed between them, and gloried in every -expression, every sentence of her uncle, which marked his intelligence, -his taste, or his good manners. - -The conversation soon turned upon fishing; and she heard Mr. Darcy -invite him, with the greatest civility, to fish there as often as he -chose, while he continued in the neighbourhood, offering at the same -time to supply him with fishing tackle, and pointing out those parts of -the stream where there was usually most sport. Mrs. Gardiner, who was -walking arm in arm with Elizabeth, gave her a look expressive of her -wonder. Elizabeth said nothing, but it gratified her exceedingly; the -compliment must be all for herself. Her astonishment, however, was -extreme; and continually was she repeating, “Why is he so altered? From -what can it proceed? It cannot be for _me_, it cannot be for _my_ sake -that his manners are thus softened. My reproofs at Hunsford could not -work such a change as this. It is impossible that he should still love -me.” - -After walking some time in this way, the two ladies in front, the two -gentlemen behind, on resuming their places, after descending to the -brink of the river for the better inspection of some curious -water-plant, there chanced to be a little alteration. It originated in -Mrs. Gardiner, who, fatigued by the exercise of the morning, found -Elizabeth’s arm inadequate to her support, and consequently preferred -her husband’s. Mr. Darcy took her place by her niece, and they walked on -together. After a short silence the lady first spoke. She wished him to -know that she had been assured of his absence before she came to the -place, and accordingly began by observing, that his arrival had been -very unexpected--“for your housekeeper,” she added, “informed us that -you would certainly not be here till to-morrow; and, indeed, before we -left Bakewell, we understood that you were not immediately expected in -the country.” He acknowledged the truth of it all; and said that -business with his steward had occasioned his coming forward a few hours -before the rest of the party with whom he had been travelling. “They -will join me early to-morrow,” he continued, “and among them are some -who will claim an acquaintance with you,--Mr. Bingley and his sisters.” - -Elizabeth answered only by a slight bow. Her thoughts were instantly -driven back to the time when Mr. Bingley’s name had been last mentioned -between them; and if she might judge from his complexion, _his_ mind was -not very differently engaged. - -“There is also one other person in the party,” he continued after a -pause, “who more particularly wishes to be known to you. Will you allow -me, or do I ask too much, to introduce my sister to your acquaintance -during your stay at Lambton?” - -The surprise of such an application was great indeed; it was too great -for her to know in what manner she acceded to it. She immediately felt -that whatever desire Miss Darcy might have of being acquainted with her, -must be the work of her brother, and without looking farther, it was -satisfactory; it was gratifying to know that his resentment had not made -him think really ill of her. - -They now walked on in silence; each of them deep in thought. Elizabeth -was not comfortable; that was impossible; but she was flattered and -pleased. His wish of introducing his sister to her was a compliment of -the highest kind. They soon outstripped the others; and when they had -reached the carriage, Mr. and Mrs. Gardiner were half a quarter of a -mile behind. - -He then asked her to walk into the house--but she declared herself not -tired, and they stood together on the lawn. At such a time much might -have been said, and silence was very awkward. She wanted to talk, but -there seemed an embargo on every subject. At last she recollected that -she had been travelling, and they talked of Matlock and Dovedale with -great perseverance. Yet time and her aunt moved slowly--and her patience -and her ideas were nearly worn out before the _tête-à-tête_ was over. - -On Mr. and Mrs. Gardiner’s coming up they were all pressed to go into -the house and take some refreshment; but this was declined, and they -parted on each side with the utmost politeness. Mr. Darcy handed the -ladies into the carriage; and when it drove off, Elizabeth saw him -walking slowly towards the house. - -The observations of her uncle and aunt now began; and each of them -pronounced him to be infinitely superior to anything they had expected. - -“He is perfectly well-behaved, polite, and unassuming,” said her uncle. - -“There _is_ something a little stately in him, to be sure,” replied her -aunt; “but it is confined to his air, and is not unbecoming. I can now -say with the housekeeper, that though some people may call him proud, -_I_ have seen nothing of it.” - -“I was never more surprised than by his behaviour to us. It was more -than civil; it was really attentive; and there was no necessity for such -attention. His acquaintance with Elizabeth was very trifling.” - -“To be sure, Lizzy,” said her aunt, “he is not so handsome as Wickham; -or rather he has not Wickham’s countenance, for his features are -perfectly good. But how came you to tell us that he was so -disagreeable?” - -Elizabeth excused herself as well as she could: said that she had liked -him better when they met in Kent than before, and that she had never -seen him so pleasant as this morning. - -“But perhaps he may be a little whimsical in his civilities,” replied -her uncle. “Your great men often are; and therefore I shall not take him -at his word about fishing, as he might change his mind another day, and -warn me off his grounds.” - -Elizabeth felt that they had entirely mistaken his character, but said -nothing. - -“From what we have seen of him,” continued Mrs. Gardiner, “I really -should not have thought that he could have behaved in so cruel a way by -anybody as he has done by poor Wickham. He has not an ill-natured look. -On the contrary, there is something pleasing about his mouth when he -speaks. And there is something of dignity in his countenance, that would -not give one an unfavourable idea of his heart. But, to be sure, the -good lady who showed us the house did give him a most flaming character! -I could hardly help laughing aloud sometimes. But he is a liberal -master, I suppose, and _that_, in the eye of a servant, comprehends -every virtue.” - -Elizabeth here felt herself called on to say something in vindication of -his behaviour to Wickham; and, therefore, gave them to understand, in as -guarded a manner as she could, that by what she had heard from his -relations in Kent, his actions were capable of a very different -construction; and that his character was by no means so faulty, nor -Wickham’s so amiable, as they had been considered in Hertfordshire. In -confirmation of this, she related the particulars of all the pecuniary -transactions in which they had been connected, without actually naming -her authority, but stating it to be such as might be relied on. - -Mrs. Gardiner was surprised and concerned: but as they were now -approaching the scene of her former pleasures, every idea gave way to -the charm of recollection; and she was too much engaged in pointing out -to her husband all the interesting spots in its environs, to think of -anything else. Fatigued as she had been by the morning’s walk, they had -no sooner dined than she set off again in quest of her former -acquaintance, and the evening was spent in the satisfactions of an -intercourse renewed after many years’ discontinuance. - -The occurrences of the day were too full of interest to leave Elizabeth -much attention for any of these new friends; and she could do nothing -but think, and think with wonder, of Mr. Darcy’s civility, and, above -all, of his wishing her to be acquainted with his sister. - - - - -[Illustration] - - - - -CHAPTER XLIV. - - -[Illustration] - -Elizabeth had settled it that Mr. Darcy would bring his sister to visit -her the very day after her reaching Pemberley; and was, consequently, -resolved not to be out of sight of the inn the whole of that morning. -But her conclusion was false; for on the very morning after their own -arrival at Lambton these visitors came. They had been walking about the -place with some of their new friends, and were just returned to the inn -to dress themselves for dining with the same family, when the sound of a -carriage drew them to a window, and they saw a gentleman and lady in a -curricle driving up the street. Elizabeth, immediately recognizing the -livery, guessed what it meant, and imparted no small degree of surprise -to her relations, by acquainting them with the honour which she -expected. Her uncle and aunt were all amazement; and the embarrassment -of her manner as she spoke, joined to the circumstance itself, and many -of the circumstances of the preceding day, opened to them a new idea on -the business. Nothing had ever suggested it before, but they now felt -that there was no other way of accounting for such attentions from such -a quarter than by supposing a partiality for their niece. While these -newly-born notions were passing in their heads, the perturbation of -Elizabeth’s feelings was every moment increasing. She was quite amazed -at her own discomposure; but, amongst other causes of disquiet, she -dreaded lest the partiality of the brother should have said too much in -her favour; and, more than commonly anxious to please, she naturally -suspected that every power of pleasing would fail her. - -She retreated from the window, fearful of being seen; and as she walked -up and down the room, endeavouring to compose herself, saw such looks of -inquiring surprise in her uncle and aunt as made everything worse. - -Miss Darcy and her brother appeared, and this formidable introduction -took place. With astonishment did Elizabeth see that her new -acquaintance was at least as much embarrassed as herself. Since her -being at Lambton, she had heard that Miss Darcy was exceedingly proud; -but the observation of a very few minutes convinced her that she was -only exceedingly shy. She found it difficult to obtain even a word from -her beyond a monosyllable. - -Miss Darcy was tall, and on a larger scale than Elizabeth; and, though -little more than sixteen, her figure was formed, and her appearance -womanly and graceful. She was less handsome than her brother, but there -was sense and good-humour in her face, and her manners were perfectly -unassuming and gentle. Elizabeth, who had expected to find in her as -acute and unembarrassed an observer as ever Mr. Darcy had been, was much -relieved by discerning such different feelings. - -They had not been long together before Darcy told her that Bingley was -also coming to wait on her; and she had barely time to express her -satisfaction, and prepare for such a visitor, when Bingley’s quick step -was heard on the stairs, and in a moment he entered the room. All -Elizabeth’s anger against him had been long done away; but had she still -felt any, it could hardly have stood its ground against the unaffected -cordiality with which he expressed himself on seeing her again. He -inquired in a friendly, though general, way, after her family, and -looked and spoke with the same good-humoured ease that he had ever done. - -To Mr. and Mrs. Gardiner he was scarcely a less interesting personage -than to herself. They had long wished to see him. The whole party before -them, indeed, excited a lively attention. The suspicions which had just -arisen of Mr. Darcy and their niece, directed their observation towards -each with an earnest, though guarded, inquiry; and they soon drew from -those inquiries the full conviction that one of them at least knew what -it was to love. Of the lady’s sensations they remained a little in -doubt; but that the gentleman was overflowing with admiration was -evident enough. - -Elizabeth, on her side, had much to do. She wanted to ascertain the -feelings of each of her visitors, she wanted to compose her own, and to -make herself agreeable to all; and in the latter object, where she -feared most to fail, she was most sure of success, for those to whom -she endeavoured to give pleasure were pre-possessed in her favour. -Bingley was ready, Georgiana was eager, and Darcy determined, to be -pleased. - -[Illustration: - - “To make herself agreeable to all” - -[_Copyright 1894 by George Allen._]] - -In seeing Bingley, her thoughts naturally flew to her sister; and oh! -how ardently did she long to know whether any of his were directed in a -like manner. Sometimes she could fancy that he talked less than on -former occasions, and once or twice pleased herself with the notion -that, as he looked at her, he was trying to trace a resemblance. But, -though this might be imaginary, she could not be deceived as to his -behaviour to Miss Darcy, who had been set up as a rival to Jane. No -look appeared on either side that spoke particular regard. Nothing -occurred between them that could justify the hopes of his sister. On -this point she was soon satisfied; and two or three little circumstances -occurred ere they parted, which, in her anxious interpretation, denoted -a recollection of Jane, not untinctured by tenderness, and a wish of -saying more that might lead to the mention of her, had he dared. He -observed to her, at a moment when the others were talking together, and -in a tone which had something of real regret, that it “was a very long -time since he had had the pleasure of seeing her;” and, before she could -reply, he added, “It is above eight months. We have not met since the -26th of November, when we were all dancing together at Netherfield.” - -Elizabeth was pleased to find his memory so exact; and he afterwards -took occasion to ask her, when unattended to by any of the rest, whether -_all_ her sisters were at Longbourn. There was not much in the question, -nor in the preceding remark; but there was a look and a manner which -gave them meaning. - -It was not often that she could turn her eyes on Mr. Darcy himself; but -whenever she did catch a glimpse she saw an expression of general -complaisance, and in all that he said, she heard an accent so far -removed from _hauteur_ or disdain of his companions, as convinced her -that the improvement of manners which she had yesterday witnessed, -however temporary its existence might prove, had at least outlived one -day. When she saw him thus seeking the acquaintance, and courting the -good opinion of people with whom any intercourse a few months ago would -have been a disgrace; when she saw him thus civil, not only to herself, -but to the very relations whom he had openly disdained, and recollected -their last lively scene in Hunsford Parsonage, the difference, the -change was so great, and struck so forcibly on her mind, that she could -hardly restrain her astonishment from being visible. Never, even in the -company of his dear friends at Netherfield, or his dignified relations -at Rosings, had she seen him so desirous to please, so free from -self-consequence or unbending reserve, as now, when no importance could -result from the success of his endeavours, and when even the -acquaintance of those to whom his attentions were addressed, would draw -down the ridicule and censure of the ladies both of Netherfield and -Rosings. - -Their visitors stayed with them above half an hour; and when they arose -to depart, Mr. Darcy called on his sister to join him in expressing -their wish of seeing Mr. and Mrs. Gardiner, and Miss Bennet, to dinner -at Pemberley, before they left the country. Miss Darcy, though with a -diffidence which marked her little in the habit of giving invitations, -readily obeyed. Mrs. Gardiner looked at her niece, desirous of knowing -how _she_, whom the invitation most concerned, felt disposed as to its -acceptance, but Elizabeth had turned away her head. Presuming, however, -that this studied avoidance spoke rather a momentary embarrassment than -any dislike of the proposal, and seeing in her husband, who was fond of -society, a perfect willingness to accept it, she ventured to engage for -her attendance, and the day after the next was fixed on. - -Bingley expressed great pleasure in the certainty of seeing Elizabeth -again, having still a great deal to say to her, and many inquiries to -make after all their Hertfordshire friends. Elizabeth, construing all -this into a wish of hearing her speak of her sister, was pleased; and -on this account, as well as some others, found herself, when their -visitors left them, capable of considering the last half hour with some -satisfaction, though while it was passing the enjoyment of it had been -little. Eager to be alone, and fearful of inquiries or hints from her -uncle and aunt, she stayed with them only long enough to hear their -favourable opinion of Bingley, and then hurried away to dress. - -But she had no reason to fear Mr. and Mrs. Gardiner’s curiosity; it was -not their wish to force her communication. It was evident that she was -much better acquainted with Mr. Darcy than they had before any idea of; -it was evident that he was very much in love with her. They saw much to -interest, but nothing to justify inquiry. - -Of Mr. Darcy it was now a matter of anxiety to think well; and, as far -as their acquaintance reached, there was no fault to find. They could -not be untouched by his politeness; and had they drawn his character -from their own feelings and his servant’s report, without any reference -to any other account, the circle in Hertfordshire to which he was known -would not have recognized it for Mr. Darcy. There was now an interest, -however, in believing the housekeeper; and they soon became sensible -that the authority of a servant, who had known him since he was four -years old, and whose own manners indicated respectability, was not to be -hastily rejected. Neither had anything occurred in the intelligence of -their Lambton friends that could materially lessen its weight. They had -nothing to accuse him of but pride; pride he probably had, and if not, -it would certainly be imputed by the inhabitants of a small market town -where the family did not visit. It was acknowledged, however, that he -was a liberal man, and did much good among the poor. - -With respect to Wickham, the travellers soon found that he was not held -there in much estimation; for though the chief of his concerns with the -son of his patron were imperfectly understood, it was yet a well-known -fact that, on his quitting Derbyshire, he had left many debts behind -him, which Mr. Darcy afterwards discharged. - -As for Elizabeth, her thoughts were at Pemberley this evening more than -the last; and the evening, though as it passed it seemed long, was not -long enough to determine her feelings towards _one_ in that mansion; and -she lay awake two whole hours, endeavouring to make them out. She -certainly did not hate him. No; hatred had vanished long ago, and she -had almost as long been ashamed of ever feeling a dislike against him, -that could be so called. The respect created by the conviction of his -valuable qualities, though at first unwillingly admitted, had for some -time ceased to be repugnant to her feelings; and it was now heightened -into somewhat of a friendlier nature by the testimony so highly in his -favour, and bringing forward his disposition in so amiable a light, -which yesterday had produced. But above all, above respect and esteem, -there was a motive within her of good-will which could not be -overlooked. It was gratitude;--gratitude, not merely for having once -loved her, but for loving her still well enough to forgive all the -petulance and acrimony of her manner in rejecting him, and all the -unjust accusations accompanying her rejection. He who, she had been -persuaded, would avoid her as his greatest enemy, seemed, on this -accidental meeting, most eager to preserve the acquaintance; and -without any indelicate display of regard, or any peculiarity of manner, -where their two selves only were concerned, was soliciting the good -opinion of her friends, and bent on making her known to his sister. Such -a change in a man of so much pride excited not only astonishment but -gratitude--for to love, ardent love, it must be attributed; and, as -such, its impression on her was of a sort to be encouraged, as by no -means unpleasing, though it could not be exactly defined. She respected, -she esteemed, she was grateful to him, she felt a real interest in his -welfare; and she only wanted to know how far she wished that welfare to -depend upon herself, and how far it would be for the happiness of both -that she should employ the power, which her fancy told her she still -possessed, of bringing on the renewal of his addresses. - -It had been settled in the evening, between the aunt and niece, that -such a striking civility as Miss Darcy’s, in coming to them on the very -day of her arrival at Pemberley--for she had reached it only to a late -breakfast--ought to be imitated, though it could not be equalled, by -some exertion of politeness on their side; and, consequently, that it -would be highly expedient to wait on her at Pemberley the following -morning. They were, therefore, to go. Elizabeth was pleased; though when -she asked herself the reason, she had very little to say in reply. - -Mr. Gardiner left them soon after breakfast. The fishing scheme had been -renewed the day before, and a positive engagement made of his meeting -some of the gentlemen at Pemberley by noon. - - - - -[Illustration: - - “Engaged by the river” -] - - - - -CHAPTER XLV. - - -[Illustration] - -Convinced as Elizabeth now was that Miss Bingley’s dislike of her had -originated in jealousy, she could not help feeling how very unwelcome -her appearance at Pemberley must be to her, and was curious to know -with how much civility on that lady’s side the acquaintance would now -be renewed. - -On reaching the house, they were shown through the hall into the saloon, -whose northern aspect rendered it delightful for summer. Its windows, -opening to the ground, admitted a most refreshing view of the high woody -hills behind the house, and of the beautiful oaks and Spanish chestnuts -which were scattered over the intermediate lawn. - -In this room they were received by Miss Darcy, who was sitting there -with Mrs. Hurst and Miss Bingley, and the lady with whom she lived in -London. Georgiana’s reception of them was very civil, but attended with -all that embarrassment which, though proceeding from shyness and the -fear of doing wrong, would easily give to those who felt themselves -inferior the belief of her being proud and reserved. Mrs. Gardiner and -her niece, however, did her justice, and pitied her. - -By Mrs. Hurst and Miss Bingley they were noticed only by a courtesy; and -on their being seated, a pause, awkward as such pauses must always be, -succeeded for a few moments. It was first broken by Mrs. Annesley, a -genteel, agreeable-looking woman, whose endeavour to introduce some kind -of discourse proved her to be more truly well-bred than either of the -others; and between her and Mrs. Gardiner, with occasional help from -Elizabeth, the conversation was carried on. Miss Darcy looked as if she -wished for courage enough to join in it; and sometimes did venture a -short sentence, when there was least danger of its being heard. - -Elizabeth soon saw that she was herself closely watched by Miss Bingley, -and that she could not speak a word, especially to Miss Darcy, without -calling her attention. This observation would not have prevented her -from trying to talk to the latter, had they not been seated at an -inconvenient distance; but she was not sorry to be spared the necessity -of saying much: her own thoughts were employing her. She expected every -moment that some of the gentlemen would enter the room: she wished, she -feared, that the master of the house might be amongst them; and whether -she wished or feared it most, she could scarcely determine. After -sitting in this manner a quarter of an hour, without hearing Miss -Bingley’s voice, Elizabeth was roused by receiving from her a cold -inquiry after the health of her family. She answered with equal -indifference and brevity, and the other said no more. - -The next variation which their visit afforded was produced by the -entrance of servants with cold meat, cake, and a variety of all the -finest fruits in season; but this did not take place till after many a -significant look and smile from Mrs. Annesley to Miss Darcy had been -given, to remind her of her post. There was now employment for the whole -party; for though they could not all talk, they could all eat; and the -beautiful pyramids of grapes, nectarines, and peaches, soon collected -them round the table. - -While thus engaged, Elizabeth had a fair opportunity of deciding whether -she most feared or wished for the appearance of Mr. Darcy, by the -feelings which prevailed on his entering the room; and then, though but -a moment before she had believed her wishes to predominate, she began to -regret that he came. - -He had been some time with Mr. Gardiner, who, with two or three other -gentlemen from the house, was engaged by the river; and had left him -only on learning that the ladies of the family intended a visit to -Georgiana that morning. No sooner did he appear, than Elizabeth wisely -resolved to be perfectly easy and unembarrassed;--a resolution the more -necessary to be made, but perhaps not the more easily kept, because she -saw that the suspicions of the whole party were awakened against them, -and that there was scarcely an eye which did not watch his behaviour -when he first came into the room. In no countenance was attentive -curiosity so strongly marked as in Miss Bingley’s, in spite of the -smiles which overspread her face whenever she spoke to one of its -objects; for jealousy had not yet made her desperate, and her attentions -to Mr. Darcy were by no means over. Miss Darcy, on her brother’s -entrance, exerted herself much more to talk; and Elizabeth saw that he -was anxious for his sister and herself to get acquainted, and forwarded, -as much as possible, every attempt at conversation on either side. Miss -Bingley saw all this likewise; and, in the imprudence of anger, took the -first opportunity of saying, with sneering civility,-- - -“Pray, Miss Eliza, are not the ----shire militia removed from Meryton? -They must be a great loss to _your_ family.” - -In Darcy’s presence she dared not mention Wickham’s name: but Elizabeth -instantly comprehended that he was uppermost in her thoughts; and the -various recollections connected with him gave her a moment’s distress; -but, exerting herself vigorously to repel the ill-natured attack, she -presently answered the question in a tolerably disengaged tone. While -she spoke, an involuntary glance showed her Darcy with a heightened -complexion, earnestly looking at her, and his sister overcome with -confusion, and unable to lift up her eyes. Had Miss Bingley known what -pain she was then giving her beloved friend, she undoubtedly would have -refrained from the hint; but she had merely intended to discompose -Elizabeth, by bringing forward the idea of a man to whom she believed -her partial, to make her betray a sensibility which might injure her in -Darcy’s opinion, and, perhaps, to remind the latter of all the follies -and absurdities by which some part of her family were connected with -that corps. Not a syllable had ever reached her of Miss Darcy’s -meditated elopement. To no creature had it been revealed, where secrecy -was possible, except to Elizabeth; and from all Bingley’s connections -her brother was particularly anxious to conceal it, from that very wish -which Elizabeth had long ago attributed to him, of their becoming -hereafter her own. He had certainly formed such a plan; and without -meaning that it should affect his endeavour to separate him from Miss -Bennet, it is probable that it might add something to his lively concern -for the welfare of his friend. - -Elizabeth’s collected behaviour, however, soon quieted his emotion; and -as Miss Bingley, vexed and disappointed, dared not approach nearer to -Wickham, Georgiana also recovered in time, though not enough to be able -to speak any more. Her brother, whose eye she feared to meet, scarcely -recollected her interest in the affair; and the very circumstance which -had been designed to turn his thoughts from Elizabeth, seemed to have -fixed them on her more and more cheerfully. - -Their visit did not continue long after the question and answer above -mentioned; and while Mr. Darcy was attending them to their carriage, -Miss Bingley was venting her feelings in criticisms on Elizabeth’s -person, behaviour, and dress. But Georgiana would not join her. Her -brother’s recommendation was enough to insure her favour: his judgment -could not err; and he had spoken in such terms of Elizabeth, as to leave -Georgiana without the power of finding her otherwise than lovely and -amiable. When Darcy returned to the saloon, Miss Bingley could not help -repeating to him some part of what she had been saying to his sister. - -“How very ill Eliza Bennet looks this morning, Mr. Darcy,” she cried: “I -never in my life saw anyone so much altered as she is since the winter. -She is grown so brown and coarse! Louisa and I were agreeing that we -should not have known her again.” - -However little Mr. Darcy might have liked such an address, he contented -himself with coolly replying, that he perceived no other alteration than -her being rather tanned,--no miraculous consequence of travelling in the -summer. - -“For my own part,” she rejoined, “I must confess that I never could see -any beauty in her. Her face is too thin; her complexion has no -brilliancy; and her features are not at all handsome. Her nose wants -character; there is nothing marked in its lines. Her teeth are -tolerable, but not out of the common way; and as for her eyes, which -have sometimes been called so fine, I never could perceive anything -extraordinary in them. They have a sharp, shrewish look, which I do not -like at all; and in her air altogether, there is a self-sufficiency -without fashion, which is intolerable.” - -Persuaded as Miss Bingley was that Darcy admired Elizabeth, this was not -the best method of recommending herself; but angry people are not always -wise; and in seeing him at last look somewhat nettled, she had all the -success she expected. He was resolutely silent, however; and, from a -determination of making him speak, she continued,-- - -“I remember, when we first knew her in Hertfordshire, how amazed we all -were to find that she was a reputed beauty; and I particularly recollect -your saying one night, after they had been dining at Netherfield, ‘_She_ -a beauty! I should as soon call her mother a wit.’ But afterwards she -seemed to improve on you, and I believe you thought her rather pretty at -one time.” - -“Yes,” replied Darcy, who could contain himself no longer, “but _that_ -was only when I first knew her; for it is many months since I have -considered her as one of the handsomest women of my acquaintance.” - -He then went away, and Miss Bingley was left to all the satisfaction of -having forced him to say what gave no one any pain but herself. - -Mrs. Gardiner and Elizabeth talked of all that had occurred during their -visit, as they returned, except what had particularly interested them -both. The looks and behaviour of everybody they had seen were discussed, -except of the person who had mostly engaged their attention. They talked -of his sister, his friends, his house, his fruit, of everything but -himself; yet Elizabeth was longing to know what Mrs. Gardiner thought of -him, and Mrs. Gardiner would have been highly gratified by her niece’s -beginning the subject. - - - - -[Illustration] - - - - -Chapter XLVI. - - -[Illustration] - -Elizabeth had been a good deal disappointed in not finding a letter from -Jane on their first arrival at Lambton; and this disappointment had been -renewed on each of the mornings that had now been spent there; but on -the third her repining was over, and her sister justified, by the -receipt of two letters from her at once, on one of which was marked that -it had been mis-sent elsewhere. Elizabeth was not surprised at it, as -Jane had written the direction remarkably ill. - -They had just been preparing to walk as the letters came in; and her -uncle and aunt, leaving her to enjoy them in quiet, set off by -themselves. The one mis-sent must be first attended to; it had been -written five days ago. The beginning contained an account of all their -little parties and engagements, with such news as the country afforded; -but the latter half, which was dated a day later, and written in evident -agitation, gave more important intelligence. It was to this effect:-- - -“Since writing the above, dearest Lizzy, something has occurred of a -most unexpected and serious nature; but I am afraid of alarming you--be -assured that we are all well. What I have to say relates to poor Lydia. -An express came at twelve last night, just as we were all gone to bed, -from Colonel Forster, to inform us that she was gone off to Scotland -with one of his officers; to own the truth, with Wickham! Imagine our -surprise. To Kitty, however, it does not seem so wholly unexpected. I am -very, very sorry. So imprudent a match on both sides! But I am willing -to hope the best, and that his character has been misunderstood. -Thoughtless and indiscreet I can easily believe him, but this step (and -let us rejoice over it) marks nothing bad at heart. His choice is -disinterested at least, for he must know my father can give her nothing. -Our poor mother is sadly grieved. My father bears it better. How -thankful am I, that we never let them know what has been said against -him; we must forget it ourselves. They were off Saturday night about -twelve, as is conjectured, but were not missed till yesterday morning at -eight. The express was sent off directly. My dear Lizzy, they must have -passed within ten miles of us. Colonel Forster gives us reason to expect -him here soon. Lydia left a few lines for his wife, informing her of -their intention. I must conclude, for I cannot be long from my poor -mother. I am afraid you will not be able to make it out, but I hardly -know what I have written.” - -Without allowing herself time for consideration, and scarcely knowing -what she felt, Elizabeth, on finishing this letter, instantly seized the -other, and opening it with the utmost impatience, read as follows: it -had been written a day later than the conclusion of the first. - -“By this time, my dearest sister, you have received my hurried letter; I -wish this may be more intelligible, but though not confined for time, my -head is so bewildered that I cannot answer for being coherent. Dearest -Lizzy, I hardly know what I would write, but I have bad news for you, -and it cannot be delayed. Imprudent as a marriage between Mr. Wickham -and our poor Lydia would be, we are now anxious to be assured it has -taken place, for there is but too much reason to fear they are not gone -to Scotland. Colonel Forster came yesterday, having left Brighton the -day before, not many hours after the express. Though Lydia’s short -letter to Mrs. F. gave them to understand that they were going to Gretna -Green, something was dropped by Denny expressing his belief that W. -never intended to go there, or to marry Lydia at all, which was repeated -to Colonel F., who, instantly taking the alarm, set off from B., -intending to trace their route. He did trace them easily to Clapham, but -no farther; for on entering that place, they removed into a -hackney-coach, and dismissed the chaise that brought them from Epsom. -All that is known after this is, that they were seen to continue the -London road. I know not what to think. After making every possible -inquiry on that side of London, Colonel F. came on into Hertfordshire, -anxiously renewing them at all the turnpikes, and at the inns in Barnet -and Hatfield, but without any success,--no such people had been seen to -pass through. With the kindest concern he came on to Longbourn, and -broke his apprehensions to us in a manner most creditable to his heart. -I am sincerely grieved for him and Mrs. F.; but no one can throw any -blame on them. Our distress, my dear Lizzy, is very great. My father and -mother believe the worst, but I cannot think so ill of him. Many -circumstances might make it more eligible for them to be married -privately in town than to pursue their first plan; and even if _he_ -could form such a design against a young woman of Lydia’s connections, -which is not likely, can I suppose her so lost to everything? -Impossible! I grieve to find, however, that Colonel F. is not disposed -to depend upon their marriage: he shook his head when I expressed my -hopes, and said he feared W. was not a man to be trusted. My poor mother -is really ill, and keeps her room. Could she exert herself, it would be -better, but this is not to be expected; and as to my father, I never in -my life saw him so affected. Poor Kitty has anger for having concealed -their attachment; but as it was a matter of confidence, one cannot -wonder. I am truly glad, dearest Lizzy, that you have been spared -something of these distressing scenes; but now, as the first shock is -over, shall I own that I long for your return? I am not so selfish, -however, as to press for it, if inconvenient. Adieu! I take up my pen -again to do, what I have just told you I would not; but circumstances -are such, that I cannot help earnestly begging you all to come here as -soon as possible. I know my dear uncle and aunt so well, that I am not -afraid of requesting it, though I have still something more to ask of -the former. My father is going to London with Colonel Forster instantly, -to try to discover her. What he means to do, I am sure I know not; but -his excessive distress will not allow him to pursue any measure in the -best and safest way, and Colonel Forster is obliged to be at Brighton -again to-morrow evening. In such an exigence my uncle’s advice and -assistance would be everything in the world; he will immediately -comprehend what I must feel, and I rely upon his goodness.” - -“Oh! where, where is my uncle?” cried Elizabeth, darting from her seat -as she finished the letter, in eagerness to follow him, without losing a -moment of the time so precious; but as she reached the door, it was -opened by a servant, and Mr. Darcy appeared. Her pale face and -impetuous manner made him start, and before he could recover himself -enough to speak, she, in whose mind every idea was superseded by Lydia’s -situation, hastily exclaimed, “I beg your pardon, but I must leave you. -I must find Mr. Gardiner this moment on business that cannot be delayed; -I have not an instant to lose.” - -“Good God! what is the matter?” cried he, with more feeling than -politeness; then recollecting himself, “I will not detain you a minute; -but let me, or let the servant, go after Mr. and Mrs. Gardiner. You are -not well enough; you cannot go yourself.” - -Elizabeth hesitated; but her knees trembled under her, and she felt how -little would be gained by her attempting to pursue them. Calling back -the servant, therefore, she commissioned him, though in so breathless an -accent as made her almost unintelligible, to fetch his master and -mistress home instantly. - -On his quitting the room, she sat down, unable to support herself, and -looking so miserably ill, that it was impossible for Darcy to leave her, -or to refrain from saying, in a tone of gentleness and commiseration, -“Let me call your maid. Is there nothing you could take to give you -present relief? A glass of wine; shall I get you one? You are very ill.” - -“No, I thank you,” she replied, endeavouring to recover herself. “There -is nothing the matter with me. I am quite well, I am only distressed by -some dreadful news which I have just received from Longbourn.” - -She burst into tears as she alluded to it, and for a few minutes could -not speak another word. Darcy, in wretched suspense, could only say -something indistinctly of his - -[Illustration: - - “I have not an instant to lose” -] - -concern, and observe her in compassionate silence. At length she spoke -again. “I have just had a letter from Jane, with such dreadful news. It -cannot be concealed from anyone. My youngest sister has left all her -friends--has eloped; has thrown herself into the power of--of Mr. -Wickham. They are gone off together from Brighton. _You_ know him too -well to doubt the rest. She has no money, no connections, nothing that -can tempt him to--she is lost for ever.” - -Darcy was fixed in astonishment. - -“When I consider,” she added, in a yet more agitated voice, “that _I_ -might have prevented it! _I_ who knew what he was. Had I but explained -some part of it only--some part of what I learnt, to my own family! Had -his character been known, this could not have happened. But it is all, -all too late now.” - -“I am grieved, indeed,” cried Darcy: “grieved--shocked. But is it -certain, absolutely certain?” - -“Oh, yes! They left Brighton together on Sunday night, and were traced -almost to London, but not beyond: they are certainly not gone to -Scotland.” - -“And what has been done, what has been attempted, to recover her?” - -“My father has gone to London, and Jane has written to beg my uncle’s -immediate assistance, and we shall be off, I hope, in half an hour. But -nothing can be done; I know very well that nothing can be done. How is -such a man to be worked on? How are they even to be discovered? I have -not the smallest hope. It is every way horrible!” - -Darcy shook his head in silent acquiescence. - -“When _my_ eyes were opened to his real character, oh! had I known what -I ought, what I dared to do! But I knew not--I was afraid of doing too -much. Wretched, wretched mistake!” - -Darcy made no answer. He seemed scarcely to hear her, and was walking up -and down the room in earnest meditation; his brow contracted, his air -gloomy. Elizabeth soon observed, and instantly understood it. Her power -was sinking; everything _must_ sink under such a proof of family -weakness, such an assurance of the deepest disgrace. She could neither -wonder nor condemn; but the belief of his self-conquest brought nothing -consolatory to her bosom, afforded no palliation of her distress. It -was, on the contrary, exactly calculated to make her understand her own -wishes; and never had she so honestly felt that she could have loved -him, as now, when all love must be vain. - -But self, though it would intrude, could not engross her. Lydia--the -humiliation, the misery she was bringing on them all--soon swallowed up -every private care; and covering her face with her handkerchief, -Elizabeth was soon lost to everything else; and, after a pause of -several minutes, was only recalled to a sense of her situation by the -voice of her companion, who, in a manner which, though it spoke -compassion, spoke likewise restraint, said,-- - -“I am afraid you have been long desiring my absence, nor have I anything -to plead in excuse of my stay, but real, though unavailing concern. -Would to Heaven that anything could be either said or done on my part, -that might offer consolation to such distress! But I will not torment -you with vain wishes, which may seem purposely to ask for your thanks. -This unfortunate affair will, I fear, prevent my sister’s having the -pleasure of seeing you at Pemberley to-day.” - -“Oh, yes! Be so kind as to apologize for us to Miss Darcy. Say that -urgent business calls us home immediately. Conceal the unhappy truth as -long as it is possible. I know it cannot be long.” - -He readily assured her of his secrecy, again expressed his sorrow for -her distress, wished it a happier conclusion than there was at present -reason to hope, and, leaving his compliments for her relations, with -only one serious parting look, went away. - -As he quitted the room, Elizabeth felt how improbable it was that they -should ever see each other again on such terms of cordiality as had -marked their several meetings in Derbyshire; and as she threw a -retrospective glance over the whole of their acquaintance, so full of -contradictions and varieties, sighed at the perverseness of those -feelings which would now have promoted its continuance, and would -formerly have rejoiced in its termination. - -If gratitude and esteem are good foundations of affection, Elizabeth’s -change of sentiment will be neither improbable nor faulty. But if -otherwise, if the regard springing from such sources is unreasonable or -unnatural, in comparison of what is so often described as arising on a -first interview with its object, and even before two words have been -exchanged, nothing can be said in her defence, except that she had given -somewhat of a trial to the latter method, in her partiality for Wickham, -and that its ill success might, perhaps, authorize her to seek the other -less interesting mode of attachment. Be that as it may, she saw him go -with regret; and in this early example of what Lydia’s infamy must -produce, found additional anguish as she reflected on that wretched -business. Never since reading Jane’s second letter had she entertained a -hope of Wickham’s meaning to marry her. No one but Jane, she thought, -could flatter herself with such an expectation. Surprise was the least -of all her feelings on this development. While the contents of the first -letter remained on her mind, she was all surprise, all astonishment, -that Wickham should marry a girl whom it was impossible he could marry -for money; and how Lydia could ever have attached him had appeared -incomprehensible. But now it was all too natural. For such an attachment -as this, she might have sufficient charms; and though she did not -suppose Lydia to be deliberately engaging in an elopement, without the -intention of marriage, she had no difficulty in believing that neither -her virtue nor her understanding would preserve her from falling an easy -prey. - -She had never perceived, while the regiment was in Hertfordshire, that -Lydia had any partiality for him; but she was convinced that Lydia had -wanted only encouragement to attach herself to anybody. Sometimes one -officer, sometimes another, had been her favourite, as their attentions -raised them in her opinion. Her affections had been continually -fluctuating, but never without an object. The mischief of neglect and -mistaken indulgence towards such a girl--oh! how acutely did she now -feel it! - -She was wild to be at home--to hear, to see, to be upon the spot to -share with Jane in the cares that must now fall wholly upon her, in a -family so deranged; a father absent, a mother incapable of exertion, and -requiring constant attendance; and though almost persuaded that nothing -could be done for Lydia, her uncle’s interference seemed of the utmost -importance, and till he entered the room the misery of her impatience -was severe. Mr. and Mrs. Gardiner had hurried back in alarm, supposing, -by the servant’s account, that their niece was taken suddenly ill; but -satisfying them instantly on that head, she eagerly communicated the -cause of their summons, reading the two letters aloud, and dwelling on -the postscript of the last with trembling energy. Though Lydia had never -been a favourite with them, Mr. and Mrs. Gardiner could not but be -deeply affected. Not Lydia only, but all were concerned in it; and after -the first exclamations of surprise and horror, Mr. Gardiner readily -promised every assistance in his power. Elizabeth, though expecting no -less, thanked him with tears of gratitude; and all three being actuated -by one spirit, everything relating to their journey was speedily -settled. They were to be off as soon as possible. “But what is to be -done about Pemberley?” cried Mrs. Gardiner. “John told us Mr. Darcy was -here when you sent for us;--was it so?” - -“Yes; and I told him we should not be able to keep our engagement. -_That_ is all settled.” - -“What is all settled?” repeated the other, as she ran into her room to -prepare. “And are they upon such terms as for her to disclose the real -truth? Oh, that I knew how it was!” - -But wishes were vain; or, at best, could serve only to amuse her in the -hurry and confusion of the following hour. Had Elizabeth been at leisure -to be idle, she would have remained certain that all employment was -impossible to one so wretched as herself; but she had her share of -business as well as her aunt, and amongst the rest there were notes to -be written to all their friends at Lambton, with false excuses for their -sudden departure. An hour, however, saw the whole completed; and Mr. -Gardiner, meanwhile, having settled his account at the inn, nothing -remained to be done but to go; and Elizabeth, after all the misery of -the morning, found herself, in a shorter space of time than she could -have supposed, seated in the carriage, and on the road to Longbourn. - - - - -[Illustration: - - “The first pleasing earnest of their welcome” -] - - - - -CHAPTER XLVII. - - -[Illustration] - -“I have been thinking it over again, Elizabeth,” said her uncle, as they -drove from the town; “and really, upon serious consideration, I am much -more inclined than I was to judge as your eldest sister does of the -matter. It appears to me so very unlikely that any young man should form -such a design against a girl who is by no means unprotected or -friendless, and who was actually staying in his Colonel’s family, that I -am strongly inclined to hope the best. Could he expect that her friends -would not step forward? Could he expect to be noticed again by the -regiment, after such an affront to Colonel Forster? His temptation is -not adequate to the risk.” - -“Do you really think so?” cried Elizabeth, brightening up for a moment. - -“Upon my word,” said Mrs. Gardiner, “I begin to be of your uncle’s -opinion. It is really too great a violation of decency, honour, and -interest, for him to be guilty of it. I cannot think so very ill of -Wickham. Can you, yourself, Lizzie, so wholly give him up, as to believe -him capable of it?” - -“Not perhaps of neglecting his own interest. But of every other neglect -I can believe him capable. If, indeed, it should be so! But I dare not -hope it. Why should they not go on to Scotland, if that had been the -case?” - -“In the first place,” replied Mr. Gardiner, “there is no absolute proof -that they are not gone to Scotland.” - -“Oh, but their removing from the chaise into a hackney coach is such a -presumption! And, besides, no traces of them were to be found on the -Barnet road.” - -“Well, then,--supposing them to be in London--they may be there, though -for the purpose of concealment, for no more exceptionable purpose. It is -not likely that money should be very abundant on either side; and it -might strike them that they could be more economically, though less -expeditiously, married in London, than in Scotland.” - -“But why all this secrecy? Why any fear of detection? Why must their -marriage be private? Oh, no, no--this is not likely. His most particular -friend, you see by Jane’s account, was persuaded of his never intending -to marry her. Wickham will never marry a woman without some money. He -cannot afford it. And what claims has Lydia, what attractions has she -beyond youth, health, and good humour, that could make him for her sake -forego every chance of benefiting himself by marrying well? As to what -restraint the apprehensions of disgrace in the corps might throw on a -dishonourable elopement with her, I am not able to judge; for I know -nothing of the effects that such a step might produce. But as to your -other objection, I am afraid it will hardly hold good. Lydia has no -brothers to step forward; and he might imagine, from my father’s -behaviour, from his indolence and the little attention he has ever -seemed to give to what was going forward in his family, that _he_ would -do as little and think as little about it, as any father could do, in -such a matter.” - -“But can you think that Lydia is so lost to everything but love of him, -as to consent to live with him on any other terms than marriage?” - -“It does seem, and it is most shocking, indeed,” replied Elizabeth, with -tears in her eyes, “that a sister’s sense of decency and virtue in such -a point should admit of doubt. But, really, I know not what to say. -Perhaps I am not doing her justice. But she is very young: she has never -been taught to think on serious subjects; and for the last half year, -nay, for a twelvemonth, she has been given up to nothing but amusement -and vanity. She has been allowed to dispose of her time in the most idle -and frivolous manner, and to adopt any opinions that came in her way. -Since the ----shire were first quartered in Meryton, nothing but love, -flirtation, and officers, have been in her head. She has been doing -everything in her power, by thinking and talking on the subject, to give -greater--what shall I call it?--susceptibility to her feelings; which -are naturally lively enough. And we all know that Wickham has every -charm of person and address that can captivate a woman.” - -“But you see that Jane,” said her aunt, “does not think so ill of -Wickham, as to believe him capable of the attempt.” - -“Of whom does Jane ever think ill? And who is there, whatever might be -their former conduct, that she would believe capable of such an attempt, -till it were proved against them? But Jane knows, as well as I do, what -Wickham really is. We both know that he has been profligate in every -sense of the word; that he has neither integrity nor honour; that he is -as false and deceitful as he is insinuating.” - -“And do you really know all this?” cried Mrs. Gardiner, whose curiosity -as to the mode of her intelligence was all alive. - -“I do, indeed,” replied Elizabeth, colouring. “I told you the other day -of his infamous behaviour to Mr. Darcy; and you, yourself, when last at -Longbourn, heard in what manner he spoke of the man who had behaved with -such forbearance and liberality towards him. And there are other -circumstances which I am not at liberty--which it is not worth while to -relate; but his lies about the whole Pemberley family are endless. From -what he said of Miss Darcy, I was thoroughly prepared to see a proud, -reserved, disagreeable girl. Yet he knew to the contrary himself. He -must know that she was as amiable and unpretending as we have found -her.” - -“But does Lydia know nothing of this? can she be ignorant of what you -and Jane seem so well to understand?” - -“Oh, yes!--that, that is the worst of all. Till I was in Kent, and saw -so much both of Mr. Darcy and his relation Colonel Fitzwilliam, I was -ignorant of the truth myself. And when I returned home the ----shire -was to leave Meryton in a week or fortnight’s time. As that was the -case, neither Jane, to whom I related the whole, nor I, thought it -necessary to make our knowledge public; for of what use could it -apparently be to anyone, that the good opinion, which all the -neighbourhood had of him, should then be overthrown? And even when it -was settled that Lydia should go with Mrs. Forster, the necessity of -opening her eyes to his character never occurred to me. That _she_ could -be in any danger from the deception never entered my head. That such a -consequence as _this_ should ensue, you may easily believe was far -enough from my thoughts.” - -“When they all removed to Brighton, therefore, you had no reason, I -suppose, to believe them fond of each other?” - -“Not the slightest. I can remember no symptom of affection on either -side; and had anything of the kind been perceptible, you must be aware -that ours is not a family on which it could be thrown away. When first -he entered the corps, she was ready enough to admire him; but so we all -were. Every girl in or near Meryton was out of her senses about him for -the first two months: but he never distinguished _her_ by any particular -attention; and, consequently, after a moderate period of extravagant and -wild admiration, her fancy for him gave way, and others of the regiment, -who treated her with more distinction, again became her favourites.” - -It may be easily believed, that however little of novelty could be added -to their fears, hopes, and conjectures, on this interesting subject by -its repeated discussion, no other could detain them from it long, during -the whole of the journey. From Elizabeth’s thoughts it was never absent. -Fixed there by the keenest of all anguish, self-reproach, she could -find no interval of ease or forgetfulness. - -They travelled as expeditiously as possible; and sleeping one night on -the road, reached Longbourn by dinnertime the next day. It was a comfort -to Elizabeth to consider that Jane could not have been wearied by long -expectations. - -The little Gardiners, attracted by the sight of a chaise, were standing -on the steps of the house, as they entered the paddock; and when the -carriage drove up to the door, the joyful surprise that lighted up their -faces and displayed itself over their whole bodies, in a variety of -capers and frisks, was the first pleasing earnest of their welcome. - -Elizabeth jumped out; and after giving each of them a hasty kiss, -hurried into the vestibule, where Jane, who came running downstairs from -her mother’s apartment, immediately met her. - -Elizabeth, as she affectionately embraced her, whilst tears filled the -eyes of both, lost not a moment in asking whether anything had been -heard of the fugitives. - -“Not yet,” replied Jane. “But now that my dear uncle is come, I hope -everything will be well.” - -“Is my father in town?” - -“Yes, he went on Tuesday, as I wrote you word.” - -“And have you heard from him often?” - -“We have heard only once. He wrote me a few lines on Wednesday, to say -that he had arrived in safety, and to give me his directions, which I -particularly begged him to do. He merely added, that he should not write -again, till he had something of importance to mention.” - -“And my mother--how is she? How are you all?” - -“My mother is tolerably well, I trust; though her spirits are greatly -shaken. She is upstairs, and will have great satisfaction in seeing you -all. She does not yet leave her dressing-room. Mary and Kitty, thank -Heaven! are quite well.” - -“But you--how are you?” cried Elizabeth. “You look pale. How much you -must have gone through!” - -Her sister, however, assured her of her being perfectly well; and their -conversation, which had been passing while Mr. and Mrs. Gardiner were -engaged with their children, was now put an end to by the approach of -the whole party. Jane ran to her uncle and aunt, and welcomed and -thanked them both, with alternate smiles and tears. - -When they were all in the drawing-room, the questions which Elizabeth -had already asked were of course repeated by the others, and they soon -found that Jane had no intelligence to give. The sanguine hope of good, -however, which the benevolence of her heart suggested, had not yet -deserted her; she still expected that it would all end well, and that -every morning would bring some letter, either from Lydia or her father, -to explain their proceedings, and, perhaps, announce the marriage. - -Mrs. Bennet, to whose apartment they all repaired, after a few minutes’ -conversation together, received them exactly as might be expected; with -tears and lamentations of regret, invectives against the villainous -conduct of Wickham, and complaints of her own sufferings and ill-usage; -blaming everybody but the person to whose ill-judging indulgence the -errors of her daughter must be principally owing. - -“If I had been able,” said she, “to carry my point in going to Brighton -with all my family, _this_ would not have happened: but poor dear Lydia -had nobody to take care of her. Why did the Forsters ever let her go out -of their sight? I am sure there was some great neglect or other on their -side, for she is not the kind of girl to do such a thing, if she had -been well looked after. I always thought they were very unfit to have -the charge of her; but I was over-ruled, as I always am. Poor, dear -child! And now here’s Mr. Bennet gone away, and I know he will fight -Wickham, wherever he meets him, and then he will be killed, and what is -to become of us all? The Collinses will turn us out, before he is cold -in his grave; and if you are not kind to us, brother, I do not know what -we shall do.” - -They all exclaimed against such terrific ideas; and Mr. Gardiner, after -general assurances of his affection for her and all her family, told her -that he meant to be in London the very next day, and would assist Mr. -Bennet in every endeavour for recovering Lydia. - -“Do not give way to useless alarm,” added he: “though it is right to be -prepared for the worst, there is no occasion to look on it as certain. -It is not quite a week since they left Brighton. In a few days more, we -may gain some news of them; and till we know that they are not married, -and have no design of marrying, do not let us give the matter over as -lost. As soon as I get to town, I shall go to my brother, and make him -come home with me to Gracechurch Street, and then we may consult -together as to what is to be done.” - -“Oh, my dear brother,” replied Mrs. Bennet, “that is exactly what I -could most wish for. And now do, when you get to town, find them out, -wherever they may be; and if they are not married already, _make_ them -marry. And as for wedding clothes, do not let them wait for that, but -tell Lydia she shall have as much money as she chooses to buy them, -after they are married. And, above all things, keep Mr. Bennet from -fighting. Tell him what a dreadful state I am in--that I am frightened -out of my wits; and have such tremblings, such flutterings all over me, -such spasms in my side, and pains in my head, and such beatings at my -heart, that I can get no rest by night nor by day. And tell my dear -Lydia not to give any directions about her clothes till she has seen me, -for she does not know which are the best warehouses. Oh, brother, how -kind you are! I know you will contrive it all.” - -But Mr. Gardiner, though he assured her again of his earnest endeavours -in the cause, could not avoid recommending moderation to her, as well in -her hopes as her fears; and after talking with her in this manner till -dinner was on table, they left her to vent all her feelings on the -housekeeper, who attended in the absence of her daughters. - -Though her brother and sister were persuaded that there was no real -occasion for such a seclusion from the family, they did not attempt to -oppose it; for they knew that she had not prudence enough to hold her -tongue before the servants, while they waited at table, and judged it -better that _one_ only of the household, and the one whom they could -most trust, should comprehend all her fears and solicitude on the -subject. - -In the dining-room they were soon joined by Mary and Kitty, who had been -too busily engaged in their separate apartments to make their appearance -before. One came from her books, and the other from her toilette. The -faces of both, however, were tolerably calm; and no change was visible -in either, except that the loss of her favourite sister, or the anger -which she had herself incurred in the business, had given something more -of fretfulness than usual to the accents of Kitty. As for Mary, she was -mistress enough of herself to whisper to Elizabeth, with a countenance -of grave reflection, soon after they were seated at table,-- - -“This is a most unfortunate affair, and will probably be much talked of. -But we must stem the tide of malice, and pour into the wounded bosoms of -each other the balm of sisterly consolation.” - -Then perceiving in Elizabeth no inclination of replying, she added, -“Unhappy as the event must be for Lydia, we may draw from it this useful -lesson:--that loss of virtue in a female is irretrievable, that one -false step involves her in endless ruin, that her reputation is no less -brittle than it is beautiful, and that she cannot be too much guarded in -her behaviour towards the undeserving of the other sex.” - -Elizabeth lifted up her eyes in amazement, but was too much oppressed to -make any reply. Mary, however, continued to console herself with such -kind of moral extractions from the evil before them. - -In the afternoon, the two elder Miss Bennets were able to be for half an -hour by themselves; and Elizabeth instantly availed herself of the -opportunity of making any inquiries which Jane was equally eager to -satisfy. After joining in general lamentations over the dreadful sequel -of this event, which Elizabeth considered as all but certain, and Miss -Bennet could not assert to be wholly impossible, the former continued -the subject by saying, “But tell me all and everything about it which I -have not already heard. Give me further particulars. What did Colonel -Forster say? Had they no apprehension of anything before the elopement -took place? They must have seen them together for ever.” - -“Colonel Forster did own that he had often suspected some partiality, -especially on Lydia’s side, but nothing to give him any alarm. I am so -grieved for him. His behaviour was attentive and kind to the utmost. He -_was_ coming to us, in order to assure us of his concern, before he had -any idea of their not being gone to Scotland: when that apprehension -first got abroad, it hastened his journey.” - -“And was Denny convinced that Wickham would not marry? Did he know of -their intending to go off? Had Colonel Forster seen Denny himself?” - -“Yes; but when questioned by _him_, Denny denied knowing anything of -their plan, and would not give his real opinion about it. He did not -repeat his persuasion of their not marrying, and from _that_ I am -inclined to hope he might have been misunderstood before.” - -“And till Colonel Forster came himself, not one of you entertained a -doubt, I suppose, of their being really married?” - -“How was it possible that such an idea should enter our brains? I felt a -little uneasy--a little fearful of my sister’s happiness with him in -marriage, because I knew that his conduct had not been always quite -right. My father and mother knew nothing of that; they only felt how -imprudent a match it must be. Kitty then owned, with a very natural -triumph on knowing more than the rest of us, that in Lydia’s last letter -she had prepared her for such a step. She had known, it seems, of their -being in love with each other many weeks.” - -“But not before they went to Brighton?” - -“No, I believe not.” - -“And did Colonel Forster appear to think ill of Wickham himself? Does he -know his real character?” - -“I must confess that he did not speak so well of Wickham as he formerly -did. He believed him to be imprudent and extravagant; and since this sad -affair has taken place, it is said that he left Meryton greatly in debt: -but I hope this may be false.” - -“Oh, Jane, had we been less secret, had we told what we knew of him, -this could not have happened!” - -“Perhaps it would have been better,” replied her sister. - -“But to expose the former faults of any person, without knowing what -their present feelings were, seemed unjustifiable.” - -“We acted with the best intentions.” - -“Could Colonel Forster repeat the particulars of Lydia’s note to his -wife?” - -“He brought it with him for us to see.” - -Jane then took it from her pocket-book, and gave it to Elizabeth. These -were the contents:-- - - /* NIND “My dear Harriet, */ - - “You will laugh when you know where I am gone, and I cannot help - laughing myself at your surprise to-morrow morning, as soon as I am - missed. I am going to Gretna Green, and if you cannot guess with - who, I shall think you a simpleton, for there is but one man in the - world I love, and he is an angel. I should never be happy without - him, so think it no harm to be off. You need not send them word at - Longbourn of my going, if you do not like it, for it will make the - surprise the greater when I write to them, and sign my name Lydia - Wickham. What a good joke it will be! I can hardly write for - laughing. Pray make my excuses to Pratt for not keeping my - engagement, and dancing with him to-night. Tell him I hope he will - excuse me when he knows all, and tell him I will dance with him at - the next ball we meet with great pleasure. I shall send for my - clothes when I get to Longbourn; but I wish you would tell Sally to - mend a great slit in my worked muslin gown before they are packed - up. Good-bye. Give my love to Colonel Forster. I hope you will - drink to our good journey. - -“Your affectionate friend, - -“LYDIA BENNET.” - - -“Oh, thoughtless, thoughtless Lydia!” cried Elizabeth when she had -finished it. “What a letter is this, to be written at such a moment! But -at least it shows that _she_ was serious in the object of her journey. -Whatever he might afterwards persuade her to, it was not on her side a -_scheme_ of infamy. My poor father! how he must have felt it!” - -“I never saw anyone so shocked. He could not speak a word for full ten -minutes. My mother was taken ill immediately, and the whole house in -such confusion!” - -“Oh, Jane,” cried Elizabeth, “was there a servant belonging to it who -did not know the whole story before the end of the day?” - -“I do not know: I hope there was. But to be guarded at such a time is -very difficult. My mother was in hysterics; and though I endeavoured to -give her every assistance in my power, I am afraid I did not do so much -as I might have done. But the horror of what might possibly happen -almost took from me my faculties.” - -“Your attendance upon her has been too much for you. You do not look -well. Oh that I had been with you! you have had every care and anxiety -upon yourself alone.” - -“Mary and Kitty have been very kind, and would have shared in every -fatigue, I am sure, but I did not think it right for either of them. -Kitty is slight and delicate, and Mary studies so much that her hours of -repose should not be broken in on. My aunt Philips came to Longbourn on -Tuesday, after my father went away; and was so good as to stay till -Thursday with me. She was of great use and comfort to us all, and Lady -Lucas has been very kind: she walked here on Wednesday morning to -condole with us, and offered her services, or any of her daughters, if -they could be of use to us.” - -“She had better have stayed at home,” cried Elizabeth: “perhaps she -_meant_ well, but, under such a misfortune as this, one cannot see too -little of one’s neighbours. Assistance is impossible; condolence, -insufferable. Let them triumph over us at a distance, and be satisfied.” - -She then proceeded to inquire into the measures which her father had -intended to pursue, while in town, for the recovery of his daughter. - -“He meant, I believe,” replied Jane, “to go to Epsom, the place where -they last changed horses, see the postilions, and try if anything could -be made out from them. His principal object must be to discover the -number of the hackney coach which took them from Clapham. It had come -with a fare from London; and as he thought the circumstance of a -gentleman and lady’s removing from one carriage into another might be -remarked, he meant to make inquiries at Clapham. If he could anyhow -discover at what house the coachman had before set down his fare, he -determined to make inquiries there, and hoped it might not be impossible -to find out the stand and number of the coach. I do not know of any -other designs that he had formed; but he was in such a hurry to be gone, -and his spirits so greatly discomposed, that I had difficulty in finding -out even so much as this.” - - - - -[Illustration: - - The Post -] - - - - -CHAPTER XLVIII. - - -[Illustration] - -The whole party were in hopes of a letter from Mr. Bennet the next -morning, but the post came in without bringing a single line from him. -His family knew him to be, on all common occasions, a most negligent and -dilatory correspondent; but at such a time they had hoped for exertion. -They were forced to conclude, that he had no pleasing intelligence to -send; but even of _that_ they would have been glad to be certain. Mr. -Gardiner had waited only for the letters before he set off. - -When he was gone, they were certain at least of receiving constant -information of what was going on; and their uncle promised, at parting, -to prevail on Mr. Bennet to return to Longbourn as soon as he could, to -the great consolation of his sister, who considered it as the only -security for her husband’s not being killed in a duel. - -Mrs. Gardiner and the children were to remain in Hertfordshire a few -days longer, as the former thought her presence might be serviceable to -her nieces. She shared in their attendance on Mrs. Bennet, and was a -great comfort to them in their hours of freedom. Their other aunt also -visited them frequently, and always, as she said, with the design of -cheering and heartening them up--though, as she never came without -reporting some fresh instance of Wickham’s extravagance or irregularity, -she seldom went away without leaving them more dispirited than she found -them. - -All Meryton seemed striving to blacken the man who, but three months -before, had been almost an angel of light. He was declared to be in debt -to every tradesman in the place, and his intrigues, all honoured with -the title of seduction, had been extended into every tradesman’s family. -Everybody declared that he was the wickedest young man in the world; and -everybody began to find out that they had always distrusted the -appearance of his goodness. Elizabeth, though she did not credit above -half of what was said, believed enough to make her former assurance of -her sister’s ruin still more certain; and even Jane, who believed still -less of it, became almost hopeless, more especially as the time was now -come, when, if they had gone to Scotland, which she had never before -entirely despaired of, they must in all probability have gained some -news of them. - -Mr. Gardiner left Longbourn on Sunday; on Tuesday, his wife received a -letter from him: it told them, that on his arrival he had immediately -found out his brother, and persuaded him to come to Gracechurch Street. -That Mr. Bennet had been to Epsom and Clapham, before his arrival, but -without gaining any satisfactory information; and that he was now -determined to inquire at all the principal hotels in town, as Mr. Bennet -thought it possible they might have gone to one of them, on their first -coming to London, before they procured lodgings. Mr. Gardiner himself -did not expect any success from this measure; but as his brother was -eager in it, he meant to assist him in pursuing it. He added, that Mr. -Bennet seemed wholly disinclined at present to leave London, and -promised to write again very soon. There was also a postscript to this -effect:-- - -“I have written to Colonel Forster to desire him to find out, if -possible, from some of the young man’s intimates in the regiment, -whether Wickham has any relations or connections who would be likely to -know in what part of the town he has now concealed himself. If there -were anyone that one could apply to, with a probability of gaining such -a clue as that, it might be of essential consequence. At present we have -nothing to guide us. Colonel Forster will, I dare say, do everything in -his power to satisfy us on this head. But, on second thoughts, perhaps -Lizzy could tell us what relations he has now living better than any -other person.” - -Elizabeth was at no loss to understand from whence this deference for -her authority proceeded; but it was not in her power to give any -information of so satisfactory a nature as the compliment deserved. - -She had never heard of his having had any relations, except a father -and mother, both of whom had been dead many years. It was possible, -however, that some of his companions in the ----shire might be able to -give more information; and though she was not very sanguine in expecting -it, the application was a something to look forward to. - -Every day at Longbourn was now a day of anxiety; but the most anxious -part of each was when the post was expected. The arrival of letters was -the first grand object of every morning’s impatience. Through letters, -whatever of good or bad was to be told would be communicated; and every -succeeding day was expected to bring some news of importance. - -But before they heard again from Mr. Gardiner, a letter arrived for -their father, from a different quarter, from Mr. Collins; which, as Jane -had received directions to open all that came for him in his absence, -she accordingly read; and Elizabeth, who knew what curiosities his -letters always were, looked over her, and read it likewise. It was as -follows:-- - - /* “My dear Sir, */ - - “I feel myself called upon, by our relationship, and my situation - in life, to condole with you on the grievous affliction you are now - suffering under, of which we were yesterday informed by a letter - from Hertfordshire. Be assured, my dear sir, that Mrs. Collins and - myself sincerely sympathize with you, and all your respectable - family, in your present distress, which must be of the bitterest - kind, because proceeding from a cause which no time can remove. No - arguments shall be wanting on my part, that can alleviate so severe - a misfortune; or that may comfort you, under a circumstance that - must be, of all others, most afflicting to a parent’s mind. The - death of your daughter would have been a blessing in comparison of - this. And it is the more to be lamented, because there is reason to - suppose, as my dear Charlotte informs me, that this licentiousness - of behaviour in your - - [Illustration: - -“To whom I have related the affair” - - [_Copyright 1894 by George Allen._]] - - daughter has proceeded from a faulty degree of indulgence; though, - at the same time, for the consolation of yourself and Mrs. Bennet, - I am inclined to think that her own disposition must be naturally - bad, or she could not be guilty of such an enormity, at so early an - age. Howsoever that may be, you are grievously to be pitied; in - which opinion I am not only joined by Mrs. Collins, but likewise by - Lady Catherine and her daughter, to whom I have related the affair. - They agree with me in apprehending that this false step in one - daughter will be injurious to the fortunes of all the others: for - who, as Lady Catherine herself condescendingly says, will connect - themselves with such a family? And this consideration leads me, - moreover, to reflect, with augmented satisfaction, on a certain - event of last November; for had it been otherwise, I must have been - involved in all your sorrow and disgrace. Let me advise you, then, - my dear sir, to console yourself as much as possible, to throw off - your unworthy child from your affection for ever, and leave her to - reap the fruits of her own heinous offence. - -“I am, dear sir,” etc., etc. - -Mr. Gardiner did not write again, till he had received an answer from -Colonel Forster; and then he had nothing of a pleasant nature to send. -It was not known that Wickham had a single relation with whom he kept up -any connection, and it was certain that he had no near one living. His -former acquaintance had been numerous; but since he had been in the -militia, it did not appear that he was on terms of particular friendship -with any of them. There was no one, therefore, who could be pointed out -as likely to give any news of him. And in the wretched state of his own -finances, there was a very powerful motive for secrecy, in addition to -his fear of discovery by Lydia’s relations; for it had just transpired -that he had left gaming debts behind him to a very considerable amount. -Colonel Forster believed that more than a thousand pounds would be -necessary to clear his expenses at Brighton. He owed a good deal in the -town, but his debts of honour were still more formidable. Mr. Gardiner -did not attempt to conceal these particulars from the Longbourn family; -Jane heard them with horror. “A gamester!” she cried. “This is wholly -unexpected; I had not an idea of it.” - -Mr. Gardiner added, in his letter, that they might expect to see their -father at home on the following day, which was Saturday. Rendered -spiritless by the ill success of all their endeavours, he had yielded to -his brother-in-law’s entreaty that he would return to his family and -leave it to him to do whatever occasion might suggest to be advisable -for continuing their pursuit. When Mrs. Bennet was told of this, she did -not express so much satisfaction as her children expected, considering -what her anxiety for his life had been before. - -“What! is he coming home, and without poor Lydia?” she cried. “Sure he -will not leave London before he has found them. Who is to fight Wickham, -and make him marry her, if he comes away?” - -As Mrs. Gardiner began to wish to be at home, it was settled that she -and her children should go to London at the same time that Mr. Bennet -came from it. The coach, therefore, took them the first stage of their -journey, and brought its master back to Longbourn. - -Mrs. Gardiner went away in all the perplexity about Elizabeth and her -Derbyshire friend, that had attended her from that part of the world. -His name had never been voluntarily mentioned before them by her niece; -and the kind of half-expectation which Mrs. Gardiner had formed, of -their being followed by a letter from him, had ended in nothing. -Elizabeth had received none since her return, that could come from -Pemberley. - -The present unhappy state of the family rendered any other excuse for -the lowness of her spirits unnecessary; nothing, therefore, could be -fairly conjectured from _that_,--though Elizabeth, who was by this time -tolerably well acquainted with her own feelings, was perfectly aware -that, had she known nothing of Darcy, she could have borne the dread of -Lydia’s infamy somewhat better. It would have spared her, she thought, -one sleepless night out of two. - -When Mr. Bennet arrived, he had all the appearance of his usual -philosophic composure. He said as little as he had ever been in the -habit of saying; made no mention of the business that had taken him -away; and it was some time before his daughters had courage to speak of -it. - -It was not till the afternoon, when he joined them at tea, that -Elizabeth ventured to introduce the subject; and then, on her briefly -expressing her sorrow for what he must have endured, he replied, “Say -nothing of that. Who should suffer but myself? It has been my own doing, -and I ought to feel it.” - -“You must not be too severe upon yourself,” replied Elizabeth. - -“You may well warn me against such an evil. Human nature is so prone to -fall into it! No, Lizzy, let me once in my life feel how much I have -been to blame. I am not afraid of being overpowered by the impression. -It will pass away soon enough.” - -“Do you suppose them to be in London?” - -“Yes; where else can they be so well concealed?” - -“And Lydia used to want to go to London,” added Kitty. - -“She is happy, then,” said her father, drily; “and her residence there -will probably be of some duration.” - -Then, after a short silence, he continued, “Lizzy, I bear you no -ill-will for being justified in your advice to me last May, which, -considering the event, shows some greatness of mind.” - -They were interrupted by Miss Bennet, who came to fetch her mother’s -tea. - -“This is a parade,” cried he, “which does one good; it gives such an -elegance to misfortune! Another day I will do the same; I will sit in my -library, in my nightcap and powdering gown, and give as much trouble as -I can,--or perhaps I may defer it till Kitty runs away.” - -“I am not going to run away, papa,” said Kitty, fretfully. “If _I_ -should ever go to Brighton, I would behave better than Lydia.” - -“_You_ go to Brighton! I would not trust you so near it as Eastbourne, -for fifty pounds! No, Kitty, I have at least learnt to be cautious, and -you will feel the effects of it. No officer is ever to enter my house -again, nor even to pass through the village. Balls will be absolutely -prohibited, unless you stand up with one of your sisters. And you are -never to stir out of doors, till you can prove that you have spent ten -minutes of every day in a rational manner.” - -Kitty, who took all these threats in a serious light, began to cry. - -“Well, well,” said he, “do not make yourself unhappy. If you are a good -girl for the next ten years, I will take you to a review at the end of -them.” - - - - -[Illustration] - - - - -CHAPTER XLIX. - - -[Illustration] - -Two days after Mr. Bennet’s return, as Jane and Elizabeth were walking -together in the shrubbery behind the house, they saw the housekeeper -coming towards them, and concluding that she came to call them to their -mother, went forward to meet her; but instead of the expected summons, -when they approached her, she said to Miss Bennet, “I beg your pardon, -madam, for interrupting you, but I was in hopes you might have got some -good news from town, so I took the liberty of coming to ask.” - -“What do you mean, Hill? We have heard nothing from town.” - -“Dear madam,” cried Mrs. Hill, in great astonishment, “don’t you know -there is an express come for master from Mr. Gardiner? He has been here -this half hour, and master has had a letter.” - -Away ran the girls, too eager to get in to have time for speech. They -ran through the vestibule into the breakfast-room; from thence to the -library;--their father was in neither; and they were on the point of -seeking him upstairs with their mother, when they were met by the -butler, who said,-- - -“If you are looking for my master, ma’am, he is walking towards the -little copse.” - -Upon this information, they instantly passed through the hall once more, -and ran across the lawn after their father, who was deliberately -pursuing his way towards a small wood on one side of the paddock. - -Jane, who was not so light, nor so much in the habit of running as -Elizabeth, soon lagged behind, while her sister, panting for breath, -came up with him, and eagerly cried out,-- - -“Oh, papa, what news? what news? have you heard from my uncle?” - -“Yes, I have had a letter from him by express.” - -“Well, and what news does it bring--good or bad?” - -“What is there of good to be expected?” said he, taking the letter from -his pocket; “but perhaps you would like to read it.” - -Elizabeth impatiently caught it from his hand. Jane now came up. - -“Read it aloud,” said their father, “for I hardly know myself what it is -about.” - - /* RIGHT “Gracechurch Street, _Monday, August 2_. */ - -“My dear Brother, - - “At last I am able to send you some tidings of my niece, and such - as, upon the whole, I hope will give you satisfaction. Soon after - you left me on Saturday, I was fortunate enough to find out in what - part of London they were. The particulars I reserve till we meet. - It is enough to know they are discovered: I have seen them - both----” - - [Illustration: - -“But perhaps you would like to read it” - - [_Copyright 1894 by George Allen._]] - - “Then it is as I always hoped,” cried Jane: “they are married!” - - Elizabeth read on: “I have seen them both. They are not married, - nor can I find there was any intention of being so; but if you are - willing to perform the engagements which I have ventured to make on - your side, I hope it will not be long before they are. All that is - required of you is, to assure to your daughter, by settlement, her - equal share of the five thousand pounds, secured among your - children after the decease of yourself and my sister; and, - moreover, to enter into an engagement of allowing her, during your - life, one hundred pounds per annum. These are conditions which, - considering everything, I had no hesitation in complying with, as - far as I thought myself privileged, for you. I shall send this by - express, that no time may be lost in bringing me your answer. You - will easily comprehend, from these particulars, that Mr. Wickham’s - circumstances are not so hopeless as they are generally believed to - be. The world has been deceived in that respect; and I am happy to - say, there will be some little money, even when all his debts are - discharged, to settle on my niece, in addition to her own fortune. - If, as I conclude will be the case, you send me full powers to act - in your name throughout the whole of this business, I will - immediately give directions to Haggerston for preparing a proper - settlement. There will not be the smallest occasion for your coming - to town again; therefore stay quietly at Longbourn, and depend on - my diligence and care. Send back your answer as soon as you can, - and be careful to write explicitly. We have judged it best that my - niece should be married from this house, of which I hope you will - approve. She comes to us to-day. I shall write again as soon as - anything more is determined on. Yours, etc. - -“EDW. GARDINER.” - -“Is it possible?” cried Elizabeth, when she had finished. “Can it be -possible that he will marry her?” - -“Wickham is not so undeserving, then, as we have thought him,” said her -sister. “My dear father, I congratulate you.” - -“And have you answered the letter?” said Elizabeth. - -“No; but it must be done soon.” - -Most earnestly did she then entreat him to lose no more time before he -wrote. - -“Oh! my dear father,” she cried, “come back and write immediately. -Consider how important every moment is in such a case.” - -“Let me write for you,” said Jane, “if you dislike the trouble -yourself.” - -“I dislike it very much,” he replied; “but it must be done.” - -And so saying, he turned back with them, and walked towards the house. - -“And--may I ask?” said Elizabeth; “but the terms, I suppose, must be -complied with.” - -“Complied with! I am only ashamed of his asking so little.” - -“And they _must_ marry! Yet he is _such_ a man.” - -“Yes, yes, they must marry. There is nothing else to be done. But there -are two things that I want very much to know:--one is, how much money -your uncle has laid down to bring it about; and the other, how I am ever -to pay him.” - -“Money! my uncle!” cried Jane, “what do you mean, sir?” - -“I mean that no man in his proper senses would marry Lydia on so slight -a temptation as one hundred a year during my life, and fifty after I am -gone.” - -“That is very true,” said Elizabeth; “though it had not occurred to me -before. His debts to be discharged, and something still to remain! Oh, -it must be my uncle’s doings! Generous, good man, I am afraid he has -distressed himself. A small sum could not do all this.” - -“No,” said her father. “Wickham’s a fool if he takes her with a farthing -less than ten thousand pounds: I should be sorry to think so ill of him, -in the very beginning of our relationship.” - -“Ten thousand pounds! Heaven forbid! How is half such a sum to be -repaid?” - -Mr. Bennet made no answer; and each of them, deep in thought, continued -silent till they reached the house. Their father then went to the -library to write, and the girls walked into the breakfast-room. - -“And they are really to be married!” cried Elizabeth, as soon as they -were by themselves. “How strange this is! and for _this_ we are to be -thankful. That they should marry, small as is their chance of happiness, -and wretched as is his character, we are forced to rejoice! Oh, Lydia!” - -“I comfort myself with thinking,” replied Jane, “that he certainly would -not marry Lydia, if he had not a real regard for her. Though our kind -uncle has done something towards clearing him, I cannot believe that ten -thousand pounds, or anything like it, has been advanced. He has children -of his own, and may have more. How could he spare half ten thousand -pounds?” - -“If we are ever able to learn what Wickham’s debts have been,” said -Elizabeth, “and how much is settled on his side on our sister, we shall -exactly know what Mr. Gardiner has done for them, because Wickham has -not sixpence of his own. The kindness of my uncle and aunt can never be -requited. Their taking her home, and affording her their personal -protection and countenance, is such a sacrifice to her advantage as -years of gratitude cannot enough acknowledge. By this time she is -actually with them! If such goodness does not make her miserable now, -she will never deserve to be happy! What a meeting for her, when she -first sees my aunt!” - -“We must endeavour to forget all that has passed on either side,” said -Jane: “I hope and trust they will yet be happy. His consenting to marry -her is a proof, I will believe, that he is come to a right way of -thinking. Their mutual affection will steady them; and I flatter myself -they will settle so quietly, and live in so rational a manner, as may in -time make their past imprudence forgotten.” - -“Their conduct has been such,” replied Elizabeth, “as neither you, nor -I, nor anybody, can ever forget. It is useless to talk of it.” - -It now occurred to the girls that their mother was in all likelihood -perfectly ignorant of what had happened. They went to the library, -therefore, and asked their father whether he would not wish them to make -it known to her. He was writing, and, without raising his head, coolly -replied,-- - -“Just as you please.” - -“May we take my uncle’s letter to read to her?” - -“Take whatever you like, and get away.” - -Elizabeth took the letter from his writing-table, and they went upstairs -together. Mary and Kitty were both with Mrs. Bennet: one communication -would, therefore, do for all. After a slight preparation for good news, -the letter was read aloud. Mrs. Bennet could hardly contain herself. As -soon as Jane had read Mr. Gardiner’s hope of Lydia’s being soon married, -her joy burst forth, and every following sentence added to its -exuberance. She was now in an irritation as violent from delight as she -had ever been fidgety from alarm and vexation. To know that her daughter -would be married was enough. She was disturbed by no fear for her -felicity, nor humbled by any remembrance of her misconduct. - -“My dear, dear Lydia!” she cried: “this is delightful indeed! She will -be married! I shall see her again! She will be married at sixteen! My -good, kind brother! I knew how it would be--I knew he would manage -everything. How I long to see her! and to see dear Wickham too! But the -clothes, the wedding clothes! I will write to my sister Gardiner about -them directly. Lizzy, my dear, run down to your father, and ask him how -much he will give her. Stay, stay, I will go myself. Ring the bell, -Kitty, for Hill. I will put on my things in a moment. My dear, dear -Lydia! How merry we shall be together when we meet!” - -Her eldest daughter endeavoured to give some relief to the violence of -these transports, by leading her thoughts to the obligations which Mr. -Gardiner’s behaviour laid them all under. - -“For we must attribute this happy conclusion,” she added, “in a great -measure to his kindness. We are persuaded that he has pledged himself to -assist Mr. Wickham with money.” - -“Well,” cried her mother, “it is all very right; who should do it but -her own uncle? If he had not had a family of his own, I and my children -must have had all his money, you know; and it is the first time we have -ever had anything from him except a few presents. Well! I am so happy. -In a short time, I shall have a daughter married. Mrs. Wickham! How well -it sounds! And she was only sixteen last June. My dear Jane, I am in -such a flutter, that I am sure I can’t write; so I will dictate, and you -write for me. We will settle with your father about the money -afterwards; but the things should be ordered immediately.” - -She was then proceeding to all the particulars of calico, muslin, and -cambric, and would shortly have dictated some very plentiful orders, had -not Jane, though with some difficulty, persuaded her to wait till her -father was at leisure to be consulted. One day’s delay, she observed, -would be of small importance; and her mother was too happy to be quite -so obstinate as usual. Other schemes, too, came into her head. - -“I will go to Meryton,” said she, “as soon as I am dressed, and tell the -good, good news to my sister Philips. And as I come back, I can call on -Lady Lucas and Mrs. Long. Kitty, run down and order the carriage. An -airing would do me a great deal of good, I am sure. Girls, can I do -anything for you in Meryton? Oh! here comes Hill. My dear Hill, have you -heard the good news? Miss Lydia is going to be married; and you shall -all have a bowl of punch to make merry at her wedding.” - -Mrs. Hill began instantly to express her joy. Elizabeth received her -congratulations amongst the rest, and then, sick of this folly, took -refuge in her own room, that she might think with freedom. Poor Lydia’s -situation must, at best, be bad enough; but that it was no worse, she -had need to be thankful. She felt it so; and though, in looking forward, -neither rational happiness, nor worldly prosperity could be justly -expected for her sister, in looking back to what they had feared, only -two hours ago, she felt all the advantages of what they had gained. - - - - -[Illustration: - -“The spiteful old ladies” - -[_Copyright 1894 by George Allen._]] - - - - -CHAPTER L. - - -[Illustration] - -Mr. Bennet had very often wished, before this period of his life, that, -instead of spending his whole income, he had laid by an annual sum, for -the better provision of his children, and of his wife, if she survived -him. He now wished it more than ever. Had he done his duty in that -respect, Lydia need not have been indebted to her uncle for whatever of -honour or credit could now be purchased for her. The satisfaction of -prevailing on one of the most worthless young men in Great Britain to -be her husband might then have rested in its proper place. - -He was seriously concerned that a cause of so little advantage to anyone -should be forwarded at the sole expense of his brother-in-law; and he -was determined, if possible, to find out the extent of his assistance, -and to discharge the obligation as soon as he could. - -When first Mr. Bennet had married, economy was held to be perfectly -useless; for, of course, they were to have a son. This son was to join -in cutting off the entail, as soon as he should be of age, and the widow -and younger children would by that means be provided for. Five daughters -successively entered the world, but yet the son was to come; and Mrs. -Bennet, for many years after Lydia’s birth, had been certain that he -would. This event had at last been despaired of, but it was then too -late to be saving. Mrs. Bennet had no turn for economy; and her -husband’s love of independence had alone prevented their exceeding their -income. - -Five thousand pounds was settled by marriage articles on Mrs. Bennet and -the children. But in what proportions it should be divided amongst the -latter depended on the will of the parents. This was one point, with -regard to Lydia at least, which was now to be settled, and Mr. Bennet -could have no hesitation in acceding to the proposal before him. In -terms of grateful acknowledgment for the kindness of his brother, though -expressed most concisely, he then delivered on paper his perfect -approbation of all that was done, and his willingness to fulfil the -engagements that had been made for him. He had never before supposed -that, could Wickham be prevailed on to marry his daughter, it would be -done with so little inconvenience to himself as by the present -arrangement. He would scarcely be ten pounds a year the loser, by the -hundred that was to be paid them; for, what with her board and pocket -allowance, and the continual presents in money which passed to her -through her mother’s hands, Lydia’s expenses had been very little within -that sum. - -That it would be done with such trifling exertion on his side, too, was -another very welcome surprise; for his chief wish at present was to have -as little trouble in the business as possible. When the first transports -of rage which had produced his activity in seeking her were over, he -naturally returned to all his former indolence. His letter was soon -despatched; for though dilatory in undertaking business, he was quick in -its execution. He begged to know further particulars of what he was -indebted to his brother; but was too angry with Lydia to send any -message to her. - -The good news quickly spread through the house; and with proportionate -speed through the neighbourhood. It was borne in the latter with decent -philosophy. To be sure, it would have been more for the advantage of -conversation, had Miss Lydia Bennet come upon the town; or, as the -happiest alternative, been secluded from the world in some distant -farm-house. But there was much to be talked of, in marrying her; and the -good-natured wishes for her well-doing, which had proceeded before from -all the spiteful old ladies in Meryton, lost but little of their spirit -in this change of circumstances, because with such a husband her misery -was considered certain. - -It was a fortnight since Mrs. Bennet had been down stairs, but on this -happy day she again took her seat at the head of her table, and in -spirits oppressively high. No sentiment of shame gave a damp to her -triumph. The marriage of a daughter, which had been the first object of -her wishes since Jane was sixteen, was now on the point of -accomplishment, and her thoughts and her words ran wholly on those -attendants of elegant nuptials, fine muslins, new carriages, and -servants. She was busily searching through the neighbourhood for a -proper situation for her daughter; and, without knowing or considering -what their income might be, rejected many as deficient in size and -importance. - -“Haye Park might do,” said she, “if the Gouldings would quit it, or the -great house at Stoke, if the drawing-room were larger; but Ashworth is -too far off. I could not bear to have her ten miles from me; and as for -Purvis Lodge, the attics are dreadful.” - -Her husband allowed her to talk on without interruption while the -servants remained. But when they had withdrawn, he said to her, “Mrs. -Bennet, before you take any, or all of these houses, for your son and -daughter, let us come to a right understanding. Into _one_ house in this -neighbourhood they shall never have admittance. I will not encourage the -imprudence of either, by receiving them at Longbourn.” - -A long dispute followed this declaration; but Mr. Bennet was firm: it -soon led to another; and Mrs. Bennet found, with amazement and horror, -that her husband would not advance a guinea to buy clothes for his -daughter. He protested that she should receive from him no mark of -affection whatever on the occasion. Mrs. Bennet could hardly comprehend -it. That his anger could be carried to such a point of inconceivable -resentment as to refuse his daughter a privilege, without which her -marriage would scarcely seem valid, exceeded all that she could believe -possible. She was more alive to the disgrace, which her want of new -clothes must reflect on her daughter’s nuptials, than to any sense of -shame at her eloping and living with Wickham a fortnight before they -took place. - -Elizabeth was now most heartily sorry that she had, from the distress of -the moment, been led to make Mr. Darcy acquainted with their fears for -her sister; for since her marriage would so shortly give the proper -termination to the elopement, they might hope to conceal its -unfavourable beginning from all those who were not immediately on the -spot. - -She had no fear of its spreading farther, through his means. There were -few people on whose secrecy she would have more confidently depended; -but at the same time there was no one whose knowledge of a sister’s -frailty would have mortified her so much. Not, however, from any fear of -disadvantage from it individually to herself; for at any rate there -seemed a gulf impassable between them. Had Lydia’s marriage been -concluded on the most honourable terms, it was not to be supposed that -Mr. Darcy would connect himself with a family, where to every other -objection would now be added an alliance and relationship of the nearest -kind with the man whom he so justly scorned. - -From such a connection she could not wonder that he should shrink. The -wish of procuring her regard, which she had assured herself of his -feeling in Derbyshire, could not in rational expectation survive such a -blow as this. She was humbled, she was grieved; she repented, though she -hardly knew of what. She became jealous of his esteem, when she could no -longer hope to be benefited by it. She wanted to hear of him, when there -seemed the least chance of gaining intelligence. She was convinced that -she could have been happy with him, when it was no longer likely they -should meet. - -What a triumph for him, as she often thought, could he know that the -proposals which she had proudly spurned only four months ago would now -have been gladly and gratefully received! He was as generous, she -doubted not, as the most generous of his sex. But while he was mortal, -there must be a triumph. - -She began now to comprehend that he was exactly the man who, in -disposition and talents, would most suit her. His understanding and -temper, though unlike her own, would have answered all her wishes. It -was an union that must have been to the advantage of both: by her ease -and liveliness, his mind might have been softened, his manners improved; -and from his judgment, information, and knowledge of the world, she must -have received benefit of greater importance. - -But no such happy marriage could now teach the admiring multitude what -connubial felicity really was. An union of a different tendency, and -precluding the possibility of the other, was soon to be formed in their -family. - -How Wickham and Lydia were to be supported in tolerable independence she -could not imagine. But how little of permanent happiness could belong to -a couple who were only brought together because their passions were -stronger than their virtue, she could easily conjecture. - -Mr. Gardiner soon wrote again to his brother. To Mr. Bennet’s -acknowledgments he briefly replied, with assurances of his eagerness to -promote the welfare of any of his family; and concluded with entreaties -that the subject might never be mentioned to him again. The principal -purport of his letter was to inform them, that Mr. Wickham had resolved -on quitting the militia. - -“It was greatly my wish that he should do so,” he added, “as soon as his -marriage was fixed on. And I think you will agree with me, in -considering a removal from that corps as highly advisable, both on his -account and my niece’s. It is Mr. Wickham’s intention to go into the -Regulars; and, among his former friends, there are still some who are -able and willing to assist him in the army. He has the promise of an -ensigncy in General----’s regiment, now quartered in the north. It is -an advantage to have it so far from this part of the kingdom. He -promises fairly; and I hope among different people, where they may each -have a character to preserve, they will both be more prudent. I have -written to Colonel Forster, to inform him of our present arrangements, -and to request that he will satisfy the various creditors of Mr. Wickham -in and near Brighton with assurances of speedy payment, for which I have -pledged myself. And will you give yourself the trouble of carrying -similar assurances to his creditors in Meryton, of whom I shall subjoin -a list, according to his information? He has given in all his debts; I -hope at least he has not deceived us. Haggerston has our directions, and -all will be completed in a week. They will then join his regiment, -unless they are first invited to Longbourn; and I understand from Mrs. -Gardiner that my niece is very desirous of seeing you all before she -leaves the south. She is well, and begs to be dutifully remembered to -you and her mother.--Yours, etc. - -“E. GARDINER.” - -Mr. Bennet and his daughters saw all the advantages of Wickham’s -removal from the ----shire, as clearly as Mr. Gardiner could do. But -Mrs. Bennet was not so well pleased with it. Lydia’s being settled in -the north, just when she had expected most pleasure and pride in her -company, for she had by no means given up her plan of their residing in -Hertfordshire, was a severe disappointment; and, besides, it was such a -pity that Lydia should be taken from a regiment where she was acquainted -with everybody, and had so many favourites. - -“She is so fond of Mrs. Forster,” said she, “it will be quite shocking -to send her away! And there are several of the young men, too, that she -likes very much. The officers may not be so pleasant in General----’s -regiment.” - -His daughter’s request, for such it might be considered, of being -admitted into her family again, before she set off for the north, -received at first an absolute negative. But Jane and Elizabeth, who -agreed in wishing, for the sake of their sister’s feelings and -consequence, that she should be noticed on her marriage by her parents, -urged him so earnestly, yet so rationally and so mildly, to receive her -and her husband at Longbourn, as soon as they were married, that he was -prevailed on to think as they thought, and act as they wished. And their -mother had the satisfaction of knowing, that she should be able to show -her married daughter in the neighbourhood, before she was banished to -the north. When Mr. Bennet wrote again to his brother, therefore, he -sent his permission for them to come; and it was settled, that, as soon -as the ceremony was over, they should proceed to Longbourn. Elizabeth -was surprised, however, that Wickham should consent to such a scheme; -and, had she consulted only her own inclination, any meeting with him -would have been the last object of her wishes. - - - - -[Illustration: - -“With an affectionate smile” - -[_Copyright 1894 by George Allen._]] - - - - -CHAPTER LI. - - -[Illustration] - -Their sister’s wedding-day arrived; and Jane and Elizabeth felt for her -probably more than she felt for herself. The carriage was sent to meet -them at----, and they were to return in it by dinnertime. Their arrival -was dreaded by the elder Miss Bennets--and Jane more especially, who -gave Lydia the feelings which would have attended herself, had _she_ -been the culprit, and was wretched in the thought of what her sister -must endure. - -They came. The family were assembled in the breakfast-room to receive -them. Smiles decked the face of Mrs. Bennet, as the carriage drove up to -the door; her husband looked impenetrably grave; her daughters, alarmed, -anxious, uneasy. - -Lydia’s voice was heard in the vestibule; the door was thrown open, and -she ran into the room. Her mother stepped forwards, embraced her, and -welcomed her with rapture; gave her hand with an affectionate smile to -Wickham, who followed his lady; and wished them both joy, with an -alacrity which showed no doubt of their happiness. - -Their reception from Mr. Bennet, to whom they then turned, was not quite -so cordial. His countenance rather gained in austerity; and he scarcely -opened his lips. The easy assurance of the young couple, indeed, was -enough to provoke him. - -Elizabeth was disgusted, and even Miss Bennet was shocked. Lydia was -Lydia still; untamed, unabashed, wild, noisy, and fearless. She turned -from sister to sister, demanding their congratulations; and when at -length they all sat down, looked eagerly round the room, took notice of -some little alteration in it, and observed, with a laugh, that it was a -great while since she had been there. - -Wickham was not at all more distressed than herself; but his manners -were always so pleasing, that, had his character and his marriage been -exactly what they ought, his smiles and his easy address, while he -claimed their relationship, would have delighted them all. Elizabeth -had not before believed him quite equal to such assurance; but she sat -down, resolving within herself to draw no limits in future to the -impudence of an impudent man. _She_ blushed, and Jane blushed; but the -cheeks of the two who caused their confusion suffered no variation of -colour. - -There was no want of discourse. The bride and her mother could neither -of them talk fast enough; and Wickham, who happened to sit near -Elizabeth, began inquiring after his acquaintance in that neighbourhood, -with a good-humoured ease, which she felt very unable to equal in her -replies. They seemed each of them to have the happiest memories in the -world. Nothing of the past was recollected with pain; and Lydia led -voluntarily to subjects which her sisters would not have alluded to for -the world. - -“Only think of its being three months,” she cried, “since I went away: -it seems but a fortnight, I declare; and yet there have been things -enough happened in the time. Good gracious! when I went away, I am sure -I had no more idea of being married till I came back again! though I -thought it would be very good fun if I was.” - -Her father lifted up his eyes, Jane was distressed, Elizabeth looked -expressively at Lydia; but she, who never heard nor saw anything of -which she chose to be insensible, gaily continued,-- - -“Oh, mamma, do the people hereabouts know I am married to-day? I was -afraid they might not; and we overtook William Goulding in his curricle, -so I was determined he should know it, and so I let down the side glass -next to him, and took off my glove and let my hand just rest upon the -window frame, so that he might see the ring, and then I bowed and -smiled like anything.” - -Elizabeth could bear it no longer. She got up and ran out of the room; -and returned no more, till she heard them passing through the hall to -the dining-parlour. She then joined them soon enough to see Lydia, with -anxious parade, walk up to her mother’s right hand, and hear her say to -her eldest sister,-- - -“Ah, Jane, I take your place now, and you must go lower, because I am a -married woman.” - -It was not to be supposed that time would give Lydia that embarrassment -from which she had been so wholly free at first. Her ease and good -spirits increased. She longed to see Mrs. Philips, the Lucases, and all -their other neighbours, and to hear herself called “Mrs. Wickham” by -each of them; and in the meantime she went after dinner to show her ring -and boast of being married to Mrs. Hill and the two housemaids. - -“Well, mamma,” said she, when they were all returned to the -breakfast-room, “and what do you think of my husband? Is not he a -charming man? I am sure my sisters must all envy me. I only hope they -may have half my good luck. They must all go to Brighton. That is the -place to get husbands. What a pity it is, mamma, we did not all go!” - -“Very true; and if I had my will we should. But, my dear Lydia, I don’t -at all like your going such a way off. Must it be so?” - -“Oh, Lord! yes; there is nothing in that. I shall like it of all things. -You and papa, and my sisters, must come down and see us. We shall be at -Newcastle all the winter, and I dare say there will be some balls, and I -will take care to get good partners for them all.” - -“I should like it beyond anything!” said her mother. - -“And then when you go away, you may leave one or two of my sisters -behind you; and I dare say I shall get husbands for them before the -winter is over.” - -“I thank you for my share of the favour,” said Elizabeth; “but I do not -particularly like your way of getting husbands.” - -Their visitors were not to remain above ten days with them. Mr. Wickham -had received his commission before he left London, and he was to join -his regiment at the end of a fortnight. - -No one but Mrs. Bennet regretted that their stay would be so short; and -she made the most of the time by visiting about with her daughter, and -having very frequent parties at home. These parties were acceptable to -all; to avoid a family circle was even more desirable to such as did -think than such as did not. - -Wickham’s affection for Lydia was just what Elizabeth had expected to -find it; not equal to Lydia’s for him. She had scarcely needed her -present observation to be satisfied, from the reason of things, that -their elopement had been brought on by the strength of her love rather -than by his; and she would have wondered why, without violently caring -for her, he chose to elope with her at all, had she not felt certain -that his flight was rendered necessary by distress of circumstances; and -if that were the case, he was not the young man to resist an opportunity -of having a companion. - -Lydia was exceedingly fond of him. He was her dear Wickham on every -occasion; no one was to be put in competition with him. He did -everything best in the world; and she was sure he would kill more birds -on the first of September than anybody else in the country. - -One morning, soon after their arrival, as she was sitting with her two -elder sisters, she said to Elizabeth,-- - -“Lizzy, I never gave _you_ an account of my wedding, I believe. You were -not by, when I told mamma, and the others, all about it. Are not you -curious to hear how it was managed?” - -“No, really,” replied Elizabeth; “I think there cannot be too little -said on the subject.” - -“La! You are so strange! But I must tell you how it went off. We were -married, you know, at St. Clement’s, because Wickham’s lodgings were in -that parish. And it was settled that we should all be there by eleven -o’clock. My uncle and aunt and I were to go together; and the others -were to meet us at the church. - -“Well, Monday morning came, and I was in such a fuss! I was so afraid, -you know, that something would happen to put it off, and then I should -have gone quite distracted. And there was my aunt, all the time I was -dressing, preaching and talking away just as if she was reading a -sermon. However, I did not hear above one word in ten, for I was -thinking, you may suppose, of my dear Wickham. I longed to know whether -he would be married in his blue coat. - -“Well, and so we breakfasted at ten as usual: I thought it would never -be over; for, by the bye, you are to understand that my uncle and aunt -were horrid unpleasant all the time I was with them. If you’ll believe -me, I did not once put my foot out of doors, though I was there a -fortnight. Not one party, or scheme, or anything! To be sure, London was -rather thin, but, however, the Little Theatre was open. - -“Well, and so, just as the carriage came to the door, my uncle was -called away upon business to that horrid man Mr. Stone. And then, you -know, when once they get together, there is no end of it. Well, I was so -frightened I did not know what to do, for my uncle was to give me away; -and if we were beyond the hour we could not be married all day. But, -luckily, he came back again in ten minutes’ time, and then we all set -out. However, I recollected afterwards, that if he _had_ been prevented -going, the wedding need not be put off, for Mr. Darcy might have done as -well.” - -“Mr. Darcy!” repeated Elizabeth, in utter amazement. - -“Oh, yes! he was to come there with Wickham, you know. But, gracious me! -I quite forgot! I ought not to have said a word about it. I promised -them so faithfully! What will Wickham say? It was to be such a secret!” - -“If it was to be a secret,” said Jane, “say not another word on the -subject. You may depend upon my seeking no further.” - -“Oh, certainly,” said Elizabeth, though burning with curiosity; “we will -ask you no questions.” - -“Thank you,” said Lydia; “for if you did, I should certainly tell you -all, and then Wickham would be so angry.” - -On such encouragement to ask, Elizabeth was forced to put it out of her -power, by running away. - -But to live in ignorance on such a point was impossible; or at least it -was impossible not to try for information. Mr. Darcy had been at her -sister’s wedding. It was exactly a scene, and exactly among people, -where he had apparently least to do, and least temptation to go. -Conjectures as to the meaning of it, rapid and wild, hurried into her -brain; but she was satisfied with none. Those that best pleased her, as -placing his conduct in the noblest light, seemed most improbable. She -could not bear such suspense; and hastily seizing a sheet of paper, -wrote a short letter to her aunt, to request an explanation of what -Lydia had dropped, if it were compatible with the secrecy which had been -intended. - -“You may readily comprehend,” she added, “what my curiosity must be to -know how a person unconnected with any of us, and, comparatively -speaking, a stranger to our family, should have been amongst you at such -a time. Pray write instantly, and let me understand it--unless it is, -for very cogent reasons, to remain in the secrecy which Lydia seems to -think necessary; and then I must endeavour to be satisfied with -ignorance.” - -“Not that I _shall_, though,” she added to herself, and she finished the -letter; “and, my dear aunt, if you do not tell me in an honourable -manner, I shall certainly be reduced to tricks and stratagems to find it -out.” - -Jane’s delicate sense of honour would not allow her to speak to -Elizabeth privately of what Lydia had let fall; Elizabeth was glad of -it:--till it appeared whether her inquiries would receive any -satisfaction, she had rather be without a confidante. - - - - -[Illustration: - -“I am sure she did not listen.” -] - - - - -CHAPTER LII. - - -[Illustration] - -Elizabeth had the satisfaction of receiving an answer to her letter as -soon as she possibly could. She was no sooner in possession of it, than -hurrying into the little copse, where she was least likely to be -interrupted, she sat down on one of the benches, and prepared to be -happy; for the length of the letter convinced her that it did not -contain a denial. - - /* RIGHT “Gracechurch Street, _Sept. 6_. */ - -“My dear Niece, - - “I have just received your letter, and shall devote this whole - morning to answering it, as I foresee that a _little_ writing will - not comprise what I have to tell you. I must confess myself - surprised by your application; I did not expect it from _you_. - Don’t think me angry, however, for I only mean to let you know, - that I had not imagined such inquiries to be necessary on _your_ - side. If you do not choose to understand me, forgive my - impertinence. Your uncle is as much surprised as I am; and nothing - but the belief of your being a party concerned would have allowed - him to act as he has done. But if you are really innocent and - ignorant, I must be more explicit. On the very day of my coming - home from Longbourn, your uncle had a most unexpected visitor. Mr. - Darcy called, and was shut up with him several hours. It was all - over before I arrived; so my curiosity was not so dreadfully racked - as _yours_ seems to have been. He came to tell Mr. Gardiner that he - had found out where your sister and Mr. Wickham were, and that he - had seen and talked with them both--Wickham repeatedly, Lydia once. - From what I can collect, he left Derbyshire only one day after - ourselves, and came to town with the resolution of hunting for - them. The motive professed was his conviction of its being owing to - himself that Wickham’s worthlessness had not been so well known as - to make it impossible for any young woman of character to love or - confide in him. He generously imputed the whole to his mistaken - pride, and confessed that he had before thought it beneath him to - lay his private actions open to the world. His character was to - speak for itself. He called it, therefore, his duty to step - forward, and endeavour to remedy an evil which had been brought on - by himself. If he _had another_ motive, I am sure it would never - disgrace him. He had been some days in town before he was able to - discover them; but he had something to direct his search, which was - more than _we_ had; and the consciousness of this was another - reason for his resolving to follow us. There is a lady, it seems, a - Mrs. Younge, who was some time ago governess to Miss Darcy, and was - dismissed from her charge on some cause of disapprobation, though - he did not say what. She then took a large house in Edward Street, - and has since maintained herself by letting lodgings. This Mrs. - Younge was, he knew, intimately acquainted with Wickham; and he - went to her for intelligence of him, as soon as he got to town. But - it was two or three days before he could get from her what he - wanted. She would not betray her trust, I suppose, without bribery - and corruption, for she really did know where her friend was to be - found. Wickham, indeed, had gone to her on their first arrival in - London; and had she been able to receive them into her house, they - would have taken up their abode with her. At length, however, our - kind friend procured the wished-for direction. They were in ---- - Street. He saw Wickham, and afterwards insisted on seeing Lydia. - His first object with her, he acknowledged, had been to persuade - her to quit her present disgraceful situation, and return to her - friends as soon as they could be prevailed on to receive her, - offering his assistance as far as it would go. But he found Lydia - absolutely resolved on remaining where she was. She cared for none - of her friends; she wanted no help of his; she would not hear of - leaving Wickham. She was sure they should be married some time or - other, and it did not much signify when. Since such were her - feelings, it only remained, he thought, to secure and expedite a - marriage, which, in his very first conversation with Wickham, he - easily learnt had never been _his_ design. He confessed himself - obliged to leave the regiment on account of some debts of honour - which were very pressing; and scrupled not to lay all the ill - consequences of Lydia’s flight on her own folly alone. He meant to - resign his commission immediately; and as to his future situation, - he could conjecture very little about it. He must go somewhere, but - he did not know where, and he knew he should have nothing to live - on. Mr. Darcy asked why he did not marry your sister at once. - Though Mr. Bennet was not imagined to be very rich, he would have - been able to do something for him, and his situation must have been - benefited by marriage. But he found, in reply to this question, - that Wickham still cherished the hope of more effectually making - his fortune by marriage, in some other country. Under such - circumstances, however, he was not likely to be proof against the - temptation of immediate relief. They met several times, for there - was much to be discussed. Wickham, of course, wanted more than he - could get; but at length was reduced to be reasonable. Everything - being settled between _them_, Mr. Darcy’s next step was to make - your uncle acquainted with it, and he first called in Gracechurch - Street the evening before I came home. But Mr. Gardiner could not - be seen; and Mr. Darcy found, on further inquiry, that your father - was still with him, but would quit town the next morning. He did - not judge your father to be a person whom he could so properly - consult as your uncle, and therefore readily postponed seeing him - till after the departure of the former. He did not leave his name, - and till the next day it was only known that a gentleman had called - on business. On Saturday he came again. Your father was gone, your - uncle at home, and, as I said before, they had a great deal of talk - together. They met again on Sunday, and then _I_ saw him too. It - was not all settled before Monday: as soon as it was, the express - was sent off to Longbourn. But our visitor was very obstinate. I - fancy, Lizzy, that obstinacy is the real defect of his character, - after all. He has been accused of many faults at different times; - but _this_ is the true one. Nothing was to be done that he did not - do himself; though I am sure (and I do not speak it to be thanked, - therefore say nothing about it) your uncle would most readily have - settled the whole. They battled it together for a long time, which - was more than either the gentleman or lady concerned in it - deserved. But at last your uncle was forced to yield, and instead - of being allowed to be of use to his niece, was forced to put up - with only having the probable credit of it, which went sorely - against the grain; and I really believe your letter this morning - gave him great pleasure, because it required an explanation that - would rob him of his borrowed feathers, and give the praise where - it was due. But, Lizzy, this must go no further than yourself, or - Jane at most. You know pretty well, I suppose, what has been done - for the young people. His debts are to be paid, amounting, I - believe, to considerably more than a thousand pounds, another - thousand in addition to her own settled upon _her_, and his - commission purchased. The reason why all this was to be done by him - alone, was such as I have given above. It was owing to him, to his - reserve and want of proper consideration, that Wickham’s character - had been so misunderstood, and consequently that he had been - received and noticed as he was. Perhaps there was some truth in - _this_; though I doubt whether _his_ reserve, or _anybody’s_ - reserve can be answerable for the event. But in spite of all this - fine talking, my dear Lizzy, you may rest perfectly assured that - your uncle would never have yielded, if we had not given him credit - for _another interest_ in the affair. When all this was resolved - on, he returned again to his friends, who were still staying at - Pemberley; but it was agreed that he should be in London once more - when the wedding took place, and all money matters were then to - receive the last finish. I believe I have now told you everything. - It is a relation which you tell me is to give you great surprise; I - hope at least it will not afford you any displeasure. Lydia came to - us, and Wickham had constant admission to the house. _He_ was - exactly what he had been when I knew him in Hertfordshire; but I - would not tell you how little I was satisfied with _her_ behaviour - while she stayed with us, if I had not perceived, by Jane’s letter - last Wednesday, that her conduct on coming home was exactly of a - piece with it, and therefore what I now tell you can give you no - fresh pain. I talked to her repeatedly in the most serious manner, - representing to her the wickedness of what she had done, and all - the unhappiness she had brought on her family. If she heard me, it - was by good luck, for I am sure she did not listen. I was sometimes - quite provoked; but then I recollected my dear Elizabeth and Jane, - and for their sakes had patience with her. Mr. Darcy was punctual - in his return, and, as Lydia informed you, attended the wedding. He - dined with us the next day, and was to leave town again on - Wednesday or Thursday. Will you be very angry with me, my dear - Lizzy, if I take this opportunity of saying (what I was never bold - enough to say before) how much I like him? His behaviour to us has, - in every respect, been as pleasing as when we were in Derbyshire. - His understanding and opinions all please me; he wants nothing but - a little more liveliness, and _that_, if he marry _prudently_, his - wife may teach him. I thought him very sly; he hardly ever - mentioned your name. But slyness seems the fashion. Pray forgive - me, if I have been very presuming, or at least do not punish me so - far as to exclude me from P. I shall never be quite happy till I - have been all round the park. A low phaeton with a nice little pair - of ponies would be the very thing. But I must write no more. The - children have been wanting me this half hour. - -“Yours, very sincerely, - -“M. GARDINER.” - - -The contents of this letter threw Elizabeth into a flutter of spirits, -in which it was difficult to determine whether pleasure or pain bore the -greatest share. The vague and unsettled suspicions which uncertainty had -produced, of what Mr. Darcy might have been doing to forward her -sister’s match--which she had feared to encourage, as an exertion of -goodness too great to be probable, and at the same time dreaded to be -just, from the pain of obligation--were proved beyond their greatest -extent to be true! He had followed them purposely to town, he had taken -on himself all the trouble and mortification attendant on such a -research; in which supplication had been necessary to a woman whom he -must abominate and despise, and where he was reduced to meet, frequently -meet, reason with, persuade, and finally bribe the man whom he always -most wished to avoid, and whose very name it was punishment to him to -pronounce. He had done all this for a girl whom he could neither regard -nor esteem. Her heart did whisper that he had done it for her. But it -was a hope shortly checked by other considerations; and she soon felt -that even her vanity was insufficient, when required to depend on his -affection for her, for a woman who had already refused him, as able to -overcome a sentiment so natural as abhorrence against relationship with -Wickham. Brother-in-law of Wickham! Every kind of pride must revolt from -the connection. He had, to be sure, done much. She was ashamed to think -how much. But he had given a reason for his interference, which asked no -extraordinary stretch of belief. It was reasonable that he should feel -he had been wrong; he had liberality, and he had the means of exercising -it; and though she would not place herself as his principal inducement, -she could perhaps believe, that remaining partiality for her might -assist his endeavours in a cause where her peace of mind must be -materially concerned. It was painful, exceedingly painful, to know that -they were under obligations to a person who could never receive a -return. They owed the restoration of Lydia, her character, everything to -him. Oh, how heartily did she grieve over every ungracious sensation she -had ever encouraged, every saucy speech she had ever directed towards -him! For herself she was humbled; but she was proud of him,--proud that -in a cause of compassion and honour he had been able to get the better -of himself. She read over her aunt’s commendation of him again and -again. It was hardly enough; but it pleased her. She was even sensible -of some pleasure, though mixed with regret, on finding how steadfastly -both she and her uncle had been persuaded that affection and confidence -subsisted between Mr. Darcy and herself. - -She was roused from her seat and her reflections, by someone’s approach; -and, before she could strike into another path, she was overtaken by -Wickham. - -“I am afraid I interrupt your solitary ramble, my dear sister?” said he, -as he joined her. - -“You certainly do,” she replied with a smile; “but it does not follow -that the interruption must be unwelcome.” - -“I should be sorry, indeed, if it were. _We_ were always good friends, -and now we are better.” - -“True. Are the others coming out?” - -“I do not know. Mrs. Bennet and Lydia are going in the carriage to -Meryton. And so, my dear sister, I find, from our uncle and aunt, that -you have actually seen Pemberley.” - -She replied in the affirmative. - -“I almost envy you the pleasure, and yet I believe it would be too much -for me, or else I could take it in my way to Newcastle. And you saw the -old housekeeper, I suppose? Poor Reynolds, she was always very fond of -me. But of course she did not mention my name to you.” - -“Yes, she did.” - -“And what did she say?” - -“That you were gone into the army, and she was afraid had--not turned -out well. At such a distance as _that_, you know, things are strangely -misrepresented.” - -“Certainly,” he replied, biting his lips. Elizabeth hoped she had -silenced him; but he soon afterwards said,-- - -“I was surprised to see Darcy in town last month. We passed each other -several times. I wonder what he can be doing there.” - -“Perhaps preparing for his marriage with Miss de Bourgh,” said -Elizabeth. “It must be something particular to take him there at this -time of year.” - -“Undoubtedly. Did you see him while you were at Lambton? I thought I -understood from the Gardiners that you had.” - -“Yes; he introduced us to his sister.” - -“And do you like her?” - -“Very much.” - -“I have heard, indeed, that she is uncommonly improved within this year -or two. When I last saw her, she was not very promising. I am very glad -you liked her. I hope she will turn out well.” - -“I dare say she will; she has got over the most trying age.” - -“Did you go by the village of Kympton?” - -“I do not recollect that we did.” - -“I mention it because it is the living which I ought to have had. A most -delightful place! Excellent parsonage-house! It would have suited me in -every respect.” - -“How should you have liked making sermons?” - -“Exceedingly well. I should have considered it as part of my duty, and -the exertion would soon have been nothing. One ought not to repine; but, -to be sure, it would have been such a thing for me! The quiet, the -retirement of such a life, would have answered all my ideas of -happiness! But it was not to be. Did you ever hear Darcy mention the -circumstance when you were in Kent?” - -“I _have_ heard from authority, which I thought _as good_, that it was -left you conditionally only, and at the will of the present patron.” - -“You have! Yes, there was something in _that_; I told you so from the -first, you may remember.” - -“I _did_ hear, too, that there was a time when sermon-making was not so -palatable to you as it seems to be at present; that you actually -declared your resolution of never taking orders, and that the business -had been compromised accordingly.” - -“You did! and it was not wholly without foundation. You may remember -what I told you on that point, when first we talked of it.” - -They were now almost at the door of the house, for she had walked fast -to get rid of him; and unwilling, for her sister’s sake, to provoke him, -she only said in reply, with a good-humoured smile,-- - -“Come, Mr. Wickham, we are brother and sister, you know. Do not let us -quarrel about the past. In future, I hope we shall be always of one -mind.” - -She held out her hand: he kissed it with affectionate gallantry, though -he hardly knew how to look, and they entered the house. - - - - -[Illustration: - -“Mr. Darcy with him.” -] - - - - -CHAPTER LIII. - - -[Illustration] - -Mr. Wickham was so perfectly satisfied with this conversation, that he -never again distressed himself, or provoked his dear sister Elizabeth, -by introducing the subject of it; and she was pleased to find that she -had said enough to keep him quiet. - -The day of his and Lydia’s departure soon came; and Mrs. Bennet was -forced to submit to a separation, which, as her husband by no means -entered into her scheme of their all going to Newcastle, was likely to -continue at least a twelvemonth. - -“Oh, my dear Lydia,” she cried, “when shall we meet again?” - -“Oh, Lord! I don’t know. Not these two or three years, perhaps.” - -“Write to me very often, my dear.” - -“As often as I can. But you know married women have never much time for -writing. My sisters may write to _me_. They will have nothing else to -do.” - -Mr. Wickham’s adieus were much more affectionate than his wife’s. He -smiled, looked handsome, and said many pretty things. - -“He is as fine a fellow,” said Mr. Bennet, as soon as they were out of -the house, “as ever I saw. He simpers, and smirks, and makes love to us -all. I am prodigiously proud of him. I defy even Sir William Lucas -himself to produce a more valuable son-in-law.” - -The loss of her daughter made Mrs. Bennet very dull for several days. - -“I often think,” said she, “that there is nothing so bad as parting with -one’s friends. One seems so forlorn without them.” - -“This is the consequence, you see, madam, of marrying a daughter,” said -Elizabeth. “It must make you better satisfied that your other four are -single.” - -“It is no such thing. Lydia does not leave me because she is married; -but only because her husband’s regiment happens to be so far off. If -that had been nearer, she would not have gone so soon.” - -But the spiritless condition which this event threw her into was shortly -relieved, and her mind opened again to the agitation of hope, by an -article of news which then began to be in circulation. The housekeeper -at Netherfield had received orders to prepare for the arrival of her -master, who was coming down in a day or two, to shoot there for several -weeks. Mrs. Bennet was quite in the fidgets. She looked at Jane, and -smiled, and shook her head, by turns. - -“Well, well, and so Mr. Bingley is coming down, sister,” (for Mrs. -Philips first brought her the news). “Well, so much the better. Not that -I care about it, though. He is nothing to us, you know, and I am sure I -never want to see him again. But, however, he is very welcome to come to -Netherfield, if he likes it. And who knows what _may_ happen? But that -is nothing to us. You know, sister, we agreed long ago never to mention -a word about it. And so, it is quite certain he is coming?” - -“You may depend on it,” replied the other, “for Mrs. Nichols was in -Meryton last night: I saw her passing by, and went out myself on purpose -to know the truth of it; and she told me that it was certainly true. He -comes down on Thursday, at the latest, very likely on Wednesday. She was -going to the butcher’s, she told me, on purpose to order in some meat on -Wednesday, and she has got three couple of ducks just fit to be killed.” - -Miss Bennet had not been able to hear of his coming without changing -colour. It was many months since she had mentioned his name to -Elizabeth; but now, as soon as they were alone together, she said,-- - -“I saw you look at me to-day, Lizzy, when my aunt told us of the present -report; and I know I appeared distressed; but don’t imagine it was from -any silly cause. I was only confused for the moment, because I felt that -I _should_ be looked at. I do assure you that the news does not affect -me either with pleasure or pain. I am glad of one thing, that he comes -alone; because we shall see the less of him. Not that I am afraid of -_myself_, but I dread other people’s remarks.” - -Elizabeth did not know what to make of it. Had she not seen him in -Derbyshire, she might have supposed him capable of coming there with no -other view than what was acknowledged; but she still thought him partial -to Jane, and she wavered as to the greater probability of his coming -there _with_ his friend’s permission, or being bold enough to come -without it. - -“Yet it is hard,” she sometimes thought, “that this poor man cannot come -to a house, which he has legally hired, without raising all this -speculation! I _will_ leave him to himself.” - -In spite of what her sister declared, and really believed to be her -feelings, in the expectation of his arrival, Elizabeth could easily -perceive that her spirits were affected by it. They were more disturbed, -more unequal, than she had often seen them. - -The subject which had been so warmly canvassed between their parents, -about a twelvemonth ago, was now brought forward again. - -“As soon as ever Mr. Bingley comes, my dear,” said Mrs. Bennet, “you -will wait on him, of course.” - -“No, no. You forced me into visiting him last year, and promised, if I -went to see him, he should marry one of my daughters. But it ended in -nothing, and I will not be sent on a fool’s errand again.” - -His wife represented to him how absolutely necessary such an attention -would be from all the neighbouring gentlemen, on his returning to -Netherfield. - -“’Tis an _etiquette_ I despise,” said he. “If he wants our society, let -him seek it. He knows where we live. I will not spend _my_ hours in -running after my neighbours every time they go away and come back -again.” - -“Well, all I know is, that it will be abominably rude if you do not wait -on him. But, however, that shan’t prevent my asking him to dine here, I -am determined. We must have Mrs. Long and the Gouldings soon. That will -make thirteen with ourselves, so there will be just room at table for -him.” - -Consoled by this resolution, she was the better able to bear her -husband’s incivility; though it was very mortifying to know that her -neighbours might all see Mr. Bingley, in consequence of it, before -_they_ did. As the day of his arrival drew near,-- - -“I begin to be sorry that he comes at all,” said Jane to her sister. “It -would be nothing; I could see him with perfect indifference; but I can -hardly bear to hear it thus perpetually talked of. My mother means well; -but she does not know, no one can know, how much I suffer from what she -says. Happy shall I be when his stay at Netherfield is over!” - -“I wish I could say anything to comfort you,” replied Elizabeth; “but it -is wholly out of my power. You must feel it; and the usual satisfaction -of preaching patience to a sufferer is denied me, because you have -always so much.” - -Mr. Bingley arrived. Mrs. Bennet, through the assistance of servants, -contrived to have the earliest tidings of it, that the period of anxiety -and fretfulness on her side be as long as it could. She counted the days -that must intervene before their invitation could be sent--hopeless of -seeing him before. But on the third morning after his arrival in -Hertfordshire, she saw him from her dressing-room window enter the -paddock, and ride towards the house. - -Her daughters were eagerly called to partake of her joy. Jane resolutely -kept her place at the table; but Elizabeth, to satisfy her mother, went -to the window--she looked--she saw Mr. Darcy with him, and sat down -again by her sister. - -“There is a gentleman with him, mamma,” said Kitty; “who can it be?” - -“Some acquaintance or other, my dear, I suppose; I am sure I do not -know.” - -“La!” replied Kitty, “it looks just like that man that used to be with -him before. Mr. what’s his name--that tall, proud man.” - -“Good gracious! Mr. Darcy!--and so it does, I vow. Well, any friend of -Mr. Bingley’s will always be welcome here, to be sure; but else I must -say that I hate the very sight of him.” - -Jane looked at Elizabeth with surprise and concern. She knew but little -of their meeting in Derbyshire, and therefore felt for the awkwardness -which must attend her sister, in seeing him almost for the first time -after receiving his explanatory letter. Both sisters were uncomfortable -enough. Each felt for the other, and of course for themselves; and their -mother talked on of her dislike of Mr. Darcy, and her resolution to be -civil to him only as Mr. Bingley’s friend, without being heard by either -of them. But Elizabeth had sources of uneasiness which could not yet be -suspected by Jane, to whom she had never yet had courage to show Mrs. -Gardiner’s letter, or to relate her own change of sentiment towards -him. To Jane, he could be only a man whose proposals she had refused, -and whose merits she had undervalued; but to her own more extensive -information, he was the person to whom the whole family were indebted -for the first of benefits, and whom she regarded herself with an -interest, if not quite so tender, at least as reasonable and just, as -what Jane felt for Bingley. Her astonishment at his coming--at his -coming to Netherfield, to Longbourn, and voluntarily seeking her again, -was almost equal to what she had known on first witnessing his altered -behaviour in Derbyshire. - -The colour which had been driven from her face returned for half a -minute with an additional glow, and a smile of delight added lustre to -her eyes, as she thought for that space of time that his affection and -wishes must still be unshaken; but she would not be secure. - -“Let me first see how he behaves,” said she; “it will then be early -enough for expectation.” - -She sat intently at work, striving to be composed, and without daring to -lift up her eyes, till anxious curiosity carried them to the face of her -sister as the servant was approaching the door. Jane looked a little -paler than usual, but more sedate than Elizabeth had expected. On the -gentlemen’s appearing, her colour increased; yet she received them with -tolerable ease, and with a propriety of behaviour equally free from any -symptom of resentment, or any unnecessary complaisance. - -Elizabeth said as little to either as civility would allow, and sat down -again to her work, with an eagerness which it did not often command. She -had ventured only one glance at Darcy. He looked serious as usual; and, -she thought, more as he had been used to look in Hertfordshire, than as -she had seen him at Pemberley. But, perhaps, he could not in her -mother’s presence be what he was before her uncle and aunt. It was a -painful, but not an improbable, conjecture. - -Bingley she had likewise seen for an instant, and in that short period -saw him looking both pleased and embarrassed. He was received by Mrs. -Bennet with a degree of civility which made her two daughters ashamed, -especially when contrasted with the cold and ceremonious politeness of -her courtesy and address of his friend. - -Elizabeth particularly, who knew that her mother owed to the latter the -preservation of her favourite daughter from irremediable infamy, was -hurt and distressed to a most painful degree by a distinction so ill -applied. - -Darcy, after inquiring of her how Mr. and Mrs. Gardiner did--a question -which she could not answer without confusion--said scarcely anything. He -was not seated by her: perhaps that was the reason of his silence; but -it had not been so in Derbyshire. There he had talked to her friends -when he could not to herself. But now several minutes elapsed, without -bringing the sound of his voice; and when occasionally, unable to resist -the impulse of curiosity, she raised her eyes to his face, she as often -found him looking at Jane as at herself, and frequently on no object but -the ground. More thoughtfulness and less anxiety to please, than when -they last met, were plainly expressed. She was disappointed, and angry -with herself for being so. - -“Could I expect it to be otherwise?” said she. “Yet why did he come?” - -She was in no humour for conversation with anyone but himself; and to -him she had hardly courage to speak. - -She inquired after his sister, but could do no more. - -“It is a long time, Mr. Bingley, since you went away,” said Mrs. Bennet. - -He readily agreed to it. - -“I began to be afraid you would never come back again. People _did_ say, -you meant to quit the place entirely at Michaelmas; but, however, I hope -it is not true. A great many changes have happened in the neighbourhood -since you went away. Miss Lucas is married and settled: and one of my -own daughters. I suppose you have heard of it; indeed, you must have -seen it in the papers. It was in the ‘Times’ and the ‘Courier,’ I know; -though it was not put in as it ought to be. It was only said, ‘Lately, -George Wickham, Esq., to Miss Lydia Bennet,’ without there being a -syllable said of her father, or the place where she lived, or anything. -It was my brother Gardiner’s drawing up, too, and I wonder how he came -to make such an awkward business of it. Did you see it?” - -Bingley replied that he did, and made his congratulations. Elizabeth -dared not lift up her eyes. How Mr. Darcy looked, therefore, she could -not tell. - -“It is a delightful thing, to be sure, to have a daughter well married,” -continued her mother; “but at the same time, Mr. Bingley, it is very -hard to have her taken away from me. They are gone down to Newcastle, a -place quite northward it seems, and there they are to stay, I do not -know how long. His regiment is there; for I suppose you have heard of -his leaving the ----shire, and of his being gone into the Regulars. -Thank heaven! he has _some_ friends, though, perhaps, not so many as he -deserves.” - -Elizabeth, who knew this to be levelled at Mr. Darcy, was in such misery -of shame that she could hardly keep her seat. It drew from her, however, -the exertion of speaking, which nothing else had so effectually done -before; and she asked Bingley whether he meant to make any stay in the -country at present. A few weeks, he believed. - -“When you have killed all your own birds, Mr. Bingley,” said her mother, -“I beg you will come here and shoot as many as you please on Mr. -Bennet’s manor. I am sure he will be vastly happy to oblige you, and -will save all the best of the coveys for you.” - -Elizabeth’s misery increased at such unnecessary, such officious -attention! Were the same fair prospect to arise at present, as had -flattered them a year ago, everything, she was persuaded, would be -hastening to the same vexatious conclusion. At that instant she felt, -that years of happiness could not make Jane or herself amends for -moments of such painful confusion. - -“The first wish of my heart,” said she to herself, “is never more to be -in company with either of them. Their society can afford no pleasure -that will atone for such wretchedness as this! Let me never see either -one or the other again!” - -Yet the misery, for which years of happiness were to offer no -compensation, received soon afterwards material relief, from observing -how much the beauty of her sister rekindled the admiration of her former -lover. When first he came in, he had spoken to her but little, but every -five minutes seemed to be giving her more of his attention. He found her -as handsome as she had been last year; as good-natured, and as -unaffected, though not quite so chatty. Jane was anxious that no -difference should be perceived in her at all, and was really persuaded -that she talked as much as ever; but her mind was so busily engaged, -that she did not always know when she was silent. - -When the gentlemen rose to go away, Mrs. Bennet was mindful of her -intended civility, and they were invited and engaged to dine at -Longbourn in a few days’ time. - -“You are quite a visit in my debt, Mr. Bingley,” she added; “for when -you went to town last winter, you promised to take a family dinner with -us as soon as you returned. I have not forgot, you see; and I assure you -I was very much disappointed that you did not come back and keep your -engagement.” - -Bingley looked a little silly at this reflection, and said something of -his concern at having been prevented by business. They then went away. - -Mrs. Bennet had been strongly inclined to ask them to stay and dine -there that day; but, though she always kept a very good table, she did -not think anything less than two courses could be good enough for a man -on whom she had such anxious designs, or satisfy the appetite and pride -of one who had ten thousand a year. - - - - -[Illustration: - - “Jane happened to look round” -] - - - - -CHAPTER LIV. - - -[Illustration] - -As soon as they were gone, Elizabeth walked out to recover her spirits; -or, in other words, to dwell without interruption on those subjects -which must deaden them more. Mr. Darcy’s behaviour astonished and vexed -her. - -“Why, if he came only to be silent, grave, and indifferent,” said she, -“did he come at all?” - -She could settle it in no way that gave her pleasure. - -“He could be still amiable, still pleasing to my uncle and aunt, when he -was in town; and why not to me? If he fears me, why come hither? If he -no longer cares for me, why silent? Teasing, teasing man! I will think -no more about him.” - -Her resolution was for a short time involuntarily kept by the approach -of her sister, who joined her with a cheerful look which showed her -better satisfied with their visitors than Elizabeth. - -“Now,” said she, “that this first meeting is over, I feel perfectly -easy. I know my own strength, and I shall never be embarrassed again by -his coming. I am glad he dines here on Tuesday. It will then be publicly -seen, that on both sides we meet only as common and indifferent -acquaintance.” - -“Yes, very indifferent, indeed,” said Elizabeth, laughingly. “Oh, Jane! -take care.” - -“My dear Lizzy, you cannot think me so weak as to be in danger now.” - -“I think you are in very great danger of making him as much in love with -you as ever.” - -They did not see the gentlemen again till Tuesday; and Mrs. Bennet, in -the meanwhile, was giving way to all the happy schemes which the -good-humour and common politeness of Bingley, in half an hour’s visit, -had revived. - -On Tuesday there was a large party assembled at Longbourn; and the two -who were most anxiously expected, to the credit of their punctuality as -sportsmen, were in very good time. When they repaired to the -dining-room, Elizabeth eagerly watched to see whether Bingley would take -the place which, in all their former parties, had belonged to him, by -her sister. Her prudent mother, occupied by the same ideas, forbore to -invite him to sit by herself. On entering the room, he seemed to -hesitate; but Jane happened to look round, and happened to smile: it was -decided. He placed himself by her. - -Elizabeth, with a triumphant sensation, looked towards his friend. He -bore it with noble indifference; and she would have imagined that -Bingley had received his sanction to be happy, had she not seen his eyes -likewise turned towards Mr. Darcy, with an expression of half-laughing -alarm. - -His behaviour to her sister was such during dinnertime as showed an -admiration of her, which, though more guarded than formerly, persuaded -Elizabeth, that, if left wholly to himself, Jane’s happiness, and his -own, would be speedily secured. Though she dared not depend upon the -consequence, she yet received pleasure from observing his behaviour. It -gave her all the animation that her spirits could boast; for she was in -no cheerful humour. Mr. Darcy was almost as far from her as the table -could divide them. He was on one side of her mother. She knew how little -such a situation would give pleasure to either, or make either appear to -advantage. She was not near enough to hear any of their discourse; but -she could see how seldom they spoke to each other, and how formal and -cold was their manner whenever they did. Her mother’s ungraciousness -made the sense of what they owed him more painful to Elizabeth’s mind; -and she would, at times, have given anything to be privileged to tell -him, that his kindness was neither unknown nor unfelt by the whole of -the family. - -She was in hopes that the evening would afford some opportunity of -bringing them together; that the whole of the visit would not pass away -without enabling them to enter into something more of conversation, -than the mere ceremonious salutation attending his entrance. Anxious and -uneasy, the period which passed in the drawing-room before the gentlemen -came, was wearisome and dull to a degree that almost made her uncivil. -She looked forward to their entrance as the point on which all her -chance of pleasure for the evening must depend. - -“If he does not come to me, _then_,” said she, “I shall give him up for -ever.” - -The gentlemen came; and she thought he looked as if he would have -answered her hopes; but, alas! the ladies had crowded round the table, -where Miss Bennet was making tea, and Elizabeth pouring out the coffee, -in so close a confederacy, that there was not a single vacancy near her -which would admit of a chair. And on the gentlemen’s approaching, one of -the girls moved closer to her than ever, and said, in a whisper,-- - -“The men shan’t come and part us, I am determined. We want none of them; -do we?” - -Darcy had walked away to another part of the room. She followed him with -her eyes, envied everyone to whom he spoke, had scarcely patience enough -to help anybody to coffee, and then was enraged against herself for -being so silly! - -“A man who has once been refused! How could I ever be foolish enough to -expect a renewal of his love? Is there one among the sex who would not -protest against such a weakness as a second proposal to the same woman? -There is no indignity so abhorrent to their feelings.” - -She was a little revived, however, by his bringing back his coffee-cup -himself; and she seized the opportunity of saying,-- - -“Is your sister at Pemberley still?” - -“Yes; she will remain there till Christmas.” - -“And quite alone? Have all her friends left her?” - -“Mrs. Annesley is with her. The others have been gone on to Scarborough -these three weeks.” - -She could think of nothing more to say; but if he wished to converse -with her, he might have better success. He stood by her, however, for -some minutes, in silence; and, at last, on the young lady’s whispering -to Elizabeth again, he walked away. - -When the tea things were removed, and the card tables placed, the ladies -all rose; and Elizabeth was then hoping to be soon joined by him, when -all her views were overthrown, by seeing him fall a victim to her -mother’s rapacity for whist players, and in a few moments after seated -with the rest of the party. She now lost every expectation of pleasure. -They were confined for the evening at different tables; and she had -nothing to hope, but that his eyes were so often turned towards her side -of the room, as to make him play as unsuccessfully as herself. - -Mrs. Bennet had designed to keep the two Netherfield gentlemen to -supper; but their carriage was, unluckily, ordered before any of the -others, and she had no opportunity of detaining them. - -“Well, girls,” said she, as soon as they were left to themselves, “what -say you to the day? I think everything has passed off uncommonly well, I -assure you. The dinner was as well dressed as any I ever saw. The -venison was roasted to a turn--and everybody said, they never saw so fat -a haunch. The soup was fifty times better than what we had at the -Lucases’ last week; and even Mr. Darcy acknowledged that the partridges -were remarkably well done; and I suppose he has two or three French -cooks at least. And, my dear Jane, I never saw you look in greater -beauty. Mrs. Long said so too, for I asked her whether you did not. And -what do you think she said besides? ‘Ah! Mrs. Bennet, we shall have her -at Netherfield at last!’ She did, indeed. I do think Mrs. Long is as -good a creature as ever lived--and her nieces are very pretty behaved -girls, and not at all handsome: I like them prodigiously.” - -[Illustration: - - “M^{rs}. Long and her nieces.” -] - -Mrs. Bennet, in short, was in very great spirits: she had seen enough of -Bingley’s behaviour to Jane to be convinced that she would get him at -last; and her expectations of advantage to her family, when in a happy -humour, were so far beyond reason, that she was quite disappointed at -not seeing him there again the next day, to make his proposals. - -“It has been a very agreeable day,” said Miss Bennet to Elizabeth. “The -party seemed so well selected, so suitable one with the other. I hope we -may often meet again.” - -Elizabeth smiled. - -“Lizzy, you must not do so. You must not suspect me. It mortifies me. I -assure you that I have now learnt to enjoy his conversation as an -agreeable and sensible young man without having a wish beyond it. I am -perfectly satisfied, from what his manners now are, that he never had -any design of engaging my affection. It is only that he is blessed with -greater sweetness of address, and a stronger desire of generally -pleasing, than any other man.” - -“You are very cruel,” said her sister, “you will not let me smile, and -are provoking me to it every moment.” - -“How hard it is in some cases to be believed! And how impossible in -others! But why should you wish to persuade me that I feel more than I -acknowledge?” - -“That is a question which I hardly know how to answer. We all love to -instruct, though we can teach only what is not worth knowing. Forgive -me; and if you persist in indifference, do not make _me_ your -confidante.” - - - - -[Illustration: - - “Lizzy, my dear, I want to speak to you.” -] - - - - -CHAPTER LV. - - -[Illustration] - -A few days after this visit, Mr. Bingley called again, and alone. His -friend had left him that morning for London, but was to return home in -ten days’ time. He sat with them above an hour, and was in remarkably -good spirits. Mrs. Bennet invited him to dine with them; but, with many -expressions of concern, he confessed himself engaged elsewhere. - -“Next time you call,” said she, “I hope we shall be more lucky.” - -He should be particularly happy at any time, etc., etc.; and if she -would give him leave, would take an early opportunity of waiting on -them. - -“Can you come to-morrow?” - -Yes, he had no engagement at all for to-morrow; and her invitation was -accepted with alacrity. - -He came, and in such very good time, that the ladies were none of them -dressed. In ran Mrs. Bennet to her daughters’ room, in her -dressing-gown, and with her hair half finished, crying out,-- - -“My dear Jane, make haste and hurry down. He is come--Mr. Bingley is -come. He is, indeed. Make haste, make haste. Here, Sarah, come to Miss -Bennet this moment, and help her on with her gown. Never mind Miss -Lizzy’s hair.” - -“We will be down as soon as we can,” said Jane; “but I dare say Kitty is -forwarder than either of us, for she went upstairs half an hour ago.” - -“Oh! hang Kitty! what has she to do with it? Come, be quick, be quick! -where is your sash, my dear?” - -But when her mother was gone, Jane would not be prevailed on to go down -without one of her sisters. - -The same anxiety to get them by themselves was visible again in the -evening. After tea, Mr. Bennet retired to the library, as was his -custom, and Mary went upstairs to her instrument. Two obstacles of the -five being thus removed, Mrs. Bennet sat looking and winking at -Elizabeth and Catherine for a considerable time, without making any -impression on them. Elizabeth would not observe her; and when at last -Kitty did, she very innocently said, “What is the matter, mamma? What do -you keep winking at me for? What am I to do?” - -“Nothing, child, nothing. I did not wink at you.” She then sat still -five minutes longer; but unable to waste such a precious occasion, she -suddenly got up, and saying to Kitty,-- - -“Come here, my love, I want to speak to you,” took her out of the room. -Jane instantly gave a look at Elizabeth which spoke her distress at such -premeditation, and her entreaty that _she_ would not give in to it. In a -few minutes, Mrs. Bennet half opened the door and called out,-- - -“Lizzy, my dear, I want to speak with you.” - -Elizabeth was forced to go. - -“We may as well leave them by themselves, you know,” said her mother as -soon as she was in the hall. “Kitty and I are going upstairs to sit in -my dressing-room.” - -Elizabeth made no attempt to reason with her mother, but remained -quietly in the hall till she and Kitty were out of sight, then returned -into the drawing-room. - -Mrs. Bennet’s schemes for this day were ineffectual. Bingley was -everything that was charming, except the professed lover of her -daughter. His ease and cheerfulness rendered him a most agreeable -addition to their evening party; and he bore with the ill-judged -officiousness of the mother, and heard all her silly remarks with a -forbearance and command of countenance particularly grateful to the -daughter. - -He scarcely needed an invitation to stay supper; and before he went away -an engagement was formed, chiefly through his own and Mrs. Bennet’s -means, for his coming next morning to shoot with her husband. - -After this day, Jane said no more of her indifference. Not a word passed -between the sisters concerning Bingley; but Elizabeth went to bed in the -happy belief that all must speedily be concluded, unless Mr. Darcy -returned within the stated time. Seriously, however, she felt tolerably -persuaded that all this must have taken place with that gentleman’s -concurrence. - -Bingley was punctual to his appointment; and he and Mr. Bennet spent the -morning together, as had been agreed on. The latter was much more -agreeable than his companion expected. There was nothing of presumption -or folly in Bingley that could provoke his ridicule, or disgust him into -silence; and he was more communicative, and less eccentric, than the -other had ever seen him. Bingley of course returned with him to dinner; -and in the evening Mrs. Bennet’s invention was again at work to get -everybody away from him and her daughter. Elizabeth, who had a letter to -write, went into the breakfast-room for that purpose soon after tea; for -as the others were all going to sit down to cards, she could not be -wanted to counteract her mother’s schemes. - -But on her returning to the drawing-room, when her letter was finished, -she saw, to her infinite surprise, there was reason to fear that her -mother had been too ingenious for her. On opening the door, she -perceived her sister and Bingley standing together over the hearth, as -if engaged in earnest conversation; and had this led to no suspicion, -the faces of both, as they hastily turned round and moved away from each -other, would have told it all. _Their_ situation was awkward enough; but -_hers_ she thought was still worse. Not a syllable was uttered by -either; and Elizabeth was on the point of going away again, when -Bingley, who as well as the other had sat down, suddenly rose, and, -whispering a few words to her sister, ran out of the room. - -Jane could have no reserves from Elizabeth, where confidence would give -pleasure; and, instantly embracing her, acknowledged, with the liveliest -emotion, that she was the happiest creature in the world. - -“’Tis too much!” she added, “by far too much. I do not deserve it. Oh, -why is not everybody as happy?” - -Elizabeth’s congratulations were given with a sincerity, a warmth, a -delight, which words could but poorly express. Every sentence of -kindness was a fresh source of happiness to Jane. But she would not -allow herself to stay with her sister, or say half that remained to be -said, for the present. - -“I must go instantly to my mother,” she cried. “I would not on any -account trifle with her affectionate solicitude, or allow her to hear it -from anyone but myself. He is gone to my father already. Oh, Lizzy, to -know that what I have to relate will give such pleasure to all my dear -family! how shall I bear so much happiness?” - -She then hastened away to her mother, who had purposely broken up the -card-party, and was sitting upstairs with Kitty. - -Elizabeth, who was left by herself, now smiled at the rapidity and ease -with which an affair was finally settled, that had given them so many -previous months of suspense and vexation. - -“And this,” said she, “is the end of all his friend’s anxious -circumspection! of all his sister’s falsehood and contrivance! the -happiest, wisest, and most reasonable end!” - -In a few minutes she was joined by Bingley, whose conference with her -father had been short and to the purpose. - -“Where is your sister?” said he hastily, as he opened the door. - -“With my mother upstairs. She will be down in a moment, I dare say.” - -He then shut the door, and, coming up to her, claimed the good wishes -and affection of a sister. Elizabeth honestly and heartily expressed her -delight in the prospect of their relationship. They shook hands with -great cordiality; and then, till her sister came down, she had to listen -to all he had to say of his own happiness, and of Jane’s perfections; -and in spite of his being a lover, Elizabeth really believed all his -expectations of felicity to be rationally founded, because they had for -basis the excellent understanding and super-excellent disposition of -Jane, and a general similarity of feeling and taste between her and -himself. - -It was an evening of no common delight to them all; the satisfaction of -Miss Bennet’s mind gave such a glow of sweet animation to her face, as -made her look handsomer than ever. Kitty simpered and smiled, and hoped -her turn was coming soon. Mrs. Bennet could not give her consent, or -speak her approbation in terms warm enough to satisfy her feelings, -though she talked to Bingley of nothing else, for half an hour; and when -Mr. Bennet joined them at supper, his voice and manner plainly showed -how really happy he was. - -Not a word, however, passed his lips in allusion to it, till their -visitor took his leave for the night; but as soon as he was gone, he -turned to his daughter and said,-- - -“Jane, I congratulate you. You will be a very happy woman.” - -Jane went to him instantly, kissed him, and thanked him for his -goodness. - -“You are a good girl,” he replied, “and I have great pleasure in -thinking you will be so happily settled. I have not a doubt of your -doing very well together. Your tempers are by no means unlike. You are -each of you so complying, that nothing will ever be resolved on; so -easy, that every servant will cheat you; and so generous, that you will -always exceed your income.” - -“I hope not so. Imprudence or thoughtlessness in money matters would be -unpardonable in _me_.” - -“Exceed their income! My dear Mr. Bennet,” cried his wife, “what are you -talking of? Why, he has four or five thousand a year, and very likely -more.” Then addressing her daughter, “Oh, my dear, dear Jane, I am so -happy! I am sure I shan’t get a wink of sleep all night. I knew how it -would be. I always said it must be so, at last. I was sure you could not -be so beautiful for nothing! I remember, as soon as ever I saw him, when -he first came into Hertfordshire last year, I thought how likely it was -that you should come together. Oh, he is the handsomest young man that -ever was seen!” - -Wickham, Lydia, were all forgotten. Jane was beyond competition her -favourite child. At that moment she cared for no other. Her younger -sisters soon began to make interest with her for objects of happiness -which she might in future be able to dispense. - -Mary petitioned for the use of the library at Netherfield; and Kitty -begged very hard for a few balls there every winter. - -Bingley, from this time, was of course a daily visitor at Longbourn; -coming frequently before breakfast, and always remaining till after -supper; unless when some barbarous neighbour, who could not be enough -detested, had given him an invitation to dinner, which he thought -himself obliged to accept. - -Elizabeth had now but little time for conversation with her sister; for -while he was present Jane had no attention to bestow on anyone else: but -she found herself considerably useful to both of them, in those hours of -separation that must sometimes occur. In the absence of Jane, he always -attached himself to Elizabeth for the pleasure of talking of her; and -when Bingley was gone, Jane constantly sought the same means of relief. - -“He has made me so happy,” said she, one evening, “by telling me that he -was totally ignorant of my being in town last spring! I had not believed -it possible.” - -“I suspected as much,” replied Elizabeth. “But how did he account for -it?” - -“It must have been his sisters’ doing. They were certainly no friends to -his acquaintance with me, which I cannot wonder at, since he might have -chosen so much more advantageously in many respects. But when they see, -as I trust they will, that their brother is happy with me, they will -learn to be contented, and we shall be on good terms again: though we -can never be what we once were to each other.” - -“That is the most unforgiving speech,” said Elizabeth, “that I ever -heard you utter. Good girl! It would vex me, indeed, to see you again -the dupe of Miss Bingley’s pretended regard.” - -“Would you believe it, Lizzy, that when he went to town last November he -really loved me, and nothing but a persuasion of _my_ being indifferent -would have prevented his coming down again?” - -“He made a little mistake, to be sure; but it is to the credit of his -modesty.” - -This naturally introduced a panegyric from Jane on his diffidence, and -the little value he put on his own good qualities. - -Elizabeth was pleased to find that he had not betrayed the interference -of his friend; for, though Jane had the most generous and forgiving -heart in the world, she knew it was a circumstance which must prejudice -her against him. - -“I am certainly the most fortunate creature that ever existed!” cried -Jane. “Oh, Lizzy, why am I thus singled from my family, and blessed -above them all? If I could but see you as happy! If there were but such -another man for you!” - -“If you were to give me forty such men I never could be so happy as you. -Till I have your disposition, your goodness, I never can have your -happiness. No, no, let me shift for myself; and, perhaps, if I have very -good luck, I may meet with another Mr. Collins in time.” - -The situation of affairs in the Longbourn family could not be long a -secret. Mrs. Bennet was privileged to whisper it to Mrs. Philips, and -she ventured, without any permission, to do the same by all her -neighbours in Meryton. - -The Bennets were speedily pronounced to be the luckiest family in the -world; though only a few weeks before, when Lydia had first run away, -they had been generally proved to be marked out for misfortune. - - - - -[Illustration] - - - - -CHAPTER LVI. - - -[Illustration] - -One morning, about a week after Bingley’s engagement with Jane had been -formed, as he and the females of the family were sitting together in the -dining-room, their attention was suddenly drawn to the window by the -sound of a carriage; and they perceived a chaise and four driving up the -lawn. It was too early in the morning for visitors; and besides, the -equipage did not answer to that of any of their neighbours. The horses -were post; and neither the carriage, nor the livery of the servant who -preceded it, were familiar to them. As it was certain, however, that -somebody was coming, Bingley instantly prevailed on Miss Bennet to avoid -the confinement of such an intrusion, and walk away with him into the -shrubbery. They both set off; and the conjectures of the remaining three -continued, though with little satisfaction, till the door was thrown -open, and their visitor entered. It was Lady Catherine de Bourgh. - -They were of course all intending to be surprised: but their -astonishment was beyond their expectation; and on the part of Mrs. -Bennet and Kitty, though she was perfectly unknown to them, even -inferior to what Elizabeth felt. - -She entered the room with an air more than usually ungracious, made no -other reply to Elizabeth’s salutation than a slight inclination of the -head, and sat down without saying a word. Elizabeth had mentioned her -name to her mother on her Ladyship’s entrance, though no request of -introduction had been made. - -Mrs. Bennet, all amazement, though flattered by having a guest of such -high importance, received her with the utmost politeness. After sitting -for a moment in silence, she said, very stiffly, to Elizabeth,-- - -“I hope you are well, Miss Bennet. That lady, I suppose, is your -mother?” - -Elizabeth replied very concisely that she was. - -“And _that_, I suppose, is one of your sisters?” - -“Yes, madam,” said Mrs. Bennet, delighted to speak to a Lady Catherine. -“She is my youngest girl but one. My youngest of all is lately married, -and my eldest is somewhere about the ground, walking with a young man, -who, I believe, will soon become a part of the family.” - -“You have a very small park here,” returned Lady Catherine, after a -short silence. - -“It is nothing in comparison of Rosings, my Lady, I dare say; but, I -assure you, it is much larger than Sir William Lucas’s.” - -“This must be a most inconvenient sitting-room for the evening in -summer: the windows are full west.” - -Mrs. Bennet assured her that they never sat there after dinner; and then -added,-- - -“May I take the liberty of asking your Ladyship whether you left Mr. and -Mrs. Collins well?” - -“Yes, very well. I saw them the night before last.” - -Elizabeth now expected that she would produce a letter for her from -Charlotte, as it seemed the only probable motive for her calling. But no -letter appeared, and she was completely puzzled. - -Mrs. Bennet, with great civility, begged her Ladyship to take some -refreshment: but Lady Catherine very resolutely, and not very politely, -declined eating anything; and then, rising up, said to Elizabeth,-- - -“Miss Bennet, there seemed to be a prettyish kind of a little wilderness -on one side of your lawn. I should be glad to take a turn in it, if you -will favour me with your company.” - -“Go, my dear,” cried her mother, “and show her Ladyship about the -different walks. I think she will be pleased with the hermitage.” - -Elizabeth obeyed; and, running into her own room for her parasol, -attended her noble guest downstairs. As they passed through the hall, -Lady Catherine opened the doors into the dining-parlour and -drawing-room, and pronouncing them, after a short survey, to be -decent-looking rooms, walked on. - -Her carriage remained at the door, and Elizabeth saw that her -waiting-woman was in it. They proceeded in silence along the gravel walk -that led to the copse; Elizabeth was determined to make no effort for -conversation with a woman who was now more than usually insolent and -disagreeable. - -[Illustration: - -“After a short survey” - -[_Copyright 1894 by George Allen._]] - -“How could I ever think her like her nephew?” said she, as she looked in -her face. - -As soon as they entered the copse, Lady Catherine began in the following -manner:-- - -“You can be at no loss, Miss Bennet, to understand the reason of my -journey hither. Your own heart, your own conscience, must tell you why I -come.” - -Elizabeth looked with unaffected astonishment. - -“Indeed, you are mistaken, madam; I have not been at all able to account -for the honour of seeing you here.” - -“Miss Bennet,” replied her Ladyship, in an angry tone, “you ought to -know that I am not to be trifled with. But however insincere _you_ may -choose to be, you shall not find _me_ so. My character has ever been -celebrated for its sincerity and frankness; and in a cause of such -moment as this, I shall certainly not depart from it. A report of a most -alarming nature reached me two days ago. I was told, that not only your -sister was on the point of being most advantageously married, but that -_you_--that Miss Elizabeth Bennet would, in all likelihood, be soon -afterwards united to my nephew--my own nephew, Mr. Darcy. Though I -_know_ it must be a scandalous falsehood, though I would not injure him -so much as to suppose the truth of it possible, I instantly resolved on -setting off for this place, that I might make my sentiments known to -you.” - -“If you believed it impossible to be true,” said Elizabeth, colouring -with astonishment and disdain, “I wonder you took the trouble of coming -so far. What could your Ladyship propose by it?” - -“At once to insist upon having such a report universally contradicted.” - -“Your coming to Longbourn, to see me and my family,” said Elizabeth -coolly, “will be rather a confirmation of it--if, indeed, such a report -is in existence.” - -“If! do you then pretend to be ignorant of it? Has it not been -industriously circulated by yourselves? Do you not know that such a -report is spread abroad?” - -“I never heard that it was.” - -“And can you likewise declare, that there is no _foundation_ for it?” - -“I do not pretend to possess equal frankness with your Ladyship. _You_ -may ask questions which _I_ shall not choose to answer.” - -“This is not to be borne. Miss Bennet, I insist on being satisfied. Has -he, has my nephew, made you an offer of marriage?” - -“Your Ladyship has declared it to be impossible.” - -“It ought to be so; it must be so, while he retains the use of his -reason. But _your_ arts and allurements may, in a moment of infatuation, -have made him forget what he owes to himself and to all his family. You -may have drawn him in.” - -“If I have, I shall be the last person to confess it.” - -“Miss Bennet, do you know who I am? I have not been accustomed to such -language as this. I am almost the nearest relation he has in the world, -and am entitled to know all his dearest concerns.” - -“But you are not entitled to know _mine_; nor will such behaviour as -this ever induce me to be explicit.” - -“Let me be rightly understood. This match, to which you have the -presumption to aspire, can never take place. No, never. Mr. Darcy is -engaged to _my daughter_. Now, what have you to say?” - -“Only this,--that if he is so, you can have no reason to suppose he will -make an offer to me.” - -Lady Catherine hesitated for a moment, and then replied,-- - -“The engagement between them is of a peculiar kind. From their infancy, -they have been intended for each other. It was the favourite wish of -_his_ mother, as well as of hers. While in their cradles we planned the -union; and now, at the moment when the wishes of both sisters would be -accomplished, is their marriage to be prevented by a young woman of -inferior birth, of no importance in the world, and wholly unallied to -the family? Do you pay no regard to the wishes of his friends--to his -tacit engagement with Miss de Bourgh? Are you lost to every feeling of -propriety and delicacy? Have you not heard me say, that from his -earliest hours he was destined for his cousin?” - -“Yes; and I had heard it before. But what is that to me? If there is no -other objection to my marrying your nephew, I shall certainly not be -kept from it by knowing that his mother and aunt wished him to marry -Miss de Bourgh. You both did as much as you could in planning the -marriage. Its completion depended on others. If Mr. Darcy is neither by -honour nor inclination confined to his cousin, why is not he to make -another choice? And if I am that choice, why may not I accept him?” - -“Because honour, decorum, prudence--nay, interest--forbid it. Yes, Miss -Bennet, interest; for do not expect to be noticed by his family or -friends, if you wilfully act against the inclinations of all. You will -be censured, slighted, and despised, by everyone connected with him. -Your alliance will be a disgrace; your name will never even be mentioned -by any of us.” - -“These are heavy misfortunes,” replied Elizabeth. “But the wife of Mr. -Darcy must have such extraordinary sources of happiness necessarily -attached to her situation, that she could, upon the whole, have no cause -to repine.” - -“Obstinate, headstrong girl! I am ashamed of you! Is this your gratitude -for my attentions to you last spring? Is nothing due to me on that -score? Let us sit down. You are to understand, Miss Bennet, that I came -here with the determined resolution of carrying my purpose; nor will I -be dissuaded from it. I have not been used to submit to any person’s -whims. I have not been in the habit of brooking disappointment.” - -“_That_ will make your Ladyship’s situation at present more pitiable; -but it will have no effect on _me_.” - -“I will not be interrupted! Hear me in silence. My daughter and my -nephew are formed for each other. They are descended, on the maternal -side, from the same noble line; and, on the father’s, from respectable, -honourable, and ancient, though untitled, families. Their fortune on -both sides is splendid. They are destined for each other by the voice of -every member of their respective houses; and what is to divide -them?--the upstart pretensions of a young woman without family, -connections, or fortune! Is this to be endured? But it must not, shall -not be! If you were sensible of your own good, you would not wish to -quit the sphere in which you have been brought up.” - -“In marrying your nephew, I should not consider myself as quitting that -sphere. He is a gentleman; I am a gentleman’s daughter; so far we are -equal.” - -“True. You _are_ a gentleman’s daughter. But what was your mother? Who -are your uncles and aunts? Do not imagine me ignorant of their -condition.” - -“Whatever my connections may be,” said Elizabeth, “if your nephew does -not object to them, they can be nothing to _you_.” - -“Tell me, once for all, are you engaged to him?” - -Though Elizabeth would not, for the mere purpose of obliging Lady -Catherine, have answered this question, she could not but say, after a -moment’s deliberation,-- - -“I am not.” - -Lady Catherine seemed pleased. - -“And will you promise me never to enter into such an engagement?” - -“I will make no promise of the kind.” - -“Miss Bennet, I am shocked and astonished. I expected to find a more -reasonable young woman. But do not deceive yourself into a belief that I -will ever recede. I shall not go away till you have given me the -assurance I require.” - -“And I certainly _never_ shall give it. I am not to be intimidated into -anything so wholly unreasonable. Your Ladyship wants Mr. Darcy to marry -your daughter; but would my giving you the wished-for promise make -_their_ marriage at all more probable? Supposing him to be attached to -me, would _my_ refusing to accept his hand make him wish to bestow it on -his cousin? Allow me to say, Lady Catherine, that the arguments with -which you have supported this extraordinary application have been as -frivolous as the application was ill-judged. You have widely mistaken my -character, if you think I can be worked on by such persuasions as these. -How far your nephew might approve of your interference in _his_ affairs, -I cannot tell; but you have certainly no right to concern yourself in -mine. I must beg, therefore, to be importuned no further on the -subject.” - -“Not so hasty, if you please. I have by no means done. To all the -objections I have already urged I have still another to add. I am no -stranger to the particulars of your youngest sister’s infamous -elopement. I know it all; that the young man’s marrying her was a -patched-up business, at the expense of your father and uncle. And is -_such_ a girl to be my nephew’s sister? Is _her_ husband, who is the son -of his late father’s steward, to be his brother? Heaven and earth!--of -what are you thinking? Are the shades of Pemberley to be thus polluted?” - -“You can _now_ have nothing further to say,” she resentfully answered. -“You have insulted me, in every possible method. I must beg to return to -the house.” - -And she rose as she spoke. Lady Catherine rose also, and they turned -back. Her Ladyship was highly incensed. - -“You have no regard, then, for the honour and credit of my nephew! -Unfeeling, selfish girl! Do you not consider that a connection with you -must disgrace him in the eyes of everybody?” - -“Lady Catherine, I have nothing further to say. You know my sentiments.” - -“You are then resolved to have him?” - -“I have said no such thing. I am only resolved to act in that manner, -which will, in my own opinion, constitute my happiness, without -reference to _you_, or to any person so wholly unconnected with me.” - -“It is well. You refuse, then, to oblige me. You refuse to obey the -claims of duty, honour, and gratitude. You are determined to ruin him in -the opinion of all his friends, and make him the contempt of the world.” - -“Neither duty, nor honour, nor gratitude,” replied Elizabeth, “has any -possible claim on me, in the present instance. No principle of either -would be violated by my marriage with Mr. Darcy. And with regard to the -resentment of his family, or the indignation of the world, if the former -_were_ excited by his marrying me, it would not give me one moment’s -concern--and the world in general would have too much sense to join in -the scorn.” - -“And this is your real opinion! This is your final resolve! Very well. I -shall now know how to act. Do not imagine, Miss Bennet, that your -ambition will ever be gratified. I came to try you. I hoped to find you -reasonable; but depend upon it I will carry my point.” - -In this manner Lady Catherine talked on till they were at the door of -the carriage, when, turning hastily round, she added,-- - -“I take no leave of you, Miss Bennet. I send no compliments to your -mother. You deserve no such attention. I am most seriously displeased.” - -Elizabeth made no answer; and without attempting to persuade her -Ladyship to return into the house, walked quietly into it herself. She -heard the carriage drive away as she proceeded upstairs. Her mother -impatiently met her at the door of her dressing-room, to ask why Lady -Catherine would not come in again and rest herself. - -“She did not choose it,” said her daughter; “she would go.” - -“She is a very fine-looking woman! and her calling here was prodigiously -civil! for she only came, I suppose, to tell us the Collinses were well. -She is on her road somewhere, I dare say; and so, passing through -Meryton, thought she might as well call on you. I suppose she had -nothing particular to say to you, Lizzy?” - -Elizabeth was forced to give in to a little falsehood here; for to -acknowledge the substance of their conversation was impossible. - - - - -[Illustration: - - “But now it comes out” -] - - - - -CHAPTER LVII. - - -[Illustration] - -The discomposure of spirits which this extraordinary visit threw -Elizabeth into could not be easily overcome; nor could she for many -hours learn to think of it less than incessantly. Lady Catherine, it -appeared, had actually taken the trouble of this journey from Rosings -for the sole purpose of breaking off her supposed engagement with Mr. -Darcy. It was a rational scheme, to be sure! but from what the report of -their engagement could originate, Elizabeth was at a loss to imagine; -till she recollected that _his_ being the intimate friend of Bingley, -and _her_ being the sister of Jane, was enough, at a time when the -expectation of one wedding made everybody eager for another, to supply -the idea. She had not herself forgotten to feel that the marriage of her -sister must bring them more frequently together. And her neighbours at -Lucas Lodge, therefore, (for through their communication with the -Collinses, the report, she concluded, had reached Lady Catherine,) had -only set _that_ down as almost certain and immediate which _she_ had -looked forward to as possible at some future time. - -In revolving Lady Catherine’s expressions, however, she could not help -feeling some uneasiness as to the possible consequence of her persisting -in this interference. From what she had said of her resolution to -prevent the marriage, it occurred to Elizabeth that she must meditate an -application to her nephew; and how he might take a similar -representation of the evils attached to a connection with her she dared -not pronounce. She knew not the exact degree of his affection for his -aunt, or his dependence on her judgment, but it was natural to suppose -that he thought much higher of her Ladyship than _she_ could do; and it -was certain, that in enumerating the miseries of a marriage with _one_ -whose immediate connections were so unequal to his own, his aunt would -address him on his weakest side. With his notions of dignity, he would -probably feel that the arguments, which to Elizabeth had appeared weak -and ridiculous, contained much good sense and solid reasoning. - -If he had been wavering before, as to what he should do, which had often -seemed likely, the advice and entreaty of so near a relation might -settle every doubt, and determine him at once to be as happy as dignity -unblemished could make him. In that case he would return no more. Lady -Catherine might see him in her way through town; and his engagement to -Bingley of coming again to Netherfield must give way. - -“If, therefore, an excuse for not keeping his promise should come to his -friend within a few days,” she added, “I shall know how to understand -it. I shall then give over every expectation, every wish of his -constancy. If he is satisfied with only regretting me, when he might -have obtained my affections and hand, I shall soon cease to regret him -at all.” - -The surprise of the rest of the family, on hearing who their visitor had -been, was very great: but they obligingly satisfied it with the same -kind of supposition which had appeased Mrs. Bennet’s curiosity; and -Elizabeth was spared from much teasing on the subject. - -The next morning, as she was going down stairs, she was met by her -father, who came out of his library with a letter in his hand. - -“Lizzy,” said he, “I was going to look for you: come into my room.” - -She followed him thither; and her curiosity to know what he had to tell -her was heightened by the supposition of its being in some manner -connected with the letter he held. It suddenly struck her that it might -be from Lady Catherine, and she anticipated with dismay all the -consequent explanations. - -She followed her father to the fireplace, and they both sat down. He -then said,-- - -“I have received a letter this morning that has astonished me -exceedingly. As it principally concerns yourself, you ought to know its -contents. I did not know before that I had _two_ daughters on the brink -of matrimony. Let me congratulate you on a very important conquest.” - -The colour now rushed into Elizabeth’s cheeks in the instantaneous -conviction of its being a letter from the nephew, instead of the aunt; -and she was undetermined whether most to be pleased that he explained -himself at all, or offended that his letter was not rather addressed to -herself, when her father continued,-- - -“You look conscious. Young ladies have great penetration in such matters -as these; but I think I may defy even _your_ sagacity to discover the -name of your admirer. This letter is from Mr. Collins.” - -“From Mr. Collins! and what can _he_ have to say?” - -“Something very much to the purpose, of course. He begins with -congratulations on the approaching nuptials of my eldest daughter, of -which, it seems, he has been told by some of the good-natured, gossiping -Lucases. I shall not sport with your impatience by reading what he says -on that point. What relates to yourself is as follows:--‘Having thus -offered you the sincere congratulations of Mrs. Collins and myself on -this happy event, let me now add a short hint on the subject of another, -of which we have been advertised by the same authority. Your daughter -Elizabeth, it is presumed, will not long bear the name of Bennet, after -her eldest sister has resigned it; and the chosen partner of her fate -may be reasonably looked up to as one of the most illustrious personages -in this land.’ Can you possibly guess, Lizzy, who is meant by this? -‘This young gentleman is blessed, in a peculiar way, with everything the -heart of mortal can most desire,--splendid property, noble kindred, and -extensive patronage. Yet, in spite of all these temptations, let me warn -my cousin Elizabeth, and yourself, of what evils you may incur by a -precipitate closure with this gentleman’s proposals, which, of course, -you will be inclined to take immediate advantage of.’ Have you any idea, -Lizzy, who this gentleman is? But now it comes out. ‘My motive for -cautioning you is as follows:--We have reason to imagine that his aunt, -Lady Catherine de Bourgh, does not look on the match with a friendly -eye.’ _Mr. Darcy_, you see, is the man! Now, Lizzy, I think I _have_ -surprised you. Could he, or the Lucases, have pitched on any man, within -the circle of our acquaintance, whose name would have given the lie more -effectually to what they related? Mr. Darcy, who never looks at any -woman but to see a blemish, and who probably never looked at _you_ in -his life! It is admirable!” - -Elizabeth tried to join in her father’s pleasantry, but could only force -one most reluctant smile. Never had his wit been directed in a manner so -little agreeable to her. - -“Are you not diverted?” - -“Oh, yes. Pray read on.” - -“‘After mentioning the likelihood of this marriage to her Ladyship last -night, she immediately, with her usual condescension, expressed what she -felt on the occasion; when it became apparent, that, on the score of -some family objections on the part of my cousin, she would never give -her consent to what she termed so disgraceful a match. I thought it my -duty to give the speediest intelligence of this to my cousin, that she -and her noble admirer may be aware of what they are about, and not run -hastily into a marriage which has not been properly sanctioned.’ Mr. -Collins, moreover, adds, ‘I am truly rejoiced that my cousin Lydia’s sad -business has been so well hushed up, and am only concerned that their -living together before the marriage took place should be so generally -known. I must not, however, neglect the duties of my station, or refrain -from declaring my amazement, at hearing that you received the young -couple into your house as soon as they were married. It was an -encouragement of vice; and had I been the rector of Longbourn, I should -very strenuously have opposed it. You ought certainly to forgive them as -a Christian, but never to admit them in your sight, or allow their -names to be mentioned in your hearing.’ _That_ is his notion of -Christian forgiveness! The rest of his letter is only about his dear -Charlotte’s situation, and his expectation of a young olive-branch. But, -Lizzy, you look as if you did not enjoy it. You are not going to be -_missish_, I hope, and pretend to be affronted at an idle report. For -what do we live, but to make sport for our neighbours, and laugh at them -in our turn?” - -“Oh,” cried Elizabeth, “I am exceedingly diverted. But it is so -strange!” - -“Yes, _that_ is what makes it amusing. Had they fixed on any other man -it would have been nothing; but _his_ perfect indifference and _your_ -pointed dislike make it so delightfully absurd! Much as I abominate -writing, I would not give up Mr. Collins’s correspondence for any -consideration. Nay, when I read a letter of his, I cannot help giving -him the preference even over Wickham, much as I value the impudence and -hypocrisy of my son-in-law. And pray, Lizzy, what said Lady Catherine -about this report? Did she call to refuse her consent?” - -To this question his daughter replied only with a laugh; and as it had -been asked without the least suspicion, she was not distressed by his -repeating it. Elizabeth had never been more at a loss to make her -feelings appear what they were not. It was necessary to laugh when she -would rather have cried. Her father had most cruelly mortified her by -what he said of Mr. Darcy’s indifference; and she could do nothing but -wonder at such a want of penetration, or fear that, perhaps, instead of -his seeing too _little_, she might have fancied too _much_. - - - - -[Illustration: - -“The efforts of his aunt” - -[_Copyright 1894 by George Allen._]] - - - - -CHAPTER LVIII. - - -[Illustration] - -Instead of receiving any such letter of excuse from his friend, as -Elizabeth half expected Mr. Bingley to do, he was able to bring Darcy -with him to Longbourn before many days had passed after Lady Catherine’s -visit. The gentlemen arrived early; and, before Mrs. Bennet had time to -tell him of their having seen his aunt, of which her daughter sat in -momentary dread, Bingley, who wanted to be alone with Jane, proposed -their all walking out. It was agreed to. Mrs. Bennet was not in the -habit of walking, Mary could never spare time, but the remaining five -set off together. Bingley and Jane, however, soon allowed the others to -outstrip them. They lagged behind, while Elizabeth, Kitty, and Darcy -were to entertain each other. Very little was said by either; Kitty was -too much afraid of him to talk; Elizabeth was secretly forming a -desperate resolution; and, perhaps, he might be doing the same. - -They walked towards the Lucases’, because Kitty wished to call upon -Maria; and as Elizabeth saw no occasion for making it a general concern, -when Kitty left them she went boldly on with him alone. Now was the -moment for her resolution to be executed; and while her courage was -high, she immediately said,-- - -“Mr. Darcy, I am a very selfish creature, and for the sake of giving -relief to my own feelings care not how much I may be wounding yours. I -can no longer help thanking you for your unexampled kindness to my poor -sister. Ever since I have known it I have been most anxious to -acknowledge to you how gratefully I feel it. Were it known to the rest -of my family I should not have merely my own gratitude to express.” - -“I am sorry, exceedingly sorry,” replied Darcy, in a tone of surprise -and emotion, “that you have ever been informed of what may, in a -mistaken light, have given you uneasiness. I did not think Mrs. Gardiner -was so little to be trusted.” - -“You must not blame my aunt. Lydia’s thoughtlessness first betrayed to -me that you had been concerned in the matter; and, of course, I could -not rest till I knew the particulars. Let me thank you again and again, -in the name of all my family, for that generous compassion which induced -you to take so much trouble, and bear so many mortifications, for the -sake of discovering them.” - -“If you _will_ thank me,” he replied, “let it be for yourself alone. -That the wish of giving happiness to you might add force to the other -inducements which led me on, I shall not attempt to deny. But your -_family_ owe me nothing. Much as I respect them, I believe I thought -only of _you_.” - -Elizabeth was too much embarrassed to say a word. After a short pause, -her companion added, “You are too generous to trifle with me. If your -feelings are still what they were last April, tell me so at once. _My_ -affections and wishes are unchanged; but one word from you will silence -me on this subject for ever.” - -Elizabeth, feeling all the more than common awkwardness and anxiety of -his situation, now forced herself to speak; and immediately, though not -very fluently, gave him to understand that her sentiments had undergone -so material a change since the period to which he alluded, as to make -her receive with gratitude and pleasure his present assurances. The -happiness which this reply produced was such as he had probably never -felt before; and he expressed himself on the occasion as sensibly and as -warmly as a man violently in love can be supposed to do. Had Elizabeth -been able to encounter his eyes, she might have seen how well the -expression of heartfelt delight diffused over his face became him: but -though she could not look she could listen; and he told her of feelings -which, in proving of what importance she was to him, made his affection -every moment more valuable. - -They walked on without knowing in what direction. There was too much to -be thought, and felt, and said, for attention to any other objects. She -soon learnt that they were indebted for their present good understanding -to the efforts of his aunt, who _did_ call on him in her return through -London, and there relate her journey to Longbourn, its motive, and the -substance of her conversation with Elizabeth; dwelling emphatically on -every expression of the latter, which, in her Ladyship’s apprehension, -peculiarly denoted her perverseness and assurance, in the belief that -such a relation must assist her endeavours to obtain that promise from -her nephew which _she_ had refused to give. But, unluckily for her -Ladyship, its effect had been exactly contrariwise. - -“It taught me to hope,” said he, “as I had scarcely ever allowed myself -to hope before. I knew enough of your disposition to be certain, that -had you been absolutely, irrevocably decided against me, you would have -acknowledged it to Lady Catherine frankly and openly.” - -Elizabeth coloured and laughed as she replied, “Yes, you know enough of -my _frankness_ to believe me capable of _that_. After abusing you so -abominably to your face, I could have no scruple in abusing you to all -your relations.” - -“What did you say of me that I did not deserve? For though your -accusations were ill-founded, formed on mistaken premises, my behaviour -to you at the time had merited the severest reproof. It was -unpardonable. I cannot think of it without abhorrence.” - -“We will not quarrel for the greater share of blame annexed to that -evening,” said Elizabeth. “The conduct of neither, if strictly -examined, will be irreproachable; but since then we have both, I hope, -improved in civility.” - -“I cannot be so easily reconciled to myself. The recollection of what I -then said, of my conduct, my manners, my expressions during the whole of -it, is now, and has been many months, inexpressibly painful to me. Your -reproof, so well applied, I shall never forget: ‘Had you behaved in a -more gentlemanlike manner.’ Those were your words. You know not, you can -scarcely conceive, how they have tortured me; though it was some time, I -confess, before I was reasonable enough to allow their justice.” - -“I was certainly very far from expecting them to make so strong an -impression. I had not the smallest idea of their being ever felt in such -a way.” - -“I can easily believe it. You thought me then devoid of every proper -feeling, I am sure you did. The turn of your countenance I shall never -forget, as you said that I could not have addressed you in any possible -way that would induce you to accept me.” - -“Oh, do not repeat what I then said. These recollections will not do at -all. I assure you that I have long been most heartily ashamed of it.” - -Darcy mentioned his letter. “Did it,” said he,--“did it _soon_ make you -think better of me? Did you, on reading it, give any credit to its -contents?” - -She explained what its effects on her had been, and how gradually all -her former prejudices had been removed. - -“I knew,” said he, “that what I wrote must give you pain, but it was -necessary. I hope you have destroyed the letter. There was one part, -especially the opening of it, which I should dread your having the power -of reading again. I can remember some expressions which might justly -make you hate me.” - -“The letter shall certainly be burnt, if you believe it essential to the -preservation of my regard; but, though we have both reason to think my -opinions not entirely unalterable, they are not, I hope, quite so easily -changed as that implies.” - -“When I wrote that letter,” replied Darcy, “I believed myself perfectly -calm and cool; but I am since convinced that it was written in a -dreadful bitterness of spirit.” - -“The letter, perhaps, began in bitterness, but it did not end so. The -adieu is charity itself. But think no more of the letter. The feelings -of the person who wrote and the person who received it are now so widely -different from what they were then, that every unpleasant circumstance -attending it ought to be forgotten. You must learn some of my -philosophy. Think only of the past as its remembrance gives you -pleasure.” - -“I cannot give you credit for any philosophy of the kind. _Your_ -retrospections must be so totally void of reproach, that the contentment -arising from them is not of philosophy, but, what is much better, of -ignorance. But with _me_, it is not so. Painful recollections will -intrude, which cannot, which ought not to be repelled. I have been a -selfish being all my life, in practice, though not in principle. As a -child I was taught what was _right_, but I was not taught to correct my -temper. I was given good principles, but left to follow them in pride -and conceit. Unfortunately an only son (for many years an only _child_), -I was spoiled by my parents, who, though good themselves, (my father -particularly, all that was benevolent and amiable,) allowed, encouraged, -almost taught me to be selfish and overbearing, to care for none beyond -my own family circle, to think meanly of all the rest of the world, to -_wish_ at least to think meanly of their sense and worth compared with -my own. Such I was, from eight to eight-and-twenty; and such I might -still have been but for you, dearest, loveliest Elizabeth! What do I not -owe you! You taught me a lesson, hard indeed at first, but most -advantageous. By you, I was properly humbled. I came to you without a -doubt of my reception. You showed me how insufficient were all my -pretensions to please a woman worthy of being pleased.” - -“Had you then persuaded yourself that I should?” - -“Indeed I had. What will you think of my vanity? I believed you to be -wishing, expecting my addresses.” - -“My manners must have been in fault, but not intentionally, I assure -you. I never meant to deceive you, but my spirits might often lead me -wrong. How you must have hated me after _that_ evening!” - -“Hate you! I was angry, perhaps, at first, but my anger soon began to -take a proper direction.” - -“I am almost afraid of asking what you thought of me when we met at -Pemberley. You blamed me for coming?” - -“No, indeed, I felt nothing but surprise.” - -“Your surprise could not be greater than _mine_ in being noticed by you. -My conscience told me that I deserved no extraordinary politeness, and I -confess that I did not expect to receive _more_ than my due.” - -“My object _then_,” replied Darcy, “was to show you, by every civility -in my power, that I was not so mean as to resent the past; and I hoped -to obtain your forgiveness, to lessen your ill opinion, by letting you -see that your reproofs had been attended to. How soon any other wishes -introduced themselves, I can hardly tell, but I believe in about half -an hour after I had seen you.” - -He then told her of Georgiana’s delight in her acquaintance, and of her -disappointment at its sudden interruption; which naturally leading to -the cause of that interruption, she soon learnt that his resolution of -following her from Derbyshire in quest of her sister had been formed -before he quitted the inn, and that his gravity and thoughtfulness there -had arisen from no other struggles than what such a purpose must -comprehend. - -She expressed her gratitude again, but it was too painful a subject to -each to be dwelt on farther. - -After walking several miles in a leisurely manner, and too busy to know -anything about it, they found at last, on examining their watches, that -it was time to be at home. - -“What could have become of Mr. Bingley and Jane?” was a wonder which -introduced the discussion of _their_ affairs. Darcy was delighted with -their engagement; his friend had given him the earliest information of -it. - -“I must ask whether you were surprised?” said Elizabeth. - -“Not at all. When I went away, I felt that it would soon happen.” - -“That is to say, you had given your permission. I guessed as much.” And -though he exclaimed at the term, she found that it had been pretty much -the case. - -“On the evening before my going to London,” said he, “I made a -confession to him, which I believe I ought to have made long ago. I told -him of all that had occurred to make my former interference in his -affairs absurd and impertinent. His surprise was great. He had never had -the slightest suspicion. I told him, moreover, that I believed myself -mistaken in supposing, as I had done, that your sister was indifferent -to him; and as I could easily perceive that his attachment to her was -unabated, I felt no doubt of their happiness together.” - -Elizabeth could not help smiling at his easy manner of directing his -friend. - -“Did you speak from your own observation,” said she, “when you told him -that my sister loved him, or merely from my information last spring?” - -“From the former. I had narrowly observed her, during the two visits -which I had lately made her here; and I was convinced of her affection.” - -“And your assurance of it, I suppose, carried immediate conviction to -him.” - -“It did. Bingley is most unaffectedly modest. His diffidence had -prevented his depending on his own judgment in so anxious a case, but -his reliance on mine made everything easy. I was obliged to confess one -thing, which for a time, and not unjustly, offended him. I could not -allow myself to conceal that your sister had been in town three months -last winter, that I had known it, and purposely kept it from him. He was -angry. But his anger, I am persuaded, lasted no longer than he remained -in any doubt of your sister’s sentiments. He has heartily forgiven me -now.” - -Elizabeth longed to observe that Mr. Bingley had been a most delightful -friend; so easily guided that his worth was invaluable; but she checked -herself. She remembered that he had yet to learn to be laughed at, and -it was rather too early to begin. In anticipating the happiness of -Bingley, which of course was to be inferior only to his own, he -continued the conversation till they reached the house. In the hall they -parted. - - - - -[Illustration: - - “Unable to utter a syllable” - -[_Copyright 1894 by George Allen._]] - - - - -CHAPTER LIX. - - -[Illustration] - -“My dear Lizzy, where can you have been walking to?” was a question -which Elizabeth received from Jane as soon as she entered the room, and -from all the others when they sat down to table. She had only to say in -reply, that they had wandered about till she was beyond her own -knowledge. She coloured as she spoke; but neither that, nor anything -else, awakened a suspicion of the truth. - -The evening passed quietly, unmarked by anything extraordinary. The -acknowledged lovers talked and laughed; the unacknowledged were silent. -Darcy was not of a disposition in which happiness overflows in mirth; -and Elizabeth, agitated and confused, rather _knew_ that she was happy -than _felt_ herself to be so; for, besides the immediate embarrassment, -there were other evils before her. She anticipated what would be felt in -the family when her situation became known: she was aware that no one -liked him but Jane; and even feared that with the others it was a -_dislike_ which not all his fortune and consequence might do away. - -At night she opened her heart to Jane. Though suspicion was very far -from Miss Bennet’s general habits, she was absolutely incredulous here. - -“You are joking, Lizzy. This cannot be! Engaged to Mr. Darcy! No, no, -you shall not deceive me: I know it to be impossible.” - -“This is a wretched beginning, indeed! My sole dependence was on you; -and I am sure nobody else will believe me, if you do not. Yet, indeed, I -am in earnest. I speak nothing but the truth. He still loves me, and we -are engaged.” - -Jane looked at her doubtingly. “Oh, Lizzy! it cannot be. I know how much -you dislike him.” - -“You know nothing of the matter. _That_ is all to be forgot. Perhaps I -did not always love him so well as I do now; but in such cases as these -a good memory is unpardonable. This is the last time I shall ever -remember it myself.” - -Miss Bennet still looked all amazement. Elizabeth again, and more -seriously, assured her of its truth. - -“Good heaven! can it be really so? Yet now I must believe you,” cried -Jane. “My dear, dear Lizzy, I would, I do congratulate you; but are you -certain--forgive the question--are you quite certain that you can be -happy with him?” - -“There can be no doubt of that. It is settled between us already that we -are to be the happiest couple in the world. But are you pleased, Jane? -Shall you like to have such a brother?” - -“Very, very much. Nothing could give either Bingley or myself more -delight. But we considered it, we talked of it as impossible. And do you -really love him quite well enough? Oh, Lizzy! do anything rather than -marry without affection. Are you quite sure that you feel what you ought -to do?” - -“Oh, yes! You will only think I feel _more_ than I ought to do when I -tell you all.” - -“What do you mean?” - -“Why, I must confess that I love him better than I do Bingley. I am -afraid you will be angry.” - -“My dearest sister, now be, _be_ serious. I want to talk very seriously. -Let me know everything that I am to know without delay. Will you tell me -how long you have loved him?” - -“It has been coming on so gradually, that I hardly know when it began; -but I believe I must date it from my first seeing his beautiful grounds -at Pemberley.” - -Another entreaty that she would be serious, however, produced the -desired effect; and she soon satisfied Jane by her solemn assurances of -attachment. When convinced on that article, Miss Bennet had nothing -further to wish. - -“Now I am quite happy,” said she, “for you will be as happy as myself. I -always had a value for him. Were it for nothing but his love of you, I -must always have esteemed him; but now, as Bingley’s friend and your -husband, there can be only Bingley and yourself more dear to me. But, -Lizzy, you have been very sly, very reserved with me. How little did you -tell me of what passed at Pemberley and Lambton! I owe all that I know -of it to another, not to you.” - -Elizabeth told her the motives of her secrecy. She had been unwilling to -mention Bingley; and the unsettled state of her own feelings had made -her equally avoid the name of his friend: but now she would no longer -conceal from her his share in Lydia’s marriage. All was acknowledged, -and half the night spent in conversation. - -“Good gracious!” cried Mrs. Bennet, as she stood at a window the next -morning, “if that disagreeable Mr. Darcy is not coming here again with -our dear Bingley! What can he mean by being so tiresome as to be always -coming here? I had no notion but he would go a-shooting, or something or -other, and not disturb us with his company. What shall we do with him? -Lizzy, you must walk out with him again, that he may not be in Bingley’s -way.” - -Elizabeth could hardly help laughing at so convenient a proposal; yet -was really vexed that her mother should be always giving him such an -epithet. - -As soon as they entered, Bingley looked at her so expressively, and -shook hands with such warmth, as left no doubt of his good information; -and he soon afterwards said aloud, “Mrs. Bennet, have you no more lanes -hereabouts in which Lizzy may lose her way again to-day?” - -“I advise Mr. Darcy, and Lizzy, and Kitty,” said Mrs. Bennet, “to walk -to Oakham Mount this morning. It is a nice long walk, and Mr. Darcy has -never seen the view.” - -“It may do very well for the others,” replied Mr. Bingley; “but I am -sure it will be too much for Kitty. Won’t it, Kitty?” - -Kitty owned that she had rather stay at home. Darcy professed a great -curiosity to see the view from the Mount, and Elizabeth silently -consented. As she went upstairs to get ready, Mrs. Bennet followed her, -saying,-- - -“I am quite sorry, Lizzy, that you should be forced to have that -disagreeable man all to yourself; but I hope you will not mind it. It is -all for Jane’s sake, you know; and there is no occasion for talking to -him except just now and then; so do not put yourself to inconvenience.” - -During their walk, it was resolved that Mr. Bennet’s consent should be -asked in the course of the evening: Elizabeth reserved to herself the -application for her mother’s. She could not determine how her mother -would take it; sometimes doubting whether all his wealth and grandeur -would be enough to overcome her abhorrence of the man; but whether she -were violently set against the match, or violently delighted with it, it -was certain that her manner would be equally ill adapted to do credit to -her sense; and she could no more bear that Mr. Darcy should hear the -first raptures of her joy, than the first vehemence of her -disapprobation. - -In the evening, soon after Mr. Bennet withdrew to the library, she saw -Mr. Darcy rise also and follow him, and her agitation on seeing it was -extreme. She did not fear her father’s opposition, but he was going to -be made unhappy, and that it should be through her means; that _she_, -his favourite child, should be distressing him by her choice, should be -filling him with fears and regrets in disposing of her, was a wretched -reflection, and she sat in misery till Mr. Darcy appeared again, when, -looking at him, she was a little relieved by his smile. In a few minutes -he approached the table where she was sitting with Kitty; and, while -pretending to admire her work, said in a whisper, “Go to your father; he -wants you in the library.” She was gone directly. - -Her father was walking about the room, looking grave and anxious. -“Lizzy,” said he, “what are you doing? Are you out of your senses to be -accepting this man? Have not you always hated him?” - -How earnestly did she then wish that her former opinions had been more -reasonable, her expressions more moderate! It would have spared her from -explanations and professions which it was exceedingly awkward to give; -but they were now necessary, and she assured him, with some confusion, -of her attachment to Mr. Darcy. - -“Or, in other words, you are determined to have him. He is rich, to be -sure, and you may have more fine clothes and fine carriages than Jane. -But will they make you happy?” - -“Have you any other objection,” said Elizabeth, “than your belief of my -indifference?” - -“None at all. We all know him to be a proud, unpleasant sort of man; but -this would be nothing if you really liked him.” - -“I do, I do like him,” she replied, with tears in her eyes; “I love him. -Indeed he has no improper pride. He is perfectly amiable. You do not -know what he really is; then pray do not pain me by speaking of him in -such terms.” - -“Lizzy,” said her father, “I have given him my consent. He is the kind -of man, indeed, to whom I should never dare refuse anything, which he -condescended to ask. I now give it to _you_, if you are resolved on -having him. But let me advise you to think better of it. I know your -disposition, Lizzy. I know that you could be neither happy nor -respectable, unless you truly esteemed your husband, unless you looked -up to him as a superior. Your lively talents would place you in the -greatest danger in an unequal marriage. You could scarcely escape -discredit and misery. My child, let me not have the grief of seeing -_you_ unable to respect your partner in life. You know not what you are -about.” - -Elizabeth, still more affected, was earnest and solemn in her reply; -and, at length, by repeated assurances that Mr. Darcy was really the -object of her choice, by explaining the gradual change which her -estimation of him had undergone, relating her absolute certainty that -his affection was not the work of a day, but had stood the test of many -months’ suspense, and enumerating with energy all his good qualities, -she did conquer her father’s incredulity, and reconcile him to the -match. - -“Well, my dear,” said he, when she ceased speaking, “I have no more to -say. If this be the case, he deserves you. I could not have parted with -you, my Lizzy, to anyone less worthy.” - -To complete the favourable impression, she then told him what Mr. Darcy -had voluntarily done for Lydia. He heard her with astonishment. - -“This is an evening of wonders, indeed! And so, Darcy did everything; -made up the match, gave the money, paid the fellow’s debts, and got him -his commission! So much the better. It will save me a world of trouble -and economy. Had it been your uncle’s doing, I must and _would_ have -paid him; but these violent young lovers carry everything their own -way. I shall offer to pay him to-morrow, he will rant and storm about -his love for you, and there will be an end of the matter.” - -He then recollected her embarrassment a few days before on his reading -Mr. Collins’s letter; and after laughing at her some time, allowed her -at last to go, saying, as she quitted the room, “If any young men come -for Mary or Kitty, send them in, for I am quite at leisure.” - -Elizabeth’s mind was now relieved from a very heavy weight; and, after -half an hour’s quiet reflection in her own room, she was able to join -the others with tolerable composure. Everything was too recent for -gaiety, but the evening passed tranquilly away; there was no longer -anything material to be dreaded, and the comfort of ease and familiarity -would come in time. - -When her mother went up to her dressing-room at night, she followed her, -and made the important communication. Its effect was most extraordinary; -for, on first hearing it, Mrs. Bennet sat quite still, and unable to -utter a syllable. Nor was it under many, many minutes, that she could -comprehend what she heard, though not in general backward to credit what -was for the advantage of her family, or that came in the shape of a -lover to any of them. She began at length to recover, to fidget about in -her chair, get up, sit down again, wonder, and bless herself. - -“Good gracious! Lord bless me! only think! dear me! Mr. Darcy! Who would -have thought it? And is it really true? Oh, my sweetest Lizzy! how rich -and how great you will be! What pin-money, what jewels, what carriages -you will have! Jane’s is nothing to it--nothing at all. I am so -pleased--so happy. Such a charming man! so handsome! so tall! Oh, my -dear Lizzy! pray apologize for my having disliked him so much before. I -hope he will overlook it. Dear, dear Lizzy. A house in town! Everything -that is charming! Three daughters married! Ten thousand a year! Oh, -Lord! what will become of me? I shall go distracted.” - -This was enough to prove that her approbation need not be doubted; and -Elizabeth, rejoicing that such an effusion was heard only by herself, -soon went away. But before she had been three minutes in her own room, -her mother followed her. - -“My dearest child,” she cried, “I can think of nothing else. Ten -thousand a year, and very likely more! ’Tis as good as a lord! And a -special licence--you must and shall be married by a special licence. -But, my dearest love, tell me what dish Mr. Darcy is particularly fond -of, that I may have it to-morrow.” - -This was a sad omen of what her mother’s behaviour to the gentleman -himself might be; and Elizabeth found that, though in the certain -possession of his warmest affection, and secure of her relations’ -consent, there was still something to be wished for. But the morrow -passed off much better than she expected; for Mrs. Bennet luckily stood -in such awe of her intended son-in-law, that she ventured not to speak -to him, unless it was in her power to offer him any attention, or mark -her deference for his opinion. - -Elizabeth had the satisfaction of seeing her father taking pains to get -acquainted with him; and Mr. Bennet soon assured her that he was rising -every hour in his esteem. - -“I admire all my three sons-in-law highly,” said he. “Wickham, perhaps, -is my favourite; but I think I shall like _your_ husband quite as well -as Jane’s.” - - - - -[Illustration: - -“The obsequious civility.” - -[_Copyright 1894 by George Allen._]] - - - - -CHAPTER LX. - - -[Illustration] - -Elizabeth’s spirits soon rising to playfulness again, she wanted Mr. -Darcy to account for his having ever fallen in love with her. “How could -you begin?” said she. “I can comprehend your going on charmingly, when -you had once made a beginning; but what could set you off in the first -place?” - -“I cannot fix on the hour, or the spot, or the look, or the words, which -laid the foundation. It is too long ago. I was in the middle before I -knew that I _had_ begun.” - -“My beauty you had early withstood, and as for my manners--my behaviour -to _you_ was at least always bordering on the uncivil, and I never spoke -to you without rather wishing to give you pain than not. Now, be -sincere; did you admire me for my impertinence?” - -“For the liveliness of your mind I did.” - -“You may as well call it impertinence at once. It was very little less. -The fact is, that you were sick of civility, of deference, of officious -attention. You were disgusted with the women who were always speaking, -and looking, and thinking for _your_ approbation alone. I roused and -interested you, because I was so unlike _them_. Had you not been really -amiable you would have hated me for it: but in spite of the pains you -took to disguise yourself, your feelings were always noble and just; and -in your heart you thoroughly despised the persons who so assiduously -courted you. There--I have saved you the trouble of accounting for it; -and really, all things considered, I begin to think it perfectly -reasonable. To be sure you know no actual good of me--but nobody thinks -of _that_ when they fall in love.” - -“Was there no good in your affectionate behaviour to Jane, while she was -ill at Netherfield?” - -“Dearest Jane! who could have done less for her? But make a virtue of it -by all means. My good qualities are under your protection, and you are -to exaggerate them as much as possible; and, in return, it belongs to me -to find occasions for teasing and quarrelling with you as often as may -be; and I shall begin directly, by asking you what made you so unwilling -to come to the point at last? What made you so shy of me, when you -first called, and afterwards dined here? Why, especially, when you -called, did you look as if you did not care about me?” - -“Because you were grave and silent, and gave me no encouragement.” - -“But I was embarrassed.” - -“And so was I.” - -“You might have talked to me more when you came to dinner.” - -“A man who had felt less might.” - -“How unlucky that you should have a reasonable answer to give, and that -I should be so reasonable as to admit it! But I wonder how long you -_would_ have gone on, if you had been left to yourself. I wonder when -you _would_ have spoken if I had not asked you! My resolution of -thanking you for your kindness to Lydia had certainly great effect. _Too -much_, I am afraid; for what becomes of the moral, if our comfort -springs from a breach of promise, for I ought not to have mentioned the -subject? This will never do.” - -“You need not distress yourself. The moral will be perfectly fair. Lady -Catherine’s unjustifiable endeavours to separate us were the means of -removing all my doubts. I am not indebted for my present happiness to -your eager desire of expressing your gratitude. I was not in a humour to -wait for an opening of yours. My aunt’s intelligence had given me hope, -and I was determined at once to know everything.” - -“Lady Catherine has been of infinite use, which ought to make her happy, -for she loves to be of use. But tell me, what did you come down to -Netherfield for? Was it merely to ride to Longbourn and be embarrassed? -or had you intended any more serious consequences?” - -“My real purpose was to see _you_, and to judge, if I could, whether I -might ever hope to make you love me. My avowed one, or what I avowed to -myself, was to see whether your sister was still partial to Bingley, and -if she were, to make the confession to him which I have since made.” - -“Shall you ever have courage to announce to Lady Catherine what is to -befall her?” - -“I am more likely to want time than courage, Elizabeth. But it ought to -be done; and if you will give me a sheet of paper it shall be done -directly.” - -“And if I had not a letter to write myself, I might sit by you, and -admire the evenness of your writing, as another young lady once did. But -I have an aunt, too, who must not be longer neglected.” - -From an unwillingness to confess how much her intimacy with Mr. Darcy -had been overrated, Elizabeth had never yet answered Mrs. Gardiner’s -long letter; but now, having _that_ to communicate which she knew would -be most welcome, she was almost ashamed to find that her uncle and aunt -had already lost three days of happiness, and immediately wrote as -follows:-- - -“I would have thanked you before, my dear aunt, as I ought to have done, -for your long, kind, satisfactory detail of particulars; but, to say the -truth, I was too cross to write. You supposed more than really existed. -But _now_ suppose as much as you choose; give a loose to your fancy, -indulge your imagination in every possible flight which the subject will -afford, and unless you believe me actually married, you cannot greatly -err. You must write again very soon, and praise him a great deal more -than you did in your last. I thank you again and again, for not going to -the Lakes. How could I be so silly as to wish it! Your idea of the -ponies is delightful. We will go round the park every day. I am the -happiest creature in the world. Perhaps other people have said so -before, but no one with such justice. I am happier even than Jane; she -only smiles, I laugh. Mr. Darcy sends you all the love in the world that -can be spared from me. You are all to come to Pemberley at Christmas. -Yours,” etc. - -Mr. Darcy’s letter to Lady Catherine was in a different style, and still -different from either was what Mr. Bennet sent to Mr. Collins, in return -for his last. - - /* “Dear Sir, */ - - “I must trouble you once more for congratulations. Elizabeth will - soon be the wife of Mr. Darcy. Console Lady Catherine as well as - you can. But, if I were you, I would stand by the nephew. He has - more to give. - -“Yours sincerely,” etc. - -Miss Bingley’s congratulations to her brother on his approaching -marriage were all that was affectionate and insincere. She wrote even to -Jane on the occasion, to express her delight, and repeat all her former -professions of regard. Jane was not deceived, but she was affected; and -though feeling no reliance on her, could not help writing her a much -kinder answer than she knew was deserved. - -The joy which Miss Darcy expressed on receiving similar information was -as sincere as her brother’s in sending it. Four sides of paper were -insufficient to contain all her delight, and all her earnest desire of -being loved by her sister. - -Before any answer could arrive from Mr. Collins, or any congratulations -to Elizabeth from his wife, the Longbourn family heard that the -Collinses were come themselves to Lucas Lodge. The reason of this -sudden removal was soon evident. Lady Catherine had been rendered so -exceedingly angry by the contents of her nephew’s letter, that -Charlotte, really rejoicing in the match, was anxious to get away till -the storm was blown over. At such a moment, the arrival of her friend -was a sincere pleasure to Elizabeth, though in the course of their -meetings she must sometimes think the pleasure dearly bought, when she -saw Mr. Darcy exposed to all the parading and obsequious civility of her -husband. He bore it, however, with admirable calmness. He could even -listen to Sir William Lucas, when he complimented him on carrying away -the brightest jewel of the country, and expressed his hopes of their all -meeting frequently at St. James’s, with very decent composure. If he did -shrug his shoulders, it was not till Sir William was out of sight. - -Mrs. Philips’s vulgarity was another, and, perhaps, a greater tax on his -forbearance; and though Mrs. Philips, as well as her sister, stood in -too much awe of him to speak with the familiarity which Bingley’s -good-humour encouraged; yet, whenever she _did_ speak, she must be -vulgar. Nor was her respect for him, though it made her more quiet, at -all likely to make her more elegant. Elizabeth did all she could to -shield him from the frequent notice of either, and was ever anxious to -keep him to herself, and to those of her family with whom he might -converse without mortification; and though the uncomfortable feelings -arising from all this took from the season of courtship much of its -pleasure, it added to the hope of the future; and she looked forward -with delight to the time when they should be removed from society so -little pleasing to either, to all the comfort and elegance of their -family party at Pemberley. - - - - -[Illustration] - - - - -CHAPTER LXI. - - -[Illustration] - -Happy for all her maternal feelings was the day on which Mrs. Bennet got -rid of her two most deserving daughters. With what delighted pride she -afterwards visited Mrs. Bingley, and talked of Mrs. Darcy, may be -guessed. I wish I could say, for the sake of her family, that the -accomplishment of her earnest desire in the establishment of so many of -her children produced so happy an effect as to make her a sensible, -amiable, well-informed woman for the rest of her life; though, perhaps, -it was lucky for her husband, who might not have relished domestic -felicity in so unusual a form, that she still was occasionally nervous -and invariably silly. - -Mr. Bennet missed his second daughter exceedingly; his affection for her -drew him oftener from home than anything else could do. He delighted in -going to Pemberley, especially when he was least expected. - -Mr. Bingley and Jane remained at Netherfield only a twelvemonth. So near -a vicinity to her mother and Meryton relations was not desirable even to -_his_ easy temper, or _her_ affectionate heart. The darling wish of his -sisters was then gratified: he bought an estate in a neighbouring county -to Derbyshire; and Jane and Elizabeth, in addition to every other source -of happiness, were within thirty miles of each other. - -Kitty, to her very material advantage, spent the chief of her time with -her two elder sisters. In society so superior to what she had generally -known, her improvement was great. She was not of so ungovernable a -temper as Lydia; and, removed from the influence of Lydia’s example, she -became, by proper attention and management, less irritable, less -ignorant, and less insipid. From the further disadvantage of Lydia’s -society she was of course carefully kept; and though Mrs. Wickham -frequently invited her to come and stay with her, with the promise of -balls and young men, her father would never consent to her going. - -Mary was the only daughter who remained at home; and she was necessarily -drawn from the pursuit of accomplishments by Mrs. Bennet’s being quite -unable to sit alone. Mary was obliged to mix more with the world, but -she could still moralize over every morning visit; and as she was no -longer mortified by comparisons between her sisters’ beauty and her own, -it was suspected by her father that she submitted to the change without -much reluctance. - -As for Wickham and Lydia, their characters suffered no revolution from -the marriage of her sisters. He bore with philosophy the conviction that -Elizabeth must now become acquainted with whatever of his ingratitude -and falsehood had before been unknown to her; and, in spite of -everything, was not wholly without hope that Darcy might yet be -prevailed on to make his fortune. The congratulatory letter which -Elizabeth received from Lydia on her marriage explained to her that, by -his wife at least, if not by himself, such a hope was cherished. The -letter was to this effect:-- - - /* “My dear Lizzy, */ - - “I wish you joy. If you love Mr. Darcy half so well as I do my dear - Wickham, you must be very happy. It is a great comfort to have you - so rich; and when you have nothing else to do, I hope you will - think of us. I am sure Wickham would like a place at court very - much; and I do not think we shall have quite money enough to live - upon without some help. Any place would do of about three or four - hundred a year; but, however, do not speak to Mr. Darcy about it, - if you had rather not. - -“Yours,” etc. - -As it happened that Elizabeth had much rather not, she endeavoured in -her answer to put an end to every entreaty and expectation of the kind. -Such relief, however, as it was in her power to afford, by the practice -of what might be called economy in her own private expenses, she -frequently sent them. It had always been evident to her that such an -income as theirs, under the direction of two persons so extravagant in -their wants, and heedless of the future, must be very insufficient to -their support; and whenever they changed their quarters, either Jane or -herself were sure of being applied to for some little assistance towards -discharging their bills. Their manner of living, even when the -restoration of peace dismissed them to a home, was unsettled in the -extreme. They were always moving from place to place in quest of a -cheap situation, and always spending more than they ought. His affection -for her soon sunk into indifference: hers lasted a little longer; and, -in spite of her youth and her manners, she retained all the claims to -reputation which her marriage had given her. Though Darcy could never -receive _him_ at Pemberley, yet, for Elizabeth’s sake, he assisted him -further in his profession. Lydia was occasionally a visitor there, when -her husband was gone to enjoy himself in London or Bath; and with the -Bingleys they both of them frequently stayed so long, that even -Bingley’s good-humour was overcome, and he proceeded so far as to _talk_ -of giving them a hint to be gone. - -Miss Bingley was very deeply mortified by Darcy’s marriage; but as she -thought it advisable to retain the right of visiting at Pemberley, she -dropped all her resentment; was fonder than ever of Georgiana, almost as -attentive to Darcy as heretofore, and paid off every arrear of civility -to Elizabeth. - -Pemberley was now Georgiana’s home; and the attachment of the sisters -was exactly what Darcy had hoped to see. They were able to love each -other, even as well as they intended. Georgiana had the highest opinion -in the world of Elizabeth; though at first she often listened with an -astonishment bordering on alarm at her lively, sportive manner of -talking to her brother. He, who had always inspired in herself a respect -which almost overcame her affection, she now saw the object of open -pleasantry. Her mind received knowledge which had never before fallen in -her way. By Elizabeth’s instructions she began to comprehend that a -woman may take liberties with her husband, which a brother will not -always allow in a sister more than ten years younger than himself. - -Lady Catherine was extremely indignant on the marriage of her nephew; -and as she gave way to all the genuine frankness of her character, in -her reply to the letter which announced its arrangement, she sent him -language so very abusive, especially of Elizabeth, that for some time -all intercourse was at an end. But at length, by Elizabeth’s persuasion, -he was prevailed on to overlook the offence, and seek a reconciliation; -and, after a little further resistance on the part of his aunt, her -resentment gave way, either to her affection for him, or her curiosity -to see how his wife conducted herself; and she condescended to wait on -them at Pemberley, in spite of that pollution which its woods had -received, not merely from the presence of such a mistress, but the -visits of her uncle and aunt from the city. - -With the Gardiners they were always on the most intimate terms. Darcy, -as well as Elizabeth, really loved them; and they were both ever -sensible of the warmest gratitude towards the persons who, by bringing -her into Derbyshire, had been the means of uniting them. - - [Illustration: - - THE - END - ] - - - - - CHISWICK PRESS:--CHARLES WHITTINGHAM AND CO. - TOOKS COURT, CHANCERY LANE, LONDON. - - - - -*** END OF THE PROJECT GUTENBERG EBOOK PRIDE AND PREJUDICE *** - - - - -Updated editions will replace the previous one—the old editions will -be renamed. - -Creating the works from print editions not protected by U.S. copyright -law means that no one owns a United States copyright in these works, -so the Foundation (and you!) can copy and distribute it in the United -States without permission and without paying copyright -royalties. Special rules, set forth in the General Terms of Use part -of this license, apply to copying and distributing Project -Gutenberg™ electronic works to protect the PROJECT GUTENBERG™ -concept and trademark. Project Gutenberg is a registered trademark, -and may not be used if you charge for an eBook, except by following -the terms of the trademark license, including paying royalties for use -of the Project Gutenberg trademark. If you do not charge anything for -copies of this eBook, complying with the trademark license is very -easy. You may use this eBook for nearly any purpose such as creation -of derivative works, reports, performances and research. Project -Gutenberg eBooks may be modified and printed and given away—you may -do practically ANYTHING in the United States with eBooks not protected -by U.S. copyright law. Redistribution is subject to the trademark -license, especially commercial redistribution. - - -START: FULL LICENSE - -THE FULL PROJECT GUTENBERG LICENSE - -PLEASE READ THIS BEFORE YOU DISTRIBUTE OR USE THIS WORK - -To protect the Project Gutenberg™ mission of promoting the free -distribution of electronic works, by using or distributing this work -(or any other work associated in any way with the phrase “Project -Gutenberg”), you agree to comply with all the terms of the Full -Project Gutenberg™ License available with this file or online at -www.gutenberg.org/license. - -Section 1. General Terms of Use and Redistributing Project Gutenberg™ -electronic works - -1.A. By reading or using any part of this Project Gutenberg™ -electronic work, you indicate that you have read, understand, agree to -and accept all the terms of this license and intellectual property -(trademark/copyright) agreement. If you do not agree to abide by all -the terms of this agreement, you must cease using and return or -destroy all copies of Project Gutenberg™ electronic works in your -possession. If you paid a fee for obtaining a copy of or access to a -Project Gutenberg™ electronic work and you do not agree to be bound -by the terms of this agreement, you may obtain a refund from the person -or entity to whom you paid the fee as set forth in paragraph 1.E.8. - -1.B. “Project Gutenberg” is a registered trademark. It may only be -used on or associated in any way with an electronic work by people who -agree to be bound by the terms of this agreement. There are a few -things that you can do with most Project Gutenberg™ electronic works -even without complying with the full terms of this agreement. See -paragraph 1.C below. There are a lot of things you can do with Project -Gutenberg™ electronic works if you follow the terms of this -agreement and help preserve free future access to Project Gutenberg™ -electronic works. See paragraph 1.E below. - -1.C. The Project Gutenberg Literary Archive Foundation (“the -Foundation” or PGLAF), owns a compilation copyright in the collection -of Project Gutenberg™ electronic works. Nearly all the individual -works in the collection are in the public domain in the United -States. If an individual work is unprotected by copyright law in the -United States and you are located in the United States, we do not -claim a right to prevent you from copying, distributing, performing, -displaying or creating derivative works based on the work as long as -all references to Project Gutenberg are removed. Of course, we hope -that you will support the Project Gutenberg™ mission of promoting -free access to electronic works by freely sharing Project Gutenberg™ -works in compliance with the terms of this agreement for keeping the -Project Gutenberg™ name associated with the work. You can easily -comply with the terms of this agreement by keeping this work in the -same format with its attached full Project Gutenberg™ License when -you share it without charge with others. - -1.D. The copyright laws of the place where you are located also govern -what you can do with this work. Copyright laws in most countries are -in a constant state of change. If you are outside the United States, -check the laws of your country in addition to the terms of this -agreement before downloading, copying, displaying, performing, -distributing or creating derivative works based on this work or any -other Project Gutenberg™ work. The Foundation makes no -representations concerning the copyright status of any work in any -country other than the United States. - -1.E. Unless you have removed all references to Project Gutenberg: - -1.E.1. The following sentence, with active links to, or other -immediate access to, the full Project Gutenberg™ License must appear -prominently whenever any copy of a Project Gutenberg™ work (any work -on which the phrase “Project Gutenberg” appears, or with which the -phrase “Project Gutenberg” is associated) is accessed, displayed, -performed, viewed, copied or distributed: - - This eBook is for the use of anyone anywhere in the United States and most - other parts of the world at no cost and with almost no restrictions - whatsoever. You may copy it, give it away or re-use it under the terms - of the Project Gutenberg License included with this eBook or online - at www.gutenberg.org. If you - are not located in the United States, you will have to check the laws - of the country where you are located before using this eBook. - -1.E.2. If an individual Project Gutenberg™ electronic work is -derived from texts not protected by U.S. copyright law (does not -contain a notice indicating that it is posted with permission of the -copyright holder), the work can be copied and distributed to anyone in -the United States without paying any fees or charges. If you are -redistributing or providing access to a work with the phrase “Project -Gutenberg” associated with or appearing on the work, you must comply -either with the requirements of paragraphs 1.E.1 through 1.E.7 or -obtain permission for the use of the work and the Project Gutenberg™ -trademark as set forth in paragraphs 1.E.8 or 1.E.9. - -1.E.3. If an individual Project Gutenberg™ electronic work is posted -with the permission of the copyright holder, your use and distribution -must comply with both paragraphs 1.E.1 through 1.E.7 and any -additional terms imposed by the copyright holder. Additional terms -will be linked to the Project Gutenberg™ License for all works -posted with the permission of the copyright holder found at the -beginning of this work. - -1.E.4. Do not unlink or detach or remove the full Project Gutenberg™ -License terms from this work, or any files containing a part of this -work or any other work associated with Project Gutenberg™. - -1.E.5. Do not copy, display, perform, distribute or redistribute this -electronic work, or any part of this electronic work, without -prominently displaying the sentence set forth in paragraph 1.E.1 with -active links or immediate access to the full terms of the Project -Gutenberg™ License. - -1.E.6. You may convert to and distribute this work in any binary, -compressed, marked up, nonproprietary or proprietary form, including -any word processing or hypertext form. However, if you provide access -to or distribute copies of a Project Gutenberg™ work in a format -other than “Plain Vanilla ASCII” or other format used in the official -version posted on the official Project Gutenberg™ website -(www.gutenberg.org), you must, at no additional cost, fee or expense -to the user, provide a copy, a means of exporting a copy, or a means -of obtaining a copy upon request, of the work in its original “Plain -Vanilla ASCII” or other form. Any alternate format must include the -full Project Gutenberg™ License as specified in paragraph 1.E.1. - -1.E.7. Do not charge a fee for access to, viewing, displaying, -performing, copying or distributing any Project Gutenberg™ works -unless you comply with paragraph 1.E.8 or 1.E.9. - -1.E.8. You may charge a reasonable fee for copies of or providing -access to or distributing Project Gutenberg™ electronic works -provided that: - - • You pay a royalty fee of 20% of the gross profits you derive from - the use of Project Gutenberg™ works calculated using the method - you already use to calculate your applicable taxes. The fee is owed - to the owner of the Project Gutenberg™ trademark, but he has - agreed to donate royalties under this paragraph to the Project - Gutenberg Literary Archive Foundation. Royalty payments must be paid - within 60 days following each date on which you prepare (or are - legally required to prepare) your periodic tax returns. Royalty - payments should be clearly marked as such and sent to the Project - Gutenberg Literary Archive Foundation at the address specified in - Section 4, “Information about donations to the Project Gutenberg - Literary Archive Foundation.” - - • You provide a full refund of any money paid by a user who notifies - you in writing (or by e-mail) within 30 days of receipt that s/he - does not agree to the terms of the full Project Gutenberg™ - License. You must require such a user to return or destroy all - copies of the works possessed in a physical medium and discontinue - all use of and all access to other copies of Project Gutenberg™ - works. - - • You provide, in accordance with paragraph 1.F.3, a full refund of - any money paid for a work or a replacement copy, if a defect in the - electronic work is discovered and reported to you within 90 days of - receipt of the work. - - • You comply with all other terms of this agreement for free - distribution of Project Gutenberg™ works. - - -1.E.9. If you wish to charge a fee or distribute a Project -Gutenberg™ electronic work or group of works on different terms than -are set forth in this agreement, you must obtain permission in writing -from the Project Gutenberg Literary Archive Foundation, the manager of -the Project Gutenberg™ trademark. Contact the Foundation as set -forth in Section 3 below. - -1.F. - -1.F.1. Project Gutenberg volunteers and employees expend considerable -effort to identify, do copyright research on, transcribe and proofread -works not protected by U.S. copyright law in creating the Project -Gutenberg™ collection. Despite these efforts, Project Gutenberg™ -electronic works, and the medium on which they may be stored, may -contain “Defects,” such as, but not limited to, incomplete, inaccurate -or corrupt data, transcription errors, a copyright or other -intellectual property infringement, a defective or damaged disk or -other medium, a computer virus, or computer codes that damage or -cannot be read by your equipment. - -1.F.2. LIMITED WARRANTY, DISCLAIMER OF DAMAGES - Except for the “Right -of Replacement or Refund” described in paragraph 1.F.3, the Project -Gutenberg Literary Archive Foundation, the owner of the Project -Gutenberg™ trademark, and any other party distributing a Project -Gutenberg™ electronic work under this agreement, disclaim all -liability to you for damages, costs and expenses, including legal -fees. YOU AGREE THAT YOU HAVE NO REMEDIES FOR NEGLIGENCE, STRICT -LIABILITY, BREACH OF WARRANTY OR BREACH OF CONTRACT EXCEPT THOSE -PROVIDED IN PARAGRAPH 1.F.3. YOU AGREE THAT THE FOUNDATION, THE -TRADEMARK OWNER, AND ANY DISTRIBUTOR UNDER THIS AGREEMENT WILL NOT BE -LIABLE TO YOU FOR ACTUAL, DIRECT, INDIRECT, CONSEQUENTIAL, PUNITIVE OR -INCIDENTAL DAMAGES EVEN IF YOU GIVE NOTICE OF THE POSSIBILITY OF SUCH -DAMAGE. - -1.F.3. LIMITED RIGHT OF REPLACEMENT OR REFUND - If you discover a -defect in this electronic work within 90 days of receiving it, you can -receive a refund of the money (if any) you paid for it by sending a -written explanation to the person you received the work from. If you -received the work on a physical medium, you must return the medium -with your written explanation. The person or entity that provided you -with the defective work may elect to provide a replacement copy in -lieu of a refund. If you received the work electronically, the person -or entity providing it to you may choose to give you a second -opportunity to receive the work electronically in lieu of a refund. If -the second copy is also defective, you may demand a refund in writing -without further opportunities to fix the problem. - -1.F.4. Except for the limited right of replacement or refund set forth -in paragraph 1.F.3, this work is provided to you ‘AS-IS’, WITH NO -OTHER WARRANTIES OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT -LIMITED TO WARRANTIES OF MERCHANTABILITY OR FITNESS FOR ANY PURPOSE. - -1.F.5. Some states do not allow disclaimers of certain implied -warranties or the exclusion or limitation of certain types of -damages. If any disclaimer or limitation set forth in this agreement -violates the law of the state applicable to this agreement, the -agreement shall be interpreted to make the maximum disclaimer or -limitation permitted by the applicable state law. The invalidity or -unenforceability of any provision of this agreement shall not void the -remaining provisions. - -1.F.6. INDEMNITY - You agree to indemnify and hold the Foundation, the -trademark owner, any agent or employee of the Foundation, anyone -providing copies of Project Gutenberg™ electronic works in -accordance with this agreement, and any volunteers associated with the -production, promotion and distribution of Project Gutenberg™ -electronic works, harmless from all liability, costs and expenses, -including legal fees, that arise directly or indirectly from any of -the following which you do or cause to occur: (a) distribution of this -or any Project Gutenberg™ work, (b) alteration, modification, or -additions or deletions to any Project Gutenberg™ work, and (c) any -Defect you cause. - -Section 2. Information about the Mission of Project Gutenberg™ - -Project Gutenberg™ is synonymous with the free distribution of -electronic works in formats readable by the widest variety of -computers including obsolete, old, middle-aged and new computers. It -exists because of the efforts of hundreds of volunteers and donations -from people in all walks of life. - -Volunteers and financial support to provide volunteers with the -assistance they need are critical to reaching Project Gutenberg™’s -goals and ensuring that the Project Gutenberg™ collection will -remain freely available for generations to come. In 2001, the Project -Gutenberg Literary Archive Foundation was created to provide a secure -and permanent future for Project Gutenberg™ and future -generations. To learn more about the Project Gutenberg Literary -Archive Foundation and how your efforts and donations can help, see -Sections 3 and 4 and the Foundation information page at www.gutenberg.org. - -Section 3. Information about the Project Gutenberg Literary Archive Foundation - -The Project Gutenberg Literary Archive Foundation is a non-profit -501(c)(3) educational corporation organized under the laws of the -state of Mississippi and granted tax exempt status by the Internal -Revenue Service. The Foundation’s EIN or federal tax identification -number is 64-6221541. Contributions to the Project Gutenberg Literary -Archive Foundation are tax deductible to the full extent permitted by -U.S. federal laws and your state’s laws. - -The Foundation’s business office is located at 809 North 1500 West, -Salt Lake City, UT 84116, (801) 596-1887. Email contact links and up -to date contact information can be found at the Foundation’s website -and official page at www.gutenberg.org/contact - -Section 4. Information about Donations to the Project Gutenberg -Literary Archive Foundation - -Project Gutenberg™ depends upon and cannot survive without widespread -public support and donations to carry out its mission of -increasing the number of public domain and licensed works that can be -freely distributed in machine-readable form accessible by the widest -array of equipment including outdated equipment. Many small donations -($1 to $5,000) are particularly important to maintaining tax exempt -status with the IRS. - -The Foundation is committed to complying with the laws regulating -charities and charitable donations in all 50 states of the United -States. Compliance requirements are not uniform and it takes a -considerable effort, much paperwork and many fees to meet and keep up -with these requirements. We do not solicit donations in locations -where we have not received written confirmation of compliance. To SEND -DONATIONS or determine the status of compliance for any particular state -visit www.gutenberg.org/donate. - -While we cannot and do not solicit contributions from states where we -have not met the solicitation requirements, we know of no prohibition -against accepting unsolicited donations from donors in such states who -approach us with offers to donate. - -International donations are gratefully accepted, but we cannot make -any statements concerning tax treatment of donations received from -outside the United States. U.S. laws alone swamp our small staff. - -Please check the Project Gutenberg web pages for current donation -methods and addresses. Donations are accepted in a number of other -ways including checks, online payments and credit card donations. To -donate, please visit: www.gutenberg.org/donate. - -Section 5. General Information About Project Gutenberg™ electronic works - -Professor Michael S. Hart was the originator of the Project -Gutenberg™ concept of a library of electronic works that could be -freely shared with anyone. For forty years, he produced and -distributed Project Gutenberg™ eBooks with only a loose network of -volunteer support. - -Project Gutenberg™ eBooks are often created from several printed -editions, all of which are confirmed as not protected by copyright in -the U.S. unless a copyright notice is included. Thus, we do not -necessarily keep eBooks in compliance with any particular paper -edition. - -Most people start at our website which has the main PG search -facility: www.gutenberg.org. - -This website includes information about Project Gutenberg™, -including how to make donations to the Project Gutenberg Literary -Archive Foundation, how to help produce our new eBooks, and how to -subscribe to our email newsletter to hear about new eBooks. - diff --git a/backend/reconcile/tests/resources/room_with_a_view.txt b/backend/reconcile/tests/resources/room_with_a_view.txt deleted file mode 100644 index 5f5ec21e..00000000 --- a/backend/reconcile/tests/resources/room_with_a_view.txt +++ /dev/null @@ -1,9105 +0,0 @@ -The Project Gutenberg eBook of A Room with a View - -This ebook is for the use of anyone anywhere in the United States and -most other parts of the world at no cost and with almost no restrictions -whatsoever. You may copy it, give it away or re-use it under the terms -of the Project Gutenberg License included with this ebook or online -at www.gutenberg.org. If you are not located in the United States, -you will have to check the laws of the country where you are located -before using this eBook. - -Title: A Room with a View - -Author: E. M. Forster - -Release date: May 1, 2001 [eBook #2641] - Most recently updated: May 4, 2024 - -Language: English - - - -*** START OF THE PROJECT GUTENBERG EBOOK A ROOM WITH A VIEW *** - - - - -[Illustration] - - - - -A Room With A View - -By E. M. Forster - - - - -CONTENTS - - Part One. - Chapter I. The Bertolini - Chapter II. In Santa Croce with No Baedeker - Chapter III. Music, Violets, and the Letter “S” - Chapter IV. Fourth Chapter - Chapter V. Possibilities of a Pleasant Outing - Chapter VI. The Reverend Arthur Beebe, the Reverend Cuthbert Eager, Mr. Emerson, Mr. George Emerson, Miss Eleanor Lavish, Miss Charlotte Bartlett, and Miss Lucy Honeychurch Drive Out in Carriages to See a View; Italians Drive Them - Chapter VII. They Return - - Part Two. - Chapter VIII. Medieval - Chapter IX. Lucy As a Work of Art - Chapter X. Cecil as a Humourist - Chapter XI. In Mrs. Vyse’s Well-Appointed Flat - Chapter XII. Twelfth Chapter - Chapter XIII. How Miss Bartlett’s Boiler Was So Tiresome - Chapter XIV. How Lucy Faced the External Situation Bravely - Chapter XV. The Disaster Within - Chapter XVI. Lying to George - Chapter XVII. Lying to Cecil - Chapter XVIII. Lying to Mr. Beebe, Mrs. Honeychurch, Freddy, and The Servants - Chapter XIX. Lying to Mr. Emerson - Chapter XX. The End of the Middle Ages - - - - -PART ONE - - - - -Chapter I -The Bertolini - - -“The Signora had no business to do it,” said Miss Bartlett, “no -business at all. She promised us south rooms with a view close -together, instead of which here are north rooms, looking into a -courtyard, and a long way apart. Oh, Lucy!” - -“And a Cockney, besides!” said Lucy, who had been further saddened by -the Signora’s unexpected accent. “It might be London.” She looked at -the two rows of English people who were sitting at the table; at the -row of white bottles of water and red bottles of wine that ran between -the English people; at the portraits of the late Queen and the late -Poet Laureate that hung behind the English people, heavily framed; at -the notice of the English church (Rev. Cuthbert Eager, M. A. Oxon.), -that was the only other decoration of the wall. “Charlotte, don’t you -feel, too, that we might be in London? I can hardly believe that all -kinds of other things are just outside. I suppose it is one’s being so -tired.” - -“This meat has surely been used for soup,” said Miss Bartlett, laying -down her fork. - -“I want so to see the Arno. The rooms the Signora promised us in her -letter would have looked over the Arno. The Signora had no business to -do it at all. Oh, it is a shame!” - -“Any nook does for me,” Miss Bartlett continued; “but it does seem hard -that you shouldn’t have a view.” - -Lucy felt that she had been selfish. “Charlotte, you mustn’t spoil me: -of course, you must look over the Arno, too. I meant that. The first -vacant room in the front—” “You must have it,” said Miss Bartlett, part -of whose travelling expenses were paid by Lucy’s mother—a piece of -generosity to which she made many a tactful allusion. - -“No, no. You must have it.” - -“I insist on it. Your mother would never forgive me, Lucy.” - -“She would never forgive _me_.” - -The ladies’ voices grew animated, and—if the sad truth be owned—a -little peevish. They were tired, and under the guise of unselfishness -they wrangled. Some of their neighbours interchanged glances, and one -of them—one of the ill-bred people whom one does meet abroad—leant -forward over the table and actually intruded into their argument. He -said: - -“I have a view, I have a view.” - -Miss Bartlett was startled. Generally at a pension people looked them -over for a day or two before speaking, and often did not find out that -they would “do” till they had gone. She knew that the intruder was -ill-bred, even before she glanced at him. He was an old man, of heavy -build, with a fair, shaven face and large eyes. There was something -childish in those eyes, though it was not the childishness of senility. -What exactly it was Miss Bartlett did not stop to consider, for her -glance passed on to his clothes. These did not attract her. He was -probably trying to become acquainted with them before they got into the -swim. So she assumed a dazed expression when he spoke to her, and then -said: “A view? Oh, a view! How delightful a view is!” - -“This is my son,” said the old man; “his name’s George. He has a view -too.” - -“Ah,” said Miss Bartlett, repressing Lucy, who was about to speak. - -“What I mean,” he continued, “is that you can have our rooms, and we’ll -have yours. We’ll change.” - -The better class of tourist was shocked at this, and sympathized with -the new-comers. Miss Bartlett, in reply, opened her mouth as little as -possible, and said “Thank you very much indeed; that is out of the -question.” - -“Why?” said the old man, with both fists on the table. - -“Because it is quite out of the question, thank you.” - -“You see, we don’t like to take—” began Lucy. Her cousin again -repressed her. - -“But why?” he persisted. “Women like looking at a view; men don’t.” And -he thumped with his fists like a naughty child, and turned to his son, -saying, “George, persuade them!” - -“It’s so obvious they should have the rooms,” said the son. “There’s -nothing else to say.” - -He did not look at the ladies as he spoke, but his voice was perplexed -and sorrowful. Lucy, too, was perplexed; but she saw that they were in -for what is known as “quite a scene,” and she had an odd feeling that -whenever these ill-bred tourists spoke the contest widened and deepened -till it dealt, not with rooms and views, but with—well, with something -quite different, whose existence she had not realized before. Now the -old man attacked Miss Bartlett almost violently: Why should she not -change? What possible objection had she? They would clear out in half -an hour. - -Miss Bartlett, though skilled in the delicacies of conversation, was -powerless in the presence of brutality. It was impossible to snub any -one so gross. Her face reddened with displeasure. She looked around as -much as to say, “Are you all like this?” And two little old ladies, who -were sitting further up the table, with shawls hanging over the backs -of the chairs, looked back, clearly indicating “We are not; we are -genteel.” - -“Eat your dinner, dear,” she said to Lucy, and began to toy again with -the meat that she had once censured. - -Lucy mumbled that those seemed very odd people opposite. - -“Eat your dinner, dear. This pension is a failure. To-morrow we will -make a change.” - -Hardly had she announced this fell decision when she reversed it. The -curtains at the end of the room parted, and revealed a clergyman, stout -but attractive, who hurried forward to take his place at the table, -cheerfully apologizing for his lateness. Lucy, who had not yet acquired -decency, at once rose to her feet, exclaiming: “Oh, oh! Why, it’s Mr. -Beebe! Oh, how perfectly lovely! Oh, Charlotte, we must stop now, -however bad the rooms are. Oh!” - -Miss Bartlett said, with more restraint: - -“How do you do, Mr. Beebe? I expect that you have forgotten us: Miss -Bartlett and Miss Honeychurch, who were at Tunbridge Wells when you -helped the Vicar of St. Peter’s that very cold Easter.” - -The clergyman, who had the air of one on a holiday, did not remember -the ladies quite as clearly as they remembered him. But he came forward -pleasantly enough and accepted the chair into which he was beckoned by -Lucy. - -“I _am_ so glad to see you,” said the girl, who was in a state of -spiritual starvation, and would have been glad to see the waiter if her -cousin had permitted it. “Just fancy how small the world is. Summer -Street, too, makes it so specially funny.” - -“Miss Honeychurch lives in the parish of Summer Street,” said Miss -Bartlett, filling up the gap, “and she happened to tell me in the -course of conversation that you have just accepted the living—” - -“Yes, I heard from mother so last week. She didn’t know that I knew you -at Tunbridge Wells; but I wrote back at once, and I said: ‘Mr. Beebe -is—’” - -“Quite right,” said the clergyman. “I move into the Rectory at Summer -Street next June. I am lucky to be appointed to such a charming -neighbourhood.” - -“Oh, how glad I am! The name of our house is Windy Corner.” Mr. Beebe -bowed. - -“There is mother and me generally, and my brother, though it’s not -often we get him to ch—— The church is rather far off, I mean.” - -“Lucy, dearest, let Mr. Beebe eat his dinner.” - -“I am eating it, thank you, and enjoying it.” - -He preferred to talk to Lucy, whose playing he remembered, rather than -to Miss Bartlett, who probably remembered his sermons. He asked the -girl whether she knew Florence well, and was informed at some length -that she had never been there before. It is delightful to advise a -newcomer, and he was first in the field. “Don’t neglect the country -round,” his advice concluded. “The first fine afternoon drive up to -Fiesole, and round by Settignano, or something of that sort.” - -“No!” cried a voice from the top of the table. “Mr. Beebe, you are -wrong. The first fine afternoon your ladies must go to Prato.” - -“That lady looks so clever,” whispered Miss Bartlett to her cousin. “We -are in luck.” - -And, indeed, a perfect torrent of information burst on them. People -told them what to see, when to see it, how to stop the electric trams, -how to get rid of the beggars, how much to give for a vellum blotter, -how much the place would grow upon them. The Pension Bertolini had -decided, almost enthusiastically, that they would do. Whichever way -they looked, kind ladies smiled and shouted at them. And above all rose -the voice of the clever lady, crying: “Prato! They must go to Prato. -That place is too sweetly squalid for words. I love it; I revel in -shaking off the trammels of respectability, as you know.” - -The young man named George glanced at the clever lady, and then -returned moodily to his plate. Obviously he and his father did not do. -Lucy, in the midst of her success, found time to wish they did. It gave -her no extra pleasure that any one should be left in the cold; and when -she rose to go, she turned back and gave the two outsiders a nervous -little bow. - -The father did not see it; the son acknowledged it, not by another bow, -but by raising his eyebrows and smiling; he seemed to be smiling across -something. - -She hastened after her cousin, who had already disappeared through the -curtains—curtains which smote one in the face, and seemed heavy with -more than cloth. Beyond them stood the unreliable Signora, bowing -good-evening to her guests, and supported by ’Enery, her little boy, -and Victorier, her daughter. It made a curious little scene, this -attempt of the Cockney to convey the grace and geniality of the South. -And even more curious was the drawing-room, which attempted to rival -the solid comfort of a Bloomsbury boarding-house. Was this really -Italy? - -Miss Bartlett was already seated on a tightly stuffed arm-chair, which -had the colour and the contours of a tomato. She was talking to Mr. -Beebe, and as she spoke, her long narrow head drove backwards and -forwards, slowly, regularly, as though she were demolishing some -invisible obstacle. “We are most grateful to you,” she was saying. “The -first evening means so much. When you arrived we were in for a -peculiarly _mauvais quart d’heure_.” - -He expressed his regret. - -“Do you, by any chance, know the name of an old man who sat opposite us -at dinner?” - -“Emerson.” - -“Is he a friend of yours?” - -“We are friendly—as one is in pensions.” - -“Then I will say no more.” - -He pressed her very slightly, and she said more. - -“I am, as it were,” she concluded, “the chaperon of my young cousin, -Lucy, and it would be a serious thing if I put her under an obligation -to people of whom we know nothing. His manner was somewhat unfortunate. -I hope I acted for the best.” - -“You acted very naturally,” said he. He seemed thoughtful, and after a -few moments added: “All the same, I don’t think much harm would have -come of accepting.” - -“No _harm_, of course. But we could not be under an obligation.” - -“He is rather a peculiar man.” Again he hesitated, and then said -gently: “I think he would not take advantage of your acceptance, nor -expect you to show gratitude. He has the merit—if it is one—of saying -exactly what he means. He has rooms he does not value, and he thinks -you would value them. He no more thought of putting you under an -obligation than he thought of being polite. It is so difficult—at -least, I find it difficult—to understand people who speak the truth.” - -Lucy was pleased, and said: “I was hoping that he was nice; I do so -always hope that people will be nice.” - -“I think he is; nice and tiresome. I differ from him on almost every -point of any importance, and so, I expect—I may say I hope—you will -differ. But his is a type one disagrees with rather than deplores. When -he first came here he not unnaturally put people’s backs up. He has no -tact and no manners—I don’t mean by that that he has bad manners—and he -will not keep his opinions to himself. We nearly complained about him -to our depressing Signora, but I am glad to say we thought better of -it.” - -“Am I to conclude,” said Miss Bartlett, “that he is a Socialist?” - -Mr. Beebe accepted the convenient word, not without a slight twitching -of the lips. - -“And presumably he has brought up his son to be a Socialist, too?” - -“I hardly know George, for he hasn’t learnt to talk yet. He seems a -nice creature, and I think he has brains. Of course, he has all his -father’s mannerisms, and it is quite possible that he, too, may be a -Socialist.” - -“Oh, you relieve me,” said Miss Bartlett. “So you think I ought to have -accepted their offer? You feel I have been narrow-minded and -suspicious?” - -“Not at all,” he answered; “I never suggested that.” - -“But ought I not to apologize, at all events, for my apparent -rudeness?” - -He replied, with some irritation, that it would be quite unnecessary, -and got up from his seat to go to the smoking-room. - -“Was I a bore?” said Miss Bartlett, as soon as he had disappeared. “Why -didn’t you talk, Lucy? He prefers young people, I’m sure. I do hope I -haven’t monopolized him. I hoped you would have him all the evening, as -well as all dinner-time.” - -“He is nice,” exclaimed Lucy. “Just what I remember. He seems to see -good in everyone. No one would take him for a clergyman.” - -“My dear Lucia—” - -“Well, you know what I mean. And you know how clergymen generally -laugh; Mr. Beebe laughs just like an ordinary man.” - -“Funny girl! How you do remind me of your mother. I wonder if she will -approve of Mr. Beebe.” - -“I’m sure she will; and so will Freddy.” - -“I think everyone at Windy Corner will approve; it is the fashionable -world. I am used to Tunbridge Wells, where we are all hopelessly behind -the times.” - -“Yes,” said Lucy despondently. - -There was a haze of disapproval in the air, but whether the disapproval -was of herself, or of Mr. Beebe, or of the fashionable world at Windy -Corner, or of the narrow world at Tunbridge Wells, she could not -determine. She tried to locate it, but as usual she blundered. Miss -Bartlett sedulously denied disapproving of any one, and added “I am -afraid you are finding me a very depressing companion.” - -And the girl again thought: “I must have been selfish or unkind; I must -be more careful. It is so dreadful for Charlotte, being poor.” - -Fortunately one of the little old ladies, who for some time had been -smiling very benignly, now approached and asked if she might be allowed -to sit where Mr. Beebe had sat. Permission granted, she began to -chatter gently about Italy, the plunge it had been to come there, the -gratifying success of the plunge, the improvement in her sister’s -health, the necessity of closing the bed-room windows at night, and of -thoroughly emptying the water-bottles in the morning. She handled her -subjects agreeably, and they were, perhaps, more worthy of attention -than the high discourse upon Guelfs and Ghibellines which was -proceeding tempestuously at the other end of the room. It was a real -catastrophe, not a mere episode, that evening of hers at Venice, when -she had found in her bedroom something that is one worse than a flea, -though one better than something else. - -“But here you are as safe as in England. Signora Bertolini is so -English.” - -“Yet our rooms smell,” said poor Lucy. “We dread going to bed.” - -“Ah, then you look into the court.” She sighed. “If only Mr. Emerson -was more tactful! We were so sorry for you at dinner.” - -“I think he was meaning to be kind.” - -“Undoubtedly he was,” said Miss Bartlett. - -“Mr. Beebe has just been scolding me for my suspicious nature. Of -course, I was holding back on my cousin’s account.” - -“Of course,” said the little old lady; and they murmured that one could -not be too careful with a young girl. - -Lucy tried to look demure, but could not help feeling a great fool. No -one was careful with her at home; or, at all events, she had not -noticed it. - -“About old Mr. Emerson—I hardly know. No, he is not tactful; yet, have -you ever noticed that there are people who do things which are most -indelicate, and yet at the same time—beautiful?” - -“Beautiful?” said Miss Bartlett, puzzled at the word. “Are not beauty -and delicacy the same?” - -“So one would have thought,” said the other helplessly. “But things are -so difficult, I sometimes think.” - -She proceeded no further into things, for Mr. Beebe reappeared, looking -extremely pleasant. - -“Miss Bartlett,” he cried, “it’s all right about the rooms. I’m so -glad. Mr. Emerson was talking about it in the smoking-room, and knowing -what I did, I encouraged him to make the offer again. He has let me -come and ask you. He would be so pleased.” - -“Oh, Charlotte,” cried Lucy to her cousin, “we must have the rooms now. -The old man is just as nice and kind as he can be.” - -Miss Bartlett was silent. - -“I fear,” said Mr. Beebe, after a pause, “that I have been officious. I -must apologize for my interference.” - -Gravely displeased, he turned to go. Not till then did Miss Bartlett -reply: “My own wishes, dearest Lucy, are unimportant in comparison with -yours. It would be hard indeed if I stopped you doing as you liked at -Florence, when I am only here through your kindness. If you wish me to -turn these gentlemen out of their rooms, I will do it. Would you then, -Mr. Beebe, kindly tell Mr. Emerson that I accept his kind offer, and -then conduct him to me, in order that I may thank him personally?” - -She raised her voice as she spoke; it was heard all over the -drawing-room, and silenced the Guelfs and the Ghibellines. The -clergyman, inwardly cursing the female sex, bowed, and departed with -her message. - -“Remember, Lucy, I alone am implicated in this. I do not wish the -acceptance to come from you. Grant me that, at all events.” - -Mr. Beebe was back, saying rather nervously: - -“Mr. Emerson is engaged, but here is his son instead.” - -The young man gazed down on the three ladies, who felt seated on the -floor, so low were their chairs. - -“My father,” he said, “is in his bath, so you cannot thank him -personally. But any message given by you to me will be given by me to -him as soon as he comes out.” - -Miss Bartlett was unequal to the bath. All her barbed civilities came -forth wrong end first. Young Mr. Emerson scored a notable triumph to -the delight of Mr. Beebe and to the secret delight of Lucy. - -“Poor young man!” said Miss Bartlett, as soon as he had gone. - -“How angry he is with his father about the rooms! It is all he can do -to keep polite.” - -“In half an hour or so your rooms will be ready,” said Mr. Beebe. Then -looking rather thoughtfully at the two cousins, he retired to his own -rooms, to write up his philosophic diary. - -“Oh, dear!” breathed the little old lady, and shuddered as if all the -winds of heaven had entered the apartment. “Gentlemen sometimes do not -realize—” Her voice faded away, but Miss Bartlett seemed to understand -and a conversation developed, in which gentlemen who did not thoroughly -realize played a principal part. Lucy, not realizing either, was -reduced to literature. Taking up Baedeker’s Handbook to Northern Italy, -she committed to memory the most important dates of Florentine History. -For she was determined to enjoy herself on the morrow. Thus the -half-hour crept profitably away, and at last Miss Bartlett rose with a -sigh, and said: - -“I think one might venture now. No, Lucy, do not stir. I will -superintend the move.” - -“How you do do everything,” said Lucy. - -“Naturally, dear. It is my affair.” - -“But I would like to help you.” - -“No, dear.” - -Charlotte’s energy! And her unselfishness! She had been thus all her -life, but really, on this Italian tour, she was surpassing herself. So -Lucy felt, or strove to feel. And yet—there was a rebellious spirit in -her which wondered whether the acceptance might not have been less -delicate and more beautiful. At all events, she entered her own room -without any feeling of joy. - -“I want to explain,” said Miss Bartlett, “why it is that I have taken -the largest room. Naturally, of course, I should have given it to you; -but I happen to know that it belongs to the young man, and I was sure -your mother would not like it.” - -Lucy was bewildered. - -“If you are to accept a favour it is more suitable you should be under -an obligation to his father than to him. I am a woman of the world, in -my small way, and I know where things lead to. However, Mr. Beebe is a -guarantee of a sort that they will not presume on this.” - -“Mother wouldn’t mind I’m sure,” said Lucy, but again had the sense of -larger and unsuspected issues. - -Miss Bartlett only sighed, and enveloped her in a protecting embrace as -she wished her good-night. It gave Lucy the sensation of a fog, and -when she reached her own room she opened the window and breathed the -clean night air, thinking of the kind old man who had enabled her to -see the lights dancing in the Arno and the cypresses of San Miniato, -and the foot-hills of the Apennines, black against the rising moon. - -Miss Bartlett, in her room, fastened the window-shutters and locked the -door, and then made a tour of the apartment to see where the cupboards -led, and whether there were any oubliettes or secret entrances. It was -then that she saw, pinned up over the washstand, a sheet of paper on -which was scrawled an enormous note of interrogation. Nothing more. - -“What does it mean?” she thought, and she examined it carefully by the -light of a candle. Meaningless at first, it gradually became menacing, -obnoxious, portentous with evil. She was seized with an impulse to -destroy it, but fortunately remembered that she had no right to do so, -since it must be the property of young Mr. Emerson. So she unpinned it -carefully, and put it between two pieces of blotting-paper to keep it -clean for him. Then she completed her inspection of the room, sighed -heavily according to her habit, and went to bed. - - - - -Chapter II -In Santa Croce with No Baedeker - - -It was pleasant to wake up in Florence, to open the eyes upon a bright -bare room, with a floor of red tiles which look clean though they are -not; with a painted ceiling whereon pink griffins and blue amorini -sport in a forest of yellow violins and bassoons. It was pleasant, too, -to fling wide the windows, pinching the fingers in unfamiliar -fastenings, to lean out into sunshine with beautiful hills and trees -and marble churches opposite, and close below, the Arno, gurgling -against the embankment of the road. - -Over the river men were at work with spades and sieves on the sandy -foreshore, and on the river was a boat, also diligently employed for -some mysterious end. An electric tram came rushing underneath the -window. No one was inside it, except one tourist; but its platforms -were overflowing with Italians, who preferred to stand. Children tried -to hang on behind, and the conductor, with no malice, spat in their -faces to make them let go. Then soldiers appeared—good-looking, -undersized men—wearing each a knapsack covered with mangy fur, and a -great-coat which had been cut for some larger soldier. Beside them -walked officers, looking foolish and fierce, and before them went -little boys, turning somersaults in time with the band. The tramcar -became entangled in their ranks, and moved on painfully, like a -caterpillar in a swarm of ants. One of the little boys fell down, and -some white bullocks came out of an archway. Indeed, if it had not been -for the good advice of an old man who was selling button-hooks, the -road might never have got clear. - -Over such trivialities as these many a valuable hour may slip away, and -the traveller who has gone to Italy to study the tactile values of -Giotto, or the corruption of the Papacy, may return remembering nothing -but the blue sky and the men and women who live under it. So it was as -well that Miss Bartlett should tap and come in, and having commented on -Lucy’s leaving the door unlocked, and on her leaning out of the window -before she was fully dressed, should urge her to hasten herself, or the -best of the day would be gone. By the time Lucy was ready her cousin -had done her breakfast, and was listening to the clever lady among the -crumbs. - -A conversation then ensued, on not unfamiliar lines. Miss Bartlett was, -after all, a wee bit tired, and thought they had better spend the -morning settling in; unless Lucy would at all like to go out? Lucy -would rather like to go out, as it was her first day in Florence, but, -of course, she could go alone. Miss Bartlett could not allow this. Of -course she would accompany Lucy everywhere. Oh, certainly not; Lucy -would stop with her cousin. Oh, no! that would never do. Oh, yes! - -At this point the clever lady broke in. - -“If it is Mrs. Grundy who is troubling you, I do assure you that you -can neglect the good person. Being English, Miss Honeychurch will be -perfectly safe. Italians understand. A dear friend of mine, Contessa -Baroncelli, has two daughters, and when she cannot send a maid to -school with them, she lets them go in sailor-hats instead. Every one -takes them for English, you see, especially if their hair is strained -tightly behind.” - -Miss Bartlett was unconvinced by the safety of Contessa Baroncelli’s -daughters. She was determined to take Lucy herself, her head not being -so very bad. The clever lady then said that she was going to spend a -long morning in Santa Croce, and if Lucy would come too, she would be -delighted. - -“I will take you by a dear dirty back way, Miss Honeychurch, and if you -bring me luck, we shall have an adventure.” - -Lucy said that this was most kind, and at once opened the Baedeker, to -see where Santa Croce was. - -“Tut, tut! Miss Lucy! I hope we shall soon emancipate you from -Baedeker. He does but touch the surface of things. As to the true -Italy—he does not even dream of it. The true Italy is only to be found -by patient observation.” - -This sounded very interesting, and Lucy hurried over her breakfast, and -started with her new friend in high spirits. Italy was coming at last. -The Cockney Signora and her works had vanished like a bad dream. - -Miss Lavish—for that was the clever lady’s name—turned to the right -along the sunny Lung’ Arno. How delightfully warm! But a wind down the -side streets cut like a knife, didn’t it? Ponte alle -Grazie—particularly interesting, mentioned by Dante. San -Miniato—beautiful as well as interesting; the crucifix that kissed a -murderer—Miss Honeychurch would remember the story. The men on the -river were fishing. (Untrue; but then, so is most information.) Then -Miss Lavish darted under the archway of the white bullocks, and she -stopped, and she cried: - -“A smell! a true Florentine smell! Every city, let me teach you, has -its own smell.” - -“Is it a very nice smell?” said Lucy, who had inherited from her mother -a distaste to dirt. - -“One doesn’t come to Italy for niceness,” was the retort; “one comes -for life. Buon giorno! Buon giorno!” bowing right and left. “Look at -that adorable wine-cart! How the driver stares at us, dear, simple -soul!” - -So Miss Lavish proceeded through the streets of the city of Florence, -short, fidgety, and playful as a kitten, though without a kitten’s -grace. It was a treat for the girl to be with any one so clever and so -cheerful; and a blue military cloak, such as an Italian officer wears, -only increased the sense of festivity. - -“Buon giorno! Take the word of an old woman, Miss Lucy: you will never -repent of a little civility to your inferiors. _That_ is the true -democracy. Though I am a real Radical as well. There, now you’re -shocked.” - -“Indeed, I’m not!” exclaimed Lucy. “We are Radicals, too, out and out. -My father always voted for Mr. Gladstone, until he was so dreadful -about Ireland.” - -“I see, I see. And now you have gone over to the enemy.” - -“Oh, please—! If my father was alive, I am sure he would vote Radical -again now that Ireland is all right. And as it is, the glass over our -front door was broken last election, and Freddy is sure it was the -Tories; but mother says nonsense, a tramp.” - -“Shameful! A manufacturing district, I suppose?” - -“No—in the Surrey hills. About five miles from Dorking, looking over -the Weald.” - -Miss Lavish seemed interested, and slackened her trot. - -“What a delightful part; I know it so well. It is full of the very -nicest people. Do you know Sir Harry Otway—a Radical if ever there -was?” - -“Very well indeed.” - -“And old Mrs. Butterworth the philanthropist?” - -“Why, she rents a field of us! How funny!” - -Miss Lavish looked at the narrow ribbon of sky, and murmured: “Oh, you -have property in Surrey?” - -“Hardly any,” said Lucy, fearful of being thought a snob. “Only thirty -acres—just the garden, all downhill, and some fields.” - -Miss Lavish was not disgusted, and said it was just the size of her -aunt’s Suffolk estate. Italy receded. They tried to remember the last -name of Lady Louisa someone, who had taken a house near Summer Street -the other year, but she had not liked it, which was odd of her. And -just as Miss Lavish had got the name, she broke off and exclaimed: - -“Bless us! Bless us and save us! We’ve lost the way.” - -Certainly they had seemed a long time in reaching Santa Croce, the -tower of which had been plainly visible from the landing window. But -Miss Lavish had said so much about knowing her Florence by heart, that -Lucy had followed her with no misgivings. - -“Lost! lost! My dear Miss Lucy, during our political diatribes we have -taken a wrong turning. How those horrid Conservatives would jeer at us! -What are we to do? Two lone females in an unknown town. Now, this is -what _I_ call an adventure.” - -Lucy, who wanted to see Santa Croce, suggested, as a possible solution, -that they should ask the way there. - -“Oh, but that is the word of a craven! And no, you are not, not, _not_ -to look at your Baedeker. Give it to me; I shan’t let you carry it. We -will simply drift.” - -Accordingly they drifted through a series of those grey-brown streets, -neither commodious nor picturesque, in which the eastern quarter of the -city abounds. Lucy soon lost interest in the discontent of Lady Louisa, -and became discontented herself. For one ravishing moment Italy -appeared. She stood in the Square of the Annunziata and saw in the -living terra-cotta those divine babies whom no cheap reproduction can -ever stale. There they stood, with their shining limbs bursting from -the garments of charity, and their strong white arms extended against -circlets of heaven. Lucy thought she had never seen anything more -beautiful; but Miss Lavish, with a shriek of dismay, dragged her -forward, declaring that they were out of their path now by at least a -mile. - -The hour was approaching at which the continental breakfast begins, or -rather ceases, to tell, and the ladies bought some hot chestnut paste -out of a little shop, because it looked so typical. It tasted partly of -the paper in which it was wrapped, partly of hair oil, partly of the -great unknown. But it gave them strength to drift into another Piazza, -large and dusty, on the farther side of which rose a black-and-white -façade of surpassing ugliness. Miss Lavish spoke to it dramatically. It -was Santa Croce. The adventure was over. - -“Stop a minute; let those two people go on, or I shall have to speak to -them. I do detest conventional intercourse. Nasty! they are going into -the church, too. Oh, the Britisher abroad!” - -“We sat opposite them at dinner last night. They have given us their -rooms. They were so very kind.” - -“Look at their figures!” laughed Miss Lavish. “They walk through my -Italy like a pair of cows. It’s very naughty of me, but I would like to -set an examination paper at Dover, and turn back every tourist who -couldn’t pass it.” - -“What would you ask us?” - -Miss Lavish laid her hand pleasantly on Lucy’s arm, as if to suggest -that she, at all events, would get full marks. In this exalted mood -they reached the steps of the great church, and were about to enter it -when Miss Lavish stopped, squeaked, flung up her arms, and cried: - -“There goes my local-colour box! I must have a word with him!” - -And in a moment she was away over the Piazza, her military cloak -flapping in the wind; nor did she slacken speed till she caught up an -old man with white whiskers, and nipped him playfully upon the arm. - -Lucy waited for nearly ten minutes. Then she began to get tired. The -beggars worried her, the dust blew in her eyes, and she remembered that -a young girl ought not to loiter in public places. She descended slowly -into the Piazza with the intention of rejoining Miss Lavish, who was -really almost too original. But at that moment Miss Lavish and her -local-colour box moved also, and disappeared down a side street, both -gesticulating largely. Tears of indignation came to Lucy’s eyes partly -because Miss Lavish had jilted her, partly because she had taken her -Baedeker. How could she find her way home? How could she find her way -about in Santa Croce? Her first morning was ruined, and she might never -be in Florence again. A few minutes ago she had been all high spirits, -talking as a woman of culture, and half persuading herself that she was -full of originality. Now she entered the church depressed and -humiliated, not even able to remember whether it was built by the -Franciscans or the Dominicans. Of course, it must be a wonderful -building. But how like a barn! And how very cold! Of course, it -contained frescoes by Giotto, in the presence of whose tactile values -she was capable of feeling what was proper. But who was to tell her -which they were? She walked about disdainfully, unwilling to be -enthusiastic over monuments of uncertain authorship or date. There was -no one even to tell her which, of all the sepulchral slabs that paved -the nave and transepts, was the one that was really beautiful, the one -that had been most praised by Mr. Ruskin. - -Then the pernicious charm of Italy worked on her, and, instead of -acquiring information, she began to be happy. She puzzled out the -Italian notices—the notices that forbade people to introduce dogs into -the church—the notice that prayed people, in the interest of health and -out of respect to the sacred edifice in which they found themselves, -not to spit. She watched the tourists; their noses were as red as their -Baedekers, so cold was Santa Croce. She beheld the horrible fate that -overtook three Papists—two he-babies and a she-baby—who began their -career by sousing each other with the Holy Water, and then proceeded to -the Machiavelli memorial, dripping but hallowed. Advancing towards it -very slowly and from immense distances, they touched the stone with -their fingers, with their handkerchiefs, with their heads, and then -retreated. What could this mean? They did it again and again. Then Lucy -realized that they had mistaken Machiavelli for some saint, hoping to -acquire virtue. Punishment followed quickly. The smallest he-baby -stumbled over one of the sepulchral slabs so much admired by Mr. -Ruskin, and entangled his feet in the features of a recumbent bishop. -Protestant as she was, Lucy darted forward. She was too late. He fell -heavily upon the prelate’s upturned toes. - -“Hateful bishop!” exclaimed the voice of old Mr. Emerson, who had -darted forward also. “Hard in life, hard in death. Go out into the -sunshine, little boy, and kiss your hand to the sun, for that is where -you ought to be. Intolerable bishop!” - -The child screamed frantically at these words, and at these dreadful -people who picked him up, dusted him, rubbed his bruises, and told him -not to be superstitious. - -“Look at him!” said Mr. Emerson to Lucy. “Here’s a mess: a baby hurt, -cold, and frightened! But what else can you expect from a church?” - -The child’s legs had become as melting wax. Each time that old Mr. -Emerson and Lucy set it erect it collapsed with a roar. Fortunately an -Italian lady, who ought to have been saying her prayers, came to the -rescue. By some mysterious virtue, which mothers alone possess, she -stiffened the little boy’s back-bone and imparted strength to his -knees. He stood. Still gibbering with agitation, he walked away. - -“You are a clever woman,” said Mr. Emerson. “You have done more than -all the relics in the world. I am not of your creed, but I do believe -in those who make their fellow-creatures happy. There is no scheme of -the universe—” - -He paused for a phrase. - -“Niente,” said the Italian lady, and returned to her prayers. - -“I’m not sure she understands English,” suggested Lucy. - -In her chastened mood she no longer despised the Emersons. She was -determined to be gracious to them, beautiful rather than delicate, and, -if possible, to erase Miss Bartlett’s civility by some gracious -reference to the pleasant rooms. - -“That woman understands everything,” was Mr. Emerson’s reply. “But what -are you doing here? Are you doing the church? Are you through with the -church?” - -“No,” cried Lucy, remembering her grievance. “I came here with Miss -Lavish, who was to explain everything; and just by the door—it is too -bad!—she simply ran away, and after waiting quite a time, I had to come -in by myself.” - -“Why shouldn’t you?” said Mr. Emerson. - -“Yes, why shouldn’t you come by yourself?” said the son, addressing the -young lady for the first time. - -“But Miss Lavish has even taken away Baedeker.” - -“Baedeker?” said Mr. Emerson. “I’m glad it’s _that_ you minded. It’s -worth minding, the loss of a Baedeker. _That’s_ worth minding.” - -Lucy was puzzled. She was again conscious of some new idea, and was not -sure whither it would lead her. - -“If you’ve no Baedeker,” said the son, “you’d better join us.” Was this -where the idea would lead? She took refuge in her dignity. - -“Thank you very much, but I could not think of that. I hope you do not -suppose that I came to join on to you. I really came to help with the -child, and to thank you for so kindly giving us your rooms last night. -I hope that you have not been put to any great inconvenience.” - -“My dear,” said the old man gently, “I think that you are repeating -what you have heard older people say. You are pretending to be touchy; -but you are not really. Stop being so tiresome, and tell me instead -what part of the church you want to see. To take you to it will be a -real pleasure.” - -Now, this was abominably impertinent, and she ought to have been -furious. But it is sometimes as difficult to lose one’s temper as it is -difficult at other times to keep it. Lucy could not get cross. Mr. -Emerson was an old man, and surely a girl might humour him. On the -other hand, his son was a young man, and she felt that a girl ought to -be offended with him, or at all events be offended before him. It was -at him that she gazed before replying. - -“I am not touchy, I hope. It is the Giottos that I want to see, if you -will kindly tell me which they are.” - -The son nodded. With a look of sombre satisfaction, he led the way to -the Peruzzi Chapel. There was a hint of the teacher about him. She felt -like a child in school who had answered a question rightly. - -The chapel was already filled with an earnest congregation, and out of -them rose the voice of a lecturer, directing them how to worship -Giotto, not by tactful valuations, but by the standards of the spirit. - -“Remember,” he was saying, “the facts about this church of Santa Croce; -how it was built by faith in the full fervour of medievalism, before -any taint of the Renaissance had appeared. Observe how Giotto in these -frescoes—now, unhappily, ruined by restoration—is untroubled by the -snares of anatomy and perspective. Could anything be more majestic, -more pathetic, beautiful, true? How little, we feel, avails knowledge -and technical cleverness against a man who truly feels!” - -“No!” exclaimed Mr. Emerson, in much too loud a voice for church. -“Remember nothing of the sort! Built by faith indeed! That simply means -the workmen weren’t paid properly. And as for the frescoes, I see no -truth in them. Look at that fat man in blue! He must weigh as much as I -do, and he is shooting into the sky like an air balloon.” - -He was referring to the fresco of the “Ascension of St. John.” Inside, -the lecturer’s voice faltered, as well it might. The audience shifted -uneasily, and so did Lucy. She was sure that she ought not to be with -these men; but they had cast a spell over her. They were so serious and -so strange that she could not remember how to behave. - -“Now, did this happen, or didn’t it? Yes or no?” - -George replied: - -“It happened like this, if it happened at all. I would rather go up to -heaven by myself than be pushed by cherubs; and if I got there I should -like my friends to lean out of it, just as they do here.” - -“You will never go up,” said his father. “You and I, dear boy, will lie -at peace in the earth that bore us, and our names will disappear as -surely as our work survives.” - -“Some of the people can only see the empty grave, not the saint, -whoever he is, going up. It did happen like that, if it happened at -all.” - -“Pardon me,” said a frigid voice. “The chapel is somewhat small for two -parties. We will incommode you no longer.” - -The lecturer was a clergyman, and his audience must be also his flock, -for they held prayer-books as well as guide-books in their hands. They -filed out of the chapel in silence. Amongst them were the two little -old ladies of the Pension Bertolini—Miss Teresa and Miss Catherine -Alan. - -“Stop!” cried Mr. Emerson. “There’s plenty of room for us all. Stop!” - -The procession disappeared without a word. - -Soon the lecturer could be heard in the next chapel, describing the -life of St. Francis. - -“George, I do believe that clergyman is the Brixton curate.” - -George went into the next chapel and returned, saying “Perhaps he is. I -don’t remember.” - -“Then I had better speak to him and remind him who I am. It’s that Mr. -Eager. Why did he go? Did we talk too loud? How vexatious. I shall go -and say we are sorry. Hadn’t I better? Then perhaps he will come back.” - -“He will not come back,” said George. - -But Mr. Emerson, contrite and unhappy, hurried away to apologize to the -Rev. Cuthbert Eager. Lucy, apparently absorbed in a lunette, could hear -the lecture again interrupted, the anxious, aggressive voice of the old -man, the curt, injured replies of his opponent. The son, who took every -little contretemps as if it were a tragedy, was listening also. - -“My father has that effect on nearly everyone,” he informed her. “He -will try to be kind.” - -“I hope we all try,” said she, smiling nervously. - -“Because we think it improves our characters. But he is kind to people -because he loves them; and they find him out, and are offended, or -frightened.” - -“How silly of them!” said Lucy, though in her heart she sympathized; “I -think that a kind action done tactfully—” - -“Tact!” - -He threw up his head in disdain. Apparently she had given the wrong -answer. She watched the singular creature pace up and down the chapel. -For a young man his face was rugged, and—until the shadows fell upon -it—hard. Enshadowed, it sprang into tenderness. She saw him once again -at Rome, on the ceiling of the Sistine Chapel, carrying a burden of -acorns. Healthy and muscular, he yet gave her the feeling of greyness, -of tragedy that might only find solution in the night. The feeling soon -passed; it was unlike her to have entertained anything so subtle. Born -of silence and of unknown emotion, it passed when Mr. Emerson returned, -and she could re-enter the world of rapid talk, which was alone -familiar to her. - -“Were you snubbed?” asked his son tranquilly. - -“But we have spoilt the pleasure of I don’t know how many people. They -won’t come back.” - -“...full of innate sympathy...quickness to perceive good in -others...vision of the brotherhood of man...” Scraps of the lecture on -St. Francis came floating round the partition wall. - -“Don’t let us spoil yours,” he continued to Lucy. “Have you looked at -those saints?” - -“Yes,” said Lucy. “They are lovely. Do you know which is the tombstone -that is praised in Ruskin?” - -He did not know, and suggested that they should try to guess it. -George, rather to her relief, refused to move, and she and the old man -wandered not unpleasantly about Santa Croce, which, though it is like a -barn, has harvested many beautiful things inside its walls. There were -also beggars to avoid and guides to dodge round the pillars, and an old -lady with her dog, and here and there a priest modestly edging to his -Mass through the groups of tourists. But Mr. Emerson was only half -interested. He watched the lecturer, whose success he believed he had -impaired, and then he anxiously watched his son. - -“Why will he look at that fresco?” he said uneasily. “I saw nothing in -it.” - -“I like Giotto,” she replied. “It is so wonderful what they say about -his tactile values. Though I like things like the Della Robbia babies -better.” - -“So you ought. A baby is worth a dozen saints. And my baby’s worth the -whole of Paradise, and as far as I can see he lives in Hell.” - -Lucy again felt that this did not do. - -“In Hell,” he repeated. “He’s unhappy.” - -“Oh, dear!” said Lucy. - -“How can he be unhappy when he is strong and alive? What more is one to -give him? And think how he has been brought up—free from all the -superstition and ignorance that lead men to hate one another in the -name of God. With such an education as that, I thought he was bound to -grow up happy.” - -She was no theologian, but she felt that here was a very foolish old -man, as well as a very irreligious one. She also felt that her mother -might not like her talking to that kind of person, and that Charlotte -would object most strongly. - -“What are we to do with him?” he asked. “He comes out for his holiday -to Italy, and behaves—like that; like the little child who ought to -have been playing, and who hurt himself upon the tombstone. Eh? What -did you say?” - -Lucy had made no suggestion. Suddenly he said: - -“Now don’t be stupid over this. I don’t require you to fall in love -with my boy, but I do think you might try and understand him. You are -nearer his age, and if you let yourself go I am sure you are sensible. -You might help me. He has known so few women, and you have the time. -You stop here several weeks, I suppose? But let yourself go. You are -inclined to get muddled, if I may judge from last night. Let yourself -go. Pull out from the depths those thoughts that you do not understand, -and spread them out in the sunlight and know the meaning of them. By -understanding George you may learn to understand yourself. It will be -good for both of you.” - -To this extraordinary speech Lucy found no answer. - -“I only know what it is that’s wrong with him; not why it is.” - -“And what is it?” asked Lucy fearfully, expecting some harrowing tale. - -“The old trouble; things won’t fit.” - -“What things?” - -“The things of the universe. It is quite true. They don’t.” - -“Oh, Mr. Emerson, whatever do you mean?” - -In his ordinary voice, so that she scarcely realized he was quoting -poetry, he said: - -“‘From far, from eve and morning, - And yon twelve-winded sky, -The stuff of life to knit me - Blew hither: here am I’ - - -George and I both know this, but why does it distress him? We know that -we come from the winds, and that we shall return to them; that all life -is perhaps a knot, a tangle, a blemish in the eternal smoothness. But -why should this make us unhappy? Let us rather love one another, and -work and rejoice. I don’t believe in this world sorrow.” - -Miss Honeychurch assented. - -“Then make my boy think like us. Make him realize that by the side of -the everlasting Why there is a Yes—a transitory Yes if you like, but a -Yes.” - -Suddenly she laughed; surely one ought to laugh. A young man melancholy -because the universe wouldn’t fit, because life was a tangle or a wind, -or a Yes, or something! - -“I’m very sorry,” she cried. “You’ll think me unfeeling, but—but—” Then -she became matronly. “Oh, but your son wants employment. Has he no -particular hobby? Why, I myself have worries, but I can generally -forget them at the piano; and collecting stamps did no end of good for -my brother. Perhaps Italy bores him; you ought to try the Alps or the -Lakes.” - -The old man’s face saddened, and he touched her gently with his hand. -This did not alarm her; she thought that her advice had impressed him -and that he was thanking her for it. Indeed, he no longer alarmed her -at all; she regarded him as a kind thing, but quite silly. Her feelings -were as inflated spiritually as they had been an hour ago esthetically, -before she lost Baedeker. The dear George, now striding towards them -over the tombstones, seemed both pitiable and absurd. He approached, -his face in the shadow. He said: - -“Miss Bartlett.” - -“Oh, good gracious me!” said Lucy, suddenly collapsing and again seeing -the whole of life in a new perspective. “Where? Where?” - -“In the nave.” - -“I see. Those gossiping little Miss Alans must have—” She checked -herself. - -“Poor girl!” exploded Mr. Emerson. “Poor girl!” - -She could not let this pass, for it was just what she was feeling -herself. - -“Poor girl? I fail to understand the point of that remark. I think -myself a very fortunate girl, I assure you. I’m thoroughly happy, and -having a splendid time. Pray don’t waste time mourning over _me_. -There’s enough sorrow in the world, isn’t there, without trying to -invent it. Good-bye. Thank you both so much for all your kindness. Ah, -yes! there does come my cousin. A delightful morning! Santa Croce is a -wonderful church.” - -She joined her cousin. - - - - -Chapter III -Music, Violets, and the Letter “S” - - -It so happened that Lucy, who found daily life rather chaotic, entered -a more solid world when she opened the piano. She was then no longer -either deferential or patronizing; no longer either a rebel or a slave. -The kingdom of music is not the kingdom of this world; it will accept -those whom breeding and intellect and culture have alike rejected. The -commonplace person begins to play, and shoots into the empyrean without -effort, whilst we look up, marvelling how he has escaped us, and -thinking how we could worship him and love him, would he but translate -his visions into human words, and his experiences into human actions. -Perhaps he cannot; certainly he does not, or does so very seldom. Lucy -had done so never. - -She was no dazzling _exécutante;_ her runs were not at all like strings -of pearls, and she struck no more right notes than was suitable for one -of her age and situation. Nor was she the passionate young lady, who -performs so tragically on a summer’s evening with the window open. -Passion was there, but it could not be easily labelled; it slipped -between love and hatred and jealousy, and all the furniture of the -pictorial style. And she was tragical only in the sense that she was -great, for she loved to play on the side of Victory. Victory of what -and over what—that is more than the words of daily life can tell us. -But that some sonatas of Beethoven are written tragic no one can -gainsay; yet they can triumph or despair as the player decides, and -Lucy had decided that they should triumph. - -A very wet afternoon at the Bertolini permitted her to do the thing she -really liked, and after lunch she opened the little draped piano. A few -people lingered round and praised her playing, but finding that she -made no reply, dispersed to their rooms to write up their diaries or to -sleep. She took no notice of Mr. Emerson looking for his son, nor of -Miss Bartlett looking for Miss Lavish, nor of Miss Lavish looking for -her cigarette-case. Like every true performer, she was intoxicated by -the mere feel of the notes: they were fingers caressing her own; and by -touch, not by sound alone, did she come to her desire. - -Mr. Beebe, sitting unnoticed in the window, pondered this illogical -element in Miss Honeychurch, and recalled the occasion at Tunbridge -Wells when he had discovered it. It was at one of those entertainments -where the upper classes entertain the lower. The seats were filled with -a respectful audience, and the ladies and gentlemen of the parish, -under the auspices of their vicar, sang, or recited, or imitated the -drawing of a champagne cork. Among the promised items was “Miss -Honeychurch. Piano. Beethoven,” and Mr. Beebe was wondering whether it -would be Adelaida, or the march of The Ruins of Athens, when his -composure was disturbed by the opening bars of Opus III. He was in -suspense all through the introduction, for not until the pace quickens -does one know what the performer intends. With the roar of the opening -theme he knew that things were going extraordinarily; in the chords -that herald the conclusion he heard the hammer strokes of victory. He -was glad that she only played the first movement, for he could have -paid no attention to the winding intricacies of the measures of -nine-sixteen. The audience clapped, no less respectful. It was Mr. -Beebe who started the stamping; it was all that one could do. - -“Who is she?” he asked the vicar afterwards. - -“Cousin of one of my parishioners. I do not consider her choice of a -piece happy. Beethoven is so usually simple and direct in his appeal -that it is sheer perversity to choose a thing like that, which, if -anything, disturbs.” - -“Introduce me.” - -“She will be delighted. She and Miss Bartlett are full of the praises -of your sermon.” - -“My sermon?” cried Mr. Beebe. “Why ever did she listen to it?” - -When he was introduced he understood why, for Miss Honeychurch, -disjoined from her music stool, was only a young lady with a quantity -of dark hair and a very pretty, pale, undeveloped face. She loved going -to concerts, she loved stopping with her cousin, she loved iced coffee -and meringues. He did not doubt that she loved his sermon also. But -before he left Tunbridge Wells he made a remark to the vicar, which he -now made to Lucy herself when she closed the little piano and moved -dreamily towards him: - -“If Miss Honeychurch ever takes to live as she plays, it will be very -exciting both for us and for her.” - -Lucy at once re-entered daily life. - -“Oh, what a funny thing! Some one said just the same to mother, and she -said she trusted I should never live a duet.” - -“Doesn’t Mrs. Honeychurch like music?” - -“She doesn’t mind it. But she doesn’t like one to get excited over -anything; she thinks I am silly about it. She thinks—I can’t make out. -Once, you know, I said that I liked my own playing better than any -one’s. She has never got over it. Of course, I didn’t mean that I -played well; I only meant—” - -“Of course,” said he, wondering why she bothered to explain. - -“Music—” said Lucy, as if attempting some generality. She could not -complete it, and looked out absently upon Italy in the wet. The whole -life of the South was disorganized, and the most graceful nation in -Europe had turned into formless lumps of clothes. - -The street and the river were dirty yellow, the bridge was dirty grey, -and the hills were dirty purple. Somewhere in their folds were -concealed Miss Lavish and Miss Bartlett, who had chosen this afternoon -to visit the Torre del Gallo. - -“What about music?” said Mr. Beebe. - -“Poor Charlotte will be sopped,” was Lucy’s reply. - -The expedition was typical of Miss Bartlett, who would return cold, -tired, hungry, and angelic, with a ruined skirt, a pulpy Baedeker, and -a tickling cough in her throat. On another day, when the whole world -was singing and the air ran into the mouth, like wine, she would refuse -to stir from the drawing-room, saying that she was an old thing, and no -fit companion for a hearty girl. - -“Miss Lavish has led your cousin astray. She hopes to find the true -Italy in the wet I believe.” - -“Miss Lavish is so original,” murmured Lucy. This was a stock remark, -the supreme achievement of the Pension Bertolini in the way of -definition. Miss Lavish was so original. Mr. Beebe had his doubts, but -they would have been put down to clerical narrowness. For that, and for -other reasons, he held his peace. - -“Is it true,” continued Lucy in awe-struck tone, “that Miss Lavish is -writing a book?” - -“They do say so.” - -“What is it about?” - -“It will be a novel,” replied Mr. Beebe, “dealing with modern Italy. -Let me refer you for an account to Miss Catharine Alan, who uses words -herself more admirably than any one I know.” - -“I wish Miss Lavish would tell me herself. We started such friends. But -I don’t think she ought to have run away with Baedeker that morning in -Santa Croce. Charlotte was most annoyed at finding me practically -alone, and so I couldn’t help being a little annoyed with Miss Lavish.” - -“The two ladies, at all events, have made it up.” - -He was interested in the sudden friendship between women so apparently -dissimilar as Miss Bartlett and Miss Lavish. They were always in each -other’s company, with Lucy a slighted third. Miss Lavish he believed he -understood, but Miss Bartlett might reveal unknown depths of -strangeness, though not perhaps, of meaning. Was Italy deflecting her -from the path of prim chaperon, which he had assigned to her at -Tunbridge Wells? All his life he had loved to study maiden ladies; they -were his specialty, and his profession had provided him with ample -opportunities for the work. Girls like Lucy were charming to look at, -but Mr. Beebe was, from rather profound reasons, somewhat chilly in his -attitude towards the other sex, and preferred to be interested rather -than enthralled. - -Lucy, for the third time, said that poor Charlotte would be sopped. The -Arno was rising in flood, washing away the traces of the little carts -upon the foreshore. But in the south-west there had appeared a dull -haze of yellow, which might mean better weather if it did not mean -worse. She opened the window to inspect, and a cold blast entered the -room, drawing a plaintive cry from Miss Catharine Alan, who entered at -the same moment by the door. - -“Oh, dear Miss Honeychurch, you will catch a chill! And Mr. Beebe here -besides. Who would suppose this is Italy? There is my sister actually -nursing the hot-water can; no comforts or proper provisions.” - -She sidled towards them and sat down, self-conscious as she always was -on entering a room which contained one man, or a man and one woman. - -“I could hear your beautiful playing, Miss Honeychurch, though I was in -my room with the door shut. Doors shut; indeed, most necessary. No one -has the least idea of privacy in this country. And one person catches -it from another.” - -Lucy answered suitably. Mr. Beebe was not able to tell the ladies of -his adventure at Modena, where the chambermaid burst in upon him in his -bath, exclaiming cheerfully, “Fa niente, sono vecchia.” He contented -himself with saying: “I quite agree with you, Miss Alan. The Italians -are a most unpleasant people. They pry everywhere, they see everything, -and they know what we want before we know it ourselves. We are at their -mercy. They read our thoughts, they foretell our desires. From the -cab-driver down to—to Giotto, they turn us inside out, and I resent it. -Yet in their heart of hearts they are—how superficial! They have no -conception of the intellectual life. How right is Signora Bertolini, -who exclaimed to me the other day: ‘Ho, Mr. Beebe, if you knew what I -suffer over the children’s edjucaishion. _Hi_ won’t ’ave my little -Victorier taught by a hignorant Italian what can’t explain nothink!’” - -Miss Alan did not follow, but gathered that she was being mocked in an -agreeable way. Her sister was a little disappointed in Mr. Beebe, -having expected better things from a clergyman whose head was bald and -who wore a pair of russet whiskers. Indeed, who would have supposed -that tolerance, sympathy, and a sense of humour would inhabit that -militant form? - -In the midst of her satisfaction she continued to sidle, and at last -the cause was disclosed. From the chair beneath her she extracted a -gun-metal cigarette-case, on which were powdered in turquoise the -initials “E. L.” - -“That belongs to Lavish.” said the clergyman. “A good fellow, Lavish, -but I wish she’d start a pipe.” - -“Oh, Mr. Beebe,” said Miss Alan, divided between awe and mirth. -“Indeed, though it is dreadful for her to smoke, it is not quite as -dreadful as you suppose. She took to it, practically in despair, after -her life’s work was carried away in a landslip. Surely that makes it -more excusable.” - -“What was that?” asked Lucy. - -Mr. Beebe sat back complacently, and Miss Alan began as follows: “It -was a novel—and I am afraid, from what I can gather, not a very nice -novel. It is so sad when people who have abilities misuse them, and I -must say they nearly always do. Anyhow, she left it almost finished in -the Grotto of the Calvary at the Capuccini Hotel at Amalfi while she -went for a little ink. She said: ‘Can I have a little ink, please?’ But -you know what Italians are, and meanwhile the Grotto fell roaring on to -the beach, and the saddest thing of all is that she cannot remember -what she has written. The poor thing was very ill after it, and so got -tempted into cigarettes. It is a great secret, but I am glad to say -that she is writing another novel. She told Teresa and Miss Pole the -other day that she had got up all the local colour—this novel is to be -about modern Italy; the other was historical—but that she could not -start till she had an idea. First she tried Perugia for an inspiration, -then she came here—this must on no account get round. And so cheerful -through it all! I cannot help thinking that there is something to -admire in everyone, even if you do not approve of them.” - -Miss Alan was always thus being charitable against her better -judgement. A delicate pathos perfumed her disconnected remarks, giving -them unexpected beauty, just as in the decaying autumn woods there -sometimes rise odours reminiscent of spring. She felt she had made -almost too many allowances, and apologized hurriedly for her -toleration. - -“All the same, she is a little too—I hardly like to say unwomanly, but -she behaved most strangely when the Emersons arrived.” - -Mr. Beebe smiled as Miss Alan plunged into an anecdote which he knew -she would be unable to finish in the presence of a gentleman. - -“I don’t know, Miss Honeychurch, if you have noticed that Miss Pole, -the lady who has so much yellow hair, takes lemonade. That old Mr. -Emerson, who puts things very strangely—” - -Her jaw dropped. She was silent. Mr. Beebe, whose social resources were -endless, went out to order some tea, and she continued to Lucy in a -hasty whisper: - -“Stomach. He warned Miss Pole of her stomach-acidity, he called it—and -he may have meant to be kind. I must say I forgot myself and laughed; -it was so sudden. As Teresa truly said, it was no laughing matter. But -the point is that Miss Lavish was positively _attracted_ by his -mentioning S., and said she liked plain speaking, and meeting different -grades of thought. She thought they were commercial -travellers—‘drummers’ was the word she used—and all through dinner she -tried to prove that England, our great and beloved country, rests on -nothing but commerce. Teresa was very much annoyed, and left the table -before the cheese, saying as she did so: ‘There, Miss Lavish, is one -who can confute you better than I,’ and pointed to that beautiful -picture of Lord Tennyson. Then Miss Lavish said: ‘Tut! The early -Victorians.’ Just imagine! ‘Tut! The early Victorians.’ My sister had -gone, and I felt bound to speak. I said: ‘Miss Lavish, _I_ am an early -Victorian; at least, that is to say, I will hear no breath of censure -against our dear Queen.’ It was horrible speaking. I reminded her how -the Queen had been to Ireland when she did not want to go, and I must -say she was dumbfounded, and made no reply. But, unluckily, Mr. Emerson -overheard this part, and called in his deep voice: ‘Quite so, quite so! -I honour the woman for her Irish visit.’ The woman! I tell things so -badly; but you see what a tangle we were in by this time, all on -account of S. having been mentioned in the first place. But that was -not all. After dinner Miss Lavish actually came up and said: ‘Miss -Alan, I am going into the smoking-room to talk to those two nice men. -Come, too.’ Needless to say, I refused such an unsuitable invitation, -and she had the impertinence to tell me that it would broaden my ideas, -and said that she had four brothers, all University men, except one who -was in the army, who always made a point of talking to commercial -travellers.” - -“Let me finish the story,” said Mr. Beebe, who had returned. - -“Miss Lavish tried Miss Pole, myself, everyone, and finally said: ‘I -shall go alone.’ She went. At the end of five minutes she returned -unobtrusively with a green baize board, and began playing patience.” - -“Whatever happened?” cried Lucy. - -“No one knows. No one will ever know. Miss Lavish will never dare to -tell, and Mr. Emerson does not think it worth telling.” - -“Mr. Beebe—old Mr. Emerson, is he nice or not nice? I do so want to -know.” - -Mr. Beebe laughed and suggested that she should settle the question for -herself. - -“No; but it is so difficult. Sometimes he is so silly, and then I do -not mind him. Miss Alan, what do you think? Is he nice?” - -The little old lady shook her head, and sighed disapprovingly. Mr. -Beebe, whom the conversation amused, stirred her up by saying: - -“I consider that you are bound to class him as nice, Miss Alan, after -that business of the violets.” - -“Violets? Oh, dear! Who told you about the violets? How do things get -round? A pension is a bad place for gossips. No, I cannot forget how -they behaved at Mr. Eager’s lecture at Santa Croce. Oh, poor Miss -Honeychurch! It really was too bad. No, I have quite changed. I do -_not_ like the Emersons. They are _not_ nice.” - -Mr. Beebe smiled nonchalantly. He had made a gentle effort to introduce -the Emersons into Bertolini society, and the effort had failed. He was -almost the only person who remained friendly to them. Miss Lavish, who -represented intellect, was avowedly hostile, and now the Miss Alans, -who stood for good breeding, were following her. Miss Bartlett, -smarting under an obligation, would scarcely be civil. The case of Lucy -was different. She had given him a hazy account of her adventures in -Santa Croce, and he gathered that the two men had made a curious and -possibly concerted attempt to annex her, to show her the world from -their own strange standpoint, to interest her in their private sorrows -and joys. This was impertinent; he did not wish their cause to be -championed by a young girl: he would rather it should fail. After all, -he knew nothing about them, and pension joys, pension sorrows, are -flimsy things; whereas Lucy would be his parishioner. - -Lucy, with one eye upon the weather, finally said that she thought the -Emersons were nice; not that she saw anything of them now. Even their -seats at dinner had been moved. - -“But aren’t they always waylaying you to go out with them, dear?” said -the little lady inquisitively. - -“Only once. Charlotte didn’t like it, and said something—quite -politely, of course.” - -“Most right of her. They don’t understand our ways. They must find -their level.” - -Mr. Beebe rather felt that they had gone under. They had given up their -attempt—if it was one—to conquer society, and now the father was almost -as silent as the son. He wondered whether he would not plan a pleasant -day for these folk before they left—some expedition, perhaps, with Lucy -well chaperoned to be nice to them. It was one of Mr. Beebe’s chief -pleasures to provide people with happy memories. - -Evening approached while they chatted; the air became brighter; the -colours on the trees and hills were purified, and the Arno lost its -muddy solidity and began to twinkle. There were a few streaks of -bluish-green among the clouds, a few patches of watery light upon the -earth, and then the dripping façade of San Miniato shone brilliantly in -the declining sun. - -“Too late to go out,” said Miss Alan in a voice of relief. “All the -galleries are shut.” - -“I think I shall go out,” said Lucy. “I want to go round the town in -the circular tram—on the platform by the driver.” - -Her two companions looked grave. Mr. Beebe, who felt responsible for -her in the absence of Miss Bartlett, ventured to say: - -“I wish we could. Unluckily I have letters. If you do want to go out -alone, won’t you be better on your feet?” - -“Italians, dear, you know,” said Miss Alan. - -“Perhaps I shall meet someone who reads me through and through!” - -But they still looked disapproval, and she so far conceded to Mr. Beebe -as to say that she would only go for a little walk, and keep to the -street frequented by tourists. - -“She oughtn’t really to go at all,” said Mr. Beebe, as they watched her -from the window, “and she knows it. I put it down to too much -Beethoven.” - - - - -Chapter IV -Fourth Chapter - - -Mr. Beebe was right. Lucy never knew her desires so clearly as after -music. She had not really appreciated the clergyman’s wit, nor the -suggestive twitterings of Miss Alan. Conversation was tedious; she -wanted something big, and she believed that it would have come to her -on the wind-swept platform of an electric tram. This she might not -attempt. It was unladylike. Why? Why were most big things unladylike? -Charlotte had once explained to her why. It was not that ladies were -inferior to men; it was that they were different. Their mission was to -inspire others to achievement rather than to achieve themselves. -Indirectly, by means of tact and a spotless name, a lady could -accomplish much. But if she rushed into the fray herself she would be -first censured, then despised, and finally ignored. Poems had been -written to illustrate this point. - -There is much that is immortal in this medieval lady. The dragons have -gone, and so have the knights, but still she lingers in our midst. She -reigned in many an early Victorian castle, and was Queen of much early -Victorian song. It is sweet to protect her in the intervals of -business, sweet to pay her honour when she has cooked our dinner well. -But alas! the creature grows degenerate. In her heart also there are -springing up strange desires. She too is enamoured of heavy winds, and -vast panoramas, and green expanses of the sea. She has marked the -kingdom of this world, how full it is of wealth, and beauty, and war—a -radiant crust, built around the central fires, spinning towards the -receding heavens. Men, declaring that she inspires them to it, move -joyfully over the surface, having the most delightful meetings with -other men, happy, not because they are masculine, but because they are -alive. Before the show breaks up she would like to drop the august -title of the Eternal Woman, and go there as her transitory self. - -Lucy does not stand for the medieval lady, who was rather an ideal to -which she was bidden to lift her eyes when feeling serious. Nor has she -any system of revolt. Here and there a restriction annoyed her -particularly, and she would transgress it, and perhaps be sorry that -she had done so. This afternoon she was peculiarly restive. She would -really like to do something of which her well-wishers disapproved. As -she might not go on the electric tram, she went to Alinari’s shop. - -There she bought a photograph of Botticelli’s “Birth of Venus.” Venus, -being a pity, spoilt the picture, otherwise so charming, and Miss -Bartlett had persuaded her to do without it. (A pity in art of course -signified the nude.) Giorgione’s “Tempesta,” the “Idolino,” some of the -Sistine frescoes and the Apoxyomenos, were added to it. She felt a -little calmer then, and bought Fra Angelico’s “Coronation,” Giotto’s -“Ascension of St. John,” some Della Robbia babies, and some Guido Reni -Madonnas. For her taste was catholic, and she extended uncritical -approval to every well-known name. - -But though she spent nearly seven lire, the gates of liberty seemed -still unopened. She was conscious of her discontent; it was new to her -to be conscious of it. “The world,” she thought, “is certainly full of -beautiful things, if only I could come across them.” It was not -surprising that Mrs. Honeychurch disapproved of music, declaring that -it always left her daughter peevish, unpractical, and touchy. - -“Nothing ever happens to me,” she reflected, as she entered the Piazza -Signoria and looked nonchalantly at its marvels, now fairly familiar to -her. The great square was in shadow; the sunshine had come too late to -strike it. Neptune was already unsubstantial in the twilight, half god, -half ghost, and his fountain plashed dreamily to the men and satyrs who -idled together on its marge. The Loggia showed as the triple entrance -of a cave, wherein many a deity, shadowy, but immortal, looking forth -upon the arrivals and departures of mankind. It was the hour of -unreality—the hour, that is, when unfamiliar things are real. An older -person at such an hour and in such a place might think that sufficient -was happening to him, and rest content. Lucy desired more. - -She fixed her eyes wistfully on the tower of the palace, which rose out -of the lower darkness like a pillar of roughened gold. It seemed no -longer a tower, no longer supported by earth, but some unattainable -treasure throbbing in the tranquil sky. Its brightness mesmerized her, -still dancing before her eyes when she bent them to the ground and -started towards home. - -Then something did happen. - -Two Italians by the Loggia had been bickering about a debt. “Cinque -lire,” they had cried, “cinque lire!” They sparred at each other, and -one of them was hit lightly upon the chest. He frowned; he bent towards -Lucy with a look of interest, as if he had an important message for -her. He opened his lips to deliver it, and a stream of red came out -between them and trickled down his unshaven chin. - -That was all. A crowd rose out of the dusk. It hid this extraordinary -man from her, and bore him away to the fountain. Mr. George Emerson -happened to be a few paces away, looking at her across the spot where -the man had been. How very odd! Across something. Even as she caught -sight of him he grew dim; the palace itself grew dim, swayed above her, -fell on to her softly, slowly, noiselessly, and the sky fell with it. - -She thought: “Oh, what have I done?” - -“Oh, what have I done?” she murmured, and opened her eyes. - -George Emerson still looked at her, but not across anything. She had -complained of dullness, and lo! one man was stabbed, and another held -her in his arms. - -They were sitting on some steps in the Uffizi Arcade. He must have -carried her. He rose when she spoke, and began to dust his knees. She -repeated: - -“Oh, what have I done?” - -“You fainted.” - -“I—I am very sorry.” - -“How are you now?” - -“Perfectly well—absolutely well.” And she began to nod and smile. - -“Then let us come home. There’s no point in our stopping.” - -He held out his hand to pull her up. She pretended not to see it. The -cries from the fountain—they had never ceased—rang emptily. The whole -world seemed pale and void of its original meaning. - -“How very kind you have been! I might have hurt myself falling. But now -I am well. I can go alone, thank you.” - -His hand was still extended. - -“Oh, my photographs!” she exclaimed suddenly. - -“What photographs?” - -“I bought some photographs at Alinari’s. I must have dropped them out -there in the square.” She looked at him cautiously. “Would you add to -your kindness by fetching them?” - -He added to his kindness. As soon as he had turned his back, Lucy arose -with the running of a maniac and stole down the arcade towards the -Arno. - -“Miss Honeychurch!” - -She stopped with her hand on her heart. - -“You sit still; you aren’t fit to go home alone.” - -“Yes, I am, thank you so very much.” - -“No, you aren’t. You’d go openly if you were.” - -“But I had rather—” - -“Then I don’t fetch your photographs.” - -“I had rather be alone.” - -He said imperiously: “The man is dead—the man is probably dead; sit -down till you are rested.” She was bewildered, and obeyed him. “And -don’t move till I come back.” - -In the distance she saw creatures with black hoods, such as appear in -dreams. The palace tower had lost the reflection of the declining day, -and joined itself to earth. How should she talk to Mr. Emerson when he -returned from the shadowy square? Again the thought occurred to her, -“Oh, what have I done?”—the thought that she, as well as the dying man, -had crossed some spiritual boundary. - -He returned, and she talked of the murder. Oddly enough, it was an easy -topic. She spoke of the Italian character; she became almost garrulous -over the incident that had made her faint five minutes before. Being -strong physically, she soon overcame the horror of blood. She rose -without his assistance, and though wings seemed to flutter inside her, -she walked firmly enough towards the Arno. There a cabman signalled to -them; they refused him. - -“And the murderer tried to kiss him, you say—how very odd Italians -are!—and gave himself up to the police! Mr. Beebe was saying that -Italians know everything, but I think they are rather childish. When my -cousin and I were at the Pitti yesterday—What was that?” - -He had thrown something into the stream. - -“What did you throw in?” - -“Things I didn’t want,” he said crossly. - -“Mr. Emerson!” - -“Well?” - -“Where are the photographs?” - -He was silent. - -“I believe it was my photographs that you threw away.” - -“I didn’t know what to do with them,” he cried, and his voice was that -of an anxious boy. Her heart warmed towards him for the first time. -“They were covered with blood. There! I’m glad I’ve told you; and all -the time we were making conversation I was wondering what to do with -them.” He pointed down-stream. “They’ve gone.” The river swirled under -the bridge, “I did mind them so, and one is so foolish, it seemed -better that they should go out to the sea—I don’t know; I may just mean -that they frightened me.” Then the boy verged into a man. “For -something tremendous has happened; I must face it without getting -muddled. It isn’t exactly that a man has died.” - -Something warned Lucy that she must stop him. - -“It has happened,” he repeated, “and I mean to find out what it is.” - -“Mr. Emerson—” - -He turned towards her frowning, as if she had disturbed him in some -abstract quest. - -“I want to ask you something before we go in.” - -They were close to their pension. She stopped and leant her elbows -against the parapet of the embankment. He did likewise. There is at -times a magic in identity of position; it is one of the things that -have suggested to us eternal comradeship. She moved her elbows before -saying: - -“I have behaved ridiculously.” - -He was following his own thoughts. - -“I was never so much ashamed of myself in my life; I cannot think what -came over me.” - -“I nearly fainted myself,” he said; but she felt that her attitude -repelled him. - -“Well, I owe you a thousand apologies.” - -“Oh, all right.” - -“And—this is the real point—you know how silly people are -gossiping—ladies especially, I am afraid—you understand what I mean?” - -“I’m afraid I don’t.” - -“I mean, would you not mention it to any one, my foolish behaviour?” - -“Your behaviour? Oh, yes, all right—all right.” - -“Thank you so much. And would you—” - -She could not carry her request any further. The river was rushing -below them, almost black in the advancing night. He had thrown her -photographs into it, and then he had told her the reason. It struck her -that it was hopeless to look for chivalry in such a man. He would do -her no harm by idle gossip; he was trustworthy, intelligent, and even -kind; he might even have a high opinion of her. But he lacked chivalry; -his thoughts, like his behaviour, would not be modified by awe. It was -useless to say to him, “And would you—” and hope that he would complete -the sentence for himself, averting his eyes from her nakedness like the -knight in that beautiful picture. She had been in his arms, and he -remembered it, just as he remembered the blood on the photographs that -she had bought in Alinari’s shop. It was not exactly that a man had -died; something had happened to the living: they had come to a -situation where character tells, and where childhood enters upon the -branching paths of Youth. - -“Well, thank you so much,” she repeated, “How quickly these accidents -do happen, and then one returns to the old life!” - -“I don’t.” - -Anxiety moved her to question him. - -His answer was puzzling: “I shall probably want to live.” - -“But why, Mr. Emerson? What do you mean?” - -“I shall want to live, I say.” - -Leaning her elbows on the parapet, she contemplated the River Arno, -whose roar was suggesting some unexpected melody to her ears. - - - - -Chapter V -Possibilities of a Pleasant Outing - - -It was a family saying that “you never knew which way Charlotte -Bartlett would turn.” She was perfectly pleasant and sensible over -Lucy’s adventure, found the abridged account of it quite adequate, and -paid suitable tribute to the courtesy of Mr. George Emerson. She and -Miss Lavish had had an adventure also. They had been stopped at the -Dazio coming back, and the young officials there, who seemed impudent -and _désœuvré_, had tried to search their reticules for provisions. It -might have been most unpleasant. Fortunately Miss Lavish was a match -for any one. - -For good or for evil, Lucy was left to face her problem alone. None of -her friends had seen her, either in the Piazza or, later on, by the -embankment. Mr. Beebe, indeed, noticing her startled eyes at -dinner-time, had again passed to himself the remark of “Too much -Beethoven.” But he only supposed that she was ready for an adventure, -not that she had encountered it. This solitude oppressed her; she was -accustomed to have her thoughts confirmed by others or, at all events, -contradicted; it was too dreadful not to know whether she was thinking -right or wrong. - -At breakfast next morning she took decisive action. There were two -plans between which she had to choose. Mr. Beebe was walking up to the -Torre del Gallo with the Emersons and some American ladies. Would Miss -Bartlett and Miss Honeychurch join the party? Charlotte declined for -herself; she had been there in the rain the previous afternoon. But she -thought it an admirable idea for Lucy, who hated shopping, changing -money, fetching letters, and other irksome duties—all of which Miss -Bartlett must accomplish this morning and could easily accomplish -alone. - -“No, Charlotte!” cried the girl, with real warmth. “It’s very kind of -Mr. Beebe, but I am certainly coming with you. I had much rather.” - -“Very well, dear,” said Miss Bartlett, with a faint flush of pleasure -that called forth a deep flush of shame on the cheeks of Lucy. How -abominably she behaved to Charlotte, now as always! But now she should -alter. All morning she would be really nice to her. - -She slipped her arm into her cousin’s, and they started off along the -Lung’ Arno. The river was a lion that morning in strength, voice, and -colour. Miss Bartlett insisted on leaning over the parapet to look at -it. She then made her usual remark, which was “How I do wish Freddy and -your mother could see this, too!” - -Lucy fidgeted; it was tiresome of Charlotte to have stopped exactly -where she did. - -“Look, Lucia! Oh, you are watching for the Torre del Gallo party. I -feared you would repent you of your choice.” - -Serious as the choice had been, Lucy did not repent. Yesterday had been -a muddle—queer and odd, the kind of thing one could not write down -easily on paper—but she had a feeling that Charlotte and her shopping -were preferable to George Emerson and the summit of the Torre del -Gallo. Since she could not unravel the tangle, she must take care not -to re-enter it. She could protest sincerely against Miss Bartlett’s -insinuations. - -But though she had avoided the chief actor, the scenery unfortunately -remained. Charlotte, with the complacency of fate, led her from the -river to the Piazza Signoria. She could not have believed that stones, -a Loggia, a fountain, a palace tower, would have such significance. For -a moment she understood the nature of ghosts. - -The exact site of the murder was occupied, not by a ghost, but by Miss -Lavish, who had the morning newspaper in her hand. She hailed them -briskly. The dreadful catastrophe of the previous day had given her an -idea which she thought would work up into a book. - -“Oh, let me congratulate you!” said Miss Bartlett. “After your despair -of yesterday! What a fortunate thing!” - -“Aha! Miss Honeychurch, come you here I am in luck. Now, you are to -tell me absolutely everything that you saw from the beginning.” Lucy -poked at the ground with her parasol. - -“But perhaps you would rather not?” - -“I’m sorry—if you could manage without it, I think I would rather not.” - -The elder ladies exchanged glances, not of disapproval; it is suitable -that a girl should feel deeply. - -“It is I who am sorry,” said Miss Lavish. “We literary hacks are -shameless creatures. I believe there’s no secret of the human heart -into which we wouldn’t pry.” - -She marched cheerfully to the fountain and back, and did a few -calculations in realism. Then she said that she had been in the Piazza -since eight o’clock collecting material. A good deal of it was -unsuitable, but of course one always had to adapt. The two men had -quarrelled over a five-franc note. For the five-franc note she should -substitute a young lady, which would raise the tone of the tragedy, and -at the same time furnish an excellent plot. - -“What is the heroine’s name?” asked Miss Bartlett. - -“Leonora,” said Miss Lavish; her own name was Eleanor. - -“I do hope she’s nice.” - -That desideratum would not be omitted. - -“And what is the plot?” - -Love, murder, abduction, revenge, was the plot. But it all came while -the fountain plashed to the satyrs in the morning sun. - -“I hope you will excuse me for boring on like this,” Miss Lavish -concluded. “It is so tempting to talk to really sympathetic people. Of -course, this is the barest outline. There will be a deal of local -colouring, descriptions of Florence and the neighbourhood, and I shall -also introduce some humorous characters. And let me give you all fair -warning: I intend to be unmerciful to the British tourist.” - -“Oh, you wicked woman,” cried Miss Bartlett. “I am sure you are -thinking of the Emersons.” - -Miss Lavish gave a Machiavellian smile. - -“I confess that in Italy my sympathies are not with my own countrymen. -It is the neglected Italians who attract me, and whose lives I am going -to paint so far as I can. For I repeat and I insist, and I have always -held most strongly, that a tragedy such as yesterday’s is not the less -tragic because it happened in humble life.” - -There was a fitting silence when Miss Lavish had concluded. Then the -cousins wished success to her labours, and walked slowly away across -the square. - -“She is my idea of a really clever woman,” said Miss Bartlett. “That -last remark struck me as so particularly true. It should be a most -pathetic novel.” - -Lucy assented. At present her great aim was not to get put into it. Her -perceptions this morning were curiously keen, and she believed that -Miss Lavish had her on trial for an _ingenué_. - -“She is emancipated, but only in the very best sense of the word,” -continued Miss Bartlett slowly. “None but the superficial would be -shocked at her. We had a long talk yesterday. She believes in justice -and truth and human interest. She told me also that she has a high -opinion of the destiny of woman—Mr. Eager! Why, how nice! What a -pleasant surprise!” - -“Ah, not for me,” said the chaplain blandly, “for I have been watching -you and Miss Honeychurch for quite a little time.” - -“We were chatting to Miss Lavish.” - -His brow contracted. - -“So I saw. Were you indeed? Andate via! sono occupato!” The last remark -was made to a vender of panoramic photographs who was approaching with -a courteous smile. “I am about to venture a suggestion. Would you and -Miss Honeychurch be disposed to join me in a drive some day this week—a -drive in the hills? We might go up by Fiesole and back by Settignano. -There is a point on that road where we could get down and have an -hour’s ramble on the hillside. The view thence of Florence is most -beautiful—far better than the hackneyed view of Fiesole. It is the view -that Alessio Baldovinetti is fond of introducing into his pictures. -That man had a decided feeling for landscape. Decidedly. But who looks -at it to-day? Ah, the world is too much for us.” - -Miss Bartlett had not heard of Alessio Baldovinetti, but she knew that -Mr. Eager was no commonplace chaplain. He was a member of the -residential colony who had made Florence their home. He knew the people -who never walked about with Baedekers, who had learnt to take a siesta -after lunch, who took drives the pension tourists had never heard of, -and saw by private influence galleries which were closed to them. -Living in delicate seclusion, some in furnished flats, others in -Renaissance villas on Fiesole’s slope, they read, wrote, studied, and -exchanged ideas, thus attaining to that intimate knowledge, or rather -perception, of Florence which is denied to all who carry in their -pockets the coupons of Cook. - -Therefore an invitation from the chaplain was something to be proud of. -Between the two sections of his flock he was often the only link, and -it was his avowed custom to select those of his migratory sheep who -seemed worthy, and give them a few hours in the pastures of the -permanent. Tea at a Renaissance villa? Nothing had been said about it -yet. But if it did come to that—how Lucy would enjoy it! - -A few days ago and Lucy would have felt the same. But the joys of life -were grouping themselves anew. A drive in the hills with Mr. Eager and -Miss Bartlett—even if culminating in a residential tea-party—was no -longer the greatest of them. She echoed the raptures of Charlotte -somewhat faintly. Only when she heard that Mr. Beebe was also coming -did her thanks become more sincere. - -“So we shall be a _partie carrée_,” said the chaplain. “In these days -of toil and tumult one has great needs of the country and its message -of purity. Andate via! andate presto, presto! Ah, the town! Beautiful -as it is, it is the town.” - -They assented. - -“This very square—so I am told—witnessed yesterday the most sordid of -tragedies. To one who loves the Florence of Dante and Savonarola there -is something portentous in such desecration—portentous and -humiliating.” - -“Humiliating indeed,” said Miss Bartlett. “Miss Honeychurch happened to -be passing through as it happened. She can hardly bear to speak of it.” -She glanced at Lucy proudly. - -“And how came we to have you here?” asked the chaplain paternally. - -Miss Bartlett’s recent liberalism oozed away at the question. “Do not -blame her, please, Mr. Eager. The fault is mine: I left her -unchaperoned.” - -“So you were here alone, Miss Honeychurch?” His voice suggested -sympathetic reproof but at the same time indicated that a few harrowing -details would not be unacceptable. His dark, handsome face drooped -mournfully towards her to catch her reply. - -“Practically.” - -“One of our pension acquaintances kindly brought her home,” said Miss -Bartlett, adroitly concealing the sex of the preserver. - -“For her also it must have been a terrible experience. I trust that -neither of you was at all—that it was not in your immediate proximity?” - -Of the many things Lucy was noticing to-day, not the least remarkable -was this: the ghoulish fashion in which respectable people will nibble -after blood. George Emerson had kept the subject strangely pure. - -“He died by the fountain, I believe,” was her reply. - -“And you and your friend—” - -“Were over at the Loggia.” - -“That must have saved you much. You have not, of course, seen the -disgraceful illustrations which the gutter Press—This man is a public -nuisance; he knows that I am a resident perfectly well, and yet he goes -on worrying me to buy his vulgar views.” - -Surely the vendor of photographs was in league with Lucy—in the eternal -league of Italy with youth. He had suddenly extended his book before -Miss Bartlett and Mr. Eager, binding their hands together by a long -glossy ribbon of churches, pictures, and views. - -“This is too much!” cried the chaplain, striking petulantly at one of -Fra Angelico’s angels. She tore. A shrill cry rose from the vendor. The -book it seemed, was more valuable than one would have supposed. - -“Willingly would I purchase—” began Miss Bartlett. - -“Ignore him,” said Mr. Eager sharply, and they all walked rapidly away -from the square. - -But an Italian can never be ignored, least of all when he has a -grievance. His mysterious persecution of Mr. Eager became relentless; -the air rang with his threats and lamentations. He appealed to Lucy; -would not she intercede? He was poor—he sheltered a family—the tax on -bread. He waited, he gibbered, he was recompensed, he was dissatisfied, -he did not leave them until he had swept their minds clean of all -thoughts whether pleasant or unpleasant. - -Shopping was the topic that now ensued. Under the chaplain’s guidance -they selected many hideous presents and mementoes—florid little -picture-frames that seemed fashioned in gilded pastry; other little -frames, more severe, that stood on little easels, and were carven out -of oak; a blotting book of vellum; a Dante of the same material; cheap -mosaic brooches, which the maids, next Christmas, would never tell from -real; pins, pots, heraldic saucers, brown art-photographs; Eros and -Psyche in alabaster; St. Peter to match—all of which would have cost -less in London. - -This successful morning left no pleasant impressions on Lucy. She had -been a little frightened, both by Miss Lavish and by Mr. Eager, she -knew not why. And as they frightened her, she had, strangely enough, -ceased to respect them. She doubted that Miss Lavish was a great -artist. She doubted that Mr. Eager was as full of spirituality and -culture as she had been led to suppose. They were tried by some new -test, and they were found wanting. As for Charlotte—as for Charlotte -she was exactly the same. It might be possible to be nice to her; it -was impossible to love her. - -“The son of a labourer; I happen to know it for a fact. A mechanic of -some sort himself when he was young; then he took to writing for the -Socialistic Press. I came across him at Brixton.” - -They were talking about the Emersons. - -“How wonderfully people rise in these days!” sighed Miss Bartlett, -fingering a model of the leaning Tower of Pisa. - -“Generally,” replied Mr. Eager, “one has only sympathy for their -success. The desire for education and for social advance—in these -things there is something not wholly vile. There are some working men -whom one would be very willing to see out here in Florence—little as -they would make of it.” - -“Is he a journalist now?” Miss Bartlett asked. - -“He is not; he made an advantageous marriage.” - -He uttered this remark with a voice full of meaning, and ended with a -sigh. - -“Oh, so he has a wife.” - -“Dead, Miss Bartlett, dead. I wonder—yes I wonder how he has the -effrontery to look me in the face, to dare to claim acquaintance with -me. He was in my London parish long ago. The other day in Santa Croce, -when he was with Miss Honeychurch, I snubbed him. Let him beware that -he does not get more than a snub.” - -“What?” cried Lucy, flushing. - -“Exposure!” hissed Mr. Eager. - -He tried to change the subject; but in scoring a dramatic point he had -interested his audience more than he had intended. Miss Bartlett was -full of very natural curiosity. Lucy, though she wished never to see -the Emersons again, was not disposed to condemn them on a single word. - -“Do you mean,” she asked, “that he is an irreligious man? We know that -already.” - -“Lucy, dear—” said Miss Bartlett, gently reproving her cousin’s -penetration. - -“I should be astonished if you knew all. The boy—an innocent child at -the time—I will exclude. God knows what his education and his inherited -qualities may have made him.” - -“Perhaps,” said Miss Bartlett, “it is something that we had better not -hear.” - -“To speak plainly,” said Mr. Eager, “it is. I will say no more.” For -the first time Lucy’s rebellious thoughts swept out in words—for the -first time in her life. - -“You have said very little.” - -“It was my intention to say very little,” was his frigid reply. - -He gazed indignantly at the girl, who met him with equal indignation. -She turned towards him from the shop counter; her breast heaved -quickly. He observed her brow, and the sudden strength of her lips. It -was intolerable that she should disbelieve him. - -“Murder, if you want to know,” he cried angrily. “That man murdered his -wife!” - -“How?” she retorted. - -“To all intents and purposes he murdered her. That day in Santa -Croce—did they say anything against me?” - -“Not a word, Mr. Eager—not a single word.” - -“Oh, I thought they had been libelling me to you. But I suppose it is -only their personal charms that makes you defend them.” - -“I’m not defending them,” said Lucy, losing her courage, and relapsing -into the old chaotic methods. “They’re nothing to me.” - -“How could you think she was defending them?” said Miss Bartlett, much -discomfited by the unpleasant scene. The shopman was possibly -listening. - -“She will find it difficult. For that man has murdered his wife in the -sight of God.” - -The addition of God was striking. But the chaplain was really trying to -qualify a rash remark. A silence followed which might have been -impressive, but was merely awkward. Then Miss Bartlett hastily -purchased the Leaning Tower, and led the way into the street. - -“I must be going,” said he, shutting his eyes and taking out his watch. - -Miss Bartlett thanked him for his kindness, and spoke with enthusiasm -of the approaching drive. - -“Drive? Oh, is our drive to come off?” - -Lucy was recalled to her manners, and after a little exertion the -complacency of Mr. Eager was restored. - -“Bother the drive!” exclaimed the girl, as soon as he had departed. “It -is just the drive we had arranged with Mr. Beebe without any fuss at -all. Why should he invite us in that absurd manner? We might as well -invite him. We are each paying for ourselves.” - -Miss Bartlett, who had intended to lament over the Emersons, was -launched by this remark into unexpected thoughts. - -“If that is so, dear—if the drive we and Mr. Beebe are going with Mr. -Eager is really the same as the one we are going with Mr. Beebe, then I -foresee a sad kettle of fish.” - -“How?” - -“Because Mr. Beebe has asked Eleanor Lavish to come, too.” - -“That will mean another carriage.” - -“Far worse. Mr. Eager does not like Eleanor. She knows it herself. The -truth must be told; she is too unconventional for him.” - -They were now in the newspaper-room at the English bank. Lucy stood by -the central table, heedless of Punch and the Graphic, trying to answer, -or at all events to formulate the questions rioting in her brain. The -well-known world had broken up, and there emerged Florence, a magic -city where people thought and did the most extraordinary things. -Murder, accusations of murder, a lady clinging to one man and being -rude to another—were these the daily incidents of her streets? Was -there more in her frank beauty than met the eye—the power, perhaps, to -evoke passions, good and bad, and to bring them speedily to a -fulfillment? - -Happy Charlotte, who, though greatly troubled over things that did not -matter, seemed oblivious to things that did; who could conjecture with -admirable delicacy “where things might lead to,” but apparently lost -sight of the goal as she approached it. Now she was crouching in the -corner trying to extract a circular note from a kind of linen nose-bag -which hung in chaste concealment round her neck. She had been told that -this was the only safe way to carry money in Italy; it must only be -broached within the walls of the English bank. As she groped she -murmured: “Whether it is Mr. Beebe who forgot to tell Mr. Eager, or Mr. -Eager who forgot when he told us, or whether they have decided to leave -Eleanor out altogether—which they could scarcely do—but in any case we -must be prepared. It is you they really want; I am only asked for -appearances. You shall go with the two gentlemen, and I and Eleanor -will follow behind. A one-horse carriage would do for us. Yet how -difficult it is!” - -“It is indeed,” replied the girl, with a gravity that sounded -sympathetic. - -“What do you think about it?” asked Miss Bartlett, flushed from the -struggle, and buttoning up her dress. - -“I don’t know what I think, nor what I want.” - -“Oh, dear, Lucy! I do hope Florence isn’t boring you. Speak the word, -and, as you know, I would take you to the ends of the earth to-morrow.” - -“Thank you, Charlotte,” said Lucy, and pondered over the offer. - -There were letters for her at the bureau—one from her brother, full of -athletics and biology; one from her mother, delightful as only her -mother’s letters could be. She had read in it of the crocuses which had -been bought for yellow and were coming up puce, of the new -parlour-maid, who had watered the ferns with essence of lemonade, of -the semi-detached cottages which were ruining Summer Street, and -breaking the heart of Sir Harry Otway. She recalled the free, pleasant -life of her home, where she was allowed to do everything, and where -nothing ever happened to her. The road up through the pine-woods, the -clean drawing-room, the view over the Sussex Weald—all hung before her -bright and distinct, but pathetic as the pictures in a gallery to -which, after much experience, a traveller returns. - -“And the news?” asked Miss Bartlett. - -“Mrs. Vyse and her son have gone to Rome,” said Lucy, giving the news -that interested her least. “Do you know the Vyses?” - -“Oh, not that way back. We can never have too much of the dear Piazza -Signoria.” - -“They’re nice people, the Vyses. So clever—my idea of what’s really -clever. Don’t you long to be in Rome?” - -“I die for it!” - -The Piazza Signoria is too stony to be brilliant. It has no grass, no -flowers, no frescoes, no glittering walls of marble or comforting -patches of ruddy brick. By an odd chance—unless we believe in a -presiding genius of places—the statues that relieve its severity -suggest, not the innocence of childhood, nor the glorious bewilderment -of youth, but the conscious achievements of maturity. Perseus and -Judith, Hercules and Thusnelda, they have done or suffered something, -and though they are immortal, immortality has come to them after -experience, not before. Here, not only in the solitude of Nature, might -a hero meet a goddess, or a heroine a god. - -“Charlotte!” cried the girl suddenly. “Here’s an idea. What if we -popped off to Rome to-morrow—straight to the Vyses’ hotel? For I do -know what I want. I’m sick of Florence. No, you said you’d go to the -ends of the earth! Do! Do!” - -Miss Bartlett, with equal vivacity, replied: - -“Oh, you droll person! Pray, what would become of your drive in the -hills?” - -They passed together through the gaunt beauty of the square, laughing -over the unpractical suggestion. - - - - -Chapter VI -The Reverend Arthur Beebe, the Reverend Cuthbert Eager, Mr. Emerson, -Mr. George Emerson, Miss Eleanor Lavish, Miss Charlotte Bartlett, and -Miss Lucy Honeychurch Drive Out in Carriages to See a View; Italians -Drive Them. - - -It was Phaethon who drove them to Fiesole that memorable day, a youth -all irresponsibility and fire, recklessly urging his master’s horses up -the stony hill. Mr. Beebe recognized him at once. Neither the Ages of -Faith nor the Age of Doubt had touched him; he was Phaethon in Tuscany -driving a cab. And it was Persephone whom he asked leave to pick up on -the way, saying that she was his sister—Persephone, tall and slender -and pale, returning with the Spring to her mother’s cottage, and still -shading her eyes from the unaccustomed light. To her Mr. Eager -objected, saying that here was the thin edge of the wedge, and one must -guard against imposition. But the ladies interceded, and when it had -been made clear that it was a very great favour, the goddess was -allowed to mount beside the god. - -Phaethon at once slipped the left rein over her head, thus enabling -himself to drive with his arm round her waist. She did not mind. Mr. -Eager, who sat with his back to the horses, saw nothing of the -indecorous proceeding, and continued his conversation with Lucy. The -other two occupants of the carriage were old Mr. Emerson and Miss -Lavish. For a dreadful thing had happened: Mr. Beebe, without -consulting Mr. Eager, had doubled the size of the party. And though -Miss Bartlett and Miss Lavish had planned all the morning how the -people were to sit, at the critical moment when the carriages came -round they lost their heads, and Miss Lavish got in with Lucy, while -Miss Bartlett, with George Emerson and Mr. Beebe, followed on behind. - -It was hard on the poor chaplain to have his _partie carrée_ thus -transformed. Tea at a Renaissance villa, if he had ever meditated it, -was now impossible. Lucy and Miss Bartlett had a certain style about -them, and Mr. Beebe, though unreliable, was a man of parts. But a -shoddy lady writer and a journalist who had murdered his wife in the -sight of God—they should enter no villa at his introduction. - -Lucy, elegantly dressed in white, sat erect and nervous amid these -explosive ingredients, attentive to Mr. Eager, repressive towards Miss -Lavish, watchful of old Mr. Emerson, hitherto fortunately asleep, -thanks to a heavy lunch and the drowsy atmosphere of Spring. She looked -on the expedition as the work of Fate. But for it she would have -avoided George Emerson successfully. In an open manner he had shown -that he wished to continue their intimacy. She had refused, not because -she disliked him, but because she did not know what had happened, and -suspected that he did know. And this frightened her. - -For the real event—whatever it was—had taken place, not in the Loggia, -but by the river. To behave wildly at the sight of death is pardonable. -But to discuss it afterwards, to pass from discussion into silence, and -through silence into sympathy, that is an error, not of a startled -emotion, but of the whole fabric. There was really something -blameworthy (she thought) in their joint contemplation of the shadowy -stream, in the common impulse which had turned them to the house -without the passing of a look or word. This sense of wickedness had -been slight at first. She had nearly joined the party to the Torre del -Gallo. But each time that she avoided George it became more imperative -that she should avoid him again. And now celestial irony, working -through her cousin and two clergymen, did not suffer her to leave -Florence till she had made this expedition with him through the hills. - -Meanwhile Mr. Eager held her in civil converse; their little tiff was -over. - -“So, Miss Honeychurch, you are travelling? As a student of art?” - -“Oh, dear me, no—oh, no!” - -“Perhaps as a student of human nature,” interposed Miss Lavish, “like -myself?” - -“Oh, no. I am here as a tourist.” - -“Oh, indeed,” said Mr. Eager. “Are you indeed? If you will not think me -rude, we residents sometimes pity you poor tourists not a little—handed -about like a parcel of goods from Venice to Florence, from Florence to -Rome, living herded together in pensions or hotels, quite unconscious -of anything that is outside Baedeker, their one anxiety to get ‘done’ -or ‘through’ and go on somewhere else. The result is, they mix up -towns, rivers, palaces in one inextricable whirl. You know the American -girl in Punch who says: ‘Say, poppa, what did we see at Rome?’ And the -father replies: ‘Why, guess Rome was the place where we saw the yaller -dog.’ There’s travelling for you. Ha! ha! ha!” - -“I quite agree,” said Miss Lavish, who had several times tried to -interrupt his mordant wit. “The narrowness and superficiality of the -Anglo-Saxon tourist is nothing less than a menace.” - -“Quite so. Now, the English colony at Florence, Miss Honeychurch—and it -is of considerable size, though, of course, not all equally—a few are -here for trade, for example. But the greater part are students. Lady -Helen Laverstock is at present busy over Fra Angelico. I mention her -name because we are passing her villa on the left. No, you can only see -it if you stand—no, do not stand; you will fall. She is very proud of -that thick hedge. Inside, perfect seclusion. One might have gone back -six hundred years. Some critics believe that her garden was the scene -of The Decameron, which lends it an additional interest, does it not?” - -“It does indeed!” cried Miss Lavish. “Tell me, where do they place the -scene of that wonderful seventh day?” - -But Mr. Eager proceeded to tell Miss Honeychurch that on the right -lived Mr. Someone Something, an American of the best type—so rare!—and -that the Somebody Elses were farther down the hill. “Doubtless you know -her monographs in the series of ‘Mediæval Byways’? He is working at -Gemistus Pletho. Sometimes as I take tea in their beautiful grounds I -hear, over the wall, the electric tram squealing up the new road with -its loads of hot, dusty, unintelligent tourists who are going to ‘do’ -Fiesole in an hour in order that they may say they have been there, and -I think—think—I think how little they think what lies so near them.” - -During this speech the two figures on the box were sporting with each -other disgracefully. Lucy had a spasm of envy. Granted that they wished -to misbehave, it was pleasant for them to be able to do so. They were -probably the only people enjoying the expedition. The carriage swept -with agonizing jolts up through the Piazza of Fiesole and into the -Settignano road. - -“Piano! piano!” said Mr. Eager, elegantly waving his hand over his -head. - -“Va bene, signore, va bene, va bene,” crooned the driver, and whipped -his horses up again. - -Now Mr. Eager and Miss Lavish began to talk against each other on the -subject of Alessio Baldovinetti. Was he a cause of the Renaissance, or -was he one of its manifestations? The other carriage was left behind. -As the pace increased to a gallop the large, slumbering form of Mr. -Emerson was thrown against the chaplain with the regularity of a -machine. - -“Piano! piano!” said he, with a martyred look at Lucy. - -An extra lurch made him turn angrily in his seat. Phaethon, who for -some time had been endeavouring to kiss Persephone, had just succeeded. - -A little scene ensued, which, as Miss Bartlett said afterwards, was -most unpleasant. The horses were stopped, the lovers were ordered to -disentangle themselves, the boy was to lose his _pourboire_, the girl -was immediately to get down. - -“She is my sister,” said he, turning round on them with piteous eyes. - -Mr. Eager took the trouble to tell him that he was a liar. - -Phaethon hung down his head, not at the matter of the accusation, but -at its manner. At this point Mr. Emerson, whom the shock of stopping -had awoke, declared that the lovers must on no account be separated, -and patted them on the back to signify his approval. And Miss Lavish, -though unwilling to ally him, felt bound to support the cause of -Bohemianism. - -“Most certainly I would let them be,” she cried. “But I dare say I -shall receive scant support. I have always flown in the face of the -conventions all my life. This is what _I_ call an adventure.” - -“We must not submit,” said Mr. Eager. “I knew he was trying it on. He -is treating us as if we were a party of Cook’s tourists.” - -“Surely no!” said Miss Lavish, her ardour visibly decreasing. - -The other carriage had drawn up behind, and sensible Mr. Beebe called -out that after this warning the couple would be sure to behave -themselves properly. - -“Leave them alone,” Mr. Emerson begged the chaplain, of whom he stood -in no awe. “Do we find happiness so often that we should turn it off -the box when it happens to sit there? To be driven by lovers—A king -might envy us, and if we part them it’s more like sacrilege than -anything I know.” - -Here the voice of Miss Bartlett was heard saying that a crowd had begun -to collect. - -Mr. Eager, who suffered from an over-fluent tongue rather than a -resolute will, was determined to make himself heard. He addressed the -driver again. Italian in the mouth of Italians is a deep-voiced stream, -with unexpected cataracts and boulders to preserve it from monotony. In -Mr. Eager’s mouth it resembled nothing so much as an acid whistling -fountain which played ever higher and higher, and quicker and quicker, -and more and more shrilly, till abruptly it was turned off with a -click. - -“Signorina!” said the man to Lucy, when the display had ceased. Why -should he appeal to Lucy? - -“Signorina!” echoed Persephone in her glorious contralto. She pointed -at the other carriage. Why? - -For a moment the two girls looked at each other. Then Persephone got -down from the box. - -“Victory at last!” said Mr. Eager, smiting his hands together as the -carriages started again. - -“It is not victory,” said Mr. Emerson. “It is defeat. You have parted -two people who were happy.” - -Mr. Eager shut his eyes. He was obliged to sit next to Mr. Emerson, but -he would not speak to him. The old man was refreshed by sleep, and took -up the matter warmly. He commanded Lucy to agree with him; he shouted -for support to his son. - -“We have tried to buy what cannot be bought with money. He has -bargained to drive us, and he is doing it. We have no rights over his -soul.” - -Miss Lavish frowned. It is hard when a person you have classed as -typically British speaks out of his character. - -“He was not driving us well,” she said. “He jolted us.” - -“That I deny. It was as restful as sleeping. Aha! he is jolting us now. -Can you wonder? He would like to throw us out, and most certainly he is -justified. And if I were superstitious I’d be frightened of the girl, -too. It doesn’t do to injure young people. Have you ever heard of -Lorenzo de Medici?” - -Miss Lavish bristled. - -“Most certainly I have. Do you refer to Lorenzo il Magnifico, or to -Lorenzo, Duke of Urbino, or to Lorenzo surnamed Lorenzino on account of -his diminutive stature?” - -“The Lord knows. Possibly he does know, for I refer to Lorenzo the -poet. He wrote a line—so I heard yesterday—which runs like this: ‘Don’t -go fighting against the Spring.’” - -Mr. Eager could not resist the opportunity for erudition. - -“Non fate guerra al Maggio,” he murmured. “‘War not with the May’ would -render a correct meaning.” - -“The point is, we have warred with it. Look.” He pointed to the Val -d’Arno, which was visible far below them, through the budding trees. -“Fifty miles of Spring, and we’ve come up to admire them. Do you -suppose there’s any difference between Spring in nature and Spring in -man? But there we go, praising the one and condemning the other as -improper, ashamed that the same laws work eternally through both.” - -No one encouraged him to talk. Presently Mr. Eager gave a signal for -the carriages to stop and marshalled the party for their ramble on the -hill. A hollow like a great amphitheatre, full of terraced steps and -misty olives, now lay between them and the heights of Fiesole, and the -road, still following its curve, was about to sweep on to a promontory -which stood out in the plain. It was this promontory, uncultivated, -wet, covered with bushes and occasional trees, which had caught the -fancy of Alessio Baldovinetti nearly five hundred years before. He had -ascended it, that diligent and rather obscure master, possibly with an -eye to business, possibly for the joy of ascending. Standing there, he -had seen that view of the Val d’Arno and distant Florence, which he -afterwards had introduced not very effectively into his work. But where -exactly had he stood? That was the question which Mr. Eager hoped to -solve now. And Miss Lavish, whose nature was attracted by anything -problematical, had become equally enthusiastic. - -But it is not easy to carry the pictures of Alessio Baldovinetti in -your head, even if you have remembered to look at them before starting. -And the haze in the valley increased the difficulty of the quest. - -The party sprang about from tuft to tuft of grass, their anxiety to -keep together being only equalled by their desire to go different -directions. Finally they split into groups. Lucy clung to Miss Bartlett -and Miss Lavish; the Emersons returned to hold laborious converse with -the drivers; while the two clergymen, who were expected to have topics -in common, were left to each other. - -The two elder ladies soon threw off the mask. In the audible whisper -that was now so familiar to Lucy they began to discuss, not Alessio -Baldovinetti, but the drive. Miss Bartlett had asked Mr. George Emerson -what his profession was, and he had answered “the railway.” She was -very sorry that she had asked him. She had no idea that it would be -such a dreadful answer, or she would not have asked him. Mr. Beebe had -turned the conversation so cleverly, and she hoped that the young man -was not very much hurt at her asking him. - -“The railway!” gasped Miss Lavish. “Oh, but I shall die! Of course it -was the railway!” She could not control her mirth. “He is the image of -a porter—on, on the South-Eastern.” - -“Eleanor, be quiet,” plucking at her vivacious companion. “Hush! -They’ll hear—the Emersons—” - -“I can’t stop. Let me go my wicked way. A porter—” - -“Eleanor!” - -“I’m sure it’s all right,” put in Lucy. “The Emersons won’t hear, and -they wouldn’t mind if they did.” - -Miss Lavish did not seem pleased at this. - -“Miss Honeychurch listening!” she said rather crossly. “Pouf! Wouf! You -naughty girl! Go away!” - -“Oh, Lucy, you ought to be with Mr. Eager, I’m sure.” - -“I can’t find them now, and I don’t want to either.” - -“Mr. Eager will be offended. It is your party.” - -“Please, I’d rather stop here with you.” - -“No, I agree,” said Miss Lavish. “It’s like a school feast; the boys -have got separated from the girls. Miss Lucy, you are to go. We wish to -converse on high topics unsuited for your ear.” - -The girl was stubborn. As her time at Florence drew to its close she -was only at ease amongst those to whom she felt indifferent. Such a one -was Miss Lavish, and such for the moment was Charlotte. She wished she -had not called attention to herself; they were both annoyed at her -remark and seemed determined to get rid of her. - -“How tired one gets,” said Miss Bartlett. “Oh, I do wish Freddy and -your mother could be here.” - -Unselfishness with Miss Bartlett had entirely usurped the functions of -enthusiasm. Lucy did not look at the view either. She would not enjoy -anything till she was safe at Rome. - -“Then sit you down,” said Miss Lavish. “Observe my foresight.” - -With many a smile she produced two of those mackintosh squares that -protect the frame of the tourist from damp grass or cold marble steps. -She sat on one; who was to sit on the other? - -“Lucy; without a moment’s doubt, Lucy. The ground will do for me. -Really I have not had rheumatism for years. If I do feel it coming on I -shall stand. Imagine your mother’s feelings if I let you sit in the wet -in your white linen.” She sat down heavily where the ground looked -particularly moist. “Here we are, all settled delightfully. Even if my -dress is thinner it will not show so much, being brown. Sit down, dear; -you are too unselfish; you don’t assert yourself enough.” She cleared -her throat. “Now don’t be alarmed; this isn’t a cold. It’s the tiniest -cough, and I have had it three days. It’s nothing to do with sitting -here at all.” - -There was only one way of treating the situation. At the end of five -minutes Lucy departed in search of Mr. Beebe and Mr. Eager, vanquished -by the mackintosh square. - -She addressed herself to the drivers, who were sprawling in the -carriages, perfuming the cushions with cigars. The miscreant, a bony -young man scorched black by the sun, rose to greet her with the -courtesy of a host and the assurance of a relative. - -“Dove?” said Lucy, after much anxious thought. - -His face lit up. Of course he knew where. Not so far either. His arm -swept three-fourths of the horizon. He should just think he did know -where. He pressed his finger-tips to his forehead and then pushed them -towards her, as if oozing with visible extract of knowledge. - -More seemed necessary. What was the Italian for “clergyman”? - -“Dove buoni uomini?” said she at last. - -Good? Scarcely the adjective for those noble beings! He showed her his -cigar. - -“Uno—piu—piccolo,” was her next remark, implying “Has the cigar been -given to you by Mr. Beebe, the smaller of the two good men?” - -She was correct as usual. He tied the horse to a tree, kicked it to -make it stay quiet, dusted the carriage, arranged his hair, remoulded -his hat, encouraged his moustache, and in rather less than a quarter of -a minute was ready to conduct her. Italians are born knowing the way. -It would seem that the whole earth lay before them, not as a map, but -as a chess-board, whereon they continually behold the changing pieces -as well as the squares. Any one can find places, but the finding of -people is a gift from God. - -He only stopped once, to pick her some great blue violets. She thanked -him with real pleasure. In the company of this common man the world was -beautiful and direct. For the first time she felt the influence of -Spring. His arm swept the horizon gracefully; violets, like other -things, existed in great profusion there; “would she like to see them?” - -“Ma buoni uomini.” - -He bowed. Certainly. Good men first, violets afterwards. They proceeded -briskly through the undergrowth, which became thicker and thicker. They -were nearing the edge of the promontory, and the view was stealing -round them, but the brown network of the bushes shattered it into -countless pieces. He was occupied in his cigar, and in holding back the -pliant boughs. She was rejoicing in her escape from dullness. Not a -step, not a twig, was unimportant to her. - -“What is that?” - -There was a voice in the wood, in the distance behind them. The voice -of Mr. Eager? He shrugged his shoulders. An Italian’s ignorance is -sometimes more remarkable than his knowledge. She could not make him -understand that perhaps they had missed the clergymen. The view was -forming at last; she could discern the river, the golden plain, other -hills. - -“Eccolo!” he exclaimed. - -At the same moment the ground gave way, and with a cry she fell out of -the wood. Light and beauty enveloped her. She had fallen on to a little -open terrace, which was covered with violets from end to end. - -“Courage!” cried her companion, now standing some six feet above. -“Courage and love.” - -She did not answer. From her feet the ground sloped sharply into view, -and violets ran down in rivulets and streams and cataracts, irrigating -the hillside with blue, eddying round the tree stems collecting into -pools in the hollows, covering the grass with spots of azure foam. But -never again were they in such profusion; this terrace was the -well-head, the primal source whence beauty gushed out to water the -earth. - -Standing at its brink, like a swimmer who prepares, was the good man. -But he was not the good man that she had expected, and he was alone. - -George had turned at the sound of her arrival. For a moment he -contemplated her, as one who had fallen out of heaven. He saw radiant -joy in her face, he saw the flowers beat against her dress in blue -waves. The bushes above them closed. He stepped quickly forward and -kissed her. - -Before she could speak, almost before she could feel, a voice called, -“Lucy! Lucy! Lucy!” The silence of life had been broken by Miss -Bartlett who stood brown against the view. - - - - -Chapter VII -They Return - - -Some complicated game had been playing up and down the hillside all the -afternoon. What it was and exactly how the players had sided, Lucy was -slow to discover. Mr. Eager had met them with a questioning eye. -Charlotte had repulsed him with much small talk. Mr. Emerson, seeking -his son, was told whereabouts to find him. Mr. Beebe, who wore the -heated aspect of a neutral, was bidden to collect the factions for the -return home. There was a general sense of groping and bewilderment. Pan -had been amongst them—not the great god Pan, who has been buried these -two thousand years, but the little god Pan, who presides over social -contretemps and unsuccessful picnics. Mr. Beebe had lost everyone, and -had consumed in solitude the tea-basket which he had brought up as a -pleasant surprise. Miss Lavish had lost Miss Bartlett. Lucy had lost -Mr. Eager. Mr. Emerson had lost George. Miss Bartlett had lost a -mackintosh square. Phaethon had lost the game. - -That last fact was undeniable. He climbed on to the box shivering, with -his collar up, prophesying the swift approach of bad weather. “Let us -go immediately,” he told them. “The signorino will walk.” - -“All the way? He will be hours,” said Mr. Beebe. - -“Apparently. I told him it was unwise.” He would look no one in the -face; perhaps defeat was particularly mortifying for him. He alone had -played skilfully, using the whole of his instinct, while the others had -used scraps of their intelligence. He alone had divined what things -were, and what he wished them to be. He alone had interpreted the -message that Lucy had received five days before from the lips of a -dying man. Persephone, who spends half her life in the grave—she could -interpret it also. Not so these English. They gain knowledge slowly, -and perhaps too late. - -The thoughts of a cab-driver, however just, seldom affect the lives of -his employers. He was the most competent of Miss Bartlett’s opponents, -but infinitely the least dangerous. Once back in the town, he and his -insight and his knowledge would trouble English ladies no more. Of -course, it was most unpleasant; she had seen his black head in the -bushes; he might make a tavern story out of it. But after all, what -have we to do with taverns? Real menace belongs to the drawing-room. It -was of drawing-room people that Miss Bartlett thought as she journeyed -downwards towards the fading sun. Lucy sat beside her; Mr. Eager sat -opposite, trying to catch her eye; he was vaguely suspicious. They -spoke of Alessio Baldovinetti. - -Rain and darkness came on together. The two ladies huddled together -under an inadequate parasol. There was a lightning flash, and Miss -Lavish who was nervous, screamed from the carriage in front. At the -next flash, Lucy screamed also. Mr. Eager addressed her professionally: - -“Courage, Miss Honeychurch, courage and faith. If I might say so, there -is something almost blasphemous in this horror of the elements. Are we -seriously to suppose that all these clouds, all this immense electrical -display, is simply called into existence to extinguish you or me?” - -“No—of course—” - -“Even from the scientific standpoint the chances against our being -struck are enormous. The steel knives, the only articles which might -attract the current, are in the other carriage. And, in any case, we -are infinitely safer than if we were walking. Courage—courage and -faith.” - -Under the rug, Lucy felt the kindly pressure of her cousin’s hand. At -times our need for a sympathetic gesture is so great that we care not -what exactly it signifies or how much we may have to pay for it -afterwards. Miss Bartlett, by this timely exercise of her muscles, -gained more than she would have got in hours of preaching or cross -examination. - -She renewed it when the two carriages stopped, half into Florence. - -“Mr. Eager!” called Mr. Beebe. “We want your assistance. Will you -interpret for us?” - -“George!” cried Mr. Emerson. “Ask your driver which way George went. -The boy may lose his way. He may be killed.” - -“Go, Mr. Eager,” said Miss Bartlett, “don’t ask our driver; our driver -is no help. Go and support poor Mr. Beebe—, he is nearly demented.” - -“He may be killed!” cried the old man. “He may be killed!” - -“Typical behaviour,” said the chaplain, as he quitted the carriage. “In -the presence of reality that kind of person invariably breaks down.” - -“What does he know?” whispered Lucy as soon as they were alone. -“Charlotte, how much does Mr. Eager know?” - -“Nothing, dearest; he knows nothing. But—” she pointed at the -driver—“_he_ knows everything. Dearest, had we better? Shall I?” She -took out her purse. “It is dreadful to be entangled with low-class -people. He saw it all.” Tapping Phaethon’s back with her guide-book, -she said, “Silenzio!” and offered him a franc. - -“Va bene,” he replied, and accepted it. As well this ending to his day -as any. But Lucy, a mortal maid, was disappointed in him. - -There was an explosion up the road. The storm had struck the overhead -wire of the tramline, and one of the great supports had fallen. If they -had not stopped perhaps they might have been hurt. They chose to regard -it as a miraculous preservation, and the floods of love and sincerity, -which fructify every hour of life, burst forth in tumult. They -descended from the carriages; they embraced each other. It was as -joyful to be forgiven past unworthinesses as to forgive them. For a -moment they realized vast possibilities of good. - -The older people recovered quickly. In the very height of their emotion -they knew it to be unmanly or unladylike. Miss Lavish calculated that, -even if they had continued, they would not have been caught in the -accident. Mr. Eager mumbled a temperate prayer. But the drivers, -through miles of dark squalid road, poured out their souls to the -dryads and the saints, and Lucy poured out hers to her cousin. - -“Charlotte, dear Charlotte, kiss me. Kiss me again. Only you can -understand me. You warned me to be careful. And I—I thought I was -developing.” - -“Do not cry, dearest. Take your time.” - -“I have been obstinate and silly—worse than you know, far worse. Once -by the river—Oh, but he isn’t killed—he wouldn’t be killed, would he?” - -The thought disturbed her repentance. As a matter of fact, the storm -was worst along the road; but she had been near danger, and so she -thought it must be near to everyone. - -“I trust not. One would always pray against that.” - -“He is really—I think he was taken by surprise, just as I was before. -But this time I’m not to blame; I want you to believe that. I simply -slipped into those violets. No, I want to be really truthful. I am a -little to blame. I had silly thoughts. The sky, you know, was gold, and -the ground all blue, and for a moment he looked like someone in a -book.” - -“In a book?” - -“Heroes—gods—the nonsense of schoolgirls.” - -“And then?” - -“But, Charlotte, you know what happened then.” - -Miss Bartlett was silent. Indeed, she had little more to learn. With a -certain amount of insight she drew her young cousin affectionately to -her. All the way back Lucy’s body was shaken by deep sighs, which -nothing could repress. - -“I want to be truthful,” she whispered. “It is so hard to be absolutely -truthful.” - -“Don’t be troubled, dearest. Wait till you are calmer. We will talk it -over before bed-time in my room.” - -So they re-entered the city with hands clasped. It was a shock to the -girl to find how far emotion had ebbed in others. The storm had ceased, -and Mr. Emerson was easier about his son. Mr. Beebe had regained good -humour, and Mr. Eager was already snubbing Miss Lavish. Charlotte alone -she was sure of—Charlotte, whose exterior concealed so much insight and -love. - -The luxury of self-exposure kept her almost happy through the long -evening. She thought not so much of what had happened as of how she -should describe it. All her sensations, her spasms of courage, her -moments of unreasonable joy, her mysterious discontent, should be -carefully laid before her cousin. And together in divine confidence -they would disentangle and interpret them all. - -“At last,” thought she, “I shall understand myself. I shan’t again be -troubled by things that come out of nothing, and mean I don’t know -what.” - -Miss Alan asked her to play. She refused vehemently. Music seemed to -her the employment of a child. She sat close to her cousin, who, with -commendable patience, was listening to a long story about lost luggage. -When it was over she capped it by a story of her own. Lucy became -rather hysterical with the delay. In vain she tried to check, or at all -events to accelerate, the tale. It was not till a late hour that Miss -Bartlett had recovered her luggage and could say in her usual tone of -gentle reproach: - -“Well, dear, I at all events am ready for Bedfordshire. Come into my -room, and I will give a good brush to your hair.” - -With some solemnity the door was shut, and a cane chair placed for the -girl. Then Miss Bartlett said “So what is to be done?” - -She was unprepared for the question. It had not occurred to her that -she would have to do anything. A detailed exhibition of her emotions -was all that she had counted upon. - -“What is to be done? A point, dearest, which you alone can settle.” - -The rain was streaming down the black windows, and the great room felt -damp and chilly. One candle burnt trembling on the chest of drawers -close to Miss Bartlett’s toque, which cast monstrous and fantastic -shadows on the bolted door. A tram roared by in the dark, and Lucy felt -unaccountably sad, though she had long since dried her eyes. She lifted -them to the ceiling, where the griffins and bassoons were colourless -and vague, the very ghosts of joy. - -“It has been raining for nearly four hours,” she said at last. - -Miss Bartlett ignored the remark. - -“How do you propose to silence him?” - -“The driver?” - -“My dear girl, no; Mr. George Emerson.” - -Lucy began to pace up and down the room. - -“I don’t understand,” she said at last. - -She understood very well, but she no longer wished to be absolutely -truthful. - -“How are you going to stop him talking about it?” - -“I have a feeling that talk is a thing he will never do.” - -“I, too, intend to judge him charitably. But unfortunately I have met -the type before. They seldom keep their exploits to themselves.” - -“Exploits?” cried Lucy, wincing under the horrible plural. - -“My poor dear, did you suppose that this was his first? Come here and -listen to me. I am only gathering it from his own remarks. Do you -remember that day at lunch when he argued with Miss Alan that liking -one person is an extra reason for liking another?” - -“Yes,” said Lucy, whom at the time the argument had pleased. - -“Well, I am no prude. There is no need to call him a wicked young man, -but obviously he is thoroughly unrefined. Let us put it down to his -deplorable antecedents and education, if you wish. But we are no -farther on with our question. What do you propose to do?” - -An idea rushed across Lucy’s brain, which, had she thought of it sooner -and made it part of her, might have proved victorious. - -“I propose to speak to him,” said she. - -Miss Bartlett uttered a cry of genuine alarm. - -“You see, Charlotte, your kindness—I shall never forget it. But—as you -said—it is my affair. Mine and his.” - -“And you are going to _implore_ him, to _beg_ him to keep silence?” - -“Certainly not. There would be no difficulty. Whatever you ask him he -answers, yes or no; then it is over. I have been frightened of him. But -now I am not one little bit.” - -“But we fear him for you, dear. You are so young and inexperienced, you -have lived among such nice people, that you cannot realize what men can -be—how they can take a brutal pleasure in insulting a woman whom her -sex does not protect and rally round. This afternoon, for example, if I -had not arrived, what would have happened?” - -“I can’t think,” said Lucy gravely. - -Something in her voice made Miss Bartlett repeat her question, intoning -it more vigorously. - -“What would have happened if I hadn’t arrived?” - -“I can’t think,” said Lucy again. - -“When he insulted you, how would you have replied?” - -“I hadn’t time to think. You came.” - -“Yes, but won’t you tell me now what you would have done?” - -“I should have—” She checked herself, and broke the sentence off. She -went up to the dripping window and strained her eyes into the darkness. -She could not think what she would have done. - -“Come away from the window, dear,” said Miss Bartlett. “You will be -seen from the road.” - -Lucy obeyed. She was in her cousin’s power. She could not modulate out -the key of self-abasement in which she had started. Neither of them -referred again to her suggestion that she should speak to George and -settle the matter, whatever it was, with him. - -Miss Bartlett became plaintive. - -“Oh, for a real man! We are only two women, you and I. Mr. Beebe is -hopeless. There is Mr. Eager, but you do not trust him. Oh, for your -brother! He is young, but I know that his sister’s insult would rouse -in him a very lion. Thank God, chivalry is not yet dead. There are -still left some men who can reverence woman.” - -As she spoke, she pulled off her rings, of which she wore several, and -ranged them upon the pin cushion. Then she blew into her gloves and -said: - -“It will be a push to catch the morning train, but we must try.” - -“What train?” - -“The train to Rome.” She looked at her gloves critically. - -The girl received the announcement as easily as it had been given. - -“When does the train to Rome go?” - -“At eight.” - -“Signora Bertolini would be upset.” - -“We must face that,” said Miss Bartlett, not liking to say that she had -given notice already. - -“She will make us pay for a whole week’s pension.” - -“I expect she will. However, we shall be much more comfortable at the -Vyses’ hotel. Isn’t afternoon tea given there for nothing?” - -“Yes, but they pay extra for wine.” After this remark she remained -motionless and silent. To her tired eyes Charlotte throbbed and swelled -like a ghostly figure in a dream. - -They began to sort their clothes for packing, for there was no time to -lose, if they were to catch the train to Rome. Lucy, when admonished, -began to move to and fro between the rooms, more conscious of the -discomforts of packing by candlelight than of a subtler ill. Charlotte, -who was practical without ability, knelt by the side of an empty trunk, -vainly endeavouring to pave it with books of varying thickness and -size. She gave two or three sighs, for the stooping posture hurt her -back, and, for all her diplomacy, she felt that she was growing old. -The girl heard her as she entered the room, and was seized with one of -those emotional impulses to which she could never attribute a cause. -She only felt that the candle would burn better, the packing go easier, -the world be happier, if she could give and receive some human love. -The impulse had come before to-day, but never so strongly. She knelt -down by her cousin’s side and took her in her arms. - -Miss Bartlett returned the embrace with tenderness and warmth. But she -was not a stupid woman, and she knew perfectly well that Lucy did not -love her, but needed her to love. For it was in ominous tones that she -said, after a long pause: - -“Dearest Lucy, how will you ever forgive me?” - -Lucy was on her guard at once, knowing by bitter experience what -forgiving Miss Bartlett meant. Her emotion relaxed, she modified her -embrace a little, and she said: - -“Charlotte dear, what do you mean? As if I have anything to forgive!” - -“You have a great deal, and I have a very great deal to forgive myself, -too. I know well how much I vex you at every turn.” - -“But no—” - -Miss Bartlett assumed her favourite role, that of the prematurely aged -martyr. - -“Ah, but yes! I feel that our tour together is hardly the success I had -hoped. I might have known it would not do. You want someone younger and -stronger and more in sympathy with you. I am too uninteresting and -old-fashioned—only fit to pack and unpack your things.” - -“Please—” - -“My only consolation was that you found people more to your taste, and -were often able to leave me at home. I had my own poor ideas of what a -lady ought to do, but I hope I did not inflict them on you more than -was necessary. You had your own way about these rooms, at all events.” - -“You mustn’t say these things,” said Lucy softly. - -She still clung to the hope that she and Charlotte loved each other, -heart and soul. They continued to pack in silence. - -“I have been a failure,” said Miss Bartlett, as she struggled with the -straps of Lucy’s trunk instead of strapping her own. “Failed to make -you happy; failed in my duty to your mother. She has been so generous -to me; I shall never face her again after this disaster.” - -“But mother will understand. It is not your fault, this trouble, and it -isn’t a disaster either.” - -“It is my fault, it is a disaster. She will never forgive me, and -rightly. For instance, what right had I to make friends with Miss -Lavish?” - -“Every right.” - -“When I was here for your sake? If I have vexed you it is equally true -that I have neglected you. Your mother will see this as clearly as I -do, when you tell her.” - -Lucy, from a cowardly wish to improve the situation, said: - -“Why need mother hear of it?” - -“But you tell her everything?” - -“I suppose I do generally.” - -“I dare not break your confidence. There is something sacred in it. -Unless you feel that it is a thing you could not tell her.” - -The girl would not be degraded to this. - -“Naturally I should have told her. But in case she should blame you in -any way, I promise I will not, I am very willing not to. I will never -speak of it either to her or to any one.” - -Her promise brought the long-drawn interview to a sudden close. Miss -Bartlett pecked her smartly on both cheeks, wished her good-night, and -sent her to her own room. - -For a moment the original trouble was in the background. George would -seem to have behaved like a cad throughout; perhaps that was the view -which one would take eventually. At present she neither acquitted nor -condemned him; she did not pass judgement. At the moment when she was -about to judge him her cousin’s voice had intervened, and, ever since, -it was Miss Bartlett who had dominated; Miss Bartlett who, even now, -could be heard sighing into a crack in the partition wall; Miss -Bartlett, who had really been neither pliable nor humble nor -inconsistent. She had worked like a great artist; for a time—indeed, -for years—she had been meaningless, but at the end there was presented -to the girl the complete picture of a cheerless, loveless world in -which the young rush to destruction until they learn better—a -shamefaced world of precautions and barriers which may avert evil, but -which do not seem to bring good, if we may judge from those who have -used them most. - -Lucy was suffering from the most grievous wrong which this world has -yet discovered: diplomatic advantage had been taken of her sincerity, -of her craving for sympathy and love. Such a wrong is not easily -forgotten. Never again did she expose herself without due consideration -and precaution against rebuff. And such a wrong may react disastrously -upon the soul. - -The door-bell rang, and she started to the shutters. Before she reached -them she hesitated, turned, and blew out the candle. Thus it was that, -though she saw someone standing in the wet below, he, though he looked -up, did not see her. - -To reach his room he had to go by hers. She was still dressed. It -struck her that she might slip into the passage and just say that she -would be gone before he was up, and that their extraordinary -intercourse was over. - -Whether she would have dared to do this was never proved. At the -critical moment Miss Bartlett opened her own door, and her voice said: - -“I wish one word with you in the drawing-room, Mr. Emerson, please.” - -Soon their footsteps returned, and Miss Bartlett said: “Good-night, Mr. -Emerson.” - -His heavy, tired breathing was the only reply; the chaperon had done -her work. - -Lucy cried aloud: “It isn’t true. It can’t all be true. I want not to -be muddled. I want to grow older quickly.” - -Miss Bartlett tapped on the wall. - -“Go to bed at once, dear. You need all the rest you can get.” - -In the morning they left for Rome. - - - - -PART TWO - - - - -Chapter VIII -Medieval - - -The drawing-room curtains at Windy Corner had been pulled to meet, for -the carpet was new and deserved protection from the August sun. They -were heavy curtains, reaching almost to the ground, and the light that -filtered through them was subdued and varied. A poet—none was -present—might have quoted, “Life like a dome of many coloured glass,” -or might have compared the curtains to sluice-gates, lowered against -the intolerable tides of heaven. Without was poured a sea of radiance; -within, the glory, though visible, was tempered to the capacities of -man. - -Two pleasant people sat in the room. One—a boy of nineteen—was studying -a small manual of anatomy, and peering occasionally at a bone which lay -upon the piano. From time to time he bounced in his chair and puffed -and groaned, for the day was hot and the print small, and the human -frame fearfully made; and his mother, who was writing a letter, did -continually read out to him what she had written. And continually did -she rise from her seat and part the curtains so that a rivulet of light -fell across the carpet, and make the remark that they were still there. - -“Where aren’t they?” said the boy, who was Freddy, Lucy’s brother. “I -tell you I’m getting fairly sick.” - -“For goodness’ sake go out of my drawing-room, then?” cried Mrs. -Honeychurch, who hoped to cure her children of slang by taking it -literally. - -Freddy did not move or reply. - -“I think things are coming to a head,” she observed, rather wanting her -son’s opinion on the situation if she could obtain it without undue -supplication. - -“Time they did.” - -“I am glad that Cecil is asking her this once more.” - -“It’s his third go, isn’t it?” - -“Freddy I do call the way you talk unkind.” - -“I didn’t mean to be unkind.” Then he added: “But I do think Lucy might -have got this off her chest in Italy. I don’t know how girls manage -things, but she can’t have said ‘No’ properly before, or she wouldn’t -have to say it again now. Over the whole thing—I can’t explain—I do -feel so uncomfortable.” - -“Do you indeed, dear? How interesting!” - -“I feel—never mind.” - -He returned to his work. - -“Just listen to what I have written to Mrs. Vyse. I said: ‘Dear Mrs. -Vyse.’” - -“Yes, mother, you told me. A jolly good letter.” - -“I said: ‘Dear Mrs. Vyse, Cecil has just asked my permission about it, -and I should be delighted, if Lucy wishes it. But—’” She stopped -reading, “I was rather amused at Cecil asking my permission at all. He -has always gone in for unconventionality, and parents nowhere, and so -forth. When it comes to the point, he can’t get on without me.” - -“Nor me.” - -“You?” - -Freddy nodded. - -“What do you mean?” - -“He asked me for my permission also.” - -She exclaimed: “How very odd of him!” - -“Why so?” asked the son and heir. “Why shouldn’t my permission be -asked?” - -“What do you know about Lucy or girls or anything? What ever did you -say?” - -“I said to Cecil, ‘Take her or leave her; it’s no business of mine!’” - -“What a helpful answer!” But her own answer, though more normal in its -wording, had been to the same effect. - -“The bother is this,” began Freddy. - -Then he took up his work again, too shy to say what the bother was. -Mrs. Honeychurch went back to the window. - -“Freddy, you must come. There they still are!” - -“I don’t see you ought to go peeping like that.” - -“Peeping like that! Can’t I look out of my own window?” - -But she returned to the writing-table, observing, as she passed her -son, “Still page 322?” Freddy snorted, and turned over two leaves. For -a brief space they were silent. Close by, beyond the curtains, the -gentle murmur of a long conversation had never ceased. - -“The bother is this: I have put my foot in it with Cecil most awfully.” -He gave a nervous gulp. “Not content with ‘permission’, which I did -give—that is to say, I said, ‘I don’t mind’—well, not content with -that, he wanted to know whether I wasn’t off my head with joy. He -practically put it like this: Wasn’t it a splendid thing for Lucy and -for Windy Corner generally if he married her? And he would have an -answer—he said it would strengthen his hand.” - -“I hope you gave a careful answer, dear.” - -“I answered ‘No’” said the boy, grinding his teeth. “There! Fly into a -stew! I can’t help it—had to say it. I had to say no. He ought never to -have asked me.” - -“Ridiculous child!” cried his mother. “You think you’re so holy and -truthful, but really it’s only abominable conceit. Do you suppose that -a man like Cecil would take the slightest notice of anything you say? I -hope he boxed your ears. How dare you say no?” - -“Oh, do keep quiet, mother! I had to say no when I couldn’t say yes. I -tried to laugh as if I didn’t mean what I said, and, as Cecil laughed -too, and went away, it may be all right. But I feel my foot’s in it. -Oh, do keep quiet, though, and let a man do some work.” - -“No,” said Mrs. Honeychurch, with the air of one who has considered the -subject, “I shall not keep quiet. You know all that has passed between -them in Rome; you know why he is down here, and yet you deliberately -insult him, and try to turn him out of my house.” - -“Not a bit!” he pleaded. “I only let out I didn’t like him. I don’t -hate him, but I don’t like him. What I mind is that he’ll tell Lucy.” - -He glanced at the curtains dismally. - -“Well, _I_ like him,” said Mrs. Honeychurch. “I know his mother; he’s -good, he’s clever, he’s rich, he’s well connected—Oh, you needn’t kick -the piano! He’s well connected—I’ll say it again if you like: he’s well -connected.” She paused, as if rehearsing her eulogy, but her face -remained dissatisfied. She added: “And he has beautiful manners.” - -“I liked him till just now. I suppose it’s having him spoiling Lucy’s -first week at home; and it’s also something that Mr. Beebe said, not -knowing.” - -“Mr. Beebe?” said his mother, trying to conceal her interest. “I don’t -see how Mr. Beebe comes in.” - -“You know Mr. Beebe’s funny way, when you never quite know what he -means. He said: ‘Mr. Vyse is an ideal bachelor.’ I was very cute, I -asked him what he meant. He said ‘Oh, he’s like me—better detached.’ I -couldn’t make him say any more, but it set me thinking. Since Cecil has -come after Lucy he hasn’t been so pleasant, at least—I can’t explain.” - -“You never can, dear. But I can. You are jealous of Cecil because he -may stop Lucy knitting you silk ties.” - -The explanation seemed plausible, and Freddy tried to accept it. But at -the back of his brain there lurked a dim mistrust. Cecil praised one -too much for being athletic. Was that it? Cecil made one talk in one’s -own way. This tired one. Was that it? And Cecil was the kind of fellow -who would never wear another fellow’s cap. Unaware of his own -profundity, Freddy checked himself. He must be jealous, or he would not -dislike a man for such foolish reasons. - -“Will this do?” called his mother. “‘Dear Mrs. Vyse,—Cecil has just -asked my permission about it, and I should be delighted if Lucy wishes -it.’ Then I put in at the top, ‘and I have told Lucy so.’ I must write -the letter out again—‘and I have told Lucy so. But Lucy seems very -uncertain, and in these days young people must decide for themselves.’ -I said that because I didn’t want Mrs. Vyse to think us old-fashioned. -She goes in for lectures and improving her mind, and all the time a -thick layer of flue under the beds, and the maid’s dirty thumb-marks -where you turn on the electric light. She keeps that flat abominably—” - -“Suppose Lucy marries Cecil, would she live in a flat, or in the -country?” - -“Don’t interrupt so foolishly. Where was I? Oh yes—‘Young people must -decide for themselves. I know that Lucy likes your son, because she -tells me everything, and she wrote to me from Rome when he asked her -first.’ No, I’ll cross that last bit out—it looks patronizing. I’ll -stop at ‘because she tells me everything.’ Or shall I cross that out, -too?” - -“Cross it out, too,” said Freddy. - -Mrs. Honeychurch left it in. - -“Then the whole thing runs: ‘Dear Mrs. Vyse.—Cecil has just asked my -permission about it, and I should be delighted if Lucy wishes it, and I -have told Lucy so. But Lucy seems very uncertain, and in these days -young people must decide for themselves. I know that Lucy likes your -son, because she tells me everything. But I do not know—’” - -“Look out!” cried Freddy. - -The curtains parted. - -Cecil’s first movement was one of irritation. He couldn’t bear the -Honeychurch habit of sitting in the dark to save the furniture. -Instinctively he gave the curtains a twitch, and sent them swinging -down their poles. Light entered. There was revealed a terrace, such as -is owned by many villas with trees each side of it, and on it a little -rustic seat, and two flower-beds. But it was transfigured by the view -beyond, for Windy Corner was built on the range that overlooks the -Sussex Weald. Lucy, who was in the little seat, seemed on the edge of a -green magic carpet which hovered in the air above the tremulous world. - -Cecil entered. - -Appearing thus late in the story, Cecil must be at once described. He -was medieval. Like a Gothic statue. Tall and refined, with shoulders -that seemed braced square by an effort of the will, and a head that was -tilted a little higher than the usual level of vision, he resembled -those fastidious saints who guard the portals of a French cathedral. -Well educated, well endowed, and not deficient physically, he remained -in the grip of a certain devil whom the modern world knows as -self-consciousness, and whom the medieval, with dimmer vision, -worshipped as asceticism. A Gothic statue implies celibacy, just as a -Greek statue implies fruition, and perhaps this was what Mr. Beebe -meant. And Freddy, who ignored history and art, perhaps meant the same -when he failed to imagine Cecil wearing another fellow’s cap. - -Mrs. Honeychurch left her letter on the writing table and moved towards -her young acquaintance. - -“Oh, Cecil!” she exclaimed—“oh, Cecil, do tell me!” - -“I promessi sposi,” said he. - -They stared at him anxiously. - -“She has accepted me,” he said, and the sound of the thing in English -made him flush and smile with pleasure, and look more human. - -“I am so glad,” said Mrs. Honeychurch, while Freddy proffered a hand -that was yellow with chemicals. They wished that they also knew -Italian, for our phrases of approval and of amazement are so connected -with little occasions that we fear to use them on great ones. We are -obliged to become vaguely poetic, or to take refuge in Scriptural -reminiscences. - -“Welcome as one of the family!” said Mrs. Honeychurch, waving her hand -at the furniture. “This is indeed a joyous day! I feel sure that you -will make our dear Lucy happy.” - -“I hope so,” replied the young man, shifting his eyes to the ceiling. - -“We mothers—” simpered Mrs. Honeychurch, and then realized that she was -affected, sentimental, bombastic—all the things she hated most. Why -could she not be Freddy, who stood stiff in the middle of the room; -looking very cross and almost handsome? - -“I say, Lucy!” called Cecil, for conversation seemed to flag. - -Lucy rose from the seat. She moved across the lawn and smiled in at -them, just as if she was going to ask them to play tennis. Then she saw -her brother’s face. Her lips parted, and she took him in her arms. He -said, “Steady on!” - -“Not a kiss for me?” asked her mother. - -Lucy kissed her also. - -“Would you take them into the garden and tell Mrs. Honeychurch all -about it?” Cecil suggested. “And I’d stop here and tell my mother.” - -“We go with Lucy?” said Freddy, as if taking orders. - -“Yes, you go with Lucy.” - -They passed into the sunlight. Cecil watched them cross the terrace, -and descend out of sight by the steps. They would descend—he knew their -ways—past the shrubbery, and past the tennis-lawn and the dahlia-bed, -until they reached the kitchen garden, and there, in the presence of -the potatoes and the peas, the great event would be discussed. - -Smiling indulgently, he lit a cigarette, and rehearsed the events that -had led to such a happy conclusion. - -He had known Lucy for several years, but only as a commonplace girl who -happened to be musical. He could still remember his depression that -afternoon at Rome, when she and her terrible cousin fell on him out of -the blue, and demanded to be taken to St. Peter’s. That day she had -seemed a typical tourist—shrill, crude, and gaunt with travel. But -Italy worked some marvel in her. It gave her light, and—which he held -more precious—it gave her shadow. Soon he detected in her a wonderful -reticence. She was like a woman of Leonardo da Vinci’s, whom we love -not so much for herself as for the things that she will not tell us. -The things are assuredly not of this life; no woman of Leonardo’s could -have anything so vulgar as a “story.” She did develop most wonderfully -day by day. - -So it happened that from patronizing civility he had slowly passed if -not to passion, at least to a profound uneasiness. Already at Rome he -had hinted to her that they might be suitable for each other. It had -touched him greatly that she had not broken away at the suggestion. Her -refusal had been clear and gentle; after it—as the horrid phrase -went—she had been exactly the same to him as before. Three months -later, on the margin of Italy, among the flower-clad Alps, he had asked -her again in bald, traditional language. She reminded him of a Leonardo -more than ever; her sunburnt features were shadowed by fantastic rock; -at his words she had turned and stood between him and the light with -immeasurable plains behind her. He walked home with her unashamed, -feeling not at all like a rejected suitor. The things that really -mattered were unshaken. - -So now he had asked her once more, and, clear and gentle as ever, she -had accepted him, giving no coy reasons for her delay, but simply -saying that she loved him and would do her best to make him happy. His -mother, too, would be pleased; she had counselled the step; he must -write her a long account. - -Glancing at his hand, in case any of Freddy’s chemicals had come off on -it, he moved to the writing table. There he saw “Dear Mrs. Vyse,” -followed by many erasures. He recoiled without reading any more, and -after a little hesitation sat down elsewhere, and pencilled a note on -his knee. - -Then he lit another cigarette, which did not seem quite as divine as -the first, and considered what might be done to make Windy Corner -drawing-room more distinctive. With that outlook it should have been a -successful room, but the trail of Tottenham Court Road was upon it; he -could almost visualize the motor-vans of Messrs. Shoolbred and Messrs. -Maple arriving at the door and depositing this chair, those varnished -book-cases, that writing-table. The table recalled Mrs. Honeychurch’s -letter. He did not want to read that letter—his temptations never lay -in that direction; but he worried about it none the less. It was his -own fault that she was discussing him with his mother; he had wanted -her support in his third attempt to win Lucy; he wanted to feel that -others, no matter who they were, agreed with him, and so he had asked -their permission. Mrs. Honeychurch had been civil, but obtuse in -essentials, while as for Freddy—“He is only a boy,” he reflected. “I -represent all that he despises. Why should he want me for a -brother-in-law?” - -The Honeychurches were a worthy family, but he began to realize that -Lucy was of another clay; and perhaps—he did not put it very -definitely—he ought to introduce her into more congenial circles as -soon as possible. - -“Mr. Beebe!” said the maid, and the new rector of Summer Street was -shown in; he had at once started on friendly relations, owing to Lucy’s -praise of him in her letters from Florence. - -Cecil greeted him rather critically. - -“I’ve come for tea, Mr. Vyse. Do you suppose that I shall get it?” - -“I should say so. Food is the thing one does get here—Don’t sit in that -chair; young Honeychurch has left a bone in it.” - -“Pfui!” - -“I know,” said Cecil. “I know. I can’t think why Mrs. Honeychurch -allows it.” - -For Cecil considered the bone and the Maples’ furniture separately; he -did not realize that, taken together, they kindled the room into the -life that he desired. - -“I’ve come for tea and for gossip. Isn’t this news?” - -“News? I don’t understand you,” said Cecil. “News?” - -Mr. Beebe, whose news was of a very different nature, prattled forward. - -“I met Sir Harry Otway as I came up; I have every reason to hope that I -am first in the field. He has bought Cissie and Albert from Mr. Flack!” - -“Has he indeed?” said Cecil, trying to recover himself. Into what a -grotesque mistake had he fallen! Was it likely that a clergyman and a -gentleman would refer to his engagement in a manner so flippant? But -his stiffness remained, and, though he asked who Cissie and Albert -might be, he still thought Mr. Beebe rather a bounder. - -“Unpardonable question! To have stopped a week at Windy Corner and not -to have met Cissie and Albert, the semi-detached villas that have been -run up opposite the church! I’ll set Mrs. Honeychurch after you.” - -“I’m shockingly stupid over local affairs,” said the young man -languidly. “I can’t even remember the difference between a Parish -Council and a Local Government Board. Perhaps there is no difference, -or perhaps those aren’t the right names. I only go into the country to -see my friends and to enjoy the scenery. It is very remiss of me. Italy -and London are the only places where I don’t feel to exist on -sufferance.” - -Mr. Beebe, distressed at this heavy reception of Cissie and Albert, -determined to shift the subject. - -“Let me see, Mr. Vyse—I forget—what is your profession?” - -“I have no profession,” said Cecil. “It is another example of my -decadence. My attitude—quite an indefensible one—is that so long as I -am no trouble to any one I have a right to do as I like. I know I ought -to be getting money out of people, or devoting myself to things I don’t -care a straw about, but somehow, I’ve not been able to begin.” - -“You are very fortunate,” said Mr. Beebe. “It is a wonderful -opportunity, the possession of leisure.” - -His voice was rather parochial, but he did not quite see his way to -answering naturally. He felt, as all who have regular occupation must -feel, that others should have it also. - -“I am glad that you approve. I daren’t face the healthy person—for -example, Freddy Honeychurch.” - -“Oh, Freddy’s a good sort, isn’t he?” - -“Admirable. The sort who has made England what she is.” - -Cecil wondered at himself. Why, on this day of all others, was he so -hopelessly contrary? He tried to get right by inquiring effusively -after Mr. Beebe’s mother, an old lady for whom he had no particular -regard. Then he flattered the clergyman, praised his -liberal-mindedness, his enlightened attitude towards philosophy and -science. - -“Where are the others?” said Mr. Beebe at last, “I insist on extracting -tea before evening service.” - -“I suppose Anne never told them you were here. In this house one is so -coached in the servants the day one arrives. The fault of Anne is that -she begs your pardon when she hears you perfectly, and kicks the -chair-legs with her feet. The faults of Mary—I forget the faults of -Mary, but they are very grave. Shall we look in the garden?” - -“I know the faults of Mary. She leaves the dust-pans standing on the -stairs.” - -“The fault of Euphemia is that she will not, simply will not, chop the -suet sufficiently small.” - -They both laughed, and things began to go better. - -“The faults of Freddy—” Cecil continued. - -“Ah, he has too many. No one but his mother can remember the faults of -Freddy. Try the faults of Miss Honeychurch; they are not innumerable.” - -“She has none,” said the young man, with grave sincerity. - -“I quite agree. At present she has none.” - -“At present?” - -“I’m not cynical. I’m only thinking of my pet theory about Miss -Honeychurch. Does it seem reasonable that she should play so -wonderfully, and live so quietly? I suspect that one day she will be -wonderful in both. The water-tight compartments in her will break down, -and music and life will mingle. Then we shall have her heroically good, -heroically bad—too heroic, perhaps, to be good or bad.” - -Cecil found his companion interesting. - -“And at present you think her not wonderful as far as life goes?” - -“Well, I must say I’ve only seen her at Tunbridge Wells, where she was -not wonderful, and at Florence. Since I came to Summer Street she has -been away. You saw her, didn’t you, at Rome and in the Alps. Oh, I -forgot; of course, you knew her before. No, she wasn’t wonderful in -Florence either, but I kept on expecting that she would be.” - -“In what way?” - -Conversation had become agreeable to them, and they were pacing up and -down the terrace. - -“I could as easily tell you what tune she’ll play next. There was -simply the sense that she had found wings, and meant to use them. I can -show you a beautiful picture in my Italian diary: Miss Honeychurch as a -kite, Miss Bartlett holding the string. Picture number two: the string -breaks.” - -The sketch was in his diary, but it had been made afterwards, when he -viewed things artistically. At the time he had given surreptitious tugs -to the string himself. - -“But the string never broke?” - -“No. I mightn’t have seen Miss Honeychurch rise, but I should certainly -have heard Miss Bartlett fall.” - -“It has broken now,” said the young man in low, vibrating tones. - -Immediately he realized that of all the conceited, ludicrous, -contemptible ways of announcing an engagement this was the worst. He -cursed his love of metaphor; had he suggested that he was a star and -that Lucy was soaring up to reach him? - -“Broken? What do you mean?” - -“I meant,” said Cecil stiffly, “that she is going to marry me.” - -The clergyman was conscious of some bitter disappointment which he -could not keep out of his voice. - -“I am sorry; I must apologize. I had no idea you were intimate with -her, or I should never have talked in this flippant, superficial way. -Mr. Vyse, you ought to have stopped me.” And down the garden he saw -Lucy herself; yes, he was disappointed. - -Cecil, who naturally preferred congratulations to apologies, drew down -his mouth at the corners. Was this the reception his action would get -from the world? Of course, he despised the world as a whole; every -thoughtful man should; it is almost a test of refinement. But he was -sensitive to the successive particles of it which he encountered. - -Occasionally he could be quite crude. - -“I am sorry I have given you a shock,” he said dryly. “I fear that -Lucy’s choice does not meet with your approval.” - -“Not that. But you ought to have stopped me. I know Miss Honeychurch -only a little as time goes. Perhaps I oughtn’t to have discussed her so -freely with any one; certainly not with you.” - -“You are conscious of having said something indiscreet?” - -Mr. Beebe pulled himself together. Really, Mr. Vyse had the art of -placing one in the most tiresome positions. He was driven to use the -prerogatives of his profession. - -“No, I have said nothing indiscreet. I foresaw at Florence that her -quiet, uneventful childhood must end, and it has ended. I realized -dimly enough that she might take some momentous step. She has taken it. -She has learnt—you will let me talk freely, as I have begun freely—she -has learnt what it is to love: the greatest lesson, some people will -tell you, that our earthly life provides.” It was now time for him to -wave his hat at the approaching trio. He did not omit to do so. “She -has learnt through you,” and if his voice was still clerical, it was -now also sincere; “let it be your care that her knowledge is profitable -to her.” - -“Grazie tante!” said Cecil, who did not like parsons. - -“Have you heard?” shouted Mrs. Honeychurch as she toiled up the sloping -garden. “Oh, Mr. Beebe, have you heard the news?” - -Freddy, now full of geniality, whistled the wedding march. Youth seldom -criticizes the accomplished fact. - -“Indeed I have!” he cried. He looked at Lucy. In her presence he could -not act the parson any longer—at all events not without apology. “Mrs. -Honeychurch, I’m going to do what I am always supposed to do, but -generally I’m too shy. I want to invoke every kind of blessing on them, -grave and gay, great and small. I want them all their lives to be -supremely good and supremely happy as husband and wife, as father and -mother. And now I want my tea.” - -“You only asked for it just in time,” the lady retorted. “How dare you -be serious at Windy Corner?” - -He took his tone from her. There was no more heavy beneficence, no more -attempts to dignify the situation with poetry or the Scriptures. None -of them dared or was able to be serious any more. - -An engagement is so potent a thing that sooner or later it reduces all -who speak of it to this state of cheerful awe. Away from it, in the -solitude of their rooms, Mr. Beebe, and even Freddy, might again be -critical. But in its presence and in the presence of each other they -were sincerely hilarious. It has a strange power, for it compels not -only the lips, but the very heart. The chief parallel to compare one -great thing with another—is the power over us of a temple of some alien -creed. Standing outside, we deride or oppose it, or at the most feel -sentimental. Inside, though the saints and gods are not ours, we become -true believers, in case any true believer should be present. - -So it was that after the gropings and the misgivings of the afternoon -they pulled themselves together and settled down to a very pleasant -tea-party. If they were hypocrites they did not know it, and their -hypocrisy had every chance of setting and of becoming true. Anne, -putting down each plate as if it were a wedding present, stimulated -them greatly. They could not lag behind that smile of hers which she -gave them ere she kicked the drawing-room door. Mr. Beebe chirruped. -Freddy was at his wittiest, referring to Cecil as the “Fiasco”—family -honoured pun on fiance. Mrs. Honeychurch, amusing and portly, promised -well as a mother-in-law. As for Lucy and Cecil, for whom the temple had -been built, they also joined in the merry ritual, but waited, as -earnest worshippers should, for the disclosure of some holier shrine of -joy. - - - - -Chapter IX -Lucy As a Work of Art - - -A few days after the engagement was announced Mrs. Honeychurch made -Lucy and her Fiasco come to a little garden-party in the neighbourhood, -for naturally she wanted to show people that her daughter was marrying -a presentable man. - -Cecil was more than presentable; he looked distinguished, and it was -very pleasant to see his slim figure keeping step with Lucy, and his -long, fair face responding when Lucy spoke to him. People congratulated -Mrs. Honeychurch, which is, I believe, a social blunder, but it pleased -her, and she introduced Cecil rather indiscriminately to some stuffy -dowagers. - -At tea a misfortune took place: a cup of coffee was upset over Lucy’s -figured silk, and though Lucy feigned indifference, her mother feigned -nothing of the sort but dragged her indoors to have the frock treated -by a sympathetic maid. They were gone some time, and Cecil was left -with the dowagers. When they returned he was not as pleasant as he had -been. - -“Do you go to much of this sort of thing?” he asked when they were -driving home. - -“Oh, now and then,” said Lucy, who had rather enjoyed herself. - -“Is it typical of country society?” - -“I suppose so. Mother, would it be?” - -“Plenty of society,” said Mrs. Honeychurch, who was trying to remember -the hang of one of the dresses. - -Seeing that her thoughts were elsewhere, Cecil bent towards Lucy and -said: - -“To me it seemed perfectly appalling, disastrous, portentous.” - -“I am so sorry that you were stranded.” - -“Not that, but the congratulations. It is so disgusting, the way an -engagement is regarded as public property—a kind of waste place where -every outsider may shoot his vulgar sentiment. All those old women -smirking!” - -“One has to go through it, I suppose. They won’t notice us so much next -time.” - -“But my point is that their whole attitude is wrong. An -engagement—horrid word in the first place—is a private matter, and -should be treated as such.” - -Yet the smirking old women, however wrong individually, were racially -correct. The spirit of the generations had smiled through them, -rejoicing in the engagement of Cecil and Lucy because it promised the -continuance of life on earth. To Cecil and Lucy it promised something -quite different—personal love. Hence Cecil’s irritation and Lucy’s -belief that his irritation was just. - -“How tiresome!” she said. “Couldn’t you have escaped to tennis?” - -“I don’t play tennis—at least, not in public. The neighbourhood is -deprived of the romance of me being athletic. Such romance as I have is -that of the Inglese Italianato.” - -“Inglese Italianato?” - -“E un diavolo incarnato! You know the proverb?” - -She did not. Nor did it seem applicable to a young man who had spent a -quiet winter in Rome with his mother. But Cecil, since his engagement, -had taken to affect a cosmopolitan naughtiness which he was far from -possessing. - -“Well,” said he, “I cannot help it if they do disapprove of me. There -are certain irremovable barriers between myself and them, and I must -accept them.” - -“We all have our limitations, I suppose,” said wise Lucy. - -“Sometimes they are forced on us, though,” said Cecil, who saw from her -remark that she did not quite understand his position. - -“How?” - -“It makes a difference doesn’t it, whether we fully fence ourselves in, -or whether we are fenced out by the barriers of others?” - -She thought a moment, and agreed that it did make a difference. - -“Difference?” cried Mrs. Honeychurch, suddenly alert. “I don’t see any -difference. Fences are fences, especially when they are in the same -place.” - -“We were speaking of motives,” said Cecil, on whom the interruption -jarred. - -“My dear Cecil, look here.” She spread out her knees and perched her -card-case on her lap. “This is me. That’s Windy Corner. The rest of the -pattern is the other people. Motives are all very well, but the fence -comes here.” - -“We weren’t talking of real fences,” said Lucy, laughing. - -“Oh, I see, dear—poetry.” - -She leant placidly back. Cecil wondered why Lucy had been amused. - -“I tell you who has no ‘fences,’ as you call them,” she said, “and -that’s Mr. Beebe.” - -“A parson fenceless would mean a parson defenceless.” - -Lucy was slow to follow what people said, but quick enough to detect -what they meant. She missed Cecil’s epigram, but grasped the feeling -that prompted it. - -“Don’t you like Mr. Beebe?” she asked thoughtfully. - -“I never said so!” he cried. “I consider him far above the average. I -only denied—” And he swept off on the subject of fences again, and was -brilliant. - -“Now, a clergyman that I do hate,” said she wanting to say something -sympathetic, “a clergyman that does have fences, and the most dreadful -ones, is Mr. Eager, the English chaplain at Florence. He was truly -insincere—not merely the manner unfortunate. He was a snob, and so -conceited, and he did say such unkind things.” - -“What sort of things?” - -“There was an old man at the Bertolini whom he said had murdered his -wife.” - -“Perhaps he had.” - -“No!” - -“Why ‘no’?” - -“He was such a nice old man, I’m sure.” - -Cecil laughed at her feminine inconsequence. - -“Well, I did try to sift the thing. Mr. Eager would never come to the -point. He prefers it vague—said the old man had ‘practically’ murdered -his wife—had murdered her in the sight of God.” - -“Hush, dear!” said Mrs. Honeychurch absently. - -“But isn’t it intolerable that a person whom we’re told to imitate -should go round spreading slander? It was, I believe, chiefly owing to -him that the old man was dropped. People pretended he was vulgar, but -he certainly wasn’t that.” - -“Poor old man! What was his name?” - -“Harris,” said Lucy glibly. - -“Let’s hope that Mrs. Harris there warn’t no sich person,” said her -mother. - -Cecil nodded intelligently. - -“Isn’t Mr. Eager a parson of the cultured type?” he asked. - -“I don’t know. I hate him. I’ve heard him lecture on Giotto. I hate -him. Nothing can hide a petty nature. I _hate_ him.” - -“My goodness gracious me, child!” said Mrs. Honeychurch. “You’ll blow -my head off! Whatever is there to shout over? I forbid you and Cecil to -hate any more clergymen.” - -He smiled. There was indeed something rather incongruous in Lucy’s -moral outburst over Mr. Eager. It was as if one should see the Leonardo -on the ceiling of the Sistine. He longed to hint to her that not here -lay her vocation; that a woman’s power and charm reside in mystery, not -in muscular rant. But possibly rant is a sign of vitality: it mars the -beautiful creature, but shows that she is alive. After a moment, he -contemplated her flushed face and excited gestures with a certain -approval. He forebore to repress the sources of youth. - -Nature—simplest of topics, he thought—lay around them. He praised the -pine-woods, the deep lasts of bracken, the crimson leaves that spotted -the hurt-bushes, the serviceable beauty of the turnpike road. The -outdoor world was not very familiar to him, and occasionally he went -wrong in a question of fact. Mrs. Honeychurch’s mouth twitched when he -spoke of the perpetual green of the larch. - -“I count myself a lucky person,” he concluded, “When I’m in London I -feel I could never live out of it. When I’m in the country I feel the -same about the country. After all, I do believe that birds and trees -and the sky are the most wonderful things in life, and that the people -who live amongst them must be the best. It’s true that in nine cases -out of ten they don’t seem to notice anything. The country gentleman -and the country labourer are each in their way the most depressing of -companions. Yet they may have a tacit sympathy with the workings of -Nature which is denied to us of the town. Do you feel that, Mrs. -Honeychurch?” - -Mrs. Honeychurch started and smiled. She had not been attending. Cecil, -who was rather crushed on the front seat of the victoria, felt -irritable, and determined not to say anything interesting again. - -Lucy had not attended either. Her brow was wrinkled, and she still -looked furiously cross—the result, he concluded, of too much moral -gymnastics. It was sad to see her thus blind to the beauties of an -August wood. - -“‘Come down, O maid, from yonder mountain height,’” he quoted, and -touched her knee with his own. - -She flushed again and said: “What height?” - -“‘Come down, O maid, from yonder mountain height, -What pleasure lives in height (the shepherd sang). -In height and in the splendour of the hills?’ - - -Let us take Mrs. Honeychurch’s advice and hate clergymen no more. -What’s this place?” - -“Summer Street, of course,” said Lucy, and roused herself. - -The woods had opened to leave space for a sloping triangular meadow. -Pretty cottages lined it on two sides, and the upper and third side was -occupied by a new stone church, expensively simple, a charming shingled -spire. Mr. Beebe’s house was near the church. In height it scarcely -exceeded the cottages. Some great mansions were at hand, but they were -hidden in the trees. The scene suggested a Swiss Alp rather than the -shrine and centre of a leisured world, and was marred only by two ugly -little villas—the villas that had competed with Cecil’s engagement, -having been acquired by Sir Harry Otway the very afternoon that Lucy -had been acquired by Cecil. - -“Cissie” was the name of one of these villas, “Albert” of the other. -These titles were not only picked out in shaded Gothic on the garden -gates, but appeared a second time on the porches, where they followed -the semicircular curve of the entrance arch in block capitals. “Albert” -was inhabited. His tortured garden was bright with geraniums and -lobelias and polished shells. His little windows were chastely swathed -in Nottingham lace. “Cissie” was to let. Three notice-boards, belonging -to Dorking agents, lolled on her fence and announced the not surprising -fact. Her paths were already weedy; her pocket-handkerchief of a lawn -was yellow with dandelions. - -“The place is ruined!” said the ladies mechanically. “Summer Street -will never be the same again.” - -As the carriage passed, “Cissie’s” door opened, and a gentleman came -out of her. - -“Stop!” cried Mrs. Honeychurch, touching the coachman with her parasol. -“Here’s Sir Harry. Now we shall know. Sir Harry, pull those things down -at once!” - -Sir Harry Otway—who need not be described—came to the carriage and said -“Mrs. Honeychurch, I meant to. I can’t, I really can’t turn out Miss -Flack.” - -“Am I not always right? She ought to have gone before the contract was -signed. Does she still live rent free, as she did in her nephew’s -time?” - -“But what can I do?” He lowered his voice. “An old lady, so very -vulgar, and almost bedridden.” - -“Turn her out,” said Cecil bravely. - -Sir Harry sighed, and looked at the villas mournfully. He had had full -warning of Mr. Flack’s intentions, and might have bought the plot -before building commenced: but he was apathetic and dilatory. He had -known Summer Street for so many years that he could not imagine it -being spoilt. Not till Mrs. Flack had laid the foundation stone, and -the apparition of red and cream brick began to rise did he take alarm. -He called on Mr. Flack, the local builder,—a most reasonable and -respectful man—who agreed that tiles would have made more artistic -roof, but pointed out that slates were cheaper. He ventured to differ, -however, about the Corinthian columns which were to cling like leeches -to the frames of the bow windows, saying that, for his part, he liked -to relieve the façade by a bit of decoration. Sir Harry hinted that a -column, if possible, should be structural as well as decorative. - -Mr. Flack replied that all the columns had been ordered, adding, “and -all the capitals different—one with dragons in the foliage, another -approaching to the Ionian style, another introducing Mrs. Flack’s -initials—every one different.” For he had read his Ruskin. He built his -villas according to his desire; and not until he had inserted an -immovable aunt into one of them did Sir Harry buy. - -This futile and unprofitable transaction filled the knight with sadness -as he leant on Mrs. Honeychurch’s carriage. He had failed in his duties -to the country-side, and the country-side was laughing at him as well. -He had spent money, and yet Summer Street was spoilt as much as ever. -All he could do now was to find a desirable tenant for “Cissie”—someone -really desirable. - -“The rent is absurdly low,” he told them, “and perhaps I am an easy -landlord. But it is such an awkward size. It is too large for the -peasant class and too small for any one the least like ourselves.” - -Cecil had been hesitating whether he should despise the villas or -despise Sir Harry for despising them. The latter impulse seemed the -more fruitful. - -“You ought to find a tenant at once,” he said maliciously. “It would be -a perfect paradise for a bank clerk.” - -“Exactly!” said Sir Harry excitedly. “That is exactly what I fear, Mr. -Vyse. It will attract the wrong type of people. The train service has -improved—a fatal improvement, to my mind. And what are five miles from -a station in these days of bicycles?” - -“Rather a strenuous clerk it would be,” said Lucy. - -Cecil, who had his full share of mediaeval mischievousness, replied -that the physique of the lower middle classes was improving at a most -appalling rate. She saw that he was laughing at their harmless -neighbour, and roused herself to stop him. - -“Sir Harry!” she exclaimed, “I have an idea. How would you like -spinsters?” - -“My dear Lucy, it would be splendid. Do you know any such?” - -“Yes; I met them abroad.” - -“Gentlewomen?” he asked tentatively. - -“Yes, indeed, and at the present moment homeless. I heard from them -last week—Miss Teresa and Miss Catharine Alan. I’m really not joking. -They are quite the right people. Mr. Beebe knows them, too. May I tell -them to write to you?” - -“Indeed you may!” he cried. “Here we are with the difficulty solved -already. How delightful it is! Extra facilities—please tell them they -shall have extra facilities, for I shall have no agents’ fees. Oh, the -agents! The appalling people they have sent me! One woman, when I -wrote—a tactful letter, you know—asking her to explain her social -position to me, replied that she would pay the rent in advance. As if -one cares about that! And several references I took up were most -unsatisfactory—people swindlers, or not respectable. And oh, the -deceit! I have seen a good deal of the seamy side this last week. The -deceit of the most promising people. My dear Lucy, the deceit!” - -She nodded. - -“My advice,” put in Mrs. Honeychurch, “is to have nothing to do with -Lucy and her decayed gentlewomen at all. I know the type. Preserve me -from people who have seen better days, and bring heirlooms with them -that make the house smell stuffy. It’s a sad thing, but I’d far rather -let to some one who is going up in the world than to someone who has -come down.” - -“I think I follow you,” said Sir Harry; “but it is, as you say, a very -sad thing.” - -“The Misses Alan aren’t that!” cried Lucy. - -“Yes, they are,” said Cecil. “I haven’t met them but I should say they -were a highly unsuitable addition to the neighbourhood.” - -“Don’t listen to him, Sir Harry—he’s tiresome.” - -“It’s I who am tiresome,” he replied. “I oughtn’t to come with my -troubles to young people. But really I am so worried, and Lady Otway -will only say that I cannot be too careful, which is quite true, but no -real help.” - -“Then may I write to my Misses Alan?” - -“Please!” - -But his eye wavered when Mrs. Honeychurch exclaimed: - -“Beware! They are certain to have canaries. Sir Harry, beware of -canaries: they spit the seed out through the bars of the cages and then -the mice come. Beware of women altogether. Only let to a man.” - -“Really—” he murmured gallantly, though he saw the wisdom of her -remark. - -“Men don’t gossip over tea-cups. If they get drunk, there’s an end of -them—they lie down comfortably and sleep it off. If they’re vulgar, -they somehow keep it to themselves. It doesn’t spread so. Give me a -man—of course, provided he’s clean.” - -Sir Harry blushed. Neither he nor Cecil enjoyed these open compliments -to their sex. Even the exclusion of the dirty did not leave them much -distinction. He suggested that Mrs. Honeychurch, if she had time, -should descend from the carriage and inspect “Cissie” for herself. She -was delighted. Nature had intended her to be poor and to live in such a -house. Domestic arrangements always attracted her, especially when they -were on a small scale. - -Cecil pulled Lucy back as she followed her mother. - -“Mrs. Honeychurch,” he said, “what if we two walk home and leave you?” - -“Certainly!” was her cordial reply. - -Sir Harry likewise seemed almost too glad to get rid of them. He beamed -at them knowingly, said, “Aha! young people, young people!” and then -hastened to unlock the house. - -“Hopeless vulgarian!” exclaimed Cecil, almost before they were out of -earshot. - -“Oh, Cecil!” - -“I can’t help it. It would be wrong not to loathe that man.” - -“He isn’t clever, but really he is nice.” - -“No, Lucy, he stands for all that is bad in country life. In London he -would keep his place. He would belong to a brainless club, and his wife -would give brainless dinner parties. But down here he acts the little -god with his gentility, and his patronage, and his sham aesthetics, and -every one—even your mother—is taken in.” - -“All that you say is quite true,” said Lucy, though she felt -discouraged. “I wonder whether—whether it matters so very much.” - -“It matters supremely. Sir Harry is the essence of that garden-party. -Oh, goodness, how cross I feel! How I do hope he’ll get some vulgar -tenant in that villa—some woman so really vulgar that he’ll notice it. -_Gentlefolks!_ Ugh! with his bald head and retreating chin! But let’s -forget him.” - -This Lucy was glad enough to do. If Cecil disliked Sir Harry Otway and -Mr. Beebe, what guarantee was there that the people who really mattered -to her would escape? For instance, Freddy. Freddy was neither clever, -nor subtle, nor beautiful, and what prevented Cecil from saying, any -minute, “It would be wrong not to loathe Freddy”? And what would she -reply? Further than Freddy she did not go, but he gave her anxiety -enough. She could only assure herself that Cecil had known Freddy some -time, and that they had always got on pleasantly, except, perhaps, -during the last few days, which was an accident, perhaps. - -“Which way shall we go?” she asked him. - -Nature—simplest of topics, she thought—was around them. Summer Street -lay deep in the woods, and she had stopped where a footpath diverged -from the highroad. - -“Are there two ways?” - -“Perhaps the road is more sensible, as we’re got up smart.” - -“I’d rather go through the wood,” said Cecil, with that subdued -irritation that she had noticed in him all the afternoon. “Why is it, -Lucy, that you always say the road? Do you know that you have never -once been with me in the fields or the wood since we were engaged?” - -“Haven’t I? The wood, then,” said Lucy, startled at his queerness, but -pretty sure that he would explain later; it was not his habit to leave -her in doubt as to his meaning. - -She led the way into the whispering pines, and sure enough he did -explain before they had gone a dozen yards. - -“I had got an idea—I dare say wrongly—that you feel more at home with -me in a room.” - -“A room?” she echoed, hopelessly bewildered. - -“Yes. Or, at the most, in a garden, or on a road. Never in the real -country like this.” - -“Oh, Cecil, whatever do you mean? I have never felt anything of the -sort. You talk as if I was a kind of poetess sort of person.” - -“I don’t know that you aren’t. I connect you with a view—a certain type -of view. Why shouldn’t you connect me with a room?” - -She reflected a moment, and then said, laughing: - -“Do you know that you’re right? I do. I must be a poetess after all. -When I think of you it’s always as in a room. How funny!” - -To her surprise, he seemed annoyed. - -“A drawing-room, pray? With no view?” - -“Yes, with no view, I fancy. Why not?” - -“I’d rather,” he said reproachfully, “that you connected me with the -open air.” - -She said again, “Oh, Cecil, whatever do you mean?” - -As no explanation was forthcoming, she shook off the subject as too -difficult for a girl, and led him further into the wood, pausing every -now and then at some particularly beautiful or familiar combination of -the trees. She had known the wood between Summer Street and Windy -Corner ever since she could walk alone; she had played at losing Freddy -in it, when Freddy was a purple-faced baby; and though she had been to -Italy, it had lost none of its charm. - -Presently they came to a little clearing among the pines—another tiny -green alp, solitary this time, and holding in its bosom a shallow pool. - -She exclaimed, “The Sacred Lake!” - -“Why do you call it that?” - -“I can’t remember why. I suppose it comes out of some book. It’s only a -puddle now, but you see that stream going through it? Well, a good deal -of water comes down after heavy rains, and can’t get away at once, and -the pool becomes quite large and beautiful. Then Freddy used to bathe -there. He is very fond of it.” - -“And you?” - -He meant, “Are you fond of it?” But she answered dreamily, “I bathed -here, too, till I was found out. Then there was a row.” - -At another time he might have been shocked, for he had depths of -prudishness within him. But now? with his momentary cult of the fresh -air, he was delighted at her admirable simplicity. He looked at her as -she stood by the pool’s edge. She was got up smart, as she phrased it, -and she reminded him of some brilliant flower that has no leaves of its -own, but blooms abruptly out of a world of green. - -“Who found you out?” - -“Charlotte,” she murmured. “She was stopping with us. -Charlotte—Charlotte.” - -“Poor girl!” - -She smiled gravely. A certain scheme, from which hitherto he had -shrunk, now appeared practical. - -“Lucy!” - -“Yes, I suppose we ought to be going,” was her reply. - -“Lucy, I want to ask something of you that I have never asked before.” - -At the serious note in his voice she stepped frankly and kindly towards -him. - -“What, Cecil?” - -“Hitherto never—not even that day on the lawn when you agreed to marry -me—” - -He became self-conscious and kept glancing round to see if they were -observed. His courage had gone. - -“Yes?” - -“Up to now I have never kissed you.” - -She was as scarlet as if he had put the thing most indelicately. - -“No—more you have,” she stammered. - -“Then I ask you—may I now?” - -“Of course, you may, Cecil. You might before. I can’t run at you, you -know.” - -At that supreme moment he was conscious of nothing but absurdities. Her -reply was inadequate. She gave such a business-like lift to her veil. -As he approached her he found time to wish that he could recoil. As he -touched her, his gold pince-nez became dislodged and was flattened -between them. - -Such was the embrace. He considered, with truth, that it had been a -failure. Passion should believe itself irresistible. It should forget -civility and consideration and all the other curses of a refined -nature. Above all, it should never ask for leave where there is a right -of way. Why could he not do as any labourer or navvy—nay, as any young -man behind the counter would have done? He recast the scene. Lucy was -standing flowerlike by the water, he rushed up and took her in his -arms; she rebuked him, permitted him and revered him ever after for his -manliness. For he believed that women revere men for their manliness. - -They left the pool in silence, after this one salutation. He waited for -her to make some remark which should show him her inmost thoughts. At -last she spoke, and with fitting gravity. - -“Emerson was the name, not Harris.” - -“What name?” - -“The old man’s.” - -“What old man?” - -“That old man I told you about. The one Mr. Eager was so unkind to.” - -He could not know that this was the most intimate conversation they had -ever had. - - - - -Chapter X -Cecil as a Humourist - - -The society out of which Cecil proposed to rescue Lucy was perhaps no -very splendid affair, yet it was more splendid than her antecedents -entitled her to. Her father, a prosperous local solicitor, had built -Windy Corner, as a speculation at the time the district was opening up, -and, falling in love with his own creation, had ended by living there -himself. Soon after his marriage the social atmosphere began to alter. -Other houses were built on the brow of that steep southern slope and -others, again, among the pine-trees behind, and northward on the chalk -barrier of the downs. Most of these houses were larger than Windy -Corner, and were filled by people who came, not from the district, but -from London, and who mistook the Honeychurches for the remnants of an -indigenous aristocracy. He was inclined to be frightened, but his wife -accepted the situation without either pride or humility. “I cannot -think what people are doing,” she would say, “but it is extremely -fortunate for the children.” She called everywhere; her calls were -returned with enthusiasm, and by the time people found out that she was -not exactly of their _milieu_, they liked her, and it did not seem to -matter. When Mr. Honeychurch died, he had the satisfaction—which few -honest solicitors despise—of leaving his family rooted in the best -society obtainable. - -The best obtainable. Certainly many of the immigrants were rather dull, -and Lucy realized this more vividly since her return from Italy. -Hitherto she had accepted their ideals without questioning—their kindly -affluence, their inexplosive religion, their dislike of paper-bags, -orange-peel, and broken bottles. A Radical out and out, she learnt to -speak with horror of Suburbia. Life, so far as she troubled to conceive -it, was a circle of rich, pleasant people, with identical interests and -identical foes. In this circle, one thought, married, and died. Outside -it were poverty and vulgarity for ever trying to enter, just as the -London fog tries to enter the pine-woods pouring through the gaps in -the northern hills. But, in Italy, where any one who chooses may warm -himself in equality, as in the sun, this conception of life vanished. -Her senses expanded; she felt that there was no one whom she might not -get to like, that social barriers were irremovable, doubtless, but not -particularly high. You jump over them just as you jump into a peasant’s -olive-yard in the Apennines, and he is glad to see you. She returned -with new eyes. - -So did Cecil; but Italy had quickened Cecil, not to tolerance, but to -irritation. He saw that the local society was narrow, but, instead of -saying, “Does that very much matter?” he rebelled, and tried to -substitute for it the society he called broad. He did not realize that -Lucy had consecrated her environment by the thousand little civilities -that create a tenderness in time, and that though her eyes saw its -defects, her heart refused to despise it entirely. Nor did he realize a -more important point—that if she was too great for this society, she -was too great for all society, and had reached the stage where personal -intercourse would alone satisfy her. A rebel she was, but not of the -kind he understood—a rebel who desired, not a wider dwelling-room, but -equality beside the man she loved. For Italy was offering her the most -priceless of all possessions—her own soul. - -Playing bumble-puppy with Minnie Beebe, niece to the rector, and aged -thirteen—an ancient and most honourable game, which consists in -striking tennis-balls high into the air, so that they fall over the net -and immoderately bounce; some hit Mrs. Honeychurch; others are lost. -The sentence is confused, but the better illustrates Lucy’s state of -mind, for she was trying to talk to Mr. Beebe at the same time. - -“Oh, it has been such a nuisance—first he, then they—no one knowing -what they wanted, and everyone so tiresome.” - -“But they really are coming now,” said Mr. Beebe. “I wrote to Miss -Teresa a few days ago—she was wondering how often the butcher called, -and my reply of once a month must have impressed her favourably. They -are coming. I heard from them this morning. - -“I shall hate those Miss Alans!” Mrs. Honeychurch cried. “Just because -they’re old and silly one’s expected to say ‘How sweet!’ I hate their -‘if’-ing and ‘but’-ing and ‘and’-ing. And poor Lucy—serve her -right—worn to a shadow.” - -Mr. Beebe watched the shadow springing and shouting over the -tennis-court. Cecil was absent—one did not play bumble-puppy when he -was there. - -“Well, if they are coming—No, Minnie, not Saturn.” Saturn was a -tennis-ball whose skin was partially unsewn. When in motion his orb was -encircled by a ring. “If they are coming, Sir Harry will let them move -in before the twenty-ninth, and he will cross out the clause about -whitewashing the ceilings, because it made them nervous, and put in the -fair wear and tear one.—That doesn’t count. I told you not Saturn.” - -“Saturn’s all right for bumble-puppy,” cried Freddy, joining them. -“Minnie, don’t you listen to her.” - -“Saturn doesn’t bounce.” - -“Saturn bounces enough.” - -“No, he doesn’t.” - -“Well; he bounces better than the Beautiful White Devil.” - -“Hush, dear,” said Mrs. Honeychurch. - -“But look at Lucy—complaining of Saturn, and all the time’s got the -Beautiful White Devil in her hand, ready to plug it in. That’s right, -Minnie, go for her—get her over the shins with the racquet—get her over -the shins!” - -Lucy fell, the Beautiful White Devil rolled from her hand. - -Mr. Beebe picked it up, and said: “The name of this ball is Vittoria -Corombona, please.” But his correction passed unheeded. - -Freddy possessed to a high degree the power of lashing little girls to -fury, and in half a minute he had transformed Minnie from a -well-mannered child into a howling wilderness. Up in the house Cecil -heard them, and, though he was full of entertaining news, he did not -come down to impart it, in case he got hurt. He was not a coward and -bore necessary pain as well as any man. But he hated the physical -violence of the young. How right it was! Sure enough it ended in a cry. - -“I wish the Miss Alans could see this,” observed Mr. Beebe, just as -Lucy, who was nursing the injured Minnie, was in turn lifted off her -feet by her brother. - -“Who are the Miss Alans?” Freddy panted. - -“They have taken Cissie Villa.” - -“That wasn’t the name—” - -Here his foot slipped, and they all fell most agreeably on to the -grass. An interval elapses. - -“Wasn’t what name?” asked Lucy, with her brother’s head in her lap. - -“Alan wasn’t the name of the people Sir Harry’s let to.” - -“Nonsense, Freddy! You know nothing about it.” - -“Nonsense yourself! I’ve this minute seen him. He said to me: ‘Ahem! -Honeychurch,’”—Freddy was an indifferent mimic—“‘ahem! ahem! I have at -last procured really dee-sire-rebel tenants.’ I said, ‘ooray, old boy!’ -and slapped him on the back.” - -“Exactly. The Miss Alans?” - -“Rather not. More like Anderson.” - -“Oh, good gracious, there isn’t going to be another muddle!” Mrs. -Honeychurch exclaimed. “Do you notice, Lucy, I’m always right? I _said_ -don’t interfere with Cissie Villa. I’m always right. I’m quite uneasy -at being always right so often.” - -“It’s only another muddle of Freddy’s. Freddy doesn’t even know the -name of the people he pretends have taken it instead.” - -“Yes, I do. I’ve got it. Emerson.” - -“What name?” - -“Emerson. I’ll bet you anything you like.” - -“What a weathercock Sir Harry is,” said Lucy quietly. “I wish I had -never bothered over it at all.” - -Then she lay on her back and gazed at the cloudless sky. Mr. Beebe, -whose opinion of her rose daily, whispered to his niece that _that_ was -the proper way to behave if any little thing went wrong. - -Meanwhile the name of the new tenants had diverted Mrs. Honeychurch -from the contemplation of her own abilities. - -“Emerson, Freddy? Do you know what Emersons they are?” - -“I don’t know whether they’re any Emersons,” retorted Freddy, who was -democratic. Like his sister and like most young people, he was -naturally attracted by the idea of equality, and the undeniable fact -that there are different kinds of Emersons annoyed him beyond measure. - -“I trust they are the right sort of person. All right, Lucy”—she was -sitting up again—“I see you looking down your nose and thinking your -mother’s a snob. But there is a right sort and a wrong sort, and it’s -affectation to pretend there isn’t.” - -“Emerson’s a common enough name,” Lucy remarked. - -She was gazing sideways. Seated on a promontory herself, she could see -the pine-clad promontories descending one beyond another into the -Weald. The further one descended the garden, the more glorious was this -lateral view. - -“I was merely going to remark, Freddy, that I trusted they were no -relations of Emerson the philosopher, a most trying man. Pray, does -that satisfy you?” - -“Oh, yes,” he grumbled. “And you will be satisfied, too, for they’re -friends of Cecil; so”—elaborate irony—“you and the other country -families will be able to call in perfect safety.” - -“_Cecil?_” exclaimed Lucy. - -“Don’t be rude, dear,” said his mother placidly. “Lucy, don’t screech. -It’s a new bad habit you’re getting into.” - -“But has Cecil—” - -“Friends of Cecil’s,” he repeated, “‘and so really dee-sire-rebel. -Ahem! Honeychurch, I have just telegraphed to them.’” - -She got up from the grass. - -It was hard on Lucy. Mr. Beebe sympathized with her very much. While -she believed that her snub about the Miss Alans came from Sir Harry -Otway, she had borne it like a good girl. She might well “screech” when -she heard that it came partly from her lover. Mr. Vyse was a -tease—something worse than a tease: he took a malicious pleasure in -thwarting people. The clergyman, knowing this, looked at Miss -Honeychurch with more than his usual kindness. - -When she exclaimed, “But Cecil’s Emersons—they can’t possibly be the -same ones—there is that—” he did not consider that the exclamation was -strange, but saw in it an opportunity of diverting the conversation -while she recovered her composure. He diverted it as follows: - -“The Emersons who were at Florence, do you mean? No, I don’t suppose it -will prove to be them. It is probably a long cry from them to friends -of Mr. Vyse’s. Oh, Mrs. Honeychurch, the oddest people! The queerest -people! For our part we liked them, didn’t we?” He appealed to Lucy. -“There was a great scene over some violets. They picked violets and -filled all the vases in the room of these very Miss Alans who have -failed to come to Cissie Villa. Poor little ladies! So shocked and so -pleased. It used to be one of Miss Catharine’s great stories. ‘My dear -sister loves flowers,’ it began. They found the whole room a mass of -blue—vases and jugs—and the story ends with ‘So ungentlemanly and yet -so beautiful.’ It is all very difficult. Yes, I always connect those -Florentine Emersons with violets.” - -“Fiasco’s done you this time,” remarked Freddy, not seeing that his -sister’s face was very red. She could not recover herself. Mr. Beebe -saw it, and continued to divert the conversation. - -“These particular Emersons consisted of a father and a son—the son a -goodly, if not a good young man; not a fool, I fancy, but very -immature—pessimism, et cetera. Our special joy was the father—such a -sentimental darling, and people declared he had murdered his wife.” - -In his normal state Mr. Beebe would never have repeated such gossip, -but he was trying to shelter Lucy in her little trouble. He repeated -any rubbish that came into his head. - -“Murdered his wife?” said Mrs. Honeychurch. “Lucy, don’t desert us—go -on playing bumble-puppy. Really, the Pension Bertolini must have been -the oddest place. That’s the second murderer I’ve heard of as being -there. Whatever was Charlotte doing to stop? By-the-by, we really must -ask Charlotte here some time.” - -Mr. Beebe could recall no second murderer. He suggested that his -hostess was mistaken. At the hint of opposition she warmed. She was -perfectly sure that there had been a second tourist of whom the same -story had been told. The name escaped her. What was the name? Oh, what -was the name? She clasped her knees for the name. Something in -Thackeray. She struck her matronly forehead. - -Lucy asked her brother whether Cecil was in. - -“Oh, don’t go!” he cried, and tried to catch her by the ankles. - -“I must go,” she said gravely. “Don’t be silly. You always overdo it -when you play.” - -As she left them her mother’s shout of “Harris!” shivered the tranquil -air, and reminded her that she had told a lie and had never put it -right. Such a senseless lie, too, yet it shattered her nerves and made -her connect these Emersons, friends of Cecil’s, with a pair of -nondescript tourists. Hitherto truth had come to her naturally. She saw -that for the future she must be more vigilant, and be—absolutely -truthful? Well, at all events, she must not tell lies. She hurried up -the garden, still flushed with shame. A word from Cecil would soothe -her, she was sure. - -“Cecil!” - -“Hullo!” he called, and leant out of the smoking-room window. He seemed -in high spirits. “I was hoping you’d come. I heard you all -bear-gardening, but there’s better fun up here. I, even I, have won a -great victory for the Comic Muse. George Meredith’s right—the cause of -Comedy and the cause of Truth are really the same; and I, even I, have -found tenants for the distressful Cissie Villa. Don’t be angry! Don’t -be angry! You’ll forgive me when you hear it all.” - -He looked very attractive when his face was bright, and he dispelled -her ridiculous forebodings at once. - -“I have heard,” she said. “Freddy has told us. Naughty Cecil! I suppose -I must forgive you. Just think of all the trouble I took for nothing! -Certainly the Miss Alans are a little tiresome, and I’d rather have -nice friends of yours. But you oughtn’t to tease one so.” - -“Friends of mine?” he laughed. “But, Lucy, the whole joke is to come! -Come here.” But she remained standing where she was. “Do you know where -I met these desirable tenants? In the National Gallery, when I was up -to see my mother last week.” - -“What an odd place to meet people!” she said nervously. “I don’t quite -understand.” - -“In the Umbrian Room. Absolute strangers. They were admiring Luca -Signorelli—of course, quite stupidly. However, we got talking, and they -refreshed me not a little. They had been to Italy.” - -“But, Cecil—” proceeded hilariously. - -“In the course of conversation they said that they wanted a country -cottage—the father to live there, the son to run down for week-ends. I -thought, ‘What a chance of scoring off Sir Harry!’ and I took their -address and a London reference, found they weren’t actual -blackguards—it was great sport—and wrote to him, making out—” - -“Cecil! No, it’s not fair. I’ve probably met them before—” - -He bore her down. - -“Perfectly fair. Anything is fair that punishes a snob. That old man -will do the neighbourhood a world of good. Sir Harry is too disgusting -with his ‘decayed gentlewomen.’ I meant to read him a lesson some time. -No, Lucy, the classes ought to mix, and before long you’ll agree with -me. There ought to be intermarriage—all sorts of things. I believe in -democracy—” - -“No, you don’t,” she snapped. “You don’t know what the word means.” - -He stared at her, and felt again that she had failed to be -Leonardesque. “No, you don’t!” - -Her face was inartistic—that of a peevish virago. - -“It isn’t fair, Cecil. I blame you—I blame you very much indeed. You -had no business to undo my work about the Miss Alans, and make me look -ridiculous. You call it scoring off Sir Harry, but do you realize that -it is all at my expense? I consider it most disloyal of you.” - -She left him. - -“Temper!” he thought, raising his eyebrows. - -No, it was worse than temper—snobbishness. As long as Lucy thought that -his own smart friends were supplanting the Miss Alans, she had not -minded. He perceived that these new tenants might be of value -educationally. He would tolerate the father and draw out the son, who -was silent. In the interests of the Comic Muse and of Truth, he would -bring them to Windy Corner. - - - - -Chapter XI -In Mrs. Vyse’s Well-Appointed Flat - - -The Comic Muse, though able to look after her own interests, did not -disdain the assistance of Mr. Vyse. His idea of bringing the Emersons -to Windy Corner struck her as decidedly good, and she carried through -the negotiations without a hitch. Sir Harry Otway signed the agreement, -met Mr. Emerson, who was duly disillusioned. The Miss Alans were duly -offended, and wrote a dignified letter to Lucy, whom they held -responsible for the failure. Mr. Beebe planned pleasant moments for the -new-comers, and told Mrs. Honeychurch that Freddy must call on them as -soon as they arrived. Indeed, so ample was the Muse’s equipment that -she permitted Mr. Harris, never a very robust criminal, to droop his -head, to be forgotten, and to die. - -Lucy—to descend from bright heaven to earth, whereon there are shadows -because there are hills—Lucy was at first plunged into despair, but -settled after a little thought that it did not matter the very least. -Now that she was engaged, the Emersons would scarcely insult her and -were welcome into the neighbourhood. And Cecil was welcome to bring -whom he would into the neighbourhood. Therefore Cecil was welcome to -bring the Emersons into the neighbourhood. But, as I say, this took a -little thinking, and—so illogical are girls—the event remained rather -greater and rather more dreadful than it should have done. She was glad -that a visit to Mrs. Vyse now fell due; the tenants moved into Cissie -Villa while she was safe in the London flat. - -“Cecil—Cecil darling,” she whispered the evening she arrived, and crept -into his arms. - -Cecil, too, became demonstrative. He saw that the needful fire had been -kindled in Lucy. At last she longed for attention, as a woman should, -and looked up to him because he was a man. - -“So you do love me, little thing?” he murmured. - -“Oh, Cecil, I do, I do! I don’t know what I should do without you.” - -Several days passed. Then she had a letter from Miss Bartlett. A -coolness had sprung up between the two cousins, and they had not -corresponded since they parted in August. The coolness dated from what -Charlotte would call “the flight to Rome,” and in Rome it had increased -amazingly. For the companion who is merely uncongenial in the mediaeval -world becomes exasperating in the classical. Charlotte, unselfish in -the Forum, would have tried a sweeter temper than Lucy’s, and once, in -the Baths of Caracalla, they had doubted whether they could continue -their tour. Lucy had said she would join the Vyses—Mrs. Vyse was an -acquaintance of her mother, so there was no impropriety in the plan and -Miss Bartlett had replied that she was quite used to being abandoned -suddenly. Finally nothing happened; but the coolness remained, and, for -Lucy, was even increased when she opened the letter and read as -follows. It had been forwarded from Windy Corner. - -“TUNBRIDGE WELLS, -“_September_. - - -“DEAREST LUCIA, - - -“I have news of you at last! Miss Lavish has been bicycling in your -parts, but was not sure whether a call would be welcome. Puncturing her -tire near Summer Street, and it being mended while she sat very -woebegone in that pretty churchyard, she saw to her astonishment, a -door open opposite and the younger Emerson man come out. He said his -father had just taken the house. He _said_ he did not know that you -lived in the neighbourhood (?). He never suggested giving Eleanor a cup -of tea. Dear Lucy, I am much worried, and I advise you to make a clean -breast of his past behaviour to your mother, Freddy, and Mr. Vyse, who -will forbid him to enter the house, etc. That was a great misfortune, -and I dare say you have told them already. Mr. Vyse is so sensitive. I -remember how I used to get on his nerves at Rome. I am very sorry about -it all, and should not feel easy unless I warned you. - - -“Believe me, -“Your anxious and loving cousin, -“CHARLOTTE.” - - -Lucy was much annoyed, and replied as follows: - -“BEAUCHAMP MANSIONS, S.W. - - - - -“DEAR CHARLOTTE, - -“Many thanks for your warning. When Mr. Emerson forgot himself on the -mountain, you made me promise not to tell mother, because you said she -would blame you for not being always with me. I have kept that promise, -and cannot possibly tell her now. I have said both to her and Cecil -that I met the Emersons at Florence, and that they are respectable -people—which I _do_ think—and the reason that he offered Miss Lavish no -tea was probably that he had none himself. She should have tried at the -Rectory. I cannot begin making a fuss at this stage. You must see that -it would be too absurd. If the Emersons heard I had complained of them, -they would think themselves of importance, which is exactly what they -are not. I like the old father, and look forward to seeing him again. -As for the son, I am sorry for _him_ when we meet, rather than for -myself. They are known to Cecil, who is very well and spoke of you the -other day. We expect to be married in January. - -“Miss Lavish cannot have told you much about me, for I am not at Windy -Corner at all, but here. Please do not put ‘Private’ outside your -envelope again. No one opens my letters. - - -“Yours affectionately, -“L. M. HONEYCHURCH.” - - -Secrecy has this disadvantage: we lose the sense of proportion; we -cannot tell whether our secret is important or not. Were Lucy and her -cousin closeted with a great thing which would destroy Cecil’s life if -he discovered it, or with a little thing which he would laugh at? Miss -Bartlett suggested the former. Perhaps she was right. It had become a -great thing now. Left to herself, Lucy would have told her mother and -her lover ingenuously, and it would have remained a little thing. -“Emerson, not Harris”; it was only that a few weeks ago. She tried to -tell Cecil even now when they were laughing about some beautiful lady -who had smitten his heart at school. But her body behaved so -ridiculously that she stopped. - -She and her secret stayed ten days longer in the deserted Metropolis -visiting the scenes they were to know so well later on. It did her no -harm, Cecil thought, to learn the framework of society, while society -itself was absent on the golf-links or the moors. The weather was cool, -and it did her no harm. In spite of the season, Mrs. Vyse managed to -scrape together a dinner-party consisting entirely of the grandchildren -of famous people. The food was poor, but the talk had a witty weariness -that impressed the girl. One was tired of everything, it seemed. One -launched into enthusiasms only to collapse gracefully, and pick oneself -up amid sympathetic laughter. In this atmosphere the Pension Bertolini -and Windy Corner appeared equally crude, and Lucy saw that her London -career would estrange her a little from all that she had loved in the -past. - -The grandchildren asked her to play the piano. - -She played Schumann. “Now some Beethoven” called Cecil, when the -querulous beauty of the music had died. She shook her head and played -Schumann again. The melody rose, unprofitably magical. It broke; it was -resumed broken, not marching once from the cradle to the grave. The -sadness of the incomplete—the sadness that is often Life, but should -never be Art—throbbed in its disjected phrases, and made the nerves of -the audience throb. Not thus had she played on the little draped piano -at the Bertolini, and “Too much Schumann” was not the remark that Mr. -Beebe had passed to himself when she returned. - -When the guests were gone, and Lucy had gone to bed, Mrs. Vyse paced up -and down the drawing-room, discussing her little party with her son. -Mrs. Vyse was a nice woman, but her personality, like many another’s, -had been swamped by London, for it needs a strong head to live among -many people. The too vast orb of her fate had crushed her; and she had -seen too many seasons, too many cities, too many men, for her -abilities, and even with Cecil she was mechanical, and behaved as if he -was not one son, but, so to speak, a filial crowd. - -“Make Lucy one of us,” she said, looking round intelligently at the end -of each sentence, and straining her lips apart until she spoke again. -“Lucy is becoming wonderful—wonderful.” - -“Her music always was wonderful.” - -“Yes, but she is purging off the Honeychurch taint, most excellent -Honeychurches, but you know what I mean. She is not always quoting -servants, or asking one how the pudding is made.” - -“Italy has done it.” - -“Perhaps,” she murmured, thinking of the museum that represented Italy -to her. “It is just possible. Cecil, mind you marry her next January. -She is one of us already.” - -“But her music!” he exclaimed. “The style of her! How she kept to -Schumann when, like an idiot, I wanted Beethoven. Schumann was right -for this evening. Schumann was the thing. Do you know, mother, I shall -have our children educated just like Lucy. Bring them up among honest -country folks for freshness, send them to Italy for subtlety, and -then—not till then—let them come to London. I don’t believe in these -London educations—” He broke off, remembering that he had had one -himself, and concluded, “At all events, not for women.” - -“Make her one of us,” repeated Mrs. Vyse, and processed to bed. - -As she was dozing off, a cry—the cry of nightmare—rang from Lucy’s -room. Lucy could ring for the maid if she liked but Mrs. Vyse thought -it kind to go herself. She found the girl sitting upright with her hand -on her cheek. - -“I am so sorry, Mrs. Vyse—it is these dreams.” - -“Bad dreams?” - -“Just dreams.” - -The elder lady smiled and kissed her, saying very distinctly: “You -should have heard us talking about you, dear. He admires you more than -ever. Dream of that.” - -Lucy returned the kiss, still covering one cheek with her hand. Mrs. -Vyse recessed to bed. Cecil, whom the cry had not awoke, snored. -Darkness enveloped the flat. - - - - -Chapter XII -Twelfth Chapter - - -It was a Saturday afternoon, gay and brilliant after abundant rains, -and the spirit of youth dwelt in it, though the season was now autumn. -All that was gracious triumphed. As the motorcars passed through Summer -Street they raised only a little dust, and their stench was soon -dispersed by the wind and replaced by the scent of the wet birches or -of the pines. Mr. Beebe, at leisure for life’s amenities, leant over -his Rectory gate. Freddy leant by him, smoking a pendant pipe. - -“Suppose we go and hinder those new people opposite for a little.” - -“M’m.” - -“They might amuse you.” - -Freddy, whom his fellow-creatures never amused, suggested that the new -people might be feeling a bit busy, and so on, since they had only just -moved in. - -“I suggested we should hinder them,” said Mr. Beebe. “They are worth -it.” Unlatching the gate, he sauntered over the triangular green to -Cissie Villa. “Hullo!” he cried, shouting in at the open door, through -which much squalor was visible. - -A grave voice replied, “Hullo!” - -“I’ve brought someone to see you.” - -“I’ll be down in a minute.” - -The passage was blocked by a wardrobe, which the removal men had failed -to carry up the stairs. Mr. Beebe edged round it with difficulty. The -sitting-room itself was blocked with books. - -“Are these people great readers?” Freddy whispered. “Are they that -sort?” - -“I fancy they know how to read—a rare accomplishment. What have they -got? Byron. Exactly. A Shropshire Lad. Never heard of it. The Way of -All Flesh. Never heard of it. Gibbon. Hullo! dear George reads German. -Um—um—Schopenhauer, Nietzsche, and so we go on. Well, I suppose your -generation knows its own business, Honeychurch.” - -“Mr. Beebe, look at that,” said Freddy in awestruck tones. - -On the cornice of the wardrobe, the hand of an amateur had painted this -inscription: “Mistrust all enterprises that require new clothes.” - -“I know. Isn’t it jolly? I like that. I’m certain that’s the old man’s -doing.” - -“How very odd of him!” - -“Surely you agree?” - -But Freddy was his mother’s son and felt that one ought not to go on -spoiling the furniture. - -“Pictures!” the clergyman continued, scrambling about the room. -“Giotto—they got that at Florence, I’ll be bound.” - -“The same as Lucy’s got.” - -“Oh, by-the-by, did Miss Honeychurch enjoy London?” - -“She came back yesterday.” - -“I suppose she had a good time?” - -“Yes, very,” said Freddy, taking up a book. “She and Cecil are thicker -than ever.” - -“That’s good hearing.” - -“I wish I wasn’t such a fool, Mr. Beebe.” - -Mr. Beebe ignored the remark. - -“Lucy used to be nearly as stupid as I am, but it’ll be very different -now, mother thinks. She will read all kinds of books.” - -“So will you.” - -“Only medical books. Not books that you can talk about afterwards. -Cecil is teaching Lucy Italian, and he says her playing is wonderful. -There are all kinds of things in it that we have never noticed. Cecil -says—” - -“What on earth are those people doing upstairs? Emerson—we think we’ll -come another time.” - -George ran down-stairs and pushed them into the room without speaking. - -“Let me introduce Mr. Honeychurch, a neighbour.” - -Then Freddy hurled one of the thunderbolts of youth. Perhaps he was -shy, perhaps he was friendly, or perhaps he thought that George’s face -wanted washing. At all events he greeted him with, “How d’ye do? Come -and have a bathe.” - -“Oh, all right,” said George, impassive. - -Mr. Beebe was highly entertained. - -“‘How d’ye do? how d’ye do? Come and have a bathe,’” he chuckled. -“That’s the best conversational opening I’ve ever heard. But I’m afraid -it will only act between men. Can you picture a lady who has been -introduced to another lady by a third lady opening civilities with ‘How -do you do? Come and have a bathe’? And yet you will tell me that the -sexes are equal.” - -“I tell you that they shall be,” said Mr. Emerson, who had been slowly -descending the stairs. “Good afternoon, Mr. Beebe. I tell you they -shall be comrades, and George thinks the same.” - -“We are to raise ladies to our level?” the clergyman inquired. - -“The Garden of Eden,” pursued Mr. Emerson, still descending, “which you -place in the past, is really yet to come. We shall enter it when we no -longer despise our bodies.” - -Mr. Beebe disclaimed placing the Garden of Eden anywhere. - -“In this—not in other things—we men are ahead. We despise the body less -than women do. But not until we are comrades shall we enter the -garden.” - -“I say, what about this bathe?” murmured Freddy, appalled at the mass -of philosophy that was approaching him. - -“I believed in a return to Nature once. But how can we return to Nature -when we have never been with her? To-day, I believe that we must -discover Nature. After many conquests we shall attain simplicity. It is -our heritage.” - -“Let me introduce Mr. Honeychurch, whose sister you will remember at -Florence.” - -“How do you do? Very glad to see you, and that you are taking George -for a bathe. Very glad to hear that your sister is going to marry. -Marriage is a duty. I am sure that she will be happy, for we know Mr. -Vyse, too. He has been most kind. He met us by chance in the National -Gallery, and arranged everything about this delightful house. Though I -hope I have not vexed Sir Harry Otway. I have met so few Liberal -landowners, and I was anxious to compare his attitude towards the game -laws with the Conservative attitude. Ah, this wind! You do well to -bathe. Yours is a glorious country, Honeychurch!” - -“Not a bit!” mumbled Freddy. “I must—that is to say, I have to—have the -pleasure of calling on you later on, my mother says, I hope.” - -“_Call_, my lad? Who taught us that drawing-room twaddle? Call on your -grandmother! Listen to the wind among the pines! Yours is a glorious -country.” - -Mr. Beebe came to the rescue. - -“Mr. Emerson, he will call, I shall call; you or your son will return -our calls before ten days have elapsed. I trust that you have realized -about the ten days’ interval. It does not count that I helped you with -the stair-eyes yesterday. It does not count that they are going to -bathe this afternoon.” - -“Yes, go and bathe, George. Why do you dawdle talking? Bring them back -to tea. Bring back some milk, cakes, honey. The change will do you -good. George has been working very hard at his office. I can’t believe -he’s well.” - -George bowed his head, dusty and sombre, exhaling the peculiar smell of -one who has handled furniture. - -“Do you really want this bathe?” Freddy asked him. “It is only a pond, -don’t you know. I dare say you are used to something better.” - -“Yes—I have said ‘Yes’ already.” - -Mr. Beebe felt bound to assist his young friend, and led the way out of -the house and into the pine-woods. How glorious it was! For a little -time the voice of old Mr. Emerson pursued them dispensing good wishes -and philosophy. It ceased, and they only heard the fair wind blowing -the bracken and the trees. Mr. Beebe, who could be silent, but who -could not bear silence, was compelled to chatter, since the expedition -looked like a failure, and neither of his companions would utter a -word. He spoke of Florence. George attended gravely, assenting or -dissenting with slight but determined gestures that were as -inexplicable as the motions of the tree-tops above their heads. - -“And what a coincidence that you should meet Mr. Vyse! Did you realize -that you would find all the Pension Bertolini down here?” - -“I did not. Miss Lavish told me.” - -“When I was a young man, I always meant to write a ‘History of -Coincidence.’” - -No enthusiasm. - -“Though, as a matter of fact, coincidences are much rarer than we -suppose. For example, it isn’t purely coincidentally that you are here -now, when one comes to reflect.” - -To his relief, George began to talk. - -“It is. I have reflected. It is Fate. Everything is Fate. We are flung -together by Fate, drawn apart by Fate—flung together, drawn apart. The -twelve winds blow us—we settle nothing—” - -“You have not reflected at all,” rapped the clergyman. “Let me give you -a useful tip, Emerson: attribute nothing to Fate. Don’t say, ‘I didn’t -do this,’ for you did it, ten to one. Now I’ll cross-question you. -Where did you first meet Miss Honeychurch and myself?” - -“Italy.” - -“And where did you meet Mr. Vyse, who is going to marry Miss -Honeychurch?” - -“National Gallery.” - -“Looking at Italian art. There you are, and yet you talk of coincidence -and Fate. You naturally seek out things Italian, and so do we and our -friends. This narrows the field immeasurably we meet again in it.” - -“It is Fate that I am here,” persisted George. “But you can call it -Italy if it makes you less unhappy.” - -Mr. Beebe slid away from such heavy treatment of the subject. But he -was infinitely tolerant of the young, and had no desire to snub George. - -“And so for this and for other reasons my ‘History of Coincidence’ is -still to write.” - -Silence. - -Wishing to round off the episode, he added; “We are all so glad that -you have come.” - -Silence. - -“Here we are!” called Freddy. - -“Oh, good!” exclaimed Mr. Beebe, mopping his brow. - -“In there’s the pond. I wish it was bigger,” he added apologetically. - -They climbed down a slippery bank of pine-needles. There lay the pond, -set in its little alp of green—only a pond, but large enough to contain -the human body, and pure enough to reflect the sky. On account of the -rains, the waters had flooded the surrounding grass, which showed like -a beautiful emerald path, tempting these feet towards the central pool. - -“It’s distinctly successful, as ponds go,” said Mr. Beebe. “No -apologies are necessary for the pond.” - -George sat down where the ground was dry, and drearily unlaced his -boots. - -“Aren’t those masses of willow-herb splendid? I love willow-herb in -seed. What’s the name of this aromatic plant?” - -No one knew, or seemed to care. - -“These abrupt changes of vegetation—this little spongeous tract of -water plants, and on either side of it all the growths are tough or -brittle—heather, bracken, hurts, pines. Very charming, very charming.” - -“Mr. Beebe, aren’t you bathing?” called Freddy, as he stripped himself. - -Mr. Beebe thought he was not. - -“Water’s wonderful!” cried Freddy, prancing in. - -“Water’s water,” murmured George. Wetting his hair first—a sure sign of -apathy—he followed Freddy into the divine, as indifferent as if he were -a statue and the pond a pail of soapsuds. It was necessary to use his -muscles. It was necessary to keep clean. Mr. Beebe watched them, and -watched the seeds of the willow-herb dance chorically above their -heads. - -“Apooshoo, apooshoo, apooshoo,” went Freddy, swimming for two strokes -in either direction, and then becoming involved in reeds or mud. - -“Is it worth it?” asked the other, Michelangelesque on the flooded -margin. - -The bank broke away, and he fell into the pool before he had weighed -the question properly. - -“Hee-poof—I’ve swallowed a pollywog, Mr. Beebe, water’s wonderful, -water’s simply ripping.” - -“Water’s not so bad,” said George, reappearing from his plunge, and -sputtering at the sun. - -“Water’s wonderful. Mr. Beebe, do.” - -“Apooshoo, kouf.” - -Mr. Beebe, who was hot, and who always acquiesced where possible, -looked around him. He could detect no parishioners except the -pine-trees, rising up steeply on all sides, and gesturing to each other -against the blue. How glorious it was! The world of motor-cars and -rural Deans receded inimitably. Water, sky, evergreens, a wind—these -things not even the seasons can touch, and surely they lie beyond the -intrusion of man? - -“I may as well wash too”; and soon his garments made a third little -pile on the sward, and he too asserted the wonder of the water. - -It was ordinary water, nor was there very much of it, and, as Freddy -said, it reminded one of swimming in a salad. The three gentlemen -rotated in the pool breast high, after the fashion of the nymphs in -Götterdämmerung. But either because the rains had given a freshness or -because the sun was shedding a most glorious heat, or because two of -the gentlemen were young in years and the third young in spirit—for -some reason or other a change came over them, and they forgot Italy and -Botany and Fate. They began to play. Mr. Beebe and Freddy splashed each -other. A little deferentially, they splashed George. He was quiet: they -feared they had offended him. Then all the forces of youth burst out. -He smiled, flung himself at them, splashed them, ducked them, kicked -them, muddied them, and drove them out of the pool. - -“Race you round it, then,” cried Freddy, and they raced in the -sunshine, and George took a short cut and dirtied his shins, and had to -bathe a second time. Then Mr. Beebe consented to run—a memorable sight. - -They ran to get dry, they bathed to get cool, they played at being -Indians in the willow-herbs and in the bracken, they bathed to get -clean. And all the time three little bundles lay discreetly on the -sward, proclaiming: - -“No. We are what matters. Without us shall no enterprise begin. To us -shall all flesh turn in the end.” - -“A try! A try!” yelled Freddy, snatching up George’s bundle and placing -it beside an imaginary goal-post. - -“Socker rules,” George retorted, scattering Freddy’s bundle with a -kick. - -“Goal!” - -“Goal!” - -“Pass!” - -“Take care my watch!” cried Mr. Beebe. - -Clothes flew in all directions. - -“Take care my hat! No, that’s enough, Freddy. Dress now. No, I say!” - -But the two young men were delirious. Away they twinkled into the -trees, Freddy with a clerical waistcoat under his arm, George with a -wide-awake hat on his dripping hair. - -“That’ll do!” shouted Mr. Beebe, remembering that after all he was in -his own parish. Then his voice changed as if every pine-tree was a -Rural Dean. “Hi! Steady on! I see people coming you fellows!” - -Yells, and widening circles over the dappled earth. - -“Hi! hi! _Ladies!_” - -Neither George nor Freddy was truly refined. Still, they did not hear -Mr. Beebe’s last warning or they would have avoided Mrs. Honeychurch, -Cecil, and Lucy, who were walking down to call on old Mrs. Butterworth. -Freddy dropped the waistcoat at their feet, and dashed into some -bracken. George whooped in their faces, turned and scudded away down -the path to the pond, still clad in Mr. Beebe’s hat. - -“Gracious alive!” cried Mrs. Honeychurch. “Whoever were those -unfortunate people? Oh, dears, look away! And poor Mr. Beebe, too! -Whatever has happened?” - -“Come this way immediately,” commanded Cecil, who always felt that he -must lead women, though he knew not whither, and protect them, though -he knew not against what. He led them now towards the bracken where -Freddy sat concealed. - -“Oh, poor Mr. Beebe! Was that his waistcoat we left in the path? Cecil, -Mr. Beebe’s waistcoat—” - -No business of ours, said Cecil, glancing at Lucy, who was all parasol -and evidently “minded.” - -“I fancy Mr. Beebe jumped back into the pond.” - -“This way, please, Mrs. Honeychurch, this way.” - -They followed him up the bank attempting the tense yet nonchalant -expression that is suitable for ladies on such occasions. - -“Well, _I_ can’t help it,” said a voice close ahead, and Freddy reared -a freckled face and a pair of snowy shoulders out of the fronds. “I -can’t be trodden on, can I?” - -“Good gracious me, dear; so it’s you! What miserable management! Why -not have a comfortable bath at home, with hot and cold laid on?” - -“Look here, mother, a fellow must wash, and a fellow’s got to dry, and -if another fellow—” - -“Dear, no doubt you’re right as usual, but you are in no position to -argue. Come, Lucy.” They turned. “Oh, look—don’t look! Oh, poor Mr. -Beebe! How unfortunate again—” - -For Mr. Beebe was just crawling out of the pond, on whose surface -garments of an intimate nature did float; while George, the world-weary -George, shouted to Freddy that he had hooked a fish. - -“And me, I’ve swallowed one,” answered he of the bracken. “I’ve -swallowed a pollywog. It wriggleth in my tummy. I shall die—Emerson you -beast, you’ve got on my bags.” - -“Hush, dears,” said Mrs. Honeychurch, who found it impossible to remain -shocked. “And do be sure you dry yourselves thoroughly first. All these -colds come of not drying thoroughly.” - -“Mother, do come away,” said Lucy. “Oh for goodness’ sake, do come.” - -“Hullo!” cried George, so that again the ladies stopped. - -He regarded himself as dressed. Barefoot, bare-chested, radiant and -personable against the shadowy woods, he called: - -“Hullo, Miss Honeychurch! Hullo!” - -“Bow, Lucy; better bow. Whoever is it? I shall bow.” - -Miss Honeychurch bowed. - -That evening and all that night the water ran away. On the morrow the -pool had shrunk to its old size and lost its glory. It had been a call -to the blood and to the relaxed will, a passing benediction whose -influence did not pass, a holiness, a spell, a momentary chalice for -youth. - - - - -Chapter XIII -How Miss Bartlett’s Boiler Was So Tiresome - - -How often had Lucy rehearsed this bow, this interview! But she had -always rehearsed them indoors, and with certain accessories, which -surely we have a right to assume. Who could foretell that she and -George would meet in the rout of a civilization, amidst an army of -coats and collars and boots that lay wounded over the sunlit earth? She -had imagined a young Mr. Emerson, who might be shy or morbid or -indifferent or furtively impudent. She was prepared for all of these. -But she had never imagined one who would be happy and greet her with -the shout of the morning star. - -Indoors herself, partaking of tea with old Mrs. Butterworth, she -reflected that it is impossible to foretell the future with any degree -of accuracy, that it is impossible to rehearse life. A fault in the -scenery, a face in the audience, an irruption of the audience on to the -stage, and all our carefully planned gestures mean nothing, or mean too -much. “I will bow,” she had thought. “I will not shake hands with him. -That will be just the proper thing.” She had bowed—but to whom? To -gods, to heroes, to the nonsense of school-girls! She had bowed across -the rubbish that cumbers the world. - -So ran her thoughts, while her faculties were busy with Cecil. It was -another of those dreadful engagement calls. Mrs. Butterworth had wanted -to see him, and he did not want to be seen. He did not want to hear -about hydrangeas, why they change their colour at the seaside. He did -not want to join the C. O. S. When cross he was always elaborate, and -made long, clever answers where “Yes” or “No” would have done. Lucy -soothed him and tinkered at the conversation in a way that promised -well for their married peace. No one is perfect, and surely it is wiser -to discover the imperfections before wedlock. Miss Bartlett, indeed, -though not in word, had taught the girl that this our life contains -nothing satisfactory. Lucy, though she disliked the teacher, regarded -the teaching as profound, and applied it to her lover. - -“Lucy,” said her mother, when they got home, “is anything the matter -with Cecil?” - -The question was ominous; up till now Mrs. Honeychurch had behaved with -charity and restraint. - -“No, I don’t think so, mother; Cecil’s all right.” - -“Perhaps he’s tired.” - -Lucy compromised: perhaps Cecil was a little tired. - -“Because otherwise”—she pulled out her bonnet-pins with gathering -displeasure—“because otherwise I cannot account for him.” - -“I do think Mrs. Butterworth is rather tiresome, if you mean that.” - -“Cecil has told you to think so. You were devoted to her as a little -girl, and nothing will describe her goodness to you through the typhoid -fever. No—it is just the same thing everywhere.” - -“Let me just put your bonnet away, may I?” - -“Surely he could answer her civilly for one half-hour?” - -“Cecil has a very high standard for people,” faltered Lucy, seeing -trouble ahead. “It’s part of his ideals—it is really that that makes -him sometimes seem—” - -“Oh, rubbish! If high ideals make a young man rude, the sooner he gets -rid of them the better,” said Mrs. Honeychurch, handing her the bonnet. - -“Now, mother! I’ve seen you cross with Mrs. Butterworth yourself!” - -“Not in that way. At times I could wring her neck. But not in that way. -No. It is the same with Cecil all over.” - -“By-the-by—I never told you. I had a letter from Charlotte while I was -away in London.” - -This attempt to divert the conversation was too puerile, and Mrs. -Honeychurch resented it. - -“Since Cecil came back from London, nothing appears to please him. -Whenever I speak he winces;—I see him, Lucy; it is useless to -contradict me. No doubt I am neither artistic nor literary nor -intellectual nor musical, but I cannot help the drawing-room furniture; -your father bought it and we must put up with it, will Cecil kindly -remember.” - -“I—I see what you mean, and certainly Cecil oughtn’t to. But he does -not mean to be uncivil—he once explained—it is the _things_ that upset -him—he is easily upset by ugly things—he is not uncivil to _people_.” - -“Is it a thing or a person when Freddy sings?” - -“You can’t expect a really musical person to enjoy comic songs as we -do.” - -“Then why didn’t he leave the room? Why sit wriggling and sneering and -spoiling everyone’s pleasure?” - -“We mustn’t be unjust to people,” faltered Lucy. Something had -enfeebled her, and the case for Cecil, which she had mastered so -perfectly in London, would not come forth in an effective form. The two -civilizations had clashed—Cecil hinted that they might—and she was -dazzled and bewildered, as though the radiance that lies behind all -civilization had blinded her eyes. Good taste and bad taste were only -catchwords, garments of diverse cut; and music itself dissolved to a -whisper through pine-trees, where the song is not distinguishable from -the comic song. - -She remained in much embarrassment, while Mrs. Honeychurch changed her -frock for dinner; and every now and then she said a word, and made -things no better. There was no concealing the fact, Cecil had meant to -be supercilious, and he had succeeded. And Lucy—she knew not why—wished -that the trouble could have come at any other time. - -“Go and dress, dear; you’ll be late.” - -“All right, mother—” - -“Don’t say ‘All right’ and stop. Go.” - -She obeyed, but loitered disconsolately at the landing window. It faced -north, so there was little view, and no view of the sky. Now, as in the -winter, the pine-trees hung close to her eyes. One connected the -landing window with depression. No definite problem menaced her, but -she sighed to herself, “Oh, dear, what shall I do, what shall I do?” It -seemed to her that everyone else was behaving very badly. And she ought -not to have mentioned Miss Bartlett’s letter. She must be more careful; -her mother was rather inquisitive, and might have asked what it was -about. Oh, dear, what should she do?—and then Freddy came bounding -upstairs, and joined the ranks of the ill-behaved. - -“I say, those are topping people.” - -“My dear baby, how tiresome you’ve been! You have no business to take -them bathing in the Sacred Lake; it’s much too public. It was all right -for you but most awkward for everyone else. Do be more careful. You -forget the place is growing half suburban.” - -“I say, is anything on to-morrow week?” - -“Not that I know of.” - -“Then I want to ask the Emersons up to Sunday tennis.” - -“Oh, I wouldn’t do that, Freddy, I wouldn’t do that with all this -muddle.” - -“What’s wrong with the court? They won’t mind a bump or two, and I’ve -ordered new balls.” - -“I meant _it’s_ better not. I really mean it.” - -He seized her by the elbows and humorously danced her up and down the -passage. She pretended not to mind, but she could have screamed with -temper. Cecil glanced at them as he proceeded to his toilet and they -impeded Mary with her brood of hot-water cans. Then Mrs. Honeychurch -opened her door and said: “Lucy, what a noise you’re making! I have -something to say to you. Did you say you had had a letter from -Charlotte?” and Freddy ran away. - -“Yes. I really can’t stop. I must dress too.” - -“How’s Charlotte?” - -“All right.” - -“Lucy!” - -The unfortunate girl returned. - -“You’ve a bad habit of hurrying away in the middle of one’s sentences. -Did Charlotte mention her boiler?” - -“Her _what?_” - -“Don’t you remember that her boiler was to be had out in October, and -her bath cistern cleaned out, and all kinds of terrible to-doings?” - -“I can’t remember all Charlotte’s worries,” said Lucy bitterly. “I -shall have enough of my own, now that you are not pleased with Cecil.” - -Mrs. Honeychurch might have flamed out. She did not. She said: “Come -here, old lady—thank you for putting away my bonnet—kiss me.” And, -though nothing is perfect, Lucy felt for the moment that her mother and -Windy Corner and the Weald in the declining sun were perfect. - -So the grittiness went out of life. It generally did at Windy Corner. -At the last minute, when the social machine was clogged hopelessly, one -member or other of the family poured in a drop of oil. Cecil despised -their methods—perhaps rightly. At all events, they were not his own. - -Dinner was at half-past seven. Freddy gabbled the grace, and they drew -up their heavy chairs and fell to. Fortunately, the men were hungry. -Nothing untoward occurred until the pudding. Then Freddy said: - -“Lucy, what’s Emerson like?” - -“I saw him in Florence,” said Lucy, hoping that this would pass for a -reply. - -“Is he the clever sort, or is he a decent chap?” - -“Ask Cecil; it is Cecil who brought him here.” - -“He is the clever sort, like myself,” said Cecil. - -Freddy looked at him doubtfully. - -“How well did you know them at the Bertolini?” asked Mrs. Honeychurch. - -“Oh, very slightly. I mean, Charlotte knew them even less than I did.” - -“Oh, that reminds me—you never told me what Charlotte said in her -letter.” - -“One thing and another,” said Lucy, wondering whether she would get -through the meal without a lie. “Among other things, that an awful -friend of hers had been bicycling through Summer Street, wondered if -she’d come up and see us, and mercifully didn’t.” - -“Lucy, I do call the way you talk unkind.” - -“She was a novelist,” said Lucy craftily. The remark was a happy one, -for nothing roused Mrs. Honeychurch so much as literature in the hands -of females. She would abandon every topic to inveigh against those -women who (instead of minding their houses and their children) seek -notoriety by print. Her attitude was: “If books must be written, let -them be written by men”; and she developed it at great length, while -Cecil yawned and Freddy played at “This year, next year, now, never,” -with his plum-stones, and Lucy artfully fed the flames of her mother’s -wrath. But soon the conflagration died down, and the ghosts began to -gather in the darkness. There were too many ghosts about. The original -ghost—that touch of lips on her cheek—had surely been laid long ago; it -could be nothing to her that a man had kissed her on a mountain once. -But it had begotten a spectral family—Mr. Harris, Miss Bartlett’s -letter, Mr. Beebe’s memories of violets—and one or other of these was -bound to haunt her before Cecil’s very eyes. It was Miss Bartlett who -returned now, and with appalling vividness. - -“I have been thinking, Lucy, of that letter of Charlotte’s. How is -she?” - -“I tore the thing up.” - -“Didn’t she say how she was? How does she sound? Cheerful?” - -“Oh, yes I suppose so—no—not very cheerful, I suppose.” - -“Then, depend upon it, it _is_ the boiler. I know myself how water -preys upon one’s mind. I would rather anything else—even a misfortune -with the meat.” - -Cecil laid his hand over his eyes. - -“So would I,” asserted Freddy, backing his mother up—backing up the -spirit of her remark rather than the substance. - -“And I have been thinking,” she added rather nervously, “surely we -could squeeze Charlotte in here next week, and give her a nice holiday -while the plumbers at Tunbridge Wells finish. I have not seen poor -Charlotte for so long.” - -It was more than her nerves could stand. And she could not protest -violently after her mother’s goodness to her upstairs. - -“Mother, no!” she pleaded. “It’s impossible. We can’t have Charlotte on -the top of the other things; we’re squeezed to death as it is. Freddy’s -got a friend coming Tuesday, there’s Cecil, and you’ve promised to take -in Minnie Beebe because of the diphtheria scare. It simply can’t be -done.” - -“Nonsense! It can.” - -“If Minnie sleeps in the bath. Not otherwise.” - -“Minnie can sleep with you.” - -“I won’t have her.” - -“Then, if you’re so selfish, Mr. Floyd must share a room with Freddy.” - -“Miss Bartlett, Miss Bartlett, Miss Bartlett,” moaned Cecil, again -laying his hand over his eyes. - -“It’s impossible,” repeated Lucy. “I don’t want to make difficulties, -but it really isn’t fair on the maids to fill up the house so.” - -Alas! - -“The truth is, dear, you don’t like Charlotte.” - -“No, I don’t. And no more does Cecil. She gets on our nerves. You -haven’t seen her lately, and don’t realize how tiresome she can be, -though so good. So please, mother, don’t worry us this last summer; but -spoil us by not asking her to come.” - -“Hear, hear!” said Cecil. - -Mrs. Honeychurch, with more gravity than usual, and with more feeling -than she usually permitted herself, replied: “This isn’t very kind of -you two. You have each other and all these woods to walk in, so full of -beautiful things; and poor Charlotte has only the water turned off and -plumbers. You are young, dears, and however clever young people are, -and however many books they read, they will never guess what it feels -like to grow old.” - -Cecil crumbled his bread. - -“I must say Cousin Charlotte was very kind to me that year I called on -my bike,” put in Freddy. “She thanked me for coming till I felt like -such a fool, and fussed round no end to get an egg boiled for my tea -just right.” - -“I know, dear. She is kind to everyone, and yet Lucy makes this -difficulty when we try to give her some little return.” - -But Lucy hardened her heart. It was no good being kind to Miss -Bartlett. She had tried herself too often and too recently. One might -lay up treasure in heaven by the attempt, but one enriched neither Miss -Bartlett nor any one else upon earth. She was reduced to saying: “I -can’t help it, mother. I don’t like Charlotte. I admit it’s horrid of -me.” - -“From your own account, you told her as much.” - -“Well, she would leave Florence so stupidly. She flurried—” - -The ghosts were returning; they filled Italy, they were even usurping -the places she had known as a child. The Sacred Lake would never be the -same again, and, on Sunday week, something would even happen to Windy -Corner. How would she fight against ghosts? For a moment the visible -world faded away, and memories and emotions alone seemed real. - -“I suppose Miss Bartlett must come, since she boils eggs so well,” said -Cecil, who was in rather a happier frame of mind, thanks to the -admirable cooking. - -“I didn’t mean the egg was _well_ boiled,” corrected Freddy, “because -in point of fact she forgot to take it off, and as a matter of fact I -don’t care for eggs. I only meant how jolly kind she seemed.” - -Cecil frowned again. Oh, these Honeychurches! Eggs, boilers, -hydrangeas, maids—of such were their lives compact. “May me and Lucy -get down from our chairs?” he asked, with scarcely veiled insolence. -“We don’t want no dessert.” - - - - -Chapter XIV -How Lucy Faced the External Situation Bravely - - -Of course Miss Bartlett accepted. And, equally of course, she felt sure -that she would prove a nuisance, and begged to be given an inferior -spare room—something with no view, anything. Her love to Lucy. And, -equally of course, George Emerson could come to tennis on the Sunday -week. - -Lucy faced the situation bravely, though, like most of us, she only -faced the situation that encompassed her. She never gazed inwards. If -at times strange images rose from the depths, she put them down to -nerves. When Cecil brought the Emersons to Summer Street, it had upset -her nerves. Charlotte would burnish up past foolishness, and this might -upset her nerves. She was nervous at night. When she talked to -George—they met again almost immediately at the Rectory—his voice moved -her deeply, and she wished to remain near him. How dreadful if she -really wished to remain near him! Of course, the wish was due to -nerves, which love to play such perverse tricks upon us. Once she had -suffered from “things that came out of nothing and meant she didn’t -know what.” Now Cecil had explained psychology to her one wet -afternoon, and all the troubles of youth in an unknown world could be -dismissed. - -It is obvious enough for the reader to conclude, “She loves young -Emerson.” A reader in Lucy’s place would not find it obvious. Life is -easy to chronicle, but bewildering to practice, and we welcome “nerves” -or any other shibboleth that will cloak our personal desire. She loved -Cecil; George made her nervous; will the reader explain to her that the -phrases should have been reversed? - -But the external situation—she will face that bravely. - -The meeting at the Rectory had passed off well enough. Standing between -Mr. Beebe and Cecil, she had made a few temperate allusions to Italy, -and George had replied. She was anxious to show that she was not shy, -and was glad that he did not seem shy either. - -“A nice fellow,” said Mr. Beebe afterwards “He will work off his -crudities in time. I rather mistrust young men who slip into life -gracefully.” - -Lucy said, “He seems in better spirits. He laughs more.” - -“Yes,” replied the clergyman. “He is waking up.” - -That was all. But, as the week wore on, more of her defences fell, and -she entertained an image that had physical beauty. In spite of the -clearest directions, Miss Bartlett contrived to bungle her arrival. She -was due at the South-Eastern station at Dorking, whither Mrs. -Honeychurch drove to meet her. She arrived at the London and Brighton -station, and had to hire a cab up. No one was at home except Freddy and -his friend, who had to stop their tennis and to entertain her for a -solid hour. Cecil and Lucy turned up at four o’clock, and these, with -little Minnie Beebe, made a somewhat lugubrious sextette upon the upper -lawn for tea. - -“I shall never forgive myself,” said Miss Bartlett, who kept on rising -from her seat, and had to be begged by the united company to remain. “I -have upset everything. Bursting in on young people! But I insist on -paying for my cab up. Grant that, at any rate.” - -“Our visitors never do such dreadful things,” said Lucy, while her -brother, in whose memory the boiled egg had already grown -unsubstantial, exclaimed in irritable tones: “Just what I’ve been -trying to convince Cousin Charlotte of, Lucy, for the last half hour.” - -“I do not feel myself an ordinary visitor,” said Miss Bartlett, and -looked at her frayed glove. - -“All right, if you’d really rather. Five shillings, and I gave a bob to -the driver.” - -Miss Bartlett looked in her purse. Only sovereigns and pennies. Could -any one give her change? Freddy had half a quid and his friend had four -half-crowns. Miss Bartlett accepted their moneys and then said: “But -who am I to give the sovereign to?” - -“Let’s leave it all till mother comes back,” suggested Lucy. - -“No, dear; your mother may take quite a long drive now that she is not -hampered with me. We all have our little foibles, and mine is the -prompt settling of accounts.” - -Here Freddy’s friend, Mr. Floyd, made the one remark of his that need -be quoted: he offered to toss Freddy for Miss Bartlett’s quid. A -solution seemed in sight, and even Cecil, who had been ostentatiously -drinking his tea at the view, felt the eternal attraction of Chance, -and turned round. - -But this did not do, either. - -“Please—please—I know I am a sad spoil-sport, but it would make me -wretched. I should practically be robbing the one who lost.” - -“Freddy owes me fifteen shillings,” interposed Cecil. “So it will work -out right if you give the pound to me.” - -“Fifteen shillings,” said Miss Bartlett dubiously. “How is that, Mr. -Vyse?” - -“Because, don’t you see, Freddy paid your cab. Give me the pound, and -we shall avoid this deplorable gambling.” - -Miss Bartlett, who was poor at figures, became bewildered and rendered -up the sovereign, amidst the suppressed gurgles of the other youths. -For a moment Cecil was happy. He was playing at nonsense among his -peers. Then he glanced at Lucy, in whose face petty anxieties had -marred the smiles. In January he would rescue his Leonardo from this -stupefying twaddle. - -“But I don’t see that!” exclaimed Minnie Beebe who had narrowly watched -the iniquitous transaction. “I don’t see why Mr. Vyse is to have the -quid.” - -“Because of the fifteen shillings and the five,” they said solemnly. -“Fifteen shillings and five shillings make one pound, you see.” - -“But I don’t see—” - -They tried to stifle her with cake. - -“No, thank you. I’m done. I don’t see why—Freddy, don’t poke me. Miss -Honeychurch, your brother’s hurting me. Ow! What about Mr. Floyd’s ten -shillings? Ow! No, I don’t see and I never shall see why Miss -What’s-her-name shouldn’t pay that bob for the driver.” - -“I had forgotten the driver,” said Miss Bartlett, reddening. “Thank -you, dear, for reminding me. A shilling was it? Can any one give me -change for half a crown?” - -“I’ll get it,” said the young hostess, rising with decision. - -“Cecil, give me that sovereign. No, give me up that sovereign. I’ll get -Euphemia to change it, and we’ll start the whole thing again from the -beginning.” - -“Lucy—Lucy—what a nuisance I am!” protested Miss Bartlett, and followed -her across the lawn. Lucy tripped ahead, simulating hilarity. When they -were out of earshot Miss Bartlett stopped her wails and said quite -briskly: “Have you told him about him yet?” - -“No, I haven’t,” replied Lucy, and then could have bitten her tongue -for understanding so quickly what her cousin meant. “Let me see—a -sovereign’s worth of silver.” - -She escaped into the kitchen. Miss Bartlett’s sudden transitions were -too uncanny. It sometimes seemed as if she planned every word she spoke -or caused to be spoken; as if all this worry about cabs and change had -been a ruse to surprise the soul. - -“No, I haven’t told Cecil or any one,” she remarked, when she returned. -“I promised you I shouldn’t. Here is your money—all shillings, except -two half-crowns. Would you count it? You can settle your debt nicely -now.” - -Miss Bartlett was in the drawing-room, gazing at the photograph of St. -John ascending, which had been framed. - -“How dreadful!” she murmured, “how more than dreadful, if Mr. Vyse -should come to hear of it from some other source.” - -“Oh, no, Charlotte,” said the girl, entering the battle. “George -Emerson is all right, and what other source is there?” - -Miss Bartlett considered. “For instance, the driver. I saw him looking -through the bushes at you, remember he had a violet between his teeth.” - -Lucy shuddered a little. “We shall get the silly affair on our nerves -if we aren’t careful. How could a Florentine cab-driver ever get hold -of Cecil?” - -“We must think of every possibility.” - -“Oh, it’s all right.” - -“Or perhaps old Mr. Emerson knows. In fact, he is certain to know.” - -“I don’t care if he does. I was grateful to you for your letter, but -even if the news does get round, I think I can trust Cecil to laugh at -it.” - -“To contradict it?” - -“No, to laugh at it.” But she knew in her heart that she could not -trust him, for he desired her untouched. - -“Very well, dear, you know best. Perhaps gentlemen are different to -what they were when I was young. Ladies are certainly different.” - -“Now, Charlotte!” She struck at her playfully. “You kind, anxious -thing. What _would_ you have me do? First you say ‘Don’t tell’; and -then you say, ‘Tell’. Which is it to be? Quick!” - -Miss Bartlett sighed “I am no match for you in conversation, dearest. I -blush when I think how I interfered at Florence, and you so well able -to look after yourself, and so much cleverer in all ways than I am. You -will never forgive me.” - -“Shall we go out, then. They will smash all the china if we don’t.” - -For the air rang with the shrieks of Minnie, who was being scalped with -a teaspoon. - -“Dear, one moment—we may not have this chance for a chat again. Have -you seen the young one yet?” - -“Yes, I have.” - -“What happened?” - -“We met at the Rectory.” - -“What line is he taking up?” - -“No line. He talked about Italy, like any other person. It is really -all right. What advantage would he get from being a cad, to put it -bluntly? I do wish I could make you see it my way. He really won’t be -any nuisance, Charlotte.” - -“Once a cad, always a cad. That is my poor opinion.” - -Lucy paused. “Cecil said one day—and I thought it so profound—that -there are two kinds of cads—the conscious and the subconscious.” She -paused again, to be sure of doing justice to Cecil’s profundity. -Through the window she saw Cecil himself, turning over the pages of a -novel. It was a new one from Smith’s library. Her mother must have -returned from the station. - -“Once a cad, always a cad,” droned Miss Bartlett. - -“What I mean by subconscious is that Emerson lost his head. I fell into -all those violets, and he was silly and surprised. I don’t think we -ought to blame him very much. It makes such a difference when you see a -person with beautiful things behind him unexpectedly. It really does; -it makes an enormous difference, and he lost his head: he doesn’t -admire me, or any of that nonsense, one straw. Freddy rather likes him, -and has asked him up here on Sunday, so you can judge for yourself. He -has improved; he doesn’t always look as if he’s going to burst into -tears. He is a clerk in the General Manager’s office at one of the big -railways—not a porter! and runs down to his father for week-ends. Papa -was to do with journalism, but is rheumatic and has retired. There! Now -for the garden.” She took hold of her guest by the arm. “Suppose we -don’t talk about this silly Italian business any more. We want you to -have a nice restful visit at Windy Corner, with no worriting.” - -Lucy thought this rather a good speech. The reader may have detected an -unfortunate slip in it. Whether Miss Bartlett detected the slip one -cannot say, for it is impossible to penetrate into the minds of elderly -people. She might have spoken further, but they were interrupted by the -entrance of her hostess. Explanations took place, and in the midst of -them Lucy escaped, the images throbbing a little more vividly in her -brain. - - - - -Chapter XV -The Disaster Within - - -The Sunday after Miss Bartlett’s arrival was a glorious day, like most -of the days of that year. In the Weald, autumn approached, breaking up -the green monotony of summer, touching the parks with the grey bloom of -mist, the beech-trees with russet, the oak-trees with gold. Up on the -heights, battalions of black pines witnessed the change, themselves -unchangeable. Either country was spanned by a cloudless sky, and in -either arose the tinkle of church bells. - -The garden of Windy Corners was deserted except for a red book, which -lay sunning itself upon the gravel path. From the house came incoherent -sounds, as of females preparing for worship. “The men say they won’t -go”—“Well, I don’t blame them”—Minnie says, “need she go?”—“Tell her, -no nonsense”—“Anne! Mary! Hook me behind!”—“Dearest Lucia, may I -trespass upon you for a pin?” For Miss Bartlett had announced that she -at all events was one for church. - -The sun rose higher on its journey, guided, not by Phaethon, but by -Apollo, competent, unswerving, divine. Its rays fell on the ladies -whenever they advanced towards the bedroom windows; on Mr. Beebe down -at Summer Street as he smiled over a letter from Miss Catharine Alan; -on George Emerson cleaning his father’s boots; and lastly, to complete -the catalogue of memorable things, on the red book mentioned -previously. The ladies move, Mr. Beebe moves, George moves, and -movement may engender shadow. But this book lies motionless, to be -caressed all the morning by the sun and to raise its covers slightly, -as though acknowledging the caress. - -Presently Lucy steps out of the drawing-room window. Her new cerise -dress has been a failure, and makes her look tawdry and wan. At her -throat is a garnet brooch, on her finger a ring set with rubies—an -engagement ring. Her eyes are bent to the Weald. She frowns a -little—not in anger, but as a brave child frowns when he is trying not -to cry. In all that expanse no human eye is looking at her, and she may -frown unrebuked and measure the spaces that yet survive between Apollo -and the western hills. - -“Lucy! Lucy! What’s that book? Who’s been taking a book out of the -shelf and leaving it about to spoil?” - -“It’s only the library book that Cecil’s been reading.” - -“But pick it up, and don’t stand idling there like a flamingo.” - -Lucy picked up the book and glanced at the title listlessly, Under a -Loggia. She no longer read novels herself, devoting all her spare time -to solid literature in the hope of catching Cecil up. It was dreadful -how little she knew, and even when she thought she knew a thing, like -the Italian painters, she found she had forgotten it. Only this morning -she had confused Francesco Francia with Piero della Francesca, and -Cecil had said, “What! you aren’t forgetting your Italy already?” And -this too had lent anxiety to her eyes when she saluted the dear view -and the dear garden in the foreground, and above them, scarcely -conceivable elsewhere, the dear sun. - -“Lucy—have you a sixpence for Minnie and a shilling for yourself?” - -She hastened in to her mother, who was rapidly working herself into a -Sunday fluster. - -“It’s a special collection—I forget what for. I do beg, no vulgar -clinking in the plate with halfpennies; see that Minnie has a nice -bright sixpence. Where is the child? Minnie! That book’s all warped. -(Gracious, how plain you look!) Put it under the Atlas to press. -Minnie!” - -“Oh, Mrs. Honeychurch—” from the upper regions. - -“Minnie, don’t be late. Here comes the horse”—it was always the horse, -never the carriage. “Where’s Charlotte? Run up and hurry her. Why is -she so long? She had nothing to do. She never brings anything but -blouses. Poor Charlotte—How I do detest blouses! Minnie!” - -Paganism is infectious—more infectious than diphtheria or piety—and the -Rector’s niece was taken to church protesting. As usual, she didn’t see -why. Why shouldn’t she sit in the sun with the young men? The young -men, who had now appeared, mocked her with ungenerous words. Mrs. -Honeychurch defended orthodoxy, and in the midst of the confusion Miss -Bartlett, dressed in the very height of the fashion, came strolling -down the stairs. - -“Dear Marian, I am very sorry, but I have no small change—nothing but -sovereigns and half crowns. Could any one give me—” - -“Yes, easily. Jump in. Gracious me, how smart you look! What a lovely -frock! You put us all to shame.” - -“If I did not wear my best rags and tatters now, when should I wear -them?” said Miss Bartlett reproachfully. She got into the victoria and -placed herself with her back to the horse. The necessary roar ensued, -and then they drove off. - -“Good-bye! Be good!” called out Cecil. - -Lucy bit her lip, for the tone was sneering. On the subject of “church -and so on” they had had rather an unsatisfactory conversation. He had -said that people ought to overhaul themselves, and she did not want to -overhaul herself; she did not know it was done. Honest orthodoxy Cecil -respected, but he always assumed that honesty is the result of a -spiritual crisis; he could not imagine it as a natural birthright, that -might grow heavenward like flowers. All that he said on this subject -pained her, though he exuded tolerance from every pore; somehow the -Emersons were different. - -She saw the Emersons after church. There was a line of carriages down -the road, and the Honeychurch vehicle happened to be opposite Cissie -Villa. To save time, they walked over the green to it, and found father -and son smoking in the garden. - -“Introduce me,” said her mother. “Unless the young man considers that -he knows me already.” - -He probably did; but Lucy ignored the Sacred Lake and introduced them -formally. Old Mr. Emerson claimed her with much warmth, and said how -glad he was that she was going to be married. She said yes, she was -glad too; and then, as Miss Bartlett and Minnie were lingering behind -with Mr. Beebe, she turned the conversation to a less disturbing topic, -and asked him how he liked his new house. - -“Very much,” he replied, but there was a note of offence in his voice; -she had never known him offended before. He added: “We find, though, -that the Miss Alans were coming, and that we have turned them out. -Women mind such a thing. I am very much upset about it.” - -“I believe that there was some misunderstanding,” said Mrs. Honeychurch -uneasily. - -“Our landlord was told that we should be a different type of person,” -said George, who seemed disposed to carry the matter further. “He -thought we should be artistic. He is disappointed.” - -“And I wonder whether we ought to write to the Miss Alans and offer to -give it up. What do you think?” He appealed to Lucy. - -“Oh, stop now you have come,” said Lucy lightly. She must avoid -censuring Cecil. For it was on Cecil that the little episode turned, -though his name was never mentioned. - -“So George says. He says that the Miss Alans must go to the wall. Yet -it does seem so unkind.” - -“There is only a certain amount of kindness in the world,” said George, -watching the sunlight flash on the panels of the passing carriages. - -“Yes!” exclaimed Mrs. Honeychurch. “That’s exactly what I say. Why all -this twiddling and twaddling over two Miss Alans?” - -“There is a certain amount of kindness, just as there is a certain -amount of light,” he continued in measured tones. “We cast a shadow on -something wherever we stand, and it is no good moving from place to -place to save things; because the shadow always follows. Choose a place -where you won’t do harm—yes, choose a place where you won’t do very -much harm, and stand in it for all you are worth, facing the sunshine.” - -“Oh, Mr. Emerson, I see you’re clever!” - -“Eh—?” - -“I see you’re going to be clever. I hope you didn’t go behaving like -that to poor Freddy.” - -George’s eyes laughed, and Lucy suspected that he and her mother would -get on rather well. - -“No, I didn’t,” he said. “He behaved that way to me. It is his -philosophy. Only he starts life with it; and I have tried the Note of -Interrogation first.” - -“What _do_ you mean? No, never mind what you mean. Don’t explain. He -looks forward to seeing you this afternoon. Do you play tennis? Do you -mind tennis on Sunday—?” - -“George mind tennis on Sunday! George, after his education, distinguish -between Sunday—” - -“Very well, George doesn’t mind tennis on Sunday. No more do I. That’s -settled. Mr. Emerson, if you could come with your son we should be so -pleased.” - -He thanked her, but the walk sounded rather far; he could only potter -about in these days. - -She turned to George: “And then he wants to give up his house to the -Miss Alans.” - -“I know,” said George, and put his arm round his father’s neck. The -kindness that Mr. Beebe and Lucy had always known to exist in him came -out suddenly, like sunlight touching a vast landscape—a touch of the -morning sun? She remembered that in all his perversities he had never -spoken against affection. - -Miss Bartlett approached. - -“You know our cousin, Miss Bartlett,” said Mrs. Honeychurch pleasantly. -“You met her with my daughter in Florence.” - -“Yes, indeed!” said the old man, and made as if he would come out of -the garden to meet the lady. Miss Bartlett promptly got into the -victoria. Thus entrenched, she emitted a formal bow. It was the pension -Bertolini again, the dining-table with the decanters of water and wine. -It was the old, old battle of the room with the view. - -George did not respond to the bow. Like any boy, he blushed and was -ashamed; he knew that the chaperon remembered. He said: “I—I’ll come up -to tennis if I can manage it,” and went into the house. Perhaps -anything that he did would have pleased Lucy, but his awkwardness went -straight to her heart; men were not gods after all, but as human and as -clumsy as girls; even men might suffer from unexplained desires, and -need help. To one of her upbringing, and of her destination, the -weakness of men was a truth unfamiliar, but she had surmised it at -Florence, when George threw her photographs into the River Arno. - -“George, don’t go,” cried his father, who thought it a great treat for -people if his son would talk to them. “George has been in such good -spirits today, and I am sure he will end by coming up this afternoon.” - -Lucy caught her cousin’s eye. Something in its mute appeal made her -reckless. “Yes,” she said, raising her voice, “I do hope he will.” Then -she went to the carriage and murmured, “The old man hasn’t been told; I -knew it was all right.” Mrs. Honeychurch followed her, and they drove -away. - -Satisfactory that Mr. Emerson had not been told of the Florence -escapade; yet Lucy’s spirits should not have leapt up as if she had -sighted the ramparts of heaven. Satisfactory; yet surely she greeted it -with disproportionate joy. All the way home the horses’ hoofs sang a -tune to her: “He has not told, he has not told.” Her brain expanded the -melody: “He has not told his father—to whom he tells all things. It was -not an exploit. He did not laugh at me when I had gone.” She raised her -hand to her cheek. “He does not love me. No. How terrible if he did! -But he has not told. He will not tell.” - -She longed to shout the words: “It is all right. It’s a secret between -us two for ever. Cecil will never hear.” She was even glad that Miss -Bartlett had made her promise secrecy, that last dark evening at -Florence, when they had knelt packing in his room. The secret, big or -little, was guarded. - -Only three English people knew of it in the world. Thus she interpreted -her joy. She greeted Cecil with unusual radiance, because she felt so -safe. As he helped her out of the carriage, she said: - -“The Emersons have been so nice. George Emerson has improved -enormously.” - -“How are my protégés?” asked Cecil, who took no real interest in them, -and had long since forgotten his resolution to bring them to Windy -Corner for educational purposes. - -“Protégés!” she exclaimed with some warmth. For the only relationship -which Cecil conceived was feudal: that of protector and protected. He -had no glimpse of the comradeship after which the girl’s soul yearned. - -“You shall see for yourself how your protégés are. George Emerson is -coming up this afternoon. He is a most interesting man to talk to. Only -don’t—” She nearly said, “Don’t protect him.” But the bell was ringing -for lunch, and, as often happened, Cecil had paid no great attention to -her remarks. Charm, not argument, was to be her forte. - -Lunch was a cheerful meal. Generally Lucy was depressed at meals. Some -one had to be soothed—either Cecil or Miss Bartlett or a Being not -visible to the mortal eye—a Being who whispered to her soul: “It will -not last, this cheerfulness. In January you must go to London to -entertain the grandchildren of celebrated men.” But to-day she felt she -had received a guarantee. Her mother would always sit there, her -brother here. The sun, though it had moved a little since the morning, -would never be hidden behind the western hills. After luncheon they -asked her to play. She had seen Gluck’s Armide that year, and played -from memory the music of the enchanted garden—the music to which Renaud -approaches, beneath the light of an eternal dawn, the music that never -gains, never wanes, but ripples for ever like the tideless seas of -fairyland. Such music is not for the piano, and her audience began to -get restive, and Cecil, sharing the discontent, called out: “Now play -us the other garden—the one in Parsifal.” - -She closed the instrument. - -“Not very dutiful,” said her mother’s voice. - -Fearing that she had offended Cecil, she turned quickly round. There -George was. He had crept in without interrupting her. - -“Oh, I had no idea!” she exclaimed, getting very red; and then, without -a word of greeting, she reopened the piano. Cecil should have the -Parsifal, and anything else that he liked. - -“Our performer has changed her mind,” said Miss Bartlett, perhaps -implying, she will play the music to Mr. Emerson. Lucy did not know -what to do nor even what she wanted to do. She played a few bars of the -Flower Maidens’ song very badly and then she stopped. - -“I vote tennis,” said Freddy, disgusted at the scrappy entertainment. - -“Yes, so do I.” Once more she closed the unfortunate piano. “I vote you -have a men’s four.” - -“All right.” - -“Not for me, thank you,” said Cecil. “I will not spoil the set.” He -never realized that it may be an act of kindness in a bad player to -make up a fourth. - -“Oh, come along Cecil. I’m bad, Floyd’s rotten, and so I dare say’s -Emerson.” - -George corrected him: “I am not bad.” - -One looked down one’s nose at this. “Then certainly I won’t play,” said -Cecil, while Miss Bartlett, under the impression that she was snubbing -George, added: “I agree with you, Mr. Vyse. You had much better not -play. Much better not.” - -Minnie, rushing in where Cecil feared to tread, announced that she -would play. “I shall miss every ball anyway, so what does it matter?” -But Sunday intervened and stamped heavily upon the kindly suggestion. - -“Then it will have to be Lucy,” said Mrs. Honeychurch; “you must fall -back on Lucy. There is no other way out of it. Lucy, go and change your -frock.” - -Lucy’s Sabbath was generally of this amphibious nature. She kept it -without hypocrisy in the morning, and broke it without reluctance in -the afternoon. As she changed her frock, she wondered whether Cecil was -sneering at her; really she must overhaul herself and settle everything -up before she married him. - -Mr. Floyd was her partner. She liked music, but how much better tennis -seemed. How much better to run about in comfortable clothes than to sit -at the piano and feel girt under the arms. Once more music appeared to -her the employment of a child. George served, and surprised her by his -anxiety to win. She remembered how he had sighed among the tombs at -Santa Croce because things wouldn’t fit; how after the death of that -obscure Italian he had leant over the parapet by the Arno and said to -her: “I shall want to live, I tell you.” He wanted to live now, to win -at tennis, to stand for all he was worth in the sun—the sun which had -begun to decline and was shining in her eyes; and he did win. - -Ah, how beautiful the Weald looked! The hills stood out above its -radiance, as Fiesole stands above the Tuscan Plain, and the South -Downs, if one chose, were the mountains of Carrara. She might be -forgetting her Italy, but she was noticing more things in her England. -One could play a new game with the view, and try to find in its -innumerable folds some town or village that would do for Florence. Ah, -how beautiful the Weald looked! - -But now Cecil claimed her. He chanced to be in a lucid critical mood, -and would not sympathize with exaltation. He had been rather a nuisance -all through the tennis, for the novel that he was reading was so bad -that he was obliged to read it aloud to others. He would stroll round -the precincts of the court and call out: “I say, listen to this, Lucy. -Three split infinitives.” - -“Dreadful!” said Lucy, and missed her stroke. When they had finished -their set, he still went on reading; there was some murder scene, and -really everyone must listen to it. Freddy and Mr. Floyd were obliged to -hunt for a lost ball in the laurels, but the other two acquiesced. - -“The scene is laid in Florence.” - -“What fun, Cecil! Read away. Come, Mr. Emerson, sit down after all your -energy.” She had “forgiven” George, as she put it, and she made a point -of being pleasant to him. - -He jumped over the net and sat down at her feet asking: “You—and are -you tired?” - -“Of course I’m not!” - -“Do you mind being beaten?” - -She was going to answer, “No,” when it struck her that she did mind, so -she answered, “Yes.” She added merrily, “I don’t see _you’re_ such a -splendid player, though. The light was behind you, and it was in my -eyes.” - -“I never said I was.” - -“Why, you did!” - -“You didn’t attend.” - -“You said—oh, don’t go in for accuracy at this house. We all -exaggerate, and we get very angry with people who don’t.” - -“‘The scene is laid in Florence,’” repeated Cecil, with an upward note. - -Lucy recollected herself. - -“‘Sunset. Leonora was speeding—’” - -Lucy interrupted. “Leonora? Is Leonora the heroine? Who’s the book by?” - -“Joseph Emery Prank. ‘Sunset. Leonora speeding across the square. Pray -the saints she might not arrive too late. Sunset—the sunset of Italy. -Under Orcagna’s Loggia—the Loggia de’ Lanzi, as we sometimes call it -now—’” - -Lucy burst into laughter. “‘Joseph Emery Prank’ indeed! Why it’s Miss -Lavish! It’s Miss Lavish’s novel, and she’s publishing it under -somebody else’s name.” - -“Who may Miss Lavish be?” - -“Oh, a dreadful person—Mr. Emerson, you remember Miss Lavish?” - -Excited by her pleasant afternoon, she clapped her hands. - -George looked up. “Of course I do. I saw her the day I arrived at -Summer Street. It was she who told me that you lived here.” - -“Weren’t you pleased?” She meant “to see Miss Lavish,” but when he bent -down to the grass without replying, it struck her that she could mean -something else. She watched his head, which was almost resting against -her knee, and she thought that the ears were reddening. “No wonder the -novel’s bad,” she added. “I never liked Miss Lavish. But I suppose one -ought to read it as one’s met her.” - -“All modern books are bad,” said Cecil, who was annoyed at her -inattention, and vented his annoyance on literature. “Every one writes -for money in these days.” - -“Oh, Cecil—!” - -“It is so. I will inflict Joseph Emery Prank on you no longer.” - -Cecil, this afternoon seemed such a twittering sparrow. The ups and -downs in his voice were noticeable, but they did not affect her. She -had dwelt amongst melody and movement, and her nerves refused to answer -to the clang of his. Leaving him to be annoyed, she gazed at the black -head again. She did not want to stroke it, but she saw herself wanting -to stroke it; the sensation was curious. - -“How do you like this view of ours, Mr. Emerson?” - -“I never notice much difference in views.” - -“What do you mean?” - -“Because they’re all alike. Because all that matters in them is -distance and air.” - -“H’m!” said Cecil, uncertain whether the remark was striking or not. - -“My father”—he looked up at her (and he was a little flushed)—“says -that there is only one perfect view—the view of the sky straight over -our heads, and that all these views on earth are but bungled copies of -it.” - -“I expect your father has been reading Dante,” said Cecil, fingering -the novel, which alone permitted him to lead the conversation. - -“He told us another day that views are really crowds—crowds of trees -and houses and hills—and are bound to resemble each other, like human -crowds—and that the power they have over us is sometimes supernatural, -for the same reason.” - -Lucy’s lips parted. - -“For a crowd is more than the people who make it up. Something gets -added to it—no one knows how—just as something has got added to those -hills.” - -He pointed with his racquet to the South Downs. - -“What a splendid idea!” she murmured. “I shall enjoy hearing your -father talk again. I’m so sorry he’s not so well.” - -“No, he isn’t well.” - -“There’s an absurd account of a view in this book,” said Cecil. “Also -that men fall into two classes—those who forget views and those who -remember them, even in small rooms.” - -“Mr. Emerson, have you any brothers or sisters?” - -“None. Why?” - -“You spoke of ‘us.’” - -“My mother, I was meaning.” - -Cecil closed the novel with a bang. - -“Oh, Cecil—how you made me jump!” - -“I will inflict Joseph Emery Prank on you no longer.” - -“I can just remember us all three going into the country for the day -and seeing as far as Hindhead. It is the first thing that I remember.” - -Cecil got up; the man was ill-bred—he hadn’t put on his coat after -tennis—he didn’t do. He would have strolled away if Lucy had not -stopped him. - -“Cecil, do read the thing about the view.” - -“Not while Mr. Emerson is here to entertain us.” - -“No—read away. I think nothing’s funnier than to hear silly things read -out loud. If Mr. Emerson thinks us frivolous, he can go.” - -This struck Cecil as subtle, and pleased him. It put their visitor in -the position of a prig. Somewhat mollified, he sat down again. - -“Mr. Emerson, go and find tennis balls.” She opened the book. Cecil -must have his reading and anything else that he liked. But her -attention wandered to George’s mother, who—according to Mr. Eager—had -been murdered in the sight of God and—according to her son—had seen as -far as Hindhead. - -“Am I really to go?” asked George. - -“No, of course not really,” she answered. - -“Chapter two,” said Cecil, yawning. “Find me chapter two, if it isn’t -bothering you.” - -Chapter two was found, and she glanced at its opening sentences. - -She thought she had gone mad. - -“Here—hand me the book.” - -She heard her voice saying: “It isn’t worth reading—it’s too silly to -read—I never saw such rubbish—it oughtn’t to be allowed to be printed.” - -He took the book from her. - -“‘Leonora,’” he read, “‘sat pensive and alone. Before her lay the rich -champaign of Tuscany, dotted over with many a smiling village. The -season was spring.’” - -Miss Lavish knew, somehow, and had printed the past in draggled prose, -for Cecil to read and for George to hear. - -“‘A golden haze,’” he read. He read: “‘Afar off the towers of Florence, -while the bank on which she sat was carpeted with violets. All -unobserved Antonio stole up behind her—’” - -Lest Cecil should see her face she turned to George and saw his face. - -He read: “‘There came from his lips no wordy protestation such as -formal lovers use. No eloquence was his, nor did he suffer from the -lack of it. He simply enfolded her in his manly arms.’” - -“This isn’t the passage I wanted,” he informed them, “there is another -much funnier, further on.” He turned over the leaves. - -“Should we go in to tea?” said Lucy, whose voice remained steady. - -She led the way up the garden, Cecil following her, George last. She -thought a disaster was averted. But when they entered the shrubbery it -came. The book, as if it had not worked mischief enough, had been -forgotten, and Cecil must go back for it; and George, who loved -passionately, must blunder against her in the narrow path. - -“No—” she gasped, and, for the second time, was kissed by him. - -As if no more was possible, he slipped back; Cecil rejoined her; they -reached the upper lawn alone. - - - - -Chapter XVI -Lying to George - - -But Lucy had developed since the spring. That is to say, she was now -better able to stifle the emotions of which the conventions and the -world disapprove. Though the danger was greater, she was not shaken by -deep sobs. She said to Cecil, “I am not coming in to tea—tell mother—I -must write some letters,” and went up to her room. Then she prepared -for action. Love felt and returned, love which our bodies exact and our -hearts have transfigured, love which is the most real thing that we -shall ever meet, reappeared now as the world’s enemy, and she must -stifle it. - -She sent for Miss Bartlett. - -The contest lay not between love and duty. Perhaps there never is such -a contest. It lay between the real and the pretended, and Lucy’s first -aim was to defeat herself. As her brain clouded over, as the memory of -the views grew dim and the words of the book died away, she returned to -her old shibboleth of nerves. She “conquered her breakdown.” Tampering -with the truth, she forgot that the truth had ever been. Remembering -that she was engaged to Cecil, she compelled herself to confused -remembrances of George; he was nothing to her; he never had been -anything; he had behaved abominably; she had never encouraged him. The -armour of falsehood is subtly wrought out of darkness, and hides a man -not only from others, but from his own soul. In a few moments Lucy was -equipped for battle. - -“Something too awful has happened,” she began, as soon as her cousin -arrived. “Do you know anything about Miss Lavish’s novel?” - -Miss Bartlett looked surprised, and said that she had not read the -book, nor known that it was published; Eleanor was a reticent woman at -heart. - -“There is a scene in it. The hero and heroine make love. Do you know -about that?” - -“Dear—?” - -“Do you know about it, please?” she repeated. “They are on a hillside, -and Florence is in the distance.” - -“My good Lucia, I am all at sea. I know nothing about it whatever.” - -“There are violets. I cannot believe it is a coincidence. Charlotte, -Charlotte, how _could_ you have told her? I have thought before -speaking; it _must_ be you.” - -“Told her what?” she asked, with growing agitation. - -“About that dreadful afternoon in February.” - -Miss Bartlett was genuinely moved. “Oh, Lucy, dearest girl—she hasn’t -put that in her book?” - -Lucy nodded. - -“Not so that one could recognize it. Yes.” - -“Then never—never—never more shall Eleanor Lavish be a friend of mine.” - -“So you did tell?” - -“I did just happen—when I had tea with her at Rome—in the course of -conversation—” - -“But Charlotte—what about the promise you gave me when we were packing? -Why did you tell Miss Lavish, when you wouldn’t even let me tell -mother?” - -“I will never forgive Eleanor. She has betrayed my confidence.” - -“Why did you tell her, though? This is a most serious thing.” - -Why does any one tell anything? The question is eternal, and it was not -surprising that Miss Bartlett should only sigh faintly in response. She -had done wrong—she admitted it, she only hoped that she had not done -harm; she had told Eleanor in the strictest confidence. - -Lucy stamped with irritation. - -“Cecil happened to read out the passage aloud to me and to Mr. Emerson; -it upset Mr. Emerson and he insulted me again. Behind Cecil’s back. -Ugh! Is it possible that men are such brutes? Behind Cecil’s back as we -were walking up the garden.” - -Miss Bartlett burst into self-accusations and regrets. - -“What is to be done now? Can you tell me?” - -“Oh, Lucy—I shall never forgive myself, never to my dying day. Fancy if -your prospects—” - -“I know,” said Lucy, wincing at the word. “I see now why you wanted me -to tell Cecil, and what you meant by ‘some other source.’ You knew that -you had told Miss Lavish, and that she was not reliable.” - -It was Miss Bartlett’s turn to wince. “However,” said the girl, -despising her cousin’s shiftiness, “What’s done’s done. You have put me -in a most awkward position. How am I to get out of it?” - -Miss Bartlett could not think. The days of her energy were over. She -was a visitor, not a chaperon, and a discredited visitor at that. She -stood with clasped hands while the girl worked herself into the -necessary rage. - -“He must—that man must have such a setting down that he won’t forget. -And who’s to give it him? I can’t tell mother now—owing to you. Nor -Cecil, Charlotte, owing to you. I am caught up every way. I think I -shall go mad. I have no one to help me. That’s why I’ve sent for you. -What’s wanted is a man with a whip.” - -Miss Bartlett agreed: one wanted a man with a whip. - -“Yes—but it’s no good agreeing. What’s to be _done?_ We women go -maundering on. What _does_ a girl do when she comes across a cad?” - -“I always said he was a cad, dear. Give me credit for that, at all -events. From the very first moment—when he said his father was having a -bath.” - -“Oh, bother the credit and who’s been right or wrong! We’ve both made a -muddle of it. George Emerson is still down the garden there, and is he -to be left unpunished, or isn’t he? I want to know.” - -Miss Bartlett was absolutely helpless. Her own exposure had unnerved -her, and thoughts were colliding painfully in her brain. She moved -feebly to the window, and tried to detect the cad’s white flannels -among the laurels. - -“You were ready enough at the Bertolini when you rushed me off to Rome. -Can’t you speak again to him now?” - -“Willingly would I move heaven and earth—” - -“I want something more definite,” said Lucy contemptuously. “Will you -speak to him? It is the least you can do, surely, considering it all -happened because you broke your word.” - -“Never again shall Eleanor Lavish be a friend of mine.” - -Really, Charlotte was outdoing herself. - -“Yes or no, please; yes or no.” - -“It is the kind of thing that only a gentleman can settle.” George -Emerson was coming up the garden with a tennis ball in his hand. - -“Very well,” said Lucy, with an angry gesture. “No one will help me. I -will speak to him myself.” And immediately she realized that this was -what her cousin had intended all along. - -“Hullo, Emerson!” called Freddy from below. “Found the lost ball? Good -man! Want any tea?” And there was an irruption from the house on to the -terrace. - -“Oh, Lucy, but that is brave of you! I admire you—” - -They had gathered round George, who beckoned, she felt, over the -rubbish, the sloppy thoughts, the furtive yearnings that were beginning -to cumber her soul. Her anger faded at the sight of him. Ah! The -Emersons were fine people in their way. She had to subdue a rush in her -blood before saying: - -“Freddy has taken him into the dining-room. The others are going down -the garden. Come. Let us get this over quickly. Come. I want you in the -room, of course.” - -“Lucy, do you mind doing it?” - -“How can you ask such a ridiculous question?” - -“Poor Lucy—” She stretched out her hand. “I seem to bring nothing but -misfortune wherever I go.” Lucy nodded. She remembered their last -evening at Florence—the packing, the candle, the shadow of Miss -Bartlett’s toque on the door. She was not to be trapped by pathos a -second time. Eluding her cousin’s caress, she led the way downstairs. - -“Try the jam,” Freddy was saying. “The jam’s jolly good.” - -George, looking big and dishevelled, was pacing up and down the -dining-room. As she entered he stopped, and said: - -“No—nothing to eat.” - -“You go down to the others,” said Lucy; “Charlotte and I will give Mr. -Emerson all he wants. Where’s mother?” - -“She’s started on her Sunday writing. She’s in the drawing-room.” - -“That’s all right. You go away.” - -He went off singing. - -Lucy sat down at the table. Miss Bartlett, who was thoroughly -frightened, took up a book and pretended to read. - -She would not be drawn into an elaborate speech. She just said: “I -can’t have it, Mr. Emerson. I cannot even talk to you. Go out of this -house, and never come into it again as long as I live here—” flushing -as she spoke and pointing to the door. “I hate a row. Go please.” - -“What—” - -“No discussion.” - -“But I can’t—” - -She shook her head. “Go, please. I do not want to call in Mr. Vyse.” - -“You don’t mean,” he said, absolutely ignoring Miss Bartlett—“you don’t -mean that you are going to marry that man?” - -The line was unexpected. - -She shrugged her shoulders, as if his vulgarity wearied her. “You are -merely ridiculous,” she said quietly. - -Then his words rose gravely over hers: “You cannot live with Vyse. He’s -only for an acquaintance. He is for society and cultivated talk. He -should know no one intimately, least of all a woman.” - -It was a new light on Cecil’s character. - -“Have you ever talked to Vyse without feeling tired?” - -“I can scarcely discuss—” - -“No, but have you ever? He is the sort who are all right so long as -they keep to things—books, pictures—but kill when they come to people. -That’s why I’ll speak out through all this muddle even now. It’s -shocking enough to lose you in any case, but generally a man must deny -himself joy, and I would have held back if your Cecil had been a -different person. I would never have let myself go. But I saw him first -in the National Gallery, when he winced because my father mispronounced -the names of great painters. Then he brings us here, and we find it is -to play some silly trick on a kind neighbour. That is the man all -over—playing tricks on people, on the most sacred form of life that he -can find. Next, I meet you together, and find him protecting and -teaching you and your mother to be shocked, when it was for _you_ to -settle whether you were shocked or no. Cecil all over again. He daren’t -let a woman decide. He’s the type who’s kept Europe back for a thousand -years. Every moment of his life he’s forming you, telling you what’s -charming or amusing or ladylike, telling you what a man thinks womanly; -and you, you of all women, listen to his voice instead of to your own. -So it was at the Rectory, when I met you both again; so it has been the -whole of this afternoon. Therefore—not ‘therefore I kissed you,’ -because the book made me do that, and I wish to goodness I had more -self-control. I’m not ashamed. I don’t apologize. But it has frightened -you, and you may not have noticed that I love you. Or would you have -told me to go, and dealt with a tremendous thing so lightly? But -therefore—therefore I settled to fight him.” - -Lucy thought of a very good remark. - -“You say Mr. Vyse wants me to listen to him, Mr. Emerson. Pardon me for -suggesting that you have caught the habit.” - -And he took the shoddy reproof and touched it into immortality. He -said: - -“Yes, I have,” and sank down as if suddenly weary. “I’m the same kind -of brute at bottom. This desire to govern a woman—it lies very deep, -and men and women must fight it together before they shall enter the -garden. But I do love you surely in a better way than he does.” He -thought. “Yes—really in a better way. I want you to have your own -thoughts even when I hold you in my arms.” He stretched them towards -her. “Lucy, be quick—there’s no time for us to talk now—come to me as -you came in the spring, and afterwards I will be gentle and explain. I -have cared for you since that man died. I cannot live without you, ‘No -good,’ I thought; ‘she is marrying someone else’; but I meet you again -when all the world is glorious water and sun. As you came through the -wood I saw that nothing else mattered. I called. I wanted to live and -have my chance of joy.” - -“And Mr. Vyse?” said Lucy, who kept commendably calm. “Does he not -matter? That I love Cecil and shall be his wife shortly? A detail of no -importance, I suppose?” - -But he stretched his arms over the table towards her. - -“May I ask what you intend to gain by this exhibition?” - -He said: “It is our last chance. I shall do all that I can.” And as if -he had done all else, he turned to Miss Bartlett, who sat like some -portent against the skies of the evening. “You wouldn’t stop us this -second time if you understood,” he said. “I have been into the dark, -and I am going back into it, unless you will try to understand.” - -Her long, narrow head drove backwards and forwards, as though -demolishing some invisible obstacle. She did not answer. - -“It is being young,” he said quietly, picking up his racquet from the -floor and preparing to go. “It is being certain that Lucy cares for me -really. It is that love and youth matter intellectually.” - -In silence the two women watched him. His last remark, they knew, was -nonsense, but was he going after it or not? Would not he, the cad, the -charlatan, attempt a more dramatic finish? No. He was apparently -content. He left them, carefully closing the front door; and when they -looked through the hall window, they saw him go up the drive and begin -to climb the slopes of withered fern behind the house. Their tongues -were loosed, and they burst into stealthy rejoicings. - -“Oh, Lucia—come back here—oh, what an awful man!” - -Lucy had no reaction—at least, not yet. “Well, he amuses me,” she said. -“Either I’m mad, or else he is, and I’m inclined to think it’s the -latter. One more fuss through with you, Charlotte. Many thanks. I -think, though, that this is the last. My admirer will hardly trouble me -again.” - -And Miss Bartlett, too, essayed the roguish: - -“Well, it isn’t everyone who could boast such a conquest, dearest, is -it? Oh, one oughtn’t to laugh, really. It might have been very serious. -But you were so sensible and brave—so unlike the girls of my day.” - -“Let’s go down to them.” - -But, once in the open air, she paused. Some emotion—pity, terror, love, -but the emotion was strong—seized her, and she was aware of autumn. -Summer was ending, and the evening brought her odours of decay, the -more pathetic because they were reminiscent of spring. That something -or other mattered intellectually? A leaf, violently agitated, danced -past her, while other leaves lay motionless. That the earth was -hastening to re-enter darkness, and the shadows of those trees over -Windy Corner? - -“Hullo, Lucy! There’s still light enough for another set, if you two’ll -hurry.” - -“Mr. Emerson has had to go.” - -“What a nuisance! That spoils the four. I say, Cecil, do play, do, -there’s a good chap. It’s Floyd’s last day. Do play tennis with us, -just this once.” - -Cecil’s voice came: “My dear Freddy, I am no athlete. As you well -remarked this very morning, ‘There are some chaps who are no good for -anything but books’; I plead guilty to being such a chap, and will not -inflict myself on you.” - -The scales fell from Lucy’s eyes. How had she stood Cecil for a moment? -He was absolutely intolerable, and the same evening she broke off her -engagement. - - - - -Chapter XVII -Lying to Cecil - - -He was bewildered. He had nothing to say. He was not even angry, but -stood, with a glass of whiskey between his hands, trying to think what -had led her to such a conclusion. - -She had chosen the moment before bed, when, in accordance with their -bourgeois habit, she always dispensed drinks to the men. Freddy and Mr. -Floyd were sure to retire with their glasses, while Cecil invariably -lingered, sipping at his while she locked up the sideboard. - -“I am very sorry about it,” she said; “I have carefully thought things -over. We are too different. I must ask you to release me, and try to -forget that there ever was such a foolish girl.” - -It was a suitable speech, but she was more angry than sorry, and her -voice showed it. - -“Different—how—how—” - -“I haven’t had a really good education, for one thing,” she continued, -still on her knees by the sideboard. “My Italian trip came too late, -and I am forgetting all that I learnt there. I shall never be able to -talk to your friends, or behave as a wife of yours should.” - -“I don’t understand you. You aren’t like yourself. You’re tired, Lucy.” - -“Tired!” she retorted, kindling at once. “That is exactly like you. You -always think women don’t mean what they say.” - -“Well, you sound tired, as if something has worried you.” - -“What if I do? It doesn’t prevent me from realizing the truth. I can’t -marry you, and you will thank me for saying so some day.” - -“You had that bad headache yesterday—All right”—for she had exclaimed -indignantly: “I see it’s much more than headaches. But give me a -moment’s time.” He closed his eyes. “You must excuse me if I say stupid -things, but my brain has gone to pieces. Part of it lives three minutes -back, when I was sure that you loved me, and the other part—I find it -difficult—I am likely to say the wrong thing.” - -It struck her that he was not behaving so badly, and her irritation -increased. She again desired a struggle, not a discussion. To bring on -the crisis, she said: - -“There are days when one sees clearly, and this is one of them. Things -must come to a breaking-point some time, and it happens to be to-day. -If you want to know, quite a little thing decided me to speak to -you—when you wouldn’t play tennis with Freddy.” - -“I never do play tennis,” said Cecil, painfully bewildered; “I never -could play. I don’t understand a word you say.” - -“You can play well enough to make up a four. I thought it abominably -selfish of you.” - -“No, I can’t—well, never mind the tennis. Why couldn’t you—couldn’t you -have warned me if you felt anything wrong? You talked of our wedding at -lunch—at least, you let me talk.” - -“I knew you wouldn’t understand,” said Lucy quite crossly. “I might -have known there would have been these dreadful explanations. Of -course, it isn’t the tennis—that was only the last straw to all I have -been feeling for weeks. Surely it was better not to speak until I felt -certain.” She developed this position. “Often before I have wondered if -I was fitted for your wife—for instance, in London; and are you fitted -to be my husband? I don’t think so. You don’t like Freddy, nor my -mother. There was always a lot against our engagement, Cecil, but all -our relations seemed pleased, and we met so often, and it was no good -mentioning it until—well, until all things came to a point. They have -to-day. I see clearly. I must speak. That’s all.” - -“I cannot think you were right,” said Cecil gently. “I cannot tell why, -but though all that you say sounds true, I feel that you are not -treating me fairly. It’s all too horrible.” - -“What’s the good of a scene?” - -“No good. But surely I have a right to hear a little more.” - -He put down his glass and opened the window. From where she knelt, -jangling her keys, she could see a slit of darkness, and, peering into -it, as if it would tell him that “little more,” his long, thoughtful -face. - -“Don’t open the window; and you’d better draw the curtain, too; Freddy -or any one might be outside.” He obeyed. “I really think we had better -go to bed, if you don’t mind. I shall only say things that will make me -unhappy afterwards. As you say it is all too horrible, and it is no -good talking.” - -But to Cecil, now that he was about to lose her, she seemed each moment -more desirable. He looked at her, instead of through her, for the first -time since they were engaged. From a Leonardo she had become a living -woman, with mysteries and forces of her own, with qualities that even -eluded art. His brain recovered from the shock, and, in a burst of -genuine devotion, he cried: “But I love you, and I did think you loved -me!” - -“I did not,” she said. “I thought I did at first. I am sorry, and ought -to have refused you this last time, too.” - -He began to walk up and down the room, and she grew more and more vexed -at his dignified behaviour. She had counted on his being petty. It -would have made things easier for her. By a cruel irony she was drawing -out all that was finest in his disposition. - -“You don’t love me, evidently. I dare say you are right not to. But it -would hurt a little less if I knew why.” - -“Because”—a phrase came to her, and she accepted it—“you’re the sort -who can’t know any one intimately.” - -A horrified look came into his eyes. - -“I don’t mean exactly that. But you will question me, though I beg you -not to, and I must say something. It is that, more or less. When we -were only acquaintances, you let me be myself, but now you’re always -protecting me.” Her voice swelled. “I won’t be protected. I will choose -for myself what is ladylike and right. To shield me is an insult. Can’t -I be trusted to face the truth but I must get it second-hand through -you? A woman’s place! You despise my mother—I know you do—because she’s -conventional and bothers over puddings; but, oh goodness!”—she rose to -her feet—“conventional, Cecil, you’re that, for you may understand -beautiful things, but you don’t know how to use them; and you wrap -yourself up in art and books and music, and would try to wrap up me. I -won’t be stifled, not by the most glorious music, for people are more -glorious, and you hide them from me. That’s why I break off my -engagement. You were all right as long as you kept to things, but when -you came to people—” She stopped. - -There was a pause. Then Cecil said with great emotion: - -“It is true.” - -“True on the whole,” she corrected, full of some vague shame. - -“True, every word. It is a revelation. It is—I.” - -“Anyhow, those are my reasons for not being your wife.” - -He repeated: “‘The sort that can know no one intimately.’ It is true. I -fell to pieces the very first day we were engaged. I behaved like a cad -to Beebe and to your brother. You are even greater than I thought.” She -withdrew a step. “I’m not going to worry you. You are far too good to -me. I shall never forget your insight; and, dear, I only blame you for -this: you might have warned me in the early stages, before you felt you -wouldn’t marry me, and so have given me a chance to improve. I have -never known you till this evening. I have just used you as a peg for my -silly notions of what a woman should be. But this evening you are a -different person: new thoughts—even a new voice—” - -“What do you mean by a new voice?” she asked, seized with -incontrollable anger. - -“I mean that a new person seems speaking through you,” said he. - -Then she lost her balance. She cried: “If you think I am in love with -some one else, you are very much mistaken.” - -“Of course I don’t think that. You are not that kind, Lucy.” - -“Oh, yes, you do think it. It’s your old idea, the idea that has kept -Europe back—I mean the idea that women are always thinking of men. If a -girl breaks off her engagement, everyone says: ‘Oh, she had someone -else in her mind; she hopes to get someone else.’ It’s disgusting, -brutal! As if a girl can’t break it off for the sake of freedom.” - -He answered reverently: “I may have said that in the past. I shall -never say it again. You have taught me better.” - -She began to redden, and pretended to examine the windows again. - -“Of course, there is no question of ‘someone else’ in this, no -‘jilting’ or any such nauseous stupidity. I beg your pardon most humbly -if my words suggested that there was. I only meant that there was a -force in you that I hadn’t known of up till now.” - -“All right, Cecil, that will do. Don’t apologize to me. It was my -mistake.” - -“It is a question between ideals, yours and mine—pure abstract ideals, -and yours are the nobler. I was bound up in the old vicious notions, -and all the time you were splendid and new.” His voice broke. “I must -actually thank you for what you have done—for showing me what I really -am. Solemnly, I thank you for showing me a true woman. Will you shake -hands?” - -“Of course I will,” said Lucy, twisting up her other hand in the -curtains. “Good-night, Cecil. Good-bye. That’s all right. I’m sorry -about it. Thank you very much for your gentleness.” - -“Let me light your candle, shall I?” - -They went into the hall. - -“Thank you. Good-night again. God bless you, Lucy!” - -“Good-bye, Cecil.” - -She watched him steal up-stairs, while the shadows from three banisters -passed over her face like the beat of wings. On the landing he paused -strong in his renunciation, and gave her a look of memorable beauty. -For all his culture, Cecil was an ascetic at heart, and nothing in his -love became him like the leaving of it. - -She could never marry. In the tumult of her soul, that stood firm. -Cecil believed in her; she must some day believe in herself. She must -be one of the women whom she had praised so eloquently, who care for -liberty and not for men; she must forget that George loved her, that -George had been thinking through her and gained her this honourable -release, that George had gone away into—what was it?—the darkness. - -She put out the lamp. - -It did not do to think, nor, for the matter of that, to feel. She gave -up trying to understand herself, and joined the vast armies of the -benighted, who follow neither the heart nor the brain, and march to -their destiny by catch-words. The armies are full of pleasant and pious -folk. But they have yielded to the only enemy that matters—the enemy -within. They have sinned against passion and truth, and vain will be -their strife after virtue. As the years pass, they are censured. Their -pleasantry and their piety show cracks, their wit becomes cynicism, -their unselfishness hypocrisy; they feel and produce discomfort -wherever they go. They have sinned against Eros and against Pallas -Athene, and not by any heavenly intervention, but by the ordinary -course of nature, those allied deities will be avenged. - -Lucy entered this army when she pretended to George that she did not -love him, and pretended to Cecil that she loved no one. The night -received her, as it had received Miss Bartlett thirty years before. - - - - -Chapter XVIII -Lying to Mr. Beebe, Mrs. Honeychurch, Freddy, and The Servants - - -Windy Corner lay, not on the summit of the ridge, but a few hundred -feet down the southern slope, at the springing of one of the great -buttresses that supported the hill. On either side of it was a shallow -ravine, filled with ferns and pine-trees, and down the ravine on the -left ran the highway into the Weald. - -Whenever Mr. Beebe crossed the ridge and caught sight of these noble -dispositions of the earth, and, poised in the middle of them, Windy -Corner,—he laughed. The situation was so glorious, the house so -commonplace, not to say impertinent. The late Mr. Honeychurch had -affected the cube, because it gave him the most accommodation for his -money, and the only addition made by his widow had been a small turret, -shaped like a rhinoceros’ horn, where she could sit in wet weather and -watch the carts going up and down the road. So impertinent—and yet the -house “did,” for it was the home of people who loved their surroundings -honestly. Other houses in the neighborhood had been built by expensive -architects, over others their inmates had fidgeted sedulously, yet all -these suggested the accidental, the temporary; while Windy Corner -seemed as inevitable as an ugliness of Nature’s own creation. One might -laugh at the house, but one never shuddered. Mr. Beebe was bicycling -over this Monday afternoon with a piece of gossip. He had heard from -the Miss Alans. These admirable ladies, since they could not go to -Cissie Villa, had changed their plans. They were going to Greece -instead. - -“Since Florence did my poor sister so much good,” wrote Miss Catharine, -“we do not see why we should not try Athens this winter. Of course, -Athens is a plunge, and the doctor has ordered her special digestive -bread; but, after all, we can take that with us, and it is only getting -first into a steamer and then into a train. But is there an English -Church?” And the letter went on to say: “I do not expect we shall go -any further than Athens, but if you knew of a really comfortable -pension at Constantinople, we should be so grateful.” - -Lucy would enjoy this letter, and the smile with which Mr. Beebe -greeted Windy Corner was partly for her. She would see the fun of it, -and some of its beauty, for she must see some beauty. Though she was -hopeless about pictures, and though she dressed so unevenly—oh, that -cerise frock yesterday at church!—she must see some beauty in life, or -she could not play the piano as she did. He had a theory that musicians -are incredibly complex, and know far less than other artists what they -want and what they are; that they puzzle themselves as well as their -friends; that their psychology is a modern development, and has not yet -been understood. This theory, had he known it, had possibly just been -illustrated by facts. Ignorant of the events of yesterday he was only -riding over to get some tea, to see his niece, and to observe whether -Miss Honeychurch saw anything beautiful in the desire of two old ladies -to visit Athens. - -A carriage was drawn up outside Windy Corner, and just as he caught -sight of the house it started, bowled up the drive, and stopped -abruptly when it reached the main road. Therefore it must be the horse, -who always expected people to walk up the hill in case they tired him. -The door opened obediently, and two men emerged, whom Mr. Beebe -recognized as Cecil and Freddy. They were an odd couple to go driving; -but he saw a trunk beside the coachman’s legs. Cecil, who wore a -bowler, must be going away, while Freddy (a cap)—was seeing him to the -station. They walked rapidly, taking the short cuts, and reached the -summit while the carriage was still pursuing the windings of the road. - -They shook hands with the clergyman, but did not speak. - -“So you’re off for a minute, Mr. Vyse?” he asked. - -Cecil said, “Yes,” while Freddy edged away. - -“I was coming to show you this delightful letter from those friends of -Miss Honeychurch.” He quoted from it. “Isn’t it wonderful? Isn’t it -romance? Most certainly they will go to Constantinople. They are taken -in a snare that cannot fail. They will end by going round the world.” - -Cecil listened civilly, and said he was sure that Lucy would be amused -and interested. - -“Isn’t Romance capricious! I never notice it in you young people; you -do nothing but play lawn tennis, and say that romance is dead, while -the Miss Alans are struggling with all the weapons of propriety against -the terrible thing. ‘A really comfortable pension at Constantinople!’ -So they call it out of decency, but in their hearts they want a pension -with magic windows opening on the foam of perilous seas in fairyland -forlorn! No ordinary view will content the Miss Alans. They want the -Pension Keats.” - -“I’m awfully sorry to interrupt, Mr. Beebe,” said Freddy, “but have you -any matches?” - -“I have,” said Cecil, and it did not escape Mr. Beebe’s notice that he -spoke to the boy more kindly. - -“You have never met these Miss Alans, have you, Mr. Vyse?” - -“Never.” - -“Then you don’t see the wonder of this Greek visit. I haven’t been to -Greece myself, and don’t mean to go, and I can’t imagine any of my -friends going. It is altogether too big for our little lot. Don’t you -think so? Italy is just about as much as we can manage. Italy is -heroic, but Greece is godlike or devilish—I am not sure which, and in -either case absolutely out of our suburban focus. All right, Freddy—I -am not being clever, upon my word I am not—I took the idea from another -fellow; and give me those matches when you’ve done with them.” He lit a -cigarette, and went on talking to the two young men. “I was saying, if -our poor little Cockney lives must have a background, let it be -Italian. Big enough in all conscience. The ceiling of the Sistine -Chapel for me. There the contrast is just as much as I can realize. But -not the Parthenon, not the frieze of Phidias at any price; and here -comes the victoria.” - -“You’re quite right,” said Cecil. “Greece is not for our little lot”; -and he got in. Freddy followed, nodding to the clergyman, whom he -trusted not to be pulling one’s leg, really. And before they had gone a -dozen yards he jumped out, and came running back for Vyse’s match-box, -which had not been returned. As he took it, he said: “I’m so glad you -only talked about books. Cecil’s hard hit. Lucy won’t marry him. If -you’d gone on about her, as you did about them, he might have broken -down.” - -“But when—” - -“Late last night. I must go.” - -“Perhaps they won’t want me down there.” - -“No—go on. Good-bye.” - -“Thank goodness!” exclaimed Mr. Beebe to himself, and struck the saddle -of his bicycle approvingly, “It was the one foolish thing she ever did. -Oh, what a glorious riddance!” And, after a little thought, he -negotiated the slope into Windy Corner, light of heart. The house was -again as it ought to be—cut off forever from Cecil’s pretentious world. - -He would find Miss Minnie down in the garden. - -In the drawing-room Lucy was tinkling at a Mozart Sonata. He hesitated -a moment, but went down the garden as requested. There he found a -mournful company. It was a blustering day, and the wind had taken and -broken the dahlias. Mrs. Honeychurch, who looked cross, was tying them -up, while Miss Bartlett, unsuitably dressed, impeded her with offers of -assistance. At a little distance stood Minnie and the “garden-child,” a -minute importation, each holding either end of a long piece of bass. - -“Oh, how do you do, Mr. Beebe? Gracious what a mess everything is! Look -at my scarlet pompoms, and the wind blowing your skirts about, and the -ground so hard that not a prop will stick in, and then the carriage -having to go out, when I had counted on having Powell, who—give -everyone their due—does tie up dahlias properly.” - -Evidently Mrs. Honeychurch was shattered. - -“How do you do?” said Miss Bartlett, with a meaning glance, as though -conveying that more than dahlias had been broken off by the autumn -gales. - -“Here, Lennie, the bass,” cried Mrs. Honeychurch. The garden-child, who -did not know what bass was, stood rooted to the path with horror. -Minnie slipped to her uncle and whispered that everyone was very -disagreeable to-day, and that it was not her fault if dahlia-strings -would tear longways instead of across. - -“Come for a walk with me,” he told her. “You have worried them as much -as they can stand. Mrs. Honeychurch, I only called in aimlessly. I -shall take her up to tea at the Beehive Tavern, if I may.” - -“Oh, must you? Yes do.—Not the scissors, thank you, Charlotte, when -both my hands are full already—I’m perfectly certain that the orange -cactus will go before I can get to it.” - -Mr. Beebe, who was an adept at relieving situations, invited Miss -Bartlett to accompany them to this mild festivity. - -“Yes, Charlotte, I don’t want you—do go; there’s nothing to stop about -for, either in the house or out of it.” - -Miss Bartlett said that her duty lay in the dahlia bed, but when she -had exasperated everyone, except Minnie, by a refusal, she turned round -and exasperated Minnie by an acceptance. As they walked up the garden, -the orange cactus fell, and Mr. Beebe’s last vision was of the -garden-child clasping it like a lover, his dark head buried in a wealth -of blossom. - -“It is terrible, this havoc among the flowers,” he remarked. - -“It is always terrible when the promise of months is destroyed in a -moment,” enunciated Miss Bartlett. - -“Perhaps we ought to send Miss Honeychurch down to her mother. Or will -she come with us?” - -“I think we had better leave Lucy to herself, and to her own pursuits.” - -“They’re angry with Miss Honeychurch because she was late for -breakfast,” whispered Minnie, “and Floyd has gone, and Mr. Vyse has -gone, and Freddy won’t play with me. In fact, Uncle Arthur, the house -is not _at all_ what it was yesterday.” - -“Don’t be a prig,” said her Uncle Arthur. “Go and put on your boots.” - -He stepped into the drawing-room, where Lucy was still attentively -pursuing the Sonatas of Mozart. She stopped when he entered. - -“How do you do? Miss Bartlett and Minnie are coming with me to tea at -the Beehive. Would you come too?” - -“I don’t think I will, thank you.” - -“No, I didn’t suppose you would care to much.” - -Lucy turned to the piano and struck a few chords. - -“How delicate those Sonatas are!” said Mr. Beebe, though at the bottom -of his heart, he thought them silly little things. - -Lucy passed into Schumann. - -“Miss Honeychurch!” - -“Yes.” - -“I met them on the hill. Your brother told me.” - -“Oh he did?” She sounded annoyed. Mr. Beebe felt hurt, for he had -thought that she would like him to be told. - -“I needn’t say that it will go no further.” - -“Mother, Charlotte, Cecil, Freddy, you,” said Lucy, playing a note for -each person who knew, and then playing a sixth note. - -“If you’ll let me say so, I am very glad, and I am certain that you -have done the right thing.” - -“So I hoped other people would think, but they don’t seem to.” - -“I could see that Miss Bartlett thought it unwise.” - -“So does mother. Mother minds dreadfully.” - -“I am very sorry for that,” said Mr. Beebe with feeling. - -Mrs. Honeychurch, who hated all changes, did mind, but not nearly as -much as her daughter pretended, and only for the minute. It was really -a ruse of Lucy’s to justify her despondency—a ruse of which she was not -herself conscious, for she was marching in the armies of darkness. - -“And Freddy minds.” - -“Still, Freddy never hit it off with Vyse much, did he? I gathered that -he disliked the engagement, and felt it might separate him from you.” - -“Boys are so odd.” - -Minnie could be heard arguing with Miss Bartlett through the floor. Tea -at the Beehive apparently involved a complete change of apparel. Mr. -Beebe saw that Lucy—very properly—did not wish to discuss her action, -so after a sincere expression of sympathy, he said, “I have had an -absurd letter from Miss Alan. That was really what brought me over. I -thought it might amuse you all.” - -“How delightful!” said Lucy, in a dull voice. - -For the sake of something to do, he began to read her the letter. After -a few words her eyes grew alert, and soon she interrupted him with -“Going abroad? When do they start?” - -“Next week, I gather.” - -“Did Freddy say whether he was driving straight back?” - -“No, he didn’t.” - -“Because I do hope he won’t go gossiping.” - -So she did want to talk about her broken engagement. Always -complaisant, he put the letter away. But she, at once exclaimed in a -high voice, “Oh, do tell me more about the Miss Alans! How perfectly -splendid of them to go abroad!” - -“I want them to start from Venice, and go in a cargo steamer down the -Illyrian coast!” - -She laughed heartily. “Oh, delightful! I wish they’d take me.” - -“Has Italy filled you with the fever of travel? Perhaps George Emerson -is right. He says that ‘Italy is only an euphuism for Fate.’” - -“Oh, not Italy, but Constantinople. I have always longed to go to -Constantinople. Constantinople is practically Asia, isn’t it?” - -Mr. Beebe reminded her that Constantinople was still unlikely, and that -the Miss Alans only aimed at Athens, “with Delphi, perhaps, if the -roads are safe.” But this made no difference to her enthusiasm. She had -always longed to go to Greece even more, it seemed. He saw, to his -surprise, that she was apparently serious. - -“I didn’t realize that you and the Miss Alans were still such friends, -after Cissie Villa.” - -“Oh, that’s nothing; I assure you Cissie Villa’s nothing to me; I would -give anything to go with them.” - -“Would your mother spare you again so soon? You have scarcely been home -three months.” - -“She _must_ spare me!” cried Lucy, in growing excitement. “I simply -_must_ go away. I have to.” She ran her fingers hysterically through -her hair. “Don’t you see that I _have_ to go away? I didn’t realize at -the time—and of course I want to see Constantinople so particularly.” - -“You mean that since you have broken off your engagement you feel—” - -“Yes, yes. I knew you’d understand.” - -Mr. Beebe did not quite understand. Why could not Miss Honeychurch -repose in the bosom of her family? Cecil had evidently taken up the -dignified line, and was not going to annoy her. Then it struck him that -her family itself might be annoying. He hinted this to her, and she -accepted the hint eagerly. - -“Yes, of course; to go to Constantinople until they are used to the -idea and everything has calmed down.” - -“I am afraid it has been a bothersome business,” he said gently. - -“No, not at all. Cecil was very kind indeed; only—I had better tell you -the whole truth, since you have heard a little—it was that he is so -masterful. I found that he wouldn’t let me go my own way. He would -improve me in places where I can’t be improved. Cecil won’t let a woman -decide for herself—in fact, he daren’t. What nonsense I do talk! But -that is the kind of thing.” - -“It is what I gathered from my own observation of Mr. Vyse; it is what -I gather from all that I have known of you. I do sympathize and agree -most profoundly. I agree so much that you must let me make one little -criticism: Is it worth while rushing off to Greece?” - -“But I must go somewhere!” she cried. “I have been worrying all the -morning, and here comes the very thing.” She struck her knees with -clenched fists, and repeated: “I must! And the time I shall have with -mother, and all the money she spent on me last spring. You all think -much too highly of me. I wish you weren’t so kind.” At this moment Miss -Bartlett entered, and her nervousness increased. “I must get away, ever -so far. I must know my own mind and where I want to go.” - -“Come along; tea, tea, tea,” said Mr. Beebe, and bustled his guests out -of the front-door. He hustled them so quickly that he forgot his hat. -When he returned for it he heard, to his relief and surprise, the -tinkling of a Mozart Sonata. - -“She is playing again,” he said to Miss Bartlett. - -“Lucy can always play,” was the acid reply. - -“One is very thankful that she has such a resource. She is evidently -much worried, as, of course, she ought to be. I know all about it. The -marriage was so near that it must have been a hard struggle before she -could wind herself up to speak.” - -Miss Bartlett gave a kind of wriggle, and he prepared for a discussion. -He had never fathomed Miss Bartlett. As he had put it to himself at -Florence, “she might yet reveal depths of strangeness, if not of -meaning.” But she was so unsympathetic that she must be reliable. He -assumed that much, and he had no hesitation in discussing Lucy with -her. Minnie was fortunately collecting ferns. - -She opened the discussion with: “We had much better let the matter -drop.” - -“I wonder.” - -“It is of the highest importance that there should be no gossip in -Summer Street. It would be _death_ to gossip about Mr. Vyse’s dismissal -at the present moment.” - -Mr. Beebe raised his eyebrows. Death is a strong word—surely too -strong. There was no question of tragedy. He said: “Of course, Miss -Honeychurch will make the fact public in her own way, and when she -chooses. Freddy only told me because he knew she would not mind.” - -“I know,” said Miss Bartlett civilly. “Yet Freddy ought not to have -told even you. One cannot be too careful.” - -“Quite so.” - -“I do implore absolute secrecy. A chance word to a chattering friend, -and—” - -“Exactly.” He was used to these nervous old maids and to the -exaggerated importance that they attach to words. A rector lives in a -web of petty secrets, and confidences and warnings, and the wiser he is -the less he will regard them. He will change the subject, as did Mr. -Beebe, saying cheerfully: “Have you heard from any Bertolini people -lately? I believe you keep up with Miss Lavish. It is odd how we of -that pension, who seemed such a fortuitous collection, have been -working into one another’s lives. Two, three, four, six of us—no, -eight; I had forgotten the Emersons—have kept more or less in touch. We -must really give the Signora a testimonial.” - -And, Miss Bartlett not favouring the scheme, they walked up the hill in -a silence which was only broken by the rector naming some fern. On the -summit they paused. The sky had grown wilder since he stood there last -hour, giving to the land a tragic greatness that is rare in Surrey. -Grey clouds were charging across tissues of white, which stretched and -shredded and tore slowly, until through their final layers there -gleamed a hint of the disappearing blue. Summer was retreating. The -wind roared, the trees groaned, yet the noise seemed insufficient for -those vast operations in heaven. The weather was breaking up, breaking, -broken, and it is a sense of the fit rather than of the supernatural -that equips such crises with the salvos of angelic artillery. Mr. -Beebe’s eyes rested on Windy Corner, where Lucy sat, practising Mozart. -No smile came to his lips, and, changing the subject again, he said: -“We shan’t have rain, but we shall have darkness, so let us hurry on. -The darkness last night was appalling.” - -They reached the Beehive Tavern at about five o’clock. That amiable -hostelry possesses a verandah, in which the young and the unwise do -dearly love to sit, while guests of more mature years seek a pleasant -sanded room, and have tea at a table comfortably. Mr. Beebe saw that -Miss Bartlett would be cold if she sat out, and that Minnie would be -dull if she sat in, so he proposed a division of forces. They would -hand the child her food through the window. Thus he was incidentally -enabled to discuss the fortunes of Lucy. - -“I have been thinking, Miss Bartlett,” he said, “and, unless you very -much object, I would like to reopen that discussion.” She bowed. -“Nothing about the past. I know little and care less about that; I am -absolutely certain that it is to your cousin’s credit. She has acted -loftily and rightly, and it is like her gentle modesty to say that we -think too highly of her. But the future. Seriously, what do you think -of this Greek plan?” He pulled out the letter again. “I don’t know -whether you overheard, but she wants to join the Miss Alans in their -mad career. It’s all—I can’t explain—it’s wrong.” - -Miss Bartlett read the letter in silence, laid it down, seemed to -hesitate, and then read it again. - -“I can’t see the point of it myself.” - -To his astonishment, she replied: “There I cannot agree with you. In it -I spy Lucy’s salvation.” - -“Really. Now, why?” - -“She wanted to leave Windy Corner.” - -“I know—but it seems so odd, so unlike her, so—I was going to -say—selfish.” - -“It is natural, surely—after such painful scenes—that she should desire -a change.” - -Here, apparently, was one of those points that the male intellect -misses. Mr. Beebe exclaimed: “So she says herself, and since another -lady agrees with her, I must own that I am partially convinced. Perhaps -she must have a change. I have no sisters or—and I don’t understand -these things. But why need she go as far as Greece?” - -“You may well ask that,” replied Miss Bartlett, who was evidently -interested, and had almost dropped her evasive manner. “Why Greece? -(What is it, Minnie dear—jam?) Why not Tunbridge Wells? Oh, Mr. Beebe! -I had a long and most unsatisfactory interview with dear Lucy this -morning. I cannot help her. I will say no more. Perhaps I have already -said too much. I am not to talk. I wanted her to spend six months with -me at Tunbridge Wells, and she refused.” - -Mr. Beebe poked at a crumb with his knife. - -“But my feelings are of no importance. I know too well that I get on -Lucy’s nerves. Our tour was a failure. She wanted to leave Florence, -and when we got to Rome she did not want to be in Rome, and all the -time I felt that I was spending her mother’s money—.” - -“Let us keep to the future, though,” interrupted Mr. Beebe. “I want -your advice.” - -“Very well,” said Charlotte, with a choky abruptness that was new to -him, though familiar to Lucy. “I for one will help her to go to Greece. -Will you?” - -Mr. Beebe considered. - -“It is absolutely necessary,” she continued, lowering her veil and -whispering through it with a passion, an intensity, that surprised him. -“I know—I _know_.” The darkness was coming on, and he felt that this -odd woman really did know. “She must not stop here a moment, and we -must keep quiet till she goes. I trust that the servants know nothing. -Afterwards—but I may have said too much already. Only, Lucy and I are -helpless against Mrs. Honeychurch alone. If you help we may succeed. -Otherwise—” - -“Otherwise—?” - -“Otherwise,” she repeated as if the word held finality. - -“Yes, I will help her,” said the clergyman, setting his jaw firm. -“Come, let us go back now, and settle the whole thing up.” - -Miss Bartlett burst into florid gratitude. The tavern sign—a beehive -trimmed evenly with bees—creaked in the wind outside as she thanked -him. Mr. Beebe did not quite understand the situation; but then, he did -not desire to understand it, nor to jump to the conclusion of “another -man” that would have attracted a grosser mind. He only felt that Miss -Bartlett knew of some vague influence from which the girl desired to be -delivered, and which might well be clothed in the fleshly form. Its -very vagueness spurred him into knight-errantry. His belief in -celibacy, so reticent, so carefully concealed beneath his tolerance and -culture, now came to the surface and expanded like some delicate -flower. “They that marry do well, but they that refrain do better.” So -ran his belief, and he never heard that an engagement was broken off -but with a slight feeling of pleasure. In the case of Lucy, the feeling -was intensified through dislike of Cecil; and he was willing to go -further—to place her out of danger until she could confirm her -resolution of virginity. The feeling was very subtle and quite -undogmatic, and he never imparted it to any other of the characters in -this entanglement. Yet it existed, and it alone explains his action -subsequently, and his influence on the action of others. The compact -that he made with Miss Bartlett in the tavern, was to help not only -Lucy, but religion also. - -They hurried home through a world of black and grey. He conversed on -indifferent topics: the Emersons’ need of a housekeeper; servants; -Italian servants; novels about Italy; novels with a purpose; could -literature influence life? Windy Corner glimmered. In the garden, Mrs. -Honeychurch, now helped by Freddy, still wrestled with the lives of her -flowers. - -“It gets too dark,” she said hopelessly. “This comes of putting off. We -might have known the weather would break up soon; and now Lucy wants to -go to Greece. I don’t know what the world’s coming to.” - -“Mrs. Honeychurch,” he said, “go to Greece she must. Come up to the -house and let’s talk it over. Do you, in the first place, mind her -breaking with Vyse?” - -“Mr. Beebe, I’m thankful—simply thankful.” - -“So am I,” said Freddy. - -“Good. Now come up to the house.” - -They conferred in the dining-room for half an hour. - -Lucy would never have carried the Greek scheme alone. It was expensive -and dramatic—both qualities that her mother loathed. Nor would -Charlotte have succeeded. The honours of the day rested with Mr. Beebe. -By his tact and common sense, and by his influence as a clergyman—for a -clergyman who was not a fool influenced Mrs. Honeychurch greatly—he -bent her to their purpose, “I don’t see why Greece is necessary,” she -said; “but as you do, I suppose it is all right. It must be something I -can’t understand. Lucy! Let’s tell her. Lucy!” - -“She is playing the piano,” Mr. Beebe said. He opened the door, and -heard the words of a song: - -“Look not thou on beauty’s charming.” - - -“I didn’t know that Miss Honeychurch sang, too.” - -“Sit thou still when kings are arming, -Taste not when the wine-cup glistens——” - - -“It’s a song that Cecil gave her. How odd girls are!” - -“What’s that?” called Lucy, stopping short. - -“All right, dear,” said Mrs. Honeychurch kindly. She went into the -drawing-room, and Mr. Beebe heard her kiss Lucy and say: “I am sorry I -was so cross about Greece, but it came on the top of the dahlias.” - -Rather a hard voice said: “Thank you, mother; that doesn’t matter a -bit.” - -“And you are right, too—Greece will be all right; you can go if the -Miss Alans will have you.” - -“Oh, splendid! Oh, thank you!” - -Mr. Beebe followed. Lucy still sat at the piano with her hands over the -keys. She was glad, but he had expected greater gladness. Her mother -bent over her. Freddy, to whom she had been singing, reclined on the -floor with his head against her, and an unlit pipe between his lips. -Oddly enough, the group was beautiful. Mr. Beebe, who loved the art of -the past, was reminded of a favourite theme, the _Santa Conversazione_, -in which people who care for one another are painted chatting together -about noble things—a theme neither sensual nor sensational, and -therefore ignored by the art of to-day. Why should Lucy want either to -marry or to travel when she had such friends at home? - -“Taste not when the wine-cup glistens, -Speak not when the people listens,” - - -she continued. - -“Here’s Mr. Beebe.” - -“Mr. Beebe knows my rude ways.” - -“It’s a beautiful song and a wise one,” said he. “Go on.” - -“It isn’t very good,” she said listlessly. “I forget why—harmony or -something.” - -“I suspected it was unscholarly. It’s so beautiful.” - -“The tune’s right enough,” said Freddy, “but the words are rotten. Why -throw up the sponge?” - -“How stupidly you talk!” said his sister. The _Santa Conversazione_ was -broken up. After all, there was no reason that Lucy should talk about -Greece or thank him for persuading her mother, so he said good-bye. - -Freddy lit his bicycle lamp for him in the porch, and with his usual -felicity of phrase, said: “This has been a day and a half.” - -“Stop thine ear against the singer—” - - -“Wait a minute; she is finishing.” - -“From the red gold keep thy finger; -Vacant heart and hand and eye -Easy live and quiet die.” - - -“I love weather like this,” said Freddy. - -Mr. Beebe passed into it. - -The two main facts were clear. She had behaved splendidly, and he had -helped her. He could not expect to master the details of so big a -change in a girl’s life. If here and there he was dissatisfied or -puzzled, he must acquiesce; she was choosing the better part. - -“Vacant heart and hand and eye—” - - -Perhaps the song stated “the better part” rather too strongly. He half -fancied that the soaring accompaniment—which he did not lose in the -shout of the gale—really agreed with Freddy, and was gently criticizing -the words that it adorned: - -“Vacant heart and hand and eye -Easy live and quiet die.” - - -However, for the fourth time Windy Corner lay poised below him—now as a -beacon in the roaring tides of darkness. - - - - -Chapter XIX -Lying to Mr. Emerson - - -The Miss Alans were found in their beloved temperance hotel near -Bloomsbury—a clean, airless establishment much patronized by provincial -England. They always perched there before crossing the great seas, and -for a week or two would fidget gently over clothes, guide-books, -mackintosh squares, digestive bread, and other Continental necessaries. -That there are shops abroad, even in Athens, never occurred to them, -for they regarded travel as a species of warfare, only to be undertaken -by those who have been fully armed at the Haymarket Stores. Miss -Honeychurch, they trusted, would take care to equip herself duly. -Quinine could now be obtained in tabloids; paper soap was a great help -towards freshening up one’s face in the train. Lucy promised, a little -depressed. - -“But, of course, you know all about these things, and you have Mr. Vyse -to help you. A gentleman is such a stand-by.” - -Mrs. Honeychurch, who had come up to town with her daughter, began to -drum nervously upon her card-case. - -“We think it so good of Mr. Vyse to spare you,” Miss Catharine -continued. “It is not every young man who would be so unselfish. But -perhaps he will come out and join you later on.” - -“Or does his work keep him in London?” said Miss Teresa, the more acute -and less kindly of the two sisters. - -“However, we shall see him when he sees you off. I do so long to see -him.” - -“No one will see Lucy off,” interposed Mrs. Honeychurch. “She doesn’t -like it.” - -“No, I hate seeings-off,” said Lucy. - -“Really? How funny! I should have thought that in this case—” - -“Oh, Mrs. Honeychurch, you aren’t going? It is such a pleasure to have -met you!” - -They escaped, and Lucy said with relief: “That’s all right. We just got -through that time.” - -But her mother was annoyed. “I should be told, dear, that I am -unsympathetic. But I cannot see why you didn’t tell your friends about -Cecil and be done with it. There all the time we had to sit fencing, -and almost telling lies, and be seen through, too, I dare say, which is -most unpleasant.” - -Lucy had plenty to say in reply. She described the Miss Alans’ -character: they were such gossips, and if one told them, the news would -be everywhere in no time. - -“But why shouldn’t it be everywhere in no time?” - -“Because I settled with Cecil not to announce it until I left England. -I shall tell them then. It’s much pleasanter. How wet it is! Let’s turn -in here.” - -“Here” was the British Museum. Mrs. Honeychurch refused. If they must -take shelter, let it be in a shop. Lucy felt contemptuous, for she was -on the tack of caring for Greek sculpture, and had already borrowed a -mythical dictionary from Mr. Beebe to get up the names of the goddesses -and gods. - -“Oh, well, let it be shop, then. Let’s go to Mudie’s. I’ll buy a -guide-book.” - -“You know, Lucy, you and Charlotte and Mr. Beebe all tell me I’m so -stupid, so I suppose I am, but I shall never understand this -hole-and-corner work. You’ve got rid of Cecil—well and good, and I’m -thankful he’s gone, though I did feel angry for the minute. But why not -announce it? Why this hushing up and tip-toeing?” - -“It’s only for a few days.” - -“But why at all?” - -Lucy was silent. She was drifting away from her mother. It was quite -easy to say, “Because George Emerson has been bothering me, and if he -hears I’ve given up Cecil may begin again”—quite easy, and it had the -incidental advantage of being true. But she could not say it. She -disliked confidences, for they might lead to self-knowledge and to that -king of terrors—Light. Ever since that last evening at Florence she had -deemed it unwise to reveal her soul. - -Mrs. Honeychurch, too, was silent. She was thinking, “My daughter won’t -answer me; she would rather be with those inquisitive old maids than -with Freddy and me. Any rag, tag, and bobtail apparently does if she -can leave her home.” And as in her case thoughts never remained -unspoken long, she burst out with: “You’re tired of Windy Corner.” - -This was perfectly true. Lucy had hoped to return to Windy Corner when -she escaped from Cecil, but she discovered that her home existed no -longer. It might exist for Freddy, who still lived and thought -straight, but not for one who had deliberately warped the brain. She -did not acknowledge that her brain was warped, for the brain itself -must assist in that acknowledgment, and she was disordering the very -instruments of life. She only felt, “I do not love George; I broke off -my engagement because I did not love George; I must go to Greece -because I do not love George; it is more important that I should look -up gods in the dictionary than that I should help my mother; everyone -else is behaving very badly.” She only felt irritable and petulant, and -anxious to do what she was not expected to do, and in this spirit she -proceeded with the conversation. - -“Oh, mother, what rubbish you talk! Of course I’m not tired of Windy -Corner.” - -“Then why not say so at once, instead of considering half an hour?” - -She laughed faintly, “Half a _minute_ would be nearer.” - -“Perhaps you would like to stay away from your home altogether?” - -“Hush, mother! People will hear you”; for they had entered Mudie’s. She -bought Baedeker, and then continued: “Of course I want to live at home; -but as we are talking about it, I may as well say that I shall want to -be away in the future more than I have been. You see, I come into my -money next year.” - -Tears came into her mother’s eyes. - -Driven by nameless bewilderment, by what is in older people termed -“eccentricity,” Lucy determined to make this point clear. “I’ve seen -the world so little—I felt so out of things in Italy. I have seen so -little of life; one ought to come up to London more—not a cheap ticket -like to-day, but to stop. I might even share a flat for a little with -some other girl.” - -“And mess with typewriters and latch-keys,” exploded Mrs. Honeychurch. -“And agitate and scream, and be carried off kicking by the police. And -call it a Mission—when no one wants you! And call it Duty—when it means -that you can’t stand your own home! And call it Work—when thousands of -men are starving with the competition as it is! And then to prepare -yourself, find two doddering old ladies, and go abroad with them.” - -“I want more independence,” said Lucy lamely; she knew that she wanted -something, and independence is a useful cry; we can always say that we -have not got it. She tried to remember her emotions in Florence: those -had been sincere and passionate, and had suggested beauty rather than -short skirts and latch-keys. But independence was certainly her cue. - -“Very well. Take your independence and be gone. Rush up and down and -round the world, and come back as thin as a lath with the bad food. -Despise the house that your father built and the garden that he -planted, and our dear view—and then share a flat with another girl.” - -Lucy screwed up her mouth and said: “Perhaps I spoke hastily.” - -“Oh, goodness!” her mother flashed. “How you do remind me of Charlotte -Bartlett!” - -“_Charlotte?_” flashed Lucy in her turn, pierced at last by a vivid -pain. - -“More every moment.” - -“I don’t know what you mean, mother; Charlotte and I are not the very -least alike.” - -“Well, I see the likeness. The same eternal worrying, the same taking -back of words. You and Charlotte trying to divide two apples among -three people last night might be sisters.” - -“What rubbish! And if you dislike Charlotte so, it’s rather a pity you -asked her to stop. I warned you about her; I begged you, implored you -not to, but of course it was not listened to.” - -“There you go.” - -“I beg your pardon?” - -“Charlotte again, my dear; that’s all; her very words.” - -Lucy clenched her teeth. “My point is that you oughtn’t to have asked -Charlotte to stop. I wish you would keep to the point.” And the -conversation died off into a wrangle. - -She and her mother shopped in silence, spoke little in the train, -little again in the carriage, which met them at Dorking Station. It had -poured all day and as they ascended through the deep Surrey lanes -showers of water fell from the over-hanging beech-trees and rattled on -the hood. Lucy complained that the hood was stuffy. Leaning forward, -she looked out into the steaming dusk, and watched the carriage-lamp -pass like a search-light over mud and leaves, and reveal nothing -beautiful. “The crush when Charlotte gets in will be abominable,” she -remarked. For they were to pick up Miss Bartlett at Summer Street, -where she had been dropped as the carriage went down, to pay a call on -Mr. Beebe’s old mother. “We shall have to sit three a side, because the -trees drop, and yet it isn’t raining. Oh, for a little air!” Then she -listened to the horse’s hoofs—“He has not told—he has not told.” That -melody was blurred by the soft road. “_Can’t_ we have the hood down?” -she demanded, and her mother, with sudden tenderness, said: “Very well, -old lady, stop the horse.” And the horse was stopped, and Lucy and -Powell wrestled with the hood, and squirted water down Mrs. -Honeychurch’s neck. But now that the hood was down, she did see -something that she would have missed—there were no lights in the -windows of Cissie Villa, and round the garden gate she fancied she saw -a padlock. - -“Is that house to let again, Powell?” she called. - -“Yes, miss,” he replied. - -“Have they gone?” - -“It is too far out of town for the young gentleman, and his father’s -rheumatism has come on, so he can’t stop on alone, so they are trying -to let furnished,” was the answer. - -“They have gone, then?” - -“Yes, miss, they have gone.” - -Lucy sank back. The carriage stopped at the Rectory. She got out to -call for Miss Bartlett. So the Emersons had gone, and all this bother -about Greece had been unnecessary. Waste! That word seemed to sum up -the whole of life. Wasted plans, wasted money, wasted love, and she had -wounded her mother. Was it possible that she had muddled things away? -Quite possible. Other people had. When the maid opened the door, she -was unable to speak, and stared stupidly into the hall. - -Miss Bartlett at once came forward, and after a long preamble asked a -great favour: might she go to church? Mr. Beebe and his mother had -already gone, but she had refused to start until she obtained her -hostess’s full sanction, for it would mean keeping the horse waiting a -good ten minutes more. - -“Certainly,” said the hostess wearily. “I forgot it was Friday. Let’s -all go. Powell can go round to the stables.” - -“Lucy dearest—” - -“No church for me, thank you.” - -A sigh, and they departed. The church was invisible, but up in the -darkness to the left there was a hint of colour. This was a stained -window, through which some feeble light was shining, and when the door -opened Lucy heard Mr. Beebe’s voice running through the litany to a -minute congregation. Even their church, built upon the slope of the -hill so artfully, with its beautiful raised transept and its spire of -silvery shingle—even their church had lost its charm; and the thing one -never talked about—religion—was fading like all the other things. - -She followed the maid into the Rectory. - -Would she object to sitting in Mr. Beebe’s study? There was only that -one fire. - -She would not object. - -Some one was there already, for Lucy heard the words: “A lady to wait, -sir.” - -Old Mr. Emerson was sitting by the fire, with his foot upon a -gout-stool. - -“Oh, Miss Honeychurch, that you should come!” he quavered; and Lucy saw -an alteration in him since last Sunday. - -Not a word would come to her lips. George she had faced, and could have -faced again, but she had forgotten how to treat his father. - -“Miss Honeychurch, dear, we are so sorry! George is so sorry! He -thought he had a right to try. I cannot blame my boy, and yet I wish he -had told me first. He ought not to have tried. I knew nothing about it -at all.” - -If only she could remember how to behave! - -He held up his hand. “But you must not scold him.” - -Lucy turned her back, and began to look at Mr. Beebe’s books. - -“I taught him,” he quavered, “to trust in love. I said: ‘When love -comes, that is reality.’ I said: ‘Passion does not blind. No. Passion -is sanity, and the woman you love, she is the only person you will ever -really understand.’” He sighed: “True, everlastingly true, though my -day is over, and though there is the result. Poor boy! He is so sorry! -He said he knew it was madness when you brought your cousin in; that -whatever you felt you did not mean. Yet”—his voice gathered strength: -he spoke out to make certain—“Miss Honeychurch, do you remember Italy?” - -Lucy selected a book—a volume of Old Testament commentaries. Holding it -up to her eyes, she said: “I have no wish to discuss Italy or any -subject connected with your son.” - -“But you do remember it?” - -“He has misbehaved himself from the first.” - -“I only was told that he loved you last Sunday. I never could judge -behaviour. I—I—suppose he has.” - -Feeling a little steadier, she put the book back and turned round to -him. His face was drooping and swollen, but his eyes, though they were -sunken deep, gleamed with a child’s courage. - -“Why, he has behaved abominably,” she said. “I am glad he is sorry. Do -you know what he did?” - -“Not ‘abominably,’” was the gentle correction. “He only tried when he -should not have tried. You have all you want, Miss Honeychurch: you are -going to marry the man you love. Do not go out of George’s life saying -he is abominable.” - -“No, of course,” said Lucy, ashamed at the reference to Cecil. -“‘Abominable’ is much too strong. I am sorry I used it about your son. -I think I will go to church, after all. My mother and my cousin have -gone. I shall not be so very late—” - -“Especially as he has gone under,” he said quietly. - -“What was that?” - -“Gone under naturally.” He beat his palms together in silence; his head -fell on his chest. - -“I don’t understand.” - -“As his mother did.” - -“But, Mr. Emerson—_Mr. Emerson_—what are you talking about?” - -“When I wouldn’t have George baptized,” said he. - -Lucy was frightened. - -“And she agreed that baptism was nothing, but he caught that fever when -he was twelve and she turned round. She thought it a judgement.” He -shuddered. “Oh, horrible, when we had given up that sort of thing and -broken away from her parents. Oh, horrible—worst of all—worse than -death, when you have made a little clearing in the wilderness, planted -your little garden, let in your sunlight, and then the weeds creep in -again! A judgement! And our boy had typhoid because no clergyman had -dropped water on him in church! Is it possible, Miss Honeychurch? Shall -we slip back into the darkness for ever?” - -“I don’t know,” gasped Lucy. “I don’t understand this sort of thing. I -was not meant to understand it.” - -“But Mr. Eager—he came when I was out, and acted according to his -principles. I don’t blame him or any one... but by the time George was -well she was ill. He made her think about sin, and she went under -thinking about it.” - -It was thus that Mr. Emerson had murdered his wife in the sight of God. - -“Oh, how terrible!” said Lucy, forgetting her own affairs at last. - -“He was not baptized,” said the old man. “I did hold firm.” And he -looked with unwavering eyes at the rows of books, as if—at what -cost!—he had won a victory over them. “My boy shall go back to the -earth untouched.” - -She asked whether young Mr. Emerson was ill. - -“Oh—last Sunday.” He started into the present. “George last Sunday—no, -not ill: just gone under. He is never ill. But he is his mother’s son. -Her eyes were his, and she had that forehead that I think so beautiful, -and he will not think it worth while to live. It was always touch and -go. He will live; but he will not think it worth while to live. He will -never think anything worth while. You remember that church at -Florence?” - -Lucy did remember, and how she had suggested that George should collect -postage stamps. - -“After you left Florence—horrible. Then we took the house here, and he -goes bathing with your brother, and became better. You saw him -bathing?” - -“I am so sorry, but it is no good discussing this affair. I am deeply -sorry about it.” - -“Then there came something about a novel. I didn’t follow it at all; I -had to hear so much, and he minded telling me; he finds me too old. Ah, -well, one must have failures. George comes down to-morrow, and takes me -up to his London rooms. He can’t bear to be about here, and I must be -where he is.” - -“Mr. Emerson,” cried the girl, “don’t leave at least, not on my -account. I am going to Greece. Don’t leave your comfortable house.” - -It was the first time her voice had been kind and he smiled. “How good -everyone is! And look at Mr. Beebe housing me—came over this morning -and heard I was going! Here I am so comfortable with a fire.” - -“Yes, but you won’t go back to London. It’s absurd.” - -“I must be with George; I must make him care to live, and down here he -can’t. He says the thought of seeing you and of hearing about you—I am -not justifying him: I am only saying what has happened.” - -“Oh, Mr. Emerson”—she took hold of his hand—“you mustn’t. I’ve been -bother enough to the world by now. I can’t have you moving out of your -house when you like it, and perhaps losing money through it—all on my -account. You must stop! I am just going to Greece.” - -“All the way to Greece?” - -Her manner altered. - -“To Greece?” - -“So you must stop. You won’t talk about this business, I know. I can -trust you both.” - -“Certainly you can. We either have you in our lives, or leave you to -the life that you have chosen.” - -“I shouldn’t want—” - -“I suppose Mr. Vyse is very angry with George? No, it was wrong of -George to try. We have pushed our beliefs too far. I fancy that we -deserve sorrow.” - -She looked at the books again—black, brown, and that acrid theological -blue. They surrounded the visitors on every side; they were piled on -the tables, they pressed against the very ceiling. To Lucy who could -not see that Mr. Emerson was profoundly religious, and differed from -Mr. Beebe chiefly by his acknowledgment of passion—it seemed dreadful -that the old man should crawl into such a sanctum, when he was unhappy, -and be dependent on the bounty of a clergyman. - -More certain than ever that she was tired, he offered her his chair. - -“No, please sit still. I think I will sit in the carriage.” - -“Miss Honeychurch, you do sound tired.” - -“Not a bit,” said Lucy, with trembling lips. - -“But you are, and there’s a look of George about you. And what were you -saying about going abroad?” - -She was silent. - -“Greece”—and she saw that he was thinking the word over—“Greece; but -you were to be married this year, I thought.” - -“Not till January, it wasn’t,” said Lucy, clasping her hands. Would she -tell an actual lie when it came to the point? - -“I suppose that Mr. Vyse is going with you. I hope—it isn’t because -George spoke that you are both going?” - -“No.” - -“I hope that you will enjoy Greece with Mr. Vyse.” - -“Thank you.” - -At that moment Mr. Beebe came back from church. His cassock was covered -with rain. “That’s all right,” he said kindly. “I counted on you two -keeping each other company. It’s pouring again. The entire -congregation, which consists of your cousin, your mother, and my -mother, stands waiting in the church, till the carriage fetches it. Did -Powell go round?” - -“I think so; I’ll see.” - -“No—of course, I’ll see. How are the Miss Alans?” - -“Very well, thank you.” - -“Did you tell Mr. Emerson about Greece?” - -“I—I did.” - -“Don’t you think it very plucky of her, Mr. Emerson, to undertake the -two Miss Alans? Now, Miss Honeychurch, go back—keep warm. I think three -is such a courageous number to go travelling.” And he hurried off to -the stables. - -“He is not going,” she said hoarsely. “I made a slip. Mr. Vyse does -stop behind in England.” - -Somehow it was impossible to cheat this old man. To George, to Cecil, -she would have lied again; but he seemed so near the end of things, so -dignified in his approach to the gulf, of which he gave one account, -and the books that surrounded him another, so mild to the rough paths -that he had traversed, that the true chivalry—not the worn-out chivalry -of sex, but the true chivalry that all the young may show to all the -old—awoke in her, and, at whatever risk, she told him that Cecil was -not her companion to Greece. And she spoke so seriously that the risk -became a certainty, and he, lifting his eyes, said: “You are leaving -him? You are leaving the man you love?” - -“I—I had to.” - -“Why, Miss Honeychurch, why?” - -Terror came over her, and she lied again. She made the long, convincing -speech that she had made to Mr. Beebe, and intended to make to the -world when she announced that her engagement was no more. He heard her -in silence, and then said: “My dear, I am worried about you. It seems -to me”—dreamily; she was not alarmed—“that you are in a muddle.” - -She shook her head. - -“Take an old man’s word; there’s nothing worse than a muddle in all the -world. It is easy to face Death and Fate, and the things that sound so -dreadful. It is on my muddles that I look back with horror—on the -things that I might have avoided. We can help one another but little. I -used to think I could teach young people the whole of life, but I know -better now, and all my teaching of George has come down to this: beware -of muddle. Do you remember in that church, when you pretended to be -annoyed with me and weren’t? Do you remember before, when you refused -the room with the view? Those were muddles—little, but ominous—and I am -fearing that you are in one now.” She was silent. “Don’t trust me, Miss -Honeychurch. Though life is very glorious, it is difficult.” She was -still silent. “‘Life’ wrote a friend of mine, ‘is a public performance -on the violin, in which you must learn the instrument as you go along.’ -I think he puts it well. Man has to pick up the use of his functions as -he goes along—especially the function of Love.” Then he burst out -excitedly; “That’s it; that’s what I mean. You love George!” And after -his long preamble, the three words burst against Lucy like waves from -the open sea. - -“But you do,” he went on, not waiting for contradiction. “You love the -boy body and soul, plainly, directly, as he loves you, and no other -word expresses it. You won’t marry the other man for his sake.” - -“How dare you!” gasped Lucy, with the roaring of waters in her ears. -“Oh, how like a man!—I mean, to suppose that a woman is always thinking -about a man.” - -“But you are.” - -She summoned physical disgust. - -“You’re shocked, but I mean to shock you. It’s the only hope at times. -I can reach you no other way. You must marry, or your life will be -wasted. You have gone too far to retreat. I have no time for the -tenderness, and the comradeship, and the poetry, and the things that -really matter, and _for which_ you marry. I know that, with George, you -will find them, and that you love him. Then be his wife. He is already -part of you. Though you fly to Greece, and never see him again, or -forget his very name, George will work in your thoughts till you die. -It isn’t possible to love and to part. You will wish that it was. You -can transmute love, ignore it, muddle it, but you can never pull it out -of you. I know by experience that the poets are right: love is -eternal.” - -Lucy began to cry with anger, and though her anger passed away soon, -her tears remained. - -“I only wish poets would say this, too: love is of the body; not the -body, but of the body. Ah! the misery that would be saved if we -confessed that! Ah! for a little directness to liberate the soul! Your -soul, dear Lucy! I hate the word now, because of all the cant with -which superstition has wrapped it round. But we have souls. I cannot -say how they came nor whither they go, but we have them, and I see you -ruining yours. I cannot bear it. It is again the darkness creeping in; -it is hell.” Then he checked himself. “What nonsense I have talked—how -abstract and remote! And I have made you cry! Dear girl, forgive my -prosiness; marry my boy. When I think what life is, and how seldom love -is answered by love—Marry him; it is one of the moments for which the -world was made.” - -She could not understand him; the words were indeed remote. Yet as he -spoke the darkness was withdrawn, veil after veil, and she saw to the -bottom of her soul. - -“Then, Lucy—” - -“You’ve frightened me,” she moaned. “Cecil—Mr. Beebe—the ticket’s -bought—everything.” She fell sobbing into the chair. “I’m caught in the -tangle. I must suffer and grow old away from him. I cannot break the -whole of life for his sake. They trusted me.” - -A carriage drew up at the front-door. - -“Give George my love—once only. Tell him ‘muddle.’” Then she arranged -her veil, while the tears poured over her cheeks inside. - -“Lucy—” - -“No—they are in the hall—oh, please not, Mr. Emerson—they trust me—” - -“But why should they, when you have deceived them?” - -Mr. Beebe opened the door, saying: “Here’s my mother.” - -“You’re not worthy of their trust.” - -“What’s that?” said Mr. Beebe sharply. - -“I was saying, why should you trust her when she deceived you?” - -“One minute, mother.” He came in and shut the door. - -“I don’t follow you, Mr. Emerson. To whom do you refer? Trust whom?” - -“I mean she has pretended to you that she did not love George. They -have loved one another all along.” - -Mr. Beebe looked at the sobbing girl. He was very quiet, and his white -face, with its ruddy whiskers, seemed suddenly inhuman. A long black -column, he stood and awaited her reply. - -“I shall never marry him,” quavered Lucy. - -A look of contempt came over him, and he said, “Why not?” - -“Mr. Beebe—I have misled you—I have misled myself—” - -“Oh, rubbish, Miss Honeychurch!” - -“It is not rubbish!” said the old man hotly. “It’s the part of people -that you don’t understand.” - -Mr. Beebe laid his hand on the old man’s shoulder pleasantly. - -“Lucy! Lucy!” called voices from the carriage. - -“Mr. Beebe, could you help me?” - -He looked amazed at the request, and said in a low, stern voice: “I am -more grieved than I can possibly express. It is lamentable, -lamentable—incredible.” - -“What’s wrong with the boy?” fired up the other again. - -“Nothing, Mr. Emerson, except that he no longer interests me. Marry -George, Miss Honeychurch. He will do admirably.” - -He walked out and left them. They heard him guiding his mother -up-stairs. - -“Lucy!” the voices called. - -She turned to Mr. Emerson in despair. But his face revived her. It was -the face of a saint who understood. - -“Now it is all dark. Now Beauty and Passion seem never to have existed. -I know. But remember the mountains over Florence and the view. Ah, -dear, if I were George, and gave you one kiss, it would make you brave. -You have to go cold into a battle that needs warmth, out into the -muddle that you have made yourself; and your mother and all your -friends will despise you, oh, my darling, and rightly, if it is ever -right to despise. George still dark, all the tussle and the misery -without a word from him. Am I justified?” Into his own eyes tears came. -“Yes, for we fight for more than Love or Pleasure; there is Truth. -Truth counts, Truth does count.” - -“You kiss me,” said the girl. “You kiss me. I will try.” - -He gave her a sense of deities reconciled, a feeling that, in gaining -the man she loved, she would gain something for the whole world. -Throughout the squalor of her homeward drive—she spoke at once—his -salutation remained. He had robbed the body of its taint, the world’s -taunts of their sting; he had shown her the holiness of direct desire. -She “never exactly understood,” she would say in after years, “how he -managed to strengthen her. It was as if he had made her see the whole -of everything at once.” - - - - -Chapter XX -The End of the Middle Ages - - -The Miss Alans did go to Greece, but they went by themselves. They -alone of this little company will double Malea and plough the waters of -the Saronic gulf. They alone will visit Athens and Delphi, and either -shrine of intellectual song—that upon the Acropolis, encircled by blue -seas; that under Parnassus, where the eagles build and the bronze -charioteer drives undismayed towards infinity. Trembling, anxious, -cumbered with much digestive bread, they did proceed to Constantinople, -they did go round the world. The rest of us must be contented with a -fair, but a less arduous, goal. Italiam petimus: we return to the -Pension Bertolini. - -George said it was his old room. - -“No, it isn’t,” said Lucy; “because it is the room I had, and I had -your father’s room. I forget why; Charlotte made me, for some reason.” - -He knelt on the tiled floor, and laid his face in her lap. - -“George, you baby, get up.” - -“Why shouldn’t I be a baby?” murmured George. - -Unable to answer this question, she put down his sock, which she was -trying to mend, and gazed out through the window. It was evening and -again the spring. - -“Oh, bother Charlotte,” she said thoughtfully. “What can such people be -made of?” - -“Same stuff as parsons are made of.” - -“Nonsense!” - -“Quite right. It is nonsense.” - -“Now you get up off the cold floor, or you’ll be starting rheumatism -next, and you stop laughing and being so silly.” - -“Why shouldn’t I laugh?” he asked, pinning her with his elbows, and -advancing his face to hers. “What’s there to cry at? Kiss me here.” He -indicated the spot where a kiss would be welcome. - -He was a boy after all. When it came to the point, it was she who -remembered the past, she into whose soul the iron had entered, she who -knew whose room this had been last year. It endeared him to her -strangely that he should be sometimes wrong. - -“Any letters?” he asked. - -“Just a line from Freddy.” - -“Now kiss me here; then here.” - -Then, threatened again with rheumatism, he strolled to the window, -opened it (as the English will), and leant out. There was the parapet, -there the river, there to the left the beginnings of the hills. The -cab-driver, who at once saluted him with the hiss of a serpent, might -be that very Phaethon who had set this happiness in motion twelve -months ago. A passion of gratitude—all feelings grow to passions in the -South—came over the husband, and he blessed the people and the things -who had taken so much trouble about a young fool. He had helped -himself, it is true, but how stupidly! - -All the fighting that mattered had been done by others—by Italy, by his -father, by his wife. - -“Lucy, you come and look at the cypresses; and the church, whatever its -name is, still shows.” - -“San Miniato. I’ll just finish your sock.” - -“Signorino, domani faremo uno giro,” called the cabman, with engaging -certainty. - -George told him that he was mistaken; they had no money to throw away -on driving. - -And the people who had not meant to help—the Miss Lavishes, the Cecils, -the Miss Bartletts! Ever prone to magnify Fate, George counted up the -forces that had swept him into this contentment. - -“Anything good in Freddy’s letter?” - -“Not yet.” - -His own content was absolute, but hers held bitterness: the -Honeychurches had not forgiven them; they were disgusted at her past -hypocrisy; she had alienated Windy Corner, perhaps for ever. - -“What does he say?” - -“Silly boy! He thinks he’s being dignified. He knew we should go off in -the spring—he has known it for six months—that if mother wouldn’t give -her consent we should take the thing into our own hands. They had fair -warning, and now he calls it an elopement. Ridiculous boy—” - -“Signorino, domani faremo uno giro—” - -“But it will all come right in the end. He has to build us both up from -the beginning again. I wish, though, that Cecil had not turned so -cynical about women. He has, for the second time, quite altered. Why -will men have theories about women? I haven’t any about men. I wish, -too, that Mr. Beebe—” - -“You may well wish that.” - -“He will never forgive us—I mean, he will never be interested in us -again. I wish that he did not influence them so much at Windy Corner. I -wish he hadn’t—But if we act the truth, the people who really love us -are sure to come back to us in the long run.” - -“Perhaps.” Then he said more gently: “Well, I acted the truth—the only -thing I did do—and you came back to me. So possibly you know.” He -turned back into the room. “Nonsense with that sock.” He carried her to -the window, so that she, too, saw all the view. They sank upon their -knees, invisible from the road, they hoped, and began to whisper one -another’s names. Ah! it was worth while; it was the great joy that they -had expected, and countless little joys of which they had never dreamt. -They were silent. - -“Signorino, domani faremo—” - -“Oh, bother that man!” - -But Lucy remembered the vendor of photographs and said, “No, don’t be -rude to him.” Then with a catching of her breath, she murmured: “Mr. -Eager and Charlotte, dreadful frozen Charlotte. How cruel she would be -to a man like that!” - -“Look at the lights going over the bridge.” - -“But this room reminds me of Charlotte. How horrible to grow old in -Charlotte’s way! To think that evening at the rectory that she -shouldn’t have heard your father was in the house. For she would have -stopped me going in, and he was the only person alive who could have -made me see sense. You couldn’t have made me. When I am very happy”—she -kissed him—“I remember on how little it all hangs. If Charlotte had -only known, she would have stopped me going in, and I should have gone -to silly Greece, and become different for ever.” - -“But she did know,” said George; “she did see my father, surely. He -said so.” - -“Oh, no, she didn’t see him. She was upstairs with old Mrs. Beebe, -don’t you remember, and then went straight to the church. She said so.” - -George was obstinate again. “My father,” said he, “saw her, and I -prefer his word. He was dozing by the study fire, and he opened his -eyes, and there was Miss Bartlett. A few minutes before you came in. -She was turning to go as he woke up. He didn’t speak to her.” - -Then they spoke of other things—the desultory talk of those who have -been fighting to reach one another, and whose reward is to rest quietly -in each other’s arms. It was long ere they returned to Miss Bartlett, -but when they did her behaviour seemed more interesting. George, who -disliked any darkness, said: “It’s clear that she knew. Then, why did -she risk the meeting? She knew he was there, and yet she went to -church.” - -They tried to piece the thing together. - -As they talked, an incredible solution came into Lucy’s mind. She -rejected it, and said: “How like Charlotte to undo her work by a feeble -muddle at the last moment.” But something in the dying evening, in the -roar of the river, in their very embrace warned them that her words -fell short of life, and George whispered: “Or did she mean it?” - -“Mean what?” - -“Signorino, domani faremo uno giro—” - -Lucy bent forward and said with gentleness: “Lascia, prego, lascia. -Siamo sposati.” - -“Scusi tanto, signora,” he replied in tones as gentle and whipped up -his horse. - -“Buona sera—e grazie.” - -“Niente.” - -The cabman drove away singing. - -“Mean what, George?” - -He whispered: “Is it this? Is this possible? I’ll put a marvel to you. -That your cousin has always hoped. That from the very first moment we -met, she hoped, far down in her mind, that we should be like this—of -course, very far down. That she fought us on the surface, and yet she -hoped. I can’t explain her any other way. Can you? Look how she kept me -alive in you all the summer; how she gave you no peace; how month after -month she became more eccentric and unreliable. The sight of us haunted -her—or she couldn’t have described us as she did to her friend. There -are details—it burnt. I read the book afterwards. She is not frozen, -Lucy, she is not withered up all through. She tore us apart twice, but -in the rectory that evening she was given one more chance to make us -happy. We can never make friends with her or thank her. But I do -believe that, far down in her heart, far below all speech and -behaviour, she is glad.” - -“It is impossible,” murmured Lucy, and then, remembering the -experiences of her own heart, she said: “No—it is just possible.” - -Youth enwrapped them; the song of Phaethon announced passion requited, -love attained. But they were conscious of a love more mysterious than -this. The song died away; they heard the river, bearing down the snows -of winter into the Mediterranean. - - - - -*** END OF THE PROJECT GUTENBERG EBOOK A ROOM WITH A VIEW *** - - - - -Updated editions will replace the previous one—the old editions will -be renamed. - -Creating the works from print editions not protected by U.S. copyright -law means that no one owns a United States copyright in these works, -so the Foundation (and you!) can copy and distribute it in the United -States without permission and without paying copyright -royalties. Special rules, set forth in the General Terms of Use part -of this license, apply to copying and distributing Project -Gutenberg™ electronic works to protect the PROJECT GUTENBERG™ -concept and trademark. Project Gutenberg is a registered trademark, -and may not be used if you charge for an eBook, except by following -the terms of the trademark license, including paying royalties for use -of the Project Gutenberg trademark. If you do not charge anything for -copies of this eBook, complying with the trademark license is very -easy. You may use this eBook for nearly any purpose such as creation -of derivative works, reports, performances and research. Project -Gutenberg eBooks may be modified and printed and given away—you may -do practically ANYTHING in the United States with eBooks not protected -by U.S. copyright law. Redistribution is subject to the trademark -license, especially commercial redistribution. - - -START: FULL LICENSE - -THE FULL PROJECT GUTENBERG LICENSE - -PLEASE READ THIS BEFORE YOU DISTRIBUTE OR USE THIS WORK - -To protect the Project Gutenberg™ mission of promoting the free -distribution of electronic works, by using or distributing this work -(or any other work associated in any way with the phrase “Project -Gutenberg”), you agree to comply with all the terms of the Full -Project Gutenberg™ License available with this file or online at -www.gutenberg.org/license. - -Section 1. General Terms of Use and Redistributing Project Gutenberg™ -electronic works - -1.A. By reading or using any part of this Project Gutenberg™ -electronic work, you indicate that you have read, understand, agree to -and accept all the terms of this license and intellectual property -(trademark/copyright) agreement. If you do not agree to abide by all -the terms of this agreement, you must cease using and return or -destroy all copies of Project Gutenberg™ electronic works in your -possession. If you paid a fee for obtaining a copy of or access to a -Project Gutenberg™ electronic work and you do not agree to be bound -by the terms of this agreement, you may obtain a refund from the person -or entity to whom you paid the fee as set forth in paragraph 1.E.8. - -1.B. “Project Gutenberg” is a registered trademark. It may only be -used on or associated in any way with an electronic work by people who -agree to be bound by the terms of this agreement. There are a few -things that you can do with most Project Gutenberg™ electronic works -even without complying with the full terms of this agreement. See -paragraph 1.C below. There are a lot of things you can do with Project -Gutenberg™ electronic works if you follow the terms of this -agreement and help preserve free future access to Project Gutenberg™ -electronic works. See paragraph 1.E below. - -1.C. The Project Gutenberg Literary Archive Foundation (“the -Foundation” or PGLAF), owns a compilation copyright in the collection -of Project Gutenberg™ electronic works. Nearly all the individual -works in the collection are in the public domain in the United -States. If an individual work is unprotected by copyright law in the -United States and you are located in the United States, we do not -claim a right to prevent you from copying, distributing, performing, -displaying or creating derivative works based on the work as long as -all references to Project Gutenberg are removed. Of course, we hope -that you will support the Project Gutenberg™ mission of promoting -free access to electronic works by freely sharing Project Gutenberg™ -works in compliance with the terms of this agreement for keeping the -Project Gutenberg™ name associated with the work. You can easily -comply with the terms of this agreement by keeping this work in the -same format with its attached full Project Gutenberg™ License when -you share it without charge with others. - -1.D. The copyright laws of the place where you are located also govern -what you can do with this work. Copyright laws in most countries are -in a constant state of change. If you are outside the United States, -check the laws of your country in addition to the terms of this -agreement before downloading, copying, displaying, performing, -distributing or creating derivative works based on this work or any -other Project Gutenberg™ work. The Foundation makes no -representations concerning the copyright status of any work in any -country other than the United States. - -1.E. Unless you have removed all references to Project Gutenberg: - -1.E.1. The following sentence, with active links to, or other -immediate access to, the full Project Gutenberg™ License must appear -prominently whenever any copy of a Project Gutenberg™ work (any work -on which the phrase “Project Gutenberg” appears, or with which the -phrase “Project Gutenberg” is associated) is accessed, displayed, -performed, viewed, copied or distributed: - - This eBook is for the use of anyone anywhere in the United States and most - other parts of the world at no cost and with almost no restrictions - whatsoever. You may copy it, give it away or re-use it under the terms - of the Project Gutenberg License included with this eBook or online - at www.gutenberg.org. If you - are not located in the United States, you will have to check the laws - of the country where you are located before using this eBook. - -1.E.2. If an individual Project Gutenberg™ electronic work is -derived from texts not protected by U.S. copyright law (does not -contain a notice indicating that it is posted with permission of the -copyright holder), the work can be copied and distributed to anyone in -the United States without paying any fees or charges. If you are -redistributing or providing access to a work with the phrase “Project -Gutenberg” associated with or appearing on the work, you must comply -either with the requirements of paragraphs 1.E.1 through 1.E.7 or -obtain permission for the use of the work and the Project Gutenberg™ -trademark as set forth in paragraphs 1.E.8 or 1.E.9. - -1.E.3. If an individual Project Gutenberg™ electronic work is posted -with the permission of the copyright holder, your use and distribution -must comply with both paragraphs 1.E.1 through 1.E.7 and any -additional terms imposed by the copyright holder. Additional terms -will be linked to the Project Gutenberg™ License for all works -posted with the permission of the copyright holder found at the -beginning of this work. - -1.E.4. Do not unlink or detach or remove the full Project Gutenberg™ -License terms from this work, or any files containing a part of this -work or any other work associated with Project Gutenberg™. - -1.E.5. Do not copy, display, perform, distribute or redistribute this -electronic work, or any part of this electronic work, without -prominently displaying the sentence set forth in paragraph 1.E.1 with -active links or immediate access to the full terms of the Project -Gutenberg™ License. - -1.E.6. You may convert to and distribute this work in any binary, -compressed, marked up, nonproprietary or proprietary form, including -any word processing or hypertext form. However, if you provide access -to or distribute copies of a Project Gutenberg™ work in a format -other than “Plain Vanilla ASCII” or other format used in the official -version posted on the official Project Gutenberg™ website -(www.gutenberg.org), you must, at no additional cost, fee or expense -to the user, provide a copy, a means of exporting a copy, or a means -of obtaining a copy upon request, of the work in its original “Plain -Vanilla ASCII” or other form. Any alternate format must include the -full Project Gutenberg™ License as specified in paragraph 1.E.1. - -1.E.7. Do not charge a fee for access to, viewing, displaying, -performing, copying or distributing any Project Gutenberg™ works -unless you comply with paragraph 1.E.8 or 1.E.9. - -1.E.8. You may charge a reasonable fee for copies of or providing -access to or distributing Project Gutenberg™ electronic works -provided that: - - • You pay a royalty fee of 20% of the gross profits you derive from - the use of Project Gutenberg™ works calculated using the method - you already use to calculate your applicable taxes. The fee is owed - to the owner of the Project Gutenberg™ trademark, but he has - agreed to donate royalties under this paragraph to the Project - Gutenberg Literary Archive Foundation. Royalty payments must be paid - within 60 days following each date on which you prepare (or are - legally required to prepare) your periodic tax returns. Royalty - payments should be clearly marked as such and sent to the Project - Gutenberg Literary Archive Foundation at the address specified in - Section 4, “Information about donations to the Project Gutenberg - Literary Archive Foundation.” - - • You provide a full refund of any money paid by a user who notifies - you in writing (or by e-mail) within 30 days of receipt that s/he - does not agree to the terms of the full Project Gutenberg™ - License. You must require such a user to return or destroy all - copies of the works possessed in a physical medium and discontinue - all use of and all access to other copies of Project Gutenberg™ - works. - - • You provide, in accordance with paragraph 1.F.3, a full refund of - any money paid for a work or a replacement copy, if a defect in the - electronic work is discovered and reported to you within 90 days of - receipt of the work. - - • You comply with all other terms of this agreement for free - distribution of Project Gutenberg™ works. - - -1.E.9. If you wish to charge a fee or distribute a Project -Gutenberg™ electronic work or group of works on different terms than -are set forth in this agreement, you must obtain permission in writing -from the Project Gutenberg Literary Archive Foundation, the manager of -the Project Gutenberg™ trademark. Contact the Foundation as set -forth in Section 3 below. - -1.F. - -1.F.1. Project Gutenberg volunteers and employees expend considerable -effort to identify, do copyright research on, transcribe and proofread -works not protected by U.S. copyright law in creating the Project -Gutenberg™ collection. Despite these efforts, Project Gutenberg™ -electronic works, and the medium on which they may be stored, may -contain “Defects,” such as, but not limited to, incomplete, inaccurate -or corrupt data, transcription errors, a copyright or other -intellectual property infringement, a defective or damaged disk or -other medium, a computer virus, or computer codes that damage or -cannot be read by your equipment. - -1.F.2. LIMITED WARRANTY, DISCLAIMER OF DAMAGES - Except for the “Right -of Replacement or Refund” described in paragraph 1.F.3, the Project -Gutenberg Literary Archive Foundation, the owner of the Project -Gutenberg™ trademark, and any other party distributing a Project -Gutenberg™ electronic work under this agreement, disclaim all -liability to you for damages, costs and expenses, including legal -fees. YOU AGREE THAT YOU HAVE NO REMEDIES FOR NEGLIGENCE, STRICT -LIABILITY, BREACH OF WARRANTY OR BREACH OF CONTRACT EXCEPT THOSE -PROVIDED IN PARAGRAPH 1.F.3. YOU AGREE THAT THE FOUNDATION, THE -TRADEMARK OWNER, AND ANY DISTRIBUTOR UNDER THIS AGREEMENT WILL NOT BE -LIABLE TO YOU FOR ACTUAL, DIRECT, INDIRECT, CONSEQUENTIAL, PUNITIVE OR -INCIDENTAL DAMAGES EVEN IF YOU GIVE NOTICE OF THE POSSIBILITY OF SUCH -DAMAGE. - -1.F.3. LIMITED RIGHT OF REPLACEMENT OR REFUND - If you discover a -defect in this electronic work within 90 days of receiving it, you can -receive a refund of the money (if any) you paid for it by sending a -written explanation to the person you received the work from. If you -received the work on a physical medium, you must return the medium -with your written explanation. The person or entity that provided you -with the defective work may elect to provide a replacement copy in -lieu of a refund. If you received the work electronically, the person -or entity providing it to you may choose to give you a second -opportunity to receive the work electronically in lieu of a refund. If -the second copy is also defective, you may demand a refund in writing -without further opportunities to fix the problem. - -1.F.4. Except for the limited right of replacement or refund set forth -in paragraph 1.F.3, this work is provided to you ‘AS-IS’, WITH NO -OTHER WARRANTIES OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT -LIMITED TO WARRANTIES OF MERCHANTABILITY OR FITNESS FOR ANY PURPOSE. - -1.F.5. Some states do not allow disclaimers of certain implied -warranties or the exclusion or limitation of certain types of -damages. If any disclaimer or limitation set forth in this agreement -violates the law of the state applicable to this agreement, the -agreement shall be interpreted to make the maximum disclaimer or -limitation permitted by the applicable state law. The invalidity or -unenforceability of any provision of this agreement shall not void the -remaining provisions. - -1.F.6. INDEMNITY - You agree to indemnify and hold the Foundation, the -trademark owner, any agent or employee of the Foundation, anyone -providing copies of Project Gutenberg™ electronic works in -accordance with this agreement, and any volunteers associated with the -production, promotion and distribution of Project Gutenberg™ -electronic works, harmless from all liability, costs and expenses, -including legal fees, that arise directly or indirectly from any of -the following which you do or cause to occur: (a) distribution of this -or any Project Gutenberg™ work, (b) alteration, modification, or -additions or deletions to any Project Gutenberg™ work, and (c) any -Defect you cause. - -Section 2. Information about the Mission of Project Gutenberg™ - -Project Gutenberg™ is synonymous with the free distribution of -electronic works in formats readable by the widest variety of -computers including obsolete, old, middle-aged and new computers. It -exists because of the efforts of hundreds of volunteers and donations -from people in all walks of life. - -Volunteers and financial support to provide volunteers with the -assistance they need are critical to reaching Project Gutenberg™’s -goals and ensuring that the Project Gutenberg™ collection will -remain freely available for generations to come. In 2001, the Project -Gutenberg Literary Archive Foundation was created to provide a secure -and permanent future for Project Gutenberg™ and future -generations. To learn more about the Project Gutenberg Literary -Archive Foundation and how your efforts and donations can help, see -Sections 3 and 4 and the Foundation information page at www.gutenberg.org. - -Section 3. Information about the Project Gutenberg Literary Archive Foundation - -The Project Gutenberg Literary Archive Foundation is a non-profit -501(c)(3) educational corporation organized under the laws of the -state of Mississippi and granted tax exempt status by the Internal -Revenue Service. The Foundation’s EIN or federal tax identification -number is 64-6221541. Contributions to the Project Gutenberg Literary -Archive Foundation are tax deductible to the full extent permitted by -U.S. federal laws and your state’s laws. - -The Foundation’s business office is located at 809 North 1500 West, -Salt Lake City, UT 84116, (801) 596-1887. Email contact links and up -to date contact information can be found at the Foundation’s website -and official page at www.gutenberg.org/contact - -Section 4. Information about Donations to the Project Gutenberg -Literary Archive Foundation - -Project Gutenberg™ depends upon and cannot survive without widespread -public support and donations to carry out its mission of -increasing the number of public domain and licensed works that can be -freely distributed in machine-readable form accessible by the widest -array of equipment including outdated equipment. Many small donations -($1 to $5,000) are particularly important to maintaining tax exempt -status with the IRS. - -The Foundation is committed to complying with the laws regulating -charities and charitable donations in all 50 states of the United -States. Compliance requirements are not uniform and it takes a -considerable effort, much paperwork and many fees to meet and keep up -with these requirements. We do not solicit donations in locations -where we have not received written confirmation of compliance. To SEND -DONATIONS or determine the status of compliance for any particular state -visit www.gutenberg.org/donate. - -While we cannot and do not solicit contributions from states where we -have not met the solicitation requirements, we know of no prohibition -against accepting unsolicited donations from donors in such states who -approach us with offers to donate. - -International donations are gratefully accepted, but we cannot make -any statements concerning tax treatment of donations received from -outside the United States. U.S. laws alone swamp our small staff. - -Please check the Project Gutenberg web pages for current donation -methods and addresses. Donations are accepted in a number of other -ways including checks, online payments and credit card donations. To -donate, please visit: www.gutenberg.org/donate. - -Section 5. General Information About Project Gutenberg™ electronic works - -Professor Michael S. Hart was the originator of the Project -Gutenberg™ concept of a library of electronic works that could be -freely shared with anyone. For forty years, he produced and -distributed Project Gutenberg™ eBooks with only a loose network of -volunteer support. - -Project Gutenberg™ eBooks are often created from several printed -editions, all of which are confirmed as not protected by copyright in -the U.S. unless a copyright notice is included. Thus, we do not -necessarily keep eBooks in compliance with any particular paper -edition. - -Most people start at our website which has the main PG search -facility: www.gutenberg.org. - -This website includes information about Project Gutenberg™, -including how to make donations to the Project Gutenberg Literary -Archive Foundation, how to help produce our new eBooks, and how to -subscribe to our email newsletter to hear about new eBooks. - diff --git a/backend/reconcile/tests/test.rs b/backend/reconcile/tests/test.rs deleted file mode 100644 index 088a93e9..00000000 --- a/backend/reconcile/tests/test.rs +++ /dev/null @@ -1,76 +0,0 @@ -mod example_document; - -use std::{fs, path::Path}; - -use example_document::ExampleDocument; -use reconcile::{reconcile, reconcile_with_cursors}; -use serde::Deserialize; - -#[test] -fn test_document_one_way_without_cursors() { - for doc in &get_all_documents() { - doc.assert_eq_without_cursors(&reconcile( - &doc.parent(), - &doc.left().text, - &doc.right().text, - )); - } -} - -#[test] -fn test_document_one_way_with_cursors() { - for doc in &get_all_documents() { - doc.assert_eq(&reconcile_with_cursors( - &doc.parent(), - doc.left(), - doc.right(), - )); - } -} - -#[test] -fn test_document_inverse_way_without_cursors() { - for doc in &get_all_documents() { - doc.assert_eq_without_cursors(&reconcile( - &doc.parent(), - &doc.right().text, - &doc.left().text, - )); - } -} - -#[test] -fn test_document_inverse_way_with_cursors() { - for doc in &get_all_documents() { - doc.assert_eq(&reconcile_with_cursors( - &doc.parent(), - doc.right(), - doc.left(), - )); - } -} - -fn get_all_documents() -> Vec<ExampleDocument> { - let examples_dir = Path::new("tests/examples"); - let entries = fs::read_dir(examples_dir) - .expect("Failed to read examples directory") - .collect::<Vec<_>>(); - - let mut documents = Vec::new(); - - for entry in entries { - let entry = entry.expect("Failed to read directory entry"); - let path = entry.path(); - - if path.is_file() && path.extension().and_then(|ext| ext.to_str()) == Some("yml") { - let file = fs::File::open(&path).expect("Failed to open example file"); - for document in serde_yaml::Deserializer::from_reader(file) { - let doc = - ExampleDocument::deserialize(document).expect("Failed to deserialize document"); - documents.push(doc); - } - } - } - - documents -} diff --git a/backend/sync_lib/Cargo.toml b/backend/sync_lib/Cargo.toml deleted file mode 100644 index 72f3de87..00000000 --- a/backend/sync_lib/Cargo.toml +++ /dev/null @@ -1,32 +0,0 @@ -[package] -name = "sync_lib" -version.workspace = true -edition.workspace = true -authors.workspace = true -license.workspace = true -repository.workspace = true - -[lib] -crate-type = ["cdylib", "rlib"] - -[dependencies] -base64 = "0.22.1" -reconcile = { path = "../reconcile" } -wasm-bindgen = "0.2.99" -thiserror = { workspace = true } - -# The `console_error_panic_hook` crate provides better debugging of panics by -# logging them with `console.error`. This is great for development, but requires -# all the `std::fmt` and `std::panicking` infrastructure, so isn't great for -# code size when deploying. -console_error_panic_hook = { version = "0.1.7", optional = true } - -[dev-dependencies] -wasm-bindgen-test = "0.3.49" -insta = "1.42.2" - -[features] -default = ["console_error_panic_hook"] - -[lints] -workspace = true diff --git a/backend/sync_lib/pkg/package.json b/backend/sync_lib/pkg/package.json deleted file mode 100644 index 9bb9b50e..00000000 --- a/backend/sync_lib/pkg/package.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "name": "sync_lib", - "type": "module", - "collaborators": [ - "Andras Schmelczer <andras@schmelczer.dev>" - ], - "version": "0.4.0", - "license": "MIT", - "repository": { - "type": "git", - "url": "https://github.com/schmelczer/vault-link" - }, - "files": [ - "sync_lib_bg.wasm", - "sync_lib.js", - "sync_lib.d.ts" - ], - "main": "sync_lib.js", - "types": "sync_lib.d.ts", - "sideEffects": [ - "./snippets/*" - ] -} \ No newline at end of file diff --git a/backend/sync_lib/src/cursor.rs b/backend/sync_lib/src/cursor.rs deleted file mode 100644 index 2f7135eb..00000000 --- a/backend/sync_lib/src/cursor.rs +++ /dev/null @@ -1,88 +0,0 @@ -use wasm_bindgen::prelude::*; - -/// Wrapper type to expose `TextWithCursors` to JS. -#[wasm_bindgen] -#[derive(Debug, Clone, PartialEq)] -pub struct TextWithCursors { - text: String, - cursors: Vec<CursorPosition>, -} - -#[wasm_bindgen] -impl TextWithCursors { - #[wasm_bindgen(constructor)] - #[must_use] - pub fn new(text: String, cursors: Vec<CursorPosition>) -> Self { Self { text, cursors } } - - #[must_use] - pub fn text(&self) -> String { self.text.clone() } - - #[must_use] - pub fn cursors(&self) -> Vec<CursorPosition> { self.cursors.clone() } -} - -impl From<TextWithCursors> for reconcile::TextWithCursors<'_> { - fn from(owned: TextWithCursors) -> Self { - reconcile::TextWithCursors::new_owned( - owned.text.to_string(), - owned - .cursors - .into_iter() - .map(std::convert::Into::into) - .collect(), - ) - } -} - -impl From<reconcile::TextWithCursors<'_>> for TextWithCursors { - fn from(text_with_cursors: reconcile::TextWithCursors<'_>) -> Self { - TextWithCursors { - text: text_with_cursors.text.into_owned(), - cursors: text_with_cursors - .cursors - .into_iter() - .map(std::convert::Into::into) - .collect(), - } - } -} - -/// Wrapper type to expose `CursorPosition` to JS. -#[wasm_bindgen] -#[derive(Debug, Clone, PartialEq)] -pub struct CursorPosition { - id: usize, - char_index: usize, -} - -#[wasm_bindgen] -impl CursorPosition { - #[wasm_bindgen(constructor)] - #[must_use] - pub fn new(id: usize, char_index: usize) -> Self { Self { id, char_index } } - - #[must_use] - pub fn id(&self) -> usize { self.id } - - #[wasm_bindgen(js_name = characterPosition)] - #[must_use] - pub fn char_index(&self) -> usize { self.char_index } -} - -impl From<CursorPosition> for reconcile::CursorPosition { - fn from(owned: CursorPosition) -> Self { - reconcile::CursorPosition { - id: owned.id, - char_index: owned.char_index, - } - } -} - -impl From<reconcile::CursorPosition> for CursorPosition { - fn from(cursor: reconcile::CursorPosition) -> Self { - CursorPosition { - id: cursor.id, - char_index: cursor.char_index, - } - } -} diff --git a/backend/sync_lib/src/errors.rs b/backend/sync_lib/src/errors.rs deleted file mode 100644 index c09eafb1..00000000 --- a/backend/sync_lib/src/errors.rs +++ /dev/null @@ -1,29 +0,0 @@ -use base64::DecodeError; -use thiserror::Error; -use wasm_bindgen::JsValue; - -#[derive(Error, Debug)] -pub enum SyncLibError { - #[error("Base64 decoding error because of {}", .reason)] - Base64DecodingError { reason: String }, -} - -impl From<DecodeError> for SyncLibError { - fn from(e: DecodeError) -> Self { - SyncLibError::Base64DecodingError { - reason: e.to_string(), - } - } -} - -impl From<std::string::FromUtf8Error> for SyncLibError { - fn from(e: std::string::FromUtf8Error) -> Self { - SyncLibError::Base64DecodingError { - reason: e.to_string(), - } - } -} - -impl From<SyncLibError> for JsValue { - fn from(val: SyncLibError) -> Self { JsValue::from_str(&val.to_string()) } -} diff --git a/backend/sync_lib/src/lib.rs b/backend/sync_lib/src/lib.rs deleted file mode 100644 index d2a54cf9..00000000 --- a/backend/sync_lib/src/lib.rs +++ /dev/null @@ -1,152 +0,0 @@ -//! This crate provides utilities for easily communicating between backend & -//! frontend and ensuring the same logic for encoding and decoding binary data, -//! and 3-way-merging documents in Rust and JavaScript. -//! -//! The crate is designed to be used as a Rust library and as a -//! TypeScript/JavaScript package through WebAssembly (WASM). -//! -//! # Modules -//! -//! - `errors`: Contains error types used in this crate. - -use core::str; - -use base64::{Engine as _, engine::general_purpose::STANDARD}; -use cursor::TextWithCursors; -use errors::SyncLibError; -use wasm_bindgen::prelude::*; - -pub mod cursor; -pub mod errors; - -/// Encode binary data for easy transport over HTTP. Inverse of -/// `base64_to_bytes`. -/// -/// # Arguments -/// -/// - `input`: The binary data to encode. -/// -/// # Returns -/// -/// The base64-encoded string. -/// -/// # Panics -/// -/// If the input is not valid UTF-8. -#[wasm_bindgen(js_name = bytesToBase64)] -#[must_use] -pub fn bytes_to_base64(input: &[u8]) -> String { - set_panic_hook(); - - STANDARD.encode(input) -} - -/// Inverse of `bytes_to_base64`. -/// Decode base64-encoded data into binary data. -/// -/// # Arguments -/// -/// - `input`: The base64-encoded string. -/// -/// # Returns -/// -/// The decoded binary data. -/// -/// # Errors -/// -/// If the input is not valid base64. -#[wasm_bindgen(js_name = base64ToBytes)] -pub fn base64_to_bytes(input: &str) -> Result<Vec<u8>, SyncLibError> { - set_panic_hook(); - - STANDARD.decode(input).map_err(SyncLibError::from) -} - -/// Merge two documents with a common parent. Relies on `reconcile::reconcile` -/// for texts and returns the right document as-is if either of the updated -/// documents is binary. -/// -/// # Arguments -/// -/// - `parent`: The common parent document. -/// - `left`: The left document updated by one user. -/// - `right`: The right document updated by another user. -/// -/// # Returns -/// -/// The merged document. -/// -/// # Panics -/// -/// If any of the input documents are not valid UTF-8 strings. -#[wasm_bindgen] -#[must_use] -pub fn merge(parent: &[u8], left: &[u8], right: &[u8]) -> Vec<u8> { - set_panic_hook(); - - if is_binary(parent) || is_binary(left) || is_binary(right) { - right.to_vec() - } else { - reconcile::reconcile( - str::from_utf8(parent).expect("parent must be valid UTF-8 because it's not binary"), - str::from_utf8(left).expect("left must be valid UTF-8 because it's not binary"), - str::from_utf8(right).expect("right must be valid UTF-8 because it's not binary"), - ) - .into_bytes() - } -} - -/// WASM wrapper around `reconcile::reconcile` for merging text. -#[wasm_bindgen(js_name = mergeText)] -#[must_use] -pub fn merge_text(parent: &str, left: &str, right: &str) -> String { - set_panic_hook(); - - reconcile::reconcile(parent, left, right) -} - -/// WASM wrapper around `reconcile::reconcile_with_cursors` for merging text. -#[wasm_bindgen(js_name = mergeTextWithCursors)] -#[must_use] -pub fn merge_text_with_cursors( - parent: &str, - left: TextWithCursors, - right: TextWithCursors, -) -> TextWithCursors { - set_panic_hook(); - - reconcile::reconcile_with_cursors(parent, left.into(), right.into()).into() -} - -/// Heuristically determine if the given data is a binary or a text file's -/// content. -#[wasm_bindgen(js_name = isBinary)] -#[must_use] -pub fn is_binary(data: &[u8]) -> bool { - set_panic_hook(); - - if data.contains(&0) { - // Even though the NUL character is valid in UTF-8, it's highly suspicious in - // human-readable text. - return true; - } - - std::str::from_utf8(data).is_err() -} - -/// We don't want to support merging structured data like JSON, YAML, etc. -#[wasm_bindgen(js_name = isFileTypeMergable)] -#[must_use] -pub fn is_file_type_mergable(path_or_file_name: &str) -> bool { - set_panic_hook(); - - let file_extension = path_or_file_name.split('.').next_back().unwrap_or_default(); - - matches!(file_extension.to_lowercase().as_str(), "md" | "txt") -} - -fn set_panic_hook() { - // https://github.com/rustwasm/console_error_panic_hook#readme - #[cfg(feature = "console_error_panic_hook")] - console_error_panic_hook::set_once(); -} diff --git a/backend/sync_lib/tests/snapshots/web__base64_to_bytes_error.snap b/backend/sync_lib/tests/snapshots/web__base64_to_bytes_error.snap deleted file mode 100644 index fa178767..00000000 --- a/backend/sync_lib/tests/snapshots/web__base64_to_bytes_error.snap +++ /dev/null @@ -1,10 +0,0 @@ ---- -source: sync_lib/tests/web.rs -expression: base64_to_bytes(input) -snapshot_kind: text ---- -Err( - Base64DecodingError { - reason: "Invalid symbol 61, offset 0.", - }, -) diff --git a/backend/sync_lib/tests/web.rs b/backend/sync_lib/tests/web.rs deleted file mode 100644 index cf82aa7e..00000000 --- a/backend/sync_lib/tests/web.rs +++ /dev/null @@ -1,99 +0,0 @@ -use insta::assert_debug_snapshot; -use sync_lib::{ - cursor::{CursorPosition, TextWithCursors}, - *, -}; -use wasm_bindgen_test::*; - -#[wasm_bindgen_test(unsupported = test)] -fn test_bytes_to_base64() { - let input = b"hello"; - let expected = "aGVsbG8="; - assert_eq!(bytes_to_base64(input), expected); -} - -#[wasm_bindgen_test(unsupported = test)] -fn test_base64_to_bytes() { - let input = "aGVsbG8="; - let expected = b"hello".to_vec(); - assert_eq!(base64_to_bytes(input).unwrap(), expected); -} - -#[test] // insta doesn't support wasm-bindgen-test -fn test_base64_to_bytes_error() { - let input = "==="; - assert_debug_snapshot!(base64_to_bytes(input)); -} - -#[wasm_bindgen_test(unsupported = test)] -fn test_merge() { - let left = b"hello "; - let right = b"world"; - let result = merge(b"", left, right); - assert_eq!(result, b"hello world"); - - let left = b"\0binary"; - let right = b"other"; - let result = merge(b"", left, right); - assert_eq!(result, right); -} - -#[wasm_bindgen_test(unsupported = test)] -fn test_merge_text() { - let left = "hello "; - let right = "world"; - let result = merge_text("", left, right); - assert_eq!(result, "hello world"); -} - -#[wasm_bindgen_test(unsupported = test)] -fn test_merge_text_with_cursors() { - let result = merge_text_with_cursors( - "hi", - TextWithCursors::new("hi world".to_owned(), vec![]), - TextWithCursors::new( - "hi".to_owned(), - vec![CursorPosition::new(0, 1), CursorPosition::new(1, 2)], - ), - ); - - assert_eq!( - result, - TextWithCursors::new( - "hi world".to_owned(), - vec![CursorPosition::new(0, 1), CursorPosition::new(1, 2)] - ), - ); -} - -#[wasm_bindgen_test(unsupported = test)] -fn merge_binary() { - let left = [0, 1, 2]; - let right = [3, 4, 5]; - assert_eq!(merge(b"", &left, &right), right); -} - -#[wasm_bindgen_test(unsupported = test)] -fn test_is_binary() { - assert!(is_binary(&[0, 159, 146, 150])); - assert!(is_binary(&[0, 12])); - assert!(!is_binary(b"hello")); -} - -#[wasm_bindgen_test(unsupported = test)] -fn test_is_binary_empty() { - assert!(!is_binary(b"")); -} - -#[wasm_bindgen_test(unsupported = test)] -fn test_is_file_type_mergable() { - assert!(is_file_type_mergable(".md")); - assert!(is_file_type_mergable("hi.md")); - assert!(is_file_type_mergable("my/path/to/my/document.md")); - assert!(is_file_type_mergable("hi.MD")); - assert!(is_file_type_mergable("my/path/to/my/DOCUMENT.MD")); - - assert!(!is_file_type_mergable(".json")); - assert!(!is_file_type_mergable("HELLO.JSON")); - assert!(!is_file_type_mergable("my/config.yml")); -} diff --git a/backend/sync_server/Cargo.toml b/backend/sync_server/Cargo.toml deleted file mode 100644 index 3ca2c75a..00000000 --- a/backend/sync_server/Cargo.toml +++ /dev/null @@ -1,40 +0,0 @@ -[package] -name = "sync_server" -version.workspace = true -edition.workspace = true -authors.workspace = true -license.workspace = true -repository.workspace = true - -[dependencies] -sync_lib = { path = "../sync_lib" } - -serde = { workspace = true } -thiserror = { workspace = true } - -tokio = { version = "1.44.2", features = ["full"]} -uuid = { version = "1.16.0", features = ["v4", "serde"] } -log = { version = "0.4.27" } -anyhow = { version = "1.0.98", features = ["backtrace"] } -axum = { version = "0.7.4", features = ["ws", "macros", "tracing", "multipart"]} -axum-extra = { version = "0.9.6", features = ["typed-header"] } -axum_typed_multipart = "0.11.0" -tower-http = { version = "0.6.1", features = ["cors", "trace", "limit", "timeout"] } -tracing = "0.1.41" -tracing-subscriber = { version = "0.3.19", features = ["fmt", "env-filter"]} -sqlx = { version = "0.8.6", features = ["sqlite", "runtime-tokio", "uuid", "chrono"] } -chrono = { version = "0.4.41", features = ["serde"] } -rand = "0.9.0" -sanitize-filename = "0.6.0" -regex = "1.11.1" -clap = { version = "4.5.38", features = ["derive"] } -futures = "0.3.31" -serde_yaml = "0.9.34" -serde_json = "1.0.140" -clap-verbosity-flag = "3.0.3" -bimap = "0.6.3" -ts-rs = { version = "10.1", features = ["uuid-impl", "chrono-impl"] } -serde_with = "3.12.0" - -[lints] -workspace = true diff --git a/frontend/obsidian-plugin/jest.config.js b/frontend/obsidian-plugin/jest.config.js index 8c1027ee..d1cbaca2 100644 --- a/frontend/obsidian-plugin/jest.config.js +++ b/frontend/obsidian-plugin/jest.config.js @@ -1,3 +1,3 @@ module.exports = { - preset: "ts-jest/presets/js-with-babel-esm" + preset: "ts-jest" }; diff --git a/frontend/obsidian-plugin/src/obsidian-file-system.ts b/frontend/obsidian-plugin/src/obsidian-file-system.ts index adf78a16..9609e8b0 100644 --- a/frontend/obsidian-plugin/src/obsidian-file-system.ts +++ b/frontend/obsidian-plugin/src/obsidian-file-system.ts @@ -1,13 +1,9 @@ import type { Stat, Vault, Workspace } from "obsidian"; import { MarkdownView, normalizePath } from "obsidian"; -import type { - FileSystemOperations, - RelativePath, - TextWithCursors -} from "sync-client"; -import { lineAndColumnToPosition } from "./utils/line-and-column-to-position"; +import type { FileSystemOperations, RelativePath } from "sync-client"; import { positionToLineAndColumn } from "./utils/position-to-line-and-column"; -import { getCursorsFromEditor } from "./views/cursors/get-cursors-from-editor"; +import { getSelectionsFromEditor } from "./views/cursors/get-selections-from-editor"; +import type { TextWithCursors, CursorPosition } from "reconcile-text"; export class ObsidianFileSystemOperations implements FileSystemOperations { public constructor( @@ -80,18 +76,18 @@ export class ObsidianFileSystemOperations implements FileSystemOperations { if (view?.file?.path === path) { const text = view.editor.getValue(); - const cursors = getCursorsFromEditor(view.editor).flatMap( - ({ id, start: anchor, end: head }) => [ - { - id: 2 * id, - characterPosition: anchor - }, - { - id: 2 * id + 1, - characterPosition: head - } - ] - ); + const cursors: CursorPosition[] = getSelectionsFromEditor( + view.editor + ).flatMap(({ id, start: anchor, end: head }) => [ + { + id: 2 * id, + position: anchor + }, + { + id: 2 * id + 1, + position: head + } + ]); const result = updater({ text, @@ -109,13 +105,10 @@ export class ObsidianFileSystemOperations implements FileSystemOperations { const from = result.cursors[2 * i]; const to = result.cursors[2 * i + 1]; const { line: fromLine, column: fromColumn } = - positionToLineAndColumn( - result.text, - from.characterPosition - ); + positionToLineAndColumn(result.text, from.position); const { line: toLine, column: toColumn } = - positionToLineAndColumn(result.text, to.characterPosition); + positionToLineAndColumn(result.text, to.position); selections.push({ anchor: { line: fromLine, ch: fromColumn }, diff --git a/frontend/obsidian-plugin/src/vault-link-plugin.ts b/frontend/obsidian-plugin/src/vault-link-plugin.ts index 315e2d19..c013e8f7 100644 --- a/frontend/obsidian-plugin/src/vault-link-plugin.ts +++ b/frontend/obsidian-plugin/src/vault-link-plugin.ts @@ -1,9 +1,7 @@ import type { Editor, - EventRef, MarkdownFileInfo, TAbstractFile, - Workspace, WorkspaceLeaf } from "obsidian"; import type { MarkdownView } from "obsidian"; @@ -13,7 +11,6 @@ import { HistoryView } from "./views/history/history-view"; import { StatusBar } from "./views/status-bar/status-bar"; import { LogsView } from "./views/logs/logs-view"; import { StatusDescription } from "./views/status-description/status-description"; -import type { CursorSpan, RelativePath } from "sync-client"; import { SyncClient, rateLimit, DEFAULT_SETTINGS } from "sync-client"; import { ObsidianFileSystemOperations } from "./obsidian-file-system"; import { SyncSettingsTab } from "./views/settings/settings-tab"; @@ -24,7 +21,6 @@ import { remoteCursorsPlugin, setCursors } from "./views/cursors/remote-cursors-plugin"; -import { getCursorsFromEditor } from "./views/cursors/get-cursors-from-editor"; import { LocalCursorUpdateListener } from "./views/cursors/local-cursor-update-listener"; const MIN_WAIT_BETWEEN_UPDATES_IN_MS = 250; diff --git a/frontend/obsidian-plugin/src/views/cursors/get-cursors-from-editor.ts b/frontend/obsidian-plugin/src/views/cursors/get-selections-from-editor.ts similarity index 80% rename from frontend/obsidian-plugin/src/views/cursors/get-cursors-from-editor.ts rename to frontend/obsidian-plugin/src/views/cursors/get-selections-from-editor.ts index f5ea0a85..03cce4a8 100644 --- a/frontend/obsidian-plugin/src/views/cursors/get-cursors-from-editor.ts +++ b/frontend/obsidian-plugin/src/views/cursors/get-selections-from-editor.ts @@ -1,13 +1,13 @@ import type { Editor } from "obsidian"; import { lineAndColumnToPosition } from "../../utils/line-and-column-to-position"; -export interface Cursor { +export interface Selection { id: number; start: number; end: number; } -export function getCursorsFromEditor(editor: Editor): Cursor[] { +export function getSelectionsFromEditor(editor: Editor): Selection[] { const text = editor.getValue(); return editor.listSelections().map(({ anchor, head }, i) => ({ id: i, diff --git a/frontend/obsidian-plugin/src/views/cursors/local-cursor-update-listener.ts b/frontend/obsidian-plugin/src/views/cursors/local-cursor-update-listener.ts index 99a9828d..883a92ea 100644 --- a/frontend/obsidian-plugin/src/views/cursors/local-cursor-update-listener.ts +++ b/frontend/obsidian-plugin/src/views/cursors/local-cursor-update-listener.ts @@ -1,20 +1,20 @@ import type { Workspace } from "obsidian"; -import { EventRef, Editor, MarkdownView, MarkdownFileInfo } from "obsidian"; -import type { Logger, SyncClient } from "sync-client"; -import type { Cursor } from "./get-cursors-from-editor"; -import { getCursorsFromEditor } from "./get-cursors-from-editor"; +import { MarkdownView } from "obsidian"; +import type { SyncClient } from "sync-client"; +import type { Selection } from "./get-selections-from-editor"; +import { getSelectionsFromEditor } from "./get-selections-from-editor"; export class LocalCursorUpdateListener { private static readonly UPDATE_INTERVAL_MS = 50; private readonly eventHandle: NodeJS.Timeout; - private lastCursorState: Record<string, Cursor[]> = {}; + private lastCursorState: Record<string, Selection[]> = {}; public constructor( private readonly client: SyncClient, private readonly workspace: Workspace ) { this.eventHandle = setInterval(() => { - this.updateAllCursors(); + this.updateAllSelections(); }, LocalCursorUpdateListener.UPDATE_INTERVAL_MS); } @@ -22,8 +22,8 @@ export class LocalCursorUpdateListener { clearInterval(this.eventHandle); } - private updateAllCursors(): void { - const currentCursors = this.getAllCursors(); + private updateAllSelections(): void { + const currentCursors = this.getAllSelections(); if ( JSON.stringify(this.lastCursorState) === JSON.stringify(currentCursors) @@ -40,8 +40,8 @@ export class LocalCursorUpdateListener { }); } - private getAllCursors(): Record<string, Cursor[]> { - const cursors: Record<string, Cursor[]> = {}; + private getAllSelections(): Record<string, Selection[]> { + const cursors: Record<string, Selection[]> = {}; this.workspace .getLeavesOfType("markdown") .map((leaf) => leaf.view) @@ -51,7 +51,7 @@ export class LocalCursorUpdateListener { if (!file) { return; } - cursors[file.path] = getCursorsFromEditor(view.editor); + cursors[file.path] = getSelectionsFromEditor(view.editor); }); return cursors; } diff --git a/frontend/package-lock.json b/frontend/package-lock.json index 330f85ea..7abb5162 100644 --- a/frontend/package-lock.json +++ b/frontend/package-lock.json @@ -19,16 +19,8 @@ "typescript-eslint": "8.33.1" } }, - "../backend/sync_lib/pkg": { - "name": "sync_lib", - "version": "0.4.0", - "dev": true, - "license": "MIT" - }, "node_modules/@ampproject/remapping": { "version": "2.3.0", - "resolved": "https://registry.npmjs.org/@ampproject/remapping/-/remapping-2.3.0.tgz", - "integrity": "sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw==", "dev": true, "license": "Apache-2.0", "dependencies": { @@ -41,8 +33,6 @@ }, "node_modules/@babel/code-frame": { "version": "7.26.2", - "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.26.2.tgz", - "integrity": "sha512-RJlIHRueQgwWitWgF8OdFYGZX328Ax5BCemNGlqHfplnRT9ESi8JkFlvaVYbS+UubVY6dpv87Fs2u5M29iNFVQ==", "dev": true, "license": "MIT", "dependencies": { @@ -56,8 +46,6 @@ }, "node_modules/@babel/compat-data": { "version": "7.26.8", - "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.26.8.tgz", - "integrity": "sha512-oH5UPLMWR3L2wEFLnFJ1TZXqHufiTKAiLfqw5zkhS4dKXLJ10yVztfil/twG8EDTA4F/tvVNw9nOl4ZMslB8rQ==", "dev": true, "license": "MIT", "engines": { @@ -66,8 +54,6 @@ }, "node_modules/@babel/core": { "version": "7.26.10", - "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.26.10.tgz", - "integrity": "sha512-vMqyb7XCDMPvJFFOaT9kxtiRh42GwlZEg1/uIgtZshS5a/8OaduUfCi7kynKgc3Tw/6Uo2D+db9qBttghhmxwQ==", "dev": true, "license": "MIT", "dependencies": { @@ -97,8 +83,6 @@ }, "node_modules/@babel/core/node_modules/semver": { "version": "6.3.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", - "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", "dev": true, "license": "ISC", "bin": { @@ -107,8 +91,6 @@ }, "node_modules/@babel/generator": { "version": "7.27.0", - "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.27.0.tgz", - "integrity": "sha512-VybsKvpiN1gU1sdMZIp7FcqphVVKEwcuj02x73uvcHE0PTihx1nlBcowYWhDwjpoAXRv43+gDzyggGnn1XZhVw==", "dev": true, "license": "MIT", "dependencies": { @@ -124,8 +106,6 @@ }, "node_modules/@babel/helper-compilation-targets": { "version": "7.27.0", - "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.27.0.tgz", - "integrity": "sha512-LVk7fbXml0H2xH34dFzKQ7TDZ2G4/rVTOrq9V+icbbadjbVxxeFeDsNHv2SrZeWoA+6ZiTyWYWtScEIW07EAcA==", "dev": true, "license": "MIT", "dependencies": { @@ -141,8 +121,6 @@ }, "node_modules/@babel/helper-compilation-targets/node_modules/semver": { "version": "6.3.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", - "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", "dev": true, "license": "ISC", "bin": { @@ -151,8 +129,6 @@ }, "node_modules/@babel/helper-module-imports": { "version": "7.25.9", - "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.25.9.tgz", - "integrity": "sha512-tnUA4RsrmflIM6W6RFTLFSXITtl0wKjgpnLgXyowocVPrbYrLUXSBXDgTs8BlbmIzIdlBySRQjINYs2BAkiLtw==", "dev": true, "license": "MIT", "dependencies": { @@ -165,8 +141,6 @@ }, "node_modules/@babel/helper-module-transforms": { "version": "7.26.0", - "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.26.0.tgz", - "integrity": "sha512-xO+xu6B5K2czEnQye6BHA7DolFFmS3LB7stHZFaOLb1pAwO1HWLS8fXA+eh0A2yIvltPVmx3eNNDBJA2SLHXFw==", "dev": true, "license": "MIT", "dependencies": { @@ -183,8 +157,6 @@ }, "node_modules/@babel/helper-plugin-utils": { "version": "7.26.5", - "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.26.5.tgz", - "integrity": "sha512-RS+jZcRdZdRFzMyr+wcsaqOmld1/EqTghfaBGQQd/WnRdzdlvSZ//kF7U8VQTxf1ynZ4cjUcYgjVGx13ewNPMg==", "dev": true, "license": "MIT", "engines": { @@ -193,8 +165,6 @@ }, "node_modules/@babel/helper-string-parser": { "version": "7.25.9", - "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.25.9.tgz", - "integrity": "sha512-4A/SCr/2KLd5jrtOMFzaKjVtAei3+2r/NChoBNoZ3EyP/+GlhoaEGoWOZUmFmoITP7zOJyHIMm+DYRd8o3PvHA==", "dev": true, "license": "MIT", "engines": { @@ -203,8 +173,6 @@ }, "node_modules/@babel/helper-validator-identifier": { "version": "7.25.9", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.25.9.tgz", - "integrity": "sha512-Ed61U6XJc3CVRfkERJWDz4dJwKe7iLmmJsbOGu9wSloNSFttHV0I8g6UAgb7qnK5ly5bGLPd4oXZlxCdANBOWQ==", "dev": true, "license": "MIT", "engines": { @@ -213,8 +181,6 @@ }, "node_modules/@babel/helper-validator-option": { "version": "7.25.9", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.25.9.tgz", - "integrity": "sha512-e/zv1co8pp55dNdEcCynfj9X7nyUKUXoUEwfXqaZt0omVOmDe9oOTdKStH4GmAw6zxMFs50ZayuMfHDKlO7Tfw==", "dev": true, "license": "MIT", "engines": { @@ -223,8 +189,6 @@ }, "node_modules/@babel/helpers": { "version": "7.27.0", - "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.27.0.tgz", - "integrity": "sha512-U5eyP/CTFPuNE3qk+WZMxFkp/4zUzdceQlfzf7DdGdhp+Fezd7HD+i8Y24ZuTMKX3wQBld449jijbGq6OdGNQg==", "dev": true, "license": "MIT", "dependencies": { @@ -237,8 +201,6 @@ }, "node_modules/@babel/parser": { "version": "7.27.0", - "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.27.0.tgz", - "integrity": "sha512-iaepho73/2Pz7w2eMS0Q5f83+0RKI7i4xmiYeBmDzfRVbQtTOG7Ts0S4HzJVsTMGI9keU8rNfuZr8DKfSt7Yyg==", "dev": true, "license": "MIT", "dependencies": { @@ -253,8 +215,6 @@ }, "node_modules/@babel/plugin-syntax-async-generators": { "version": "7.8.4", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.4.tgz", - "integrity": "sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==", "dev": true, "license": "MIT", "dependencies": { @@ -266,8 +226,6 @@ }, "node_modules/@babel/plugin-syntax-bigint": { "version": "7.8.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-bigint/-/plugin-syntax-bigint-7.8.3.tgz", - "integrity": "sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg==", "dev": true, "license": "MIT", "dependencies": { @@ -279,8 +237,6 @@ }, "node_modules/@babel/plugin-syntax-class-properties": { "version": "7.12.13", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.13.tgz", - "integrity": "sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==", "dev": true, "license": "MIT", "dependencies": { @@ -292,8 +248,6 @@ }, "node_modules/@babel/plugin-syntax-class-static-block": { "version": "7.14.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-class-static-block/-/plugin-syntax-class-static-block-7.14.5.tgz", - "integrity": "sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==", "dev": true, "license": "MIT", "dependencies": { @@ -308,8 +262,6 @@ }, "node_modules/@babel/plugin-syntax-import-attributes": { "version": "7.26.0", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-attributes/-/plugin-syntax-import-attributes-7.26.0.tgz", - "integrity": "sha512-e2dttdsJ1ZTpi3B9UYGLw41hifAubg19AtCu/2I/F1QNVclOBr1dYpTdmdyZ84Xiz43BS/tCUkMAZNLv12Pi+A==", "dev": true, "license": "MIT", "dependencies": { @@ -324,8 +276,6 @@ }, "node_modules/@babel/plugin-syntax-import-meta": { "version": "7.10.4", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-meta/-/plugin-syntax-import-meta-7.10.4.tgz", - "integrity": "sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==", "dev": true, "license": "MIT", "dependencies": { @@ -337,8 +287,6 @@ }, "node_modules/@babel/plugin-syntax-json-strings": { "version": "7.8.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.8.3.tgz", - "integrity": "sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==", "dev": true, "license": "MIT", "dependencies": { @@ -350,8 +298,6 @@ }, "node_modules/@babel/plugin-syntax-jsx": { "version": "7.25.9", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.25.9.tgz", - "integrity": "sha512-ld6oezHQMZsZfp6pWtbjaNDF2tiiCYYDqQszHt5VV437lewP9aSi2Of99CK0D0XB21k7FLgnLcmQKyKzynfeAA==", "dev": true, "license": "MIT", "dependencies": { @@ -366,8 +312,6 @@ }, "node_modules/@babel/plugin-syntax-logical-assignment-operators": { "version": "7.10.4", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-logical-assignment-operators/-/plugin-syntax-logical-assignment-operators-7.10.4.tgz", - "integrity": "sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==", "dev": true, "license": "MIT", "dependencies": { @@ -379,8 +323,6 @@ }, "node_modules/@babel/plugin-syntax-nullish-coalescing-operator": { "version": "7.8.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz", - "integrity": "sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==", "dev": true, "license": "MIT", "dependencies": { @@ -392,8 +334,6 @@ }, "node_modules/@babel/plugin-syntax-numeric-separator": { "version": "7.10.4", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.10.4.tgz", - "integrity": "sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==", "dev": true, "license": "MIT", "dependencies": { @@ -405,8 +345,6 @@ }, "node_modules/@babel/plugin-syntax-object-rest-spread": { "version": "7.8.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz", - "integrity": "sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==", "dev": true, "license": "MIT", "dependencies": { @@ -418,8 +356,6 @@ }, "node_modules/@babel/plugin-syntax-optional-catch-binding": { "version": "7.8.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.8.3.tgz", - "integrity": "sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==", "dev": true, "license": "MIT", "dependencies": { @@ -431,8 +367,6 @@ }, "node_modules/@babel/plugin-syntax-optional-chaining": { "version": "7.8.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.8.3.tgz", - "integrity": "sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==", "dev": true, "license": "MIT", "dependencies": { @@ -444,8 +378,6 @@ }, "node_modules/@babel/plugin-syntax-private-property-in-object": { "version": "7.14.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-private-property-in-object/-/plugin-syntax-private-property-in-object-7.14.5.tgz", - "integrity": "sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==", "dev": true, "license": "MIT", "dependencies": { @@ -460,8 +392,6 @@ }, "node_modules/@babel/plugin-syntax-top-level-await": { "version": "7.14.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.14.5.tgz", - "integrity": "sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==", "dev": true, "license": "MIT", "dependencies": { @@ -476,8 +406,6 @@ }, "node_modules/@babel/plugin-syntax-typescript": { "version": "7.25.9", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.25.9.tgz", - "integrity": "sha512-hjMgRy5hb8uJJjUcdWunWVcoi9bGpJp8p5Ol1229PoN6aytsLwNMgmdftO23wnCLMfVmTwZDWMPNq/D1SY60JQ==", "dev": true, "license": "MIT", "dependencies": { @@ -492,8 +420,6 @@ }, "node_modules/@babel/template": { "version": "7.27.0", - "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.27.0.tgz", - "integrity": "sha512-2ncevenBqXI6qRMukPlXwHKHchC7RyMuu4xv5JBXRfOGVcTy1mXCD12qrp7Jsoxll1EV3+9sE4GugBVRjT2jFA==", "dev": true, "license": "MIT", "dependencies": { @@ -507,8 +433,6 @@ }, "node_modules/@babel/traverse": { "version": "7.27.0", - "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.27.0.tgz", - "integrity": "sha512-19lYZFzYVQkkHkl4Cy4WrAVcqBkgvV2YM2TU3xG6DIwO7O3ecbDPfW3yM3bjAGcqcQHi+CCtjMR3dIEHxsd6bA==", "dev": true, "license": "MIT", "dependencies": { @@ -526,8 +450,6 @@ }, "node_modules/@babel/traverse/node_modules/globals": { "version": "11.12.0", - "resolved": "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz", - "integrity": "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==", "dev": true, "license": "MIT", "engines": { @@ -536,8 +458,6 @@ }, "node_modules/@babel/types": { "version": "7.27.0", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.27.0.tgz", - "integrity": "sha512-H45s8fVLYjbhFH62dIJ3WtmJ6RSPt/3DRO0ZcT2SUiYiQyz3BLVb9ADEnLl91m74aQPS3AzzeajZHYOalWe3bg==", "dev": true, "license": "MIT", "dependencies": { @@ -550,15 +470,11 @@ }, "node_modules/@bcoe/v8-coverage": { "version": "0.2.3", - "resolved": "https://registry.npmjs.org/@bcoe/v8-coverage/-/v8-coverage-0.2.3.tgz", - "integrity": "sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==", "dev": true, "license": "MIT" }, "node_modules/@codemirror/state": { "version": "6.5.2", - "resolved": "https://registry.npmjs.org/@codemirror/state/-/state-6.5.2.tgz", - "integrity": "sha512-FVqsPqtPWKVVL3dPSxy8wEF/ymIEuVzF1PK3VbUgrxXpJUSHQWWZz4JMToquRxnkw+36LTamCZG2iua2Ptq0fA==", "dev": true, "license": "MIT", "peer": true, @@ -568,8 +484,6 @@ }, "node_modules/@codemirror/view": { "version": "6.36.4", - "resolved": "https://registry.npmjs.org/@codemirror/view/-/view-6.36.4.tgz", - "integrity": "sha512-ZQ0V5ovw/miKEXTvjgzRyjnrk9TwriUB1k4R5p7uNnHR9Hus+D1SXHGdJshijEzPFjU25xea/7nhIeSqYFKdbA==", "dev": true, "license": "MIT", "peer": true, @@ -581,8 +495,6 @@ }, "node_modules/@discoveryjs/json-ext": { "version": "0.6.3", - "resolved": "https://registry.npmjs.org/@discoveryjs/json-ext/-/json-ext-0.6.3.tgz", - "integrity": "sha512-4B4OijXeVNOPZlYA2oEwWOTkzyltLao+xbotHQeqN++Rv27Y6s818+n2Qkp8q+Fxhn0t/5lA5X1Mxktud8eayQ==", "dev": true, "license": "MIT", "engines": { @@ -591,8 +503,6 @@ }, "node_modules/@eslint-community/eslint-utils": { "version": "4.7.0", - "resolved": "https://registry.npmjs.org/@eslint-community/eslint-utils/-/eslint-utils-4.7.0.tgz", - "integrity": "sha512-dyybb3AcajC7uha6CvhdVRJqaKyn7w2YKqKyAN37NKYgZT36w+iRb0Dymmc5qEJ549c/S31cMMSFd75bteCpCw==", "dev": true, "license": "MIT", "dependencies": { @@ -610,8 +520,6 @@ }, "node_modules/@eslint-community/eslint-utils/node_modules/eslint-visitor-keys": { "version": "3.4.3", - "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz", - "integrity": "sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==", "dev": true, "license": "Apache-2.0", "engines": { @@ -623,8 +531,6 @@ }, "node_modules/@eslint-community/regexpp": { "version": "4.12.1", - "resolved": "https://registry.npmjs.org/@eslint-community/regexpp/-/regexpp-4.12.1.tgz", - "integrity": "sha512-CCZCDJuduB9OUkFkY2IgppNZMi2lBQgD2qzwXkEia16cge2pijY/aXi96CJMquDMn3nJdlPV1A5KrJEXwfLNzQ==", "dev": true, "license": "MIT", "engines": { @@ -633,8 +539,6 @@ }, "node_modules/@eslint/config-array": { "version": "0.20.0", - "resolved": "https://registry.npmjs.org/@eslint/config-array/-/config-array-0.20.0.tgz", - "integrity": "sha512-fxlS1kkIjx8+vy2SjuCB94q3htSNrufYTXubwiBFeaQHbH6Ipi43gFJq2zCMt6PHhImH3Xmr0NksKDvchWlpQQ==", "dev": true, "license": "Apache-2.0", "dependencies": { @@ -648,8 +552,6 @@ }, "node_modules/@eslint/config-helpers": { "version": "0.2.1", - "resolved": "https://registry.npmjs.org/@eslint/config-helpers/-/config-helpers-0.2.1.tgz", - "integrity": "sha512-RI17tsD2frtDu/3dmI7QRrD4bedNKPM08ziRYaC5AhkGrzIAJelm9kJU1TznK+apx6V+cqRz8tfpEeG3oIyjxw==", "dev": true, "license": "Apache-2.0", "engines": { @@ -658,8 +560,6 @@ }, "node_modules/@eslint/core": { "version": "0.14.0", - "resolved": "https://registry.npmjs.org/@eslint/core/-/core-0.14.0.tgz", - "integrity": "sha512-qIbV0/JZr7iSDjqAc60IqbLdsj9GDt16xQtWD+B78d/HAlvysGdZZ6rpJHGAc2T0FQx1X6thsSPdnoiGKdNtdg==", "dev": true, "license": "Apache-2.0", "dependencies": { @@ -671,8 +571,6 @@ }, "node_modules/@eslint/eslintrc": { "version": "3.3.1", - "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-3.3.1.tgz", - "integrity": "sha512-gtF186CXhIl1p4pJNGZw8Yc6RlshoePRvE0X91oPGb3vZ8pM3qOS9W9NGPat9LziaBV7XrJWGylNQXkGcnM3IQ==", "dev": true, "license": "MIT", "dependencies": { @@ -695,8 +593,6 @@ }, "node_modules/@eslint/js": { "version": "9.28.0", - "resolved": "https://registry.npmjs.org/@eslint/js/-/js-9.28.0.tgz", - "integrity": "sha512-fnqSjGWd/CoIp4EXIxWVK/sHA6DOHN4+8Ix2cX5ycOY7LG0UY8nHCU5pIp2eaE1Mc7Qd8kHspYNzYXT2ojPLzg==", "dev": true, "license": "MIT", "engines": { @@ -708,8 +604,6 @@ }, "node_modules/@eslint/object-schema": { "version": "2.1.6", - "resolved": "https://registry.npmjs.org/@eslint/object-schema/-/object-schema-2.1.6.tgz", - "integrity": "sha512-RBMg5FRL0I0gs51M/guSAj5/e14VQ4tpZnQNWwuDT66P14I43ItmPfIZRhO9fUVIPOAQXU47atlywZ/czoqFPA==", "dev": true, "license": "Apache-2.0", "engines": { @@ -718,8 +612,6 @@ }, "node_modules/@eslint/plugin-kit": { "version": "0.3.1", - "resolved": "https://registry.npmjs.org/@eslint/plugin-kit/-/plugin-kit-0.3.1.tgz", - "integrity": "sha512-0J+zgWxHN+xXONWIyPWKFMgVuJoZuGiIFu8yxk7RJjxkzpGmyja5wRFqZIVtjDVOQpV+Rw0iOAjYPE2eQyjr0w==", "dev": true, "license": "Apache-2.0", "dependencies": { @@ -732,8 +624,6 @@ }, "node_modules/@humanfs/core": { "version": "0.19.1", - "resolved": "https://registry.npmjs.org/@humanfs/core/-/core-0.19.1.tgz", - "integrity": "sha512-5DyQ4+1JEUzejeK1JGICcideyfUbGixgS9jNgex5nqkW+cY7WZhxBigmieN5Qnw9ZosSNVC9KQKyb+GUaGyKUA==", "dev": true, "license": "Apache-2.0", "engines": { @@ -742,8 +632,6 @@ }, "node_modules/@humanfs/node": { "version": "0.16.6", - "resolved": "https://registry.npmjs.org/@humanfs/node/-/node-0.16.6.tgz", - "integrity": "sha512-YuI2ZHQL78Q5HbhDiBA1X4LmYdXCKCMQIfw0pw7piHJwyREFebJUvrQN4cMssyES6x+vfUbx1CIpaQUKYdQZOw==", "dev": true, "license": "Apache-2.0", "dependencies": { @@ -756,8 +644,6 @@ }, "node_modules/@humanfs/node/node_modules/@humanwhocodes/retry": { "version": "0.3.1", - "resolved": "https://registry.npmjs.org/@humanwhocodes/retry/-/retry-0.3.1.tgz", - "integrity": "sha512-JBxkERygn7Bv/GbN5Rv8Ul6LVknS+5Bp6RgDC/O8gEBU/yeH5Ui5C/OlWrTb6qct7LjjfT6Re2NxB0ln0yYybA==", "dev": true, "license": "Apache-2.0", "engines": { @@ -770,8 +656,6 @@ }, "node_modules/@humanwhocodes/module-importer": { "version": "1.0.1", - "resolved": "https://registry.npmjs.org/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz", - "integrity": "sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==", "dev": true, "license": "Apache-2.0", "engines": { @@ -784,8 +668,6 @@ }, "node_modules/@humanwhocodes/retry": { "version": "0.4.2", - "resolved": "https://registry.npmjs.org/@humanwhocodes/retry/-/retry-0.4.2.tgz", - "integrity": "sha512-xeO57FpIu4p1Ri3Jq/EXq4ClRm86dVF2z/+kvFnyqVYRavTZmaFaUBbWCOuuTh0o/g7DSsk6kc2vrS4Vl5oPOQ==", "dev": true, "license": "Apache-2.0", "engines": { @@ -798,8 +680,6 @@ }, "node_modules/@istanbuljs/load-nyc-config": { "version": "1.1.0", - "resolved": "https://registry.npmjs.org/@istanbuljs/load-nyc-config/-/load-nyc-config-1.1.0.tgz", - "integrity": "sha512-VjeHSlIzpv/NyD3N0YuHfXOPDIixcA1q2ZV98wsMqcYlPmv2n3Yb2lYP9XMElnaFVXg5A7YLTeLu6V84uQDjmQ==", "dev": true, "license": "ISC", "dependencies": { @@ -815,8 +695,6 @@ }, "node_modules/@istanbuljs/load-nyc-config/node_modules/argparse": { "version": "1.0.10", - "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz", - "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==", "dev": true, "license": "MIT", "dependencies": { @@ -825,8 +703,6 @@ }, "node_modules/@istanbuljs/load-nyc-config/node_modules/find-up": { "version": "4.1.0", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", - "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", "dev": true, "license": "MIT", "dependencies": { @@ -839,8 +715,6 @@ }, "node_modules/@istanbuljs/load-nyc-config/node_modules/js-yaml": { "version": "3.14.1", - "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.1.tgz", - "integrity": "sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==", "dev": true, "license": "MIT", "dependencies": { @@ -853,8 +727,6 @@ }, "node_modules/@istanbuljs/load-nyc-config/node_modules/locate-path": { "version": "5.0.0", - "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", - "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", "dev": true, "license": "MIT", "dependencies": { @@ -866,8 +738,6 @@ }, "node_modules/@istanbuljs/load-nyc-config/node_modules/p-limit": { "version": "2.3.0", - "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", - "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", "dev": true, "license": "MIT", "dependencies": { @@ -882,8 +752,6 @@ }, "node_modules/@istanbuljs/load-nyc-config/node_modules/p-locate": { "version": "4.1.0", - "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", - "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", "dev": true, "license": "MIT", "dependencies": { @@ -895,8 +763,6 @@ }, "node_modules/@istanbuljs/load-nyc-config/node_modules/resolve-from": { "version": "5.0.0", - "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz", - "integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==", "dev": true, "license": "MIT", "engines": { @@ -905,8 +771,6 @@ }, "node_modules/@istanbuljs/schema": { "version": "0.1.3", - "resolved": "https://registry.npmjs.org/@istanbuljs/schema/-/schema-0.1.3.tgz", - "integrity": "sha512-ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA==", "dev": true, "license": "MIT", "engines": { @@ -915,8 +779,6 @@ }, "node_modules/@jest/console": { "version": "29.7.0", - "resolved": "https://registry.npmjs.org/@jest/console/-/console-29.7.0.tgz", - "integrity": "sha512-5Ni4CU7XHQi32IJ398EEP4RrB8eV09sXP2ROqD4bksHrnTree52PsxvX8tpL8LvTZ3pFzXyPbNQReSN41CAhOg==", "dev": true, "license": "MIT", "dependencies": { @@ -933,8 +795,6 @@ }, "node_modules/@jest/core": { "version": "29.7.0", - "resolved": "https://registry.npmjs.org/@jest/core/-/core-29.7.0.tgz", - "integrity": "sha512-n7aeXWKMnGtDA48y8TLWJPJmLmmZ642Ceo78cYWEpiD7FzDgmNDV/GCVRorPABdXLJZ/9wzzgZAlHjXjxDHGsg==", "dev": true, "license": "MIT", "dependencies": { @@ -981,8 +841,6 @@ }, "node_modules/@jest/environment": { "version": "29.7.0", - "resolved": "https://registry.npmjs.org/@jest/environment/-/environment-29.7.0.tgz", - "integrity": "sha512-aQIfHDq33ExsN4jP1NWGXhxgQ/wixs60gDiKO+XVMd8Mn0NWPWgc34ZQDTb2jKaUWQ7MuwoitXAsN2XVXNMpAw==", "dev": true, "license": "MIT", "dependencies": { @@ -997,8 +855,6 @@ }, "node_modules/@jest/expect": { "version": "29.7.0", - "resolved": "https://registry.npmjs.org/@jest/expect/-/expect-29.7.0.tgz", - "integrity": "sha512-8uMeAMycttpva3P1lBHB8VciS9V0XAr3GymPpipdyQXbBcuhkLQOSe8E/p92RyAdToS6ZD1tFkX+CkhoECE0dQ==", "dev": true, "license": "MIT", "dependencies": { @@ -1011,8 +867,6 @@ }, "node_modules/@jest/expect-utils": { "version": "29.7.0", - "resolved": "https://registry.npmjs.org/@jest/expect-utils/-/expect-utils-29.7.0.tgz", - "integrity": "sha512-GlsNBWiFQFCVi9QVSx7f5AgMeLxe9YCCs5PuP2O2LdjDAA8Jh9eX7lA1Jq/xdXw3Wb3hyvlFNfZIfcRetSzYcA==", "dev": true, "license": "MIT", "dependencies": { @@ -1024,8 +878,6 @@ }, "node_modules/@jest/fake-timers": { "version": "29.7.0", - "resolved": "https://registry.npmjs.org/@jest/fake-timers/-/fake-timers-29.7.0.tgz", - "integrity": "sha512-q4DH1Ha4TTFPdxLsqDXK1d3+ioSL7yL5oCMJZgDYm6i+6CygW5E5xVr/D1HdsGxjt1ZWSfUAs9OxSB/BNelWrQ==", "dev": true, "license": "MIT", "dependencies": { @@ -1042,8 +894,6 @@ }, "node_modules/@jest/globals": { "version": "29.7.0", - "resolved": "https://registry.npmjs.org/@jest/globals/-/globals-29.7.0.tgz", - "integrity": "sha512-mpiz3dutLbkW2MNFubUGUEVLkTGiqW6yLVTA+JbP6fI6J5iL9Y0Nlg8k95pcF8ctKwCS7WVxteBs29hhfAotzQ==", "dev": true, "license": "MIT", "dependencies": { @@ -1058,8 +908,6 @@ }, "node_modules/@jest/reporters": { "version": "29.7.0", - "resolved": "https://registry.npmjs.org/@jest/reporters/-/reporters-29.7.0.tgz", - "integrity": "sha512-DApq0KJbJOEzAFYjHADNNxAE3KbhxQB1y5Kplb5Waqw6zVbuWatSnMjE5gs8FUgEPmNsnZA3NCWl9NG0ia04Pg==", "dev": true, "license": "MIT", "dependencies": { @@ -1102,8 +950,6 @@ }, "node_modules/@jest/schemas": { "version": "29.6.3", - "resolved": "https://registry.npmjs.org/@jest/schemas/-/schemas-29.6.3.tgz", - "integrity": "sha512-mo5j5X+jIZmJQveBKeS/clAueipV7KgiX1vMgCxam1RNYiqE1w62n0/tJJnHtjW8ZHcQco5gY85jA3mi0L+nSA==", "dev": true, "license": "MIT", "dependencies": { @@ -1115,8 +961,6 @@ }, "node_modules/@jest/source-map": { "version": "29.6.3", - "resolved": "https://registry.npmjs.org/@jest/source-map/-/source-map-29.6.3.tgz", - "integrity": "sha512-MHjT95QuipcPrpLM+8JMSzFx6eHp5Bm+4XeFDJlwsvVBjmKNiIAvasGK2fxz2WbGRlnvqehFbh07MMa7n3YJnw==", "dev": true, "license": "MIT", "dependencies": { @@ -1130,8 +974,6 @@ }, "node_modules/@jest/test-result": { "version": "29.7.0", - "resolved": "https://registry.npmjs.org/@jest/test-result/-/test-result-29.7.0.tgz", - "integrity": "sha512-Fdx+tv6x1zlkJPcWXmMDAG2HBnaR9XPSd5aDWQVsfrZmLVT3lU1cwyxLgRmXR9yrq4NBoEm9BMsfgFzTQAbJYA==", "dev": true, "license": "MIT", "dependencies": { @@ -1146,8 +988,6 @@ }, "node_modules/@jest/test-sequencer": { "version": "29.7.0", - "resolved": "https://registry.npmjs.org/@jest/test-sequencer/-/test-sequencer-29.7.0.tgz", - "integrity": "sha512-GQwJ5WZVrKnOJuiYiAF52UNUJXgTZx1NHjFSEB0qEMmSZKAkdMoIzw/Cj6x6NF4AvV23AUqDpFzQkN/eYCYTxw==", "dev": true, "license": "MIT", "dependencies": { @@ -1162,8 +1002,6 @@ }, "node_modules/@jest/transform": { "version": "29.7.0", - "resolved": "https://registry.npmjs.org/@jest/transform/-/transform-29.7.0.tgz", - "integrity": "sha512-ok/BTPFzFKVMwO5eOHRrvnBVHdRy9IrsrW1GpMaQ9MCnilNLXQKmAX8s1YXDFaai9xJpac2ySzV0YeRRECr2Vw==", "dev": true, "license": "MIT", "dependencies": { @@ -1189,8 +1027,6 @@ }, "node_modules/@jest/types": { "version": "29.6.3", - "resolved": "https://registry.npmjs.org/@jest/types/-/types-29.6.3.tgz", - "integrity": "sha512-u3UPsIilWKOM3F9CXtrG8LEJmNxwoCQC/XVj4IKYXvvpx7QIi/Kg1LI5uDmDpKlac62NUtX7eLjRh+jVZcLOzw==", "dev": true, "license": "MIT", "dependencies": { @@ -1207,8 +1043,6 @@ }, "node_modules/@jridgewell/gen-mapping": { "version": "0.3.8", - "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.8.tgz", - "integrity": "sha512-imAbBGkb+ebQyxKgzv5Hu2nmROxoDOXHh80evxdoXNOrvAnVx7zimzc1Oo5h9RlfV4vPXaE2iM5pOFbvOCClWA==", "dev": true, "license": "MIT", "dependencies": { @@ -1222,8 +1056,6 @@ }, "node_modules/@jridgewell/resolve-uri": { "version": "3.1.2", - "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz", - "integrity": "sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==", "dev": true, "license": "MIT", "engines": { @@ -1232,8 +1064,6 @@ }, "node_modules/@jridgewell/set-array": { "version": "1.2.1", - "resolved": "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.2.1.tgz", - "integrity": "sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A==", "dev": true, "license": "MIT", "engines": { @@ -1242,8 +1072,6 @@ }, "node_modules/@jridgewell/source-map": { "version": "0.3.6", - "resolved": "https://registry.npmjs.org/@jridgewell/source-map/-/source-map-0.3.6.tgz", - "integrity": "sha512-1ZJTZebgqllO79ue2bm3rIGud/bOe0pP5BjSRCRxxYkEZS8STV7zN84UBbiYu7jy+eCKSnVIUgoWWE/tt+shMQ==", "dev": true, "license": "MIT", "dependencies": { @@ -1253,15 +1081,11 @@ }, "node_modules/@jridgewell/sourcemap-codec": { "version": "1.5.0", - "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.0.tgz", - "integrity": "sha512-gv3ZRaISU3fjPAgNsriBRqGWQL6quFx04YMPW/zD8XMLsU32mhCCbfbO6KZFLjvYpCZ8zyDEgqsgf+PwPaM7GQ==", "dev": true, "license": "MIT" }, "node_modules/@jridgewell/trace-mapping": { "version": "0.3.25", - "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.25.tgz", - "integrity": "sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==", "dev": true, "license": "MIT", "dependencies": { @@ -1271,16 +1095,12 @@ }, "node_modules/@marijn/find-cluster-break": { "version": "1.0.2", - "resolved": "https://registry.npmjs.org/@marijn/find-cluster-break/-/find-cluster-break-1.0.2.tgz", - "integrity": "sha512-l0h88YhZFyKdXIFNfSWpyjStDjGHwZ/U7iobcK1cQQD8sejsONdQtTVU+1wVN1PBw40PiiHB1vA5S7VTfQiP9g==", "dev": true, "license": "MIT", "peer": true }, "node_modules/@nodelib/fs.scandir": { "version": "2.1.5", - "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz", - "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==", "dev": true, "license": "MIT", "dependencies": { @@ -1293,8 +1113,6 @@ }, "node_modules/@nodelib/fs.stat": { "version": "2.0.5", - "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz", - "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==", "dev": true, "license": "MIT", "engines": { @@ -1303,8 +1121,6 @@ }, "node_modules/@nodelib/fs.walk": { "version": "1.2.8", - "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz", - "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==", "dev": true, "license": "MIT", "dependencies": { @@ -1317,8 +1133,6 @@ }, "node_modules/@parcel/watcher": { "version": "2.5.1", - "resolved": "https://registry.npmjs.org/@parcel/watcher/-/watcher-2.5.1.tgz", - "integrity": "sha512-dfUnCxiN9H4ap84DvD2ubjw+3vUNpstxa0TneY/Paat8a3R4uQZDLSvWjmznAY/DoahqTHl9V46HF/Zs3F29pg==", "dev": true, "hasInstallScript": true, "license": "MIT", @@ -1352,178 +1166,8 @@ "@parcel/watcher-win32-x64": "2.5.1" } }, - "node_modules/@parcel/watcher-android-arm64": { - "version": "2.5.1", - "resolved": "https://registry.npmjs.org/@parcel/watcher-android-arm64/-/watcher-android-arm64-2.5.1.tgz", - "integrity": "sha512-KF8+j9nNbUN8vzOFDpRMsaKBHZ/mcjEjMToVMJOhTozkDonQFFrRcfdLWn6yWKCmJKmdVxSgHiYvTCef4/qcBA==", - "cpu": [ - "arm64" - ], - "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "android" - ], - "engines": { - "node": ">= 10.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/parcel" - } - }, - "node_modules/@parcel/watcher-darwin-arm64": { - "version": "2.5.1", - "resolved": "https://registry.npmjs.org/@parcel/watcher-darwin-arm64/-/watcher-darwin-arm64-2.5.1.tgz", - "integrity": "sha512-eAzPv5osDmZyBhou8PoF4i6RQXAfeKL9tjb3QzYuccXFMQU0ruIc/POh30ePnaOyD1UXdlKguHBmsTs53tVoPw==", - "cpu": [ - "arm64" - ], - "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "darwin" - ], - "engines": { - "node": ">= 10.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/parcel" - } - }, - "node_modules/@parcel/watcher-darwin-x64": { - "version": "2.5.1", - "resolved": "https://registry.npmjs.org/@parcel/watcher-darwin-x64/-/watcher-darwin-x64-2.5.1.tgz", - "integrity": "sha512-1ZXDthrnNmwv10A0/3AJNZ9JGlzrF82i3gNQcWOzd7nJ8aj+ILyW1MTxVk35Db0u91oD5Nlk9MBiujMlwmeXZg==", - "cpu": [ - "x64" - ], - "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "darwin" - ], - "engines": { - "node": ">= 10.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/parcel" - } - }, - "node_modules/@parcel/watcher-freebsd-x64": { - "version": "2.5.1", - "resolved": "https://registry.npmjs.org/@parcel/watcher-freebsd-x64/-/watcher-freebsd-x64-2.5.1.tgz", - "integrity": "sha512-SI4eljM7Flp9yPuKi8W0ird8TI/JK6CSxju3NojVI6BjHsTyK7zxA9urjVjEKJ5MBYC+bLmMcbAWlZ+rFkLpJQ==", - "cpu": [ - "x64" - ], - "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "freebsd" - ], - "engines": { - "node": ">= 10.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/parcel" - } - }, - "node_modules/@parcel/watcher-linux-arm-glibc": { - "version": "2.5.1", - "resolved": "https://registry.npmjs.org/@parcel/watcher-linux-arm-glibc/-/watcher-linux-arm-glibc-2.5.1.tgz", - "integrity": "sha512-RCdZlEyTs8geyBkkcnPWvtXLY44BCeZKmGYRtSgtwwnHR4dxfHRG3gR99XdMEdQ7KeiDdasJwwvNSF5jKtDwdA==", - "cpu": [ - "arm" - ], - "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">= 10.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/parcel" - } - }, - "node_modules/@parcel/watcher-linux-arm-musl": { - "version": "2.5.1", - "resolved": "https://registry.npmjs.org/@parcel/watcher-linux-arm-musl/-/watcher-linux-arm-musl-2.5.1.tgz", - "integrity": "sha512-6E+m/Mm1t1yhB8X412stiKFG3XykmgdIOqhjWj+VL8oHkKABfu/gjFj8DvLrYVHSBNC+/u5PeNrujiSQ1zwd1Q==", - "cpu": [ - "arm" - ], - "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">= 10.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/parcel" - } - }, - "node_modules/@parcel/watcher-linux-arm64-glibc": { - "version": "2.5.1", - "resolved": "https://registry.npmjs.org/@parcel/watcher-linux-arm64-glibc/-/watcher-linux-arm64-glibc-2.5.1.tgz", - "integrity": "sha512-LrGp+f02yU3BN9A+DGuY3v3bmnFUggAITBGriZHUREfNEzZh/GO06FF5u2kx8x+GBEUYfyTGamol4j3m9ANe8w==", - "cpu": [ - "arm64" - ], - "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">= 10.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/parcel" - } - }, - "node_modules/@parcel/watcher-linux-arm64-musl": { - "version": "2.5.1", - "resolved": "https://registry.npmjs.org/@parcel/watcher-linux-arm64-musl/-/watcher-linux-arm64-musl-2.5.1.tgz", - "integrity": "sha512-cFOjABi92pMYRXS7AcQv9/M1YuKRw8SZniCDw0ssQb/noPkRzA+HBDkwmyOJYp5wXcsTrhxO0zq1U11cK9jsFg==", - "cpu": [ - "arm64" - ], - "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">= 10.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/parcel" - } - }, "node_modules/@parcel/watcher-linux-x64-glibc": { "version": "2.5.1", - "resolved": "https://registry.npmjs.org/@parcel/watcher-linux-x64-glibc/-/watcher-linux-x64-glibc-2.5.1.tgz", - "integrity": "sha512-GcESn8NZySmfwlTsIur+49yDqSny2IhPeZfXunQi48DMugKeZ7uy1FX83pO0X22sHntJ4Ub+9k34XQCX+oHt2A==", "cpu": [ "x64" ], @@ -1543,8 +1187,6 @@ }, "node_modules/@parcel/watcher-linux-x64-musl": { "version": "2.5.1", - "resolved": "https://registry.npmjs.org/@parcel/watcher-linux-x64-musl/-/watcher-linux-x64-musl-2.5.1.tgz", - "integrity": "sha512-n0E2EQbatQ3bXhcH2D1XIAANAcTZkQICBPVaxMeaCVBtOpBZpWJuf7LwyWPSBDITb7In8mqQgJ7gH8CILCURXg==", "cpu": [ "x64" ], @@ -1562,80 +1204,13 @@ "url": "https://opencollective.com/parcel" } }, - "node_modules/@parcel/watcher-win32-arm64": { - "version": "2.5.1", - "resolved": "https://registry.npmjs.org/@parcel/watcher-win32-arm64/-/watcher-win32-arm64-2.5.1.tgz", - "integrity": "sha512-RFzklRvmc3PkjKjry3hLF9wD7ppR4AKcWNzH7kXR7GUe0Igb3Nz8fyPwtZCSquGrhU5HhUNDr/mKBqj7tqA2Vw==", - "cpu": [ - "arm64" - ], - "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "win32" - ], - "engines": { - "node": ">= 10.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/parcel" - } - }, - "node_modules/@parcel/watcher-win32-ia32": { - "version": "2.5.1", - "resolved": "https://registry.npmjs.org/@parcel/watcher-win32-ia32/-/watcher-win32-ia32-2.5.1.tgz", - "integrity": "sha512-c2KkcVN+NJmuA7CGlaGD1qJh1cLfDnQsHjE89E60vUEMlqduHGCdCLJCID5geFVM0dOtA3ZiIO8BoEQmzQVfpQ==", - "cpu": [ - "ia32" - ], - "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "win32" - ], - "engines": { - "node": ">= 10.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/parcel" - } - }, - "node_modules/@parcel/watcher-win32-x64": { - "version": "2.5.1", - "resolved": "https://registry.npmjs.org/@parcel/watcher-win32-x64/-/watcher-win32-x64-2.5.1.tgz", - "integrity": "sha512-9lHBdJITeNR++EvSQVUcaZoWupyHfXe1jZvGZ06O/5MflPcuPLtEphScIBL+AiCWBO46tDSHzWyD0uDmmZqsgA==", - "cpu": [ - "x64" - ], - "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "win32" - ], - "engines": { - "node": ">= 10.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/parcel" - } - }, "node_modules/@sinclair/typebox": { "version": "0.27.8", - "resolved": "https://registry.npmjs.org/@sinclair/typebox/-/typebox-0.27.8.tgz", - "integrity": "sha512-+Fj43pSMwJs4KRrH/938Uf+uAELIgVBmQzg/q1YG10djyfA3TnrU8N8XzqCh/okZdszqBQTZf96idMfE5lnwTA==", "dev": true, "license": "MIT" }, "node_modules/@sinonjs/commons": { "version": "3.0.1", - "resolved": "https://registry.npmjs.org/@sinonjs/commons/-/commons-3.0.1.tgz", - "integrity": "sha512-K3mCHKQ9sVh8o1C9cxkwxaOmXoAMlDxC1mYyHrjqOWEcBjYr76t96zL2zlj5dUGZ3HSw240X1qgH3Mjf1yJWpQ==", "dev": true, "license": "BSD-3-Clause", "dependencies": { @@ -1644,8 +1219,6 @@ }, "node_modules/@sinonjs/fake-timers": { "version": "10.3.0", - "resolved": "https://registry.npmjs.org/@sinonjs/fake-timers/-/fake-timers-10.3.0.tgz", - "integrity": "sha512-V4BG07kuYSUkTCSBHG8G8TNhM+F19jXFWnQtzj+we8DrkpSBCee9Z3Ms8yiGer/dlmhe35/Xdgyo3/0rQKg7YA==", "dev": true, "license": "BSD-3-Clause", "dependencies": { @@ -1654,8 +1227,6 @@ }, "node_modules/@types/babel__core": { "version": "7.20.5", - "resolved": "https://registry.npmjs.org/@types/babel__core/-/babel__core-7.20.5.tgz", - "integrity": "sha512-qoQprZvz5wQFJwMDqeseRXWv3rqMvhgpbXFfVyWhbx9X47POIA6i/+dXefEmZKoAgOaTdaIgNSMqMIU61yRyzA==", "dev": true, "license": "MIT", "dependencies": { @@ -1668,8 +1239,6 @@ }, "node_modules/@types/babel__generator": { "version": "7.6.8", - "resolved": "https://registry.npmjs.org/@types/babel__generator/-/babel__generator-7.6.8.tgz", - "integrity": "sha512-ASsj+tpEDsEiFr1arWrlN6V3mdfjRMZt6LtK/Vp/kreFLnr5QH5+DhvD5nINYZXzwJvXeGq+05iUXcAzVrqWtw==", "dev": true, "license": "MIT", "dependencies": { @@ -1678,8 +1247,6 @@ }, "node_modules/@types/babel__template": { "version": "7.4.4", - "resolved": "https://registry.npmjs.org/@types/babel__template/-/babel__template-7.4.4.tgz", - "integrity": "sha512-h/NUaSyG5EyxBIp8YRxo4RMe2/qQgvyowRwVMzhYhBCONbW8PUsg4lkFMrhgZhUe5z3L3MiLDuvyJ/CaPa2A8A==", "dev": true, "license": "MIT", "dependencies": { @@ -1689,8 +1256,6 @@ }, "node_modules/@types/babel__traverse": { "version": "7.20.7", - "resolved": "https://registry.npmjs.org/@types/babel__traverse/-/babel__traverse-7.20.7.tgz", - "integrity": "sha512-dkO5fhS7+/oos4ciWxyEyjWe48zmG6wbCheo/G2ZnHx4fs3EU6YC6UM8rk56gAjNJ9P3MTH2jo5jb92/K6wbng==", "dev": true, "license": "MIT", "dependencies": { @@ -1699,8 +1264,6 @@ }, "node_modules/@types/codemirror": { "version": "5.60.8", - "resolved": "https://registry.npmjs.org/@types/codemirror/-/codemirror-5.60.8.tgz", - "integrity": "sha512-VjFgDF/eB+Aklcy15TtOTLQeMjTo07k7KAjql8OK5Dirr7a6sJY4T1uVBDuTVG9VEmn1uUsohOpYnVfgC6/jyw==", "dev": true, "license": "MIT", "dependencies": { @@ -1709,8 +1272,6 @@ }, "node_modules/@types/eslint": { "version": "9.6.1", - "resolved": "https://registry.npmjs.org/@types/eslint/-/eslint-9.6.1.tgz", - "integrity": "sha512-FXx2pKgId/WyYo2jXw63kk7/+TY7u7AziEJxJAnSFzHlqTAS3Ync6SvgYAN/k4/PQpnnVuzoMuVnByKK2qp0ag==", "dev": true, "license": "MIT", "dependencies": { @@ -1720,8 +1281,6 @@ }, "node_modules/@types/eslint-scope": { "version": "3.7.7", - "resolved": "https://registry.npmjs.org/@types/eslint-scope/-/eslint-scope-3.7.7.tgz", - "integrity": "sha512-MzMFlSLBqNF2gcHWO0G1vP/YQyfvrxZ0bF+u7mzUdZ1/xK4A4sru+nraZz5i3iEIk1l1uyicaDVTB4QbbEkAYg==", "dev": true, "license": "MIT", "dependencies": { @@ -1731,15 +1290,11 @@ }, "node_modules/@types/estree": { "version": "1.0.7", - "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.7.tgz", - "integrity": "sha512-w28IoSUCJpidD/TGviZwwMJckNESJZXFu7NBZ5YJ4mEUnNraUn9Pm8HSZm/jDF1pDWYKspWE7oVphigUPRakIQ==", "dev": true, "license": "MIT" }, "node_modules/@types/graceful-fs": { "version": "4.1.9", - "resolved": "https://registry.npmjs.org/@types/graceful-fs/-/graceful-fs-4.1.9.tgz", - "integrity": "sha512-olP3sd1qOEe5dXTSaFvQG+02VdRXcdytWLAZsAq1PecU8uqQAhkrnbli7DagjtXKW/Bl7YJbUsa8MPcuc8LHEQ==", "dev": true, "license": "MIT", "dependencies": { @@ -1748,15 +1303,11 @@ }, "node_modules/@types/istanbul-lib-coverage": { "version": "2.0.6", - "resolved": "https://registry.npmjs.org/@types/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.6.tgz", - "integrity": "sha512-2QF/t/auWm0lsy8XtKVPG19v3sSOQlJe/YHZgfjb/KBBHOGSV+J2q/S671rcq9uTBrLAXmZpqJiaQbMT+zNU1w==", "dev": true, "license": "MIT" }, "node_modules/@types/istanbul-lib-report": { "version": "3.0.3", - "resolved": "https://registry.npmjs.org/@types/istanbul-lib-report/-/istanbul-lib-report-3.0.3.tgz", - "integrity": "sha512-NQn7AHQnk/RSLOxrBbGyJM/aVQ+pjj5HCgasFxc0K/KhoATfQ/47AyUl15I2yBUpihjmas+a+VJBOqecrFH+uA==", "dev": true, "license": "MIT", "dependencies": { @@ -1765,8 +1316,6 @@ }, "node_modules/@types/istanbul-reports": { "version": "3.0.4", - "resolved": "https://registry.npmjs.org/@types/istanbul-reports/-/istanbul-reports-3.0.4.tgz", - "integrity": "sha512-pk2B1NWalF9toCRu6gjBzR69syFjP4Od8WRAX+0mmf9lAjCRicLOWc+ZrxZHx/0XRjotgkF9t6iaMJ+aXcOdZQ==", "dev": true, "license": "MIT", "dependencies": { @@ -1775,8 +1324,6 @@ }, "node_modules/@types/jest": { "version": "29.5.14", - "resolved": "https://registry.npmjs.org/@types/jest/-/jest-29.5.14.tgz", - "integrity": "sha512-ZN+4sdnLUbo8EVvVc2ao0GFW6oVrQRPn4K2lglySj7APvSrgzxHiNNK99us4WDMi57xxA2yggblIAMNhXOotLQ==", "dev": true, "license": "MIT", "dependencies": { @@ -1786,15 +1333,11 @@ }, "node_modules/@types/json-schema": { "version": "7.0.15", - "resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.15.tgz", - "integrity": "sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==", "dev": true, "license": "MIT" }, "node_modules/@types/node": { "version": "22.15.30", - "resolved": "https://registry.npmjs.org/@types/node/-/node-22.15.30.tgz", - "integrity": "sha512-6Q7lr06bEHdlfplU6YRbgG1SFBdlsfNC4/lX+SkhiTs0cpJkOElmWls8PxDFv4yY/xKb8Y6SO0OmSX4wgqTZbA==", "dev": true, "license": "MIT", "dependencies": { @@ -1803,15 +1346,11 @@ }, "node_modules/@types/stack-utils": { "version": "2.0.3", - "resolved": "https://registry.npmjs.org/@types/stack-utils/-/stack-utils-2.0.3.tgz", - "integrity": "sha512-9aEbYZ3TbYMznPdcdr3SmIrLXwC/AKZXQeCf9Pgao5CKb8CyHuEX5jzWPTkvregvhRJHcpRO6BFoGW9ycaOkYw==", "dev": true, "license": "MIT" }, "node_modules/@types/tern": { "version": "0.23.9", - "resolved": "https://registry.npmjs.org/@types/tern/-/tern-0.23.9.tgz", - "integrity": "sha512-ypzHFE/wBzh+BlH6rrBgS5I/Z7RD21pGhZ2rltb/+ZrVM1awdZwjx7hE5XfuYgHWk9uvV5HLZN3SloevCAp3Bw==", "dev": true, "license": "MIT", "dependencies": { @@ -1820,8 +1359,6 @@ }, "node_modules/@types/yargs": { "version": "17.0.33", - "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-17.0.33.tgz", - "integrity": "sha512-WpxBCKWPLr4xSsHgz511rFJAM+wS28w2zEO1QDNY5zM/S8ok70NNfztH0xwhqKyaK0OHCbN98LDAZuy1ctxDkA==", "dev": true, "license": "MIT", "dependencies": { @@ -1830,15 +1367,11 @@ }, "node_modules/@types/yargs-parser": { "version": "21.0.3", - "resolved": "https://registry.npmjs.org/@types/yargs-parser/-/yargs-parser-21.0.3.tgz", - "integrity": "sha512-I4q9QU9MQv4oEOz4tAHJtNz1cwuLxn2F3xcc2iV5WdqLPpUnj30aUuxt1mAxYTG+oe8CZMV/+6rU4S4gRDzqtQ==", "dev": true, "license": "MIT" }, "node_modules/@typescript-eslint/eslint-plugin": { "version": "8.33.1", - "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-8.33.1.tgz", - "integrity": "sha512-TDCXj+YxLgtvxvFlAvpoRv9MAncDLBV2oT9Bd7YBGC/b/sEURoOYuIwLI99rjWOfY3QtDzO+mk0n4AmdFExW8A==", "dev": true, "license": "MIT", "dependencies": { @@ -1867,8 +1400,6 @@ }, "node_modules/@typescript-eslint/eslint-plugin/node_modules/ignore": { "version": "7.0.4", - "resolved": "https://registry.npmjs.org/ignore/-/ignore-7.0.4.tgz", - "integrity": "sha512-gJzzk+PQNznz8ysRrC0aOkBNVRBDtE1n53IqyqEf3PXrYwomFs5q4pGMizBMJF+ykh03insJ27hB8gSrD2Hn8A==", "dev": true, "license": "MIT", "engines": { @@ -1877,8 +1408,6 @@ }, "node_modules/@typescript-eslint/parser": { "version": "8.33.1", - "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-8.33.1.tgz", - "integrity": "sha512-qwxv6dq682yVvgKKp2qWwLgRbscDAYktPptK4JPojCwwi3R9cwrvIxS4lvBpzmcqzR4bdn54Z0IG1uHFskW4dA==", "dev": true, "license": "MIT", "dependencies": { @@ -1902,8 +1431,6 @@ }, "node_modules/@typescript-eslint/project-service": { "version": "8.33.1", - "resolved": "https://registry.npmjs.org/@typescript-eslint/project-service/-/project-service-8.33.1.tgz", - "integrity": "sha512-DZR0efeNklDIHHGRpMpR5gJITQpu6tLr9lDJnKdONTC7vvzOlLAG/wcfxcdxEWrbiZApcoBCzXqU/Z458Za5Iw==", "dev": true, "license": "MIT", "dependencies": { @@ -1924,8 +1451,6 @@ }, "node_modules/@typescript-eslint/scope-manager": { "version": "8.33.1", - "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-8.33.1.tgz", - "integrity": "sha512-dM4UBtgmzHR9bS0Rv09JST0RcHYearoEoo3pG5B6GoTR9XcyeqX87FEhPo+5kTvVfKCvfHaHrcgeJQc6mrDKrA==", "dev": true, "license": "MIT", "dependencies": { @@ -1942,8 +1467,6 @@ }, "node_modules/@typescript-eslint/tsconfig-utils": { "version": "8.33.1", - "resolved": "https://registry.npmjs.org/@typescript-eslint/tsconfig-utils/-/tsconfig-utils-8.33.1.tgz", - "integrity": "sha512-STAQsGYbHCF0/e+ShUQ4EatXQ7ceh3fBCXkNU7/MZVKulrlq1usH7t2FhxvCpuCi5O5oi1vmVaAjrGeL71OK1g==", "dev": true, "license": "MIT", "engines": { @@ -1959,8 +1482,6 @@ }, "node_modules/@typescript-eslint/type-utils": { "version": "8.33.1", - "resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-8.33.1.tgz", - "integrity": "sha512-1cG37d9xOkhlykom55WVwG2QRNC7YXlxMaMzqw2uPeJixBFfKWZgaP/hjAObqMN/u3fr5BrTwTnc31/L9jQ2ww==", "dev": true, "license": "MIT", "dependencies": { @@ -1983,8 +1504,6 @@ }, "node_modules/@typescript-eslint/types": { "version": "8.33.1", - "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-8.33.1.tgz", - "integrity": "sha512-xid1WfizGhy/TKMTwhtVOgalHwPtV8T32MS9MaH50Cwvz6x6YqRIPdD2WvW0XaqOzTV9p5xdLY0h/ZusU5Lokg==", "dev": true, "license": "MIT", "engines": { @@ -1997,8 +1516,6 @@ }, "node_modules/@typescript-eslint/typescript-estree": { "version": "8.33.1", - "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-8.33.1.tgz", - "integrity": "sha512-+s9LYcT8LWjdYWu7IWs7FvUxpQ/DGkdjZeE/GGulHvv8rvYwQvVaUZ6DE+j5x/prADUgSbbCWZ2nPI3usuVeOA==", "dev": true, "license": "MIT", "dependencies": { @@ -2026,8 +1543,6 @@ }, "node_modules/@typescript-eslint/typescript-estree/node_modules/brace-expansion": { "version": "2.0.1", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", - "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", "dev": true, "license": "MIT", "dependencies": { @@ -2036,8 +1551,6 @@ }, "node_modules/@typescript-eslint/typescript-estree/node_modules/minimatch": { "version": "9.0.5", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.5.tgz", - "integrity": "sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==", "dev": true, "license": "ISC", "dependencies": { @@ -2052,8 +1565,6 @@ }, "node_modules/@typescript-eslint/utils": { "version": "8.33.1", - "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-8.33.1.tgz", - "integrity": "sha512-52HaBiEQUaRYqAXpfzWSR2U3gxk92Kw006+xZpElaPMg3C4PgM+A5LqwoQI1f9E5aZ/qlxAZxzm42WX+vn92SQ==", "dev": true, "license": "MIT", "dependencies": { @@ -2076,8 +1587,6 @@ }, "node_modules/@typescript-eslint/visitor-keys": { "version": "8.33.1", - "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-8.33.1.tgz", - "integrity": "sha512-3i8NrFcZeeDHJ+7ZUuDkGT+UHq+XoFGsymNK2jZCOHcfEzRQ0BdpRtdpSx/Iyf3MHLWIcLS0COuOPibKQboIiQ==", "dev": true, "license": "MIT", "dependencies": { @@ -2094,8 +1603,6 @@ }, "node_modules/@webassemblyjs/ast": { "version": "1.14.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/ast/-/ast-1.14.1.tgz", - "integrity": "sha512-nuBEDgQfm1ccRp/8bCQrx1frohyufl4JlbMMZ4P1wpeOfDhF6FQkxZJ1b/e+PLwr6X1Nhw6OLme5usuBWYBvuQ==", "dev": true, "license": "MIT", "dependencies": { @@ -2105,29 +1612,21 @@ }, "node_modules/@webassemblyjs/floating-point-hex-parser": { "version": "1.13.2", - "resolved": "https://registry.npmjs.org/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.13.2.tgz", - "integrity": "sha512-6oXyTOzbKxGH4steLbLNOu71Oj+C8Lg34n6CqRvqfS2O71BxY6ByfMDRhBytzknj9yGUPVJ1qIKhRlAwO1AovA==", "dev": true, "license": "MIT" }, "node_modules/@webassemblyjs/helper-api-error": { "version": "1.13.2", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-api-error/-/helper-api-error-1.13.2.tgz", - "integrity": "sha512-U56GMYxy4ZQCbDZd6JuvvNV/WFildOjsaWD3Tzzvmw/mas3cXzRJPMjP83JqEsgSbyrmaGjBfDtV7KDXV9UzFQ==", "dev": true, "license": "MIT" }, "node_modules/@webassemblyjs/helper-buffer": { "version": "1.14.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-buffer/-/helper-buffer-1.14.1.tgz", - "integrity": "sha512-jyH7wtcHiKssDtFPRB+iQdxlDf96m0E39yb0k5uJVhFGleZFoNw1c4aeIcVUPPbXUVJ94wwnMOAqUHyzoEPVMA==", "dev": true, "license": "MIT" }, "node_modules/@webassemblyjs/helper-numbers": { "version": "1.13.2", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-numbers/-/helper-numbers-1.13.2.tgz", - "integrity": "sha512-FE8aCmS5Q6eQYcV3gI35O4J789wlQA+7JrqTTpJqn5emA4U2hvwJmvFRC0HODS+3Ye6WioDklgd6scJ3+PLnEA==", "dev": true, "license": "MIT", "dependencies": { @@ -2138,15 +1637,11 @@ }, "node_modules/@webassemblyjs/helper-wasm-bytecode": { "version": "1.13.2", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.13.2.tgz", - "integrity": "sha512-3QbLKy93F0EAIXLh0ogEVR6rOubA9AoZ+WRYhNbFyuB70j3dRdwH9g+qXhLAO0kiYGlg3TxDV+I4rQTr/YNXkA==", "dev": true, "license": "MIT" }, "node_modules/@webassemblyjs/helper-wasm-section": { "version": "1.14.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.14.1.tgz", - "integrity": "sha512-ds5mXEqTJ6oxRoqjhWDU83OgzAYjwsCV8Lo/N+oRsNDmx/ZDpqalmrtgOMkHwxsG0iI//3BwWAErYRHtgn0dZw==", "dev": true, "license": "MIT", "dependencies": { @@ -2158,8 +1653,6 @@ }, "node_modules/@webassemblyjs/ieee754": { "version": "1.13.2", - "resolved": "https://registry.npmjs.org/@webassemblyjs/ieee754/-/ieee754-1.13.2.tgz", - "integrity": "sha512-4LtOzh58S/5lX4ITKxnAK2USuNEvpdVV9AlgGQb8rJDHaLeHciwG4zlGr0j/SNWlr7x3vO1lDEsuePvtcDNCkw==", "dev": true, "license": "MIT", "dependencies": { @@ -2168,8 +1661,6 @@ }, "node_modules/@webassemblyjs/leb128": { "version": "1.13.2", - "resolved": "https://registry.npmjs.org/@webassemblyjs/leb128/-/leb128-1.13.2.tgz", - "integrity": "sha512-Lde1oNoIdzVzdkNEAWZ1dZ5orIbff80YPdHx20mrHwHrVNNTjNr8E3xz9BdpcGqRQbAEa+fkrCb+fRFTl/6sQw==", "dev": true, "license": "Apache-2.0", "dependencies": { @@ -2178,15 +1669,11 @@ }, "node_modules/@webassemblyjs/utf8": { "version": "1.13.2", - "resolved": "https://registry.npmjs.org/@webassemblyjs/utf8/-/utf8-1.13.2.tgz", - "integrity": "sha512-3NQWGjKTASY1xV5m7Hr0iPeXD9+RDobLll3T9d2AO+g3my8xy5peVyjSag4I50mR1bBSN/Ct12lo+R9tJk0NZQ==", "dev": true, "license": "MIT" }, "node_modules/@webassemblyjs/wasm-edit": { "version": "1.14.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-edit/-/wasm-edit-1.14.1.tgz", - "integrity": "sha512-RNJUIQH/J8iA/1NzlE4N7KtyZNHi3w7at7hDjvRNm5rcUXa00z1vRz3glZoULfJ5mpvYhLybmVcwcjGrC1pRrQ==", "dev": true, "license": "MIT", "dependencies": { @@ -2202,8 +1689,6 @@ }, "node_modules/@webassemblyjs/wasm-gen": { "version": "1.14.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-gen/-/wasm-gen-1.14.1.tgz", - "integrity": "sha512-AmomSIjP8ZbfGQhumkNvgC33AY7qtMCXnN6bL2u2Js4gVCg8fp735aEiMSBbDR7UQIj90n4wKAFUSEd0QN2Ukg==", "dev": true, "license": "MIT", "dependencies": { @@ -2216,8 +1701,6 @@ }, "node_modules/@webassemblyjs/wasm-opt": { "version": "1.14.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-opt/-/wasm-opt-1.14.1.tgz", - "integrity": "sha512-PTcKLUNvBqnY2U6E5bdOQcSM+oVP/PmrDY9NzowJjislEjwP/C4an2303MCVS2Mg9d3AJpIGdUFIQQWbPds0Sw==", "dev": true, "license": "MIT", "dependencies": { @@ -2229,8 +1712,6 @@ }, "node_modules/@webassemblyjs/wasm-parser": { "version": "1.14.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-parser/-/wasm-parser-1.14.1.tgz", - "integrity": "sha512-JLBl+KZ0R5qB7mCnud/yyX08jWFw5MsoalJ1pQ4EdFlgj9VdXKGuENGsiCIjegI1W7p91rUlcB/LB5yRJKNTcQ==", "dev": true, "license": "MIT", "dependencies": { @@ -2244,8 +1725,6 @@ }, "node_modules/@webassemblyjs/wast-printer": { "version": "1.14.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wast-printer/-/wast-printer-1.14.1.tgz", - "integrity": "sha512-kPSSXE6De1XOR820C90RIo2ogvZG+c3KiHzqUoO/F34Y2shGzesfqv7o57xrxovZJH/MetF5UjroJ/R/3isoiw==", "dev": true, "license": "MIT", "dependencies": { @@ -2255,8 +1734,6 @@ }, "node_modules/@webpack-cli/configtest": { "version": "3.0.1", - "resolved": "https://registry.npmjs.org/@webpack-cli/configtest/-/configtest-3.0.1.tgz", - "integrity": "sha512-u8d0pJ5YFgneF/GuvEiDA61Tf1VDomHHYMjv/wc9XzYj7nopltpG96nXN5dJRstxZhcNpV1g+nT6CydO7pHbjA==", "dev": true, "license": "MIT", "engines": { @@ -2269,8 +1746,6 @@ }, "node_modules/@webpack-cli/info": { "version": "3.0.1", - "resolved": "https://registry.npmjs.org/@webpack-cli/info/-/info-3.0.1.tgz", - "integrity": "sha512-coEmDzc2u/ffMvuW9aCjoRzNSPDl/XLuhPdlFRpT9tZHmJ/039az33CE7uH+8s0uL1j5ZNtfdv0HkfaKRBGJsQ==", "dev": true, "license": "MIT", "engines": { @@ -2283,8 +1758,6 @@ }, "node_modules/@webpack-cli/serve": { "version": "3.0.1", - "resolved": "https://registry.npmjs.org/@webpack-cli/serve/-/serve-3.0.1.tgz", - "integrity": "sha512-sbgw03xQaCLiT6gcY/6u3qBDn01CWw/nbaXl3gTdTFuJJ75Gffv3E3DBpgvY2fkkrdS1fpjaXNOmJlnbtKauKg==", "dev": true, "license": "MIT", "engines": { @@ -2302,22 +1775,16 @@ }, "node_modules/@xtuc/ieee754": { "version": "1.2.0", - "resolved": "https://registry.npmjs.org/@xtuc/ieee754/-/ieee754-1.2.0.tgz", - "integrity": "sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA==", "dev": true, "license": "BSD-3-Clause" }, "node_modules/@xtuc/long": { "version": "4.2.2", - "resolved": "https://registry.npmjs.org/@xtuc/long/-/long-4.2.2.tgz", - "integrity": "sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ==", "dev": true, "license": "Apache-2.0" }, "node_modules/acorn": { "version": "8.14.1", - "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.14.1.tgz", - "integrity": "sha512-OvQ/2pUDKmgfCg++xsTX1wGxfTaszcHVcTctW4UJB4hibJx2HXxxO5UmVgyjMa+ZDsiaf5wWLXYpRWMmBI0QHg==", "dev": true, "license": "MIT", "bin": { @@ -2329,8 +1796,6 @@ }, "node_modules/acorn-jsx": { "version": "5.3.2", - "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz", - "integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==", "dev": true, "license": "MIT", "peerDependencies": { @@ -2339,8 +1804,6 @@ }, "node_modules/adjust-sourcemap-loader": { "version": "4.0.0", - "resolved": "https://registry.npmjs.org/adjust-sourcemap-loader/-/adjust-sourcemap-loader-4.0.0.tgz", - "integrity": "sha512-OXwN5b9pCUXNQHJpwwD2qP40byEmSgzj8B4ydSN0uMNYWiFmJ6x6KwUllMmfk8Rwu/HJDFR7U8ubsWBoN0Xp0A==", "dev": true, "license": "MIT", "dependencies": { @@ -2353,8 +1816,6 @@ }, "node_modules/ajv": { "version": "6.12.6", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", - "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", "dev": true, "license": "MIT", "dependencies": { @@ -2370,8 +1831,6 @@ }, "node_modules/ajv-formats": { "version": "2.1.1", - "resolved": "https://registry.npmjs.org/ajv-formats/-/ajv-formats-2.1.1.tgz", - "integrity": "sha512-Wx0Kx52hxE7C18hkMEggYlEifqWZtYaRgouJor+WMdPnQyEK13vgEWyVNup7SoeeoLMsr4kf5h6dOW11I15MUA==", "dev": true, "license": "MIT", "dependencies": { @@ -2388,8 +1847,6 @@ }, "node_modules/ajv-formats/node_modules/ajv": { "version": "8.17.1", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.17.1.tgz", - "integrity": "sha512-B/gBuNg5SiMTrPkC+A2+cW0RszwxYmn6VYxB/inlBStS5nx6xHIt/ehKRhIMhqusl7a8LjQoZnjCs5vhwxOQ1g==", "dev": true, "license": "MIT", "dependencies": { @@ -2405,15 +1862,11 @@ }, "node_modules/ajv-formats/node_modules/json-schema-traverse": { "version": "1.0.0", - "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", - "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==", "dev": true, "license": "MIT" }, "node_modules/ajv-keywords": { "version": "3.5.2", - "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-3.5.2.tgz", - "integrity": "sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==", "dev": true, "license": "MIT", "peerDependencies": { @@ -2422,8 +1875,6 @@ }, "node_modules/ansi-escapes": { "version": "4.3.2", - "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-4.3.2.tgz", - "integrity": "sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==", "dev": true, "license": "MIT", "dependencies": { @@ -2438,8 +1889,6 @@ }, "node_modules/ansi-regex": { "version": "5.0.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", - "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", "dev": true, "license": "MIT", "engines": { @@ -2448,8 +1897,6 @@ }, "node_modules/ansi-styles": { "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", "dev": true, "license": "MIT", "dependencies": { @@ -2464,8 +1911,6 @@ }, "node_modules/anymatch": { "version": "3.1.3", - "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz", - "integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==", "dev": true, "license": "ISC", "dependencies": { @@ -2478,22 +1923,16 @@ }, "node_modules/argparse": { "version": "2.0.1", - "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", - "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", "dev": true, "license": "Python-2.0" }, "node_modules/async": { "version": "3.2.6", - "resolved": "https://registry.npmjs.org/async/-/async-3.2.6.tgz", - "integrity": "sha512-htCUDlxyyCLMgaM3xXg0C0LW2xqfuQ6p05pCEIsXuyQ+a1koYKTuBMzRNwmybfLgvJDMd0r1LTn4+E0Ti6C2AA==", "dev": true, "license": "MIT" }, "node_modules/babel-jest": { "version": "29.7.0", - "resolved": "https://registry.npmjs.org/babel-jest/-/babel-jest-29.7.0.tgz", - "integrity": "sha512-BrvGY3xZSwEcCzKvKsCi2GgHqDqsYkOP4/by5xCgIwGXQxIEh+8ew3gmrE1y7XRR6LHZIj6yLYnUi/mm2KXKBg==", "dev": true, "license": "MIT", "dependencies": { @@ -2514,8 +1953,6 @@ }, "node_modules/babel-plugin-istanbul": { "version": "6.1.1", - "resolved": "https://registry.npmjs.org/babel-plugin-istanbul/-/babel-plugin-istanbul-6.1.1.tgz", - "integrity": "sha512-Y1IQok9821cC9onCx5otgFfRm7Lm+I+wwxOx738M/WLPZ9Q42m4IG5W0FNX8WLL2gYMZo3JkuXIH2DOpWM+qwA==", "dev": true, "license": "BSD-3-Clause", "dependencies": { @@ -2531,8 +1968,6 @@ }, "node_modules/babel-plugin-istanbul/node_modules/istanbul-lib-instrument": { "version": "5.2.1", - "resolved": "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-5.2.1.tgz", - "integrity": "sha512-pzqtp31nLv/XFOzXGuvhCb8qhjmTVo5vjVk19XE4CRlSWz0KoeJ3bw9XsA7nOp9YBf4qHjwBxkDzKcME/J29Yg==", "dev": true, "license": "BSD-3-Clause", "dependencies": { @@ -2548,8 +1983,6 @@ }, "node_modules/babel-plugin-istanbul/node_modules/semver": { "version": "6.3.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", - "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", "dev": true, "license": "ISC", "bin": { @@ -2558,8 +1991,6 @@ }, "node_modules/babel-plugin-jest-hoist": { "version": "29.6.3", - "resolved": "https://registry.npmjs.org/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-29.6.3.tgz", - "integrity": "sha512-ESAc/RJvGTFEzRwOTT4+lNDk/GNHMkKbNzsvT0qKRfDyyYTskxB5rnU2njIDYVxXCBHHEI1c0YwHob3WaYujOg==", "dev": true, "license": "MIT", "dependencies": { @@ -2574,8 +2005,6 @@ }, "node_modules/babel-preset-current-node-syntax": { "version": "1.1.0", - "resolved": "https://registry.npmjs.org/babel-preset-current-node-syntax/-/babel-preset-current-node-syntax-1.1.0.tgz", - "integrity": "sha512-ldYss8SbBlWva1bs28q78Ju5Zq1F+8BrqBZZ0VFhLBvhh6lCpC2o3gDJi/5DRLs9FgYZCnmPYIVFU4lRXCkyUw==", "dev": true, "license": "MIT", "dependencies": { @@ -2601,8 +2030,6 @@ }, "node_modules/babel-preset-jest": { "version": "29.6.3", - "resolved": "https://registry.npmjs.org/babel-preset-jest/-/babel-preset-jest-29.6.3.tgz", - "integrity": "sha512-0B3bhxR6snWXJZtR/RliHTDPRgn1sNHOR0yVtq/IiQFyuOVjFS+wuio/R4gSNkyYmKmJB4wGZv2NZanmKmTnNA==", "dev": true, "license": "MIT", "dependencies": { @@ -2618,14 +2045,10 @@ }, "node_modules/balanced-match": { "version": "1.0.2", - "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", - "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", "license": "MIT" }, "node_modules/big.js": { "version": "5.2.2", - "resolved": "https://registry.npmjs.org/big.js/-/big.js-5.2.2.tgz", - "integrity": "sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==", "dev": true, "license": "MIT", "engines": { @@ -2634,8 +2057,6 @@ }, "node_modules/brace-expansion": { "version": "1.1.11", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", - "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", "dev": true, "license": "MIT", "dependencies": { @@ -2645,8 +2066,6 @@ }, "node_modules/braces": { "version": "3.0.3", - "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.3.tgz", - "integrity": "sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==", "dev": true, "license": "MIT", "dependencies": { @@ -2658,8 +2077,6 @@ }, "node_modules/browserslist": { "version": "4.24.4", - "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.24.4.tgz", - "integrity": "sha512-KDi1Ny1gSePi1vm0q4oxSF8b4DR44GF4BbmS2YdhPLOEqd8pDviZOGH/GsmRwoWJ2+5Lr085X7naowMwKHDG1A==", "dev": true, "funding": [ { @@ -2691,8 +2108,6 @@ }, "node_modules/bs-logger": { "version": "0.2.6", - "resolved": "https://registry.npmjs.org/bs-logger/-/bs-logger-0.2.6.tgz", - "integrity": "sha512-pd8DCoxmbgc7hyPKOvxtqNcjYoOsABPQdcCUjGp3d42VR2CX1ORhk2A87oqqu5R1kk+76nsxZupkmyd+MVtCog==", "dev": true, "license": "MIT", "dependencies": { @@ -2704,8 +2119,6 @@ }, "node_modules/bser": { "version": "2.1.1", - "resolved": "https://registry.npmjs.org/bser/-/bser-2.1.1.tgz", - "integrity": "sha512-gQxTNE/GAfIIrmHLUE3oJyp5FO6HRBfhjnw4/wMmA63ZGDJnWBmgY/lyQBpnDUkGmAhbSe39tx2d/iTOAfglwQ==", "dev": true, "license": "Apache-2.0", "dependencies": { @@ -2714,15 +2127,11 @@ }, "node_modules/buffer-from": { "version": "1.1.2", - "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.2.tgz", - "integrity": "sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==", "dev": true, "license": "MIT" }, "node_modules/bufferutil": { "version": "4.0.9", - "resolved": "https://registry.npmjs.org/bufferutil/-/bufferutil-4.0.9.tgz", - "integrity": "sha512-WDtdLmJvAuNNPzByAYpRo2rF1Mmradw6gvWsQKf63476DDXmomT9zUiGypLcG4ibIM67vhAj8jJRdbmEws2Aqw==", "dev": true, "hasInstallScript": true, "license": "MIT", @@ -2735,14 +2144,10 @@ }, "node_modules/byte-base64": { "version": "1.1.0", - "resolved": "https://registry.npmjs.org/byte-base64/-/byte-base64-1.1.0.tgz", - "integrity": "sha512-56cXelkJrVMdCY9V/3RfDxTh4VfMFCQ5km7B7GkIGfo4bcPL9aACyJLB0Ms3Ezu5rsHmLB2suis96z4fLM03DA==", "license": "MIT" }, "node_modules/call-bind-apply-helpers": { "version": "1.0.2", - "resolved": "https://registry.npmjs.org/call-bind-apply-helpers/-/call-bind-apply-helpers-1.0.2.tgz", - "integrity": "sha512-Sp1ablJ0ivDkSzjcaJdxEunN5/XvksFJ2sMBFfq6x0ryhQV/2b/KwFe21cMpmHtPOSij8K99/wSfoEuTObmuMQ==", "dev": true, "license": "MIT", "dependencies": { @@ -2755,8 +2160,6 @@ }, "node_modules/call-bound": { "version": "1.0.4", - "resolved": "https://registry.npmjs.org/call-bound/-/call-bound-1.0.4.tgz", - "integrity": "sha512-+ys997U96po4Kx/ABpBCqhA9EuxJaQWDQg7295H4hBphv3IZg0boBKuwYpt4YXp6MZ5AmZQnU/tyMTlRpaSejg==", "dev": true, "license": "MIT", "dependencies": { @@ -2772,8 +2175,6 @@ }, "node_modules/callsites": { "version": "3.1.0", - "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", - "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==", "dev": true, "license": "MIT", "engines": { @@ -2782,8 +2183,6 @@ }, "node_modules/camelcase": { "version": "5.3.1", - "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz", - "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==", "dev": true, "license": "MIT", "engines": { @@ -2792,8 +2191,6 @@ }, "node_modules/caniuse-lite": { "version": "1.0.30001707", - "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001707.tgz", - "integrity": "sha512-3qtRjw/HQSMlDWf+X79N206fepf4SOOU6SQLMaq/0KkZLmSjPxAkBOQQ+FxbHKfHmYLZFfdWsO3KA90ceHPSnw==", "dev": true, "funding": [ { @@ -2813,8 +2210,6 @@ }, "node_modules/chalk": { "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", "dev": true, "license": "MIT", "dependencies": { @@ -2830,8 +2225,6 @@ }, "node_modules/chalk/node_modules/supports-color": { "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", "dev": true, "license": "MIT", "dependencies": { @@ -2843,8 +2236,6 @@ }, "node_modules/char-regex": { "version": "1.0.2", - "resolved": "https://registry.npmjs.org/char-regex/-/char-regex-1.0.2.tgz", - "integrity": "sha512-kWWXztvZ5SBQV+eRgKFeh8q5sLuZY2+8WUIzlxWVTg+oGwY14qylx1KbKzHd8P6ZYkAg0xyIDU9JMHhyJMZ1jw==", "dev": true, "license": "MIT", "engines": { @@ -2853,8 +2244,6 @@ }, "node_modules/chokidar": { "version": "4.0.3", - "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-4.0.3.tgz", - "integrity": "sha512-Qgzu8kfBvo+cA4962jnP1KkS6Dop5NS6g7R5LFYJr4b8Ub94PPQXUksCw9PvXoeXPRRddRNC5C1JQUR2SMGtnA==", "dev": true, "license": "MIT", "dependencies": { @@ -2869,8 +2258,6 @@ }, "node_modules/chrome-trace-event": { "version": "1.0.4", - "resolved": "https://registry.npmjs.org/chrome-trace-event/-/chrome-trace-event-1.0.4.tgz", - "integrity": "sha512-rNjApaLzuwaOTjCiT8lSDdGN1APCiqkChLMJxJPWLunPAt5fy8xgU9/jNOchV84wfIxrA0lRQB7oCT8jrn/wrQ==", "dev": true, "license": "MIT", "engines": { @@ -2879,8 +2266,6 @@ }, "node_modules/ci-info": { "version": "3.9.0", - "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-3.9.0.tgz", - "integrity": "sha512-NIxF55hv4nSqQswkAeiOi1r83xy8JldOFDTWiug55KBu9Jnblncd2U6ViHmYgHf01TPZS77NJBhBMKdWj9HQMQ==", "dev": true, "funding": [ { @@ -2895,15 +2280,11 @@ }, "node_modules/cjs-module-lexer": { "version": "1.4.3", - "resolved": "https://registry.npmjs.org/cjs-module-lexer/-/cjs-module-lexer-1.4.3.tgz", - "integrity": "sha512-9z8TZaGM1pfswYeXrUpzPrkx8UnWYdhJclsiYMm6x/w5+nN+8Tf/LnAgfLGQCm59qAOxU8WwHEq2vNwF6i4j+Q==", "dev": true, "license": "MIT" }, "node_modules/cliui": { "version": "8.0.1", - "resolved": "https://registry.npmjs.org/cliui/-/cliui-8.0.1.tgz", - "integrity": "sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==", "dev": true, "license": "ISC", "dependencies": { @@ -2917,8 +2298,6 @@ }, "node_modules/clone-deep": { "version": "4.0.1", - "resolved": "https://registry.npmjs.org/clone-deep/-/clone-deep-4.0.1.tgz", - "integrity": "sha512-neHB9xuzh/wk0dIHweyAXv2aPGZIVk3pLMe+/RNzINf17fe0OG96QroktYAUm7SM1PBnzTabaLboqqxDyMU+SQ==", "dev": true, "license": "MIT", "dependencies": { @@ -2932,8 +2311,6 @@ }, "node_modules/co": { "version": "4.6.0", - "resolved": "https://registry.npmjs.org/co/-/co-4.6.0.tgz", - "integrity": "sha512-QVb0dM5HvG+uaxitm8wONl7jltx8dqhfU33DcqtOZcLSVIKSDDLDi7+0LbAKiyI8hD9u42m2YxXSkMGWThaecQ==", "dev": true, "license": "MIT", "engines": { @@ -2943,15 +2320,11 @@ }, "node_modules/collect-v8-coverage": { "version": "1.0.2", - "resolved": "https://registry.npmjs.org/collect-v8-coverage/-/collect-v8-coverage-1.0.2.tgz", - "integrity": "sha512-lHl4d5/ONEbLlJvaJNtsF/Lz+WvB07u2ycqTYbdrq7UypDXailES4valYb2eWiJFxZlVmpGekfqoxQhzyFdT4Q==", "dev": true, "license": "MIT" }, "node_modules/color-convert": { "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", "dev": true, "license": "MIT", "dependencies": { @@ -2963,29 +2336,21 @@ }, "node_modules/color-name": { "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", "dev": true, "license": "MIT" }, "node_modules/commander": { "version": "2.20.3", - "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz", - "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==", "dev": true, "license": "MIT" }, "node_modules/concat-map": { "version": "0.0.1", - "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", - "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==", "dev": true, "license": "MIT" }, "node_modules/concurrently": { "version": "9.1.2", - "resolved": "https://registry.npmjs.org/concurrently/-/concurrently-9.1.2.tgz", - "integrity": "sha512-H9MWcoPsYddwbOGM6difjVwVZHl63nwMEwDJG/L7VGtuaJhb12h2caPG2tVPWs7emuYix252iGfqOyrz1GczTQ==", "dev": true, "license": "MIT", "dependencies": { @@ -3010,15 +2375,11 @@ }, "node_modules/convert-source-map": { "version": "2.0.0", - "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-2.0.0.tgz", - "integrity": "sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==", "dev": true, "license": "MIT" }, "node_modules/create-jest": { "version": "29.7.0", - "resolved": "https://registry.npmjs.org/create-jest/-/create-jest-29.7.0.tgz", - "integrity": "sha512-Adz2bdH0Vq3F53KEMJOoftQFutWCukm6J24wbPWRO4k1kMY7gS7ds/uoJkNuV8wDCtWWnuwGcJwpWcih+zEW1Q==", "dev": true, "license": "MIT", "dependencies": { @@ -3039,8 +2400,6 @@ }, "node_modules/cross-spawn": { "version": "7.0.6", - "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.6.tgz", - "integrity": "sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==", "dev": true, "license": "MIT", "dependencies": { @@ -3054,8 +2413,6 @@ }, "node_modules/css-loader": { "version": "7.1.2", - "resolved": "https://registry.npmjs.org/css-loader/-/css-loader-7.1.2.tgz", - "integrity": "sha512-6WvYYn7l/XEGN8Xu2vWFt9nVzrCn39vKyTEFf/ExEyoksJjjSZV/0/35XPlMbpnr6VGhZIUg5yJrL8tGfes/FA==", "dev": true, "license": "MIT", "dependencies": { @@ -3090,8 +2447,6 @@ }, "node_modules/cssesc": { "version": "3.0.0", - "resolved": "https://registry.npmjs.org/cssesc/-/cssesc-3.0.0.tgz", - "integrity": "sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==", "dev": true, "license": "MIT", "bin": { @@ -3103,8 +2458,6 @@ }, "node_modules/date-fns": { "version": "4.1.0", - "resolved": "https://registry.npmjs.org/date-fns/-/date-fns-4.1.0.tgz", - "integrity": "sha512-Ukq0owbQXxa/U3EGtsdVBkR1w7KOQ5gIBqdH2hkvknzZPYvBxb/aa6E8L7tmjFtkwZBu3UXBbjIgPo/Ez4xaNg==", "dev": true, "license": "MIT", "funding": { @@ -3114,8 +2467,6 @@ }, "node_modules/debug": { "version": "4.4.0", - "resolved": "https://registry.npmjs.org/debug/-/debug-4.4.0.tgz", - "integrity": "sha512-6WTZ/IxCY/T6BALoZHaE4ctp9xm+Z5kY/pzYaCHRFeyVhojxlrm+46y68HA6hr0TcwEssoxNiDEUJQjfPZ/RYA==", "dev": true, "license": "MIT", "dependencies": { @@ -3132,8 +2483,6 @@ }, "node_modules/dedent": { "version": "1.5.3", - "resolved": "https://registry.npmjs.org/dedent/-/dedent-1.5.3.tgz", - "integrity": "sha512-NHQtfOOW68WD8lgypbLA5oT+Bt0xXJhiYvoR6SmmNXZfpzOGXwdKWmcwG8N7PwVVWV3eF/68nmD9BaJSsTBhyQ==", "dev": true, "license": "MIT", "peerDependencies": { @@ -3147,15 +2496,11 @@ }, "node_modules/deep-is": { "version": "0.1.4", - "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz", - "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==", "dev": true, "license": "MIT" }, "node_modules/deepmerge": { "version": "4.3.1", - "resolved": "https://registry.npmjs.org/deepmerge/-/deepmerge-4.3.1.tgz", - "integrity": "sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==", "dev": true, "license": "MIT", "engines": { @@ -3164,8 +2509,6 @@ }, "node_modules/detect-libc": { "version": "1.0.3", - "resolved": "https://registry.npmjs.org/detect-libc/-/detect-libc-1.0.3.tgz", - "integrity": "sha512-pGjwhsmsp4kL2RTz08wcOlGN83otlqHeD/Z5T8GXZB+/YcpQ/dgo+lbU8ZsGxV0HIvqqxo9l7mqYwyYMD9bKDg==", "dev": true, "license": "Apache-2.0", "optional": true, @@ -3178,8 +2521,6 @@ }, "node_modules/detect-newline": { "version": "3.1.0", - "resolved": "https://registry.npmjs.org/detect-newline/-/detect-newline-3.1.0.tgz", - "integrity": "sha512-TLz+x/vEXm/Y7P7wn1EJFNLxYpUD4TgMosxY6fAVJUnJMbupHBOncxyWUG9OpTaH9EBD7uFI5LfEgmMOc54DsA==", "dev": true, "license": "MIT", "engines": { @@ -3188,8 +2529,6 @@ }, "node_modules/diff-sequences": { "version": "29.6.3", - "resolved": "https://registry.npmjs.org/diff-sequences/-/diff-sequences-29.6.3.tgz", - "integrity": "sha512-EjePK1srD3P08o2j4f0ExnylqRs5B9tJjcp9t1krH2qRi8CCdsYfwe9JgSLurFBWwq4uOlipzfk5fHNvwFKr8Q==", "dev": true, "license": "MIT", "engines": { @@ -3198,8 +2537,6 @@ }, "node_modules/dunder-proto": { "version": "1.0.1", - "resolved": "https://registry.npmjs.org/dunder-proto/-/dunder-proto-1.0.1.tgz", - "integrity": "sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A==", "dev": true, "license": "MIT", "dependencies": { @@ -3213,8 +2550,6 @@ }, "node_modules/ejs": { "version": "3.1.10", - "resolved": "https://registry.npmjs.org/ejs/-/ejs-3.1.10.tgz", - "integrity": "sha512-UeJmFfOrAQS8OJWPZ4qtgHyWExa088/MtK5UEyoJGFH67cDEXkZSviOiKRCZ4Xij0zxI3JECgYs3oKx+AizQBA==", "dev": true, "license": "Apache-2.0", "dependencies": { @@ -3229,15 +2564,11 @@ }, "node_modules/electron-to-chromium": { "version": "1.5.127", - "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.127.tgz", - "integrity": "sha512-Ke5OggqOtEqzCzcUyV+9jgO6L6sv1gQVKGtSExXHjD/FK0p4qzPZbrDsrCdy0DptcQprD0V80RCBYSWLMhTTgQ==", "dev": true, "license": "ISC" }, "node_modules/emittery": { "version": "0.13.1", - "resolved": "https://registry.npmjs.org/emittery/-/emittery-0.13.1.tgz", - "integrity": "sha512-DeWwawk6r5yR9jFgnDKYt4sLS0LmHJJi3ZOnb5/JdbYwj3nW+FxQnHIjhBKz8YLC7oRNPVM9NQ47I3CVx34eqQ==", "dev": true, "license": "MIT", "engines": { @@ -3249,15 +2580,11 @@ }, "node_modules/emoji-regex": { "version": "8.0.0", - "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", - "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", "dev": true, "license": "MIT" }, "node_modules/emojis-list": { "version": "3.0.0", - "resolved": "https://registry.npmjs.org/emojis-list/-/emojis-list-3.0.0.tgz", - "integrity": "sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q==", "dev": true, "license": "MIT", "engines": { @@ -3266,8 +2593,6 @@ }, "node_modules/enhanced-resolve": { "version": "5.18.1", - "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.18.1.tgz", - "integrity": "sha512-ZSW3ma5GkcQBIpwZTSRAI8N71Uuwgs93IezB7mf7R60tC8ZbJideoDNKjHn2O9KIlx6rkGTTEk1xUCK2E1Y2Yg==", "dev": true, "license": "MIT", "dependencies": { @@ -3280,8 +2605,6 @@ }, "node_modules/envinfo": { "version": "7.14.0", - "resolved": "https://registry.npmjs.org/envinfo/-/envinfo-7.14.0.tgz", - "integrity": "sha512-CO40UI41xDQzhLB1hWyqUKgFhs250pNcGbyGKe1l/e4FSaI/+YE4IMG76GDt0In67WLPACIITC+sOi08x4wIvg==", "dev": true, "license": "MIT", "bin": { @@ -3293,8 +2616,6 @@ }, "node_modules/error-ex": { "version": "1.3.2", - "resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz", - "integrity": "sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==", "dev": true, "license": "MIT", "dependencies": { @@ -3303,8 +2624,6 @@ }, "node_modules/es-define-property": { "version": "1.0.1", - "resolved": "https://registry.npmjs.org/es-define-property/-/es-define-property-1.0.1.tgz", - "integrity": "sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g==", "dev": true, "license": "MIT", "engines": { @@ -3313,8 +2632,6 @@ }, "node_modules/es-errors": { "version": "1.3.0", - "resolved": "https://registry.npmjs.org/es-errors/-/es-errors-1.3.0.tgz", - "integrity": "sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==", "dev": true, "license": "MIT", "engines": { @@ -3323,15 +2640,11 @@ }, "node_modules/es-module-lexer": { "version": "1.6.0", - "resolved": "https://registry.npmjs.org/es-module-lexer/-/es-module-lexer-1.6.0.tgz", - "integrity": "sha512-qqnD1yMU6tk/jnaMosogGySTZP8YtUgAffA9nMN+E/rjxcfRQ6IEk7IiozUjgxKoFHBGjTLnrHB/YC45r/59EQ==", "dev": true, "license": "MIT" }, "node_modules/es-object-atoms": { "version": "1.1.1", - "resolved": "https://registry.npmjs.org/es-object-atoms/-/es-object-atoms-1.1.1.tgz", - "integrity": "sha512-FGgH2h8zKNim9ljj7dankFPcICIK9Cp5bm+c2gQSYePhpaG5+esrLODihIorn+Pe6FGJzWhXQotPv73jTaldXA==", "dev": true, "license": "MIT", "dependencies": { @@ -3343,8 +2656,6 @@ }, "node_modules/escalade": { "version": "3.2.0", - "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.2.0.tgz", - "integrity": "sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==", "dev": true, "license": "MIT", "engines": { @@ -3353,8 +2664,6 @@ }, "node_modules/escape-string-regexp": { "version": "4.0.0", - "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", - "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", "dev": true, "license": "MIT", "engines": { @@ -3366,8 +2675,6 @@ }, "node_modules/eslint": { "version": "9.28.0", - "resolved": "https://registry.npmjs.org/eslint/-/eslint-9.28.0.tgz", - "integrity": "sha512-ocgh41VhRlf9+fVpe7QKzwLj9c92fDiqOj8Y3Sd4/ZmVA4Btx4PlUYPq4pp9JDyupkf1upbEXecxL2mwNV7jPQ==", "dev": true, "license": "MIT", "dependencies": { @@ -3427,8 +2734,6 @@ }, "node_modules/eslint-plugin-unused-imports": { "version": "4.1.4", - "resolved": "https://registry.npmjs.org/eslint-plugin-unused-imports/-/eslint-plugin-unused-imports-4.1.4.tgz", - "integrity": "sha512-YptD6IzQjDardkl0POxnnRBhU1OEePMV0nd6siHaRBbd+lyh6NAhFEobiznKU7kTsSsDeSD62Pe7kAM1b7dAZQ==", "dev": true, "license": "MIT", "peerDependencies": { @@ -3443,8 +2748,6 @@ }, "node_modules/eslint-scope": { "version": "8.3.0", - "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-8.3.0.tgz", - "integrity": "sha512-pUNxi75F8MJ/GdeKtVLSbYg4ZI34J6C0C7sbL4YOp2exGwen7ZsuBqKzUhXd0qMQ362yET3z+uPwKeg/0C2XCQ==", "dev": true, "license": "BSD-2-Clause", "dependencies": { @@ -3460,8 +2763,6 @@ }, "node_modules/eslint-visitor-keys": { "version": "4.2.0", - "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-4.2.0.tgz", - "integrity": "sha512-UyLnSehNt62FFhSwjZlHmeokpRK59rcz29j+F1/aDgbkbRTk7wIc9XzdoasMUbRNKDM0qQt/+BJ4BrpFeABemw==", "dev": true, "license": "Apache-2.0", "engines": { @@ -3473,8 +2774,6 @@ }, "node_modules/espree": { "version": "10.3.0", - "resolved": "https://registry.npmjs.org/espree/-/espree-10.3.0.tgz", - "integrity": "sha512-0QYC8b24HWY8zjRnDTL6RiHfDbAWn63qb4LMj1Z4b076A4une81+z03Kg7l7mn/48PUTqoLptSXez8oknU8Clg==", "dev": true, "license": "BSD-2-Clause", "dependencies": { @@ -3491,8 +2790,6 @@ }, "node_modules/esprima": { "version": "4.0.1", - "resolved": "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz", - "integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==", "dev": true, "license": "BSD-2-Clause", "bin": { @@ -3505,8 +2802,6 @@ }, "node_modules/esquery": { "version": "1.6.0", - "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.6.0.tgz", - "integrity": "sha512-ca9pw9fomFcKPvFLXhBKUK90ZvGibiGOvRJNbjljY7s7uq/5YO4BOzcYtJqExdx99rF6aAcnRxHmcUHcz6sQsg==", "dev": true, "license": "BSD-3-Clause", "dependencies": { @@ -3518,8 +2813,6 @@ }, "node_modules/esrecurse": { "version": "4.3.0", - "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz", - "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==", "dev": true, "license": "BSD-2-Clause", "dependencies": { @@ -3531,8 +2824,6 @@ }, "node_modules/estraverse": { "version": "5.3.0", - "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", - "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", "dev": true, "license": "BSD-2-Clause", "engines": { @@ -3541,8 +2832,6 @@ }, "node_modules/esutils": { "version": "2.0.3", - "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", - "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==", "dev": true, "license": "BSD-2-Clause", "engines": { @@ -3551,14 +2840,10 @@ }, "node_modules/eventemitter3": { "version": "5.0.1", - "resolved": "https://registry.npmjs.org/eventemitter3/-/eventemitter3-5.0.1.tgz", - "integrity": "sha512-GWkBvjiSZK87ELrYOSESUYeVIc9mvLLf/nXalMOS5dYrgZq9o5OVkbZAVM06CVxYsCwH9BDZFPlQTlPA1j4ahA==", "license": "MIT" }, "node_modules/events": { "version": "3.3.0", - "resolved": "https://registry.npmjs.org/events/-/events-3.3.0.tgz", - "integrity": "sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==", "dev": true, "license": "MIT", "engines": { @@ -3567,8 +2852,6 @@ }, "node_modules/execa": { "version": "5.1.1", - "resolved": "https://registry.npmjs.org/execa/-/execa-5.1.1.tgz", - "integrity": "sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==", "dev": true, "license": "MIT", "dependencies": { @@ -3591,8 +2874,6 @@ }, "node_modules/exit": { "version": "0.1.2", - "resolved": "https://registry.npmjs.org/exit/-/exit-0.1.2.tgz", - "integrity": "sha512-Zk/eNKV2zbjpKzrsQ+n1G6poVbErQxJ0LBOJXaKZ1EViLzH+hrLu9cdXI4zw9dBQJslwBEpbQ2P1oS7nDxs6jQ==", "dev": true, "engines": { "node": ">= 0.8.0" @@ -3600,8 +2881,6 @@ }, "node_modules/expect": { "version": "29.7.0", - "resolved": "https://registry.npmjs.org/expect/-/expect-29.7.0.tgz", - "integrity": "sha512-2Zks0hf1VLFYI1kbh0I5jP3KHHyCHpkfyHBzsSXRFgl/Bg9mWYfMW8oD+PdMPlEwy5HNsR9JutYy6pMeOh61nw==", "dev": true, "license": "MIT", "dependencies": { @@ -3617,15 +2896,11 @@ }, "node_modules/fast-deep-equal": { "version": "3.1.3", - "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", - "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==", "dev": true, "license": "MIT" }, "node_modules/fast-glob": { "version": "3.3.3", - "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.3.tgz", - "integrity": "sha512-7MptL8U0cqcFdzIzwOTHoilX9x5BrNqye7Z/LuC7kCMRio1EMSyqRK3BEAUD7sXRq4iT4AzTVuZdhgQ2TCvYLg==", "dev": true, "license": "MIT", "dependencies": { @@ -3641,8 +2916,6 @@ }, "node_modules/fast-glob/node_modules/glob-parent": { "version": "5.1.2", - "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", - "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", "dev": true, "license": "ISC", "dependencies": { @@ -3654,22 +2927,16 @@ }, "node_modules/fast-json-stable-stringify": { "version": "2.1.0", - "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", - "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==", "dev": true, "license": "MIT" }, "node_modules/fast-levenshtein": { "version": "2.0.6", - "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz", - "integrity": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==", "dev": true, "license": "MIT" }, "node_modules/fast-uri": { "version": "3.0.6", - "resolved": "https://registry.npmjs.org/fast-uri/-/fast-uri-3.0.6.tgz", - "integrity": "sha512-Atfo14OibSv5wAp4VWNsFYE1AchQRTv9cBGWET4pZWHzYshFSS9NQI6I57rdKn9croWVMbYFbLhJ+yJvmZIIHw==", "dev": true, "funding": [ { @@ -3685,8 +2952,6 @@ }, "node_modules/fastest-levenshtein": { "version": "1.0.16", - "resolved": "https://registry.npmjs.org/fastest-levenshtein/-/fastest-levenshtein-1.0.16.tgz", - "integrity": "sha512-eRnCtTTtGZFpQCwhJiUOuxPQWRXVKYDn0b2PeHfXL6/Zi53SLAzAHfVhVWK2AryC/WH05kGfxhFIPvTF0SXQzg==", "dev": true, "license": "MIT", "engines": { @@ -3695,8 +2960,6 @@ }, "node_modules/fastq": { "version": "1.19.1", - "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.19.1.tgz", - "integrity": "sha512-GwLTyxkCXjXbxqIhTsMI2Nui8huMPtnxg7krajPJAjnEG/iiOS7i+zCtWGZR9G0NBKbXKh6X9m9UIsYX/N6vvQ==", "dev": true, "license": "ISC", "dependencies": { @@ -3705,8 +2968,6 @@ }, "node_modules/fb-watchman": { "version": "2.0.2", - "resolved": "https://registry.npmjs.org/fb-watchman/-/fb-watchman-2.0.2.tgz", - "integrity": "sha512-p5161BqbuCaSnB8jIbzQHOlpgsPmK5rJVDfDKO91Axs5NC1uu3HRQm6wt9cd9/+GtQQIO53JdGXXoyDpTAsgYA==", "dev": true, "license": "Apache-2.0", "dependencies": { @@ -3715,8 +2976,6 @@ }, "node_modules/file-entry-cache": { "version": "8.0.0", - "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-8.0.0.tgz", - "integrity": "sha512-XXTUwCvisa5oacNGRP9SfNtYBNAMi+RPwBFmblZEF7N7swHYQS6/Zfk7SRwx4D5j3CH211YNRco1DEMNVfZCnQ==", "dev": true, "license": "MIT", "dependencies": { @@ -3728,8 +2987,6 @@ }, "node_modules/file-loader": { "version": "6.2.0", - "resolved": "https://registry.npmjs.org/file-loader/-/file-loader-6.2.0.tgz", - "integrity": "sha512-qo3glqyTa61Ytg4u73GultjHGjdRyig3tG6lPtyX/jOEJvHif9uB0/OCI2Kif6ctF3caQTW2G5gym21oAsI4pw==", "dev": true, "license": "MIT", "dependencies": { @@ -3749,8 +3006,6 @@ }, "node_modules/filelist": { "version": "1.0.4", - "resolved": "https://registry.npmjs.org/filelist/-/filelist-1.0.4.tgz", - "integrity": "sha512-w1cEuf3S+DrLCQL7ET6kz+gmlJdbq9J7yXCSjK/OZCPA+qEN1WyF4ZAf0YYJa4/shHJra2t/d/r8SV4Ji+x+8Q==", "dev": true, "license": "Apache-2.0", "dependencies": { @@ -3759,8 +3014,6 @@ }, "node_modules/filelist/node_modules/brace-expansion": { "version": "2.0.1", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", - "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", "dev": true, "license": "MIT", "dependencies": { @@ -3769,8 +3022,6 @@ }, "node_modules/filelist/node_modules/minimatch": { "version": "5.1.6", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-5.1.6.tgz", - "integrity": "sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==", "dev": true, "license": "ISC", "dependencies": { @@ -3782,8 +3033,6 @@ }, "node_modules/fill-range": { "version": "7.1.1", - "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.1.1.tgz", - "integrity": "sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==", "dev": true, "license": "MIT", "dependencies": { @@ -3795,8 +3044,6 @@ }, "node_modules/find-up": { "version": "5.0.0", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz", - "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==", "dev": true, "license": "MIT", "dependencies": { @@ -3812,8 +3059,6 @@ }, "node_modules/flat": { "version": "5.0.2", - "resolved": "https://registry.npmjs.org/flat/-/flat-5.0.2.tgz", - "integrity": "sha512-b6suED+5/3rTpUBdG1gupIl8MPFCAMA0QXwmljLhvCUKcUvdE4gWky9zpuGCcXHOsz4J9wPGNWq6OKpmIzz3hQ==", "dev": true, "license": "BSD-3-Clause", "bin": { @@ -3822,8 +3067,6 @@ }, "node_modules/flat-cache": { "version": "4.0.1", - "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-4.0.1.tgz", - "integrity": "sha512-f7ccFPK3SXFHpx15UIGyRJ/FJQctuKZ0zVuN3frBo4HnK3cay9VEW0R6yPYFHC0AgqhukPzKjq22t5DmAyqGyw==", "dev": true, "license": "MIT", "dependencies": { @@ -3836,15 +3079,11 @@ }, "node_modules/flatted": { "version": "3.3.3", - "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.3.3.tgz", - "integrity": "sha512-GX+ysw4PBCz0PzosHDepZGANEuFCMLrnRTiEy9McGjmkCQYwRq4A/X786G/fjM/+OjsWSU1ZrY5qyARZmO/uwg==", "dev": true, "license": "ISC" }, "node_modules/fs-extra": { "version": "11.3.0", - "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-11.3.0.tgz", - "integrity": "sha512-Z4XaCL6dUDHfP/jT25jJKMmtxvuwbkrD1vNSMFlo9lNLY2c5FHYSQgHPRZUjAB26TpDEoW9HCOgplrdbaPV/ew==", "dev": true, "license": "MIT", "dependencies": { @@ -3858,30 +3097,11 @@ }, "node_modules/fs.realpath": { "version": "1.0.0", - "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", - "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==", "dev": true, "license": "ISC" }, - "node_modules/fsevents": { - "version": "2.3.3", - "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz", - "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==", - "dev": true, - "hasInstallScript": true, - "license": "MIT", - "optional": true, - "os": [ - "darwin" - ], - "engines": { - "node": "^8.16.0 || ^10.6.0 || >=11.0.0" - } - }, "node_modules/function-bind": { "version": "1.1.2", - "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz", - "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==", "dev": true, "license": "MIT", "funding": { @@ -3890,8 +3110,6 @@ }, "node_modules/gensync": { "version": "1.0.0-beta.2", - "resolved": "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz", - "integrity": "sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==", "dev": true, "license": "MIT", "engines": { @@ -3900,8 +3118,6 @@ }, "node_modules/get-caller-file": { "version": "2.0.5", - "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz", - "integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==", "dev": true, "license": "ISC", "engines": { @@ -3910,8 +3126,6 @@ }, "node_modules/get-intrinsic": { "version": "1.3.0", - "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.3.0.tgz", - "integrity": "sha512-9fSjSaos/fRIVIp+xSJlE6lfwhES7LNtKaCBIamHsjr2na1BiABJPo0mOjjz8GJDURarmCPGqaiVg5mfjb98CQ==", "dev": true, "license": "MIT", "dependencies": { @@ -3935,8 +3149,6 @@ }, "node_modules/get-package-type": { "version": "0.1.0", - "resolved": "https://registry.npmjs.org/get-package-type/-/get-package-type-0.1.0.tgz", - "integrity": "sha512-pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q==", "dev": true, "license": "MIT", "engines": { @@ -3945,8 +3157,6 @@ }, "node_modules/get-proto": { "version": "1.0.1", - "resolved": "https://registry.npmjs.org/get-proto/-/get-proto-1.0.1.tgz", - "integrity": "sha512-sTSfBjoXBp89JvIKIefqw7U2CCebsc74kiY6awiGogKtoSGbgjYE/G/+l9sF3MWFPNc9IcoOC4ODfKHfxFmp0g==", "dev": true, "license": "MIT", "dependencies": { @@ -3959,8 +3169,6 @@ }, "node_modules/get-stream": { "version": "6.0.1", - "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz", - "integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==", "dev": true, "license": "MIT", "engines": { @@ -3972,9 +3180,6 @@ }, "node_modules/glob": { "version": "7.2.3", - "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", - "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", - "deprecated": "Glob versions prior to v9 are no longer supported", "dev": true, "license": "ISC", "dependencies": { @@ -3994,8 +3199,6 @@ }, "node_modules/glob-parent": { "version": "6.0.2", - "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz", - "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==", "dev": true, "license": "ISC", "dependencies": { @@ -4007,15 +3210,11 @@ }, "node_modules/glob-to-regexp": { "version": "0.4.1", - "resolved": "https://registry.npmjs.org/glob-to-regexp/-/glob-to-regexp-0.4.1.tgz", - "integrity": "sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==", "dev": true, "license": "BSD-2-Clause" }, "node_modules/globals": { "version": "14.0.0", - "resolved": "https://registry.npmjs.org/globals/-/globals-14.0.0.tgz", - "integrity": "sha512-oahGvuMGQlPw/ivIYBjVSrWAfWLBeku5tpPE2fOPLi+WHffIWbuh2tCjhyQhTBPMf5E9jDEH4FOmTYgYwbKwtQ==", "dev": true, "license": "MIT", "engines": { @@ -4027,8 +3226,6 @@ }, "node_modules/gopd": { "version": "1.2.0", - "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.2.0.tgz", - "integrity": "sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg==", "dev": true, "license": "MIT", "engines": { @@ -4040,22 +3237,16 @@ }, "node_modules/graceful-fs": { "version": "4.2.11", - "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz", - "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==", "dev": true, "license": "ISC" }, "node_modules/graphemer": { "version": "1.4.0", - "resolved": "https://registry.npmjs.org/graphemer/-/graphemer-1.4.0.tgz", - "integrity": "sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==", "dev": true, "license": "MIT" }, "node_modules/has-flag": { "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", "dev": true, "license": "MIT", "engines": { @@ -4064,8 +3255,6 @@ }, "node_modules/has-symbols": { "version": "1.1.0", - "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.1.0.tgz", - "integrity": "sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ==", "dev": true, "license": "MIT", "engines": { @@ -4077,8 +3266,6 @@ }, "node_modules/hasown": { "version": "2.0.2", - "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.2.tgz", - "integrity": "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==", "dev": true, "license": "MIT", "dependencies": { @@ -4090,15 +3277,11 @@ }, "node_modules/html-escaper": { "version": "2.0.2", - "resolved": "https://registry.npmjs.org/html-escaper/-/html-escaper-2.0.2.tgz", - "integrity": "sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg==", "dev": true, "license": "MIT" }, "node_modules/human-signals": { "version": "2.1.0", - "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-2.1.0.tgz", - "integrity": "sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==", "dev": true, "license": "Apache-2.0", "engines": { @@ -4107,8 +3290,6 @@ }, "node_modules/icss-utils": { "version": "5.1.0", - "resolved": "https://registry.npmjs.org/icss-utils/-/icss-utils-5.1.0.tgz", - "integrity": "sha512-soFhflCVWLfRNOPU3iv5Z9VUdT44xFRbzjLsEzSr5AQmgqPMTHdU3PMT1Cf1ssx8fLNJDA1juftYl+PUcv3MqA==", "dev": true, "license": "ISC", "engines": { @@ -4120,8 +3301,6 @@ }, "node_modules/ignore": { "version": "5.3.2", - "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.3.2.tgz", - "integrity": "sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==", "dev": true, "license": "MIT", "engines": { @@ -4130,15 +3309,11 @@ }, "node_modules/immutable": { "version": "5.1.1", - "resolved": "https://registry.npmjs.org/immutable/-/immutable-5.1.1.tgz", - "integrity": "sha512-3jatXi9ObIsPGr3N5hGw/vWWcTkq6hUYhpQz4k0wLC+owqWi/LiugIw9x0EdNZ2yGedKN/HzePiBvaJRXa0Ujg==", "dev": true, "license": "MIT" }, "node_modules/import-fresh": { "version": "3.3.1", - "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.1.tgz", - "integrity": "sha512-TR3KfrTZTYLPB6jUjfx6MF9WcWrHL9su5TObK4ZkYgBdWKPOFoSoQIdEuTuR82pmtxH2spWG9h6etwfr1pLBqQ==", "dev": true, "license": "MIT", "dependencies": { @@ -4154,8 +3329,6 @@ }, "node_modules/import-local": { "version": "3.2.0", - "resolved": "https://registry.npmjs.org/import-local/-/import-local-3.2.0.tgz", - "integrity": "sha512-2SPlun1JUPWoM6t3F0dw0FkCF/jWY8kttcY4f599GLTSjh2OCuuhdTkJQsEcZzBqbXZGKMK2OqW1oZsjtf/gQA==", "dev": true, "license": "MIT", "dependencies": { @@ -4174,8 +3347,6 @@ }, "node_modules/imurmurhash": { "version": "0.1.4", - "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", - "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==", "dev": true, "license": "MIT", "engines": { @@ -4184,9 +3355,6 @@ }, "node_modules/inflight": { "version": "1.0.6", - "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", - "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==", - "deprecated": "This module is not supported, and leaks memory. Do not use it. Check out lru-cache if you want a good and tested way to coalesce async requests by a key value, which is much more comprehensive and powerful.", "dev": true, "license": "ISC", "dependencies": { @@ -4196,15 +3364,11 @@ }, "node_modules/inherits": { "version": "2.0.4", - "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", - "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", "dev": true, "license": "ISC" }, "node_modules/interpret": { "version": "3.1.1", - "resolved": "https://registry.npmjs.org/interpret/-/interpret-3.1.1.tgz", - "integrity": "sha512-6xwYfHbajpoF0xLW+iwLkhwgvLoZDfjYfoFNu8ftMoXINzwuymNLd9u/KmwtdT2GbR+/Cz66otEGEVVUHX9QLQ==", "dev": true, "license": "MIT", "engines": { @@ -4213,15 +3377,11 @@ }, "node_modules/is-arrayish": { "version": "0.2.1", - "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz", - "integrity": "sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==", "dev": true, "license": "MIT" }, "node_modules/is-core-module": { "version": "2.16.1", - "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.16.1.tgz", - "integrity": "sha512-UfoeMA6fIJ8wTYFEUjelnaGI67v6+N7qXJEvQuIGa99l4xsCruSYOVSQ0uPANn4dAzm8lkYPaKLrrijLq7x23w==", "dev": true, "license": "MIT", "dependencies": { @@ -4236,8 +3396,6 @@ }, "node_modules/is-extglob": { "version": "2.1.1", - "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", - "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", "dev": true, "license": "MIT", "engines": { @@ -4246,8 +3404,6 @@ }, "node_modules/is-fullwidth-code-point": { "version": "3.0.0", - "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", - "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", "dev": true, "license": "MIT", "engines": { @@ -4256,8 +3412,6 @@ }, "node_modules/is-generator-fn": { "version": "2.1.0", - "resolved": "https://registry.npmjs.org/is-generator-fn/-/is-generator-fn-2.1.0.tgz", - "integrity": "sha512-cTIB4yPYL/Grw0EaSzASzg6bBy9gqCofvWN8okThAYIxKJZC+udlRAmGbM0XLeniEJSs8uEgHPGuHSe1XsOLSQ==", "dev": true, "license": "MIT", "engines": { @@ -4266,8 +3420,6 @@ }, "node_modules/is-glob": { "version": "4.0.3", - "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", - "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", "dev": true, "license": "MIT", "dependencies": { @@ -4279,8 +3431,6 @@ }, "node_modules/is-number": { "version": "7.0.0", - "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", - "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", "dev": true, "license": "MIT", "engines": { @@ -4289,8 +3439,6 @@ }, "node_modules/is-plain-object": { "version": "2.0.4", - "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz", - "integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==", "dev": true, "license": "MIT", "dependencies": { @@ -4302,8 +3450,6 @@ }, "node_modules/is-stream": { "version": "2.0.1", - "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz", - "integrity": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==", "dev": true, "license": "MIT", "engines": { @@ -4315,15 +3461,11 @@ }, "node_modules/isexe": { "version": "2.0.0", - "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", - "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==", "dev": true, "license": "ISC" }, "node_modules/isobject": { "version": "3.0.1", - "resolved": "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz", - "integrity": "sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg==", "dev": true, "license": "MIT", "engines": { @@ -4332,8 +3474,6 @@ }, "node_modules/istanbul-lib-coverage": { "version": "3.2.2", - "resolved": "https://registry.npmjs.org/istanbul-lib-coverage/-/istanbul-lib-coverage-3.2.2.tgz", - "integrity": "sha512-O8dpsF+r0WV/8MNRKfnmrtCWhuKjxrq2w+jpzBL5UZKTi2LeVWnWOmWRxFlesJONmc+wLAGvKQZEOanko0LFTg==", "dev": true, "license": "BSD-3-Clause", "engines": { @@ -4342,8 +3482,6 @@ }, "node_modules/istanbul-lib-instrument": { "version": "6.0.3", - "resolved": "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-6.0.3.tgz", - "integrity": "sha512-Vtgk7L/R2JHyyGW07spoFlB8/lpjiOLTjMdms6AFMraYt3BaJauod/NGrfnVG/y4Ix1JEuMRPDPEj2ua+zz1/Q==", "dev": true, "license": "BSD-3-Clause", "dependencies": { @@ -4359,8 +3497,6 @@ }, "node_modules/istanbul-lib-report": { "version": "3.0.1", - "resolved": "https://registry.npmjs.org/istanbul-lib-report/-/istanbul-lib-report-3.0.1.tgz", - "integrity": "sha512-GCfE1mtsHGOELCU8e/Z7YWzpmybrx/+dSTfLrvY8qRmaY6zXTKWn6WQIjaAFw069icm6GVMNkgu0NzI4iPZUNw==", "dev": true, "license": "BSD-3-Clause", "dependencies": { @@ -4374,8 +3510,6 @@ }, "node_modules/istanbul-lib-report/node_modules/supports-color": { "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", "dev": true, "license": "MIT", "dependencies": { @@ -4387,8 +3521,6 @@ }, "node_modules/istanbul-lib-source-maps": { "version": "4.0.1", - "resolved": "https://registry.npmjs.org/istanbul-lib-source-maps/-/istanbul-lib-source-maps-4.0.1.tgz", - "integrity": "sha512-n3s8EwkdFIJCG3BPKBYvskgXGoy88ARzvegkitk60NxRdwltLOTaH7CUiMRXvwYorl0Q712iEjcWB+fK/MrWVw==", "dev": true, "license": "BSD-3-Clause", "dependencies": { @@ -4402,8 +3534,6 @@ }, "node_modules/istanbul-reports": { "version": "3.1.7", - "resolved": "https://registry.npmjs.org/istanbul-reports/-/istanbul-reports-3.1.7.tgz", - "integrity": "sha512-BewmUXImeuRk2YY0PVbxgKAysvhRPUQE0h5QRM++nVWyubKGV0l8qQ5op8+B2DOmwSe63Jivj0BjkPQVf8fP5g==", "dev": true, "license": "BSD-3-Clause", "dependencies": { @@ -4416,8 +3546,6 @@ }, "node_modules/jake": { "version": "10.9.2", - "resolved": "https://registry.npmjs.org/jake/-/jake-10.9.2.tgz", - "integrity": "sha512-2P4SQ0HrLQ+fw6llpLnOaGAvN2Zu6778SJMrCUwns4fOoG9ayrTiZk3VV8sCPkVZF8ab0zksVpS8FDY5pRCNBA==", "dev": true, "license": "Apache-2.0", "dependencies": { @@ -4435,8 +3563,6 @@ }, "node_modules/jest": { "version": "29.7.0", - "resolved": "https://registry.npmjs.org/jest/-/jest-29.7.0.tgz", - "integrity": "sha512-NIy3oAFp9shda19hy4HK0HRTWKtPJmGdnvywu01nOqNC2vZg+Z+fvJDxpMQA88eb2I9EcafcdjYgsDthnYTvGw==", "dev": true, "license": "MIT", "dependencies": { @@ -4462,8 +3588,6 @@ }, "node_modules/jest-changed-files": { "version": "29.7.0", - "resolved": "https://registry.npmjs.org/jest-changed-files/-/jest-changed-files-29.7.0.tgz", - "integrity": "sha512-fEArFiwf1BpQ+4bXSprcDc3/x4HSzL4al2tozwVpDFpsxALjLYdyiIK4e5Vz66GQJIbXJ82+35PtysofptNX2w==", "dev": true, "license": "MIT", "dependencies": { @@ -4477,8 +3601,6 @@ }, "node_modules/jest-circus": { "version": "29.7.0", - "resolved": "https://registry.npmjs.org/jest-circus/-/jest-circus-29.7.0.tgz", - "integrity": "sha512-3E1nCMgipcTkCocFwM90XXQab9bS+GMsjdpmPrlelaxwD93Ad8iVEjX/vvHPdLPnFf+L40u+5+iutRdA1N9myw==", "dev": true, "license": "MIT", "dependencies": { @@ -4509,8 +3631,6 @@ }, "node_modules/jest-cli": { "version": "29.7.0", - "resolved": "https://registry.npmjs.org/jest-cli/-/jest-cli-29.7.0.tgz", - "integrity": "sha512-OVVobw2IubN/GSYsxETi+gOe7Ka59EFMR/twOU3Jb2GnKKeMGJB5SGUUrEz3SFVmJASUdZUzy83sLNNQ2gZslg==", "dev": true, "license": "MIT", "dependencies": { @@ -4543,8 +3663,6 @@ }, "node_modules/jest-config": { "version": "29.7.0", - "resolved": "https://registry.npmjs.org/jest-config/-/jest-config-29.7.0.tgz", - "integrity": "sha512-uXbpfeQ7R6TZBqI3/TxCU4q4ttk3u0PJeC+E0zbfSoSjq6bJ7buBPxzQPL0ifrkY4DNu4JUdk0ImlBUYi840eQ==", "dev": true, "license": "MIT", "dependencies": { @@ -4589,8 +3707,6 @@ }, "node_modules/jest-diff": { "version": "29.7.0", - "resolved": "https://registry.npmjs.org/jest-diff/-/jest-diff-29.7.0.tgz", - "integrity": "sha512-LMIgiIrhigmPrs03JHpxUh2yISK3vLFPkAodPeo0+BuF7wA2FoQbkEg1u8gBYBThncu7e1oEDUfIXVuTqLRUjw==", "dev": true, "license": "MIT", "dependencies": { @@ -4605,8 +3721,6 @@ }, "node_modules/jest-docblock": { "version": "29.7.0", - "resolved": "https://registry.npmjs.org/jest-docblock/-/jest-docblock-29.7.0.tgz", - "integrity": "sha512-q617Auw3A612guyaFgsbFeYpNP5t2aoUNLwBUbc/0kD1R4t9ixDbyFTHd1nok4epoVFpr7PmeWHrhvuV3XaJ4g==", "dev": true, "license": "MIT", "dependencies": { @@ -4618,8 +3732,6 @@ }, "node_modules/jest-each": { "version": "29.7.0", - "resolved": "https://registry.npmjs.org/jest-each/-/jest-each-29.7.0.tgz", - "integrity": "sha512-gns+Er14+ZrEoC5fhOfYCY1LOHHr0TI+rQUHZS8Ttw2l7gl+80eHc/gFf2Ktkw0+SIACDTeWvpFcv3B04VembQ==", "dev": true, "license": "MIT", "dependencies": { @@ -4635,8 +3747,6 @@ }, "node_modules/jest-environment-node": { "version": "29.7.0", - "resolved": "https://registry.npmjs.org/jest-environment-node/-/jest-environment-node-29.7.0.tgz", - "integrity": "sha512-DOSwCRqXirTOyheM+4d5YZOrWcdu0LNZ87ewUoywbcb2XR4wKgqiG8vNeYwhjFMbEkfju7wx2GYH0P2gevGvFw==", "dev": true, "license": "MIT", "dependencies": { @@ -4653,8 +3763,6 @@ }, "node_modules/jest-get-type": { "version": "29.6.3", - "resolved": "https://registry.npmjs.org/jest-get-type/-/jest-get-type-29.6.3.tgz", - "integrity": "sha512-zrteXnqYxfQh7l5FHyL38jL39di8H8rHoecLH3JNxH3BwOrBsNeabdap5e0I23lD4HHI8W5VFBZqG4Eaq5LNcw==", "dev": true, "license": "MIT", "engines": { @@ -4663,8 +3771,6 @@ }, "node_modules/jest-haste-map": { "version": "29.7.0", - "resolved": "https://registry.npmjs.org/jest-haste-map/-/jest-haste-map-29.7.0.tgz", - "integrity": "sha512-fP8u2pyfqx0K1rGn1R9pyE0/KTn+G7PxktWidOBTqFPLYX0b9ksaMFkhK5vrS3DVun09pckLdlx90QthlW7AmA==", "dev": true, "license": "MIT", "dependencies": { @@ -4689,8 +3795,6 @@ }, "node_modules/jest-leak-detector": { "version": "29.7.0", - "resolved": "https://registry.npmjs.org/jest-leak-detector/-/jest-leak-detector-29.7.0.tgz", - "integrity": "sha512-kYA8IJcSYtST2BY9I+SMC32nDpBT3J2NvWJx8+JCuCdl/CR1I4EKUJROiP8XtCcxqgTTBGJNdbB1A8XRKbTetw==", "dev": true, "license": "MIT", "dependencies": { @@ -4703,8 +3807,6 @@ }, "node_modules/jest-matcher-utils": { "version": "29.7.0", - "resolved": "https://registry.npmjs.org/jest-matcher-utils/-/jest-matcher-utils-29.7.0.tgz", - "integrity": "sha512-sBkD+Xi9DtcChsI3L3u0+N0opgPYnCRPtGcQYrgXmR+hmt/fYfWAL0xRXYU8eWOdfuLgBe0YCW3AFtnRLagq/g==", "dev": true, "license": "MIT", "dependencies": { @@ -4719,8 +3821,6 @@ }, "node_modules/jest-message-util": { "version": "29.7.0", - "resolved": "https://registry.npmjs.org/jest-message-util/-/jest-message-util-29.7.0.tgz", - "integrity": "sha512-GBEV4GRADeP+qtB2+6u61stea8mGcOT4mCtrYISZwfu9/ISHFJ/5zOMXYbpBE9RsS5+Gb63DW4FgmnKJ79Kf6w==", "dev": true, "license": "MIT", "dependencies": { @@ -4740,8 +3840,6 @@ }, "node_modules/jest-mock": { "version": "29.7.0", - "resolved": "https://registry.npmjs.org/jest-mock/-/jest-mock-29.7.0.tgz", - "integrity": "sha512-ITOMZn+UkYS4ZFh83xYAOzWStloNzJFO2s8DWrE4lhtGD+AorgnbkiKERe4wQVBydIGPx059g6riW5Btp6Llnw==", "dev": true, "license": "MIT", "dependencies": { @@ -4755,8 +3853,6 @@ }, "node_modules/jest-pnp-resolver": { "version": "1.2.3", - "resolved": "https://registry.npmjs.org/jest-pnp-resolver/-/jest-pnp-resolver-1.2.3.tgz", - "integrity": "sha512-+3NpwQEnRoIBtx4fyhblQDPgJI0H1IEIkX7ShLUjPGA7TtUTvI1oiKi3SR4oBR0hQhQR80l4WAe5RrXBwWMA8w==", "dev": true, "license": "MIT", "engines": { @@ -4773,8 +3869,6 @@ }, "node_modules/jest-regex-util": { "version": "29.6.3", - "resolved": "https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-29.6.3.tgz", - "integrity": "sha512-KJJBsRCyyLNWCNBOvZyRDnAIfUiRJ8v+hOBQYGn8gDyF3UegwiP4gwRR3/SDa42g1YbVycTidUF3rKjyLFDWbg==", "dev": true, "license": "MIT", "engines": { @@ -4783,8 +3877,6 @@ }, "node_modules/jest-resolve": { "version": "29.7.0", - "resolved": "https://registry.npmjs.org/jest-resolve/-/jest-resolve-29.7.0.tgz", - "integrity": "sha512-IOVhZSrg+UvVAshDSDtHyFCCBUl/Q3AAJv8iZ6ZjnZ74xzvwuzLXid9IIIPgTnY62SJjfuupMKZsZQRsCvxEgA==", "dev": true, "license": "MIT", "dependencies": { @@ -4804,8 +3896,6 @@ }, "node_modules/jest-resolve-dependencies": { "version": "29.7.0", - "resolved": "https://registry.npmjs.org/jest-resolve-dependencies/-/jest-resolve-dependencies-29.7.0.tgz", - "integrity": "sha512-un0zD/6qxJ+S0et7WxeI3H5XSe9lTBBR7bOHCHXkKR6luG5mwDDlIzVQ0V5cZCuoTgEdcdwzTghYkTWfubi+nA==", "dev": true, "license": "MIT", "dependencies": { @@ -4818,8 +3908,6 @@ }, "node_modules/jest-runner": { "version": "29.7.0", - "resolved": "https://registry.npmjs.org/jest-runner/-/jest-runner-29.7.0.tgz", - "integrity": "sha512-fsc4N6cPCAahybGBfTRcq5wFR6fpLznMg47sY5aDpsoejOcVYFb07AHuSnR0liMcPTgBsA3ZJL6kFOjPdoNipQ==", "dev": true, "license": "MIT", "dependencies": { @@ -4851,8 +3939,6 @@ }, "node_modules/jest-runtime": { "version": "29.7.0", - "resolved": "https://registry.npmjs.org/jest-runtime/-/jest-runtime-29.7.0.tgz", - "integrity": "sha512-gUnLjgwdGqW7B4LvOIkbKs9WGbn+QLqRQQ9juC6HndeDiezIwhDP+mhMwHWCEcfQ5RUXa6OPnFF8BJh5xegwwQ==", "dev": true, "license": "MIT", "dependencies": { @@ -4885,8 +3971,6 @@ }, "node_modules/jest-snapshot": { "version": "29.7.0", - "resolved": "https://registry.npmjs.org/jest-snapshot/-/jest-snapshot-29.7.0.tgz", - "integrity": "sha512-Rm0BMWtxBcioHr1/OX5YCP8Uov4riHvKPknOGs804Zg9JGZgmIBkbtlxJC/7Z4msKYVbIJtfU+tKb8xlYNfdkw==", "dev": true, "license": "MIT", "dependencies": { @@ -4917,8 +4001,6 @@ }, "node_modules/jest-util": { "version": "29.7.0", - "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-29.7.0.tgz", - "integrity": "sha512-z6EbKajIpqGKU56y5KBUgy1dt1ihhQJgWzUlZHArA/+X2ad7Cb5iF+AK1EWVL/Bo7Rz9uurpqw6SiBCefUbCGA==", "dev": true, "license": "MIT", "dependencies": { @@ -4935,8 +4017,6 @@ }, "node_modules/jest-validate": { "version": "29.7.0", - "resolved": "https://registry.npmjs.org/jest-validate/-/jest-validate-29.7.0.tgz", - "integrity": "sha512-ZB7wHqaRGVw/9hST/OuFUReG7M8vKeq0/J2egIGLdvjHCmYqGARhzXmtgi+gVeZ5uXFF219aOc3Ls2yLg27tkw==", "dev": true, "license": "MIT", "dependencies": { @@ -4953,8 +4033,6 @@ }, "node_modules/jest-validate/node_modules/camelcase": { "version": "6.3.0", - "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-6.3.0.tgz", - "integrity": "sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==", "dev": true, "license": "MIT", "engines": { @@ -4966,8 +4044,6 @@ }, "node_modules/jest-watcher": { "version": "29.7.0", - "resolved": "https://registry.npmjs.org/jest-watcher/-/jest-watcher-29.7.0.tgz", - "integrity": "sha512-49Fg7WXkU3Vl2h6LbLtMQ/HyB6rXSIX7SqvBLQmssRBGN9I0PNvPmAmCWSOY6SOvrjhI/F7/bGAv9RtnsPA03g==", "dev": true, "license": "MIT", "dependencies": { @@ -4986,8 +4062,6 @@ }, "node_modules/jest-worker": { "version": "29.7.0", - "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-29.7.0.tgz", - "integrity": "sha512-eIz2msL/EzL9UFTFFx7jBTkeZfku0yUAyZZZmJ93H2TYEiroIx2PQjEXcwYtYl8zXCxb+PAmA2hLIt/6ZEkPHw==", "dev": true, "license": "MIT", "dependencies": { @@ -5002,15 +4076,11 @@ }, "node_modules/js-tokens": { "version": "4.0.0", - "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", - "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==", "dev": true, "license": "MIT" }, "node_modules/js-yaml": { "version": "4.1.0", - "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", - "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", "dev": true, "license": "MIT", "dependencies": { @@ -5022,8 +4092,6 @@ }, "node_modules/jsesc": { "version": "3.1.0", - "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-3.1.0.tgz", - "integrity": "sha512-/sM3dO2FOzXjKQhJuo0Q173wf2KOo8t4I8vHy6lF9poUp7bKT0/NHE8fPX23PwfhnykfqnC2xRxOnVw5XuGIaA==", "dev": true, "license": "MIT", "bin": { @@ -5035,36 +4103,26 @@ }, "node_modules/json-buffer": { "version": "3.0.1", - "resolved": "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.1.tgz", - "integrity": "sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==", "dev": true, "license": "MIT" }, "node_modules/json-parse-even-better-errors": { "version": "2.3.1", - "resolved": "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz", - "integrity": "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==", "dev": true, "license": "MIT" }, "node_modules/json-schema-traverse": { "version": "0.4.1", - "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", - "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", "dev": true, "license": "MIT" }, "node_modules/json-stable-stringify-without-jsonify": { "version": "1.0.1", - "resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz", - "integrity": "sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==", "dev": true, "license": "MIT" }, "node_modules/json5": { "version": "2.2.3", - "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz", - "integrity": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==", "dev": true, "license": "MIT", "bin": { @@ -5076,8 +4134,6 @@ }, "node_modules/jsonfile": { "version": "6.1.0", - "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz", - "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==", "dev": true, "license": "MIT", "dependencies": { @@ -5089,8 +4145,6 @@ }, "node_modules/keyv": { "version": "4.5.4", - "resolved": "https://registry.npmjs.org/keyv/-/keyv-4.5.4.tgz", - "integrity": "sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==", "dev": true, "license": "MIT", "dependencies": { @@ -5099,8 +4153,6 @@ }, "node_modules/kind-of": { "version": "6.0.3", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz", - "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==", "dev": true, "license": "MIT", "engines": { @@ -5109,8 +4161,6 @@ }, "node_modules/kleur": { "version": "3.0.3", - "resolved": "https://registry.npmjs.org/kleur/-/kleur-3.0.3.tgz", - "integrity": "sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==", "dev": true, "license": "MIT", "engines": { @@ -5119,8 +4169,6 @@ }, "node_modules/leven": { "version": "3.1.0", - "resolved": "https://registry.npmjs.org/leven/-/leven-3.1.0.tgz", - "integrity": "sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A==", "dev": true, "license": "MIT", "engines": { @@ -5129,8 +4177,6 @@ }, "node_modules/levn": { "version": "0.4.1", - "resolved": "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz", - "integrity": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==", "dev": true, "license": "MIT", "dependencies": { @@ -5143,15 +4189,11 @@ }, "node_modules/lines-and-columns": { "version": "1.2.4", - "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.2.4.tgz", - "integrity": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==", "dev": true, "license": "MIT" }, "node_modules/loader-runner": { "version": "4.3.0", - "resolved": "https://registry.npmjs.org/loader-runner/-/loader-runner-4.3.0.tgz", - "integrity": "sha512-3R/1M+yS3j5ou80Me59j7F9IMs4PXs3VqRrm0TU3AbKPxlmpoY1TNscJV/oGJXo8qCatFGTfDbY6W6ipGOYXfg==", "dev": true, "license": "MIT", "engines": { @@ -5160,8 +4202,6 @@ }, "node_modules/loader-utils": { "version": "2.0.4", - "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-2.0.4.tgz", - "integrity": "sha512-xXqpXoINfFhgua9xiqD8fPFHgkoq1mmmpE92WlDbm9rNRd/EbRb+Gqf908T2DMfuHjjJlksiK2RbHVOdD/MqSw==", "dev": true, "license": "MIT", "dependencies": { @@ -5175,8 +4215,6 @@ }, "node_modules/locate-path": { "version": "6.0.0", - "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz", - "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==", "dev": true, "license": "MIT", "dependencies": { @@ -5191,29 +4229,21 @@ }, "node_modules/lodash": { "version": "4.17.21", - "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", - "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==", "dev": true, "license": "MIT" }, "node_modules/lodash.memoize": { "version": "4.1.2", - "resolved": "https://registry.npmjs.org/lodash.memoize/-/lodash.memoize-4.1.2.tgz", - "integrity": "sha512-t7j+NzmgnQzTAYXcsHYLgimltOV1MXHtlOWf6GjL9Kj8GK5FInw5JotxvbOs+IvV1/Dzo04/fCGfLVs7aXb4Ag==", "dev": true, "license": "MIT" }, "node_modules/lodash.merge": { "version": "4.6.2", - "resolved": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz", - "integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==", "dev": true, "license": "MIT" }, "node_modules/lru-cache": { "version": "5.1.1", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz", - "integrity": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==", "dev": true, "license": "ISC", "dependencies": { @@ -5222,8 +4252,6 @@ }, "node_modules/make-dir": { "version": "4.0.0", - "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-4.0.0.tgz", - "integrity": "sha512-hXdUTZYIVOt1Ex//jAQi+wTZZpUpwBj/0QsOzqegb3rGMMeJiSEu5xLHnYfBrRV4RH2+OCSOO95Is/7x1WJ4bw==", "dev": true, "license": "MIT", "dependencies": { @@ -5238,15 +4266,11 @@ }, "node_modules/make-error": { "version": "1.3.6", - "resolved": "https://registry.npmjs.org/make-error/-/make-error-1.3.6.tgz", - "integrity": "sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw==", "dev": true, "license": "ISC" }, "node_modules/makeerror": { "version": "1.0.12", - "resolved": "https://registry.npmjs.org/makeerror/-/makeerror-1.0.12.tgz", - "integrity": "sha512-JmqCvUhmt43madlpFzG4BQzG2Z3m6tvQDNKdClZnO3VbIudJYmxsT0FNJMeiB2+JTSlTQTSbU8QdesVmwJcmLg==", "dev": true, "license": "BSD-3-Clause", "dependencies": { @@ -5255,8 +4279,6 @@ }, "node_modules/math-intrinsics": { "version": "1.1.0", - "resolved": "https://registry.npmjs.org/math-intrinsics/-/math-intrinsics-1.1.0.tgz", - "integrity": "sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g==", "dev": true, "license": "MIT", "engines": { @@ -5265,15 +4287,11 @@ }, "node_modules/merge-stream": { "version": "2.0.0", - "resolved": "https://registry.npmjs.org/merge-stream/-/merge-stream-2.0.0.tgz", - "integrity": "sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==", "dev": true, "license": "MIT" }, "node_modules/merge2": { "version": "1.4.1", - "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz", - "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==", "dev": true, "license": "MIT", "engines": { @@ -5282,8 +4300,6 @@ }, "node_modules/micromatch": { "version": "4.0.8", - "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.8.tgz", - "integrity": "sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==", "dev": true, "license": "MIT", "dependencies": { @@ -5296,8 +4312,6 @@ }, "node_modules/mime-db": { "version": "1.52.0", - "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz", - "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==", "dev": true, "license": "MIT", "engines": { @@ -5306,8 +4320,6 @@ }, "node_modules/mime-types": { "version": "2.1.35", - "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz", - "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==", "dev": true, "license": "MIT", "dependencies": { @@ -5319,8 +4331,6 @@ }, "node_modules/mimic-fn": { "version": "2.1.0", - "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz", - "integrity": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==", "dev": true, "license": "MIT", "engines": { @@ -5329,8 +4339,6 @@ }, "node_modules/mini-css-extract-plugin": { "version": "2.9.2", - "resolved": "https://registry.npmjs.org/mini-css-extract-plugin/-/mini-css-extract-plugin-2.9.2.tgz", - "integrity": "sha512-GJuACcS//jtq4kCtd5ii/M0SZf7OZRH+BxdqXZHaJfb8TJiVl+NgQRPwiYt2EuqeSkNydn/7vP+bcE27C5mb9w==", "dev": true, "license": "MIT", "dependencies": { @@ -5350,8 +4358,6 @@ }, "node_modules/mini-css-extract-plugin/node_modules/ajv": { "version": "8.17.1", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.17.1.tgz", - "integrity": "sha512-B/gBuNg5SiMTrPkC+A2+cW0RszwxYmn6VYxB/inlBStS5nx6xHIt/ehKRhIMhqusl7a8LjQoZnjCs5vhwxOQ1g==", "dev": true, "license": "MIT", "dependencies": { @@ -5367,8 +4373,6 @@ }, "node_modules/mini-css-extract-plugin/node_modules/ajv-keywords": { "version": "5.1.0", - "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-5.1.0.tgz", - "integrity": "sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==", "dev": true, "license": "MIT", "dependencies": { @@ -5380,15 +4384,11 @@ }, "node_modules/mini-css-extract-plugin/node_modules/json-schema-traverse": { "version": "1.0.0", - "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", - "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==", "dev": true, "license": "MIT" }, "node_modules/mini-css-extract-plugin/node_modules/schema-utils": { "version": "4.3.0", - "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-4.3.0.tgz", - "integrity": "sha512-Gf9qqc58SpCA/xdziiHz35F4GNIWYWZrEshUc/G/r5BnLph6xpKuLeoJoQuj5WfBIx/eQLf+hmVPYHaxJu7V2g==", "dev": true, "license": "MIT", "dependencies": { @@ -5407,8 +4407,6 @@ }, "node_modules/minimatch": { "version": "3.1.2", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", - "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", "dev": true, "license": "ISC", "dependencies": { @@ -5420,8 +4418,6 @@ }, "node_modules/moment": { "version": "2.29.4", - "resolved": "https://registry.npmjs.org/moment/-/moment-2.29.4.tgz", - "integrity": "sha512-5LC9SOxjSc2HF6vO2CyuTDNivEdoz2IvyJJGj6X8DJ0eFyfszE0QiEd+iXmBvUP3WHxSjFH/vIsA0EN00cgr8w==", "dev": true, "license": "MIT", "engines": { @@ -5430,15 +4426,11 @@ }, "node_modules/ms": { "version": "2.1.3", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", - "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", "dev": true, "license": "MIT" }, "node_modules/nanoid": { "version": "3.3.11", - "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.11.tgz", - "integrity": "sha512-N8SpfPUnUp1bK+PMYW8qSWdl9U+wwNWI4QKxOYDy9JAro3WMX7p2OeVRF9v+347pnakNevPmiHhNmZ2HbFA76w==", "dev": true, "funding": [ { @@ -5456,30 +4448,22 @@ }, "node_modules/natural-compare": { "version": "1.4.0", - "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz", - "integrity": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==", "dev": true, "license": "MIT" }, "node_modules/neo-async": { "version": "2.6.2", - "resolved": "https://registry.npmjs.org/neo-async/-/neo-async-2.6.2.tgz", - "integrity": "sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==", "dev": true, "license": "MIT" }, "node_modules/node-addon-api": { "version": "7.1.1", - "resolved": "https://registry.npmjs.org/node-addon-api/-/node-addon-api-7.1.1.tgz", - "integrity": "sha512-5m3bsyrjFWE1xf7nz7YXdN4udnVtXK6/Yfgn5qnahL6bCkf2yKt4k3nuTKAtT4r3IG8JNR2ncsIMdZuAzJjHQQ==", "dev": true, "license": "MIT", "optional": true }, "node_modules/node-gyp-build": { "version": "4.8.4", - "resolved": "https://registry.npmjs.org/node-gyp-build/-/node-gyp-build-4.8.4.tgz", - "integrity": "sha512-LA4ZjwlnUblHVgq0oBF3Jl/6h/Nvs5fzBLwdEF4nuxnFdsfajde4WfxtJr3CaiH+F6ewcIB/q4jQ4UzPyid+CQ==", "dev": true, "license": "MIT", "bin": { @@ -5490,22 +4474,16 @@ }, "node_modules/node-int64": { "version": "0.4.0", - "resolved": "https://registry.npmjs.org/node-int64/-/node-int64-0.4.0.tgz", - "integrity": "sha512-O5lz91xSOeoXP6DulyHfllpq+Eg00MWitZIbtPfoSEvqIHdl5gfcY6hYzDWnj0qD5tz52PI08u9qUvSVeUBeHw==", "dev": true, "license": "MIT" }, "node_modules/node-releases": { "version": "2.0.19", - "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.19.tgz", - "integrity": "sha512-xxOWJsBKtzAq7DY0J+DTzuz58K8e7sJbdgwkbMWQe8UYB6ekmsQ45q0M/tJDsGaZmbC+l7n57UV8Hl5tHxO9uw==", "dev": true, "license": "MIT" }, "node_modules/normalize-path": { "version": "3.0.0", - "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", - "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", "dev": true, "license": "MIT", "engines": { @@ -5514,8 +4492,6 @@ }, "node_modules/npm-check-updates": { "version": "18.0.1", - "resolved": "https://registry.npmjs.org/npm-check-updates/-/npm-check-updates-18.0.1.tgz", - "integrity": "sha512-MO7mLp/8nm6kZNLLyPgz4gHmr9tLoU+pWPLdXuGAx+oZydBHkHWN0ibTonsrfwC2WEQNIQxuZagYwB67JQpAuw==", "dev": true, "license": "Apache-2.0", "bin": { @@ -5529,8 +4505,6 @@ }, "node_modules/npm-run-path": { "version": "4.0.1", - "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-4.0.1.tgz", - "integrity": "sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==", "dev": true, "license": "MIT", "dependencies": { @@ -5542,8 +4516,6 @@ }, "node_modules/object-inspect": { "version": "1.13.4", - "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.13.4.tgz", - "integrity": "sha512-W67iLl4J2EXEGTbfeHCffrjDfitvLANg0UlX3wFUUSTx92KXRFegMHUVgSqE+wvhAbi4WqjGg9czysTV2Epbew==", "dev": true, "license": "MIT", "engines": { @@ -5555,8 +4527,6 @@ }, "node_modules/obsidian": { "version": "1.8.7", - "resolved": "https://registry.npmjs.org/obsidian/-/obsidian-1.8.7.tgz", - "integrity": "sha512-h4bWwNFAGRXlMlMAzdEiIM2ppTGlrh7uGOJS6w4gClrsjc+ei/3YAtU2VdFUlCiPuTHpY4aBpFJJW75S1Tl/JA==", "dev": true, "license": "MIT", "dependencies": { @@ -5570,8 +4540,6 @@ }, "node_modules/once": { "version": "1.4.0", - "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", - "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==", "dev": true, "license": "ISC", "dependencies": { @@ -5580,8 +4548,6 @@ }, "node_modules/onetime": { "version": "5.1.2", - "resolved": "https://registry.npmjs.org/onetime/-/onetime-5.1.2.tgz", - "integrity": "sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==", "dev": true, "license": "MIT", "dependencies": { @@ -5596,8 +4562,6 @@ }, "node_modules/optionator": { "version": "0.9.4", - "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.4.tgz", - "integrity": "sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==", "dev": true, "license": "MIT", "dependencies": { @@ -5614,8 +4578,6 @@ }, "node_modules/p-limit": { "version": "3.1.0", - "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", - "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", "dev": true, "license": "MIT", "dependencies": { @@ -5630,8 +4592,6 @@ }, "node_modules/p-locate": { "version": "5.0.0", - "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz", - "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==", "dev": true, "license": "MIT", "dependencies": { @@ -5646,8 +4606,6 @@ }, "node_modules/p-queue": { "version": "8.1.0", - "resolved": "https://registry.npmjs.org/p-queue/-/p-queue-8.1.0.tgz", - "integrity": "sha512-mxLDbbGIBEXTJL0zEx8JIylaj3xQ7Z/7eEVjcF9fJX4DBiH9oqe+oahYnlKKxm0Ci9TlWTyhSHgygxMxjIB2jw==", "license": "MIT", "dependencies": { "eventemitter3": "^5.0.1", @@ -5662,8 +4620,6 @@ }, "node_modules/p-timeout": { "version": "6.1.4", - "resolved": "https://registry.npmjs.org/p-timeout/-/p-timeout-6.1.4.tgz", - "integrity": "sha512-MyIV3ZA/PmyBN/ud8vV9XzwTrNtR4jFrObymZYnZqMmW0zA8Z17vnT0rBgFE/TlohB+YCHqXMgZzb3Csp49vqg==", "license": "MIT", "engines": { "node": ">=14.16" @@ -5674,8 +4630,6 @@ }, "node_modules/p-try": { "version": "2.2.0", - "resolved": "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz", - "integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==", "dev": true, "license": "MIT", "engines": { @@ -5684,8 +4638,6 @@ }, "node_modules/parent-module": { "version": "1.0.1", - "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz", - "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==", "dev": true, "license": "MIT", "dependencies": { @@ -5697,8 +4649,6 @@ }, "node_modules/parse-json": { "version": "5.2.0", - "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-5.2.0.tgz", - "integrity": "sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==", "dev": true, "license": "MIT", "dependencies": { @@ -5716,8 +4666,6 @@ }, "node_modules/path-exists": { "version": "4.0.0", - "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", - "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", "dev": true, "license": "MIT", "engines": { @@ -5726,8 +4674,6 @@ }, "node_modules/path-is-absolute": { "version": "1.0.1", - "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", - "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==", "dev": true, "license": "MIT", "engines": { @@ -5736,8 +4682,6 @@ }, "node_modules/path-key": { "version": "3.1.1", - "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", - "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", "dev": true, "license": "MIT", "engines": { @@ -5746,22 +4690,16 @@ }, "node_modules/path-parse": { "version": "1.0.7", - "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", - "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==", "dev": true, "license": "MIT" }, "node_modules/picocolors": { "version": "1.1.1", - "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.1.1.tgz", - "integrity": "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==", "dev": true, "license": "ISC" }, "node_modules/picomatch": { "version": "2.3.1", - "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", - "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", "dev": true, "license": "MIT", "engines": { @@ -5773,8 +4711,6 @@ }, "node_modules/pirates": { "version": "4.0.7", - "resolved": "https://registry.npmjs.org/pirates/-/pirates-4.0.7.tgz", - "integrity": "sha512-TfySrs/5nm8fQJDcBDuUng3VOUKsd7S+zqvbOTiGXHfxX4wK31ard+hoNuvkicM/2YFzlpDgABOevKSsB4G/FA==", "dev": true, "license": "MIT", "engines": { @@ -5783,8 +4719,6 @@ }, "node_modules/pkg-dir": { "version": "4.2.0", - "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-4.2.0.tgz", - "integrity": "sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==", "dev": true, "license": "MIT", "dependencies": { @@ -5796,8 +4730,6 @@ }, "node_modules/pkg-dir/node_modules/find-up": { "version": "4.1.0", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", - "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", "dev": true, "license": "MIT", "dependencies": { @@ -5810,8 +4742,6 @@ }, "node_modules/pkg-dir/node_modules/locate-path": { "version": "5.0.0", - "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", - "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", "dev": true, "license": "MIT", "dependencies": { @@ -5823,8 +4753,6 @@ }, "node_modules/pkg-dir/node_modules/p-limit": { "version": "2.3.0", - "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", - "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", "dev": true, "license": "MIT", "dependencies": { @@ -5839,8 +4767,6 @@ }, "node_modules/pkg-dir/node_modules/p-locate": { "version": "4.1.0", - "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", - "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", "dev": true, "license": "MIT", "dependencies": { @@ -5852,8 +4778,6 @@ }, "node_modules/postcss": { "version": "8.5.3", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.5.3.tgz", - "integrity": "sha512-dle9A3yYxlBSrt8Fu+IpjGT8SY8hN0mlaA6GY8t0P5PjIOZemULz/E2Bnm/2dcUOena75OTNkHI76uZBNUUq3A==", "dev": true, "funding": [ { @@ -5881,8 +4805,6 @@ }, "node_modules/postcss-modules-extract-imports": { "version": "3.1.0", - "resolved": "https://registry.npmjs.org/postcss-modules-extract-imports/-/postcss-modules-extract-imports-3.1.0.tgz", - "integrity": "sha512-k3kNe0aNFQDAZGbin48pL2VNidTF0w4/eASDsxlyspobzU3wZQLOGj7L9gfRe0Jo9/4uud09DsjFNH7winGv8Q==", "dev": true, "license": "ISC", "engines": { @@ -5894,8 +4816,6 @@ }, "node_modules/postcss-modules-local-by-default": { "version": "4.2.0", - "resolved": "https://registry.npmjs.org/postcss-modules-local-by-default/-/postcss-modules-local-by-default-4.2.0.tgz", - "integrity": "sha512-5kcJm/zk+GJDSfw+V/42fJ5fhjL5YbFDl8nVdXkJPLLW+Vf9mTD5Xe0wqIaDnLuL2U6cDNpTr+UQ+v2HWIBhzw==", "dev": true, "license": "MIT", "dependencies": { @@ -5912,8 +4832,6 @@ }, "node_modules/postcss-modules-scope": { "version": "3.2.1", - "resolved": "https://registry.npmjs.org/postcss-modules-scope/-/postcss-modules-scope-3.2.1.tgz", - "integrity": "sha512-m9jZstCVaqGjTAuny8MdgE88scJnCiQSlSrOWcTQgM2t32UBe+MUmFSO5t7VMSfAf/FJKImAxBav8ooCHJXCJA==", "dev": true, "license": "ISC", "dependencies": { @@ -5928,8 +4846,6 @@ }, "node_modules/postcss-modules-values": { "version": "4.0.0", - "resolved": "https://registry.npmjs.org/postcss-modules-values/-/postcss-modules-values-4.0.0.tgz", - "integrity": "sha512-RDxHkAiEGI78gS2ofyvCsu7iycRv7oqw5xMWn9iMoR0N/7mf9D50ecQqUo5BZ9Zh2vH4bCUR/ktCqbB9m8vJjQ==", "dev": true, "license": "ISC", "dependencies": { @@ -5944,8 +4860,6 @@ }, "node_modules/postcss-selector-parser": { "version": "7.1.0", - "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-7.1.0.tgz", - "integrity": "sha512-8sLjZwK0R+JlxlYcTuVnyT2v+htpdrjDOKuMcOVdYjt52Lh8hWRYpxBPoKx/Zg+bcjc3wx6fmQevMmUztS/ccA==", "dev": true, "license": "MIT", "dependencies": { @@ -5958,15 +4872,11 @@ }, "node_modules/postcss-value-parser": { "version": "4.2.0", - "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz", - "integrity": "sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==", "dev": true, "license": "MIT" }, "node_modules/prelude-ls": { "version": "1.2.1", - "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz", - "integrity": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==", "dev": true, "license": "MIT", "engines": { @@ -5975,8 +4885,6 @@ }, "node_modules/prettier": { "version": "3.5.3", - "resolved": "https://registry.npmjs.org/prettier/-/prettier-3.5.3.tgz", - "integrity": "sha512-QQtaxnoDJeAkDvDKWCLiwIXkTgRhwYDEQCghU9Z6q03iyek/rxRh/2lC3HB7P8sWT2xC/y5JDctPLBIGzHKbhw==", "dev": true, "license": "MIT", "bin": { @@ -5991,8 +4899,6 @@ }, "node_modules/pretty-format": { "version": "29.7.0", - "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-29.7.0.tgz", - "integrity": "sha512-Pdlw/oPxN+aXdmM9R00JVC9WVFoCLTKJvDVLgmJ+qAffBMxsV85l/Lu7sNx4zSzPyoL2euImuEwHhOXdEgNFZQ==", "dev": true, "license": "MIT", "dependencies": { @@ -6006,8 +4912,6 @@ }, "node_modules/pretty-format/node_modules/ansi-styles": { "version": "5.2.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", - "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==", "dev": true, "license": "MIT", "engines": { @@ -6019,8 +4923,6 @@ }, "node_modules/prompts": { "version": "2.4.2", - "resolved": "https://registry.npmjs.org/prompts/-/prompts-2.4.2.tgz", - "integrity": "sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q==", "dev": true, "license": "MIT", "dependencies": { @@ -6033,8 +4935,6 @@ }, "node_modules/punycode": { "version": "2.3.1", - "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.1.tgz", - "integrity": "sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==", "dev": true, "license": "MIT", "engines": { @@ -6043,8 +4943,6 @@ }, "node_modules/pure-rand": { "version": "6.1.0", - "resolved": "https://registry.npmjs.org/pure-rand/-/pure-rand-6.1.0.tgz", - "integrity": "sha512-bVWawvoZoBYpp6yIoQtQXHZjmz35RSVHnUOTefl8Vcjr8snTPY1wnpSPMWekcFwbxI6gtmT7rSYPFvz71ldiOA==", "dev": true, "funding": [ { @@ -6060,8 +4958,6 @@ }, "node_modules/qs": { "version": "6.14.0", - "resolved": "https://registry.npmjs.org/qs/-/qs-6.14.0.tgz", - "integrity": "sha512-YWWTjgABSKcvs/nWBi9PycY/JiPJqOD4JA6o9Sej2AtvSGarXxKC3OQSk4pAarbdQlKAh5D4FCQkJNkW+GAn3w==", "dev": true, "license": "BSD-3-Clause", "dependencies": { @@ -6076,8 +4972,6 @@ }, "node_modules/queue-microtask": { "version": "1.2.3", - "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz", - "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==", "dev": true, "funding": [ { @@ -6097,8 +4991,6 @@ }, "node_modules/randombytes": { "version": "2.1.0", - "resolved": "https://registry.npmjs.org/randombytes/-/randombytes-2.1.0.tgz", - "integrity": "sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==", "dev": true, "license": "MIT", "dependencies": { @@ -6107,15 +4999,11 @@ }, "node_modules/react-is": { "version": "18.3.1", - "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.3.1.tgz", - "integrity": "sha512-/LLMVyas0ljjAtoYiPqYiL8VWXzUUdThrmU5+n20DZv+a+ClRoevUzw5JxU+Ieh5/c87ytoTBV9G1FiKfNJdmg==", "dev": true, "license": "MIT" }, "node_modules/readdirp": { "version": "4.1.2", - "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-4.1.2.tgz", - "integrity": "sha512-GDhwkLfywWL2s6vEjyhri+eXmfH6j1L7JE27WhqLeYzoh/A3DBaYGEj2H/HFZCn/kMfim73FXxEJTw06WtxQwg==", "dev": true, "license": "MIT", "engines": { @@ -6128,8 +5016,6 @@ }, "node_modules/rechoir": { "version": "0.8.0", - "resolved": "https://registry.npmjs.org/rechoir/-/rechoir-0.8.0.tgz", - "integrity": "sha512-/vxpCXddiX8NGfGO/mTafwjq4aFa/71pvamip0++IQk3zG8cbCj0fifNPrjjF1XMXUne91jL9OoxmdykoEtifQ==", "dev": true, "license": "MIT", "dependencies": { @@ -6139,24 +5025,24 @@ "node": ">= 10.13.0" } }, + "node_modules/reconcile-text": { + "version": "0.5.0", + "resolved": "https://registry.npmjs.org/reconcile-text/-/reconcile-text-0.5.0.tgz", + "integrity": "sha512-zki3lqw9Oxdhm9ZvDN17VyYoL1Isc8BEL07ILVDE2yGfNEI7thrkczoNCUr+hkFU2rzZtfxECTG0b7p61AJ6wg==", + "license": "MIT" + }, "node_modules/regex-parser": { "version": "2.3.1", - "resolved": "https://registry.npmjs.org/regex-parser/-/regex-parser-2.3.1.tgz", - "integrity": "sha512-yXLRqatcCuKtVHsWrNg0JL3l1zGfdXeEvDa0bdu4tCDQw0RpMDZsqbkyRTUnKMR0tXF627V2oEWjBEaEdqTwtQ==", "dev": true, "license": "MIT" }, "node_modules/request-animation-frame-timeout": { "version": "2.0.4", - "resolved": "https://registry.npmjs.org/request-animation-frame-timeout/-/request-animation-frame-timeout-2.0.4.tgz", - "integrity": "sha512-5oYwRBYjrMSU/YHHXj5AM/nv96ZE0b8WZoA3FqnkeDDPXoprxUCZFK4IWZTl+y3RJQtaihiJPiKOB4NZfZ7C7A==", "dev": true, "license": "MIT" }, "node_modules/require-directory": { "version": "2.1.1", - "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz", - "integrity": "sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==", "dev": true, "license": "MIT", "engines": { @@ -6165,8 +5051,6 @@ }, "node_modules/require-from-string": { "version": "2.0.2", - "resolved": "https://registry.npmjs.org/require-from-string/-/require-from-string-2.0.2.tgz", - "integrity": "sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==", "dev": true, "license": "MIT", "engines": { @@ -6175,8 +5059,6 @@ }, "node_modules/resolve": { "version": "1.22.10", - "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.10.tgz", - "integrity": "sha512-NPRy+/ncIMeDlTAsuqwKIiferiawhefFJtkNSW0qZJEqMEb+qBt/77B/jGeeek+F0uOeN05CDa6HXbbIgtVX4w==", "dev": true, "license": "MIT", "dependencies": { @@ -6196,8 +5078,6 @@ }, "node_modules/resolve-cwd": { "version": "3.0.0", - "resolved": "https://registry.npmjs.org/resolve-cwd/-/resolve-cwd-3.0.0.tgz", - "integrity": "sha512-OrZaX2Mb+rJCpH/6CpSqt9xFVpN++x01XnN2ie9g6P5/3xelLAkXWVADpdz1IHD/KFfEXyE6V0U01OQ3UO2rEg==", "dev": true, "license": "MIT", "dependencies": { @@ -6209,8 +5089,6 @@ }, "node_modules/resolve-cwd/node_modules/resolve-from": { "version": "5.0.0", - "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz", - "integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==", "dev": true, "license": "MIT", "engines": { @@ -6219,8 +5097,6 @@ }, "node_modules/resolve-from": { "version": "4.0.0", - "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz", - "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==", "dev": true, "license": "MIT", "engines": { @@ -6229,8 +5105,6 @@ }, "node_modules/resolve-url-loader": { "version": "5.0.0", - "resolved": "https://registry.npmjs.org/resolve-url-loader/-/resolve-url-loader-5.0.0.tgz", - "integrity": "sha512-uZtduh8/8srhBoMx//5bwqjQ+rfYOUq8zC9NrMUGtjBiGTtFJM42s58/36+hTqeqINcnYe08Nj3LkK9lW4N8Xg==", "dev": true, "license": "MIT", "dependencies": { @@ -6246,15 +5120,11 @@ }, "node_modules/resolve-url-loader/node_modules/convert-source-map": { "version": "1.9.0", - "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.9.0.tgz", - "integrity": "sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==", "dev": true, "license": "MIT" }, "node_modules/resolve.exports": { "version": "2.0.3", - "resolved": "https://registry.npmjs.org/resolve.exports/-/resolve.exports-2.0.3.tgz", - "integrity": "sha512-OcXjMsGdhL4XnbShKpAcSqPMzQoYkYyhbEaeSko47MjRP9NfEQMhZkXL1DoFlt9LWQn4YttrdnV6X2OiyzBi+A==", "dev": true, "license": "MIT", "engines": { @@ -6263,8 +5133,6 @@ }, "node_modules/reusify": { "version": "1.1.0", - "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.1.0.tgz", - "integrity": "sha512-g6QUff04oZpHs0eG5p83rFLhHeV00ug/Yf9nZM6fLeUrPguBTkTQOdpAWWspMh55TZfVQDPaN3NQJfbVRAxdIw==", "dev": true, "license": "MIT", "engines": { @@ -6274,8 +5142,6 @@ }, "node_modules/run-parallel": { "version": "1.2.0", - "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz", - "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==", "dev": true, "funding": [ { @@ -6298,8 +5164,6 @@ }, "node_modules/rxjs": { "version": "7.8.2", - "resolved": "https://registry.npmjs.org/rxjs/-/rxjs-7.8.2.tgz", - "integrity": "sha512-dhKf903U/PQZY6boNNtAGdWbG85WAbjT/1xYoZIC7FAY0yWapOBQVsVrDl58W86//e1VpMNBtRV4MaXfdMySFA==", "dev": true, "license": "Apache-2.0", "dependencies": { @@ -6308,8 +5172,6 @@ }, "node_modules/safe-buffer": { "version": "5.2.1", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", - "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", "dev": true, "funding": [ { @@ -6329,8 +5191,6 @@ }, "node_modules/sass": { "version": "1.89.1", - "resolved": "https://registry.npmjs.org/sass/-/sass-1.89.1.tgz", - "integrity": "sha512-eMLLkl+qz7tx/0cJ9wI+w09GQ2zodTkcE/aVfywwdlRcI3EO19xGnbmJwg/JMIm+5MxVJ6outddLZ4Von4E++Q==", "dev": true, "license": "MIT", "dependencies": { @@ -6350,8 +5210,6 @@ }, "node_modules/sass-loader": { "version": "16.0.5", - "resolved": "https://registry.npmjs.org/sass-loader/-/sass-loader-16.0.5.tgz", - "integrity": "sha512-oL+CMBXrj6BZ/zOq4os+UECPL+bWqt6OAC6DWS8Ln8GZRcMDjlJ4JC3FBDuHJdYaFWIdKNIBYmtZtK2MaMkNIw==", "dev": true, "license": "MIT", "dependencies": { @@ -6391,8 +5249,6 @@ }, "node_modules/schema-utils": { "version": "3.3.0", - "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.3.0.tgz", - "integrity": "sha512-pN/yOAvcC+5rQ5nERGuwrjLlYvLTbCibnZ1I7B1LaiAz9BRBlE9GMgE/eqV30P7aJQUf7Ddimy/RsbYO/GrVGg==", "dev": true, "license": "MIT", "dependencies": { @@ -6410,8 +5266,6 @@ }, "node_modules/semver": { "version": "7.7.2", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.7.2.tgz", - "integrity": "sha512-RF0Fw+rO5AMf9MAyaRXI4AV0Ulj5lMHqVxxdSgiVbixSCXoEmmX/jk0CuJw4+3SqroYO9VoUh+HcuJivvtJemA==", "dev": true, "license": "ISC", "bin": { @@ -6423,8 +5277,6 @@ }, "node_modules/serialize-javascript": { "version": "6.0.2", - "resolved": "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-6.0.2.tgz", - "integrity": "sha512-Saa1xPByTTq2gdeFZYLLo+RFE35NHZkAbqZeWNd3BpzppeVisAqpDjcp8dyf6uIvEqJRd46jemmyA4iFIeVk8g==", "dev": true, "license": "BSD-3-Clause", "dependencies": { @@ -6433,8 +5285,6 @@ }, "node_modules/shallow-clone": { "version": "3.0.1", - "resolved": "https://registry.npmjs.org/shallow-clone/-/shallow-clone-3.0.1.tgz", - "integrity": "sha512-/6KqX+GVUdqPuPPd2LxDDxzX6CAbjJehAAOKlNpqqUpAqPM6HeL8f+o3a+JsyGjn2lv0WY8UsTgUJjU9Ok55NA==", "dev": true, "license": "MIT", "dependencies": { @@ -6446,8 +5296,6 @@ }, "node_modules/shebang-command": { "version": "2.0.0", - "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", - "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", "dev": true, "license": "MIT", "dependencies": { @@ -6459,8 +5307,6 @@ }, "node_modules/shebang-regex": { "version": "3.0.0", - "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", - "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", "dev": true, "license": "MIT", "engines": { @@ -6469,8 +5315,6 @@ }, "node_modules/shell-quote": { "version": "1.8.2", - "resolved": "https://registry.npmjs.org/shell-quote/-/shell-quote-1.8.2.tgz", - "integrity": "sha512-AzqKpGKjrj7EM6rKVQEPpB288oCfnrEIuyoT9cyF4nmGa7V8Zk6f7RRqYisX8X9m+Q7bd632aZW4ky7EhbQztA==", "dev": true, "license": "MIT", "engines": { @@ -6482,8 +5326,6 @@ }, "node_modules/side-channel": { "version": "1.1.0", - "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.1.0.tgz", - "integrity": "sha512-ZX99e6tRweoUXqR+VBrslhda51Nh5MTQwou5tnUDgbtyM0dBgmhEDtWGP/xbKn6hqfPRHujUNwz5fy/wbbhnpw==", "dev": true, "license": "MIT", "dependencies": { @@ -6502,8 +5344,6 @@ }, "node_modules/side-channel-list": { "version": "1.0.0", - "resolved": "https://registry.npmjs.org/side-channel-list/-/side-channel-list-1.0.0.tgz", - "integrity": "sha512-FCLHtRD/gnpCiCHEiJLOwdmFP+wzCmDEkc9y7NsYxeF4u7Btsn1ZuwgwJGxImImHicJArLP4R0yX4c2KCrMrTA==", "dev": true, "license": "MIT", "dependencies": { @@ -6519,8 +5359,6 @@ }, "node_modules/side-channel-map": { "version": "1.0.1", - "resolved": "https://registry.npmjs.org/side-channel-map/-/side-channel-map-1.0.1.tgz", - "integrity": "sha512-VCjCNfgMsby3tTdo02nbjtM/ewra6jPHmpThenkTYh8pG9ucZ/1P8So4u4FGBek/BjpOVsDCMoLA/iuBKIFXRA==", "dev": true, "license": "MIT", "dependencies": { @@ -6538,8 +5376,6 @@ }, "node_modules/side-channel-weakmap": { "version": "1.0.2", - "resolved": "https://registry.npmjs.org/side-channel-weakmap/-/side-channel-weakmap-1.0.2.tgz", - "integrity": "sha512-WPS/HvHQTYnHisLo9McqBHOJk2FkHO/tlpvldyrnem4aeQp4hai3gythswg6p01oSoTl58rcpiFAjF2br2Ak2A==", "dev": true, "license": "MIT", "dependencies": { @@ -6558,22 +5394,16 @@ }, "node_modules/signal-exit": { "version": "3.0.7", - "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz", - "integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==", "dev": true, "license": "ISC" }, "node_modules/sisteransi": { "version": "1.0.5", - "resolved": "https://registry.npmjs.org/sisteransi/-/sisteransi-1.0.5.tgz", - "integrity": "sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==", "dev": true, "license": "MIT" }, "node_modules/slash": { "version": "3.0.0", - "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", - "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==", "dev": true, "license": "MIT", "engines": { @@ -6582,8 +5412,6 @@ }, "node_modules/source-map": { "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", "dev": true, "license": "BSD-3-Clause", "engines": { @@ -6592,8 +5420,6 @@ }, "node_modules/source-map-js": { "version": "1.2.1", - "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.2.1.tgz", - "integrity": "sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==", "dev": true, "license": "BSD-3-Clause", "engines": { @@ -6602,8 +5428,6 @@ }, "node_modules/source-map-support": { "version": "0.5.13", - "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.13.tgz", - "integrity": "sha512-SHSKFHadjVA5oR4PPqhtAVdcBWwRYVd6g6cAXnIbRiIwc2EhPrTuKUBdSLvlEKyIP3GCf89fltvcZiP9MMFA1w==", "dev": true, "license": "MIT", "dependencies": { @@ -6613,15 +5437,11 @@ }, "node_modules/sprintf-js": { "version": "1.0.3", - "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz", - "integrity": "sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==", "dev": true, "license": "BSD-3-Clause" }, "node_modules/stack-utils": { "version": "2.0.6", - "resolved": "https://registry.npmjs.org/stack-utils/-/stack-utils-2.0.6.tgz", - "integrity": "sha512-XlkWvfIm6RmsWtNJx+uqtKLS8eqFbxUg0ZzLXqY0caEy9l7hruX8IpiDnjsLavoBgqCCR71TqWO8MaXYheJ3RQ==", "dev": true, "license": "MIT", "dependencies": { @@ -6633,8 +5453,6 @@ }, "node_modules/stack-utils/node_modules/escape-string-regexp": { "version": "2.0.0", - "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-2.0.0.tgz", - "integrity": "sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w==", "dev": true, "license": "MIT", "engines": { @@ -6643,8 +5461,6 @@ }, "node_modules/string-length": { "version": "4.0.2", - "resolved": "https://registry.npmjs.org/string-length/-/string-length-4.0.2.tgz", - "integrity": "sha512-+l6rNN5fYHNhZZy41RXsYptCjA2Igmq4EG7kZAYFQI1E1VTXarr6ZPXBg6eq7Y6eK4FEhY6AJlyuFIb/v/S0VQ==", "dev": true, "license": "MIT", "dependencies": { @@ -6657,8 +5473,6 @@ }, "node_modules/string-width": { "version": "4.2.3", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", - "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", "dev": true, "license": "MIT", "dependencies": { @@ -6672,8 +5486,6 @@ }, "node_modules/strip-ansi": { "version": "6.0.1", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", - "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", "dev": true, "license": "MIT", "dependencies": { @@ -6685,8 +5497,6 @@ }, "node_modules/strip-bom": { "version": "4.0.0", - "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-4.0.0.tgz", - "integrity": "sha512-3xurFv5tEgii33Zi8Jtp55wEIILR9eh34FAW00PZf+JnSsTmV/ioewSgQl97JHvgjoRGwPShsWm+IdrxB35d0w==", "dev": true, "license": "MIT", "engines": { @@ -6695,8 +5505,6 @@ }, "node_modules/strip-final-newline": { "version": "2.0.0", - "resolved": "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-2.0.0.tgz", - "integrity": "sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==", "dev": true, "license": "MIT", "engines": { @@ -6705,8 +5513,6 @@ }, "node_modules/strip-json-comments": { "version": "3.1.1", - "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz", - "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==", "dev": true, "license": "MIT", "engines": { @@ -6718,16 +5524,12 @@ }, "node_modules/style-mod": { "version": "4.1.2", - "resolved": "https://registry.npmjs.org/style-mod/-/style-mod-4.1.2.tgz", - "integrity": "sha512-wnD1HyVqpJUI2+eKZ+eo1UwghftP6yuFheBqqe+bWCotBjC2K1YnteJILRMs3SM4V/0dLEW1SC27MWP5y+mwmw==", "dev": true, "license": "MIT", "peer": true }, "node_modules/supports-color": { "version": "8.1.1", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz", - "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==", "dev": true, "license": "MIT", "dependencies": { @@ -6742,8 +5544,6 @@ }, "node_modules/supports-preserve-symlinks-flag": { "version": "1.0.0", - "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz", - "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==", "dev": true, "license": "MIT", "engines": { @@ -6753,18 +5553,12 @@ "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/sync_lib": { - "resolved": "../backend/sync_lib/pkg", - "link": true - }, "node_modules/sync-client": { "resolved": "sync-client", "link": true }, "node_modules/tapable": { "version": "2.2.1", - "resolved": "https://registry.npmjs.org/tapable/-/tapable-2.2.1.tgz", - "integrity": "sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==", "dev": true, "license": "MIT", "engines": { @@ -6773,8 +5567,6 @@ }, "node_modules/terser": { "version": "5.39.0", - "resolved": "https://registry.npmjs.org/terser/-/terser-5.39.0.tgz", - "integrity": "sha512-LBAhFyLho16harJoWMg/nZsQYgTrg5jXOn2nCYjRUcZZEdE3qa2zb8QEDRUGVZBW4rlazf2fxkg8tztybTaqWw==", "dev": true, "license": "BSD-2-Clause", "dependencies": { @@ -6792,8 +5584,6 @@ }, "node_modules/terser-webpack-plugin": { "version": "5.3.14", - "resolved": "https://registry.npmjs.org/terser-webpack-plugin/-/terser-webpack-plugin-5.3.14.tgz", - "integrity": "sha512-vkZjpUjb6OMS7dhV+tILUW6BhpDR7P2L/aQSAv+Uwk+m8KATX9EccViHTJR2qDtACKPIYndLGCyl3FMo+r2LMw==", "dev": true, "license": "MIT", "dependencies": { @@ -6827,8 +5617,6 @@ }, "node_modules/terser-webpack-plugin/node_modules/ajv": { "version": "8.17.1", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.17.1.tgz", - "integrity": "sha512-B/gBuNg5SiMTrPkC+A2+cW0RszwxYmn6VYxB/inlBStS5nx6xHIt/ehKRhIMhqusl7a8LjQoZnjCs5vhwxOQ1g==", "dev": true, "license": "MIT", "dependencies": { @@ -6844,8 +5632,6 @@ }, "node_modules/terser-webpack-plugin/node_modules/ajv-keywords": { "version": "5.1.0", - "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-5.1.0.tgz", - "integrity": "sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==", "dev": true, "license": "MIT", "dependencies": { @@ -6857,8 +5643,6 @@ }, "node_modules/terser-webpack-plugin/node_modules/jest-worker": { "version": "27.5.1", - "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-27.5.1.tgz", - "integrity": "sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg==", "dev": true, "license": "MIT", "dependencies": { @@ -6872,15 +5656,11 @@ }, "node_modules/terser-webpack-plugin/node_modules/json-schema-traverse": { "version": "1.0.0", - "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", - "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==", "dev": true, "license": "MIT" }, "node_modules/terser-webpack-plugin/node_modules/schema-utils": { "version": "4.3.0", - "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-4.3.0.tgz", - "integrity": "sha512-Gf9qqc58SpCA/xdziiHz35F4GNIWYWZrEshUc/G/r5BnLph6xpKuLeoJoQuj5WfBIx/eQLf+hmVPYHaxJu7V2g==", "dev": true, "license": "MIT", "dependencies": { @@ -6899,8 +5679,6 @@ }, "node_modules/terser/node_modules/source-map-support": { "version": "0.5.21", - "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.21.tgz", - "integrity": "sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==", "dev": true, "license": "MIT", "dependencies": { @@ -6914,8 +5692,6 @@ }, "node_modules/test-exclude": { "version": "6.0.0", - "resolved": "https://registry.npmjs.org/test-exclude/-/test-exclude-6.0.0.tgz", - "integrity": "sha512-cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w==", "dev": true, "license": "ISC", "dependencies": { @@ -6929,15 +5705,11 @@ }, "node_modules/tmpl": { "version": "1.0.5", - "resolved": "https://registry.npmjs.org/tmpl/-/tmpl-1.0.5.tgz", - "integrity": "sha512-3f0uOEAQwIqGuWW2MVzYg8fV/QNnc/IpuJNG837rLuczAaLVHslWHZQj4IGiEl5Hs3kkbhwL9Ab7Hrsmuj+Smw==", "dev": true, "license": "BSD-3-Clause" }, "node_modules/to-regex-range": { "version": "5.0.1", - "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", - "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", "dev": true, "license": "MIT", "dependencies": { @@ -6949,8 +5721,6 @@ }, "node_modules/tree-kill": { "version": "1.2.2", - "resolved": "https://registry.npmjs.org/tree-kill/-/tree-kill-1.2.2.tgz", - "integrity": "sha512-L0Orpi8qGpRG//Nd+H90vFB+3iHnue1zSSGmNOOCh1GLJ7rUKVwV2HvijphGQS2UmhUZewS9VgvxYIdgr+fG1A==", "dev": true, "license": "MIT", "bin": { @@ -6959,8 +5729,6 @@ }, "node_modules/ts-api-utils": { "version": "2.1.0", - "resolved": "https://registry.npmjs.org/ts-api-utils/-/ts-api-utils-2.1.0.tgz", - "integrity": "sha512-CUgTZL1irw8u29bzrOD/nH85jqyc74D6SshFgujOIA7osm2Rz7dYH77agkx7H4FBNxDq7Cjf+IjaX/8zwFW+ZQ==", "dev": true, "license": "MIT", "engines": { @@ -6972,8 +5740,6 @@ }, "node_modules/ts-jest": { "version": "29.3.4", - "resolved": "https://registry.npmjs.org/ts-jest/-/ts-jest-29.3.4.tgz", - "integrity": "sha512-Iqbrm8IXOmV+ggWHOTEbjwyCf2xZlUMv5npExksXohL+tk8va4Fjhb+X2+Rt9NBmgO7bJ8WpnMLOwih/DnMlFA==", "dev": true, "license": "MIT", "dependencies": { @@ -7022,8 +5788,6 @@ }, "node_modules/ts-jest/node_modules/type-fest": { "version": "4.41.0", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-4.41.0.tgz", - "integrity": "sha512-TeTSQ6H5YHvpqVwBRcnLDCBnDOHWYu7IvGbHT6N8AOymcr9PJGjc1GTtiWZTYg0NCgYwvnYWEkVChQAr9bjfwA==", "dev": true, "license": "(MIT OR CC0-1.0)", "engines": { @@ -7035,8 +5799,6 @@ }, "node_modules/ts-loader": { "version": "9.5.2", - "resolved": "https://registry.npmjs.org/ts-loader/-/ts-loader-9.5.2.tgz", - "integrity": "sha512-Qo4piXvOTWcMGIgRiuFa6nHNm+54HbYaZCKqc9eeZCLRy3XqafQgwX2F7mofrbJG3g7EEb+lkiR+z2Lic2s3Zw==", "dev": true, "license": "MIT", "dependencies": { @@ -7056,8 +5818,6 @@ }, "node_modules/ts-loader/node_modules/source-map": { "version": "0.7.4", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.7.4.tgz", - "integrity": "sha512-l3BikUxvPOcn5E74dZiq5BGsTb5yEwhaTSzccU6t4sDOH8NWJCstKO5QT2CvtFoK6F0saL7p9xHAqHOlCPJygA==", "dev": true, "license": "BSD-3-Clause", "engines": { @@ -7066,15 +5826,11 @@ }, "node_modules/tslib": { "version": "2.8.1", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.8.1.tgz", - "integrity": "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==", "dev": true, "license": "0BSD" }, "node_modules/type-check": { "version": "0.4.0", - "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz", - "integrity": "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==", "dev": true, "license": "MIT", "dependencies": { @@ -7086,8 +5842,6 @@ }, "node_modules/type-detect": { "version": "4.0.8", - "resolved": "https://registry.npmjs.org/type-detect/-/type-detect-4.0.8.tgz", - "integrity": "sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g==", "dev": true, "license": "MIT", "engines": { @@ -7096,8 +5850,6 @@ }, "node_modules/type-fest": { "version": "0.21.3", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.21.3.tgz", - "integrity": "sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==", "dev": true, "license": "(MIT OR CC0-1.0)", "engines": { @@ -7109,8 +5861,6 @@ }, "node_modules/typescript": { "version": "5.8.3", - "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.8.3.tgz", - "integrity": "sha512-p1diW6TqL9L07nNxvRMM7hMMw4c5XOo/1ibL4aAIGmSAt9slTE1Xgw5KWuof2uTOvCg9BY7ZRi+GaF+7sfgPeQ==", "dev": true, "license": "Apache-2.0", "bin": { @@ -7123,8 +5873,6 @@ }, "node_modules/typescript-eslint": { "version": "8.33.1", - "resolved": "https://registry.npmjs.org/typescript-eslint/-/typescript-eslint-8.33.1.tgz", - "integrity": "sha512-AgRnV4sKkWOiZ0Kjbnf5ytTJXMUZQ0qhSVdQtDNYLPLnjsATEYhaO94GlRQwi4t4gO8FfjM6NnikHeKjUm8D7A==", "dev": true, "license": "MIT", "dependencies": { @@ -7146,15 +5894,11 @@ }, "node_modules/undici-types": { "version": "6.21.0", - "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-6.21.0.tgz", - "integrity": "sha512-iwDZqg0QAGrg9Rav5H4n0M64c3mkR59cJ6wQp+7C4nI0gsmExaedaYLNO44eT4AtBBwjbTiGPMlt2Md0T9H9JQ==", "dev": true, "license": "MIT" }, "node_modules/universalify": { "version": "2.0.1", - "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.1.tgz", - "integrity": "sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==", "dev": true, "license": "MIT", "engines": { @@ -7163,8 +5907,6 @@ }, "node_modules/update-browserslist-db": { "version": "1.1.3", - "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.1.3.tgz", - "integrity": "sha512-UxhIZQ+QInVdunkDAaiazvvT/+fXL5Osr0JZlJulepYu6Jd7qJtDZjlur0emRlT71EN3ScPoE7gvsuIKKNavKw==", "dev": true, "funding": [ { @@ -7194,8 +5936,6 @@ }, "node_modules/uri-js": { "version": "4.4.1", - "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz", - "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==", "dev": true, "license": "BSD-2-Clause", "dependencies": { @@ -7204,8 +5944,6 @@ }, "node_modules/url": { "version": "0.11.4", - "resolved": "https://registry.npmjs.org/url/-/url-0.11.4.tgz", - "integrity": "sha512-oCwdVC7mTuWiPyjLUz/COz5TLk6wgp0RCsN+wHZ2Ekneac9w8uuV0njcbbie2ME+Vs+d6duwmYuR3HgQXs1fOg==", "dev": true, "license": "MIT", "dependencies": { @@ -7218,15 +5956,11 @@ }, "node_modules/url/node_modules/punycode": { "version": "1.4.1", - "resolved": "https://registry.npmjs.org/punycode/-/punycode-1.4.1.tgz", - "integrity": "sha512-jmYNElW7yvO7TV33CjSmvSiE2yco3bV2czu/OzDKdMNVZQWfxCblURLhf+47syQRBntjfLdd/H0egrzIG+oaFQ==", "dev": true, "license": "MIT" }, "node_modules/utf-8-validate": { "version": "6.0.5", - "resolved": "https://registry.npmjs.org/utf-8-validate/-/utf-8-validate-6.0.5.tgz", - "integrity": "sha512-EYZR+OpIXp9Y1eG1iueg8KRsY8TuT8VNgnanZ0uA3STqhHQTLwbl+WX76/9X5OY12yQubymBpaBSmMPkSTQcKA==", "dev": true, "hasInstallScript": true, "license": "MIT", @@ -7241,15 +5975,11 @@ }, "node_modules/util-deprecate": { "version": "1.0.2", - "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", - "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==", "dev": true, "license": "MIT" }, "node_modules/uuid": { "version": "11.1.0", - "resolved": "https://registry.npmjs.org/uuid/-/uuid-11.1.0.tgz", - "integrity": "sha512-0/A9rDy9P7cJ+8w1c9WD9V//9Wj15Ce2MPz8Ri6032usz+NfePxx5AcN3bN+r6ZL6jEo066/yNYB3tn4pQEx+A==", "funding": [ "https://github.com/sponsors/broofa", "https://github.com/sponsors/ctavan" @@ -7261,8 +5991,6 @@ }, "node_modules/v8-to-istanbul": { "version": "9.3.0", - "resolved": "https://registry.npmjs.org/v8-to-istanbul/-/v8-to-istanbul-9.3.0.tgz", - "integrity": "sha512-kiGUalWN+rgBJ/1OHZsBtU4rXZOfj/7rKQxULKlIzwzQSvMJUUNgPwJEEh7gU6xEVxC0ahoOBvN2YI8GH6FNgA==", "dev": true, "license": "ISC", "dependencies": { @@ -7280,8 +6008,6 @@ }, "node_modules/virtual-scroller": { "version": "1.13.1", - "resolved": "https://registry.npmjs.org/virtual-scroller/-/virtual-scroller-1.13.1.tgz", - "integrity": "sha512-sui46QUBOIfHyXYjdGkxoze/GlCZFUFRxzxEvsu06UQ4iPc3uRfGnm/Qj7195hiMVOYQW9lDn+m3sD7sRMYdYg==", "dev": true, "license": "MIT", "dependencies": { @@ -7290,16 +6016,12 @@ }, "node_modules/w3c-keyname": { "version": "2.2.8", - "resolved": "https://registry.npmjs.org/w3c-keyname/-/w3c-keyname-2.2.8.tgz", - "integrity": "sha512-dpojBhNsCNN7T82Tm7k26A6G9ML3NkhDsnw9n/eoxSRlVBB4CEtIQ/KTCLI2Fwf3ataSXRhYFkQi3SlnFwPvPQ==", "dev": true, "license": "MIT", "peer": true }, "node_modules/walker": { "version": "1.0.8", - "resolved": "https://registry.npmjs.org/walker/-/walker-1.0.8.tgz", - "integrity": "sha512-ts/8E8l5b7kY0vlWLewOkDXMmPdLcVV4GmOQLyxuSswIJsweeFZtAsMF7k1Nszz+TYBQrlYRmzOnr398y1JemQ==", "dev": true, "license": "Apache-2.0", "dependencies": { @@ -7308,8 +6030,6 @@ }, "node_modules/watchpack": { "version": "2.4.2", - "resolved": "https://registry.npmjs.org/watchpack/-/watchpack-2.4.2.tgz", - "integrity": "sha512-TnbFSbcOCcDgjZ4piURLCbJ3nJhznVh9kw6F6iokjiFPl8ONxe9A6nMDVXDiNbrSfLILs6vB07F7wLBrwPYzJw==", "dev": true, "license": "MIT", "dependencies": { @@ -7322,8 +6042,6 @@ }, "node_modules/webpack": { "version": "5.99.9", - "resolved": "https://registry.npmjs.org/webpack/-/webpack-5.99.9.tgz", - "integrity": "sha512-brOPwM3JnmOa+7kd3NsmOUOwbDAj8FT9xDsG3IW0MgbN9yZV7Oi/s/+MNQ/EcSMqw7qfoRyXPoeEWT8zLVdVGg==", "dev": true, "license": "MIT", "dependencies": { @@ -7370,8 +6088,6 @@ }, "node_modules/webpack-cli": { "version": "6.0.1", - "resolved": "https://registry.npmjs.org/webpack-cli/-/webpack-cli-6.0.1.tgz", - "integrity": "sha512-MfwFQ6SfwinsUVi0rNJm7rHZ31GyTcpVE5pgVA3hwFRb7COD4TzjUUwhGWKfO50+xdc2MQPuEBBJoqIMGt3JDw==", "dev": true, "license": "MIT", "dependencies": { @@ -7413,15 +6129,11 @@ }, "node_modules/webpack-cli/node_modules/colorette": { "version": "2.0.20", - "resolved": "https://registry.npmjs.org/colorette/-/colorette-2.0.20.tgz", - "integrity": "sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w==", "dev": true, "license": "MIT" }, "node_modules/webpack-cli/node_modules/commander": { "version": "12.1.0", - "resolved": "https://registry.npmjs.org/commander/-/commander-12.1.0.tgz", - "integrity": "sha512-Vw8qHK3bZM9y/P10u3Vib8o/DdkvA2OtPtZvD871QKjy74Wj1WSKFILMPRPSdUSx5RFK1arlJzEtA4PkFgnbuA==", "dev": true, "license": "MIT", "engines": { @@ -7430,8 +6142,6 @@ }, "node_modules/webpack-merge": { "version": "6.0.1", - "resolved": "https://registry.npmjs.org/webpack-merge/-/webpack-merge-6.0.1.tgz", - "integrity": "sha512-hXXvrjtx2PLYx4qruKl+kyRSLc52V+cCvMxRjmKwoA+CBbbF5GfIBtR6kCvl0fYGqTUPKB+1ktVmTHqMOzgCBg==", "dev": true, "license": "MIT", "dependencies": { @@ -7445,8 +6155,6 @@ }, "node_modules/webpack-sources": { "version": "3.2.3", - "resolved": "https://registry.npmjs.org/webpack-sources/-/webpack-sources-3.2.3.tgz", - "integrity": "sha512-/DyMEOrDgLKKIG0fmvtz+4dUX/3Ghozwgm6iPp8KRhvn+eQf9+Q7GWxVNMk3+uCPWfdXYC4ExGBckIXdFEfH1w==", "dev": true, "license": "MIT", "engines": { @@ -7455,8 +6163,6 @@ }, "node_modules/webpack/node_modules/ajv": { "version": "8.17.1", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.17.1.tgz", - "integrity": "sha512-B/gBuNg5SiMTrPkC+A2+cW0RszwxYmn6VYxB/inlBStS5nx6xHIt/ehKRhIMhqusl7a8LjQoZnjCs5vhwxOQ1g==", "dev": true, "license": "MIT", "dependencies": { @@ -7472,8 +6178,6 @@ }, "node_modules/webpack/node_modules/ajv-keywords": { "version": "5.1.0", - "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-5.1.0.tgz", - "integrity": "sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==", "dev": true, "license": "MIT", "dependencies": { @@ -7485,8 +6189,6 @@ }, "node_modules/webpack/node_modules/eslint-scope": { "version": "5.1.1", - "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-5.1.1.tgz", - "integrity": "sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==", "dev": true, "license": "BSD-2-Clause", "dependencies": { @@ -7499,8 +6201,6 @@ }, "node_modules/webpack/node_modules/estraverse": { "version": "4.3.0", - "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz", - "integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==", "dev": true, "license": "BSD-2-Clause", "engines": { @@ -7509,15 +6209,11 @@ }, "node_modules/webpack/node_modules/json-schema-traverse": { "version": "1.0.0", - "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", - "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==", "dev": true, "license": "MIT" }, "node_modules/webpack/node_modules/schema-utils": { "version": "4.3.2", - "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-4.3.2.tgz", - "integrity": "sha512-Gn/JaSk/Mt9gYubxTtSn/QCV4em9mpAPiR1rqy/Ocu19u/G9J5WWdNoUT4SiV6mFC3y6cxyFcFwdzPM3FgxGAQ==", "dev": true, "license": "MIT", "dependencies": { @@ -7536,8 +6232,6 @@ }, "node_modules/which": { "version": "2.0.2", - "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", - "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", "dev": true, "license": "ISC", "dependencies": { @@ -7552,15 +6246,11 @@ }, "node_modules/wildcard": { "version": "2.0.1", - "resolved": "https://registry.npmjs.org/wildcard/-/wildcard-2.0.1.tgz", - "integrity": "sha512-CC1bOL87PIWSBhDcTrdeLo6eGT7mCFtrg0uIJtqJUFyK+eJnzl8A1niH56uu7KMa5XFrtiV+AQuHO3n7DsHnLQ==", "dev": true, "license": "MIT" }, "node_modules/word-wrap": { "version": "1.2.5", - "resolved": "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.5.tgz", - "integrity": "sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==", "dev": true, "license": "MIT", "engines": { @@ -7569,8 +6259,6 @@ }, "node_modules/wrap-ansi": { "version": "7.0.0", - "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", - "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", "dev": true, "license": "MIT", "dependencies": { @@ -7587,15 +6275,11 @@ }, "node_modules/wrappy": { "version": "1.0.2", - "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", - "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==", "dev": true, "license": "ISC" }, "node_modules/write-file-atomic": { "version": "4.0.2", - "resolved": "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-4.0.2.tgz", - "integrity": "sha512-7KxauUdBmSdWnmpaGFg+ppNjKF8uNLry8LyzjauQDOVONfFLNKrKvQOxZ/VuTIcS/gge/YNahf5RIIQWTSarlg==", "dev": true, "license": "ISC", "dependencies": { @@ -7608,8 +6292,6 @@ }, "node_modules/ws": { "version": "8.18.2", - "resolved": "https://registry.npmjs.org/ws/-/ws-8.18.2.tgz", - "integrity": "sha512-DMricUmwGZUVr++AEAe2uiVM7UoO9MAVZMDu05UQOaUII0lp+zOzLLU4Xqh/JvTqklB1T4uELaaPBKyjE1r4fQ==", "dev": true, "license": "MIT", "engines": { @@ -7630,8 +6312,6 @@ }, "node_modules/y18n": { "version": "5.0.8", - "resolved": "https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz", - "integrity": "sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==", "dev": true, "license": "ISC", "engines": { @@ -7640,15 +6320,11 @@ }, "node_modules/yallist": { "version": "3.1.1", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz", - "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==", "dev": true, "license": "ISC" }, "node_modules/yargs": { "version": "17.7.2", - "resolved": "https://registry.npmjs.org/yargs/-/yargs-17.7.2.tgz", - "integrity": "sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==", "dev": true, "license": "MIT", "dependencies": { @@ -7666,8 +6342,6 @@ }, "node_modules/yargs-parser": { "version": "21.1.1", - "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-21.1.1.tgz", - "integrity": "sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==", "dev": true, "license": "ISC", "engines": { @@ -7676,8 +6350,6 @@ }, "node_modules/yocto-queue": { "version": "0.1.0", - "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz", - "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==", "dev": true, "license": "MIT", "engines": { @@ -7722,13 +6394,13 @@ "byte-base64": "^1.1.0", "minimatch": "^10.0.1", "p-queue": "^8.1.0", + "reconcile-text": "^0.5.0", "uuid": "^11.1.0" }, "devDependencies": { "@types/jest": "^29.5.14", "@types/node": "^22.15.30", "jest": "^29.7.0", - "sync_lib": "file:../../backend/sync_lib/pkg", "ts-jest": "^29.3.4", "ts-loader": "^9.5.2", "tslib": "2.8.1", @@ -7741,8 +6413,6 @@ }, "sync-client/node_modules/brace-expansion": { "version": "2.0.1", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", - "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", "license": "MIT", "dependencies": { "balanced-match": "^1.0.0" @@ -7750,8 +6420,6 @@ }, "sync-client/node_modules/minimatch": { "version": "10.0.1", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-10.0.1.tgz", - "integrity": "sha512-ethXTt3SGGR+95gudmqJ1eNhRO7eGEGIgYA9vnPatK4/etz2MEVDno5GMCibdMTuBMyElzIlgxMna3K94XDIDQ==", "license": "ISC", "dependencies": { "brace-expansion": "^2.0.1" diff --git a/frontend/sync-client/jest.config.js b/frontend/sync-client/jest.config.js index 8c1027ee..d1cbaca2 100644 --- a/frontend/sync-client/jest.config.js +++ b/frontend/sync-client/jest.config.js @@ -1,3 +1,3 @@ module.exports = { - preset: "ts-jest/presets/js-with-babel-esm" + preset: "ts-jest" }; diff --git a/frontend/sync-client/package.json b/frontend/sync-client/package.json index 74efc30a..8128d4de 100644 --- a/frontend/sync-client/package.json +++ b/frontend/sync-client/package.json @@ -10,19 +10,19 @@ "scripts": { "dev": "webpack watch --mode development", "build": "webpack --mode production", - "test": "NODE_OPTIONS=\"$NODE_OPTIONS --experimental-vm-modules\" jest" + "test": "jest" }, "dependencies": { "byte-base64": "^1.1.0", "minimatch": "^10.0.1", "p-queue": "^8.1.0", - "uuid": "^11.1.0" + "uuid": "^11.1.0", + "reconcile-text": "^0.5.0" }, "devDependencies": { "@types/jest": "^29.5.14", "@types/node": "^22.15.30", "jest": "^29.7.0", - "sync_lib": "file:../../backend/sync_lib/pkg", "ts-jest": "^29.3.4", "ts-loader": "^9.5.2", "tslib": "2.8.1", @@ -32,4 +32,4 @@ "webpack-merge": "^6.0.1", "ws": "^8.18.2" } -} +} \ No newline at end of file diff --git a/frontend/sync-client/src/file-operations/file-operations.test.ts b/frontend/sync-client/src/file-operations/file-operations.test.ts index 2529bab2..82a96f9d 100644 --- a/frontend/sync-client/src/file-operations/file-operations.test.ts +++ b/frontend/sync-client/src/file-operations/file-operations.test.ts @@ -6,12 +6,8 @@ import type { import { FileOperations } from "./file-operations"; import { Logger } from "../tracing/logger"; import { assertSetContainsExactly } from "../utils/assert-set-contains-exactly"; -import type { - FileSystemOperations, - TextWithCursors -} from "./filesystem-operations"; -import init, { base64ToBytes } from "sync_lib"; -import fs from "fs"; +import type { FileSystemOperations } from "./filesystem-operations"; +import type { TextWithCursors } from "reconcile-text"; class MockDatabase implements Partial<Database> { public getLatestDocumentByRelativePath( @@ -75,13 +71,6 @@ class FakeFileSystemOperations implements FileSystemOperations { } describe("File operations", () => { - beforeEach(async () => { - const wasmBin = fs.readFileSync( - "../../backend/sync_lib/pkg/sync_lib_bg.wasm" - ); - await init({ module_or_path: wasmBin }); - }); - it("should deconflict renames", async () => { const fileSystemOperations = new FakeFileSystemOperations(); const fileOperations = new FileOperations( diff --git a/frontend/sync-client/src/file-operations/file-operations.ts b/frontend/sync-client/src/file-operations/file-operations.ts index e6e42c9d..38f624e5 100644 --- a/frontend/sync-client/src/file-operations/file-operations.ts +++ b/frontend/sync-client/src/file-operations/file-operations.ts @@ -1,18 +1,10 @@ import type { Logger } from "../tracing/logger"; -import type { - FileSystemOperations, - TextWithCursors -} from "./filesystem-operations"; +import type { FileSystemOperations } from "./filesystem-operations"; import type { Database, RelativePath } from "../persistence/database"; -import { - CursorPosition, - isBinary, - isFileTypeMergable, - mergeTextWithCursors, - TextWithCursors as RustTextWithCursors -} from "sync_lib"; import { SafeFileSystemOperations } from "./safe-filesystem-operations"; - +import type { TextWithCursors } from "reconcile-text"; +import { isBinary, reconcile } from "reconcile-text"; +import { isFileTypeMergable } from "../utils/is-file-type-mergable"; export class FileOperations { private static readonly PARENTHESES_REGEX = / \((\d+)\)$/; private readonly fs: SafeFileSystemOperations; @@ -102,39 +94,25 @@ export class FileOperations { await this.fs.atomicUpdateText( path, ({ text, cursors }: TextWithCursors): TextWithCursors => { - text = text.replace(this.nativeLineEndings, "\n"); - this.logger.debug( `Performing a 3-way merge for ${path} with the expected content` ); - const left = new RustTextWithCursors( - text, - cursors.map( - (cursor) => - new CursorPosition( - cursor.id, - cursor.characterPosition - ) - ) + text = text.replace(this.nativeLineEndings, "\n"); + const merged = reconcile( + expectedText, + { text, cursors }, + newText ); - const right = new RustTextWithCursors(newText, []); - const merged = mergeTextWithCursors(expectedText, left, right); - const resultText = merged - .text() - .replace("\n", this.nativeLineEndings); - - const resultCursors = merged.cursors().map((cursor) => ({ - id: cursor.id(), - characterPosition: cursor.characterPosition() - })); - - merged.free(); + const resultText = merged.text.replace( + "\n", + this.nativeLineEndings + ); return { text: resultText, - cursors: resultCursors + cursors: merged.cursors }; } ); diff --git a/frontend/sync-client/src/file-operations/filesystem-operations.ts b/frontend/sync-client/src/file-operations/filesystem-operations.ts index 4caf538d..d5d1eedc 100644 --- a/frontend/sync-client/src/file-operations/filesystem-operations.ts +++ b/frontend/sync-client/src/file-operations/filesystem-operations.ts @@ -1,16 +1,6 @@ import type { RelativePath } from "../persistence/database"; -export interface Cursor { - id: number; - - /// The character position is the index of the character in the text where the text lines are separated by '\n' new line character even if the actual text uses different line endings. - characterPosition: number; -} - -export interface TextWithCursors { - text: string; - cursors: Cursor[]; -} +import type { TextWithCursors } from "reconcile-text"; export interface FileSystemOperations { // List all files that should be synced. diff --git a/frontend/sync-client/src/file-operations/safe-filesystem-operations.ts b/frontend/sync-client/src/file-operations/safe-filesystem-operations.ts index 304723b2..214f9f6e 100644 --- a/frontend/sync-client/src/file-operations/safe-filesystem-operations.ts +++ b/frontend/sync-client/src/file-operations/safe-filesystem-operations.ts @@ -1,11 +1,9 @@ import type { RelativePath } from "../persistence/database"; -import type { - FileSystemOperations, - TextWithCursors -} from "./filesystem-operations"; +import type { FileSystemOperations } from "./filesystem-operations"; import type { Logger } from "../tracing/logger"; import { Locks } from "../utils/locks"; import { FileNotFoundError } from "./file-not-found-error"; +import type { TextWithCursors } from "reconcile-text"; /** * Decorates `FileSystemOperations` to replace errors with `FileNotFoundError` diff --git a/frontend/sync-client/src/index.ts b/frontend/sync-client/src/index.ts index 0cd94277..e984794d 100644 --- a/frontend/sync-client/src/index.ts +++ b/frontend/sync-client/src/index.ts @@ -13,11 +13,7 @@ export { Logger, LogLevel, LogLine } from "./tracing/logger"; export { type SyncSettings, DEFAULT_SETTINGS } from "./persistence/settings"; export { rateLimit } from "./utils/rate-limit"; export type { RelativePath, StoredDatabase } from "./persistence/database"; -export type { - FileSystemOperations, - TextWithCursors, - Cursor -} from "./file-operations/filesystem-operations"; +export type { FileSystemOperations } from "./file-operations/filesystem-operations"; export type { PersistenceProvider } from "./persistence/persistence"; export type { CursorSpan } from "./services/types/CursorSpan"; export type { ClientCursors } from "./services/types/ClientCursors"; diff --git a/frontend/sync-client/src/sync-client.ts b/frontend/sync-client/src/sync-client.ts index 6d51212e..41ab6781 100644 --- a/frontend/sync-client/src/sync-client.ts +++ b/frontend/sync-client/src/sync-client.ts @@ -1,5 +1,3 @@ -import initWasm from "sync_lib"; -import wasmBin from "../../../backend/sync_lib/pkg/sync_lib_bg.wasm"; import type { PersistenceProvider } from "./persistence/persistence"; import type { HistoryEntry, HistoryStats } from "./tracing/sync-history"; import { SyncHistory } from "./tracing/sync-history"; @@ -79,11 +77,6 @@ export class SyncClient { const history = new SyncHistory(logger); - await initWasm( - // eslint-disable-next-line - (wasmBin as any).default // it is loaded as a base64 string by webpack - ); - let state = (await persistence.load()) ?? { settings: undefined, database: undefined diff --git a/frontend/sync-client/src/utils/assert-set-contains-exactly.ts b/frontend/sync-client/src/utils/assert-set-contains-exactly.ts index 9682044e..0532a3d3 100644 --- a/frontend/sync-client/src/utils/assert-set-contains-exactly.ts +++ b/frontend/sync-client/src/utils/assert-set-contains-exactly.ts @@ -1,4 +1,4 @@ -import assert from "assert"; +import * as assert from "assert"; export function assertSetContainsExactly<T>(set: Set<T>, ...values: T[]): void { assert( diff --git a/frontend/sync-client/src/utils/deserialize.test.ts b/frontend/sync-client/src/utils/deserialize.test.ts deleted file mode 100644 index b053c2a3..00000000 --- a/frontend/sync-client/src/utils/deserialize.test.ts +++ /dev/null @@ -1,18 +0,0 @@ -import init, { base64ToBytes } from "sync_lib"; -import fs from "fs"; - -describe("deserialize", () => { - it("should serialize a Uint8Array to a base64 string", async () => { - const wasmBin = fs.readFileSync( - "../../backend/sync_lib/pkg/sync_lib_bg.wasm" - ); - await init({ module_or_path: wasmBin }); - - const base64 = "SGVsbG8="; - const jsResult = base64ToBytes(base64); - const expected = new Uint8Array([72, 101, 108, 108, 111]); - expect(jsResult).toEqual(expected); - const rustResult = base64ToBytes(base64); - expect(jsResult).toEqual(rustResult); - }); -}); diff --git a/frontend/sync-client/src/utils/is-file-type-mergable.test.ts b/frontend/sync-client/src/utils/is-file-type-mergable.test.ts new file mode 100644 index 00000000..1b3c6557 --- /dev/null +++ b/frontend/sync-client/src/utils/is-file-type-mergable.test.ts @@ -0,0 +1,28 @@ +import { isFileTypeMergable } from "./is-file-type-mergable"; + +describe("isFileTypeMergable", () => { + it("should return true for .md files", () => { + expect(isFileTypeMergable(".md")).toBe(true); + expect(isFileTypeMergable("hi.md")).toBe(true); + expect(isFileTypeMergable("my/path/to/my/document.md")).toBe(true); + }); + + it("should return true for .txt files", () => { + expect(isFileTypeMergable(".txt")).toBe(true); + expect(isFileTypeMergable("hi.txt")).toBe(true); + expect(isFileTypeMergable("my/path/to/my/document.txt")).toBe(true); + }); + + it("should be case insensitive", () => { + expect(isFileTypeMergable("hi.MD")).toBe(true); + expect(isFileTypeMergable("my/path/to/my/DOCUMENT.MD")).toBe(true); + expect(isFileTypeMergable("hi.TXT")).toBe(true); + expect(isFileTypeMergable("my/path/to/my/DOCUMENT.TXT")).toBe(true); + }); + + it("should return false for non-mergable file types", () => { + expect(isFileTypeMergable(".json")).toBe(false); + expect(isFileTypeMergable("HELLO.JSON")).toBe(false); + expect(isFileTypeMergable("my/config.yml")).toBe(false); + }); +}); diff --git a/frontend/sync-client/src/utils/is-file-type-mergable.ts b/frontend/sync-client/src/utils/is-file-type-mergable.ts new file mode 100644 index 00000000..3b149285 --- /dev/null +++ b/frontend/sync-client/src/utils/is-file-type-mergable.ts @@ -0,0 +1,6 @@ +export function isFileTypeMergable(pathOrFileName: string): boolean { + const parts = pathOrFileName.split("."); + const fileExtension = parts.at(-1) ?? ""; + + return ["md", "txt"].includes(fileExtension.toLowerCase()); +} diff --git a/frontend/sync-client/src/utils/serialize.test.ts b/frontend/sync-client/src/utils/serialize.test.ts deleted file mode 100644 index d01fae18..00000000 --- a/frontend/sync-client/src/utils/serialize.test.ts +++ /dev/null @@ -1,18 +0,0 @@ -import { serialize } from "./serialize"; -import init, { bytesToBase64 } from "sync_lib"; -import fs from "fs"; - -describe("serialize", () => { - it("should serialize a Uint8Array to a base64 string", async () => { - const wasmBin = fs.readFileSync( - "../../backend/sync_lib/pkg/sync_lib_bg.wasm" - ); - await init({ module_or_path: wasmBin }); - - const data = new Uint8Array([72, 101, 108, 108, 111]); - const jsResult = serialize(data); - const rustResult = bytesToBase64(data); - expect(rustResult).toBe("SGVsbG8="); - expect(jsResult).toBe(rustResult); - }); -}); diff --git a/frontend/sync-client/src/utils/serialize.ts b/frontend/sync-client/src/utils/serialize.ts deleted file mode 100644 index 79eedaab..00000000 --- a/frontend/sync-client/src/utils/serialize.ts +++ /dev/null @@ -1,5 +0,0 @@ -import { bytesToBase64 } from "byte-base64"; - -export function serialize(data: Uint8Array): string { - return bytesToBase64(data); -} diff --git a/frontend/test-client/jest.config.js b/frontend/test-client/jest.config.js index 8c1027ee..d1cbaca2 100644 --- a/frontend/test-client/jest.config.js +++ b/frontend/test-client/jest.config.js @@ -1,3 +1,3 @@ module.exports = { - preset: "ts-jest/presets/js-with-babel-esm" + preset: "ts-jest" }; diff --git a/frontend/test-client/src/agent/mock-client.ts b/frontend/test-client/src/agent/mock-client.ts index ae465473..73235298 100644 --- a/frontend/test-client/src/agent/mock-client.ts +++ b/frontend/test-client/src/agent/mock-client.ts @@ -1,4 +1,4 @@ -import type { StoredDatabase, TextWithCursors } from "sync-client"; +import type { StoredDatabase } from "sync-client"; import { assert } from "../utils/assert"; import { type RelativePath, @@ -6,7 +6,7 @@ import { type SyncSettings, SyncClient } from "sync-client"; - +import type { TextWithCursors } from "reconcile-text"; export class MockClient implements FileSystemOperations { protected readonly localFiles = new Map<string, Uint8Array>(); protected client!: SyncClient; diff --git a/frontend/test-client/src/cli.ts b/frontend/test-client/src/cli.ts index ae4f7e84..4a3aab4f 100644 --- a/frontend/test-client/src/cli.ts +++ b/frontend/test-client/src/cli.ts @@ -33,7 +33,7 @@ async function runTest({ console.info(`Using vault name: ${vaultName}`); const initialSettings: Partial<SyncSettings> = { isSyncEnabled: true, - token: " test-token-change-me ", // same as in backend/config-e2e.yml with spaces + token: " test-token-change-me ", // same as in sync-server/config-e2e.yml with spaces vaultName: randomCasing(vaultName) + (Math.random() > 0.5 ? " " : ""), // extra spaces shouldn't matter syncConcurrency: concurrency, remoteUri: "http://localhost:3000" diff --git a/scripts/bump-version.sh b/scripts/bump-version.sh index 55813bd8..60f9391e 100755 --- a/scripts/bump-version.sh +++ b/scripts/bump-version.sh @@ -22,22 +22,14 @@ else echo "Your working directory is clean." fi -echo "Bumping backend versions" -cd backend +echo "Bumping sync-server versions" +cd sync-server cargo set-version --bump $1 echo "Bumping frontend versions" cd ../frontend npm version $1 --workspaces -echo "Updating frontend dependencies to match the new backend versions" -cd ../backend/sync_lib -wasm-pack build --target web --features console_error_panic_hook - -cd ../../frontend -npm install - -cd .. cp frontend/obsidian-plugin/manifest.json manifest.json # for BRAT, otherwise it wouldn't update # Commit and tag diff --git a/scripts/clean-up.sh b/scripts/clean-up.sh index 85c12d10..4dfbf4a0 100755 --- a/scripts/clean-up.sh +++ b/scripts/clean-up.sh @@ -1,4 +1,4 @@ #!/bin/bash -rm -rf backend/databases +rm -rf sync-server/databases rm -rf logs diff --git a/scripts/update-api-types.sh b/scripts/update-api-types.sh index aea8a890..7aa8238c 100755 --- a/scripts/update-api-types.sh +++ b/scripts/update-api-types.sh @@ -2,10 +2,10 @@ set -e -rm -rf backend/sync_server/bindings +rm -rf sync-server/bindings -cd backend +cd sync-server cargo test export_bindings cd - -cp -r backend/sync_server/bindings/* frontend/sync-client/src/services/types/ +cp -r sync-server/bindings/* frontend/sync-client/src/services/types/ diff --git a/backend/.dockerignore b/sync-server/.dockerignore similarity index 78% rename from backend/.dockerignore rename to sync-server/.dockerignore index 985e2cd4..091f4766 100644 --- a/backend/.dockerignore +++ b/sync-server/.dockerignore @@ -2,5 +2,4 @@ target Dockerfile .dockerignore databases -sync_lib/pkg *.yml diff --git a/backend/.env b/sync-server/.env similarity index 100% rename from backend/.env rename to sync-server/.env diff --git a/backend/Cargo.lock b/sync-server/Cargo.lock similarity index 93% rename from backend/Cargo.lock rename to sync-server/Cargo.lock index 4d40e80e..c6f607be 100644 --- a/backend/Cargo.lock +++ b/sync-server/Cargo.lock @@ -346,9 +346,9 @@ dependencies = [ [[package]] name = "cfg-if" -version = "1.0.0" +version = "1.0.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" +checksum = "9555578bc9e57714c812a1f84e4fc5b4d21fcb063490c624de019f7464c91268" [[package]] name = "chrono" @@ -430,28 +430,6 @@ dependencies = [ "crossbeam-utils", ] -[[package]] -name = "console" -version = "0.15.8" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0e1f83fc076bd6dd27517eacdf25fef6c4dfe5f1d7448bafaaf3a26f13b5e4eb" -dependencies = [ - "encode_unicode", - "lazy_static", - "libc", - "windows-sys 0.52.0", -] - -[[package]] -name = "console_error_panic_hook" -version = "0.1.7" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a06aeb73f470f66dcdbf7223caeebb85984942f22f1adb2a088cf9668146bbbc" -dependencies = [ - "cfg-if", - "wasm-bindgen", -] - [[package]] name = "const-oid" version = "0.9.6" @@ -575,12 +553,6 @@ dependencies = [ "serde", ] -[[package]] -name = "diff" -version = "0.1.13" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "56254986775e3233ffa9c4d7d3faaf6d36a2c09d30b20687e9f88bc8bafc16c8" - [[package]] name = "digest" version = "0.10.7" @@ -619,12 +591,6 @@ dependencies = [ "serde", ] -[[package]] -name = "encode_unicode" -version = "0.3.6" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a357d28ed41a50f9c765dbfe56cbc04a64e53e5fc58ba79fbc34c10ef3df831f" - [[package]] name = "encoding_rs" version = "0.8.35" @@ -1209,19 +1175,6 @@ dependencies = [ "serde", ] -[[package]] -name = "insta" -version = "1.42.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "50259abbaa67d11d2bcafc7ba1d094ed7a0c70e3ce893f0d0997f73558cb3084" -dependencies = [ - "console", - "linked-hash-map", - "once_cell", - "pin-project", - "similar", -] - [[package]] name = "is_terminal_polyfill" version = "1.70.1" @@ -1276,12 +1229,6 @@ dependencies = [ "vcpkg", ] -[[package]] -name = "linked-hash-map" -version = "0.5.6" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0717cef1bc8b636c6e1c1bbdefc09e6322da8a9321966e8928ef80d20f7f770f" - [[package]] name = "linux-raw-sys" version = "0.4.14" @@ -1347,16 +1294,6 @@ version = "0.3.17" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a" -[[package]] -name = "minicov" -version = "0.3.7" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f27fe9f1cc3c22e1687f9446c2083c4c5fc7f0bcf1c7a86bdbded14985895b4b" -dependencies = [ - "cc", - "walkdir", -] - [[package]] name = "miniz_oxide" version = "0.8.0" @@ -1522,26 +1459,6 @@ version = "2.3.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e3148f5046208a5d56bcfc03053e3ca6334e51da8dfb19b6cdc8b306fae3283e" -[[package]] -name = "pin-project" -version = "1.1.10" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "677f1add503faace112b9f1373e43e9e054bfdd22ff1a63c1bc485eaec6a6a8a" -dependencies = [ - "pin-project-internal", -] - -[[package]] -name = "pin-project-internal" -version = "1.1.10" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6e918e4ff8c4549eb882f14b3a4bc8c8bc93de829416eacf579f1207a8fbf861" -dependencies = [ - "proc-macro2", - "quote", - "syn 2.0.90", -] - [[package]] name = "pin-project-lite" version = "0.2.15" @@ -1596,16 +1513,6 @@ dependencies = [ "zerocopy 0.7.35", ] -[[package]] -name = "pretty_assertions" -version = "1.4.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3ae130e2f271fbc2ac3a40fb1d07180839cdbbe443c7a27e1e3c13c5cac0116d" -dependencies = [ - "diff", - "yansi", -] - [[package]] name = "proc-macro-error" version = "1.0.4" @@ -1715,15 +1622,10 @@ dependencies = [ ] [[package]] -name = "reconcile" -version = "0.4.0" -dependencies = [ - "insta", - "pretty_assertions", - "serde", - "serde_yaml", - "test-case", -] +name = "reconcile-text" +version = "0.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c8d690c19b0bf6574cd3591d10f20df5aa52d2af95b8dcaacbc86893292ac8c5" [[package]] name = "redox_syscall" @@ -1829,15 +1731,6 @@ version = "1.0.18" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f3cb5ba0dc43242ce17de99c180e96db90b235b8a9fdc9543c96d2209116bd9f" -[[package]] -name = "same-file" -version = "1.0.6" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502" -dependencies = [ - "winapi-util", -] - [[package]] name = "sanitize-filename" version = "0.6.0" @@ -1847,12 +1740,6 @@ dependencies = [ "regex", ] -[[package]] -name = "scoped-tls" -version = "1.0.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e1cf6437eb19a8f4a6cc0f7dca544973b0b78843adbfeb3683d1a94a0024a294" - [[package]] name = "scopeguard" version = "1.2.0" @@ -2012,12 +1899,6 @@ dependencies = [ "rand_core 0.6.4", ] -[[package]] -name = "similar" -version = "2.6.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1de1d4f81173b03af4c0cbed3c898f6bff5b870e4a7f5d6f4057d62a7a4b686e" - [[package]] name = "slab" version = "0.4.9" @@ -2311,19 +2192,6 @@ dependencies = [ "unicode-ident", ] -[[package]] -name = "sync_lib" -version = "0.4.0" -dependencies = [ - "base64 0.22.1", - "console_error_panic_hook", - "insta", - "reconcile", - "thiserror 2.0.12", - "wasm-bindgen", - "wasm-bindgen-test", -] - [[package]] name = "sync_server" version = "0.4.0" @@ -2332,6 +2200,7 @@ dependencies = [ "axum", "axum-extra", "axum_typed_multipart", + "base64 0.22.1", "bimap", "chrono", "clap", @@ -2339,6 +2208,7 @@ dependencies = [ "futures", "log", "rand 0.9.0", + "reconcile-text", "regex", "sanitize-filename", "serde", @@ -2346,7 +2216,6 @@ dependencies = [ "serde_with", "serde_yaml", "sqlx", - "sync_lib", "thiserror 2.0.12", "tokio", "tower-http", @@ -2395,39 +2264,6 @@ dependencies = [ "winapi-util", ] -[[package]] -name = "test-case" -version = "3.3.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "eb2550dd13afcd286853192af8601920d959b14c401fcece38071d53bf0768a8" -dependencies = [ - "test-case-macros", -] - -[[package]] -name = "test-case-core" -version = "3.3.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "adcb7fd841cd518e279be3d5a3eb0636409487998a4aff22f3de87b81e88384f" -dependencies = [ - "cfg-if", - "proc-macro2", - "quote", - "syn 2.0.90", -] - -[[package]] -name = "test-case-macros" -version = "3.3.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5c89e72a01ed4c579669add59014b9a524d609c0c88c6a585ce37485879f6ffb" -dependencies = [ - "proc-macro2", - "quote", - "syn 2.0.90", - "test-case-core", -] - [[package]] name = "thiserror" version = "1.0.69" @@ -2845,16 +2681,6 @@ version = "0.9.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a" -[[package]] -name = "walkdir" -version = "2.5.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b" -dependencies = [ - "same-file", - "winapi-util", -] - [[package]] name = "wasi" version = "0.11.0+wasi-snapshot-preview1" @@ -2901,19 +2727,6 @@ dependencies = [ "wasm-bindgen-shared", ] -[[package]] -name = "wasm-bindgen-futures" -version = "0.4.49" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "38176d9b44ea84e9184eff0bc34cc167ed044f816accfe5922e54d84cf48eca2" -dependencies = [ - "cfg-if", - "js-sys", - "once_cell", - "wasm-bindgen", - "web-sys", -] - [[package]] name = "wasm-bindgen-macro" version = "0.2.99" @@ -2943,41 +2756,6 @@ version = "0.2.99" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "943aab3fdaaa029a6e0271b35ea10b72b943135afe9bffca82384098ad0e06a6" -[[package]] -name = "wasm-bindgen-test" -version = "0.3.49" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c61d44563646eb934577f2772656c7ad5e9c90fac78aa8013d776fcdaf24625d" -dependencies = [ - "js-sys", - "minicov", - "scoped-tls", - "wasm-bindgen", - "wasm-bindgen-futures", - "wasm-bindgen-test-macro", -] - -[[package]] -name = "wasm-bindgen-test-macro" -version = "0.3.49" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "54171416ce73aa0b9c377b51cc3cb542becee1cd678204812e8392e5b0e4a031" -dependencies = [ - "proc-macro2", - "quote", - "syn 2.0.90", -] - -[[package]] -name = "web-sys" -version = "0.3.76" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "04dd7223427d52553d3702c004d3b2fe07c148165faa56313cb00211e31c12bc" -dependencies = [ - "js-sys", - "wasm-bindgen", -] - [[package]] name = "whoami" version = "1.5.2" @@ -3203,12 +2981,6 @@ version = "0.5.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "1e9df38ee2d2c3c5948ea468a8406ff0db0b29ae1ffde1bcf20ef305bcc95c51" -[[package]] -name = "yansi" -version = "1.0.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cfe53a6657fd280eaa890a3bc59152892ffa3e30101319d168b781ed6529b049" - [[package]] name = "yoke" version = "0.7.5" diff --git a/backend/Cargo.toml b/sync-server/Cargo.toml similarity index 60% rename from backend/Cargo.toml rename to sync-server/Cargo.toml index 5fb4a5a5..5b0c8b44 100644 --- a/backend/Cargo.toml +++ b/sync-server/Cargo.toml @@ -1,22 +1,40 @@ -[workspace] -resolver = "2" -members = [ - "reconcile", - "sync_server", - "sync_lib" -] - -[workspace.package] -rust-version = "1.83" +[package] +name = "sync_server" +rust-version = "1.87.0" authors = ["Andras Schmelczer <andras@schmelczer.dev>"] edition = "2024" license = "MIT" repository = "https://github.com/schmelczer/vault-link" version = "0.4.0" -[workspace.dependencies] +[dependencies] serde = { version = "1.0.219", default-features = false, features = ["derive"] } thiserror = { version = "2.0.12", default-features = false } +tokio = { version = "1.44.2", features = ["full"]} +uuid = { version = "1.16.0", features = ["v4", "serde"] } +log = { version = "0.4.27" } +anyhow = { version = "1.0.98", features = ["backtrace"] } +axum = { version = "0.7.4", features = ["ws", "macros", "tracing", "multipart"]} +axum-extra = { version = "0.9.6", features = ["typed-header"] } +axum_typed_multipart = "0.11.0" +tower-http = { version = "0.6.1", features = ["cors", "trace", "limit", "timeout"] } +tracing = "0.1.41" +tracing-subscriber = { version = "0.3.19", features = ["fmt", "env-filter"]} +sqlx = { version = "0.8.6", features = ["sqlite", "runtime-tokio", "uuid", "chrono"] } +chrono = { version = "0.4.41", features = ["serde"] } +rand = "0.9.0" +sanitize-filename = "0.6.0" +regex = "1.11.1" +clap = { version = "4.5.38", features = ["derive"] } +futures = "0.3.31" +serde_yaml = "0.9.34" +serde_json = "1.0.140" +clap-verbosity-flag = "3.0.3" +bimap = "0.6.3" +ts-rs = { version = "10.1", features = ["uuid-impl", "chrono-impl"] } +serde_with = "3.12.0" +base64 = "0.22.1" +reconcile-text = "0.5.0" [profile.release] codegen-units = 1 @@ -24,12 +42,12 @@ lto = true opt-level = 3 strip="debuginfo" # Keep some info for better panics -[workspace.lints.rust] +[lints.rust] unsafe_code = "forbid" rust_2018_idioms = { level = "warn", priority = -1 } missing_debug_implementations = "warn" -[workspace.lints.clippy] +[lints.clippy] await_holding_lock = "warn" dbg_macro = "warn" empty_enum = "warn" @@ -59,11 +77,6 @@ verbose_file_reads = "warn" large_stack_arrays = { level = "allow", priority = 1 } # https://github.com/rust-lang/rust-clippy/issues/13774 -# TODO: fix these -cast_possible_truncation = { level = "allow", priority = 1 } -cast_sign_loss = { level = "allow", priority = 1 } -cast_possible_wrap = { level = "allow", priority = 1 } - # Silly lints implicit_return = { level = "allow", priority = 1 } question_mark_used = { level = "allow", priority = 1 } diff --git a/sync-server/Dockerfile b/sync-server/Dockerfile new file mode 100644 index 00000000..576a0f96 --- /dev/null +++ b/sync-server/Dockerfile @@ -0,0 +1,33 @@ +FROM rust:1.87 AS builder + +WORKDIR /usr/src/backend + +RUN apt update && apt install -y musl-tools +RUN cargo install sqlx-cli + +COPY . . + +RUN sqlx database create --database-url sqlite://db.sqlite3 +RUN sqlx migrate run --source src/app_state/database/migrations --database-url sqlite://db.sqlite3 + +RUN cargo build --release --target x86_64-unknown-linux-musl + +# Runtime image +FROM alpine:3.22.0 + +LABEL org.opencontainers.image.authors="andras@schmelczer.dev" + +RUN apk add --no-cache curl + +COPY --from=builder /usr/src/backend/target/x86_64-unknown-linux-musl/release /app/sync_server + +VOLUME /data +EXPOSE 3000/tcp +WORKDIR /data + +HEALTHCHECK \ + --interval=30s \ + --timeout=5s \ + CMD curl -f http://localhost:3000/vaults/fake/ping || exit 1 + +ENTRYPOINT ["/app/sync_server"] diff --git a/backend/sync_server/README.md b/sync-server/README.md similarity index 60% rename from backend/sync_server/README.md rename to sync-server/README.md index 7d61209a..4576162c 100644 --- a/backend/sync_server/README.md +++ b/sync-server/README.md @@ -4,6 +4,6 @@ ```sh sqlx database create --database-url sqlite://db.sqlite3 -sqlx migrate run --source sync_server/src/app_state/database/migrations --database-url sqlite://db.sqlite3 +sqlx migrate run --source src/app_state/database/migrations --database-url sqlite://db.sqlite3 cargo sqlx prepare --workspace ``` diff --git a/backend/sync_server/build.rs b/sync-server/build.rs similarity index 100% rename from backend/sync_server/build.rs rename to sync-server/build.rs diff --git a/sync-server/config-e2e.yml b/sync-server/config-e2e.yml new file mode 100644 index 00000000..5f2346d6 --- /dev/null +++ b/sync-server/config-e2e.yml @@ -0,0 +1,26 @@ +database: + databases_directory_path: databases + max_connections_per_vault: 12 + cursor_timeout_seconds: 60 +server: + host: 0.0.0.0 + port: 3000 + max_body_size_mb: 512 + max_clients_per_vault: 256 + response_timeout_seconds: 60 +users: + user_configs: + - name: admin + token: test-token-change-me + vault_access: + type: allow_access_to_all + - name: other-admin + token: test-token-change-me2 + vault_access: + type: allow_access_to_all + - name: test + token: other-test-token + vault_access: + type: allow_list + allowed: + - default diff --git a/sync-server/rust-toolchain.toml b/sync-server/rust-toolchain.toml new file mode 100644 index 00000000..0d5c6104 --- /dev/null +++ b/sync-server/rust-toolchain.toml @@ -0,0 +1,4 @@ +[toolchain] +channel = "nightly-2025-06-06" +targets = [ "x86_64-unknown-linux-gnu", "x86_64-unknown-linux-musl" ] +profile = "default" diff --git a/sync-server/rustfmt.toml b/sync-server/rustfmt.toml new file mode 100644 index 00000000..6640f544 --- /dev/null +++ b/sync-server/rustfmt.toml @@ -0,0 +1,8 @@ +imports_granularity = "crate" +condense_wildcard_suffixes = true +fn_single_line = true +format_strings = true +reorder_impl_items = true +group_imports = "StdExternalCrate" +use_field_init_shorthand = true +wrap_comments=true diff --git a/backend/sync_server/src/app_state.rs b/sync-server/src/app_state.rs similarity index 100% rename from backend/sync_server/src/app_state.rs rename to sync-server/src/app_state.rs diff --git a/backend/sync_server/src/app_state/cursors.rs b/sync-server/src/app_state/cursors.rs similarity index 100% rename from backend/sync_server/src/app_state/cursors.rs rename to sync-server/src/app_state/cursors.rs diff --git a/backend/sync_server/src/app_state/database.rs b/sync-server/src/app_state/database.rs similarity index 100% rename from backend/sync_server/src/app_state/database.rs rename to sync-server/src/app_state/database.rs diff --git a/backend/sync_server/src/app_state/database/migrations/20241207143519_bootstrap.sql b/sync-server/src/app_state/database/migrations/20241207143519_bootstrap.sql similarity index 100% rename from backend/sync_server/src/app_state/database/migrations/20241207143519_bootstrap.sql rename to sync-server/src/app_state/database/migrations/20241207143519_bootstrap.sql diff --git a/backend/sync_server/src/app_state/database/migrations/20250522192949_add_provenance_columns.sql b/sync-server/src/app_state/database/migrations/20250522192949_add_provenance_columns.sql similarity index 100% rename from backend/sync_server/src/app_state/database/migrations/20250522192949_add_provenance_columns.sql rename to sync-server/src/app_state/database/migrations/20250522192949_add_provenance_columns.sql diff --git a/backend/sync_server/src/app_state/database/models.rs b/sync-server/src/app_state/database/models.rs similarity index 95% rename from backend/sync_server/src/app_state/database/models.rs rename to sync-server/src/app_state/database/models.rs index e995611e..7796f627 100644 --- a/backend/sync_server/src/app_state/database/models.rs +++ b/sync-server/src/app_state/database/models.rs @@ -1,6 +1,6 @@ +use base64::{Engine as _, engine::general_purpose::STANDARD}; use chrono::{DateTime, Utc}; use serde::Serialize; -use sync_lib::bytes_to_base64; use ts_rs::TS; pub type VaultId = String; @@ -80,7 +80,7 @@ impl From<StoredDocumentVersion> for DocumentVersion { document_id: value.document_id, relative_path: value.relative_path, updated_date: value.updated_date, - content_base64: bytes_to_base64(&value.content), + content_base64: STANDARD.encode(&value.content), is_deleted: value.is_deleted, user_id: value.user_id, device_id: value.device_id, diff --git a/backend/sync_server/src/app_state/websocket.rs b/sync-server/src/app_state/websocket.rs similarity index 100% rename from backend/sync_server/src/app_state/websocket.rs rename to sync-server/src/app_state/websocket.rs diff --git a/backend/sync_server/src/app_state/websocket/broadcasts.rs b/sync-server/src/app_state/websocket/broadcasts.rs similarity index 100% rename from backend/sync_server/src/app_state/websocket/broadcasts.rs rename to sync-server/src/app_state/websocket/broadcasts.rs diff --git a/backend/sync_server/src/app_state/websocket/models.rs b/sync-server/src/app_state/websocket/models.rs similarity index 100% rename from backend/sync_server/src/app_state/websocket/models.rs rename to sync-server/src/app_state/websocket/models.rs diff --git a/backend/sync_server/src/app_state/websocket/utils.rs b/sync-server/src/app_state/websocket/utils.rs similarity index 100% rename from backend/sync_server/src/app_state/websocket/utils.rs rename to sync-server/src/app_state/websocket/utils.rs diff --git a/backend/sync_server/src/cli.rs b/sync-server/src/cli.rs similarity index 100% rename from backend/sync_server/src/cli.rs rename to sync-server/src/cli.rs diff --git a/backend/sync_server/src/cli/args.rs b/sync-server/src/cli/args.rs similarity index 100% rename from backend/sync_server/src/cli/args.rs rename to sync-server/src/cli/args.rs diff --git a/backend/sync_server/src/cli/color_when.rs b/sync-server/src/cli/color_when.rs similarity index 100% rename from backend/sync_server/src/cli/color_when.rs rename to sync-server/src/cli/color_when.rs diff --git a/backend/sync_server/src/config.rs b/sync-server/src/config.rs similarity index 100% rename from backend/sync_server/src/config.rs rename to sync-server/src/config.rs diff --git a/backend/sync_server/src/config/database_config.rs b/sync-server/src/config/database_config.rs similarity index 100% rename from backend/sync_server/src/config/database_config.rs rename to sync-server/src/config/database_config.rs diff --git a/backend/sync_server/src/config/server_config.rs b/sync-server/src/config/server_config.rs similarity index 100% rename from backend/sync_server/src/config/server_config.rs rename to sync-server/src/config/server_config.rs diff --git a/backend/sync_server/src/config/user_config.rs b/sync-server/src/config/user_config.rs similarity index 100% rename from backend/sync_server/src/config/user_config.rs rename to sync-server/src/config/user_config.rs diff --git a/backend/sync_server/src/consts.rs b/sync-server/src/consts.rs similarity index 100% rename from backend/sync_server/src/consts.rs rename to sync-server/src/consts.rs diff --git a/backend/sync_server/src/errors.rs b/sync-server/src/errors.rs similarity index 100% rename from backend/sync_server/src/errors.rs rename to sync-server/src/errors.rs diff --git a/backend/sync_server/src/main.rs b/sync-server/src/main.rs similarity index 100% rename from backend/sync_server/src/main.rs rename to sync-server/src/main.rs diff --git a/backend/sync_server/src/server.rs b/sync-server/src/server.rs similarity index 100% rename from backend/sync_server/src/server.rs rename to sync-server/src/server.rs diff --git a/backend/sync_server/src/server/assets/index.html b/sync-server/src/server/assets/index.html similarity index 100% rename from backend/sync_server/src/server/assets/index.html rename to sync-server/src/server/assets/index.html diff --git a/backend/sync_server/src/server/auth.rs b/sync-server/src/server/auth.rs similarity index 100% rename from backend/sync_server/src/server/auth.rs rename to sync-server/src/server/auth.rs diff --git a/backend/sync_server/src/server/create_document.rs b/sync-server/src/server/create_document.rs similarity index 100% rename from backend/sync_server/src/server/create_document.rs rename to sync-server/src/server/create_document.rs diff --git a/backend/sync_server/src/server/delete_document.rs b/sync-server/src/server/delete_document.rs similarity index 100% rename from backend/sync_server/src/server/delete_document.rs rename to sync-server/src/server/delete_document.rs diff --git a/backend/sync_server/src/server/device_id_header.rs b/sync-server/src/server/device_id_header.rs similarity index 100% rename from backend/sync_server/src/server/device_id_header.rs rename to sync-server/src/server/device_id_header.rs diff --git a/backend/sync_server/src/server/fetch_document_version.rs b/sync-server/src/server/fetch_document_version.rs similarity index 100% rename from backend/sync_server/src/server/fetch_document_version.rs rename to sync-server/src/server/fetch_document_version.rs diff --git a/backend/sync_server/src/server/fetch_document_version_content.rs b/sync-server/src/server/fetch_document_version_content.rs similarity index 100% rename from backend/sync_server/src/server/fetch_document_version_content.rs rename to sync-server/src/server/fetch_document_version_content.rs diff --git a/backend/sync_server/src/server/fetch_latest_document_version.rs b/sync-server/src/server/fetch_latest_document_version.rs similarity index 100% rename from backend/sync_server/src/server/fetch_latest_document_version.rs rename to sync-server/src/server/fetch_latest_document_version.rs diff --git a/backend/sync_server/src/server/fetch_latest_documents.rs b/sync-server/src/server/fetch_latest_documents.rs similarity index 100% rename from backend/sync_server/src/server/fetch_latest_documents.rs rename to sync-server/src/server/fetch_latest_documents.rs diff --git a/backend/sync_server/src/server/index.rs b/sync-server/src/server/index.rs similarity index 100% rename from backend/sync_server/src/server/index.rs rename to sync-server/src/server/index.rs diff --git a/backend/sync_server/src/server/ping.rs b/sync-server/src/server/ping.rs similarity index 100% rename from backend/sync_server/src/server/ping.rs rename to sync-server/src/server/ping.rs diff --git a/backend/sync_server/src/server/requests.rs b/sync-server/src/server/requests.rs similarity index 100% rename from backend/sync_server/src/server/requests.rs rename to sync-server/src/server/requests.rs diff --git a/backend/sync_server/src/server/responses.rs b/sync-server/src/server/responses.rs similarity index 100% rename from backend/sync_server/src/server/responses.rs rename to sync-server/src/server/responses.rs diff --git a/backend/sync_server/src/server/update_document.rs b/sync-server/src/server/update_document.rs similarity index 84% rename from backend/sync_server/src/server/update_document.rs rename to sync-server/src/server/update_document.rs index a3ab25e1..99d3f490 100644 --- a/backend/sync_server/src/server/update_document.rs +++ b/sync-server/src/server/update_document.rs @@ -6,8 +6,8 @@ use axum::{ use axum_extra::TypedHeader; use axum_typed_multipart::TypedMultipart; use log::info; +use reconcile_text::{BuiltinTokenizer, is_binary, reconcile}; use serde::Deserialize; -use sync_lib::{is_file_type_mergable, merge}; use super::{ device_id_header::DeviceIdHeader, requests::UpdateDocumentVersion, @@ -20,7 +20,10 @@ use crate::{ }, config::user_config::User, errors::{SyncServerError, not_found_error, server_error}, - utils::{dedup_paths::dedup_paths, normalize::normalize, sanitize_path::sanitize_path}, + utils::{ + dedup_paths::dedup_paths, is_file_type_mergable::is_file_type_mergable, + normalize::normalize, sanitize_path::sanitize_path, + }, }; #[derive(Deserialize)] @@ -117,8 +120,25 @@ pub async fn update_document( ))); } - let merged_content = if is_file_type_mergable(&sanitized_relative_path) { - merge(&parent_document.content, &latest_version.content, &content) + let merged_content = if is_file_type_mergable(&sanitized_relative_path) + && !is_binary(&parent_document.content) + && !is_binary(&latest_version.content) + && !is_binary(&content) + { + reconcile( + str::from_utf8(&parent_document.content) + .expect("parent must be valid UTF-8 because it's not binary"), + &str::from_utf8(&latest_version.content) + .expect("latest_version must be valid UTF-8 because it's not binary") + .into(), + &str::from_utf8(&content) + .expect("content must be valid UTF-8 because it's not binary") + .into(), + &*BuiltinTokenizer::Word, + ) + .apply() + .text() + .into_bytes() } else { content.clone() }; diff --git a/backend/sync_server/src/server/websocket.rs b/sync-server/src/server/websocket.rs similarity index 100% rename from backend/sync_server/src/server/websocket.rs rename to sync-server/src/server/websocket.rs diff --git a/backend/sync_server/src/utils.rs b/sync-server/src/utils.rs similarity index 67% rename from backend/sync_server/src/utils.rs rename to sync-server/src/utils.rs index 870f4ae5..010524de 100644 --- a/backend/sync_server/src/utils.rs +++ b/sync-server/src/utils.rs @@ -1,3 +1,4 @@ pub mod dedup_paths; +pub mod is_file_type_mergable; pub mod normalize; pub mod sanitize_path; diff --git a/backend/sync_server/src/utils/dedup_paths.rs b/sync-server/src/utils/dedup_paths.rs similarity index 100% rename from backend/sync_server/src/utils/dedup_paths.rs rename to sync-server/src/utils/dedup_paths.rs diff --git a/sync-server/src/utils/is_file_type_mergable.rs b/sync-server/src/utils/is_file_type_mergable.rs new file mode 100644 index 00000000..fba4b323 --- /dev/null +++ b/sync-server/src/utils/is_file_type_mergable.rs @@ -0,0 +1,23 @@ +pub fn is_file_type_mergable(path_or_file_name: &str) -> bool { + let file_extension = path_or_file_name.split('.').next_back().unwrap_or_default(); + + matches!(file_extension.to_lowercase().as_str(), "md" | "txt") +} + +#[cfg(test)] +mod tests { + use super::*; + + #[test] + fn test_is_file_type_mergable() { + assert!(is_file_type_mergable(".md")); + assert!(is_file_type_mergable("hi.md")); + assert!(is_file_type_mergable("my/path/to/my/document.md")); + assert!(is_file_type_mergable("hi.MD")); + assert!(is_file_type_mergable("my/path/to/my/DOCUMENT.MD")); + + assert!(!is_file_type_mergable(".json")); + assert!(!is_file_type_mergable("HELLO.JSON")); + assert!(!is_file_type_mergable("my/config.yml")); + } +} diff --git a/backend/sync_server/src/utils/normalize.rs b/sync-server/src/utils/normalize.rs similarity index 100% rename from backend/sync_server/src/utils/normalize.rs rename to sync-server/src/utils/normalize.rs diff --git a/backend/sync_server/src/utils/sanitize_path.rs b/sync-server/src/utils/sanitize_path.rs similarity index 100% rename from backend/sync_server/src/utils/sanitize_path.rs rename to sync-server/src/utils/sanitize_path.rs