summaryrefslogtreecommitdiff
path: root/61981-h/61981-h.htm
blob: 996c627a1044f26a76154e56c7d639e446f8b878 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
  <head>
    <meta http-equiv="Content-Type" content="text/html;charset=UTF-8" />
    <meta http-equiv="Content-Style-Type" content="text/css" />
    <title>
      The Project Gutenberg eBook of British Butterflies, by A. M. Stewart.
    </title>
<link rel="coverpage" href="images/cover.jpg" />

    <style type="text/css">

body {
    margin-left: 10%;
    margin-right: 10%;
}

    h1,h2 {
    text-align: center; /* all headings centered */
    clear: both;
}

p {
    margin-top: .51em;
    text-align: justify;
    margin-bottom: .49em;
}

p.net {
    /*margin-top: .51em;*/
    text-align: center;
    /*margin-bottom: .49em;*/
    font-size: 1em;
}

p.gin  {
   text-align: center;
   font-size: 0.825em;
   }

p.gon  {
   text-align: center;
   font-size: 1em;
   font-style: italic;
   font-weight: bold;
   }

p.gan  {
   text-align: center;
   font-size: 2em;
   font-weight: bold;
   }

p.censm  {text-align: center; font-size: 1em;}

p.sig {
     position: absolute;
     right: 15%;
     text-align: right;
     font-size: 1.2em;
     }

.covercaption {font-size: 1em;
               text-align: center;}
@media handheld {
  .covercaption { display: none; }
}

hr {
    width: 33%;
    margin-top: 2em;
    margin-bottom: 2em;
    margin-left: 33.5%;
    margin-right: 33.5%;
    clear: both;
}

hr.chap {width: 64%; margin-left: 18%; margin-right: 18%;}

ol.avis {list-style-type:none;}
li.bird1 {padding-left: 5em; font-size: 0.825em; font-style: italic;}
li.bird2 {padding-left: 6em; font-size: 0.825em;}
li.lbla {text-align: center; font-size: 0.8em; padding-top: 0.25em; padding-bottom: 0.25em;}
li.lblb {text-align: center; font-size: 1.25em; padding-top: 0.25em; padding-bottom: 0.25em;}
li.inda {font-size: 1em;}
li.indb {padding-left: 1em;}
li.indc {padding-top: 0.5em;}
li.indd {padding-left: 2em;}

table.agent {
    margin-left: auto;
    margin-right: auto;
    border: none;
    width: 50%;
            }
td.trx {padding-bottom: 1em; padding-left: 1.4em;}
td.try {padding-left: 1.4em;}

table.kontent {
    margin-left: auto;
    margin-right: auto;
    border: none;
              }
table.kontent td { padding-top: 0.5em ;padding-left: 0.7em; padding-right: 0.7em; font-size: 0.825em; }

td.kat {text-align: right;}
td.kop {padding-bottom: 1em; max-width: 28em;}
td.krr {padding-bottom: 1.75em; max-width: 28em;}
td.kis {text-align: right; padding-bottom: 0.7em;}
td.kem {text-align: right; padding-bottom: 1.75em;}
td.kqz {text-align: right; padding-bottom: 0.7em;}
td.kyd {text-align: right; padding-bottom: 1.75em;}

table.illus {
    margin-left: auto;
    margin-right: auto;
    border: none;
            }
table.illus td { padding-top: 0.5em; padding-left: 0.7em; padding-right: 0.7em; font-size: 0.825em; }
td.illef {text-align: right; vertical-align: top;}
td.ilctr {max-width: 28em;}
td.ilrhs {text-align: right; vertical-align: bottom;}

.zagz {font-size: .8em;}


.pagenum { /* uncomment the next line for invisible page numbers */
    /*  visibility: hidden;  */
    position: absolute;
    left: 92%;
    font-size: small;
    text-align: right;
} /* page numbers */

.center   {text-align: center;text-indent: 0em;font-size:1.5em;}

.smcap    {font-variant: small-caps;}


/* Images */
.img_style {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 80%;
    }


img#titlepg {border: 2px solid;
    height: 506px;
    width: 354px;
    display: none;
}

@media handheld { img#titlepg
   {border: 2px solid;
    height: 506px;
    width: 354px;
    display: block;
    }
    }

div#ttpg {width:22.5em;
    height: 31.9em;
    display: none;
    }

@media handheld { div#ttpg
    {width:22.5em;
     height: 31.9em;
     display: block;
     margin: auto;
    }
    }

div#wingx  {
    width: 25em;
    /*background-color: #0fffff;*/
    margin: auto;
    }

div.bakg {
    background: url("images/tp2a.jpg") no-repeat center;
    /*background-color: #0fffff;*/
    height: 43.8em;
    }
div.tzx {
     width: 29.5em;
     height: 42.2em;
     margin: auto;
     padding-top: 0.9em;
     /*background-color: #0fffff;*/
       }

div#indoz {
   width:17em;
   margin:auto;
   padding-left: 0.5em; padding-right:0.5em; padding-bottom: 0.5em;
   }

div.sza {
     font-size: 2.5em;
     font-weight: bold;
     text-align: center;
     padding-top: 2.5em;
     /*background-color: #0fffff;*/
     margin-bottom: 0.7em;
     }
div.szb {
     font-size: 1.2em;
     font-weight: bold;
     text-align: center;
     padding-top: 0.5em;
     /*background-color: #ffff0f;*/
     margin-bottom: 0.01em;
     margin-top: 0.01em;
     }
div.szc {
     font-size: 0.8em;
     font-weight: bold;
     text-align: center;
     padding-top: 0.05em;
     padding-bottom: 0.05em;
     margin-bottom:0.01em;
     margin-top: 0.01em;
     /*background-color: #0fffff;*/
     }
div.szd {
     font-size: 0.6em;
     font-weight: bold;
     text-align: center;
     padding-top:0.4em;
     /*background-color: #ff00ff;*/
     margin-bottom: 0.01em;
     margin-top: 0.01em;
     }
div.sze {
     font-size: 0.85em;
     font-weight: bold;
     text-align: center;
     padding-top: 1em;
     /*background-color: #8888ff;*/
     margin-bottom: 0.01em;
     margin-top: 0.01em;
    }

div#ident {
     width: 21.9em;
     height: 3.5em;
     /*background-color:#0fffff;*/
     margin: auto;
     padding: 1.6em;
     }

div.domus1 {
     width: 11.3em;
     height: 3.8em;
     float: left;
     /*background-color: #ffff0f;*/
     font-size: 0.825em;
     }

div.domus2 {
     width: 11.3em;
     height: 3.8em;
     float: right;
     /*background-color: #ffff0f;*/
     font-size: 0.825em;
     }

div.sseries {
     width: 90%;
     margin: auto;
     }

div.chapter {
     page-break-before: always;
     }

h2.nobreak {
     page-break-before: avoid;
     }

/* Transcriber's notes */
.transnote {background-color: #E6E6FA;
    color: black;
     font-size:smaller;
     padding:0.5em;
     margin-bottom:5em;
     font-family:sans-serif, serif; }
    </style>
  </head>
<body>
<div>*** START OF THE PROJECT GUTENBERG EBOOK 61981 ***</div>

<p>Transcriber&rsquo;s Note</p>
<p class="transnote">References in the book to its illustrations are by &#8220;Plate&#8221; with Roman numerals.
The illustrations themselves are labelled &#8220;Plate&#8221; with Arabic numerals.
A plate&#8217;s number in Roman numerals is equal to a plate&#8217;s number in Arabic numerals.
In several instances the author has spelled words differently to the accepted way.
That spelling is retained in this transcription.
The illustration on the book&#8217;s cover is referred to in the text as Plate 16.</p>
<p><br /><br /></p>

<div><img class="img_style" id="Plate_16" src="images/cover.jpg" alt="Front Cover" /></div>

<p class="covercaption"> Plate 16<br />FRONT COVER<br /></p>

<p><span class="pagenum"><a name="Page_i" id="Page_i">[Pg i]</a></span></p>

<p class="center">
PEEPS AT NATURE<br /><br />

<span style="font-size:1em;">EDITED BY</span><br />
<span class="smcap">The Rev. Charles A. Hall</span><br />
</p>

<h1>
V.&nbsp;&nbsp;&nbsp;BRITISH BUTTERFLIES<br /><br /><br />
</h1>

<div class="chapter">
<p><span class="pagenum"><a name="Page_ii" id="Page_ii">[Pg ii]</a></span></p>
<h2 class="nobreak" id="IN_THE_SAME_SERIES">IN THE SAME SERIES</h2>
</div>

<div class="sseries">
<ol class="avis">
<li class="lbla">EACH CONTAINING 16 FULL-PAGE ILLUSTRATIONS</li>
<li class="lbla">(EIGHT OF WHICH ARE IN COLOUR)</li>
<li class="lbla">LARGE CROWN 8VO. PICTURE COVER</li>
<li class="lblb">BIRD LIFE OF THE SEASONS</li>
<li class="lblb">COMMON BRITISH BEETLES</li>
<li class="lblb">BRITISH MOTHS</li>
<li class="lblb">WILD FLOWERS AND THEIR WONDERFUL WAYS</li>
<li class="lblb">BRITISH LAND MAMMALS</li>
<li class="lblb">BRITISH FERNS, CLUB-MOSSES, &amp;c.</li>
<li class="lblb">NATURAL HISTORY OF THE GARDEN</li>
<li class="lblb">ROMANCE OF THE ROCKS</li>
<li class="lblb">THE NATURALIST AT THE SEA-SHORE</li>
<li class="lblb">POND LIFE</li>
<li class="lblb">REPTILES AND AMPHIBIANS</li>
</ol>
</div>

<p class="center"><br />PUBLISHED BY<br />A. AND C. BLACK, LTD., 4, 5 AND 6, SOHO SQUARE, LONDON, W. 1<br /><br />AGENTS</p>

<table class="agent" summary="Agents for this Book">
    <tr><td>AMERICA</td><td>THE MACMILLAN COMPANY</td></tr>
    <tr><td class="trx"></td><td class="trx"><span class="smcap">64 &amp; 66 Fifth Avenue</span>, NEW YORK</td></tr>
    <tr><td>AUSTRALASIA</td><td>OXFORD UNIVERSITY PRESS</td></tr>
    <tr><td class="trx"></td><td class="trx"><span class="smcap">205 Flinders Lane</span>, MELBOURNE</td></tr>
    <tr><td>CANADA</td><td>THE MACMILLAN COMPANY OF CANADA, LTD.</td></tr>
    <tr><td class="trx"></td><td class="trx"><span class="smcap">St. Martin&rsquo;s House, 70 Bond Street</span>, TORONTO</td></tr>
    <tr><td>INDIA</td><td>MACMILLAN &amp; COMPANY, LTD.</td></tr>
    <tr><td class="try"></td><td class="try"><span class="smcap">Macmillan Building</span>, BOMBAY</td></tr>
    <tr><td class="trx"></td><td class="trx"><span class="smcap">309 Bow Bazaar Street</span>, CALCUTTA</td></tr>
</table>
<p>&nbsp;</p>

<p><span class="pagenum"><a name="Plate_1" id="Plate_1">[Plate 1]</a></span></p>

<div><img class="img_style" id ="Plate01" src="images/im004a.jpg" alt="Plate 1" /></div>

<p class="net"><br /><br />
PLATE 1.<br />
1. <a href="#STPM">Swallow Tail</a><br />
2. <a href="#BVWAC">Black-veined White</a><br />
3. <a href="#LWPB">Large Garden White</a> (Female)<br />
4. <a href="#SWPR">Small Garden White</a> (Male)<br />
5. <a href="#GVWPN">Green-veined White</a> (Female)<br />
6. <a href="#BWPD">Bath White</a> (Male)<br />
7. <a href="#OBEC">Orange Tip</a><br />
8. <a href="#WWLS">Wood White</a> (Male)<br />
9. <a href="#PCYCH">Pale Clouded Yellow</a><br />
</p>

<p><span class="pagenum"><a name="Page_iii" id="Page_iii">[Pg iii]</a></span></p>
<hr class="chap" />

<div id="ttpg">
<img id="titlepg" src="images/tp1.jpg" alt="Cover Page" />
</div>

<div class="bakg">
    <div class="tzx">
        <div class="sza">BRITISH<br />BUTTERFLIES</div>
        <div class="szc">BY</div>
        <div class="szb">A. M. STEWART</div>
        <div class="szc"><br /><br />CONTAINING 16 ILLUSTRATIONS, FIGURING</div>
        <div class="szc">ALL THE SPECIES, <span class="smcap">Viz.</span>:</div>
        <div class="szd"><br />8 FULL-PAGE IN COLOUR&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;8 PAGES FROM PHOTOGRAPHS</div>
        <div class="szb"><br />A. &amp; C. BLACK, LTD.</div>
        <div class="sze"><br />4, 5 &amp; 6 SOHO SQUARE, LONDON, W. 1<br />1918</div>
    </div>
</div>


<p><span class="pagenum"><a name="Page_iv" id="Page_iv">[Pg iv]</a></span></p>
<hr class="chap" />
<p class="gon">First published May, 1912</p>

<div class="chapter">
<p><span class="pagenum"><a name="Page_v" id="Page_v">[Pg v]</a></span></p>
<hr class="chap" />
<h2 class="nobreak" id="INTRODUCTORY_EDITORIAL_NOTE">INTRODUCTORY EDITORIAL NOTE</h2>
</div>


<p>I take it that this little &#8220;Peep at Nature,&#8221; needs no apology; the
exquisite coloured plates, produced direct from natural butterflies
by the three-colour process, are a sufficient justification of its
appearance.</p>

<p>The author is a practical entomologist of many years&#8217; standing. He
writes from the fulness of a rich experience in the fields. He justly
advocates the &#8220;Paisley&#8221; method of setting insects. I know it to be
the more expeditious, and less calculated to damage specimens, than
the ordinary process. His notes on the preservation of larvæ will be
welcome in many quarters.</p>

<p>The publishers desire me to express their indebtedness to Messrs.
Watkins and Doncaster, 36, Strand, W.C., for kindly arranging and
lending the specimens from which the coloured plates have been produced.</p>

<p class="sig">
CHARLES A. HALL.<br />
</p>


<div class="chapter">
<p><span class="pagenum"><a name="Page_vi" id="Page_vi">[Pg vi]</a></span><br /></p>
<h2 class="nobreak" id="CONTENTS">CONTENTS<br /></h2>
</div>

<table class="kontent" summary="Table of Contents">
    <tr><td class="kat"><small>CHAPTER</small></td>   <td></td>                                                          <td class="kat"><small>PAGE</small></td></tr>
    <tr><td></td>                      <td class="kop">INTRODUCTORY EDITORIAL NOTE</td>                   <td class="kis"><a href="#Page_v">v</a></td></tr>
    <tr><td></td>                      <td class="krr">LIST OF ILLUSTRATIONS</td>                         <td class="kem"><a href="#Page_vii">vii</a></td></tr>
    <tr><td class="kqz">I</td>         <td class="kop">THE LIFE-HISTORY OF A BUTTERFLY</td>               <td class="kis"><a href="#Page_1">1</a></td></tr>
    <tr><td class="kqz">II</td>        <td class="kop">THE CAPTURE AND PRESERVATION OF BUTTERFLIES</td>   <td class="kis"><a href="#Page_13">13</a></td></tr>
    <tr><td class="kyd">III</td>       <td class="krr">THE BRITISH BUTTERFLIES DESCRIBED</td>             <td class="kem"><a href="#Page_29">29</a></td></tr>
    <tr><td></td>                      <td class="krr">INDEX</td>                                         <td class="kem"><a href="#Page_88">88</a></td></tr>
</table>

<div class="chapter">
<p><span class="pagenum"><a name="Page_vii" id="Page_vii">[Pg vii]</a></span></p>
<h2 class="nobreak" id="LIST_OF_ILLUSTRATIONS">LIST OF ILLUSTRATIONS</h2>
</div>

<table class="illus" summary="Table of Illustrations">
<tr><td class="illef">PLATE</td><td></td><td></td></tr>

<tr><td class="illef"><a href="#Plate_1">I.</a></td><td class="ilctr">SWALLOW-TAIL&mdash;BLACK-VEINED WHITE&mdash;LARGE
GARDEN WHITE&mdash;SMALL GARDEN WHITE&mdash;GREEN-VEINED WHITE&mdash;BATH WHITE&mdash;ORANGE-TIP&mdash;WOOD WHITE&mdash;PALE CLOUDED YELLOW<a id="Backx" href="#Astrix">*</a></td><td class="ilrhs"><i>Frontispiece</i></td></tr>

<tr><td></td><td colspan="2" class="ilrhs"><small>FACING PAGE</small></td></tr>

<tr><td class="illef"><a href="#Plate_2">II.</a></td><td class="ilctr">METHOD OF SETTING WITH BRISTLE AND BRACES</td><td class="ilrhs">9</td></tr>

<tr><td class="illef"><a href="#Plate_3">III.</a></td><td class="ilctr">&#8220;COP&#8221; OF 120&rsquo;S COTTON ON STAND, AND SETTING-NEEDLE FOR &#8220;PAISLEY&#8221; METHOD OF SETTING</td><td class="ilrhs">16</td></tr>

<tr><td class="illef"><a href ="#Plate_4">IV.</a></td><td class="ilctr">CLOUDED YELLOW&mdash;BRIMSTONE&mdash;SILVER-WASHED FRITILLARY, ETC.<a href="#Astrix">*</a></td><td class="ilrhs">25</td></tr>

<tr><td class="illef"><a href ="#Plate_5">V.</a></td><td class="ilctr">GLANVILLE FRITILLARY&mdash;HEATH FRITILLARY, ETC.<a href="#Astrix">*</a></td><td class="ilrhs">32</td></tr>

<tr><td class="illef"><a href ="#Plate_6">VI.</a></td><td class="ilctr">&#8220;PAISLEY&#8221; METHOD OF SETTING</td><td class="ilrhs">35</td></tr>

<tr><td class="illef"><a href ="#Plate_7">VII.</a></td><td class="ilctr">APPARATUS FOR PRESERVING LARVÆ</td><td class="ilrhs">38</td></tr>

<tr><td class="illef"><a href ="#Plate_8">VIII.</a></td><td class="ilctr">RED ADMIRAL&mdash;PAINTED LADY&mdash;MILK-WEED, ETC.<a href="#Astrix">*</a></td><td class="ilrhs">41</td></tr>

<tr><td class="illef"><a href ="#Plate_9">IX.</a></td><td class="ilctr">MARBLED WHITE&mdash;MOUNTAIN RINGLET&mdash;SCOTCH ARGUS, ETC.<a href="#Astrix">*</a></td><td class="ilrhs">48</td></tr>

<tr><td class="illef"><a href ="#Plate_10">X.</a></td><td class="ilctr">DARK GREEN FRITILLARY&mdash;HIGH BROWN FRITILLARY, ETC.</td><td class="ilrhs">51</td></tr>

<tr><td class="illef"><a href ="#Plate_11">XI.</a></td><td class="ilctr">LARVA OF LARGE GARDEN WHITE&mdash;PUPA OF LARGE GARDEN WHITE, ETC.</td><td class="ilrhs">54</td></tr>

<tr><td class="illef"><span class="pagenum"><a name="Page_viii" id="Page_viii">[Pg viii]</a></span><a href ="#Plate_12">XII.</a></td><td class="ilctr">SMALL HEATH&mdash;GREEN HAIRSTREAK&mdash;PURPLE HAIRSTREAK, ETC.<a href="#Astrix">*</a></td><td class="ilrhs">57</td></tr>

<tr><td class="illef"><a href ="#Plate_13">XIII.</a></td><td class="ilctr">ADONIS BLUE&mdash;CHALK-HILL BLUE&mdash;LITTLE BLUE, ETC.<a href="#Astrix">*</a></td><td class="ilrhs">64</td></tr>

<tr><td class="illef"><a href ="#Plate_14">XIV.</a></td><td class="ilctr">PUPA OF RED ADMIRAL&mdash;LARVA OF RED ADMIRAL, ETC.</td><td class="ilrhs">73</td></tr>

<tr><td class="illef"><a href ="#Plate_15">XV.</a></td><td class="ilctr"> BROWN ARGUS&mdash;AZURE BLUE&mdash;SILVER-STUDDED BLUE, ETC.</td><td class="ilrhs">80</td></tr>

<tr><td class="illef"><a href ="#Plate_16">XVI.</a></td><td class="ilctr">LIFE-HISTORY OF SMALL TORTOISESHELL BUTTERFLY: OVA&mdash;LARVÆ&mdash;PUPA&mdash;MALE INSECT (TO RIGHT)&mdash;FEMALE(LEFT)&mdash;FOOD-PLANT (NETTLE)<a href="#Astrix">*</a></td><td class="ilrhs"><i>On the cover</i></td></tr>
</table>

<p class="gin" id="Astrix"><a href="#Backx">*</a>These eight illustrations are in colour; the others are in black and white.</p>

<div class="chapter">
<p><span class="pagenum"><a name="Page_1" id="Page_1">[Pg 1]</a></span></p>
<hr class="chap" />
<p class="gan">BRITISH BUTTERFLIES</p>

<h2 class="nobreak" id="CHAPTER_I">CHAPTER I<br /><br />
<span class="zagz">THE LIFE-HISTORY OF A BUTTERFLY</span></h2>
</div>


<p>What is the difference between a butterfly and a moth, and how am I to
distinguish between them? is a question very often put to the student
of insect life&mdash;the entomologist.</p>

<p>Butterflies and moths both belong to the Natural Order, <i>Lepidoptera</i>,
or scale-winged insects. Butterflies may be distinguished as day
flyers, and the moths fly by night. The main physical difference
between them appears in the forms of the antennæ, or horns; in the
butterflies these organs are club-shaped at the extreme ends. But the
antennæ of the various species do not all follow a common pattern.
In some the knob is abrupt and much smaller, after the manner of a
drum-stick; in others, the thickening commences well down the shaft,
and is gradually increased until it very much resembles an Indian club.
The antennæ of the moths, on the other hand, show much diversity of
form, and in a great many species they are totally different in the
male and female. A very common and beautiful form<span class="pagenum"><a name="Page_2" id="Page_2">[Pg 2]</a></span> is the feathered,
or comblike, antenna; another is long and threadlike, and some show
a combination of these two forms; others, again, seem to be striving
after the butterfly type, and approach the club shape. It should
be noted that not a few moths fly during the day, but it is rare,
exceedingly rare, to find a butterfly abroad after sundown. With a
little practice in observation, the novice soon learns to distinguish
between the two.</p>

<p>The stages of development of butterflies and moths are practically the
same: first the egg; next the caterpillar, or larva; then the pupa, or
chrysalis; and, lastly, the imago, or perfect insect.</p>

<p>The eggs of the Lepidoptera are surpassingly beautiful. Are they like
birds&#8217; eggs? Not at all! In the first place they are too minute for
comparison with the larger product of the birds; both in colour and
form they more nearly resemble small shells or pearls, as a great many
of them are beautifully opalescent, especially when empty. A good
hand-lens will reveal a great deal of their beauty, but the low power
of an ordinary compound microscope will be necessary to enable you
to see all the nice detail of pattern sculptured on their surfaces.
Each species of butterfly, or moth, produces eggs of particular shape
and ornamentation, so it is quite possible, in most cases, to say to
which species an egg belongs. How long the egg may remain unhatched
depends a good deal upon which butterfly&#8217;s egg it is, the season of
the year, and the temperature. Not many butterflies pass the winter in
this country in the egg state, that season being usually passed either
as<span class="pagenum"><a name="Page_3" id="Page_3">[Pg 3]</a></span> a half-fed hibernating caterpillar, or as a chrysalis; and in a
few cases it is only the female which passes the winter in some secure
retreat, to emerge again in the spring, and then deposit her eggs on
the fresh-growing verdure. But, generally speaking, eggs laid during
the summer hatch out in from ten to sixteen days. And it is well to
be on the lookout for the young larvæ even earlier, if you intend to
rear some species in confinement. If you have secured eggs to rear
from, watch them from day to day to see if they darken, as they often
assume a dark leaden hue immediately before hatching. This is a useful
warning, and serves as a hint to have plenty of fresh food ready for
the young family about to arrive.</p>

<p>The caterpillars are ravenous eaters; you will not notice this fact
particularly at first, because they are then such tiny creatures,
but in proportion to their size their eating capacity is enormous.
They grow at an exceedingly rapid rate and to such an extent that
they literally burst their skins! In a very short time&mdash;three or
four days&mdash;the old skin bursts and out comes Mr. Caterpillar with a
brand-new one. And this is the manner of their growth; several times
(five or six) this skin-shedding process is repeated. And then the
creature prepares for the last and final change before turning into a
butterfly.</p>

<p>There are one or two more points I would ask you to notice about our
caterpillar ere we pass on to consider his next stage. The legs are
generally sixteen in number. There are six true legs, one pair on each of<span class="pagenum"><a name="Page_4" id="Page_4">[Pg 4]</a></span>
the first three body-segments behind the head; four more pairs near
the anal end, and the last segment carries another pair, known as the
&#8220;anal claspers.&#8221; The first six may be said to represent the same legs
in the perfect insect. Note also the breathing holes, or spiracles,
placed in a row along either side of the larva. The head <i>seems</i> to
carry very large eyes, but it does not really do so; the real eyes
are very minute, and it requires a good strong pocket-lens to make
them out. There are twelve of them all told, and they are not all of
equal size. There are six on either side of the mouth, and the three
larger ones on each side are not very difficult to find. The mouth is
furnished with strong mandibles for biting and chewing food, and also
contains the spinneret for the production of the silk used on various
occasions. All these details should be carefully noted&mdash;the head, the
eyes, the breathing spiracles, the mandibles, the fore-legs and claws,
and the hind- or pro-legs. Mark the totally different types of feet
which terminate these two sets of legs. You will need to use your lens
for this observation, and to enable you to see the beautiful structure
of the pro-leg foot, it will be necessary for you to examine it through
a compound microscope. It is well for the young entomologist to know
these more prominent features of a caterpillar&#8217;s economy, if for no
other reason than to be able to answer the questions that are sure to
be put to him on these and many other points.</p>

<p>But only a small percentage of the larvæ that are born into the world
live to become butterflies; some<span class="pagenum"><a name="Page_5" id="Page_5">[Pg 5]</a></span> seasons a larger number than usual
may escape, and then we have a butterfly year, but the relentless
ichneumon flies soon restore the balance. They, too, have their young
to provide for, and a strange mode of existence they have. Once you get
to know these ichneumons at sight, you will be astonished at the number
of them. All the summer through you will find them hawking about the
trees, bushes, nettles, and heather, and, indeed, wherever larvæ are to
be found, there, too, you will find these flies. There are many species
of them. Once a female has discovered a larva its doom is sealed. The
ordinary larva has very few defensive weapons; he may wriggle and
squirm and <i>look</i> terrifying, but all the same the ichneumon sets
about her task of placing one or two, and in many cases a dozen or
two, of her eggs either upon or under his skin. These eggs soon hatch,
and the little white maggots pass their existence inside the doomed
creature, eating all the tissues away, at first avoiding the vital
organs, which they leave until the last. When they have reached their
allotted span, and are about to change to the pupa state themselves,
they soon finish off their victim, and all that remains of what might
have been a brilliant butterfly is a little shrivelled bit of skin and
a host of little&mdash;or it may be a few big&mdash;black, brown, or grey flies.
Sentiment apart, these parasitic flies are extremely useful. When you
consider the large number of eggs laid by a single female butterfly or
moth&mdash;from two to six hundred is a fair average&mdash;you will realize that
if this enormous progeny were to survive and go <span class="pagenum"><a name="Page_6" id="Page_6">[Pg 6]</a></span>on increasing without
any check, the vegetation of the world would very soon prove quite
inadequate to support the vast army of caterpillars, to say nothing of
you and me.</p>

<p>You may at some time find a dozen or two larvæ of some particular
species of butterfly or moth, and at the time of collecting them they
may seem healthy and all right, but weeks afterwards you may discover
that only a very small number will change to chrysalids, the ichneumons
having had the rest. If you can catch and induce a female butterfly to
give you a batch of eggs in captivity, then you may be sure, providing
your treatment of them has been right, that all your brood will arrive
at the perfect state.</p>

<p>The next stage we have to consider we will pass over briefly. The
change from the larva to the chrysalis is always a very fascinating
performance to watch, not that one could sit and see the whole
performance right through from start to finish, the time occupied is
too long for that. Generally the process lasts a day or two, but by
watching at frequent intervals, where several individuals are engaged
at the same operation and each at its own stage of the work, it is
not difficult to follow the whole process of the transformation. Try
it with the larva of the Large Garden White butterfly, perhaps the
commonest, and therefore the easiest to procure; you will gather plenty
of &#8220;stung&#8221; or &#8220;ichneumoned&#8221; examples, but still a sufficient number
should be clean to serve your purpose.</p>

<p>We will not enter into all the details of the &#8220;spinning-up&#8221;<span class="pagenum"><a name="Page_7" id="Page_7">[Pg 7]</a></span> process
and describe how an attachment is secured at the anal extremity, and
how our little friend &#8220;loops the loop.&#8221; Some species, such as the
Tortoiseshell, get over this part of their difficulty by omitting the
loop altogether, and therefore hang head downward, suspended only by
the hooks and silk at the tail. Concealment during this stage is the
creature&#8217;s only hope and chance of survival; other defence they have
none. Their colour may occasionally protect them by virtue of making
them harmonize beautifully with their surroundings. The ichneumons
seldom molest them during the chrysalis stage; but birds and small
animals have sharp eyes when foraging for food, so it is usually far
more difficult to discover these chrysalids than to find the feeding
caterpillars.</p>

<p>The time passed as a chrysalis is very variable; ten days to a
fortnight in summer is sufficient for many species; others pass
over the whole winter, like the spring brood of our common white
butterflies, so that these can be sought for during the winter months
under the overhanging portion of palings, walls, outhouses, and in
similar situations. The cold does not seem to injure them; it may, and
generally does, retard their emergence, and possibly has some effect on
the colours of the wings, but it cannot change their ultimate pattern.
Experiments have been tried with various chrysalids, part of a brood
being hatched out after being submitted to a very low temperature,
and another part of the same brood after being treated with a high
temperature. Speaking generally, the coloration of those subjected<span class="pagenum"><a name="Page_8" id="Page_8">[Pg 8]</a></span> to
the cold treatment was brightened and intensified, and Nature does the
same thing in her own way. The early summer butterflies, which pass
through the winter as chrysalids, are almost invariably larger and
brighter than the midsummer or autumn brood of the same species.</p>

<p>But suppose our caterpillar to have successfully run the
gauntlet&mdash;ichneumon, bird, beast, and beetle&mdash;and to have become
a healthy pupa, and that the time has arrived when he must make
the last and greatest transformation in his short and interesting
career. Several days prior to his exit as a butterfly taking place, a
noticeable change occurs in the apparent colour of the chrysalis.</p>

<p>As a matter of fact it is not the chrysalis shell which is changing
colour, but the developing insect, the colours of which are beginning
to show through it, at first rather faintly; but latterly the pattern
of the wings can be distinctly seen, and the whole body surface gets
darker. When this stage is reached, the advent of our butterfly is not
long delayed. The hour chosen is usually early in the morning, so that
by the time the sun is high and the fresh perfumed flowers are nodding
in the breeze, our little butterfly has expanded and dried his wings,
and is now quite prepared for the beautiful and consummating act in the
wonderful drama of his existence.</p>

<p><span class="pagenum"><a name="Plate_2" id="Plate_2">[Plate 2]</a></span></p>

<div><img class="img_style" id ="Plate02" src="images/im020b.jpg" alt="Plate 2" /></div>
<p class="net">PLATE 2.<br /><br /><a href="#Page_18">Method of Setting with Bristle and Braces</a></p>

<p>While he is drying his wings and preparing for a life amongst sunshine
and flowers, we might spend a few minutes with him ere he leaves us,
and the more so, as<span class="pagenum"><a name="Page_9" id="Page_9">[Pg 9]</a></span> now he looks his very best, arrayed in all his
new-found finery. Such wings! no wonder he looks proud as he slowly
opens and closes them, repeating this action over and over again as if
to prove their smooth working before he launches forth upon the air.</p>

<p>And the wonderful pattern of these wings is all built up of tiny scales
placed as regularly as the slates on a roof. Your pocket-lens will
show you much of this, but to examine the individual scales, their
various shapes and structure, you will require a compound microscope.
These scales are the &#8220;dust&#8221; you will find on your finger and thumb if
ever you pick up a butterfly in such an unscientific manner. You will
notice, too, that the under sides of the wings bear quite a different
design from the upper sides; this is nearly always the case, and in
many foreign butterflies this difference between the two sides is so
very remarkable as to be quite startling in its effect. Well I remember
an old sergeant-major, who had spent many years in India, and had done
a lot of &#8220;butterfly dodging&#8221; in his day, telling me of this wonderful
effect. He said one would come upon an open piece of meadow-land
blazing with flowers and butterflies, but, on being disturbed, the
whole crowd of insects would rise in the air, and then, he would say,
they looked like a different set altogether. When you capture a few
specimens of any species, examine closely the under sides, and in any
case, if you wish to preserve them, always set one of each sex with the
under side uppermost.</p>

<p>Next to the wings the head claims our attention; it<span class="pagenum"><a name="Page_10" id="Page_10">[Pg 10]</a></span> supports three
very essential organs&mdash;the eyes, the horns, or antennæ, and the tongue,
or sucker.</p>

<p>The antennæ are undoubtedly the organs of smell, which is perhaps the
most highly developed sense in the Insect World. That the eyes are
a marvel of beauty, and that the tongue is a finely finished little
instrument for its work no one can question; but the sense of smell
has a much longer range than even the eye, with all its facets. And
you will generally find, in relation to the faculty which any animal
or insect has to exert most so as to procure its food and propagate
its kind, the organ of that faculty reaches the highest point of
development and service.</p>

<p>The eyes of the condor and the gannet must be marvellous in range and
penetrating power. I have watched scores of the latter birds sailing
and hovering 150 feet and more above a troubled sea. Suddenly there
would be a slight pause, and then a rocket-like dive right down into
the waves below. To see a fish on the surface from such a height would
be a great feat, but to see and catch one a dozen feet deep in a broken
sea as a gannet can do, is wonderful indeed.</p>

<p>With butterfly and moth the sense of smell is of the greatest
importance. Their vision is good, but short in range; so to find the
flowers wherein lies their food the sight is good, but the power to
detect them by scent must be far better. &#8220;Over the hedge is a garden
fair,&#8221; and if a butterfly cannot see through the hedge, he can at least
smell through it. He could fly over it?<span class="pagenum"><a name="Page_11" id="Page_11">[Pg 11]</a></span> Yes, but if his sense of smell
says there is nothing there for him, you see he is saved the time and
trouble; and his life is short.</p>

<p>&#8220;Assembling&#8221; and &#8220;treacling&#8221; for moths are two methods employed by
insect-hunters to secure an abundance of specimens otherwise difficult
to obtain, and in both cases it is this same wonderful sense of smell
which is the insect&#8217;s undoing.</p>

<p>For &#8220;assembling,&#8221; a captive virgin female is taken at dusk to the
locality where the species is likely to occur, and if males are
about they very soon make their appearance. The female being in a
gauze-covered box, they will swarm over it in their efforts to find
an entrance, and when thus engaged can be easily captured. As for the
subtle odour emitted by the lady, you or I could never detect it,
yet these moths come swarming from far and near. I once witnessed a
curious phase of this instinct on a hillside in Arran. My attention was
arrested by a number of males of <i>Bombyx Quercus</i> (variety, <i>Callunæ</i>),
keeping near and flying over a certain spot, and, thinking a female
might be about, I went over to investigate. It was a female, but a dead
and crushed one; how it had met its end I could only conjecture; but
evidently, although the insect was mutilated, the scent still lingered,
and brought the males circling round. This large moth flies boldly
during the day, and in Arran the larvæ feed on the heather.</p>

<p>The eyes of a butterfly are large and of the usual insect
pattern&mdash;<i>i.e.</i>, compound, being made up of a number of tiny lenses,
hexagonal in shape, like the<span class="pagenum"><a name="Page_12" id="Page_12">[Pg 12]</a></span> honeycomb of the domestic bee. Roughly,
about three thousand of these lenses go to make up the two eyes. As
pointed out, their range of vision is comparatively short, but within
their range vision must be very keen&mdash;before, behind, above, and below.
I once saw a sparrow try to capture a Large Garden White in a street
in the town; he darted at it again and again, much in the manner of
the ordinary spotted flycatcher, but the butterfly seemed to have no
difficulty in evading him, and eventually he gave up the game.</p>

<p>A small portion of the eye makes a good slide for the microscope,
but the individual lenses are hardly visible through an ordinary
hand-glass. On the top of the head are one or two small simple eyes,
which do not look as if they could be of much service, but one never
knows, and the butterflies will not tell, although they have long
tongues.</p>

<p>The tongue is a very pretty structure; when not in use it lies coiled
up in spiral fashion like a watch-spring, and is then well protected by
two little side-covers called the &#8220;palpi.&#8221; Needless to say, the tongue
cannot sting. No moth or butterfly has a stinging organ; the tongue
is too delicate for any &#8220;cut and thrust&#8221; work. It is not difficult to
mount a butterfly&#8217;s tongue for the microscope, and its examination
well repays the trouble. Particularly noticeable under the microscope
are the little bell-shaped suckers placed in long rows near the tip.
If you wish to make and examine a cross section, take the head of
a freshly killed specimen and extend the tongue in a little melted
paraffin wax;<span class="pagenum"><a name="Page_13" id="Page_13">[Pg 13]</a></span> when this is thoroughly set, cut it across in very thin
slices with a sharp razor; place one on a glass slide, then on to the
microscope stage, and there you are! You will soon discover that the
simple-looking tube is a very complicated affair, and quite a little
study in itself.</p>

<p>We will not linger over what remains of the anatomy of our butterfly.
The legs are six in number, but occasionally the first pair are useless
for walking, and only the middle and last pairs are fully developed.
Always remember the maximum number of legs for all insects is six.
Caterpillars may have more or less; they occur as footless grubs with
no legs at all, while some have as many as sixteen legs.</p>

<p>The last, or abdominal, section of a butterfly&#8217;s body carries the
sexual organs; it is usually more slender in the males than in the
females.</p>


<div class="chapter">
<hr class="chap" />
<h2 class="nobreak" id="CHAPTER_II">CHAPTER II<br /><br />
<span class="zagz">THE CAPTURE AND PRESERVATION OF BUTTERFLIES</span></h2>
</div>


<p>In the rearing of butterflies from eggs and in watching them all
through their larval stages, we learn a great deal concerning their
life and habits, and finally secure perfect specimens for the cabinet.
But the glories of the chase and the charm of the country ramble weigh
more in the balance with the naturalist, and the story of a captured
specimen is often far more interesting than the record of a bred one.</p>

<p><span class="pagenum"><a name="Page_14" id="Page_14">[Pg 14]</a></span>Of butterfly nets used in the chase there are many and varied patterns
in the market. I made my own and a better balanced one it would be hard
to find. Having seen and handled a few in my time, my experience has
been that they are mostly too heavy, have too many loose parts, and
their weight is badly distributed. Indeed, I saw one lately which felt
more like a hammer in one&#8217;s hand. I think if you try to get one made
after the pattern here described and figured on p. 15, you will not be
disappointed with it.</p>

<p>Now, it is one of the avowed purposes of this little book to make the
study and collecting of butterflies cost <i>all</i> the time a boy can
spare, and little, or, at least, not much in money. The requirements
for a ring folding net are 2 yards of steel wire, rather less than 1/8
inch in thickness (cost about threepence); three copper rivets and
washers, 3/16 inch by 3/8 inch long (cost one penny); one 1/4-inch iron
screw-head bolt and nut (one penny). Cut the wire into two pieces,
each 20 inches long, and two pieces 16 inches long. If you can get a
tinsmith friend to turn the eyes for you, so much the better; you will
thus avoid the most difficult part of the operation, but you would lose
some valuable lessons and the satisfaction of having made the whole
thing yourself.</p>

<p>The accompanying cut will show you how the eyes are turned and riveted,
and how the nut is fixed in the tube which the tinsmith will make
for you, and he will also solder the nut in the narrow end for a few
coppers. Or you can get him to make the whole<span class="pagenum"><a name="Page_15" id="Page_15">[Pg 15]</a></span> concern, as I have done
for a friend of mine. I simply gave the tinsmith mine for a pattern,
and in a few days he handed me over an exact duplicate, and only
charged one shilling and sixpence for it.</p>

<div><img class="img_style" id ="folding_net" src="images/im027b.jpg" alt="A Folding Net" /></div>

<p class="center"><br /><br /><span class="smcap">Details of Folding-Net.</span></p>

<p class="net">1, Ring open, about 16 inches diameter; 2, tin tube with nut soldered
in at narrow end; 3, net complete, showing wooden handle fitting
into tin tube. Detail A shows how eyes are turned; B, larger eye for
passing over screw; C, screw soldered in position.</p>


<p>The net itself is easily made. You will need 1-1/2<span class="pagenum"><a name="Page_16" id="Page_16">[Pg 16]</a></span> yards of the best
and strongest muslin and a piece of stout twilled cotton, with which to
make the hollow binding round the wire for strength. This binding must
be at least 2 inches deep, so as to slip off and on the ring easily
when you wish to repair the ring or wash the net. Get green muslin if
you care for it; I tried green, too, but speedily gave it up, as I
found the white net more effective for seeing and handling moths in
after dark.</p>

<p>Do not shape the net down to too fine a point; rather make it more of a
cup-shape and nearly the depth of your arm. And, lastly, while we are
on the subject of the net, always carry a few strips of gum paper with
you on an excursion; they are very handy and effective for repairing a
damage, say, after contact with a bramble-bush.</p>

<p>Most butterflies are very impatient in the net, and strongly resent
their imprisonment, so either double your net over the instant a
capture is made, or catch the net by the neck, so to speak, with your
left hand, leaving your right free for the pinching process. Pinching
must be very carefully done, or your specimen may be spoiled. It can
be done only when the wings are closed; you give the insect a sharp
nip between your finger and thumb nails, right under the junction
of the wings and the body&mdash;<i>i.e.</i>, on the under side of the thorax,
always taking care not to crush or mangle the specimen. Do not attempt
to actually kill it; just give a sufficient pinch to stun it; then
you may open the net, remove your specimen, and pin it in your<span class="pagenum"><a name="Page_17" id="Page_17">[Pg 17]</a></span>
collecting box, which should be as nearly air-tight as you can make it,
and lined with sheet cork. Place some freshly pounded laurel-leaves
secured in a piece of muslin at one end of your box. The fumes given
off by the bruised leaves soon kill the insects. Don&rsquo;t use ammonia for
killing butterflies; it alters their colours, and, in fact, ruins some
altogether. Cyanide of potassium or laurel-leaves are the best killing
agents, and the latter are by far the safest for boys to handle, as
cyanide is very poisonous.</p>

<p><span class="pagenum"><a name="Plate_3" id="Plate_3">[Plate 3]</a></span></p>

<div><img class="img_style" id ="Plate03" src="images/im029b.jpg" alt="Cotton on Stand" /></div>

<p class="net"><br /><br />PLATE 3.</p>

<p class="net">&#8220;Cop&#8221; of &#8220;120&#8217;s&#8221; Cotton on Stand, and Setting-Needle for <a href="#PAI">&#8220;Paisley&#8221;
Method</a> of Setting</p>

<p>Specially-made entomological pins can be purchased from all dealers
in naturalists&#8217; requisites. Black enamelled pins are the vogue just
now, and they last longer than the silvered or gilt ones, and resist
&#8220;grease&#8221; better. Many insects, you should know, have a small, and
some a large, amount of oil in their bodies, which gradually makes
its presence seen, first in the abdomen, and later it spreads (if not
checked) to the wings. The oil, coming in contact with the white or
yellow pin, soon corrodes it through; the black enamel resists its
action longest. Try to check this &#8220;greasing&#8221; of your specimens on
its first appearance on the body, and if you notice it before it has
spread to the wings all may be well. Break the abdomen off at once, and
drop it into benzine, where you can let it remain a day or two. Then
transfer it to a box of fine dry plaster of Paris for another day or
so, and you will be surprised how beautiful and clean it will come out.
Another hint: Push a little pin into each body when broken off, and
attach a <i>white</i> thread to the pin; now you can do<span class="pagenum"><a name="Page_18" id="Page_18">[Pg 18]</a></span> what you like with
the body without touching it with your fingers; lastly, replace each
body, sticking it in position with a dab of entomological gum, to be
had from Messrs. Watkins and Doncaster, 36, Strand, W.C.</p>

<p>Supposing you have arrived home with a few butterflies, and wish to set
them. This is best done as soon as possible after they are killed. They
may remain unset a few days if kept damp and yet properly aired; you
must prevent them from hardening on the one hand, and getting mouldy on
the other, through too long and close keeping; so have a watchful eye
on them until set.</p>

<p>Setting-boards can be either bought or made. This is a question for
each worker to determine for himself. Some collectors may have special
facilities for making them, while others may have a profusion of pocket
money wherewith to buy them. When I was a boy I made my own. It was a
work of necessity. As a lad I had always so many specimens to set in
summer-time that it would have been sheer ruination to have bought all
the boards required.</p>

<p>On <a href="#Plate_2">Plate II.</a> you have an illustration of a setting-board, and the
photograph is in itself an indication of how butterflies are to
be set before being placed in the permanent collection. Note the
setting-bristle mounted in a cube of cork. This is used to hold the
wing in position while the card braces are being placed. The collector
can easily mount a bristle for himself. A cat, badger, or other whisker
will serve; do not try to push<span class="pagenum"><a name="Page_19" id="Page_19">[Pg 19]</a></span> it through the cube of cork, but glue
it between two pieces; by doing so you will save your bristle from
being spoiled and make a firmer job.</p>

<p>Keep your old <i>thin</i> postcards, from which to cut braces, and always
have a boxful of various sizes handy, and in the same box, in a
separate compartment, have an abundance of small, thin pins. Good
setting, like other operations, is largely a matter of practice. Be
careful not to injure the wings in any way, and place your braces on
them so that they will not leave marks. I find a common fault with
beginners is that they do not lower the specimen far enough down into
the groove of the setting-board, with the result that the wings are
bent and deformed by the braces pressing them down. See that the wings
of your specimens lie flat and naturally spread out over the surface of
the board on either side of the groove.</p>

<p>A setting-needle is sometimes an exceedingly useful tool. A very
neat one can be made in a few minutes with a goose quill, a little
sealing-wax, and the finest sewing-needle you can secure. Melt the wax
and fill one end of the quill for half an inch or so, heat the eye end
of the needle until nearly red-hot, and push it into the wax. This tool
is very useful for adjusting a wing as occasion demands.</p>

<p>Let your insects remain as long as possible on the boards; they should
be left on for a fortnight in warm, dry weather, but longer in the
spring and autumn. The wings of imperfectly dried specimens are liable
to spring up, or droop.</p>

<p id="PAI"><span class="pagenum"><a name="Page_20" id="Page_20">[Pg 20]</a></span>There is another method of setting Lepidoptera which only requires
to be more widely known to quickly supersede the use of braces and
bristle. It is sometimes called the &#8220;Northern&#8221; method, but I prefer
to call it the &#8220;Paisley,&#8221; because it was first used in that town. Its
advantages are: Greater speed, less apparatus, less expense, and less
liability to damage the specimens. Instead of the usual setting-board,
a block is used&mdash;that is to say, your setting-boards are cut up into
short pieces, in length a little less than the width of the board.
Thus, a board 2-1/2 inches wide should be cut into pieces 1-3/4 inches
long. As no corked surface is needed these blocks can be made or bought
very cheaply; the usual cost, from a joiner, is about two shillings
per hundred. The only other requisite is a cop of very fine cotton
&#8220;120<sup>8</sup>&#8221; or even finer if you can get it. This you will be able to
obtain from a cotton-spinner or his agent; by-and-by, as this method
of setting becomes more widely known the dealers will probably stock a
few of these fine cotton-yarn cops.<a id="fnret" href="#fnote"><sup>*</sup></a> <a href="#Plate_3">Plate III.</a> will show you how to
construct a stand for the cop. The rest is easy. Pin your insect in the
same way as you would do for braces; place it on the block with wings
well down on its surface, holding the block in your left hand. Give
your cotton a turn round the extreme edge of the block, then bring it
directly above your insect. Now blow the<span class="pagenum"><a name="Page_21" id="Page_21">[Pg 21]</a></span> wing on the left side as far
forward as you wish it to go, and, while it is held extended by your
blowing, bring the cotton down gently across it and there you have it,
secured in position. Give two or three extra turns to hold it safe and
repeat the operation for the other wing. If the wings should be stiff
and refuse to go far enough forward, secure them as far forward as they
will blow, with one turn of the cotton only, then gently assist them
farther with a setting-needle. When in a satisfactory position, give
the few extra turns of the cotton. I can set from sixty to one hundred
and twenty insects in an hour by this method.</p>

<p class="net" id="fnote">&nbsp;&nbsp;<a href="#fnret"><sup>*</sup></a>Readers desirous of adopting this most excellent method of setting,
and yet experiencing difficulty in getting suitable cotton-yarn,
should communicate with the author, Mr. A. M. Stewart, 38, Ferguslie,
Paisley.&mdash;<span class="smcap">Editor.</span></p>

<p>In removing an insect from a block, draw a sharp knife across the back
of the block and lift off <i>all</i> the cotton at once. If the body of the
specimen being set needs support, as sometimes happens, give the cotton
two or three cross turns, and with your setting-needle raise the body
on to this as shown on <a href="#Plate_6">Plate VI.</a> One hint more: See that your lines
diverge from near the body at the bottom to near the tip of the wings
at the top; the reason for this is that if you have to slip the wing
forward under a turn of the thread it will not be damaged if the thread
is arranged as indicated, whereas if your thread be laid on, say, from
the outer bottom corner in towards the head, it would then scrape the
wing, and be sure to remove some of the scales, thus damaging the
specimen. The correct method is shown on <a href="#Plate_6">Plate VI.</a> With ordinary care
and usage a good cop should last a year or two.</p>

<p>After your insects are set, by whatever method, they<span class="pagenum"><a name="Page_22" id="Page_22">[Pg 22]</a></span> need to be put
aside in a dry, airy place to harden, and be secured against the
ravages of mice and spiders. For their better protection, it is usual
to place them in a &#8220;drying case,&#8221; which need not be an elaborate
affair. My drying case was constructed out of an empty box obtained
from the grocer; judging from the legend on the outside it had once
contained tins of preserved apples. This is set up on end with the
bottom removed and made into cross shelves. Light muslin cloth is
tacked on in place of the bottom, so as to admit air but exclude dust.
On the front, where the lid was originally nailed, is a hinged frame,
covered with the same material, acting as a door. This drying house is
not exactly pretty, but it has served its purpose admirably for many
years.</p>

<p>A representative of the larva of each species is now considered
essential to a complete collection of butterflies, and it is rendered
even more perfect if egg-shells and chrysalis cases can also be
included.</p>

<p>We now have a fairly easy and reliable process for preserving larvæ, a
process which any aspiring young collector can carry through without
much trouble or expense. It is really very simple and costs little.
True, one can purchase apparatus specially made for the work for ten,
or even five, shillings, but equally good results can be obtained with
the expenditure of a few pence and a little ingenuity. I strongly
advise young folk to make their own apparatus; by so doing they develop
resourcefulness, and a handy youngster is not likely to make a failure
of his life.<span class="pagenum"><a name="Page_23" id="Page_23">[Pg 23]</a></span></p>

<p>In the first place you will need a hot-air chamber. Any empty
toffee-tin will serve this purpose; one somewhere about 6 inches long
by 4 inches in diameter will be a handy size. Get a piece of copper
or soft iron wire, such as milliners use; give the wire two or three
turns round the tin, twisting it as tightly as you can: then give the
two free ends a turn or two round a gas-bracket near the burner, so as
to bring your tin, with the open end next you, just over the burner.
Or you may mount the tin over a spirit-lamp, in which event you will
not be troubled with soot gathering on the outside of your oven. You
now have an oven which you can make as hot as you want it by regulating
your flame; you will soon discover the right temperature in which to
dry a skin quickly without burning it. The skins of small, thin-skinned
caterpillars dry very quickly, whilst those of large moths, such as the
Oak Eggar, dry more slowly even with more heat.</p>

<p>Your next requirement is a glass blowpipe: this you can purchase at
the chemist&rsquo;s for a copper. Ask for a glass tube about a foot long and
a quarter of an inch in diameter. Now, this tubing is made of a very
soft and pliable kind of glass, and by heating it over a flame you
should have no difficulty in drawing out one end of the tube into a
fine point, not too long and not too abrupt; the illustration (<a href="#Plate_7">Plate
VII.</a>) will show you the right length of the point. Hold the end over
the gas-jet, keep turning it round, and in a minute it will become red
and soft; remove the end of the tube from the flame, grasp it with a
pair of forceps, and gently<span class="pagenum"><a name="Page_24" id="Page_24">[Pg 24]</a></span> and steadily pull the heated portion until
it is drawn to a point of the required length. Nip off the part you
caught with the forceps, and your tube is ready. Or another way is to
heat the tube in the middle, and pull the two ends apart; this will
give you two blowpipes, and you can make a fine point to one for small
caterpillars and a wider aperture to the other for large ones. I used
to know a friendly chemist who would &#8220;point&#8221; as many tubes as I wanted
at his Bunsen burner in a few minutes. To complete your blowpipe, you
will need about 2 inches of a watch-spring&mdash;any watch-repairer will
give you a broken spring. The photograph on <a href="#Plate_7">Plate VII.</a> shows how the
piece of spring is placed and used; it is bent to the required shape
while heated, and bound in position with fine copper wire. The wire I
use is the same as that required for mounting dried larva skins; it can
be obtained at any shop where electrical appliances are sold; it is an
extremely fine wire covered with green silk thread.</p>

<p>Your larva-preserving outfit is completed with a sheet of
blotting-paper and an ordinary lead pencil. I will now describe the
process.</p>

<p><span class="pagenum"><a name="Plate_4" id="Plate_4">[Plate 4]</a></span></p>

<div><img class="img_style" id ="Plate04" src="images/im040a.jpg" alt="Plate 4" /></div>

<p class="net">
<br /><br />PLATE 4.<br />
1. <a href="#CYCE">Clouded Yellow</a> (Male)<br />
2. <a href="#BBGR">Brimstone</a> (Male)<br />
3. <a href="#SWAP">Silver-washed Fritillary</a> (Male)<br />
4. <a href="#DGAG">Dark-green Fritillary</a> (Male)<br />
5. <a href="#HBAA">High Brown Fritillary</a><br />
6. <a href="#QSAL">Queen of Spain Fritillary</a><br />
7. <a href="#SPAS">Small Pearl-bordered Fritillary</a><br />
8. <a href="#PFAE">Pearl-bordered Fritillary</a><br />
9. <a href="#GFMA">Greasy Fritillary</a><br />
</p>


<p>There could be no better species to begin with than the caterpillar
of the Large Garden White butterfly; get one as nearly full-grown as
possible, lay it out on the blotting-pad before you, place the lead
pencil across it gently, but firmly, just behind the head, and roll it
towards the tail. This kills the larva instantly, and empties out its
internal organs by the anal orifice. Roll your pencil over it again
to make sure the skin is<span class="pagenum"><a name="Page_25" id="Page_25">[Pg 25]</a></span> thoroughly clean inside; then insert your
blowpipe into the anal orifice, letting the spring down on the last
segment so as to hold the skin on; apply your mouth to the other end
of the blowpipe, blow the skin out gently, and insert in the hot-air
oven. Keep blowing gently for a few seconds; watch progress; touch the
skin with your finger to see if it is getting hard and dry. Don&rsquo;t blow
too hard and make it look like a bursting sausage; try to keep it as
natural in appearance as possible. In a few minutes it will be quite
hard and dry; when dry, raise the spring, and a slight touch with the
thumb-nail will liberate it from the blowpipe. The skin is now ready
for mounting on silk-covered wire or a thin dry twig with a little
entomological gum or seccotine. Our specimen is now ready to take its
place in the collection.</p>

<p>We now have to face the problem of storing the collection. It is
probably beyond the means of a young collector to purchase a cabinet
with drawers, costing ten shillings per drawer, and he will be well
advised to keep his specimens in store-boxes which he may be able
to make for himself. I made some very serviceable ones with scented
soap-boxes got from our grocer. Any size will do, but it is best to
have your boxes all of one size if possible, say 10 inches by 14 inches
by 4 inches. Get a few light deal boxes about these dimensions, nail
on the lids, paper them all over the outside with good stout brown
packing-paper having a glossy surface; paste it on with thin glue; set
aside a day or two to dry. When dry, take a sharp saw and<span class="pagenum"><a name="Page_26" id="Page_26">[Pg 26]</a></span> cut the
boxes round the sides and ends, so that each box is divided into two
equal traylike halves. Glue a stout cardboard shell round the inside
of one half, and attach the other half by two small brass hinges. The
cardboard shell rises above the sides of the tray, and when the other
half of the box is folded over it &#8220;stays put,&#8221; as the Yankee says;
and, in addition, you have a fairly air-tight construction. These
store-boxes fold after the manner of a book-form chess or draught
board. Each half requires to be lined on the inside with sheet cork,
which you can get from dealers in entomologists&#8217; sundries, and finally
covered with thin white paper. Such a store-box costs less than one and
sixpence. Keep two or three boxes for duplicate specimens, and as many
for your permanent collection. By-and-by you will want glass-topped
cases, but by the time you have arrived at that stage you should have
gained sufficient experience to enable you to know where to buy them.</p>

<p>See that every specimen before being transferred to your permanent
collection bears with it a small label setting forth the date and place
of capture, thus:</p>


<div id="ident">
   <div class="domus1"><span class="smcap">Epping</span>,<br />9/6/11.<br /><i>J. Roberts.</i></div>
   <div class="domus2"><span class="smcap">Abbey Wood, Herts</span>,<br />7/9/11.<br /><i>Robertson.</i></div>
</div>

<p>Keep these tickets as inconspicuous as possible and with the writing or
printing in such a position as to be easily read without requiring to
remove the insect.</p>

<p>The following list of British butterflies is thoroughly modern, and
in labelling your specimens you should<span class="pagenum"><a name="Page_27" id="Page_27">[Pg 27]</a></span> adopt its nomenclature, and
also follow the order given in arranging your collection. Both Latin
and English names are included, but if you wish to be a thorough
entomologist you should accustom yourself to use the scientific names.
The Latin name is the same everywhere &#8220;from China to Peru.&#8221; If you use
an English name of a butterfly in writing to a foreign collector he
will probably fail to recognize the species referred to, but if you
give the scientific name he will know it at once.</p>

<div id="wingx">
<p class="center">LIST OF BRITISH BUTTERFLIES</p>

<p class="gin">ARRANGED IN THEIR FAMILIES AND GENERA, WITH<br />THEIR SCIENTIFIC AND
POPULAR NAMES.</p>

<ol class="avis">
<li>Family: PAPILIONIDÆ.</li>
<li class="bird1"><a href="#STPM">Papilio machaon.</a></li>
<li class="bird2"><a href="#STPM">SWALLOW-TAIL.</a></li>

<li>&nbsp;</li>
<li>Family: PIERIDÆ.</li>
<li class="bird1"><a href="#BVWAC">Aporia cratægi.</a></li>
<li class="bird2"><a href="#BVWAC">BLACK-VEINED WHITE.</a></li>
<li>&nbsp;</li>
<li class="bird1"><a href="#LWPB">Pieris brassicæ.</a></li>
<li class="bird2"><a href="#LWPB">LARGE WHITE.</a></li>
<li>&nbsp;</li>
<li class="bird1"><a href="#SWPR">Pieris rapæ.</a></li>
<li class="bird2"><a href="#SWPR">SMALL WHITE.</a></li>
<li>&nbsp;</li>

<li class="bird1"><a href="#GVWPN">Pieris napi.</a></li>
<li class="bird2"><a href="#GVWPN">GREEN-VEINED WHITE.</a></li>
<li>&nbsp;</li>

<li class="bird1"><a href="#BWPD">Pieris daplidice.</a></li>
<li class="bird2"><a href="#BWPD">BATH WHITE.</a></li>
<li>&nbsp;</li>

<li class="bird1"><a href="#OBEC">Euchloë cardamines.</a></li>
<li class="bird2"><a href="#OBEC">ORANGE-TIP.</a></li>
<li>&nbsp;</li>

<li class="bird1"><a href="#WWLS">Leucophasia sinapis.</a></li>
<li class="bird2"><a href="#WWLS">WOOD WHITE.</a></li>
<li>&nbsp;</li>

<li class="bird1"><a href="#PCYCH">Colias hyale.</a></li>
<li class="bird2"><a href="#PCYCH">PALE CLOUDED YELLOW.</a></li>
<li>&nbsp;</li>

<li class="bird1"><a href="#CYCE">Colias edusa.</a></li>
<li class="bird2"><a href="#CYCE">CLOUDED YELLOW.</a></li>
<li>&nbsp;</li>

<li class="bird1"><a href="#BBGR">Gonepteryx rhamni.</a></li>
<li class="bird2"><a href="#BBGR">BRIMSTONE.</a></li>
<li>&nbsp;</li>

<li>Family: NYMPHALIDÆ.</li>
<li class="bird1"><a href="#SPAS">Argynnis selene.</a></li>
<li class="bird2"><a href="#SPAS">SMALL PEARL-BORDERED FRITILLARY.</a></li>
<li>&nbsp;</li>

<li class="bird1"><a href="#PFAE">Argynnis euphrosyne.</a></li>
<li class="bird2"><a href="#PFAE">PEARL-BORDERED FRITILLARY.</a></li>
<li>&nbsp;</li>

<li class="bird1"><a href="#QSAL">Argynnis lathonia.</a></li>
<li class="bird2"><a href="#QSAL">QUEEN OF SPAIN FRITILLARY.</a></li>
<li>&nbsp;</li>

<li class="bird1"><a href="#DGAG">Argynnis aglaia.</a></li>
<li class="bird2"><a href="#DGAG">DARK GREEN FRITILLARY.</a></li>
<li>&nbsp;</li>

<li class="bird1"><a href="#HBAA">Argynnis adippe.</a></li>
<li class="bird2"><a href="#HBAA">HIGH BROWN FRITILLARY.</a></li></ol>

<p><br /><span class="pagenum"><a name="Page_28" id="Page_28">[Pg 28]</a></span></p>

<ol class="avis"><li class="bird1"><a href="#SWAP">Argynnis paphia.</a></li>
<li class="bird2"><a href="#SWAP">SILVER-WASHED FRITILLARY.</a></li>
<li>&nbsp;</li>

<li class="bird1"><a href="#GFMA">Melitæa aurinia.</a></li>
<li class="bird2"><a href="#GFMA">GREASY FRITILLARY.</a></li>
<li>&nbsp;</li>

<li class="bird1"><a href="#GFMC">Melitæa cinxia.</a></li>
<li class="bird2"><a href="#GFMC">GLANVILLE FRITILLARY.</a></li>
<li>&nbsp;</li>

<li class="bird1"><a href="#HFMA">Melitæa athalia.</a></li>
<li class="bird2"><a href="#HFMA">HEATH FRITILLARY.</a></li>
<li>&nbsp;</li>

<li class="bird1"><a href="#CBVC">Vanessa c-album.</a></li>
<li class="bird2"><a href="#CBVC">COMMA.</a></li>
<li>&nbsp;</li>

<li class="bird1"><a href="#LTVP">Vanessa polychloros.</a></li>
<li class="bird2"><a href="#LTVP">LARGE TORTOISESHELL.</a></li>
<li>&nbsp;</li>

<li class="bird1"><a href="#STVU">Vanessa urticæ.</a></li>
<li class="bird2"><a href="#STVU">SMALL TORTOISESHELL.</a></li>
<li>&nbsp;</li>

<li class="bird1"><a href="#PBVI">Vanessa io.</a></li>
<li class="bird2"><a href="#PBVI">PEACOCK.</a></li>
<li>&nbsp;</li>

<li class="bird1"><a href="#CBVA">Vanessa antiopa.</a></li>
<li class="bird2"><a href="#CBVA">CAMBERWELL BEAUTY.</a></li>
<li>&nbsp;</li>

<li class="bird1"><a href="#RAVA">Vanessa atalanta.</a></li>
<li class="bird2"><a href="#RAVA">RED ADMIRAL.</a></li>
<li>&nbsp;</li>

<li class="bird1"><a href="#PLVC">Vanessa cardui.</a></li>
<li class="bird2"><a href="#PLVC">PAINTED LADY.</a></li>
<li>&nbsp;</li>

<li class="bird1"><a href="#WALS">Limenitis sibylla.</a></li>
<li class="bird2"><a href="#WALS">WHITE ADMIRAL.</a></li>
<li>&nbsp;</li>

<li>Family: APATURIDÆ.</li>
<li class="bird1"><a href="#PEAI">Apatura iris.</a></li>
<li class="bird2"><a href="#PEAI">PURPLE EMPEROR.</a></li>
<li>&nbsp;</li>

<li>Family: SATYRIDÆ.</li>
<li class="bird1"><a href="#MWMG">Melanargia galathea.</a></li>
<li class="bird2"><a href="#MWMG">MARBLED WHITE.</a></li>
<li>&nbsp;</li>

<li class="bird1"><a href="#MREE">Erebia epiphron.</a></li>
<li class="bird2"><a href="#MREE">MOUNTAIN RINGLET.</a></li>
<li>&nbsp;</li>

<li class="bird1"><a href="#NBEA">Erebia æthiops.</a></li>
<li class="bird2"><a href="#NBEA">NORTHERN BROWN, OR SCOTCH ARGUS.</a></li>
<li>&nbsp;</li>

<li class="bird1"><a href="#SWPA">Pararge ægeria.</a></li>
<li class="bird2"><a href="#SWPA">SPECKLED WOOD.</a></li>
<li>&nbsp;</li>

<li class="bird1"><a href="#WBPM">Pararge megæra.</a></li>
<li class="bird2"><a href="#WBPM">WALL BROWN.</a></li>
<li>&nbsp;</li>

<li class="bird1"><a href="#GBSS">Satyrus semele.</a></li>
<li class="bird2"><a href="#GBSS">GRAYLING.</a></li>
<li>&nbsp;</li>

<li class="bird1"><a href="#MBEJ">Epinephele janira.</a></li>
<li class="bird2"><a href="#MBEJ">MEADOW BROWN.</a></li>
<li>&nbsp;</li>

<li class="bird1"><a href="#SBET">Epinephele tithonus.</a></li>
<li class="bird2"><a href="#SBET">SMALL MEADOW BROWN.</a></li>
<li>&nbsp;</li>

<li class="bird1"><a href="#RBEH">Epinephele hyperanthus.</a></li>
<li class="bird2"><a href="#RBEH">RINGLET.</a></li>
<li>&nbsp;</li>

<li class="bird1"><a href="#MRCT">Cænonympha typhon.</a></li>
<li class="bird2"><a href="#MRCT">MARSH RINGLET.</a></li>
<li>&nbsp;</li>

<li class="bird1"><a href="#SHCP">Cænonympha pamphilus.</a></li>
<li class="bird2"><a href="#SHCP">SMALL HEATH.</a></li>
<li>&nbsp;</li>

<li>Family: LYCÆNIDÆ.</li>
<li class="bird1"><a href="#BHTB">Thecla betulæ.</a></li>
<li class="bird2"><a href="#BHTB">BROWN HAIRSTREAK.</a></li>
<li>&nbsp;</li>

<li class="bird1"><a href="#WLTW">Thecla w-album.</a></li>
<li class="bird2"><a href="#WLTW">WHITE-LETTER HAIRSTREAK.</a></li>
<li>&nbsp;</li>

<li class="bird1"><a href="#BHTP">Thecla pruni.</a></li>
<li class="bird2"><a href="#BHTP">BLACK HAIRSTREAK.</a></li>
<li>&nbsp;</li>

<li class="bird1"><a href="#PHTQ">Thecla quercus.</a></li>
<li class="bird2"><a href="#PHTQ">PURPLE HAIRSTREAK.</a></li>
<li>&nbsp;</li>

<li class="bird1"><a href="#GHTR">Thecla rubi.</a></li>
<li class="bird2"><a href="#GHTR">GREEN HAIRSTREAK.</a></li>
<li>&nbsp;</li>

<li class="bird1"><a href="#LCPD">Polyommatus dispar.</a></li>
<li class="bird2"><a href="#LCPD">LARGE COPPER.</a></li>
<li>&nbsp;</li>

<li class="bird1"><a href="#SCPP">Polyommatus phlæas.</a></li>
<li class="bird2"><a href="#SCPP">SMALL COPPER.</a></li>
<li>&nbsp;</li>

<li class="bird1"><a href="#LTLB">Lycæna bætica.</a></li>
<li class="bird2"><a href="#LTLB">LONG-TAILED BLUE.</a></li>
<li>&nbsp;</li>

<li class="bird1"><a href="#SSLA">Lycæna ægon.</a></li>
<li class="bird2"><a href="#SSLA">SILVER-STUDDED BLUE.</a></li></ol>

<p><br /><span class="pagenum"><a name="Page_29" id="Page_29">[Pg 29]</a></span></p>

<ol class="avis"><li class="bird1"><a href="#BALA">Lycæna astrarche.</a></li>
<li class="bird2"><a href="#BALA">BROWN ARGUS.</a></li>
<li>&nbsp;</li>

<li class="bird1"><a href="#CBLI">Lycæna icarus.</a></li>
<li class="bird2"><a href="#CBLI">COMMON BLUE.</a></li>
<li>&nbsp;</li>

<li class="bird1"><a href="#ABLB">Lycæna bellargus.</a></li>
<li class="bird2"><a href="#ABLB">CLIFDEN BLUE.</a></li>
<li>&nbsp;</li>

<li class="bird1"><a href="#CHLC">Lycæna corydon.</a></li>
<li class="bird2"><a href="#CHLC">CHALK-HILL BLUE.</a></li>
<li>&nbsp;</li>

<li class="bird1"><a href="#HBLA">Lycæna argiolus.</a></li>
<li class="bird2"><a href="#HBLA">AZURE BLUE.</a></li>
<li>&nbsp;</li>

<li class="bird1"><a href="#MBLS">Lycæna semiargus.</a></li>
<li class="bird2"><a href="#MBLS">MAZARINE BLUE.</a></li>
<li>&nbsp;</li>

<li class="bird1"><a href="#LBLM">Lycæna minima.</a></li>
<li class="bird2"><a href="#LBLM">LITTLE BLUE.</a></li>
<li>&nbsp;</li>

<li class="bird1"><a href="#LBLA">Lycæna arion.</a></li>
<li class="bird2"><a href="#LBLA">LARGE BLUE.</a></li>
<li>&nbsp;</li>

<li>Family: ERYCINIDÆ.</li>
<li class="bird1"><a href="#DBNL">Nemeobius lucina.</a></li>
<li class="bird2"><a href="#DBNL">DUKE OF BURGUNDY.</a></li>
<li>&nbsp;</li>

<li>Family: HESPERIDÆ.</li>
<li class="bird1"><a href="#GSSM">Syrichthus malvæ.</a></li>
<li class="bird2"><a href="#GSSM">GRIZZLED SKIPPER.</a></li>
<li>&nbsp;</li>

<li class="bird1"><a href="#DSNT">Nisoniades tages.</a></li>
<li class="bird2"><a href="#DSNT">DINGY SKIPPER.</a></li>
<li>&nbsp;</li>

<li class="bird1"><a href="#SSHT">Hesperia thaumas.</a></li>
<li class="bird2"><a href="#SSHT">SMALL SKIPPER.</a></li>
<li>&nbsp;</li>

<li class="bird1"><a href="#ESHL">Hesperia lineola.</a></li>
<li class="bird2"><a href="#ESHL">ESSEX SKIPPER.</a></li>
<li>&nbsp;</li>

<li class="bird1"><a href="#LSHA">Hesperia actæon.</a></li>
<li class="bird2"><a href="#LSHA">LULWORTH SKIPPER.</a></li>
<li>&nbsp;</li>

<li class="bird1"><a href="#LSHS">Hesperia sylvanus.</a></li>
<li class="bird2"><a href="#LSHS">LARGE SKIPPER.</a></li>
<li>&nbsp;</li>

<li class="bird1"><a href="#PSHC">Hesperia comma.</a></li>
<li class="bird2"><a href="#PSHC">SILVER-SPOTTED SKIPPER.</a></li>
<li>&nbsp;</li>

<li class="bird1"><a href="#CSCP">Carterocephalus palæmon.</a></li>
<li class="bird2"><a href="#CSCP">CHECKERED SKIPPER.</a></li>
<li>&nbsp;</li>
</ol>
</div>



<p>The remaining pages of this volume will be devoted to a description
of the species mentioned in the foregoing list, together with notes
on habits and other points. Assisted by the splendid coloured plates,
which are produced from actual specimens, and the notes in the
following pages, the young collector should have no difficulty in
identifying the specimens he secures.</p>


<div class="chapter">
<hr class="chap" />
<h2 class="nobreak" id="CHAPTER_III">CHAPTER III<br /><br />
<span class="zagz">THE BRITISH BUTTERFLIES DESCRIBED</span></h2>
</div>


<p id="STPM"><span class="smcap">The Swallow-Tail</span> (<i>Papilio Machaon</i>), <a href="#Plate_1">Plate I.</a>, Fig. 1.&mdash;I
find, in Scotland, where I live, that the first question put by friends
looking over one&#8217;s insect treasures<span class="pagenum"><a name="Page_30" id="Page_30">[Pg 30]</a></span> usually refers to this butterfly.
&#8220;Is that a British butterfly?&#8221; they ask; and on being assured that it
is, they tender the information that they never saw one like it in this
neighbourhood; and it takes much explanation to make them understand
how rare and local some butterflies and moths are.</p>

<p>Alas! he is our one and only Swallow-Tail&mdash;the connecting link between
our small island family and the great host of tropical and subtropical
Swallow-Tails that flaunt their gorgeous colours under sunnier skies.
And we hope he may long remain with us. The incentive to travel and
capture this butterfly in his native haunts is not so great as it may
have been half a century ago. For a few pence, or by exchange, the
larva or chrysalis can be had from a dealer, and with ordinary care and
attention it is not a difficult species to rear, and thus see alive.</p>

<p>That this species is already getting scarcer should be a warning to
all who are interested in the preservation of our native fauna. Its
extermination might not be a very difficult task; and although it is
common in many places on the Continent, its reintroduction into England
would certainly be attended with great trouble and difficulty.</p>

<p>Two years ago (1909) an experiment was made, under very favourable
conditions, to &#8220;naturalize&#8221; a colony of this fine butterfly at Easton,
near Dunmow, in Essex, the property of Lord Warwick. Lord Warwick and
Professor Meldola laid down a large number of chrysalids which duly
hatched, and, although the surrounding<span class="pagenum"><a name="Page_31" id="Page_31">[Pg 31]</a></span> marsh land had been liberally
stocked with the food-plant, yet no eggs or larvæ were found after the
butterflies had passed their season, nor have any been seen since.</p>

<p>Doubtless the butterfly has many natural enemies, and when we consider
the draining, burning, and rush-cutting that go on in these fen lands,
it will be apparent that the time cannot be far distant when an effort
will need to be made, such as at Wicken, to provide &#8220;Cities of Refuge,&#8221;
for many of our rare and persecuted little friends. I speak for birds,
butterflies, flowers and ferns. An educated public taste would do more
for them all than any amount of Acts of Parliament.</p>

<p>The Swallow-Tail measures fully 3 inches across the expanded wings;
the prevailing tint is a pale primrose yellow, with bars and masses of
black, the latter powdered with yellow scales on the fore-wings, and
with pale blue on the hind-wings. There are also two red eye spots on
the inner angle of the hind-wings near the tails. The under side looks
not unlike a washed-out version of the upper, with a little more red on
the hind-wings.</p>

<p>The caterpillar, too, is very beautiful, being green in colour, belted
with black, and the black is studded with red spots. It thrives well on
various members of the carrot family&mdash;carrot, parsley, fennel, celery;
it has occasionally been found feeding on the common carrot leaves in
rural gardens in neighbourhoods where the insect abounds.</p>

<p>The chrysalis, in which form the insect passes through the winter,
is hung up in quite the orthodox manner,<span class="pagenum"><a name="Page_32" id="Page_32">[Pg 32]</a></span> belted round the back and
attached at the tail. If you should find chrysalids in this position
during the winter months and wish to remove them, cut away the whole
support, and set them up again in your hatching cage, as you found
them. Always avoid unnecessary handling of these delicate objects.</p>

<p>There are certainly two, and probably three, broods during a favourable
summer, so this butterfly may be captured from May to August. Its
headquarters are in the Fen counties of Cambridge and Norfolk, and it
is found in many similar localities in fewer numbers.</p>

<p id="BVWAC"><span class="smcap">Black-veined White</span> (<i>Aporia Cratægi</i>), <a href="#Plate_1">Plate I.</a>, Fig. 2.&mdash;This
is one of the rarest of our butterflies, though why it should be so is
rather difficult to say. As it feeds upon hawthorn in the larval state
the puzzle is all the greater, as a commoner or more widely distributed
plant it would be hard to find. It may be also found on blackthorn,
cherry, plum, apple, and pear. It is not difficult to distinguish this
fine insect from all the other &#8220;Whites&#8221; on our list. The wings are
rather thinly scaled; you can note this by holding the insect up to the
light, and looking through the wing with an ordinary pocket-lens. Do
the same with its near neighbour, the Large Garden White, and you will
see a difference&mdash;the Black-Veined White is semi-transparent, while the
other is quite dense.</p>

<p>The almost black network of veins is another unmistakable feature, as
is the entire absence of a fringe to the wings. Two and a half inches
is the average expanse of the extended wings.</p>

<p><span class="pagenum"><a name="Plate_5" id="Plate_5">[Plate 5]</a></span></p>

<div><img class="img_style" id ="Plate05" src="images/im049a.jpg" alt="Plate 5" /></div>

<p class="net"><br /><br />
PLATE 5.<br />
1. <a href="#GFMC">Glanville Fritillary</a><br />
2. <a href="#HFMA">Heath Fritillary</a><br />
3. <a href="#CBVC">Comma</a><br />
4. <a href="#STVU">Small Tortoiseshell</a><br />
5. <a href="#LTVP">Large Tortoiseshell</a><br />
6. <a href="#CBVA">Camberwell Beauty</a><br />
7. <a href="#PBVI">Peacock</a><br />
<br /></p>

<p><span class="pagenum"><a name="Page_33" id="Page_33">[Pg 33]</a></span></p>

<p>The caterpillar is rather hairy, dull-coloured underneath, black on the
back, with two lines of broad red spots running from head to tail. When
you find this caterpillar, you generally get a whole brood of them, as
they are gregarious and live under a web until nearly fully fed.</p>

<p>The chrysalis is of a bright straw colour, spotted and streaked with
black, and is not so angular as the chrysalis of the Large Garden White.</p>

<p>The butterfly is out in midsummer, and is rarely seen outside of the
most southern counties, and even there it seems to prefer the coast.
In Continental gardens it sometimes attacks the fruit-trees in such
numbers as to constitute a plague.</p>

<p id="LWPB"><span class="smcap">The Large Garden White Butterfly</span> (<i>Pieris brassicæ</i>) <a href="#Plate_1">Plate I.</a>,
Fig. 3, is well known to everybody. Town and country seem to be the
same to him; indeed, I do believe he lives and thrives best in the town
and village gardens; only twice have I met with the larva in a really
wild situation, once finding a few caterpillars on a lonely shore in
Arran, and I once got a chrysalis on a beech-tree trunk on the border
of a large wood. Cabbage, kale, savoy, and cress, are the plants which
the female usually selects as the most suitable to lay her eggs on, but
as the caterpillars grow towards maturity there are few plants they
will not attack, especially if they are driven by hunger and a lack
of their usual food. The butterfly hardly needs description; suffice
it to say that the female, besides having a rather larger expanse of
black at the tip of the fore-wing, has also<span class="pagenum"><a name="Page_34" id="Page_34">[Pg 34]</a></span> two black spots and a
dash (see figure) on the same wing. These are entirely wanting on the
upper side of the male, but are present on the under side. The male
is a little smaller than the female. Beyond question this butterfly
is the most destructive of all the British species; fortunately it is
largely held in check by ichneumon flies. Once I brought home a dozen
or two caterpillars of this species from an isolated locality on the
Mull of Kintyre, hoping to obtain some possible varieties. Not one
butterfly did I hatch; they had all been stung, and mostly by a large
grey dipterous fly (<a href ="#Plate_11">Plate XI.</a>, Fig. 4), although some few contained the
little blackish imp which is their usual parasite. This little fellow
it is who spins the small cocoons round the shrivelled skin of the
victim (see <a href ="#Plate_11">Plate XI.</a>, Figs. 3, 5).</p>

<p>The eggs are laid singly or in small groups on the backs of leaves, and
are somewhat long; they are straw-coloured, and stand up on end, so
they are not difficult to find and collect, or destroy if too numerous.
The caterpillar is yellow, speckled with black, and slightly spiny;
it is also one of the easiest and most satisfactory to preserve. The
chrysalis may be found during the winter attached to walls and fences.
The butterfly is common throughout the summer.</p>

<p><a name ="SWPR" id="SWPR"><span class="smcap">Small Garden White</span> (<i>Pieris rapæ</i>)</a>, <a href="#Plate_1">Plate I.</a>, Fig. 4.&mdash;This
butterfly is very like the last, but much smaller. Both species are
generally found together. On the wing and in the caterpillar state
they find the same nooks and corners in which to pass the winter as
chrysalids.</p>

<p><span class="pagenum"><a name="Plate_6" id="Plate_6">[Plate 6]</a></span></p>

<div><img class="img_style" id ="Plate06" src="images/im054b.jpg" alt="Plate 6" /></div>

<p class ="net">PLATE 6.</p>

<p class ="net"><a href="#PAI">&#8220;Paisley&#8221; Method of Setting</a></p>


<p><span class="pagenum"><a name="Page_35" id="Page_35">[Pg 35]</a></span></p>
<p>But the caterpillars are very different in appearance. In this species
the colour is a soft velvety green, with a faint yellow line down the
back. Stretched at full length on the midrib of a cabbage-leaf, it is
by no means a conspicuous object, and may be quite easily overlooked;
but if you see the leaves riddled with holes, and find excrement lying
between them and at the base, don&rsquo;t cease looking until you find the
culprit, sometimes deep in a cabbage, or on the back of the outer
leaves.</p>

<p>Other caterpillars besides those of the Large and Small Whites may
be present in force, notably those of the Cabbage moth (<i>Mamestra
brassicæ</i>), large stout caterpillars varying from green to black; they
are far too numerous, so have no compunction about destroying all you
find. The caterpillar is apt to lose its colour in preserving, as is
the case with all green caterpillars.</p>

<p id="GVWPN"><span class="smcap">Green-Veined White</span> (<i>Pieris napi</i>), <a href="#Plate_1">Plate I.</a>, Fig. 5.&mdash;Unlike
the last two species, this White is more often found in the country
than the town, and in my experience it is only a casual visitor to
suburban gardens. I have never found the caterpillars there.</p>

<p>To distinguish it from the last species it is only necessary to examine
the under side, where both fore- and hind-wings are strongly veined
with greyish-black, the female particularly so. On the upper side the
veins are distinctly marked, but the line is finer.</p>

<p>In a rather wet meadow where Ladies&#8217; Smock abounds in early June, I
have seen this butterfly in profusion,<span class="pagenum"><a name="Page_36" id="Page_36">[Pg 36]</a></span> and not at all easy to capture
when the sun was high. But when King Sol is sinking in the west, and
all decent butterflies have gone to rest, a turn through the same
meadow while the light still lingers reveals the Veined Whites all at
rest on the flower-heads of the Ladies&#8217; Smocks. It is then quite easy
to select a few of the best, and search for varieties, until in the
deepening twilight butterflies and flowers became so blended as to
present only a whitish blurr to the eye. There are two broods&mdash;one out
in June, the other in August.</p>

<p>The caterpillar is green, with yellow spots on the sides, and may be
found on various plants of the cruciferous order, the cress group in
particular. I have found it on the Ladies&#8217; Smock (<i>Cardamine pratense</i>)
and on the large-flowered Bitter Cress (<i>Cardamine amara</i>). For your
collection always mount at least one of each sex with the under side
uppermost. The specimen figured is a female; the male has only one
round spot on each fore-wing.</p>

<p id="BWPD"><span class="smcap">Bath White</span> (<i>Pieris Daplidice</i>), <a href="#Plate_1">Plate I.</a>, Fig. 6.&mdash;This is
the rarest of all our Whites; indeed, it is doubtful if it breeds
in this country at all. A few specimens are taken annually on the
south-east coast and neighbourhood, and the likelihood is that they are
migrants from the Continent.</p>

<p>On the other hand, it is just possible that on account of its close
resemblance to the Green-Veined White when on the wing, it is often
passed over when mixed up with and flying amongst a number of that
species.</p>

<p><span class="pagenum"><a name="Page_37" id="Page_37">[Pg 37]</a></span></p>
<p>The sexes are easily distinguished by the female having the upper side
of the hind-wings broadly checkered with a double band of black spots,
which is entirely wanting in the male. The under side, however, of both
sexes is beautifully marbled in dark green on a creamy white ground.
The caterpillar is a dull green with yellow lines on back and sides,
and may be fed on cabbage or Dyer&rsquo;s Rocket. The chrysalis is very
similar to that of the Small Garden White.</p>

<p>The butterfly may be met with in May and June, and again in August and
September.</p>

<p id="OBEC"><span class="smcap">The Orange-Tip Butterfly</span> (<i>Euchloë Cardamines</i>), <a href="#Plate_1">Plate I.</a>,
Fig. 7.&mdash;This is the only member of its genus inhabiting this country,
though there are several others met with on the Continent. It has a
wide range in Britain and may be met with from Aberdeenshire to the
south coast of England, although it appears to be becoming scarcer
and more local in the northern half of the kingdom. The ground colour
of the upper side of the wings is white, with a large orange patch
occupying almost the outer half of the fore-wing, relieved by a black
tip and a black spot. In the female these black marks are larger, but
the orange is entirely wanting. The under side of the fore-wing is like
the upper, but the under side of the hind-wing is beautifully marbled
in dark green, an effect obtained by the commingling of black scales on
a yellow ground.</p>

<p>The caterpillar is green, with a white line on the sides, and feeds on
various species of <i>Cardamine</i>; hence meadow-lands are its favourite
resorts, and there the<span class="pagenum"><a name="Page_38" id="Page_38">[Pg 38]</a></span> curious sharp-looking little chrysalis may be
found hung up to some dead stem during winter.</p>

<p>The butterfly appears in early June and does not generally survive that
month.</p>

<p id="WWLS"><span class="smcap">The Wood White Butterfly</span> (<i>Leucophasia sinapis</i>), <a href="#Plate_1">Plate
I.</a>, Fig. 8.&mdash;This is the smallest and most fragile of our white
butterflies. The wings are white with a black tip on the fore-wing, and
the under side of the hind-wing clouded with black scales. The body is
long, slender, and a little flattened laterally. It is not a common
species, and is very local where it does occur. It has been found as
far north as the Lake District, and down to the south coast. It is
unrecorded for Scotland, but has been taken in Ireland.</p>

<p>The caterpillar is green, with yellow lines on the sides; it feeds on
various members of the pea family&mdash;Vetch, Trefoil, etc. It appears on
the wing in May, and sometimes a second brood occurs in August; so you
may look for the caterpillar in June and again in September.</p>

<p id="PCYCH"><span class="smcap">The Pale Clouded Yellow Butterfly</span> (<i>Colias Hyale</i>), <a href="#Plate_1">Plate I.</a>,
Fig. 9.&mdash;I think there can be little doubt that this fine butterfly
is on the increase with us; from all over the southern counties come
records of its comparative plenty. In the <i>Entomologist</i> (October,
1911) I read of over one hundred being seen or captured by various
collectors. Norfolk, Suffolk, Essex, Kent, Bucks, are amongst the
favoured places, and Lucerne- or Clover-fields are the attractions.</p>

<p><span class="pagenum"><a name="Plate_7" id="Plate_7">[Plate 7]</a></span></p>

<div><img class="img_style" id ="Plate07" src="images/im059b.jpg" alt="Plate 7" /></div>

<p class ="net">PLATE 7.</p>

<p class="net"><a href="#Page_23">Apparatus for Preserving Larvæ</a></p>

<p>The question of the migration of this and the following<span class="pagenum"><a name="Page_39" id="Page_39">[Pg 39]</a></span> species
is still very far from being satisfactorily settled. That we do get
a swarm over from the Continent when conditions are favourable is a
matter of common knowledge, but whether we have resident and permanent
colonies of our own is still doubtful. In any case this year (1911)
has been a <i>Hyale</i> year, and we give thanks. The ground colour of
this butterfly is a pale primrose-yellow. There is a broad black
border beginning at the tip of the fore-wing and continuing on to the
hind-wing, where it gradually dies out at the bottom angle; placed
on this band of black are a few yellow spots. There is also a black
spot on the fore-wing, and a faint orange spot near the middle of
the hind-wing. The under side is more of a yellow shade, and a line
of brown spots runs round the outer margin of both wings. There is a
silvery spot in the centre of the hind-wings, like a figure 8 bordered
with pinkish brown, and in fine fresh specimens the fringe is of the
latter colour. The female is a shade lighter in ground colour and also
shows more black.</p>

<p>The caterpillar may be looked for in June and July on Clover and
Lucerne; it is green, with yellow lines running along the back and
sides. The chrysalis is green with a single yellow line.</p>

<p>The latter half of August and the first half of September cover the
best period of its flight in this country; on the Continent there is a
spring brood.</p>

<p id="CYCE"><span class="smcap">The Clouded Yellow</span> (<i>Colias Edusa</i>), <a href="#Plate_4">Plate IV.</a>, Fig. 1.&mdash;As
with the last species, we have still much to learn of the habits of
this fine butterfly. Some years<span class="pagenum"><a name="Page_40" id="Page_40">[Pg 40]</a></span> it is plentiful, while in others
hardly a specimen will be seen&mdash;and as for the caterpillars, we never
hear of them being successfully searched for. The probability is that
from a few spring visitors from the Continent we get a number of
descendants in August, when a great many more arrive from across the
Channel and mingle with them. The distribution of nearly all animals
is regulated by the food-supply, the climate, or their enemies; yet
none of these seem to satisfactorily account for the disappearance
and reappearance of <i>Edusa</i> with us. It is a strong flying insect
with a roving disposition, and on quite a few occasions it has been
noted as far north as Arran and the Ayrshire coast, in Scotland. The
brilliant orange and black wings make its identity unmistakable. Not
so, however, with the light sulphur-coloured female variety, which
very nearly approaches the typical female form of <i>Hyale</i>, but it
may be distinguished by the broader black band on both fore- and
hind-wings, and a heavy sprinkling of black scales near the base of the
former, and all over the latter. The orange spot too, in the centre
of the hind-wing is deeper, and, being on a darker ground, looks much
brighter. There is no corresponding male variation.</p>

<p>The caterpillar is dark green, with a light line on each side, varied
with yellow and orange touches. It feeds on various plants of the pea
order&mdash;vetches, trefoils, clovers, etc. The chrysalis is brown spotted,
and is striped with a yellow line. The butterfly appears with us during
August and September.</p>

<p><span class="pagenum"><a name="Plate_8" id="Plate_8">[Plate 8]</a></span></p>

<div><img class="img_style" id ="Plate08" src="images/im064a.jpg" alt="Plate 8" /></div>

<p class ="net">PLATE 8.<br />
1. <a href="#RAVA">Red Admiral</a><br />
2. <a href="#PLVC">Painted Lady</a><br />
3. <a href="#MWDE">Milk Weed</a><br />
4. <a href="#WALS">White Admiral</a><br />
5. <a href="#PEAI">Purple Emperor</a> (Male)<br />
</p>
<p><span class="pagenum"><a name="Page_41" id="Page_41">[Pg 41]</a></span></p>

<p id="BBGR"><span class="smcap">The Brimstone Butterfly</span> (<i>Gonepteryx rhamni</i>), <a href="#Plate_4">Plate IV.</a>, Fig.
2.&mdash;When I glance at this beautiful butterfly, I always feel inclined
to laugh, not <i>at</i> the butterfly&mdash;oh dear no!&mdash;but at a practical joke
I once saw through, much to the astonishment of a soldier friend. He
had brought home a large assortment of fine butterflies from India,
and in going over the stock my attention was arrested by the peculiar
pattern on one of them. For ground colour and outline it certainly
resembled our own Brimstone, but what weird markings! Turning the
hand-glass on it revealed the fact that it was <i>hand-painted</i>. I asked
the sergeant who did this, and then he suddenly remembered, and gave
vent to a loud guffaw. &#8220;The scamps, by Jove! That carries me back to
a certain mess-room at Darjeeling when this insect was handed over to
me by a certain young officer as a great rarity. He was sure there was
not another like it in the camp; and he was right. Lots of our fellows
went &#8216;butterfly dodging,&#8217; and had big collections to take home; but not
one of them had this one. They named it &#8216;The Officer&rsquo;s Fancy.&#8217; Now, I
recollect seeing this same officer out sketching and fooling around
with a box of paints. It&rsquo;s clever, though, isn&rsquo;t it? He took us all
completely in.&#8221; This was hardly to be wondered at! The colours had been
very delicately laid on, and the pattern adopted was of the eye-spot
and streak order, so that the whole effect was quite harmonious and in
good taste.</p>

<p>But the Brimstone requires no artificial aids to make it a warm
favourite with all butterfly lovers; if it lacks<span class="pagenum"><a name="Page_42" id="Page_42">[Pg 42]</a></span> variety of colouring,
it more than makes up for it in the beautiful sweeping outlines of
the wings. No other butterfly on our list can show such sweet harmony
of line and contour. Like a breeze-blown daffodil, he greets us on
our early spring rambles, just when the opening blossoms and leafy
buds are all doubly welcome, in that we have missed their friendly
presence through the long days of winter. The female hibernates in
all sorts of out-of-the-way corners&mdash;in dense holly-bushes, piles of
brushwood, chinks of walls, etc., coming forth again in May or even
earlier to deposit her eggs on the Buckthorn and its allies. The
antennæ are rather short and more like a club than a drum-stick, while
the beautiful white silken mane along the back is quite a noticeable
feature. The female is of a much lighter tint than the male.</p>

<p>The caterpillar is green, with paler sides, along which runs a white
line: it may be found on the Buckthorn from May till July. The
chrysalis, which is supported on the tail and band principle, is green
and yellow, and rather oddly shaped. It hatches in the course of about
three weeks. This butterfly is a plentiful insect south of the Border,
but we have yet to record it for Scotland.</p>

<p id="SPAS"><span class="smcap">The Small Pearl-Bordered Fritillary</span> (<i>Argynnis Selene</i>),
<a href="#Plate_4">Plate IV.</a>, Fig. 7.&mdash;Like all the members of its family the ground
colour of the wings of this insect is a reddish-brown, marbled and
spotted with black. For size it differs little from the next species,
and the upper surface of the two being so much alike, it is sometimes
difficult to distinguish between them. The under side<span class="pagenum"><a name="Page_43" id="Page_43">[Pg 43]</a></span> (<a href="#Plate_10">Plate X.</a>,
Fig. 3), especially of the hind-wings, however, renders the task of
identification comparatively easy: the ground colour is a deeper brown
in this species and causes the pearl border to stand out in stronger
relief; besides, numerous other pearl spots brighten its surface. It is
a local butterfly, with a wide range of distribution both in England
and Scotland; and where it does occur it is generally common. In the
South it may be double brooded, but in the North the June flight is all
we see of it for the year.</p>

<p>The caterpillar is black, with an interrupted white line along the
back; the spines are brown; it feeds on the dog violet (<i>Viola
canina</i>). The chrysalis is ash-coloured.</p>

<p id="PFAE"><span class="smcap">The Pearl-Bordered Fritillary</span> (<i>Argynnis Euphrosyne</i>), <a href="#Plate_4">Plate
IV.</a>, Fig. 8.&mdash;Perhaps this is the commoner of these twin butterflies,
though its range of distribution is much the same as the foregoing. In
its case, also, the under side of the <i>hind</i>-wings furnishes us with
the main points of distinction. Here the markings are a warm mid-red
shade on an ochreous ground; the pearl border is very pronounced, and
in the middle of the wing a single pearl reposes. Nearer the body there
is another smaller spot hardly so bright. If you set several of these
two species with the under side uppermost, you will soon get quite
familiar with the difference between them. <a href="#Plate_10">Plate X.</a>, Figs. 3, 5, shows
this distinction.</p>

<p>The caterpillar is similar to the last species and prefers <i>Viola</i> as
a food-plant, but I have found it in<span class="pagenum"><a name="Page_44" id="Page_44">[Pg 44]</a></span> little colonies where it most
certainly must have fed on other plants, as <i>Violas</i> of any species
were distinctly rare in the district, which is wet and marshy. For
Scotland there is a single brood in June, while in the South it is
double-brooded&mdash;May and August.</p>

<p id="QSAL"><span class="smcap">The Queen of Spain Fritillary</span> (<i>Argynnis Lathonia</i>),
<a href="#Plate_4">Plate IV.</a>, Fig. 6.&mdash;This is, unfortunately, the rarest of all our
Fritillaries; unfortunately, because it is the most beautiful and
brilliant. In outline the fore-wing differs from that of the two
preceding species, being slightly concave on the outer margin, while
the hind-wing bears a slight trace of scalloping. But it is on the
under side where all the treasures lie. A row of seven pearl spots
adorns the outer margin of the hind-wing; then comes a row of small
dark spots, each with a pearl-spot in its centre; then a profusion of
large and small glittering patches completes this beautiful wing. The
under side of the fore-wing has only three (or sometimes a tiny fourth)
pearl spots near the tip. This butterfly is taken occasionally in
clover-fields in our south-eastern counties. The specimens taken there
are possibly migrants from the Continent.</p>

<p>The caterpillar is dark, with a white line on the back, yellow lines
on the sides, and is clothed with short red spines. It may be found on
<i>Violas</i>. As this insect is double-brooded on the Continent, it is well
to look out for it during the whole summer from May to September.</p>

<p id="DGAG"><span class="smcap">The Dark Green Fritillary</span> (<i>Argynnis Aglaia</i>), <a href="#Plate_4">Plate IV.</a>,
Fig. 4.&mdash;The only claim this handsome species has to be called green
lies in the fact that the under side<span class="pagenum"><a name="Page_45" id="Page_45">[Pg 45]</a></span> of the hind-wing has for its
ground colour a delightful tawny green. But the main attraction is
the lovely rows of pearl spots ornamenting the under side (<a href="#Plate_10">Plate X.</a>,
Fig. 1); and there are four of these rows. One, and it is perhaps
the finest, runs round near the outer margin, and consists of nine
gems; the next, a little nearer the body, has eight, and is slightly
irregular; the next row has only three, rather widely apart; and
the fourth, and last, has also three very small ones quite near the
base of the wing. The under sides of the fore-wings have also their
pearl spots. Near the outer margin you will find a row with eight of
them, beginning boldly near the tip; they gradually fade until the
last of the row is barely visible. On some male specimens there are
two silvery spots also near the tip, but on other specimens these
are absent. The under side of the fore-wing has very little green to
show; the tip of the wing is just tinted, and this tint is carried
along the costal margin. I have described the under side in some
detail, as I have seen it described as having only three rows of
spots on the hind-wing, and no pearl spots at all on the fore-wing;
and for another reason, I want you always to confirm your captures
by a good textbook, as by so doing you will learn some valuable
lessons in comparison and observation, and in noting details; and
also it will enable you, perhaps, to add some fine variations to your
collection.</p>

<p>The caterpillar lives on various species of wild <i>Viola</i>, and may be
found on them in the early summer, but as the butterfly has a wide
range of distribution, season<span class="pagenum"><a name="Page_46" id="Page_46">[Pg 46]</a></span> and locality make it vary a good deal
in the time of its appearance. It has been found from the North of
Scotland to the South of England. July is the month to look for it.
I always find it more abundant near the coast. It is a bold flying
species, and often difficult to capture; but in good settled weather I
have taken it frequently at rest on thistle-tops <i>at sundown</i>.</p>

<p id="HBAA"><span class="smcap">The High Brown Fritillary</span> (<i>Argynnis Adippe</i>), <a href="#Plate_4">Plate IV.</a>,
Fig. 5.&mdash;In this and the foregoing we have again two species very
easy to confound, and all the more so when we note that stable
characters are somewhat hard to find on the upper surface of the
wings&mdash;in general the ground colour in <i>Adippe</i> is richer and
darker, and the outer margin of the fore-wing is not so rounded as
in <i>Aglaia</i>, being either straight or very slightly concave. The
arrangement of the second row of spots, which runs round near the
outer margin of both wings, is different in the two species, but
they are very inconstant and even vary in the sexes; so the <i>under
side</i> must be again consulted (<a href="#Plate_10">Plate X.</a>, Fig. 2). And here we have
an unfailing test. In <i>Adippe</i>, on the <i>under side</i> of the hind-wing
near the outer margin, there is a row of dark red spots lined
internally with black, and in the centre there is a small pearl spot.
These eyelike spots are never present in <i>Aglaia</i>. The general green
tint, too, of <i>Aglaia</i> is absent in <i>Adippe</i>. The silvery spots on
the under side of the fore-wing of <i>Aglaia</i> are rarely to be seen in
this species. In some females of <i>Adippe</i> three shadowy spots are
visible near the tip. I have never seen these on a male; so we have
it that, in the<span class="pagenum"><a name="Page_47" id="Page_47">[Pg 47]</a></span> great majority of specimens of <i>Adippe</i>, the under
side of the fore-wing is devoid of silvery spots. While <i>Adippe</i>
may be fairly common in the South, it is by no means so widely
distributed, nor does it range so far north as <i>Aglaia</i>. In Scotland
it is unknown.</p>

<p>The caterpillar is dark grey, with a whitish line along the back, and
is covered with rust-red spines. It feeds on <i>Viola</i>. The butterfly
appears in July.</p>

<p id="SWAP"><span class="smcap">The Silver-Washed Fritillary</span> (<i>Argynnis Paphia</i>), <a href="#Plate_4">Plate IV.</a>,
Fig. 3.&mdash;This is the largest of our native Fritillaries, and is easily
distinguished from the others by an entire absence of the silvery spots
so characteristic of this genus. The upper surface of the male is of
a warm, orange-brown, streaked and dotted with black on both wings;
the under side of the fore-wing is much lighter, the spots on it are
smaller, and the tip is marked with olive; the hind-wing under side
bears a fine combination of pale olive with faint lavender and silver
streaks, while its outer margin is distinctly scalloped. The female
is quite different. In it the ground colour of the upper side of the
fore-wings is much paler, and the black streaks along the veins are
absent. The hind-wings have the same pale tint, but with a more decided
tinge of olive, while the under sides of both wings, and especially
of the hind ones, are pale olive green, and the scalloping round the
outer margin of both wings is more pronounced. In the female variety
<i>Valesina</i>, the upper surface has a dark olive ground shading out
towards the tip of the fore-wings. This, with the black spots lying on
it, gives the butterfly<span class="pagenum"><a name="Page_48" id="Page_48">[Pg 48]</a></span> quite a black appearance at a little distance.
This variation is mostly found in the New Forest. The butterfly is
common in many districts of England, but is rare in Scotland.</p>

<p>The caterpillar is covered with long spines, nearly black, and has a
pale line along the back and sides; it feeds on Dog Violet and Wild
Raspberry. The chrysalis is rather stout, hangs by the tail, and is
greyish, with shining points. The perfect insect is out in July and
August.</p>

<p id="GFMA"><span class="smcap">The Greasy Fritillary</span> (<i>Melitæa aurinia</i>), <a href="#Plate_4">Plate IV.</a>,
Fig. 9.&mdash;This may not seem a pretty or poetical name for a
butterfly. Beauty, poetry, and the &#8220;fitness of things,&#8221; might
have suggested a more appropriate title; but, as Dickens has
said, &#8220;the wisdom of our ancestors is not to be disturbed by
unhallowed hands,&#8221; and as the technical name is in this instance
some compensation, we may have to let it go at that. &#8220;Greasy&#8221; the
butterfly is not, but only <i>looks</i> as if it were, when slightly
worn; and, owing to some peculiarity in the arrangement of its
scales, this slight wearing is very soon accomplished. Happily
it is not a difficult insect to rear, and fine specimens without
a suspicion of greasiness in their appearance can thus be had
for the cabinet. This butterfly is quite distinct from any other
British Fritillary, inasmuch as it has two very distinct ground
colours on the upper side of its wings, a rich orange-brown and a
pale ochreous yellow. The bands of this latter shade are bordered
with dark brown; a reference to the coloured figure will show how
these<span class="pagenum"><a name="Page_49" id="Page_49">[Pg 49]</a></span> colours are disposed. It is a rather variable species,
and is widely distributed. It is found in glens and damp meadows
and is generally abundant where found, though local.</p>

<p><span class="pagenum"><a name="Plate_9" id="Plate_9">[Plate 9]</a></span></p>

<div><img class="img_style"  id ="Plate09" src="images/im073a.jpg" alt="Plate 9" /></div>

<p class="net">
PLATE 9.<br />
1. <a href="#MWMG">Marbled White</a><br />
2. <a href="#MREE">Mountain Ringlet</a><br />
3. <a href="#NBEA">Scotch Argus</a><br />
4. <a href="#SWPA">Speckled Wood</a><br />
5. <a href="#WBPM">Wall Brown</a><br />
6. <a href="#GBSS">Grayling</a> (Male)<br />
7. <a href="#MBEJ">Meadow Brown</a> (Female)<br />
8. <a href="#SBET">Small Meadow Brown</a><br />
9. <a href="#RBEH">Ringlet</a><br />
10. <a href="#MRCT">Marsh Ringlet</a><br />
</p>

<p>The caterpillar is black, with a greyish line along the sides, and
a small white dot above this between each segment. The chrysalis is
ashen, with red and black spots; it is rather &#8220;dumpy,&#8221; and may be
found on various low plants early in the summer, and again, in some
southern localities, in the autumn. Like nearly all the Fritillaries
the larvæ hibernate while very small, so it is best to leave them in
their natural state until fairly well fed. Narrow-leaved Plantain,
Scabious, and, some observers say, Foxglove and Speedwell, are its
favourite foods. The times of flight are May and August. In many Scotch
localities, Argyllshire, Ayrshire, etc., this species is abundant.</p>

<p id="GFMC"><span class="smcap">The Glanville Fritillary</span> (<i>Melitæa Cinxia</i>), <a href="#Plate_5">Plate V.</a>,
Fig. 1.&mdash;This little butterfly is one of the &#8220;threatened species.&#8221;
If due care and discretion be not exercised, there is a possibility
of its becoming extinct in this country. &#8220;Threatened people live
long,&#8221; but it were wise not to push our little friend too far; and
wiser still if collectors who live in or near its favourite haunts
would not only try to preserve it, but also make some attempt to
spread its range into other localities apparently suitable for its
propagation. We have far too few native butterflies to run the
risk of losing any we have. And as the food-plant is the Ribbed or
Narrow-leaved Plantain, it follows that even were this<span class="pagenum"><a name="Page_50" id="Page_50">[Pg 50]</a></span> species
as abundant as its food would warrant, it could not possibly do
any harm to anyone, either gardener or farmer. The ground colour
might be called Fritillary brown, relieved with the usual black
bands and spots; the hind-wings show a distinct row of black spots
on a light ground running round near the outer margin. But the
under side (<a href="#Plate_10">Plate X.</a>, Fig. 4) is more striking and unmistakable,
especially that of the hind-wing. The fringe itself is dotted at
intervals with black; then follows a line of crescent spots on
a cream-coloured ground; a fulvous band scalloped with a black
outline traverses the wing, and on this band are dark spots edged
with red. Then there is a cream band with black spots, and a
broken-up band of fulvous spots edged with black. There is cream
again next the body, with a few more black spots. The under side of
the upper wing is a light orange-brown, and cream towards the tip,
and bears a few black spots.</p>

<p>The caterpillar is black, with dark red between the segments; head
and pro-legs red; spines short, crowded, black. The chrysalis is
stout, yellowish-grey, dotted with black, and is sometimes enclosed
in a loose web. The chrysalids I have reared always adopted this mode
of concealment and protection. I have also been much impressed with
the strong resemblance of the caterpillar to the flower-heads of the
Narrow-leaved Plantain, amongst which it lives. The Isle of Wight
appears to be the headquarters of the species, and it is found in a few
other localities on the mainland. It appears in May and June.</p>

<p><span class="pagenum"><a name="Plate_10" id="Plate_10">[Plate 10]</a></span></p>

<div><img class="img_style" id ="Plate10" src="images/im078b.jpg" alt="Plate 10" /></div>

<p class="net">
PLATE 10<br />
1. <a href="#DGAG">Dark Green Fritillary</a> (under side)<br />
2. <a href="#HBAA">High Brown Fritillary</a> (under side)<br />
3. <a href="#SPAS">Small Pearl Bordered Fritillary</a> (under side)<br />
4. <a href="#GFMC">Glanville Fritillary</a> (under side)<br />
5. <a href="#PFAE">Pearl Bordered Fritillary</a> (under side)<br />
6. <a href="#HFMA">Heath Fritillary</a> (under side)<br />
</p>

<p><span class="pagenum"><a name="Page_51" id="Page_51">[Pg 51]</a></span></p>

<p id="HFMA"><span class="smcap">The Heath Fritillary</span> (<i>Melitæa Athalia</i>), <a href="#Plate_5">Plate V.</a>, Fig. 2.
&mdash;There is more black, or dark brown, on the upper surface of this
species, hence the insect looks darker in general aspect than any of
the foregoing Fritillaries. The under side, too (<a href="#Plate_10">Plate X.</a>, Fig. 6),
is marked very like <i>Cinxia</i>, but the light bands on the hind-wings
are more of a yellow tint, and the line of black spots through the
central band are wanting; the veins are also more prominent and black.
Altogether it is not difficult, on comparing the two under sides, to at
once distinguish them.</p>

<p>It is also a rather local species, being confined to the South of
England and Ireland. Both caterpillar and chrysalis are very like those
of the last species; the spines, however, are rust-coloured. It feeds
on Plantain. The perfect insect is out from May to July.</p>

<p id="CBVC"><span class="smcap">The Comma Butterfly</span> (<i>Vanessa c-Album</i>), <a href="#Plate_5">Plate V.</a>, Fig. 3.
&mdash;The tatterdemalion of the family, it looks, indeed, as if some hungry
caterpillars had been dining on its wings, and had been scared away
in the middle of the feast, leaving all sorts of rags and tatters to
attest their visit. The costal margin is the only line left entire;
all the others are deeply scalloped and indented. Two tails form
the longest projections from the middle of the outer edge of the
hind-wings. The ground colour is a uniform rusty red, varied with black
spots arranged in the same order as in other species of this genus.
There is a dark border round the outer margin of both wings. The under
side is strikingly different from the upper, and looks extraordinarily<span class="pagenum"><a name="Page_52" id="Page_52">[Pg 52]</a></span>
like a dry, withered leaf, the more so on account of its ragged
outline. In the middle of the hind-wing is a very clear comma-shaped
mark; from this the insect takes its name.</p>

<p>The caterpillar is yellowish on the back for the first five segments,
then white to the tail; under side brown. The spines are shorter than
in others of this group. It feeds on Hop, Elm, Gooseberry, Nettle,
Willow, and Sloe. The chrysalis is brown, with gilt points. The
butterfly appears in July and is rather local, being found mostly in
the Midlands and Wales. It has been recorded for Scotland, but not of
late years.</p>

<p id="LTVP"><span class="smcap">The Large Tortoiseshell Butterfly</span> (<i>Vanessa Polychloros</i>),
<a href="#Plate_5">Plate V.</a>, Fig. 5.&mdash;The ground colour of this handsome species is a
tawny yellow, marked with three large black patches along the costa of
the fore-wing; between these patches the colour is somewhat lighter.
There are four other black spots occupying the centre of the wing,
which also has a black border dotted with brown; hind-wing tawny, with
one black patch on the upper margin, but not extending inward to the
body as a similar spot does in the next species (<i>Urticæ</i>). The dark
border is continued along this wing, and is studded with blue spots
edged with a paler line. This species might be confused by the novice
with the next, but not if the two were together for comparison; then
the points in which they differ are seen to be distinct and permanent.
In <i>Urticæ</i> the light ground between the costal blotches is yellow
and the outer spot blue-white; there are only <i>three</i> black spots<span class="pagenum"><a name="Page_53" id="Page_53">[Pg 53]</a></span>
in the centre of the wing, the largest one being continued <i>down to
the margin</i>, which is not the case with the corresponding spot in
<i>Polychloros</i>. On the hind-wing the black patch continues downward
towards the bottom angle and inwards to the body, whereas this spot
neither goes in nor down in <i>Polychloros</i>. Lastly, the ground colour
in <i>Urticæ</i> is of a bright red, almost a scarlet, with the blue spots
extending into <i>both</i> wings.</p>

<p>The caterpillar of <i>Polychloros</i> is brown, spiny, and striped along the
back and sides; it feeds on Elm, Willow, and Cherry, during the summer
months. The butterfly appears in August.</p>

<p>It is by no means so common with us as its smaller and gayer cousin,
being confined mostly to the South of England. There are occasional
records for Scotland; I was present when a specimen was captured by a
friend on the coast of Argyllshire in the year 1887.</p>

<p id="STVU"><span class="smcap">The Small Tortoiseshell Butterfly</span> (<i>Vanessa Urticæ</i>), <a href="#Plate_5">Plate
V.</a>, Fig. 4.&mdash;Among the many puzzling problems that naturalists have
to solve, few present greater attractions than those relating to the
migration and hibernation of animals. The birds have long claimed the
attention of ornithologists in this respect, but the insects have in a
great measure been neglected. However, there are signs of a revival.
Migratory and hibernating butterflies are well enough represented
in the British list to supply material for much patient and useful
research. The facts about them are not all known&mdash;not by any means. We
know, or fancy we do, that the dominating factor in both cases is the
food-supply,<span class="pagenum"><a name="Page_54" id="Page_54">[Pg 54]</a></span> but that there are other and important elements to be
considered is beyond dispute. The Small Tortoiseshell is a hibernating
species, but why does it not deposit its eggs in the autumn, and go
the way of all flesh and butterflies? Could it not evolve a method of
securing its eggs so that the young caterpillars might have a fair
chance of survival when ushered into the world? Or has it found it
easier and safer to take care of these eggs itself during the long
winter months, and then, when returning spring once more brings the
Nettle-shoots above ground, launch forth upon the wing once more, to
seek and to find a home and a larder for its numerous children to be?
What would be the fate of these eggs if laid in the autumn? Who can
tell? Various enemies and agencies would be constantly at work seeking
to destroy them. The Nettles have all died down and left hardly a trace
behind. And what the rain and wind had not scattered far and wide, the
ants and beetles would account for.</p>

<p>The Small Tortoiseshell is perhaps the best known of all our coloured
butterflies, occurring, as it does, all over the country from Land&#8217;s
End to John o&#8217; Groats. It is very like the last species, though smaller
and brighter; but as I pointed out the various distinguishing marks in
describing <i>Polychloros</i>, I need not go into them again.</p>

<p>The caterpillars feed in companies when young, spreading themselves
over the Nettles as they grow older. They are black on the back with
a checkered double line along the sides; across each segment is a
row of branched spines with numerous small simple<span class="pagenum"><a name="Page_55" id="Page_55">[Pg 55]</a></span> hairs between.
The chrysalis hangs by the tail; it is grey-brown, with gilt points.
The eggs are laid in May, and the butterfly appears towards the end
of June, and continues more or less abundant until October, when the
females retire to some safe corner in old walls or outhouses, there to
await the passing of the winter.</p>

<p><span class="pagenum"><a name="Plate_11" id="Plate_11">[Plate 11]</a></span></p>

<div><img class="img_style" id ="Plate11" src="images/im083b.jpg" alt="Plate 11" /></div>

<p class="net">
PLATE 11<br />
1. Larva of <a href="#LWPB">Large Garden White</a><br />
2. Pupa of <a href="#LWPB">Large Garden White</a><br />
3. <a href="#Page_5">Ichneumon</a> Cocoons<br />
4. Dipterous Parasite of <a href="#LWPB">Large G. White</a><br />
5. <a href="#Page_5">Ichneumon</a> Flies hatched from 3<br />
6. Pupa of <a href="#STVU">Small Tortoiseshell</a><br />
7. Larva of <a href="#STVU">Small Tortoiseshell</a><br />
8. Larva and Pupa of <a href="#GFMC">Glanville Fritillary</a><br />
9. Larva of <a href="#GFMA">Greasy Fritillary</a><br />
</p>

<p id="PBVI"><span class="smcap">The Peacock Butterfly</span> (<i>Vanessa Io</i>), <a href="#Plate_5">Plate V.</a>, Fig. 7.&mdash;This
beautiful species is too well known, and too distinct in its colour and
pattern to require any written description.</p>

<p>Few butterflies possess a name which so aptly describes them, and
to make a mistake in its identification is hardly possible. All its
efforts seem to have been exspended on the ornamentation of the upper
surface, for the under side has hardly an attractive note. Dark and
sombre though it be, it is well adapted for concealment during its
period of hibernation.</p>

<p>The caterpillar is black, with bands of white dots round each segment,
and the spines are larger than in the Small Tortoiseshell. It feeds
in batches on Nettles, from June to August. The chrysalis inclines to
green and has burnished spots. This species is common in England, and
is occasionally met with in the South and West of Scotland.</p>

<p id="CBVA"><span class="smcap">The Camberwell Beauty</span> (<i>Vanessa Antiopa</i>), <a href="#Plate_5">Plate V.</a>, Fig. 6.
&mdash;Why does not this handsome butterfly settle down amongst us, increase
and multiply, and thus swell the little band of real natives who gladden
the eye of the entomologist on his country rambles? It is a common
insect over most of the Continent, and<span class="pagenum"><a name="Page_56" id="Page_56">[Pg 56]</a></span> most abundant in North America,
well up into Canada, where the winter is extremely severe. We have the
food-plant in abundance, yet it is questionable if ever the Camberwell
Beauty has been found in any but the winged state in this country.
Records there are of its capture year after year, but there never seems
to be progeny left by these occasional visitors. The wings are a dark
chocolate-brown, bordered with creamy white. Between the brown and the
white is a broad black band studded with blue spots; there are also
two white spots on the costal margin near the tip of the fore-wing. It
measures from 2-1/2 to 3-1/2 inches in expanse, North American specimens
being the largest.</p>

<p>The caterpillar is black, with white dots, and has a row of red spots
along the back. The pro-legs are also red, spines black. It feeds on
the Willow. The chrysalis is brown, with darker spots; its abdominal
points are sharp and angular. Single specimens of this species occur in
most seasons from August to October, generally in the South, but it has
been recorded for Scotland on several occasions.</p>

<p id="RAVA"><span class="smcap">The Red Admiral</span> (<i>Vanessa Atalanta</i>), <a href="#Plate_8">Plate VIII.</a>, Fig. 1.&mdash;He
must have been a poet who first conceived so appropriate a name for
this gallant rover. Possibly he was living long ago&mdash;</p>

<p>
<span style="margin-left: 1em;">&#8220;When Britons truly ruled the waves,</span><br />
<span style="margin-left: 1em;">In good Queen Bess&#8217;s glorious days,&#8221;</span><br />
</p>

<p>or later, when Nelson&#8217;s old &#8220;wooden walls&#8221; spread their bellying sails
to catch the breeze. Those were days of romance. Fancy the Admiral of a<span class="pagenum"><a name="Page_57" id="Page_57">[Pg 57]</a></span>
super-Dreadnought&mdash;that big, black abortion of coal and iron&mdash;being
associated with a butterfly! We would rather peer into the future and
elect our aerial commander the &#8220;Red Admiral&#8221; of a fleet of graceful
aeroplanes. This would certainly be more appropriate.</p>

<p><span class="pagenum"><a name="Plate_12" id="Plate_12">[Plate 12]</a></span></p>

<div><img class="img_style" id ="Plate12" src="images/im088a.jpg" alt="Plate 12" /></div>

<p class="net">
PLATE 12.<br />
1. <a href="#SHCP">Small Heath</a><br />
2. <a href="#GHTR">Green Hairstreak</a><br />
3. <a href="#PHTQ">Purple Hairstreak</a> (Female)<br />
4. <a href="#WLTW">White-letter Hairstreak</a><br />
5. <a href="#BHTP">Black Hairstreak</a><br />
6. <a href="#BHTB">Brown Hairstreak</a> (Female)<br />
7. <a href="#LCPD">Large Copper</a> (Male)<br />
8. <a href="#SCPP">Small Copper</a><br />
9. <a href="#LTLB">Long-tailed Blue</a><br />
10. <a href="#SSLA">Silver-studded Blue</a> (Male)<br />
11. <a href="#BALA">Brown Argus</a><br />
12. <a href="#CBLI">Common Blue</a> (Male)<br />
</p>


<p>The colours of this butterfly on the upper surface are singularly bold,
striking, and, withal, simple. They furnish a good test of colour
discrimination. I have heard them spoken of as &#8220;jet black,&#8221; &#8220;intense
black,&#8221; or &#8220;velvety black.&#8221; If you take a specimen into a good light,
you will see that the whole area enclosed by the scarlet bands is
a deep coffee-brown, while outside the band, on the fore-wing, the
colour is black splashed with white, and there is a blue streak near
the outer margin. The under side is a marvel of beauty too complex and
wonderful for cold print. Common though this insect is all over our
island from August to chill October, who can say that he has discovered
his &#8220;retreat and hiding-place&#8221; from the storms and frosts of winter?
Indeed, there are those who boldly assert that the Red Admiral <i>does
not</i> hibernate with us at all, and, consequently, we are indebted each
year for our supply to spring visitors from the Continent, which may be
the reason why in some years it is more abundant than in others.</p>

<p>The caterpillar is a powdery yellow-grey in colour, sometimes inclining
almost to black; a line of white spots appears on each side; there
are some darker markings along the back, and a row of branched spines
light in colour crosses the middle of each segment. You<span class="pagenum"><a name="Page_58" id="Page_58">[Pg 58]</a></span> will generally find it hiding within a curled Nettle-leaf during
the day. The chrysalis is grey, with a few shining points.</p>

<p id="PLVC"><span class="smcap">The Painted Lady</span> (<i>Vanessa cardui</i>), <a href="#Plate_8">Plate VIII.</a>, Fig. 2, is
quite a suitable companion for a "Red Admiral," and they are often seen
in company, although <i>cardui</i> is the earlier on the wing by at least a
fortnight, and often a month. The ground colour of the upper surface is
a rosy orange, varied with black and brown markings, while the white
spots near the tip of the fore-wing are almost similar to those of the
Red Admiral. Here, too, the under side is an exquisite bit of painting.
It reminds one of a frosted window done in harmonious secondary
colours. No doubt this subtle pattern must be protective, for you
will notice that when the insect is at rest with the wings shut, the
bright portion of the under side of the fore-wing is concealed. This is
decidedly a migratory species, and it is an open question whether it
hibernates in Britain. In Scotland we never see it until the autumn,
and occasionally it arrives in fair numbers. We had one extraordinary
swarm about the year 1880; I remember being on holiday at the time on
the Island of Cumbrae, in the Firth of Clyde. <i>Cardui</i> was everywhere,
and even fighting for possession of the Thistle-tops. In 1911 I had to
be content with the sight of two specimens in Arran, but I heard of
several more.</p>

<p>Like the other <i>Vanessa</i> caterpillars, the larva of this species is
thorny, brown, and bears lines and spots of yellow. It may be found on
Thistles and<span class="pagenum"><a name="Page_59" id="Page_59">[Pg 59]</a></span> Nettles in May and June. The chrysalis is like that of
<i>Atalanta</i> in colour, but hardly so stout.</p>

<p id="WALS"><span class="smcap">The White Admiral</span> (<i>Limenitis Sibylla</i>), <a href="#Plate_8">Plate VIII.</a>, Fig. 4.
&mdash;This butterfly is almost black on the upper surface, relieved by white
bars and spots, and there is a row of dense black spots near the outer
margin of the hind-wings. These white marks are carried through the wings
to the under side, but the ground there is formed of various shades of
brown, with some black dots and pencillings&mdash;while on the under surface
of the body, and spreading out from it on to the wings, is a considerable
region of a light sky-blue tint, very pleasing to the eye.</p>

<p>The caterpillar feeds on Honeysuckle, and is a lively green; the spines
are reddish, those on the third, fourth, and sixth segments being
larger than the others. There is also a white line bordered with brown
along each side. The head is also red, with two lines of white down the
face. The chrysalis is dark green, with silvery dots and lines, and
bears grotesquely swollen lumps. This is a butterfly that I am afraid
is becoming scarcer year by year; it is confined to the South. It is
out in July.</p>

<p id="PEAI"><span class="smcap">The Purple Emperor</span> (<i>Apatura Iris</i>), <a href="#Plate_8">Plate VIII.</a>, Fig. 5, is
undoubtedly the king of the forest glade. Wearing the regal purple,
he looks down upon the world from his lofty throne on the top of some
lordly oak. Somehow the build of this fine insect when seen in the hand
cannot fail to impress the beholder with a sense of muscular power. The
thorax is long, broad,<span class="pagenum"><a name="Page_60" id="Page_60">[Pg 60]</a></span> and deep&mdash;more so than in any other British
butterfly&mdash;and the abdomen, head, and antennæ are in like proportion.
The wings are ample and in shape smart and serviceable. No loose scales
or fluffy hairs soften the firm compactness of his whole bearing. Dark
brown and purple alternate with the changing light all over the upper
surface; a dash or two of red, and one eye-spot on the bottom angle
of the hind-wing, with a bar and a few spots of white, are the main
additions to the changing hues of the purple. The under side has a
daring lightning flash of blue-white on a brown and olive ground on the
hind-wing. The fore-wing (under side) has various spots of black and
white on a darker ground, while there is also one eye-spot near the
outer angle. He is said to have a fondness for carrion, and this queer
taste is sometimes his undoing, as he is more readily captured when
indulging his appetite than when soaring round the crown of some lofty
oak.</p>

<p>But it is better still to seek for the caterpillars. These may be found
on low Sallows or Poplars. They are green, dusted with white, and have
oblique dashes of yellow on the sides; they taper considerably towards
the tail, while the head is adorned with a pair of horns. The chrysalis
is similarly coloured while alive, but when its inhabitant is gone
the colour vanishes with it, and all that remains looks like a little
bit of crumpled tissue paper. It may be found suspended to the under
side of a leaf of the food-plant. The butterfly is out in July in the
southern counties, and is oftener seen than captured.</p>

<p><span class="pagenum"><a name="Page_61" id="Page_61">[Pg 61]</a></span></p>
<p id="MWMG"><span class="smcap">The Marbled White Butterfly</span> (<i>Melanargia Galathea</i>), <a href="#Plate_9">Plate
IX.</a>, Fig. 1.&mdash;We now come to a group of butterflies (the <i>Satyridæ</i>)
quite the reverse in build and habits from the Emperors and Admirals.
Of medium or small size, though the wings are ample, the body is small
and the muscular power is never great; hence they are soft and downy,
never fly far at a stretch, and are, although many of them common, very
local in their habits.</p>

<p>And the Marbled White is no exception to the group. His name may
suggest something hard, polished, and durable, yet he is anything but
that. I wonder what his name might have been had he been common north
of the Tweed, and not known in the South? To Sir Walter Scott, James
Hogg (the Ettrick Shepherd), or Professor Blackie, the similarity of
the black and white wings to the checking and soft, embracing folds of
their own beloved tartan plaids would at once have appealed to their
imagination, and henceforth they would have alluded to him as the
&#8220;Shepherd&rsquo;s Plaid&#8221; butterfly.</p>

<p>Creamy-white, with grey and black checking, and a few eye-spots on the
black band of the hind-wings complete his simple scheme of colour. The
under side is somewhat similar to the upper. Although common enough
where it is found, it is a very local and stay-at-home butterfly.</p>

<p>The caterpillar is a grass-feeder, and is green, with a red head and
tail. It tapers considerably towards both extremities. They are very
small when they hibernate. The butterfly is out in July and August.</p>

<p><span class="pagenum"><a name="Page_62" id="Page_62">[Pg 62]</a></span></p>
<p id="MREE"><span class="smcap">The Mountain Ringlet Butterfly</span> (<i>Erebia Epiphron</i>), <a href="#Plate_9">Plate IX.</a>,
Fig 2.&mdash;It is strange that this fragile little fellow should choose
the rough mountainside for his home. In a boggy hollow of Ben Lomond,
nearly 2,000 feet above the sea, buried in snow almost the whole winter
through, I know a colony of this butterfly which lives and flourishes
under these seemingly impossible conditions. Doubtless it could be
found on many more of our Highland hills.</p>

<p>The wings are a dark, fulvous brown, with an inconstant red bar near
the outer edge of both wings, and on this rusty bar are usually a few
small eye-spots, sometimes absent, or reduced to mere specks. The under
side is almost similar. It is a very easily damaged little creature,
requiring great care in handling, and I may add that in catching it is
always advisable to carefully select your specimens <i>on the ground</i>, as
quite a large percentage always appear to be rubbed, so soon do they
become unfit for the cabinet even in the height of their season, which
occurs during the first fortnight of July.</p>

<p>The caterpillar is said to be green, and feeds upon various grasses. It
is also found on the mountains of Cumberland and Westmorland.</p>

<p id="NBEA"><span class="smcap">The Scotch Argus Butterfly</span> (<i>Erebia Æthiops</i>), <a href="#Plate_9">Plate IX.</a>,
Fig. 3.&mdash;Like all butterflies, the Scotch Argus is seen at its best in
its native haunts. You feel it has a subtle kind of association with
its surroundings that defies definition. Seeing this species flirting
about in dozens in a dell where the air is heavily<span class="pagenum"><a name="Page_63" id="Page_63">[Pg 63]</a></span> laden with the
perfume of Bog-myrtle and Honeysuckle, and where dragon-flies, bees,
hover-flies, wasps, and ants, raise a drowsy hum dear to the ear of
the entomologist, not to mention the hordes of bloodthirsty little
midges, tends to the formation of a mental impression, which we always
associate with this beautiful butterfly. It takes strange notions, too,
at times. I have found it often &#8220;at home&#8221; as described above, and,
again, I have come upon it solitary and alone on the bare hillside, far
from the madding colony amongst which it was born. Five such wanderers
I once encountered in a single day in August. All were on the move,
either seeking a lost home or lover, or possibly pastures new.</p>

<p>The breeding ground is generally some sheltered glade or open corner of
a wood. The butterfly is coloured a beautiful dark, velvety brown, with
a broad, irregular tawny red band near the outer margin of both fore-
and hind-wings. Within this band on the fore-wings are three black
spots, each having a tiny white spot in its centre, and the hind-wings
have in most cases a similar adornment; but as these spots are subject
to great variation, always aim at securing a good row for your cabinet
in order to show as many variations as you can find.</p>

<p>The under sides of the sexes differ from each other and are
distinctive. In the female the under side of the fore-wing is marked
very much the same as the upper side, but the whole colour scheme is
lighter, while the hind-wings are a lighter brown, with a pale lavender
band, distinctly iridescent and with just a<span class="pagenum"><a name="Page_64" id="Page_64">[Pg 64]</a></span> trace of spots. The male,
though nearly the same in markings, is very much darker.</p>

<p>The caterpillar is a grass-feeder, and is green, with some lighter and
darker stripes. It is very like the grass it lives amongst. The eggs
are laid in the autumn, and the young caterpillars hibernate.</p>

<p id="SWPA"><span class="smcap">The Speckled Wood Butterfly</span> (<i>Pararge Ægeria</i>), <a href="#Plate_9">Plate IX.</a>,
Fig. 4.&mdash;There must be something peculiar about this butterfly, which
always reminds me of a snake; it is curious how such an idea gets
into one&#8217;s head and sticks there. I have a lot of preserved home and
foreign snakes, and not a few of them are checkered and marked like
this butterfly&#8217;s wings; one large skin of a boa constrictor bears
a remarkable resemblance both in colour and spots. Nature seems to
delight in these eyelike markings&mdash;you will find them on the trout, the
peacock, the leopard, and on certain beetles, flowers, and birds&#8217; eggs.
Wherever you find them they are always beautiful and interesting, and
have a certain protective use.</p>

<p>The Speckled Wood is more easily recognized than described. The upper
side is of a dull brown, spotted with pale yellow, or (as in some
northern specimens I have taken) with white. There is one eye-spot near
the tip of the fore-wing, and a row of three, sometimes four, similar
spots in a submarginal row on the hind-wings. The under side is richer
and warmer in colour, having a purple tinge, while the eye-spots of
the hind-wings are nearly obsolete, but the spot on the fore-wing
is, if anything, brighter. It is a fairly common species,<span class="pagenum"><a name="Page_65" id="Page_65">[Pg 65]</a></span> and
loves quiet, shady lanes on the edge of woodlands. In the South it is
double-brooded. The female is larger and brighter than the male. The
caterpillar is a grass-feeder, and is green, with lighter stripes. The
butterfly is out from May to August.</p>

<p><span class="pagenum"><a name="Plate_13" id="Plate_13">[Plate 13]</a></span></p>

<div><img class="img_style" id ="Plate13" src="images/im097a.jpg" alt="Plate 13" /></div>

<p class="net">
PLATE 13.<br />
1. <a href="#ABLB">Adonis Blue</a> (Male)<br />
2. <a href="#CHLC">Chalk-hill Blue</a> (Male)<br />
3. <a href="#LBLM">Little Blue</a><br />
4. <a href="#HBLA">Azure Blue</a><br />
5. <a href="#LBLA">Large Blue</a><br />
6. <a href="#DBNL">Duke of Burgundy Fritillary</a><br />
7. <a href="#GSSM">Grizzled Skipper</a><br />
8. <a href="#DSNT">Dingy Skipper</a><br />
9. <a href="#SSHT">Small Skipper</a><br />
10. <a href="#LSHA">Lulworth Skipper</a><br />
11. <a href="#LSHS">Large Skipper</a> (Female)<br />
12. <a href="#PSHC">Pearl Skipper</a> (Male)<br />
13. <a href="#CSCP">Checkered Skipper</a><br />
</p>

<p id="WBPM"><span class="smcap">The Wall Brown Butterfly</span> (<i>Pararge megæra</i>), <a href="#Plate_9">Plate IX.</a>,
Fig. 5.&mdash;A rather smaller butterfly than the last, with the same
number and arrangement of the eye-spots. The ground colour is,
however, a light tawny brown, with dark brown markings. There is
a broad diagonal bar across the fore-wings of the male. All the
wings are bordered with brown. The female has two zigzag lines in
place of the bar, and consequently has a lighter appearance; she is
usually a bit larger than her mate. The under side of the hind-wings
is a beautiful study in greys and browns, with the dainty little
eye-spots double ringed. This species is common on waste lands and
roadsides throughout the country; it is local in Scotland, but
abundant where found, especially in Ayrshire. There are two broods
only in the South.</p>

<p>The caterpillar is light green, with lines on the back and sides, and
may be swept from grasses with the net in midsummer. The chrysalis is
short and stout, and is found suspended by the tail to a strong grass
stem.</p>

<p>The butterfly loves to rest on walls and stones which have been warmed
by the sun; hence the name the &#8220;Wall Brown.&#8221;</p>

<p id="GBSS"><span class="smcap">The Grayling Butterfly</span> (<i>Satyrus Semele</i>), <a href="#Plate_9">Plate IX.</a>, Fig. 6.
&mdash;This fine butterfly is larger and<span class="pagenum"><a name="Page_66" id="Page_66">[Pg 66]</a></span> bolder in flight than any other
of this group in our country. But you must always remember that
butterflies love the sunshine, and without its cheering presence they
are all very dull fellows indeed. Hence it is that a butterfly may
appear, and really is, difficult to catch on a bright, warm day; yet
it may fall an easy victim, and give but indifferent sport on a dull
one. The Grayling has a strong partiality for living near the sea,
and is found all along the west coast of Scotland, whether it be on a
rock-bound shore or in a sandy, sheltered bay. During July and August
one is pretty sure to encounter the Grayling sporting along just above
high-water mark, and, not infrequently, whole colonies of them. The
lichen-covered rocks above the shore are his favourite resting-place,
and here he can sit and bask in the sun, and once he has closed his
wings he may be said to have disappeared, so beautifully does the under
side of his wings blend with the colour of the surrounding rocks. He
shows a certain amount of wisdom, too, at times, for if you make a
stroke at him with a net and miss, he is off to sea, flit-flitting just
above the water, and making a wide detour before coming back to land.</p>

<p>The wings are brown, with an irregular light tawny band, in which, on
the fore-wing, are two eye-spots, and on the hind-wing only one. But
the finest ornamentation is on the under side of the hind-wings, which
bear a strong resemblance to a granite rock speckled with lichens.</p>

<p>The caterpillar, I think, feeds mostly at night, as I<span class="pagenum"><a name="Page_67" id="Page_67">[Pg 67]</a></span> have found it
during the day under stones in hilly districts near the sea. It is
variable in colour&mdash;brownish to black, with a few lighter lines on the
back and sides, and it has a dirty putty-colour on the under side. It
feeds on grass in May. The butterfly is out from July to September. It
appears in August in Scotland.</p>

<p id="MBEJ"><span class="smcap">The Meadow Brown Butterfly</span> (<i>Epinephele Janira</i>), <a href="#Plate_9">Plate IX.</a>,
Fig. 7.&mdash;Perhaps this is the commonest of all our brown butterflies.
On roadside or hillside, moor or meadow, one can hardly fail to
notice this homely brown insect all through the summer rambles. The
males are smaller and dingier than the females. They have an obscure
reddish patch on the fore-wing which, with an eye-spot, relieves the
upper surface of dark brown. The females are brighter and often more
variable, the fulvous patch on their fore-wings being large and bright,
and even extending into a band on the hind-wings. There is occasionally
an inner patch of suffused yellow on the centre of the fore-wings; the
under side is a paler brown, with a decided band of grey-brown on the
hind-wing, which is also slightly scalloped.</p>

<p>The caterpillar is a delicate green, with a white line on either side,
and may be swept from moorland grasses in May and June. The chrysalis
is short and dumpy; pale papery grey, rather fragile, and is hung up by
the tail to a grass-stem. The butterfly is out practically all through
the summer.</p>

<p id="SBET"><span class="smcap">The Small Meadow Brown</span> (<i>Epinephele Tithonus</i>), <a href="#Plate_9">Plate IX.</a>,
Fig. 8.&mdash;Also a common species, but does<span class="pagenum"><a name="Page_68" id="Page_68">[Pg 68]</a></span> not so range far north.
Wings, a bright tawny red inclining to yellow, bordered with dark
brown, with an indistinct diagonal bar across the wings in the male.
There is also a black spot near the tip of the fore-wings containing
two tiny white spots; occasionally there are two small eye-spots on
the hind-wings also. The under side of the hind-wing is shaded with
red-brown and pale ochre, and bears a few small white spots surrounded
by red rings. Under side of the upper wing is pale tawny yellow with
outer edge dark; there is a black spot at the tip with <i>two</i> white dots
in it.</p>

<p>The caterpillar varies from green to grey-brown; there is a dark red
line along the back, and two light lines run along each side. It is
a grass-feeder, and prefers a drier situation than the last species.
Perhaps this is the reason for it being found in Ayrshire, the driest
and sandiest county in Scotland. July and August are the butterfly&#8217;s
months.</p>

<p id="RBEH"><span class="smcap">The Ringlet Butterfly</span> (<i>Epinephele Hyperanthus</i>), <a href="#Plate_9">Plate IX.</a>,
Fig. 9.&mdash;This is a common and not very attractive-looking butterfly.
Its colours, if it can be said to have any, are dingy in the extreme.
The upper surface is a dark sooty-brown hardly relieved by a few
faint eye-spots, which are very small and not always present. A
dirty white fringe completes the upper side. The under side affords
some compensation, however, for here we have the ringlets in some
variety&mdash;pale yellow for the outer ring, which encloses black with a
white spot in the centre. They are arranged three on the upper wing and
five on the lower. They<span class="pagenum"><a name="Page_69" id="Page_69">[Pg 69]</a></span> vary in size, as will be seen from the figure
(<a href="#Plate_14">Plate XIV.</a>, Fig. 9). It is not a very lively insect; it frequents dry
pasture-fields in Scotland, preferring those bordering the sea.</p>

<p>The caterpillar is like the last species, but a greener grey; it feeds
on grasses. The butterfly is out in July. When you do happen upon this
species, keep a sharp lookout for varieties, as it has quite a range of
well-known &#8220;sports&#8221;; the variation is mostly on the under surface.</p>

<p id="MRCT"><span class="smcap">The Marsh Ringlet</span> (<i>Cænonympha Typhon</i>), <a href="#Plate_9">Plate IX.</a>, Fig. 10.
&mdash;This insect has to be sought for on the swampy moorlands and
mountains of the North. It is of a dingy fawn-colour, sometimes
brighter, often as if it had been held over the fire and &#8220;Peat-reekit.&#8221;
It is somewhat remarkable what a number of creatures inhabiting this
same region have gradually come to assume a similar coloration. Many of
the Highland cattle on these moors have this dirty tawny-yellow tint;
the deer and the hare find protection under the same guise. The upper
surface of the Marsh Ringlet is varied with a few eye-spots, though
I possess specimens with no spots at all, while others have four on
each of the hind-wings and two on each of the fore-wings. The under
side is generally better marked by eyes, six forming a row round the
outer margin of each hind-wing, of which the first and last are usually
the largest; fore-wing under side&mdash;two eye-spots, the one nearest the
tip being the larger. There is also a light bar across this wing, and
this is continued on to the hind-wing,<span class="pagenum"><a name="Page_70" id="Page_70">[Pg 70]</a></span> where it broadens out and is
irregular and often interrupted. The ground colour here is a subdued
green-grey, getting lighter towards the fringe. Females have more ample
and rounded wings than the males. I find the most comfortable way to
hunt this butterfly is with bare feet and legs, and the trousers well
tucked up, which will perhaps convey some idea of the nature of the
ground it loves to flit over. Splash, splash you go over the <i>Sphagnum</i>
and Cotton-grass, Heather and Marsh Wortleberry, while overhead the
eerie cries of the curlew and the lapwing remind the naturalist that
there are many young families hidden amongst the Heather, who will
rejoice when they see the last of him and that fearful net of his.</p>

<p>The caterpillar is green, with white lines, and feeds on Cotton-grass
in May. The butterfly appears towards the end of June.</p>

<p id="SHCP"><span class="smcap">The Small Heath Butterfly</span> (<i>Cænonympha Pamphilus</i>), <a href="#Plate_12">Plate
XII.</a>, Fig. 1.&mdash;This can be best described as a smaller and brighter
edition of <i>Typhon</i>; occasionally a <i>large</i> specimen may even be
mistaken for a <i>small Typhon</i>, but you can always tell the smaller
species by the presence of only one eye-spot on the tip of the
fore-wing, and no eye-spots anywhere else. Its habits, too, are
different, preferring, as it does, a much drier and more pastoral
country to sport over. And its range is also wider, being found all
over the country from June till September.</p>

<p>The caterpillar is green and a grass-feeder. I have swept it from grass
in August.</p>

<p><span class="pagenum"><a name="Page_71" id="Page_71">[Pg 71]</a></span></p>

<p id="BHTB"><span class="smcap">The Brown Hairstreak</span> (<i>Thecla betulæ</i>), <a href="#Plate_12">Plate XII.</a>, Fig. 6.
&mdash;There are five British species included in the very distinct group
of interesting little butterflies, to which this species belongs. All
of them are nearly black on the upper surface, but the undersides
are exceedingly chaste in pattern, if not showy in colour. The Brown
Hairstreak is the largest of the five. The male is a dark brown
relieved by a lighter spot edged with black on the fore-wing, and
the bottom angle of the hind-wing and the little tails are orange.
The female has an orange bar across the fore-wing. The under side
(<a href="#Plate_14">Plate XIV.</a>, Fig. 7) is a tawny orange inclining to deep orange at the
margins; a double white irregular line edged with black runs across
the hind-wings, and between these lines the tawny shade is darker; the
fringe is white.</p>

<p>The caterpillar is green, marked with diagonal yellow lines and tapers
considerably towards each extremity. It feeds on Birch and Blackthorn.
Though by no means a common insect, it is found in a great many
localities from North to South of England, but not in Scotland. The
butterfly is out in August.</p>

<p id="WLTW"><span class="smcap">The White-Letter Hairstreak</span> (<i>Thecla w-album</i>), <a href="#Plate_12">Plate XII.</a>,
Fig. 4.&mdash;A smaller and, on the upper surface, a blacker insect than the
last. Excepting for a small indistinct spot in the centre, and near the
outer margin of the fore-wing, the upper surface is devoid of markings
of any kind. The under side, however, provides all the distinctive
features necessary for identification. The colour is a cool brown-grey,
the<span class="pagenum"><a name="Page_72" id="Page_72">[Pg 72]</a></span> fore-wing being traversed by a white line; the hind-wing has a
similar white line, which forms a <span style="font-size: 1.2em;">W</span> at the basal angle; under it is a
broad orange scalloped band, edged with black and white; the extreme
outer edge is black, and this black edging scallops into the orange
band. Tail black.</p>

<p>The caterpillar feeds on Elm; is pale green, with yellow bars and two
rows of whitish humps along the back. It may be got by beating the Elm
in early summer. The Butterfly appears in July, but is far from common,
York being about its northern limit.</p>

<p id="BHTP"><span class="smcap">The Black Hairstreak</span> (<i>Thecla pruni</i>), <a href="#Plate_12">Plate XII.</a>, Fig. 5.
&mdash;About the same size as the last, but many individuals are smaller.
The ground colour is almost black, but near the tail are two or three
conspicuous orange spots, which are not present in <i>w-Album</i>. The
orange band on the under side of the hind-wing is much bolder and is
edged with black spots on <i>both</i> sides, the inner row of spots being
partially ringed with white; the white hairstreaks are fainter and
slightly interrupted. This is the rarest of the group, and confined to
a few localities in the South and South-East.</p>

<p>The caterpillar is green, with yellow spots and lines; it is found on
Sloe and Oak. The perfect insect is out in July.</p>

<p id="PHTQ"><span class="smcap">The Purple Hairstreak</span> (<i>Thecla quercus</i>), <a href="#Plate_12">Plate XII.</a>, Fig. 3.
&mdash;The commonest and most widely distributed of the Hairstreaks extending
well into Scotland where, however, it is not common. The upper surface
in the male is shot with purple, while the female<span class="pagenum"><a name="Page_73" id="Page_73">[Pg 73]</a></span> has a patch on
either fore-wing of a still more pronounced sheen. The under side (<a href="#Plate_14">Plate
XIV.</a>, Fig. 8) is a cool grey; the "hairstreak" is white and strongly
defined by an inner edging of dark brown. There are also two orange
eye-spots near the tail, which in this species is rather small.</p>

<p><span class="pagenum"><a name="Plate_14" id="Plate_14">[Plate 14]</a></span></p>

<div><img class="img_style" id ="Plate14" src="images/im108b.jpg" alt="Plate 14" /></div>

<p class="net">
PLATE 14<br />
1. Pupa of <a href="#RAVA">Red Admiral</a><br />
2. Larva of <a href="#RAVA">Red Admiral</a><br />
3. Larva of <a href="#SWPR">Small White</a><br />
4. <a href="#ESHL">New Small Skipper</a><br />
5. Pupa of <a href="#SWPR">Small White</a> (showing hole through which ichneumons emerged)<br />
6. Larva of <a href="#WALS">White Admiral</a><br />
7. <a href="#BHTB">Brown Hairstreak</a> (under side)<br />
8. <a href="#PHTQ">Purple Hairstreak</a> (under side)<br />
9. <a href="#RBEH">Ringlet</a> (under side)<br />
</p>

<p>The caterpillar is a reddish-brown and grey mixture, with a lighter
angular pattern along the back, and a light line along the sides. It
feeds on Oak.</p>

<p>I once came upon a small colony of this little butterfly flying round
some Oak-trees in Argyllshire, but not one of them came lower than 15
feet from the ground, and after trying a variety of expedients I had to
retire discomfited without a single capture. A visit to the same spot
on subsequent days failed to reveal a single specimen. August was the
month. In the South it is out in June.</p>

<p id="GHTR"><span class="smcap">The Green Hairstreak</span> (<i>Thecla rubi</i>), <a href="#Plate_12">Plate XII.</a>, Fig. 2.
&mdash;The smallest of the British Hairstreaks and a fairly common species.
Deep dingy brown above, bright emerald-green below, traversed by white
hairstreaks, although in some specimens I have taken these white lines
are absent. An elusive little butterfly, as when it settles amongst
green herbage with the wings closed it is rendered almost invisible, so
well does it harmonize with its surroundings.</p>

<p>The caterpillar is green, spotted and striped with yellow; it feeds on
Bramble and Broom. The butterfly is out in June generally, but I have
found it in the closing days of May in a favourable season. In the<span class="pagenum"><a name="Page_74" id="Page_74">[Pg 74]</a></span>
South a second brood appears in August. It reaches as far north as
Perthshire, and is frequently met with in the West Highlands.</p>

<p id="LCPD"><span class="smcap">The Large Copper Butterfly</span> (<i>Polyommatus Dispar</i>), <a href="#Plate_12">Plate XII.</a>,
Fig. 7.&mdash;I am afraid there is now only one British locality where this
fine butterfly can be successfully pursued. Strange to say it is not
one of the few places where it was found so abundantly a century ago.
Neither is it any use going after it there with a net, or any other of
the usual appliances.</p>

<p>The correct place and method are no great secret, being, as it is, in
the very heart of London&mdash;to wit, Stevens&#8217; Auction Rooms, King Street,
Covent Garden. A cheque-book there is a more reliable, and, if properly
handled, sure means of bringing a specimen into one&#8217;s collection. I
don&#8217;t suppose there is anybody now alive who remembers having seen the
Large Copper flitting about its native Fen lands so long ago as 1850 or
thereabout, for the precise date is difficult to discover. The Large
Copper has become as extinct as the dodo or the great auk. Fortunately,
many specimens are still to be seen in old and well-preserved
collections, and not a few of these have already passed through the
hands of the auctioneer. There are various Continental &#8220;Coppers&#8221; which
more or less resemble the &#8220;dear departed.&#8221; And it is as well that the
points of difference should be well known, as these foreigners can be
had for a few pence. <i>Dispar</i> sells at as many pounds.</p>

<p>The male and female differ very much from each other, the male being
a clear scarlet copper tint, with<span class="pagenum"><a name="Page_75" id="Page_75">[Pg 75]</a></span> black margins and a small black
spot in the centre of the fore-wing. The female is larger and not so
brilliant; the black marginal band on the fore-wing is broader, and
has a row of black spots in addition to the central black spot. The
hind-wings are much dingier, except for a brighter band round the
outer margin next the black outline. It was out in July and August in
the Fen lands of the south-eastern counties. Various causes have been
assigned as the reason for its disappearance. Draining of, and burning
rubbish on, these wastes, and the constant persecution the insect had
to endure from mercenary natives who, once they discovered there was
money in it&mdash;and the more money, doubtless, the scarcer it became&mdash;all
lent their quota of assistance towards finally exterminating this fine
butterfly.</p>

<p id="SCPP"><span class="smcap">The Small Copper Butterfly</span> (<i>Polyommatus Phlæas</i>), <a href="#Plate_12">Plate
XII.</a>, Fig. 8.&mdash;Less in size but hardly less brilliant in colour, the
Small Copper is not likely to share the fate of its larger relative. A
lively, restless, little imp it is, and has well earned the title of
&#8220;the flea,&#8221; by which it is known in some districts.</p>

<p>As it is the &#8220;only Copper we possess now,&#8221; a detailed description is
unnecessary, but I would direct the young collector&#8217;s attention to the
fact that there are some nice variations of this common little species
apt to be overlooked, perhaps the most striking being a white form,
and another and commoner one having a row of blue spots on the upper
surface of the hind-wings.</p>

<p>The caterpillar feeds on various species of Sorrel, and is green with
three red lines.</p>

<p><span class="pagenum"><a name="Page_76" id="Page_76">[Pg 76]</a></span></p>
<p>There are several broods in the year, but it is generally more abundant
in the autumn. Found everywhere.</p>

<p id="LTLB"><span class="smcap">The Long-Tailed Blue</span> (<i>Lycæna Bætica</i>), <a href="#Plate_12">Plate XII.</a>, Fig. 9.
&mdash;While there is no doubt this lovely little blue has been repeatedly
taken on our shores, the fact remains that we must still regard it as
an occasional visitor only. It may, and we all hope it will, yet be
classed amongst our resident fauna. From what we know of it, it seems to
have a more than usually wide range; it is recorded for Europe, Africa,
Western Asia, East Indies, and Australia. The male is a deep blue, with
two black spots just above the tails; the female shows more brown. The
under side is quite different from that of any of our native blues,
being barred and spotted in white, and two shades of fawn-brown, with
two green spots near the tail. A lookout for it may be kept all along
our south coast during July and August.</p>

<p id="SSLA"><span class="smcap">The Silver-Studded Blue</span> (<i>Lycæna Ægon</i>), <a href="#Plate_12">Plate XII.</a>, Fig. 10.
&mdash;In all of the group to which this insect belongs, numbering about ten
species, the males differ very much in colour, especially on the upper
surface, from the females. The males are nearly always blue of various
shades, and the females brown and blue in varying proportions.</p>

<p>In <i>Ægon</i>, the male is a warm violet-blue, the outer margins being
bordered with black. The female is brown shot with blue, which becomes
more intense near the outer margin of the hind-wings, where there is
a row of orange spots touching an outer row of black spots; but these
two rows may be nearly or altogether<span class="pagenum"><a name="Page_77" id="Page_77">[Pg 77]</a></span> absent. The under side (<a href="#Plate_15">Plate
XV.</a>, Fig. 4) is banded with orange and black-spotted, the black spots
being ringed with white. The silver studs are on the outer margin
of the orange band, principally on the hind-wings. This is a fairly
abundant species all over England on dry soils, and has been met with
in Scotland. The caterpillar is green, sometimes brown, with a darker
line along the back and white lines on the sides. It feeds on Clover,
Vetch, Broom, and other leguminous plants. The butterfly is out in July
and August.</p>

<p id="BALA"><span class="smcap">The Brown Argus</span> (<i>Lycæna Astrarche</i>), <a href="#Plate_12">Plate XII.</a>, Fig. 11.
&mdash;Here is a &#8220;blue&#8221; in which <i>both</i> sexes are brown, a rather unusual
thing. In every other particular, however, it bears the family
hall-mark. The upper surface is dark brown, bordered with bright orange
spots. The under side (<a href="#Plate_15">Plate XV.</a>, Fig. 6) is banded with orange and
spotted with black dots ringed with white. For the Scotch variety,
<i>Artaxerxes</i>, these spots are solid white, and there is in addition a
<i>white discoidal spot</i> on the upper side of the fore-wing. This variety
is local in Scotland, but fairly numerous where found, generally near
the sea, and plentiful all along the Ayrshire coast in June and July.
It is said to feed on <i>Helianthemum</i>, but has probably many other
food-plants, such as the Hemlock Stork&#8217;s-bill (<i>Erodium cicutarium</i>),
which is common where it flies.</p>

<p>The caterpillar is green, with a darker line along the back, and a pale
line on each side; head black and shining. There are many intermediate
forms between <i>Artaxerxes</i> and the type.</p>

<p><span class="pagenum"><a name="Page_78" id="Page_78">[Pg 78]</a></span></p>

<p id="CBLI"><span class="smcap">The Common Blue</span> (<i>Lycæna Icarus</i>), <a href="#Plate_12">Plate XII.</a>, Fig. 12.&mdash;Known
to everyone who sees anything at all of the country. It is <i>the</i> blue
butterfly, noticed even by those who hardly know a butterfly from a
bullfrog.</p>

<p>An intelligent little chap he is, too, with an eye for his own safety,
as I once found when I had the opportunity of observing quite a number
of them on a piece of waste ground near the sea. The weather was
dull and threatening rain, and not a butterfly was on the wing; but
I could see plenty of our common blue friend hanging on, with closed
wings, to the ends of rushes, grass-stalks, and on thistle-tops; but
always when I came within a step or two they adroitly changed their
position, putting whatever they were resting or hanging on between us,
just edging round the corner as it were, so as to be out of sight.
Apparently the idea of <i>flying</i> away from an enemy was here considered
as too risky under the conditions which prevailed; the safest plan was
to hide, so hide they did. It was the funniest game of hide-and-seek
I ever played. I have since seen the small blue dragon-flies adopt
the same tactics on the rushes by the side of a pond. No wonder this
little fellow is so common. In the struggle for existence he has shown
himself able and well-fitted to survive; nevertheless I had a good time
amongst them that afternoon and boxed some fine varieties. The male
bears a warm shade of blue, and the female is from nearly black to
brown, with a blue blush spreading from the body outwards, both wings
being bordered<span class="pagenum"><a name="Page_79" id="Page_79">[Pg 79]</a></span> with a row of orange and black spots, often on a ground
of white. Sometimes, too, there is a discoidal black spot edged with
white; but the females are very variable. The under side (<a href="#Plate_15">Plate XV.</a>,
Fig. 5) has the characteristic markings of the &#8220;blues,&#8221; and, excepting
that the female is a little darker in ground colour, both sexes are
pretty much alike.</p>

<p>The caterpillar is green, with a dark line on the back, and a light
yellow line on each side; it feeds on Trefoil and Clover. The perfect
insect is common everywhere from June till August.</p>

<p><a name="ABLB" id="ABLB"><span class="smcap">The Clifden Blue</span>, <span class="smcap">or Adonis Blue</span> (<i>Lycæna
Bellargus</i>)</a>, <a href="#Plate_13">Plate XIII.</a>, Fig. 1.&mdash;It will be sufficient to point out
the specific characters of each of these blues without going into
minute detail, which would be wearisome, even if it were possible
(which it is not) to paint in words what Nature has painted so
admirably on the butterflies&#8217; wings. The male Adonis is a brilliant
azure blue; fringe, deep and white, and divided into sections by black
lines. Female, brown to nearly black, with a row of orange and black
spots round the base of the hind-wing and sometimes continued faintly
into the fore-wing; it is browner on the under side than the male.
Both resemble the Common Blue very much, but the spots are scarcely
so numerous or so bold. The wings, however, are generally more ample,
those of the males being more rounded.</p>

<p>The caterpillar is green, with a darker line on the back, and a
yellow line on each side; spotted with orange on the back. This is
a fairly common species<span class="pagenum"><a name="Page_80" id="Page_80">[Pg 80]</a></span> confined mostly to the South, where, being
double-brooded, it is out in June and August.</p>

<p id="CHLC"><span class="smcap">The Chalk-Hill Blue</span> (<i>Lycæna Corydon</i>), <a href="#Plate_13">Plate XIII.</a>, Fig. 2.
&mdash;A larger insect than the last, and the male an extremely pale
iridescent blue, which is shaded off at the margins into a black
border, with a white fringe checked with black. Female, dark brown,
black and white checked fringe; eye-spots nearly obsolete along the
margin of both wings. Under side in male almost white, shading to
pale green, blue next the body on the fore-wing; hind-wing, with a
wash of pale brown for the ground; spots black, outlined with white.
A marginal row of orange spots is confined to the hind-wing in the
male, but extends to the fore-wing in the female; the ground colour
of it, however, is a pale fawn, which sets forth the eye-spots
beautifully.</p>

<p>The caterpillar is green, striped on the back and sides with yellow. A
decidedly southern species, frequenting the chalk downs of the South
and the Isle of Wight, or the limestone districts of the Midlands. It
is out in July and August.</p>

<p id="HBLA"><span class="smcap">The Azure Blue or Holly Blue</span> (<i>Lycæna Argiolus</i>), <a href="#Plate_13">Plate XIII.</a>,
Fig. 4.&mdash;This is a very dainty little butterfly of a deep sky-blue,
with rounded wings narrowly fringed with white, ticked with black. The
female has a broad, irregular, black border, occasionally extending
well into the wing. But the under side (<a href="#Plate_15">Plate XV.</a>, Fig. 3) marks a
new departure, being of a very pale, shimmering blue, with only a
few small, black spots, which form an incomplete row on fore- and
hind-wings.</p>

<p><span class="pagenum"><a name="Plate_15" id="Plate_15">[Plate 15]</a></span></p>

<div><img class="img_style" id ="Plate15" src="images/im117b.jpg" alt="Plate 15" /></div>

<p class="net">
PLATE 15<br />
1. <a href="#BALA">Brown Argus</a> (var. <i>Artaxerxes</i>)<br />
2. <a href="#BALA">Brown Argus</a> (var. <i>Artaxerxes</i>) (under side)<br />
3. <a href="#HBLA">Azure Blue</a> (under side)<br />
4. <a href="#SSLA">Silver-Studded Blue</a> (under side)<br />
5. <a href="#CBLI">Common Blue</a> (under side)<br />
6. <a href="#BALA">Brown Argus</a> (under side)<br />
7. <a href="#MBLS">Mazarine Blue</a> (upper side)<br />
8. <a href="#MBLS">Mazarine Blue</a> (under side)<br />
9. <a href="#CHLC">Chalkhill Blue</a> (under side)<br />
10. <a href="#LBLA">Large Blue</a> (under side)<br />
11. <a href="#LBLM">Little Blue</a> (under side)<br />
</p>

<p><span class="pagenum"><a name="Page_81" id="Page_81">[Pg 81]</a></span></p>

<p>The caterpillar is green, with a dark line on the back, and a black
head. It feeds on the <i>flowers</i> of Holly, Ivy, and Buckthorn.</p>

<p>Being double-brooded, the perfect insect appears first in April and
May, and again in August. It is generally distributed in England,
though commonest in the South; not known to occur in Scotland.</p>

<p id="MBLS"><span class="smcap">The Mazarine Blue</span> (<i>Lycæna semiargus</i>), <a href="#Plate_15">Plate XV.</a>, Figs. 7
and 8.&mdash;Males, a very dark purple-blue&mdash;in fact, this is our darkest
&#8220;Blue,&#8221; and shares the distinction with the Long-Tailed Blue of being
extremely scarce. Possibly those met with now are visitors from the
Continent. The blue deepens into a black border at the margins; fringe
short and white. Female, a uniform dark brown; under side a pale buff
colour, with an irregular row of black spots edged with white. There
are no orange spots on this species. It is said to feed on Thrift;
hence it is likeliest to be met with near the coast during July. Good
Continental specimens can be purchased cheaply, or got by exchange.
And I hold it is better to fill in your row with these, carefully
labelling them to indicate their source, than to have an empty space
always staring you in the face. Unless this species becomes more
common, the average collector&#8217;s chance of capturing British specimens
is exceedingly remote.</p>

<p id="LBLM"><span class="smcap">The Little Blue</span> (<i>Lycæna Minima</i>), <a href="#Plate_13">Plate XIII.</a>, Fig. 3.&mdash;The
smallest of our butterflies, the average expanse being only 3/4 inch.
Male, blackish-brown dusted with blue towards the base of the wings.<span class="pagenum"><a name="Page_82" id="Page_82">[Pg 82]</a></span>
Female, solid brown; under side (<a href="#Plate_15">Plate XV.</a>, Fig. 11) a pale salmon,
blue spotted as in <i>Argiolus</i>, with black outlined with white; no
orange spots on either sex.</p>

<p>The caterpillar is dull green, orange-striped on back and sides. It
feeds on Trefoils, etc. This species is local, but common all over the
British Isles, except in the extreme North. It is one of our early
species, appearing in May and June.</p>

<p id="LBLA"><span class="smcap">The Large Blue</span> (<i>Lycæna Arion</i>), <a href="#Plate_13">Plate XIII.</a>, Fig. 5.&mdash;This
is the largest of our &#8220;Blues&#8221; and the rarest of our really resident
species, and although it appears to be able to hold its own and
maintain its numbers fairly well, I would strongly urge collectors
to at least let all the &#8220;fair&#8221; and worn specimens retain their
liberty. Again and again I have seen specimens set up and sent out in
exchange that should never have been taken. Of a dark blue colour,
black-bordered, <i>Arion</i> can always be recognized by the row of black
spots across the middle of the fore-wing; they are sometimes very
large in size. There is occasionally a row of black spots round both
wings, just inside the margin. The under side (<a href="#Plate_15">Plate XV.</a>, Fig. 10) is
a pale grey, gradually shading into a bright blue-green next the body,
profusedly spotted with black in white rings.</p>

<p>The caterpillar, which feeds on Wild Thyme in the spring, is dark
rust-coloured. The butterfly is out in July, and is found mostly in the
extreme south-west counties.</p>

<p id="DBNL"><span class="smcap">The Duke of Burgundy Fritillary</span> (<i>Nemeobius Lucina</i>), <a href="#Plate_13">Plate
XIII.</a>, Fig. 6.&mdash;Very like a diminutive<span class="pagenum"><a name="Page_83" id="Page_83">[Pg 83]</a></span> member of the Fritillary
family, but it has no real connection with it, and better still, it has
a whole family (<i>Erycinidæ</i>) and genus to itself, being the only one
of its kind found in Europe. The upper surface is a tawny orange, with
dark brown checkerings, while a row of marginal black spots runs round
the outer margins. The under side of the hind-wings has a double row of
pale, almost white, spots across the centre, and black spots, similar
to those on the upper side, round the edge.</p>

<p>The caterpillar is short and tapering, pale brown with a darker line on
the back, and a lighter one on the sides. It feeds on Primrose. This
species is said to be double-brooded in the South, out in June and
again in August as far north as Carlisle and the Lake District. Note:
the female has six perfect walking legs, the male only four, the front
pair being rudimentary, as with many of the larger butterflies.</p>

<p id="GSSM"><span class="smcap">The Grizzled Skipper</span> (<i>Syrichthus Malvæ</i>), <a href="#Plate_13">Plate XIII.</a>, Fig. 7.
&mdash;The Skippers, of which there are eight species in this country, are
often referred to as the connecting-link between the butterflies and
moths, and not without some justification. The antennæ are somewhat
short, club-shaped, and <i>hooked</i> at the extremity. The head is large,
and the antennæ spring from just above the eyes; their base is thus
wide apart. Compare a Skipper with a Blue in which the roots of the
antennæ almost touch. The body of the Skipper is stout and mothlike,
and the wings not so ample, and more angular than in the average
butterfly. The<span class="pagenum"><a name="Page_84" id="Page_84">[Pg 84]</a></span> caterpillars live in a rolled leaf or several leaves
spun together, and pupate in a slight cocoon.</p>

<p>The Grizzled Skipper is a small butterfly measuring just over 3/4 of
an inch in expanse. The ground colour is nearly black, checkered with
white square spots, as is also the fringe. The under side is lighter.</p>

<p>The caterpillar is a rusty brown, with lighter lines on the back and
sides. The species is doubled-brooded, appearing in May and August,
and is generally distributed over the country as far north as the
South-West of Scotland.</p>

<p id="DSNT"><span class="smcap">The Dingy Skipper</span> (<i>Nisoniades Tages</i>), <a href="#Plate_13">Plate XIII.</a>, Fig. 8.
&mdash;This is dull grey-brown, and very Quaker-like in its sombre garb,
with a lighter and a darker band across the wings. The under side is a
pale drab, with a few faint light spots. And truly one may be excused
if at times it is mistaken for a night-flying moth.</p>

<p>The caterpillar feeds on trefoil, and is green, with four yellow lines
and some black dots; it is very stout in the middle, tapering to either
end. This Skipper is also doubled-brooded, appearing in May and August,
generally on dry soils such as the chalk, or limestone, or, as in
Scotland, on the sand-dunes of Ayrshire, where it is locally common.</p>

<p id="SSHT"><span class="smcap">The Small Skipper</span> (<i>Hesperia Thaumas</i>), <a href="#Plate_13">Plate XIII.</a>, Fig. 9.
&mdash;Upper side a uniform tawny-orange shade, with a dark brown or black
border. There is also a black dash across the fore-wing of the male,
which is absent in the female. On the under side there is a tawny patch
along the inner margin of the hind-wing,<span class="pagenum"><a name="Page_85" id="Page_85">[Pg 85]</a></span> and the tip of the fore-wing
is light. These are good identification points, as they are fairly
stable.</p>

<p>The caterpillar is green, with two white lines on the back and a yellow
line on either side. It feeds on grasses in the spring. The butterfly
appears in July and is common in England, but is not known in Scotland.</p>

<p id="ESHL"><span class="smcap">The New Small Skipper</span> (<i>Hesperia Lineola</i>), <a href="#Plate_14">Plate XIV.</a>,
Fig. 4.&mdash;Is very like the last, so much so, that it had been taken
for many years by collectors and confused with <i>Thaumas</i>. There
were few collections that did not possess a mixed series. But once
its identity was established, it was soon placed in its rightful
position. It may be distinguished from <i>Thaumas</i> by the absence
of the fulvous patch on the inner margin of the under side of the
hind-wings, and also by the absence of the light tip on the under
side of the fore-wing. The black dash across the upper side of the
fore-wing of the male is fainter, shorter, and more often altogether
absent. The under side of the hind-wing is a light buff without
marks of any kind.</p>

<p>The caterpillar is a bronze-green, with four yellow lines on the back
and one on the sides; it feeds on grasses in damp meadows, mostly in
the south and south-eastern counties. The species is local, but common
where it occurs. Out in July and August.</p>

<p id="LSHA"><span class="smcap">The Lulworth Skipper</span> (<i>Hesperia Actæon</i>), <a href="#Plate_13">Plate XIII.</a>, Fig. 10.
&mdash;An extremely local species, being only found in two or three localities
on the south coast. It may be distinguished from the two preceding
Skippers, first, by its more dingy colour; second, by the female<span class="pagenum"><a name="Page_86" id="Page_86">[Pg 86]</a></span> having
a semicircular row of light spots near the tip of the fore-wing. These
are very faintly visible in some males, but they have, in addition, a
black streak along the centre of the wing. The under side in both sexes
is similar, a pale dingy fawn, with no particular markings. The antennæ
are very short.</p>

<p>The caterpillar is green, with a dark line on the back, and a double
line of yellow on each side. This species may be looked for on rough
ground facing the sea during July and August.</p>

<p id="LSHS"><span class="smcap">The Large Skipper</span> (<i>Hesperia Sylvanus</i>), <a href="#Plate_13">Plate XIII.</a>, Fig. 11.
&mdash;Upper surface tawny-orange shading into darker at the margin of both
wings; on this dark margin are a few pale spots, mostly at the tip of the
fore-wing. The male has an almost black streak near the centre of the
fore-wing; this is not present in the female. The under side is a light
tawny olive, with pale lighter spots.</p>

<p>The caterpillar is green, with a dark line on the back, and a light
stripe on the sides. It is a grass-feeder. This Skipper is abundant all
over England in May and again in August, but is rare in Scotland.</p>

<p id="PSHC"><span class="smcap">The Pearl Skipper</span> (<i>Hesperia Comma</i>), <a href="#Plate_13">Plate XIII.</a>, Fig. 12.
&mdash;This species is not quite so large as the last. It is darker, and
the spot markings are much brighter and more decided. This is the case
especially on the under side, as there the spots are bright enough to
suggest pearls. Hence the name.</p>

<p>Note, too, the dark streak in the middle of the fore-wing of the male;
it is divided along the centre by a<span class="pagenum"><a name="Page_87" id="Page_87">[Pg 87]</a></span> white line. This white line is
wanting in the Large Skipper. The dark streak is only on the upper
wings of the males. <i>Comma</i> is also a more local and scarce insect,
being confined mostly to the South of England.</p>

<p>The caterpillar is greyish-red, and has a double dark line on either
side; it feeds on various Vetches and Trefoils. The butterfly is out in
July and August.</p>

<p id="CSCP"><span class="smcap">The Checkered Skipper</span> (<i>Carterocephalus Palæmon</i>), <a href="#Plate_13">Plate
XIII.</a>, Fig. 13.&mdash;The upper side of this butterfly is speckled and
bordered with tawny-orange spots on a dark brown ground. The under side
has a lighter ground colour, and the spots are outlined with dark brown.</p>

<p>The caterpillar is dark, almost black, with a yellow line on the sides,
and, as it hibernates over the winter, may be looked for in the spring.
It feeds on grasses and Plantain.</p>

<p>This is a very local species, and I am afraid, to judge from reports,
becoming rarer. The south and south-eastern counties are the favoured
localities.</p>

<p id="MWDE"><span class="smcap">The Milkweed Butterfly</span> (<i>Danais Erippus</i>; variety,
<i>Archippus</i>), <a href="#Plate_8">Plate VIII.</a>, Fig. 3.&mdash;This is an American species, but
an occasional visitor to our shores, and, as it is a strong-flying
species with the bump of adventure abnormally developed, it is now
met with in many lands where it was at one time unknown. I have
large fine specimens from Canada, so it can stand the rigours of the
Canadian winter; and if it should find a suitable food-plant for the
caterpillars here, we may hope, in the near future, to add this fine
butterfly to the select little band of British butterflies.</p>


<div class="chapter">
<hr class="chap" />
<p><span class="pagenum"><a name="Page_88" id="Page_88">[Pg 88]</a></span></p>
<h2 class="nobreak" id="INDEX">INDEX</h2>
</div>

<div id="indoz">

<ol class="avis">
<li class="inda">British Butterflies described, <a href="#Page_29">29</a></li>
<li class="inda">Butterflies, antennæ of, <a href="#Page_1">1</a>, <a href="#Page_10">10</a></li>
<li class="indb">capture and preservation, <a href="#Page_13">13</a></li>
<li class="indb">eyes of, <a href="#Page_11">11</a></li>
<li class="indb">how to kill, <a href="#Page_16">16</a></li>
<li class="indb">list of British, <a href="#Page_27">27</a></li>
<li class="indb">sense and smell, <a href="#Page_10">10</a></li>
<li class="indb">sight, <a href="#Page_10">10</a></li>
<li class="indb">tongues of, <a href="#Page_12">12</a></li>
<li class="inda">Butterfly net, <a href="#Page_14">14</a></li>

<li class="indc">Collection, storing of, <a href="#Page_25">25</a></li>

<li class="indc">Drying-case, <a href="#Page_22">22</a></li>

<li class="indc">Entomological pins, <a href="#Page_17">17</a></li>

<li class="indc"><span class="smcap">Families of Butterflies.</span></li>
<li class="indb"><i>Apaturidæ</i>, <a href="#Page_28">28</a></li>
<li class="indb"><i>Erycinidæ</i>, <a href="#Page_29">29</a></li>
<li class="indb"><i>Hesperidæ</i>, <a href="#Page_29">29</a></li>
<li class="indb"><i>Lycenidæ</i>, <a href="#Page_28">28</a></li>
<li class="indb"><i>Nymphalidæ</i>, <a href="#Page_27">27</a></li>
<li class="indb"><i>Papilionidæ</i>, <a href="#Page_27">27</a></li>
<li class="indb"><i>Pieridæ</i>, <a href="#Page_27">27</a></li>
<li class="indb"><i>Satyridæ</i>, <a href="#Page_28">28</a></li>


<li class="indc">&#8220;Grease,&#8221; treatment of, <a href="#Page_17">17</a></li>

<li class="indc">Ichneumons, <a href="#Page_5">5</a></li>

<li class="indc">Larvae, preservation of, <a href="#Page_22">22</a></li>
<li class="inda"><i>Lepidoptera</i>, <a href="#Page_1">1</a></li>
<li class="inda">Life-story of Butterflies, <a href="#Page_1">1</a></li>

<li class="indc">Pins, entomological, <a href="#Page_17">17</a></li>

<li class="indc">Scales, <a href="#Page_9">9</a></li>
<li class="inda">Setting boards, <a href="#Page_18">18</a></li>
<li class="indb">bristle, <a href="#Page_18">18</a></li>
<li class="indb">needle, <a href="#Page_19">19</a></li>
<li class="indb">Paisley method, <a href="#Page_20">20</a></li>
<li class="indb">with braces, <a href="#Page_18">18</a></li>
<li class="inda"><span class="smcap">Species of Butterflies</span>:</li>
<li class="indb">Blue, Adonis, <a href="#Page_79">79</a></li>
<li class="indd">Azure, <a href="#Page_80">80</a></li>
<li class="indd">Chalkhill, <a href="#Page_80">80</a></li>
<li class="indd">Clifden, <a href="#Page_79">79</a></li>
<li class="indd">Common, <a href="#Page_78">78</a></li>
<li class="indd">Holly, <a href="#Page_80">80</a></li>
<li class="indd">Large, <a href="#Page_82">82</a></li>
<li class="indd">Little, <a href="#Page_81">81</a></li>
<li class="indd">Long-tailed, <a href="#Page_76">76</a></li>
<li class="indd">Mazarine, <a href="#Page_81">81</a></li>
<li class="indd">Silver-studded, <a href="#Page_76">76</a></li>
<li class="indb">Brimstone, <a href="#Page_41">41</a></li>
<li class="indb">Brown Argus, <a href="#Page_77">77</a></li>
<li class="indb">Camberwell Beauty, <a href="#Page_55">55</a></li>
<li class="indb">Clouded Yellow, <a href="#Page_39">39</a></li>
<li class="indd">Pale, <a href="#Page_38">38</a></li>
<li class="indb">Comma, <a href="#Page_51">51</a></li>
<li class="indb">Copper, Large, <a href="#Page_74">74</a></li>
<li class="indd">Small, <a href="#Page_75">75</a></li>
<li class="indb">Fritillary, Duke of Burgundy, <a href="#Page_82">82</a></li>
<li class="indd">Dark Green, <a href="#Page_44">44</a></li>
<li class="indd">Glanville, <a href="#Page_49">49</a></li>
<li class="indd">Greasy, <a href="#Page_48">48</a></li>
<li class="indd">Heath, <a href="#Page_51">51</a></li>
<li class="indd">High Brown, <a href="#Page_46">46</a></li>
<li class="indd">Pearl-bordered, <a href="#Page_43">43</a></li>
<li class="indd">Queen of Spain, <a href="#Page_44">44</a></li>
<li class="indd">Silver-washed, <a href="#Page_47">47</a></li>
<li class="indd">Small Pearl-bordered, <a href="#Page_42">42</a></li>
<li class="indb">Grayling, <a href="#Page_65">65</a></li>
<li class="indb">Hairstreak, Black, <a href="#Page_72">72</a></li>
<li class="indd">Brown, <a href="#Page_71">71</a></li>
<li class="indd">Green, <a href="#Page_73">73</a></li>
<li class="indd">Purple, <a href="#Page_72">72</a></li>
<li class="indd">White-letter, <a href="#Page_71">71</a></li>
<li class="indb">Meadow Brown, <a href="#Page_67">67</a></li>
<li class="indd">Small, <a href="#Page_67">67</a></li>
<li class="indb">Milkweed, <a href="#Page_87">87</a></li>
<li class="indb">Orange-tip, <a href="#Page_37">37</a></li>
<li class="indb">Painted Lady, <a href="#Page_58">58</a></li>
<li class="indb">Peacock, <a href="#Page_55">55</a></li>
<li class="indb">Purple Emperor, <a href="#Page_59">59</a></li>
<li class="indb">Red Admiral, <a href="#Page_56">56</a></li>
<li class="indb">Ringlet, <a href="#Page_68">68</a></li>
<li class="indd">Marsh, <a href="#Page_69">69</a></li>
<li class="indd">Mountain, <a href="#Page_62">62</a></li>
<li class="indb">Scotch Argus, <a href="#Page_62">62</a></li>
<li class="indb">Skipper, Checkered, <a href="#Page_87">87</a></li>
<li class="indd">Dingy, <a href="#Page_84">84</a></li>
<li class="indd">Grizzled, <a href="#Page_83">83</a></li>
<li class="indd">Large, <a href="#Page_86">86</a></li>
<li class="indd">Lulworth, <a href="#Page_85">85</a></li>
<li class="indd">New Small, <a href="#Page_85">85</a></li>
<li class="indd">Pearl, <a href="#Page_86">86</a></li>
<li class="indd">Small, <a href="#Page_84">84</a></li>
<li class="indb">Small Heath, <a href="#Page_70">70</a></li>
<li class="indb">Speckled Wood, <a href="#Page_64">64</a></li>
<li class="indb">Swallow Tail, <a href="#Page_29">29</a></li>
<li class="indb">Tortoiseshell, Large, <a href="#Page_52">52</a></li>
<li class="indd">Small, <a href="#Page_53">53</a></li>
<li class="indb">Wall Brown, <a href="#Page_65">65</a></li>
<li class="indb">White Admiral, <a href="#Page_59">59</a></li>
<li class="indd">Bath, <a href="#Page_36">36</a></li>
<li class="indd">Black-veined, <a href="#Page_32">32</a></li>
<li class="indd">Green-veined, <a href="#Page_35">35</a></li>
<li class="indd">Large Garden, <a href="#Page_33">33</a></li>
<li class="indd">Marbled, <a href="#Page_61">61</a></li>
<li class="indd">Small Garden, <a href="#Page_34">34</a></li>
<li class="indd">Wood, <a href="#Page_38">38</a></li>

</ol>
</div>

<p class="gin">BILLING AND SONS, LTD., PRINTERS, GUILDFORD, ENGLAND</p>

<div><img class="img_style" id ="Backcvr" src="images/bc1a.jpg" alt="Back Cover" /></div>
<p class="censm" > BACK COVER</p>

<div>*** END OF THE PROJECT GUTENBERG EBOOK 61981 ***</div>
</body>
</html>